From 81665520c08c236de30b5ec6cbfc01f26662f71a Mon Sep 17 00:00:00 2001 From: Oskar Wiksten Date: Sun, 20 Jan 2013 00:19:38 +0100 Subject: [PATCH 1/6] WIP on parsing resource data as json instead of the old resource format. --- .../parsers/ActorConditionsTypeParser.java | 42 ++++----- .../parsers/ConversationListParser.java | 87 ++++++++++-------- .../resource/parsers/DropListParser.java | 47 +++++----- .../resource/parsers/ItemCategoryParser.java | 29 +++--- .../resource/parsers/ResourceParserUtils.java | 78 ++++++++++++++-- .../parsers/json/JsonCollectionParserFor.java | 39 ++++++++ .../resource/parsers/json/JsonFieldNames.java | 90 +++++++++++++++++++ .../resource/parsers/json/JsonParserFor.java | 20 +++++ 8 files changed, 326 insertions(+), 106 deletions(-) create mode 100644 AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/json/JsonCollectionParserFor.java create mode 100644 AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/json/JsonFieldNames.java create mode 100644 AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/json/JsonParserFor.java diff --git a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/ActorConditionsTypeParser.java b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/ActorConditionsTypeParser.java index 17af2a178..e44ce21ed 100644 --- a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/ActorConditionsTypeParser.java +++ b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/ActorConditionsTypeParser.java @@ -1,39 +1,35 @@ package com.gpl.rpg.AndorsTrail.resource.parsers; import com.gpl.rpg.AndorsTrail.model.ability.ActorConditionType; -import com.gpl.rpg.AndorsTrail.model.ability.traits.AbilityModifierTraits; import com.gpl.rpg.AndorsTrail.resource.DynamicTileLoader; -import com.gpl.rpg.AndorsTrail.resource.ResourceFileTokenizer.ResourceParserFor; +import com.gpl.rpg.AndorsTrail.resource.parsers.json.JsonCollectionParserFor; +import com.gpl.rpg.AndorsTrail.resource.parsers.json.JsonFieldNames; import com.gpl.rpg.AndorsTrail.util.Pair; +import org.json.JSONException; +import org.json.JSONObject; -public final class ActorConditionsTypeParser extends ResourceParserFor { +public final class ActorConditionsTypeParser extends JsonCollectionParserFor { private final DynamicTileLoader tileLoader; public ActorConditionsTypeParser(final DynamicTileLoader tileLoader) { - super(30); this.tileLoader = tileLoader; } - + @Override - public Pair parseRow(String[] parts) { - final String conditionTypeID = parts[0]; - - AbilityModifierTraits stats = null; - if (ResourceParserUtils.parseBoolean(parts[18], false)) { - stats = ResourceParserUtils.parseAbilityModifierTraits(parts, 19); - } - - return new Pair(conditionTypeID, new ActorConditionType( + protected Pair parseObject(JSONObject o) throws JSONException { + final String conditionTypeID = o.getString(JsonFieldNames.ActorCondition.conditionTypeID); + ActorConditionType result = new ActorConditionType( conditionTypeID - , parts[1] - , ResourceParserUtils.parseImageID(tileLoader, parts[2]) - , Integer.parseInt(parts[3]) - , ResourceParserUtils.parseBoolean(parts[4], false) - , ResourceParserUtils.parseBoolean(parts[5], false) - , ResourceParserUtils.parseStatsModifierTraits(parts, 6) - , ResourceParserUtils.parseStatsModifierTraits(parts, 12) - , stats - )); + ,o.getString(JsonFieldNames.ActorCondition.name) + ,ResourceParserUtils.parseImageID(tileLoader, o.getString(JsonFieldNames.ActorCondition.iconID)) + ,o.getInt(JsonFieldNames.ActorCondition.category) + ,o.optInt(JsonFieldNames.ActorCondition.isStacking) > 0 + ,o.optInt(JsonFieldNames.ActorCondition.isPositive) > 0 + ,ResourceParserUtils.parseStatsModifierTraits(o.optJSONObject(JsonFieldNames.ActorCondition.roundEffect)) + ,ResourceParserUtils.parseStatsModifierTraits(o.optJSONObject(JsonFieldNames.ActorCondition.fullRoundEffect)) + ,ResourceParserUtils.parseAbilityModifierTraits(o.optJSONObject(JsonFieldNames.ActorCondition.abilityEffect)) + ); + return new Pair(conditionTypeID, result); } } diff --git a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/ConversationListParser.java b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/ConversationListParser.java index fa0d8fa54..8810b9acb 100644 --- a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/ConversationListParser.java +++ b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/ConversationListParser.java @@ -1,65 +1,76 @@ package com.gpl.rpg.AndorsTrail.resource.parsers; -import java.util.ArrayList; - import com.gpl.rpg.AndorsTrail.conversation.Phrase; import com.gpl.rpg.AndorsTrail.conversation.Phrase.Reply; import com.gpl.rpg.AndorsTrail.conversation.Phrase.Reward; import com.gpl.rpg.AndorsTrail.model.quest.QuestProgress; -import com.gpl.rpg.AndorsTrail.resource.ResourceFileTokenizer; -import com.gpl.rpg.AndorsTrail.resource.ResourceFileTokenizer.ResourceParserFor; +import com.gpl.rpg.AndorsTrail.resource.parsers.json.JsonCollectionParserFor; +import com.gpl.rpg.AndorsTrail.resource.parsers.json.JsonFieldNames; +import com.gpl.rpg.AndorsTrail.resource.parsers.json.JsonParserFor; import com.gpl.rpg.AndorsTrail.util.Pair; +import org.json.JSONException; +import org.json.JSONObject; -public final class ConversationListParser extends ResourceParserFor { +import java.util.ArrayList; + +public final class ConversationListParser extends JsonCollectionParserFor { - public ConversationListParser() { - super(4); - } - - private final ResourceFileTokenizer replyResourceTokenizer = new ResourceFileTokenizer(6); - private final ResourceObjectParser replyParser = new ResourceObjectParser() { + private final JsonParserFor replyParser = new JsonParserFor() { @Override - public Reply parseRow(String[] parts) { + protected Reply parseObject(JSONObject o) throws JSONException { + JSONObject requires = o.optJSONObject(JsonFieldNames.Reply.requires); + String requiresProgress = null; + String requiresItemTypeID = null; + int requiresItemQuantity = 0; + int itemRequirementType = Reply.ITEM_REQUIREMENT_TYPE_INVENTORY_REMOVE; + if (requires != null) { + requiresProgress = requires.optString(JsonFieldNames.ReplyRequires.progress); + JSONObject requiresItem = o.optJSONObject(JsonFieldNames.ReplyRequires.item); + if (requiresItem != null) { + requiresItemTypeID = requiresItem.getString(JsonFieldNames.ReplyRequiresItem.itemID); + requiresItemQuantity = requiresItem.getInt(JsonFieldNames.ReplyRequiresItem.quantity); + itemRequirementType = requiresItem.getInt(JsonFieldNames.ReplyRequiresItem.requireType); + } + } return new Reply( - parts[0] // text - , parts[1] // nextPhrase - , QuestProgress.parseQuestProgress(parts[2]) // requiresProgress - , ResourceParserUtils.parseNullableString(parts[3]) // requiresItemType - , ResourceParserUtils.parseInt(parts[4], 0) // requiresItemQuantity - , ResourceParserUtils.parseInt(parts[5], Reply.ITEM_REQUIREMENT_TYPE_INVENTORY_REMOVE) // itemRequirementType - ); + o.optString(JsonFieldNames.Reply.text) + ,o.optString(JsonFieldNames.Reply.nextPhraseID) + ,QuestProgress.parseQuestProgress(requiresProgress) + ,requiresItemTypeID + ,requiresItemQuantity + ,itemRequirementType + ); } }; - private final ResourceFileTokenizer rewardResourceTokenizer = new ResourceFileTokenizer(3); - private final ResourceObjectParser rewardParser = new ResourceObjectParser() { + private final JsonParserFor rewardParser = new JsonParserFor() { @Override - public Reward parseRow(String[] parts) { + protected Reward parseObject(JSONObject o) throws JSONException { return new Reward( - Integer.parseInt(parts[0]) // rewardType - , parts[1] // rewardID - , ResourceParserUtils.parseInt(parts[2], 0) // value - ); + o.getInt(JsonFieldNames.PhraseReward.rewardType) + ,o.getString(JsonFieldNames.PhraseReward.rewardID) + ,o.getInt(JsonFieldNames.PhraseReward.value) + ); } }; @Override - public Pair parseRow(String[] parts) { - // [id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; - + protected Pair parseObject(JSONObject o) throws JSONException { + final String id = o.getString(JsonFieldNames.Phrase.phraseID); + final ArrayList replies = new ArrayList(); - replyResourceTokenizer.tokenizeArray(parts[3], replies, replyParser); + replyParser.parseRows(o.optJSONArray(JsonFieldNames.Phrase.replies), replies); final Reply[] _replies = replies.toArray(new Reply[replies.size()]); - + final ArrayList rewards = new ArrayList(); - rewardResourceTokenizer.tokenizeArray(parts[2], rewards, rewardParser); + rewardParser.parseRows(o.optJSONArray(JsonFieldNames.Phrase.rewards), rewards); Reward[] _rewards = rewards.toArray(new Reward[rewards.size()]); if (_rewards.length == 0) _rewards = null; - - return new Pair(parts[0], new Phrase( - ResourceParserUtils.parseNullableString(parts[1]) // message - , _replies // replies - , _rewards // rewards - )); + + return new Pair(id, new Phrase( + o.optString(JsonFieldNames.Phrase.message) + , _replies + , _rewards + )); } } diff --git a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/DropListParser.java b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/DropListParser.java index f1747f9f8..341bc6091 100644 --- a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/DropListParser.java +++ b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/DropListParser.java @@ -6,45 +6,46 @@ import com.gpl.rpg.AndorsTrail.AndorsTrailApplication; import com.gpl.rpg.AndorsTrail.model.item.DropList; import com.gpl.rpg.AndorsTrail.model.item.ItemTypeCollection; import com.gpl.rpg.AndorsTrail.model.item.DropList.DropItem; -import com.gpl.rpg.AndorsTrail.resource.ResourceFileTokenizer; -import com.gpl.rpg.AndorsTrail.resource.ResourceFileTokenizer.ResourceParserFor; +import com.gpl.rpg.AndorsTrail.resource.parsers.json.JsonCollectionParserFor; +import com.gpl.rpg.AndorsTrail.resource.parsers.json.JsonFieldNames; +import com.gpl.rpg.AndorsTrail.resource.parsers.json.JsonParserFor; import com.gpl.rpg.AndorsTrail.util.L; import com.gpl.rpg.AndorsTrail.util.Pair; +import org.json.JSONArray; +import org.json.JSONException; +import org.json.JSONObject; -public final class DropListParser extends ResourceParserFor { +public final class DropListParser extends JsonCollectionParserFor { + + private final JsonParserFor dropItemParser; - private final ResourceFileTokenizer droplistItemResourceTokenizer = new ResourceFileTokenizer(4); - private final ResourceObjectParser dropItemParser; - public DropListParser(final ItemTypeCollection itemTypes) { - super(2); - this.dropItemParser = new ResourceObjectParser() { + this.dropItemParser = new JsonParserFor() { @Override - public DropItem parseRow(String[] parts) { + protected DropItem parseObject(JSONObject o) throws JSONException { return new DropItem( - itemTypes.getItemType(parts[0]) // Itemtype - , ResourceParserUtils.parseChance(parts[3]) // Chance - , ResourceParserUtils.parseQuantity(parts[1], parts[2]) // Quantity - ); + itemTypes.getItemType(o.getString(JsonFieldNames.DropItem.itemID)) + ,ResourceParserUtils.parseChance(o.getString(JsonFieldNames.DropItem.chance)) + ,ResourceParserUtils.parseQuantity(o.getJSONObject(JsonFieldNames.DropItem.quantity)) + ); } }; } @Override - public Pair parseRow(String[] parts) { - // [id|items[itemID|quantity_Min|quantity_Max|chance|]|]; - - String droplistID = parts[0]; - + protected Pair parseObject(JSONObject o) throws JSONException { + String droplistID = o.getString(JsonFieldNames.DropList.dropListID); + + JSONArray array = o.getJSONArray(JsonFieldNames.DropList.items); final ArrayList items = new ArrayList(); - droplistItemResourceTokenizer.tokenizeArray(parts[1], items, dropItemParser); - DropItem[] items_ = items.toArray(new DropItem[items.size()]); - + dropItemParser.parseRows(array, items); + if (AndorsTrailApplication.DEVELOPMENT_VALIDATEDATA) { - if (items_.length <= 0) { + if (items.size() <= 0) { L.log("OPTIMIZE: Droplist \"" + droplistID + "\" has no dropped items."); } } - return new Pair(droplistID, new DropList(items_)); + + return new Pair(droplistID, new DropList(items)); } } diff --git a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/ItemCategoryParser.java b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/ItemCategoryParser.java index 5a952dc26..e14965791 100644 --- a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/ItemCategoryParser.java +++ b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/ItemCategoryParser.java @@ -1,25 +1,24 @@ package com.gpl.rpg.AndorsTrail.resource.parsers; import com.gpl.rpg.AndorsTrail.model.item.ItemCategory; -import com.gpl.rpg.AndorsTrail.resource.ResourceFileTokenizer.ResourceParserFor; +import com.gpl.rpg.AndorsTrail.resource.parsers.json.JsonCollectionParserFor; +import com.gpl.rpg.AndorsTrail.resource.parsers.json.JsonFieldNames; import com.gpl.rpg.AndorsTrail.util.Pair; +import org.json.JSONException; +import org.json.JSONObject; -public final class ItemCategoryParser extends ResourceParserFor { - - public ItemCategoryParser() { - super(5); - } +public final class ItemCategoryParser extends JsonCollectionParserFor { @Override - public Pair parseRow(String[] parts) { - String id = parts[0]; - final ItemCategory itemType = new ItemCategory( + protected Pair parseObject(JSONObject o) throws JSONException { + final String id = o.getString(JsonFieldNames.ItemCategory.itemCategoryID); + ItemCategory result = new ItemCategory( id - , parts[1] // displayName - , ResourceParserUtils.parseInt(parts[2], 0) // actionType - , ResourceParserUtils.parseInt(parts[3], -1) // inventorySlot - , ResourceParserUtils.parseInt(parts[4], 0) // size - ); - return new Pair(id, itemType); + ,o.getString(JsonFieldNames.ItemCategory.name) + ,o.optInt(JsonFieldNames.ItemCategory.actionType, 0) + ,o.optInt(JsonFieldNames.ItemCategory.inventorySlot, -1) + ,o.optInt(JsonFieldNames.ItemCategory.size, 0) + ); + return new Pair(id, result); } } diff --git a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/ResourceParserUtils.java b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/ResourceParserUtils.java index a81526b08..f0291273a 100644 --- a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/ResourceParserUtils.java +++ b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/ResourceParserUtils.java @@ -4,10 +4,13 @@ import com.gpl.rpg.AndorsTrail.AndorsTrailApplication; import com.gpl.rpg.AndorsTrail.model.ability.traits.AbilityModifierTraits; import com.gpl.rpg.AndorsTrail.model.ability.traits.StatsModifierTraits; import com.gpl.rpg.AndorsTrail.resource.DynamicTileLoader; -import com.gpl.rpg.AndorsTrail.util.ConstRange; -import com.gpl.rpg.AndorsTrail.util.L; -import com.gpl.rpg.AndorsTrail.util.Range; -import com.gpl.rpg.AndorsTrail.util.Size; +import com.gpl.rpg.AndorsTrail.resource.parsers.json.JsonFieldNames; +import com.gpl.rpg.AndorsTrail.util.*; +import org.json.JSONArray; +import org.json.JSONException; +import org.json.JSONObject; + +import java.util.ArrayList; public final class ResourceParserUtils { @@ -155,6 +158,7 @@ public final class ResourceParserUtils { ); } } + private static final ConstRange zero_or_one = new ConstRange(1, 0); private static final ConstRange one = new ConstRange(1, 1); @@ -162,9 +166,9 @@ public final class ResourceParserUtils { private static final ConstRange ten = new ConstRange(10, 10); public static ConstRange parseQuantity(String min, String max) { if (min.equals("0") && max.equals("1")) return zero_or_one; - else if (min.equals("1") && max.equals("1")) return one; - else if (min.equals("5") && max.equals("5")) return five; - else if (min.equals("10") && max.equals("10")) return ten; + if (min.equals("1") && max.equals("1")) return one; + if (min.equals("5") && max.equals("5")) return five; + if (min.equals("10") && max.equals("10")) return ten; return parseConstRange(min, max); } @@ -197,4 +201,64 @@ public final class ResourceParserUtils { } else return new ConstRange(100, parseInt(v, 10)); } + + + + + + public static ConstRange parseConstRange(JSONObject o) throws JSONException { + if (o == null) return null; + + return new ConstRange(o.getInt(JsonFieldNames.Range.max), o.getInt(JsonFieldNames.Range.min)); + } + + public static StatsModifierTraits parseStatsModifierTraits(JSONObject o) throws JSONException { + if (o == null) return null; + + ConstRange boostCurrentHP = parseConstRange(o.getJSONObject(JsonFieldNames.StatsModifierTraits.increaseCurrentHP)); + ConstRange boostCurrentAP = parseConstRange(o.getJSONObject(JsonFieldNames.StatsModifierTraits.increaseCurrentAP)); + if (boostCurrentHP == null && boostCurrentAP == null) { + if (AndorsTrailApplication.DEVELOPMENT_VALIDATEDATA) { + L.log("OPTIMIZE: Tried to parseStatsModifierTraits , where hasEffect=" + o.toString() + ", but all data was empty."); + } + return null; + } else { + return new StatsModifierTraits( + o.optInt(JsonFieldNames.StatsModifierTraits.visualEffectID, StatsModifierTraits.VISUAL_EFFECT_NONE) + ,boostCurrentHP + ,boostCurrentAP + ); + } + } + + public static AbilityModifierTraits parseAbilityModifierTraits(JSONObject o) throws JSONException { + if (o == null) return null; + + ConstRange increaseAttackDamage = parseConstRange(o.optJSONObject(JsonFieldNames.AbilityModifierTraits.increaseAttackDamage)); + return new AbilityModifierTraits( + o.optInt(JsonFieldNames.AbilityModifierTraits.increaseMaxHP, 0) + ,o.optInt(JsonFieldNames.AbilityModifierTraits.increaseMaxAP, 0) + ,o.optInt(JsonFieldNames.AbilityModifierTraits.increaseMoveCost, 0) + ,o.optInt(JsonFieldNames.AbilityModifierTraits.increaseUseItemCost, 0) + ,o.optInt(JsonFieldNames.AbilityModifierTraits.increaseReequipCost, 0) + ,o.optInt(JsonFieldNames.AbilityModifierTraits.increaseAttackCost, 0) + ,o.optInt(JsonFieldNames.AbilityModifierTraits.increaseAttackChance, 0) + ,o.optInt(JsonFieldNames.AbilityModifierTraits.increaseBlockChance, 0) + ,increaseAttackDamage.current + ,increaseAttackDamage.max + ,o.optInt(JsonFieldNames.AbilityModifierTraits.increaseCriticalSkill, 0) + ,o.optInt(JsonFieldNames.AbilityModifierTraits.setCriticalMultiplier, 0) + ,o.optInt(JsonFieldNames.AbilityModifierTraits.increaseDamageResistance, 0) + ); + } + + public static ConstRange parseQuantity(JSONObject obj) throws JSONException { + final int min = obj.getInt(JsonFieldNames.Range.min); + final int max = obj.getInt(JsonFieldNames.Range.max); + if (min == 0 && max == 1) return zero_or_one; + if (min == 1 && max == 1) return one; + if (min == 5 && max == 5) return five; + if (min == 10 && max == 10) return ten; + return parseConstRange(obj); + } } diff --git a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/json/JsonCollectionParserFor.java b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/json/JsonCollectionParserFor.java new file mode 100644 index 000000000..e9ac10cd8 --- /dev/null +++ b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/json/JsonCollectionParserFor.java @@ -0,0 +1,39 @@ +package com.gpl.rpg.AndorsTrail.resource.parsers.json; + +import com.gpl.rpg.AndorsTrail.AndorsTrailApplication; +import com.gpl.rpg.AndorsTrail.util.L; +import com.gpl.rpg.AndorsTrail.util.Pair; +import org.json.JSONArray; +import org.json.JSONException; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.HashSet; + +public abstract class JsonCollectionParserFor extends JsonParserFor> { + public HashSet parseRows(String input, HashMap dest) { + + HashSet ids = new HashSet(); + ArrayList> objects = new ArrayList>(); + + try { + parseRows(new JSONArray(input), objects); + } catch (JSONException e) { + L.log("ERROR loading resource data: " + e.toString()); + } + + for (Pair o : objects) { + final String id = o.first; + if (AndorsTrailApplication.DEVELOPMENT_VALIDATEDATA) { + if (id == null || id.length() <= 0) { + L.log("WARNING: Entity " + o.second.toString() + " has empty id."); + } else if (dest.containsKey(id)) { + L.log("WARNING: Entity " + id + " is duplicated."); + } + } + dest.put(id, o.second); + ids.add(id); + } + return ids; + } +} diff --git a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/json/JsonFieldNames.java b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/json/JsonFieldNames.java new file mode 100644 index 000000000..1acd13291 --- /dev/null +++ b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/json/JsonFieldNames.java @@ -0,0 +1,90 @@ +package com.gpl.rpg.AndorsTrail.resource.parsers.json; + +public final class JsonFieldNames { + public static final class ActorCondition { + public static final String conditionTypeID = "id"; + public static final String name = "name"; + public static final String iconID = "iconID"; + public static final String category = "category"; + public static final String isStacking = "isStacking"; + public static final String isPositive = "isPositive"; + public static final String roundEffect = "roundEffect"; + public static final String fullRoundEffect = "fullRoundEffect"; + public static final String abilityEffect = "abilityEffect"; + } + + public static final class StatsModifierTraits { + public static final String visualEffectID = "visualEffectID"; + public static final String increaseCurrentHP = "increaseCurrentHP"; + public static final String increaseCurrentAP = "increaseCurrentAP"; + } + + public static final class AbilityModifierTraits { + public static final String increaseMaxHP = "increaseMaxHP"; + public static final String increaseMaxAP = "increaseMaxAP"; + public static final String increaseMoveCost = "increaseMoveCost"; + public static final String increaseUseItemCost = "increaseUseItemCost"; + public static final String increaseReequipCost = "increaseReequipCost"; + public static final String increaseAttackCost = "increaseAttackCost"; + public static final String increaseAttackChance = "increaseAttackChance"; + public static final String increaseCriticalSkill = "increaseCriticalSkill"; + public static final String setCriticalMultiplier = "setCriticalMultiplier"; + public static final String increaseAttackDamage = "increaseAttackDamage"; + public static final String increaseBlockChance = "increaseBlockChance"; + public static final String increaseDamageResistance = "increaseDamageResistance"; + } + + public static final class ItemCategory { + public static final String itemCategoryID = "id"; + public static final String name = "name"; + public static final String actionType = "actionType"; + public static final String inventorySlot = "inventorySlot"; + public static final String size = "size"; + } + + public static final class DropList { + public static final String dropListID = "id"; + public static final String items = "items"; + } + + public static final class DropItem { + public static final String itemID = "itemID"; + public static final String quantity = "quantity"; + public static final String chance = "chance"; + } + + public static final class Range { + public static final String min = "min"; + public static final String max = "max"; + } + + public static final class Phrase { + public static final String phraseID = "id"; + public static final String message = "message"; + public static final String rewards = "rewards"; + public static final String replies = "replies"; + } + + public static final class Reply { + public static final String text = "text"; + public static final String nextPhraseID = "nextPhraseID"; + public static final String requires = "requires"; + } + + public static final class ReplyRequires { + public static final String progress = "progress"; + public static final String item = "item"; + } + + public static final class ReplyRequiresItem { + public static final String itemID = "itemID"; + public static final String quantity = "quantity"; + public static final String requireType = "requireType"; + } + + public static final class PhraseReward { + public static final String rewardType = "rewardType"; + public static final String rewardID = "rewardID"; + public static final String value = "value"; + } +} diff --git a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/json/JsonParserFor.java b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/json/JsonParserFor.java new file mode 100644 index 000000000..e6220cf12 --- /dev/null +++ b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/json/JsonParserFor.java @@ -0,0 +1,20 @@ +package com.gpl.rpg.AndorsTrail.resource.parsers.json; + +import org.json.JSONArray; +import org.json.JSONException; +import org.json.JSONObject; + +import java.util.ArrayList; + +public abstract class JsonParserFor { + public void parseRows(JSONArray array, ArrayList dest) throws JSONException { + if (array == null) return; + + for (int i = 0; i < array.length(); ++i) { + JSONObject o = array.getJSONObject(i); + dest.add(parseObject(o)); + } + } + + protected abstract T parseObject(JSONObject o) throws JSONException; +} From 89759f77f46f2b2aa2f29adb063935a2cee97373 Mon Sep 17 00:00:00 2001 From: Oskar Wiksten Date: Sun, 20 Jan 2013 23:35:37 +0100 Subject: [PATCH 2/6] Updated parsers for reading resources as JSON. --- .../resource/parsers/ItemTraitsParser.java | 72 ++++---- .../resource/parsers/ItemTypeParser.java | 36 ++-- .../resource/parsers/MonsterTypeParser.java | 86 +++++----- .../resource/parsers/QuestParser.java | 63 ++++--- .../resource/parsers/ResourceParserUtils.java | 162 ++---------------- .../resource/parsers/json/JsonFieldNames.java | 75 ++++++++ 6 files changed, 213 insertions(+), 281 deletions(-) diff --git a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/ItemTraitsParser.java b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/ItemTraitsParser.java index 86ad89889..7b515670a 100644 --- a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/ItemTraitsParser.java +++ b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/ItemTraitsParser.java @@ -1,7 +1,5 @@ package com.gpl.rpg.AndorsTrail.resource.parsers; -import java.util.ArrayList; - import com.gpl.rpg.AndorsTrail.AndorsTrailApplication; import com.gpl.rpg.AndorsTrail.model.ability.ActorCondition; import com.gpl.rpg.AndorsTrail.model.ability.ActorConditionEffect; @@ -10,61 +8,60 @@ import com.gpl.rpg.AndorsTrail.model.ability.traits.AbilityModifierTraits; import com.gpl.rpg.AndorsTrail.model.ability.traits.StatsModifierTraits; import com.gpl.rpg.AndorsTrail.model.item.ItemTraits_OnEquip; import com.gpl.rpg.AndorsTrail.model.item.ItemTraits_OnUse; -import com.gpl.rpg.AndorsTrail.resource.ResourceFileTokenizer; -import com.gpl.rpg.AndorsTrail.resource.ResourceFileTokenizer.ResourceObjectParser; +import com.gpl.rpg.AndorsTrail.resource.parsers.json.JsonFieldNames; +import com.gpl.rpg.AndorsTrail.resource.parsers.json.JsonParserFor; import com.gpl.rpg.AndorsTrail.util.ConstRange; import com.gpl.rpg.AndorsTrail.util.L; +import org.json.JSONException; +import org.json.JSONObject; + +import java.util.ArrayList; public final class ItemTraitsParser { - private final ResourceObjectParser actorConditionEffectParser_withDuration; - private final ResourceObjectParser actorConditionEffectParser_withoutDuration; - private final ResourceFileTokenizer tokenize4Fields = new ResourceFileTokenizer(4); - private final ResourceFileTokenizer tokenize2Fields = new ResourceFileTokenizer(2); - + private final JsonParserFor actorConditionEffectParser_withDuration; + private final JsonParserFor actorConditionEffectParser_withoutDuration; + public ItemTraitsParser(final ActorConditionTypeCollection actorConditionTypes) { - this.actorConditionEffectParser_withDuration = new ResourceObjectParser() { + this.actorConditionEffectParser_withDuration = new JsonParserFor() { @Override - public ActorConditionEffect parseRow(String[] parts) { + protected ActorConditionEffect parseObject(JSONObject o) throws JSONException { return new ActorConditionEffect( - actorConditionTypes.getActorConditionType(parts[0]) - , ResourceParserUtils.parseInt(parts[1], ActorCondition.MAGNITUDE_REMOVE_ALL) - , ResourceParserUtils.parseInt(parts[2], ActorCondition.DURATION_FOREVER) - , ResourceParserUtils.parseChance(parts[3]) - ); + actorConditionTypes.getActorConditionType(o.getString(JsonFieldNames.ActorConditionEffect.condition)) + , o.optInt(JsonFieldNames.ActorConditionEffect.magnitude, ActorCondition.MAGNITUDE_REMOVE_ALL) + , o.optInt(JsonFieldNames.ActorConditionEffect.duration, ActorCondition.DURATION_FOREVER) + , ResourceParserUtils.parseChance(o.getString(JsonFieldNames.ActorConditionEffect.chance)) + ); } }; - this.actorConditionEffectParser_withoutDuration = new ResourceObjectParser() { + this.actorConditionEffectParser_withoutDuration = new JsonParserFor() { @Override - public ActorConditionEffect parseRow(String[] parts) { + protected ActorConditionEffect parseObject(JSONObject o) throws JSONException { return new ActorConditionEffect( - actorConditionTypes.getActorConditionType(parts[0]) - , ResourceParserUtils.parseInt(parts[1], 1) + actorConditionTypes.getActorConditionType(o.getString(JsonFieldNames.ActorConditionEffect.condition)) + , o.optInt(JsonFieldNames.ActorConditionEffect.magnitude, 1) , ActorCondition.DURATION_FOREVER , ResourceParserUtils.always - ); + ); } }; } - public ItemTraits_OnUse parseItemTraits_OnUse(String[] parts, int startIndex, boolean parseTargetConditions) { - boolean hasEffect = ResourceParserUtils.parseBoolean(parts[startIndex], false); - if (!hasEffect) return null; + public ItemTraits_OnUse parseItemTraits_OnUse(JSONObject o) throws JSONException { + if (o == null) return null; - ConstRange boostCurrentHP = ResourceParserUtils.parseConstRange(parts[startIndex + 1], parts[startIndex + 2]); - ConstRange boostCurrentAP = ResourceParserUtils.parseConstRange(parts[startIndex + 3], parts[startIndex + 4]); + ConstRange boostCurrentHP = ResourceParserUtils.parseConstRange(o.optJSONObject(JsonFieldNames.ItemTraits_OnUse.increaseCurrentHP)); + ConstRange boostCurrentAP = ResourceParserUtils.parseConstRange(o.optJSONObject(JsonFieldNames.ItemTraits_OnUse.increaseCurrentAP)); final ArrayList addedConditions_source = new ArrayList(); final ArrayList addedConditions_target = new ArrayList(); - tokenize4Fields.tokenizeArray(parts[startIndex + 5], addedConditions_source, actorConditionEffectParser_withDuration); - if (parseTargetConditions) { - tokenize4Fields.tokenizeArray(parts[startIndex + 6], addedConditions_target, actorConditionEffectParser_withDuration); - } - if ( boostCurrentHP == null + actorConditionEffectParser_withDuration.parseRows(o.optJSONArray(JsonFieldNames.ItemTraits_OnUse.conditionsSource), addedConditions_source); + actorConditionEffectParser_withDuration.parseRows(o.optJSONArray(JsonFieldNames.ItemTraits_OnUse.conditionsTarget), addedConditions_target); + if ( boostCurrentHP == null && boostCurrentAP == null && addedConditions_source.isEmpty() && addedConditions_target.isEmpty() ) { if (AndorsTrailApplication.DEVELOPMENT_VALIDATEDATA) { - L.log("OPTIMIZE: Tried to parseItemTraits_OnUse , where hasEffect=" + parts[startIndex] + ", but all data was empty."); + L.log("OPTIMIZE: Tried to parseItemTraits_OnUse , where hasEffect=" + o.toString() + ", but all data was empty."); } return null; } else { @@ -80,17 +77,16 @@ public final class ItemTraitsParser { } } - public ItemTraits_OnEquip parseItemTraits_OnEquip(String[] parts, int startIndex) { - boolean hasEffect = ResourceParserUtils.parseBoolean(parts[startIndex], false); - if (!hasEffect) return null; + public ItemTraits_OnEquip parseItemTraits_OnEquip(JSONObject o) throws JSONException { + if (o == null) return null; - AbilityModifierTraits stats = ResourceParserUtils.parseAbilityModifierTraits(parts, startIndex + 1); + AbilityModifierTraits stats = ResourceParserUtils.parseAbilityModifierTraits(o); final ArrayList addedConditions = new ArrayList(); - tokenize2Fields.tokenizeArray(parts[startIndex + 12], addedConditions, actorConditionEffectParser_withoutDuration); + actorConditionEffectParser_withoutDuration.parseRows(o.optJSONArray(JsonFieldNames.ItemTraits_OnEquip.addedConditions), addedConditions); if (stats == null && addedConditions.isEmpty()) { if (AndorsTrailApplication.DEVELOPMENT_VALIDATEDATA) { - L.log("OPTIMIZE: Tried to parseItemTraits_OnEquip , where hasEffect=" + parts[startIndex] + ", but all data was empty."); + L.log("OPTIMIZE: Tried to parseItemTraits_OnEquip , where hasEffect=" + o.toString() + ", but all data was empty."); } return null; } else { diff --git a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/ItemTypeParser.java b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/ItemTypeParser.java index c25728ece..6be33bce2 100644 --- a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/ItemTypeParser.java +++ b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/ItemTypeParser.java @@ -6,41 +6,43 @@ import com.gpl.rpg.AndorsTrail.model.item.ItemTraits_OnEquip; import com.gpl.rpg.AndorsTrail.model.item.ItemTraits_OnUse; import com.gpl.rpg.AndorsTrail.model.item.ItemType; import com.gpl.rpg.AndorsTrail.resource.DynamicTileLoader; -import com.gpl.rpg.AndorsTrail.resource.ResourceFileTokenizer.ResourceParserFor; +import com.gpl.rpg.AndorsTrail.resource.parsers.json.JsonCollectionParserFor; +import com.gpl.rpg.AndorsTrail.resource.parsers.json.JsonFieldNames; import com.gpl.rpg.AndorsTrail.util.Pair; +import org.json.JSONException; +import org.json.JSONObject; -public final class ItemTypeParser extends ResourceParserFor { +public final class ItemTypeParser extends JsonCollectionParserFor { private final DynamicTileLoader tileLoader; private final ItemTraitsParser itemTraitsParser; private final ItemCategoryCollection itemCategories; public ItemTypeParser(DynamicTileLoader tileLoader, ActorConditionTypeCollection actorConditionsTypes, ItemCategoryCollection itemCategories) { - super(39); this.tileLoader = tileLoader; this.itemTraitsParser = new ItemTraitsParser(actorConditionsTypes); this.itemCategories = itemCategories; } @Override - public Pair parseRow(String[] parts) { - final String itemTypeName = parts[2]; - String id = parts[0]; - final ItemTraits_OnEquip equipEffect = itemTraitsParser.parseItemTraits_OnEquip(parts, 7); - final ItemTraits_OnUse useEffect = itemTraitsParser.parseItemTraits_OnUse(parts, 20, false); - final ItemTraits_OnUse hitEffect = itemTraitsParser.parseItemTraits_OnUse(parts, 26, true); - final ItemTraits_OnUse killEffect = itemTraitsParser.parseItemTraits_OnUse(parts, 33, false); + public Pair parseObject(JSONObject o) throws JSONException { + final String id = o.getString(JsonFieldNames.ItemType.itemTypeID); + final String itemTypeName = o.getString(JsonFieldNames.ItemType.name); + final ItemTraits_OnEquip equipEffect = itemTraitsParser.parseItemTraits_OnEquip(o.optJSONObject(JsonFieldNames.ItemType.equipEffect)); + final ItemTraits_OnUse useEffect = itemTraitsParser.parseItemTraits_OnUse(o.optJSONObject(JsonFieldNames.ItemType.useEffect)); + final ItemTraits_OnUse hitEffect = itemTraitsParser.parseItemTraits_OnUse(o.optJSONObject(JsonFieldNames.ItemType.hitEffect)); + final ItemTraits_OnUse killEffect = itemTraitsParser.parseItemTraits_OnUse(o.optJSONObject(JsonFieldNames.ItemType.killEffect)); - final int baseMarketCost = Integer.parseInt(parts[6]); - final boolean hasManualPrice = ResourceParserUtils.parseBoolean(parts[5], false); + final int baseMarketCost = o.getInt(JsonFieldNames.ItemType.baseMarketCost); + final boolean hasManualPrice = o.optInt(JsonFieldNames.ItemType.hasManualPrice, 0) > 0; final ItemType itemType = new ItemType( id - , ResourceParserUtils.parseImageID(tileLoader, parts[1]) + , ResourceParserUtils.parseImageID(tileLoader, o.getString(JsonFieldNames.ItemType.iconID)) , itemTypeName - , itemCategories.getItemCategory(parts[3]) // category - , ResourceParserUtils.parseInt(parts[4], ItemType.DISPLAYTYPE_ORDINARY) // Displaytype - , hasManualPrice // hasManualPrice - , baseMarketCost // Base market cost + , itemCategories.getItemCategory(o.getString(JsonFieldNames.ItemType.category)) + , o.optInt(JsonFieldNames.ItemType.displaytype, ItemType.DISPLAYTYPE_ORDINARY) + , hasManualPrice + , baseMarketCost , equipEffect , useEffect , hitEffect diff --git a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/MonsterTypeParser.java b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/MonsterTypeParser.java index 1b6023de9..d008f7084 100644 --- a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/MonsterTypeParser.java +++ b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/MonsterTypeParser.java @@ -1,19 +1,21 @@ package com.gpl.rpg.AndorsTrail.resource.parsers; import android.util.FloatMath; - import com.gpl.rpg.AndorsTrail.controller.Constants; import com.gpl.rpg.AndorsTrail.model.ability.ActorConditionTypeCollection; import com.gpl.rpg.AndorsTrail.model.actor.MonsterType; import com.gpl.rpg.AndorsTrail.model.item.DropListCollection; import com.gpl.rpg.AndorsTrail.model.item.ItemTraits_OnUse; import com.gpl.rpg.AndorsTrail.resource.DynamicTileLoader; -import com.gpl.rpg.AndorsTrail.resource.ResourceFileTokenizer.ResourceParserFor; +import com.gpl.rpg.AndorsTrail.resource.parsers.json.JsonCollectionParserFor; +import com.gpl.rpg.AndorsTrail.resource.parsers.json.JsonFieldNames; import com.gpl.rpg.AndorsTrail.util.ConstRange; import com.gpl.rpg.AndorsTrail.util.Pair; import com.gpl.rpg.AndorsTrail.util.Size; +import org.json.JSONException; +import org.json.JSONObject; -public final class MonsterTypeParser extends ResourceParserFor { +public final class MonsterTypeParser extends JsonCollectionParserFor { private final Size size1x1 = new Size(1, 1); private final DropListCollection droplists; @@ -21,51 +23,51 @@ public final class MonsterTypeParser extends ResourceParserFor { private final DynamicTileLoader tileLoader; public MonsterTypeParser(final DropListCollection droplists, final ActorConditionTypeCollection actorConditionTypes, final DynamicTileLoader tileLoader) { - super(28); this.itemTraitsParser = new ItemTraitsParser(actorConditionTypes); this.droplists = droplists; this.tileLoader = tileLoader; } - + @Override - public Pair parseRow(String[] parts) { - final ItemTraits_OnUse hitEffect = itemTraitsParser.parseItemTraits_OnUse(parts, 21, true); - int maxHP = ResourceParserUtils.parseInt(parts[8], 1); - int maxAP = ResourceParserUtils.parseInt(parts[9], 10); - int attackCost = ResourceParserUtils.parseInt(parts[11], 10); - int attackChance = ResourceParserUtils.parseInt(parts[12], 0); - ConstRange damagePotential = ResourceParserUtils.parseConstRange(parts[15], parts[16]); - int criticalSkill = ResourceParserUtils.parseInt(parts[13], 0); - float criticalMultiplier = ResourceParserUtils.parseFloat(parts[14], 0); - int blockChance = ResourceParserUtils.parseInt(parts[17], 0); - int damageResistance = ResourceParserUtils.parseInt(parts[18], 0); - + protected Pair parseObject(JSONObject o) throws JSONException { + final String monsterTypeID = o.getString(JsonFieldNames.Monster.monsterTypeID); + + int maxHP = o.optInt(JsonFieldNames.Monster.maxHP, 1); + int maxAP = o.optInt(JsonFieldNames.Monster.maxAP, 10); + int attackCost = o.optInt(JsonFieldNames.Monster.attackCost, 10); + int attackChance = o.optInt(JsonFieldNames.Monster.attackChance, 0); + ConstRange damagePotential = ResourceParserUtils.parseConstRange(o.optJSONObject(JsonFieldNames.Monster.attackDamage)); + int criticalSkill = o.optInt(JsonFieldNames.Monster.criticalSkill, 0); + float criticalMultiplier = (float) o.optDouble(JsonFieldNames.Monster.criticalMultiplier, 0); + int blockChance = o.optInt(JsonFieldNames.Monster.blockChance, 0); + int damageResistance = o.optInt(JsonFieldNames.Monster.damageResistance, 0); + final ItemTraits_OnUse hitEffect = itemTraitsParser.parseItemTraits_OnUse(o.optJSONObject(JsonFieldNames.Monster.hitEffect)); + final int exp = getExpectedMonsterExperience(attackCost, attackChance, damagePotential, criticalSkill, criticalMultiplier, blockChance, damageResistance, hitEffect, maxHP, maxAP); - - final String monsterTypeId = parts[0]; - return new Pair(monsterTypeId, new MonsterType( - monsterTypeId - , parts[2] // Name - , parts[3] // SpawnGroup - , exp // Exp - , droplists.getDropList(parts[19]) // Droplist - , ResourceParserUtils.parseNullableString(parts[20]) // PhraseID - , ResourceParserUtils.parseBoolean(parts[6], false) // isUnique - , ResourceParserUtils.parseNullableString(parts[7]) // Faction - , ResourceParserUtils.parseInt(parts[5], MonsterType.MONSTERCLASS_HUMANOID) // MonsterClass - , ResourceParserUtils.parseSize(parts[4], size1x1) //TODO: This could be loaded from the tileset size instead. - , ResourceParserUtils.parseImageID(tileLoader, parts[1]) // IconID - , maxAP - , maxHP - , ResourceParserUtils.parseInt(parts[10], 10) // MoveCost - , attackCost - , attackChance - , criticalSkill - , criticalMultiplier - , damagePotential - , blockChance - , damageResistance - , hitEffect == null ? null : new ItemTraits_OnUse[] { hitEffect } + + return new Pair(monsterTypeID, new MonsterType( + monsterTypeID + , o.getString(JsonFieldNames.Monster.name) + , o.getString(JsonFieldNames.Monster.spawnGroup) + , exp + , droplists.getDropList(o.optString(JsonFieldNames.Monster.droplistID)) + , o.optString(JsonFieldNames.Monster.phraseID) + , o.optInt(JsonFieldNames.Monster.unique, 0) > 0 + , o.optString(JsonFieldNames.Monster.faction) + , o.optInt(JsonFieldNames.Monster.monsterClass, MonsterType.MONSTERCLASS_HUMANOID) + , ResourceParserUtils.parseSize(o.optString(JsonFieldNames.Monster.size), size1x1) //TODO: This could be loaded from the tileset size instead. + , ResourceParserUtils.parseImageID(tileLoader, o.getString(JsonFieldNames.Monster.iconID)) + , maxAP + , maxHP + , o.optInt(JsonFieldNames.Monster.moveCost, 10) + , attackCost + , attackChance + , criticalSkill + , criticalMultiplier + , damagePotential + , blockChance + , damageResistance + , hitEffect == null ? null : new ItemTraits_OnUse[] { hitEffect } )); } diff --git a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/QuestParser.java b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/QuestParser.java index bc92956c1..f5fa50894 100644 --- a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/QuestParser.java +++ b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/QuestParser.java @@ -1,28 +1,30 @@ package com.gpl.rpg.AndorsTrail.resource.parsers; +import com.gpl.rpg.AndorsTrail.model.quest.Quest; +import com.gpl.rpg.AndorsTrail.model.quest.QuestLogEntry; +import com.gpl.rpg.AndorsTrail.resource.parsers.json.JsonCollectionParserFor; +import com.gpl.rpg.AndorsTrail.resource.parsers.json.JsonFieldNames; +import com.gpl.rpg.AndorsTrail.resource.parsers.json.JsonParserFor; +import com.gpl.rpg.AndorsTrail.util.Pair; +import org.json.JSONException; +import org.json.JSONObject; + import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; -import com.gpl.rpg.AndorsTrail.model.quest.Quest; -import com.gpl.rpg.AndorsTrail.model.quest.QuestLogEntry; -import com.gpl.rpg.AndorsTrail.resource.ResourceFileTokenizer; -import com.gpl.rpg.AndorsTrail.resource.ResourceFileTokenizer.ResourceParserFor; -import com.gpl.rpg.AndorsTrail.util.Pair; - -public final class QuestParser extends ResourceParserFor { +public final class QuestParser extends JsonCollectionParserFor { private int sortOrder = 0; - private final ResourceFileTokenizer questStageResourceTokenizer = new ResourceFileTokenizer(4); - private final ResourceObjectParser questLogEntryParser = new ResourceObjectParser() { + private final JsonParserFor questLogEntryParser = new JsonParserFor() { @Override - public QuestLogEntry parseRow(String[] parts) { + protected QuestLogEntry parseObject(JSONObject o) throws JSONException { return new QuestLogEntry( - Integer.parseInt(parts[0]) // Progress - , parts[1] // Logtext - , ResourceParserUtils.parseInt(parts[2], 0) // RewardExperience - , ResourceParserUtils.parseBoolean(parts[3], false) // FinishesQuest - ); + o.getInt(JsonFieldNames.QuestLogEntry.progress) + ,o.getString(JsonFieldNames.QuestLogEntry.logText) + ,o.optInt(JsonFieldNames.QuestLogEntry.rewardExperience, 0) + ,o.optInt(JsonFieldNames.QuestLogEntry.finishesQuest, 0) > 0 + ); } }; private final Comparator sortByQuestProgress = new Comparator() { @@ -31,29 +33,24 @@ public final class QuestParser extends ResourceParserFor { return a.progress - b.progress; } }; - - public QuestParser() { - super(4); - } - + @Override - public Pair parseRow(String[] parts) { - // [id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; - + protected Pair parseObject(JSONObject o) throws JSONException { + final String id = o.getString(JsonFieldNames.Quest.questID); + final ArrayList stages = new ArrayList(); - questStageResourceTokenizer.tokenizeArray(parts[3], stages, questLogEntryParser); - Collections.sort(stages, sortByQuestProgress); + questLogEntryParser.parseRows(o.getJSONArray(JsonFieldNames.Quest.stages), stages); + Collections.sort(stages, sortByQuestProgress); final QuestLogEntry[] stages_ = stages.toArray(new QuestLogEntry[stages.size()]); - + ++sortOrder; - - final String questID = parts[0]; - return new Pair(questID, new Quest( - questID // questID - , parts[1] // name + + return new Pair(id, new Quest( + id + , o.getString(JsonFieldNames.Quest.name) , stages_ - , ResourceParserUtils.parseBoolean(parts[2], false) // showInLog + , o.optInt(JsonFieldNames.Quest.showInLog, 0) > 0 , sortOrder - )); + )); } } diff --git a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/ResourceParserUtils.java b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/ResourceParserUtils.java index f0291273a..c539d9395 100644 --- a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/ResourceParserUtils.java +++ b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/ResourceParserUtils.java @@ -5,60 +5,19 @@ import com.gpl.rpg.AndorsTrail.model.ability.traits.AbilityModifierTraits; import com.gpl.rpg.AndorsTrail.model.ability.traits.StatsModifierTraits; import com.gpl.rpg.AndorsTrail.resource.DynamicTileLoader; import com.gpl.rpg.AndorsTrail.resource.parsers.json.JsonFieldNames; -import com.gpl.rpg.AndorsTrail.util.*; -import org.json.JSONArray; +import com.gpl.rpg.AndorsTrail.util.ConstRange; +import com.gpl.rpg.AndorsTrail.util.L; +import com.gpl.rpg.AndorsTrail.util.Size; import org.json.JSONException; import org.json.JSONObject; -import java.util.ArrayList; - public final class ResourceParserUtils { public static int parseImageID(DynamicTileLoader tileLoader, String s) { String[] parts = s.split(":"); return tileLoader.prepareTileID(parts[0], Integer.parseInt(parts[1])); } - public static Range parseRange(String min, String max) { - if ( (max == null || max.length() <= 0) - && (min == null || min.length() <= 0) ) { - return null; - } - if (max == null || max.length() <= 0) { - if (AndorsTrailApplication.DEVELOPMENT_VALIDATEDATA) { - L.log("OPTIMIZE: Unable to parse range with min=" + min + " because max was empty."); - } - return null; - } - if (min == null || min.length() <= 0) { - if (AndorsTrailApplication.DEVELOPMENT_VALIDATEDATA) { - L.log("OPTIMIZE: Unable to parse range with max=" + max + " because min was empty."); - } - return null; - } - - return new Range(Integer.parseInt(max), Integer.parseInt(min)); - } - public static ConstRange parseConstRange(String min, String max) { - if ( (max == null || max.length() <= 0) - && (min == null || min.length() <= 0) ) { - return null; - } - if (max == null || max.length() <= 0) { - if (AndorsTrailApplication.DEVELOPMENT_VALIDATEDATA) { - L.log("OPTIMIZE: Unable to parse range with min=" + min + " because max was empty."); - } - return null; - } - if (min == null || min.length() <= 0) { - if (AndorsTrailApplication.DEVELOPMENT_VALIDATEDATA) { - L.log("OPTIMIZE: Unable to parse range with max=" + max + " because min was empty."); - } - return null; - } - - return new ConstRange(Integer.parseInt(max), Integer.parseInt(min)); - } - + private static final Size size1x1 = new Size(1, 1); public static Size parseSize(String s, final Size defaultSize) { if (s == null || s.length() <= 0) return defaultSize; @@ -68,110 +27,21 @@ public final class ResourceParserUtils { return new Size(Integer.parseInt(parts[0]), Integer.parseInt(parts[1])); } - public static String parseNullableString(String s) { - if (s == null || s.length() <= 0) return null; - return s; - } public static int parseInt(String s, int defaultValue) { if (s == null || s.length() <= 0) return defaultValue; return Integer.parseInt(s); } - public static float parseFloat(String s, int defaultValue) { - if (s == null || s.length() <= 0) return defaultValue; - return Float.parseFloat(s); - } - public static boolean parseBoolean(String s, boolean defaultValue) { - if (s == null || s.length() <= 0) return defaultValue; - if (AndorsTrailApplication.DEVELOPMENT_VALIDATEDATA) { - if (Character.isDigit(s.charAt(0))) { - if (Integer.parseInt(s) > 1) { - L.log("WARNING: Tried to parseBoolean on \"" + s + "\"."); - } - } - } - return !s.equals("0") && !s.equals("false"); - } - public static StatsModifierTraits parseStatsModifierTraits(String[] parts, int startIndex) { - boolean hasEffect = parseBoolean(parts[startIndex], false); - if (!hasEffect) return null; - - String visualEffectID = parts[startIndex + 1]; - ConstRange boostCurrentHP = parseConstRange(parts[startIndex + 2], parts[startIndex + 3]); - ConstRange boostCurrentAP = parseConstRange(parts[startIndex + 4], parts[startIndex + 5]); - if ( boostCurrentHP == null - && boostCurrentAP == null - ) { - if (AndorsTrailApplication.DEVELOPMENT_VALIDATEDATA) { - L.log("OPTIMIZE: Tried to parseStatsModifierTraits , where hasEffect=" + parts[startIndex] + ", but all data was empty."); - } - return null; - } else { - return new StatsModifierTraits( - parseInt(visualEffectID, StatsModifierTraits.VISUAL_EFFECT_NONE) - ,boostCurrentHP - ,boostCurrentAP - ); - } - } - - public static AbilityModifierTraits parseAbilityModifierTraits(String[] parts, int startIndex) { - String increaseMaxHP = parts[startIndex + 0]; - String increaseMaxAP = parts[startIndex + 1]; - String increaseMoveCost = parts[startIndex + 2]; - String increaseAttackCost = parts[startIndex + 3]; - String increaseAttackChance = parts[startIndex + 4]; - String increaseBlockChance = parts[startIndex + 9]; - String increaseMinDamage = parts[startIndex + 7]; - String increaseMaxDamage = parts[startIndex + 8]; - String increaseCriticalSkill = parts[startIndex + 5]; - String setCriticalMultiplier = parts[startIndex + 6]; - String increaseDamageResistance = parts[startIndex + 10]; - - if ( increaseMaxHP.length() <= 0 - && increaseMaxAP.length() <= 0 - && increaseMoveCost.length() <= 0 - && increaseAttackCost.length() <= 0 - && increaseAttackChance.length() <= 0 - && increaseBlockChance.length() <= 0 - && increaseMinDamage.length() <= 0 - && increaseMaxDamage.length() <= 0 - && increaseCriticalSkill.length() <= 0 - && setCriticalMultiplier.length() <= 0 - && increaseDamageResistance.length() <= 0 - ) { - return null; - } else { - return new AbilityModifierTraits( - parseInt(increaseMaxHP, 0) - ,parseInt(increaseMaxAP, 0) - ,parseInt(increaseMoveCost, 0) - ,0 // increaseUseItemCost - ,0 // increaseReequipCost - ,parseInt(increaseAttackCost, 0) - ,parseInt(increaseAttackChance, 0) - ,parseInt(increaseBlockChance, 0) - ,parseInt(increaseMinDamage, 0) - ,parseInt(increaseMaxDamage, 0) - ,parseInt(increaseCriticalSkill, 0) - ,parseFloat(setCriticalMultiplier, 0) - ,parseInt(increaseDamageResistance, 0) - ); - } - } - private static final ConstRange zero_or_one = new ConstRange(1, 0); private static final ConstRange one = new ConstRange(1, 1); private static final ConstRange five = new ConstRange(5, 5); private static final ConstRange ten = new ConstRange(10, 10); - public static ConstRange parseQuantity(String min, String max) { - if (min.equals("0") && max.equals("1")) return zero_or_one; - if (min.equals("1") && max.equals("1")) return one; - if (min.equals("5") && max.equals("5")) return five; - if (min.equals("10") && max.equals("10")) return ten; - return parseConstRange(min, max); + public static ConstRange parseConstRange(JSONObject o) throws JSONException { + if (o == null) return null; + + return new ConstRange(o.getInt(JsonFieldNames.Range.max), o.getInt(JsonFieldNames.Range.min)); } - + public static final ConstRange always = one; private static final ConstRange often = new ConstRange(100, 70); private static final ConstRange animalpart = new ConstRange(100, 30); @@ -202,16 +72,6 @@ public final class ResourceParserUtils { else return new ConstRange(100, parseInt(v, 10)); } - - - - - public static ConstRange parseConstRange(JSONObject o) throws JSONException { - if (o == null) return null; - - return new ConstRange(o.getInt(JsonFieldNames.Range.max), o.getInt(JsonFieldNames.Range.min)); - } - public static StatsModifierTraits parseStatsModifierTraits(JSONObject o) throws JSONException { if (o == null) return null; @@ -244,8 +104,8 @@ public final class ResourceParserUtils { ,o.optInt(JsonFieldNames.AbilityModifierTraits.increaseAttackCost, 0) ,o.optInt(JsonFieldNames.AbilityModifierTraits.increaseAttackChance, 0) ,o.optInt(JsonFieldNames.AbilityModifierTraits.increaseBlockChance, 0) - ,increaseAttackDamage.current - ,increaseAttackDamage.max + ,increaseAttackDamage != null ? increaseAttackDamage.current : 0 + ,increaseAttackDamage != null ? increaseAttackDamage.max : 0 ,o.optInt(JsonFieldNames.AbilityModifierTraits.increaseCriticalSkill, 0) ,o.optInt(JsonFieldNames.AbilityModifierTraits.setCriticalMultiplier, 0) ,o.optInt(JsonFieldNames.AbilityModifierTraits.increaseDamageResistance, 0) diff --git a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/json/JsonFieldNames.java b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/json/JsonFieldNames.java index 1acd13291..3299950c2 100644 --- a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/json/JsonFieldNames.java +++ b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/json/JsonFieldNames.java @@ -1,5 +1,8 @@ package com.gpl.rpg.AndorsTrail.resource.parsers.json; +import com.gpl.rpg.AndorsTrail.model.ability.ActorConditionEffect; +import com.gpl.rpg.AndorsTrail.model.item.ItemTraits_OnEquip; + public final class JsonFieldNames { public static final class ActorCondition { public static final String conditionTypeID = "id"; @@ -87,4 +90,76 @@ public final class JsonFieldNames { public static final String rewardID = "rewardID"; public static final String value = "value"; } + + public static final class Quest { + public static final String questID = "id"; + public static final String name = "name"; + public static final String showInLog = "showInLog"; + public static final String stages = "stages"; + } + + public static final class QuestLogEntry { + public static final String progress = "progress"; + public static final String logText = "logText"; + public static final String rewardExperience = "rewardExperience"; + public static final String finishesQuest = "finishesQuest"; + } + + public static final class Monster { + public static final String monsterTypeID = "id"; + public static final String iconID = "iconID"; + public static final String name = "name"; + public static final String spawnGroup = "spawnGroup"; + public static final String size = "size"; + public static final String monsterClass = "monsterClass"; + public static final String unique = "unique"; + public static final String faction = "faction"; + public static final String maxHP = "maxHP"; + public static final String maxAP = "maxAP"; + public static final String moveCost = "moveCost"; + public static final String attackCost = "attackCost"; + public static final String attackChance = "attackChance"; + public static final String criticalSkill = "criticalSkill"; + public static final String criticalMultiplier = "criticalMultiplier"; + public static final String attackDamage = "attackDamage"; + public static final String blockChance = "blockChance"; + public static final String damageResistance = "damageResistance"; + public static final String droplistID = "droplistID"; + public static final String phraseID = "phraseID"; + public static final String hitEffect = "hitEffect"; + } + + public static final class ItemTraits_OnUse { + public static final String increaseCurrentHP = "increaseCurrentHP"; + public static final String increaseCurrentAP = "increaseCurrentAP"; + public static final String conditionsSource = "conditionsSource"; + public static final String conditionsTarget = "conditionsTarget"; + } + + public static final class ActorConditionEffect { + public static final String condition = "condition"; + public static final String magnitude = "magnitude"; + public static final String duration = "duration"; + public static final String chance = "chance"; + } + + public static final class ItemTraits_OnEquip { + public static final String addedConditions = "addedConditions"; + } + + public static final class ItemType { + public static final String itemTypeID = "id"; + public static final String iconID = "iconID"; + public static final String name = "name"; + public static final String category = "category"; + public static final String displaytype = "displaytype"; + public static final String hasManualPrice = "hasManualPrice"; + public static final String baseMarketCost = "baseMarketCost"; + public static final String equipEffect = "equipEffect"; + public static final String useEffect = "useEffect"; + public static final String hitEffect = "hitEffect"; + public static final String killEffect = "killEffect"; + } + + } From 9ff01745d0c4735c4e687244d69d77150486fda2 Mon Sep 17 00:00:00 2001 From: Oskar Wiksten Date: Sun, 20 Jan 2013 23:36:08 +0100 Subject: [PATCH 3/6] Read JSON resources from raw/ folder instead of encoded in string blocks from values/ folder. --- .../conversation/ConversationLoader.java | 3 +- .../AndorsTrail/resource/ResourceLoader.java | 36 +++++++++++++++---- 2 files changed, 31 insertions(+), 8 deletions(-) diff --git a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/conversation/ConversationLoader.java b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/conversation/ConversationLoader.java index 680411640..48acd15c7 100644 --- a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/conversation/ConversationLoader.java +++ b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/conversation/ConversationLoader.java @@ -5,6 +5,7 @@ import java.util.HashMap; import android.content.res.Resources; +import com.gpl.rpg.AndorsTrail.resource.ResourceLoader; import com.gpl.rpg.AndorsTrail.resource.parsers.ConversationListParser; public final class ConversationLoader { @@ -20,7 +21,7 @@ public final class ConversationLoader { ConversationListParser conversationListParser = new ConversationListParser(); int resourceID = resourceIDsPerPhraseID.get(phraseID); - conversationCollection.initialize(conversationListParser, r.getString(resourceID)); + conversationCollection.initialize(conversationListParser, ResourceLoader.readStringFromRawResource(r, resourceID)); return conversationCollection.getPhrase(phraseID); } diff --git a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/ResourceLoader.java b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/ResourceLoader.java index f2a374198..3db86f6b5 100644 --- a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/ResourceLoader.java +++ b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/ResourceLoader.java @@ -1,5 +1,9 @@ package com.gpl.rpg.AndorsTrail.resource; +import java.io.BufferedReader; +import java.io.IOException; +import java.io.InputStream; +import java.io.InputStreamReader; import java.util.Collection; import com.gpl.rpg.AndorsTrail.AndorsTrailApplication; @@ -20,6 +24,8 @@ import com.gpl.rpg.AndorsTrail.util.Size; import android.content.res.Resources; import android.content.res.TypedArray; +import org.json.JSONArray; +import org.json.JSONException; public final class ResourceLoader { @@ -82,7 +88,7 @@ public final class ResourceLoader { final ItemCategoryParser itemCategoryParser = new ItemCategoryParser(); final TypedArray categoriesToLoad = r.obtainTypedArray(itemCategoriesResourceId); for (int i = 0; i < categoriesToLoad.length(); ++i) { - world.itemCategories.initialize(itemCategoryParser, categoriesToLoad.getString(i)); + world.itemCategories.initialize(itemCategoryParser, readStringFromRawResource(r, categoriesToLoad.getResourceId(i, -1))); } if (AndorsTrailApplication.DEVELOPMENT_DEBUGMESSAGES) timingCheckpoint("ItemCategoryParser"); @@ -91,7 +97,7 @@ public final class ResourceLoader { final ActorConditionsTypeParser actorConditionsTypeParser = new ActorConditionsTypeParser(loader); final TypedArray conditionsToLoad = r.obtainTypedArray(actorConditionsResourceId); for (int i = 0; i < conditionsToLoad.length(); ++i) { - world.actorConditionsTypes.initialize(actorConditionsTypeParser, conditionsToLoad.getString(i)); + world.actorConditionsTypes.initialize(actorConditionsTypeParser, readStringFromRawResource(r, conditionsToLoad.getResourceId(i, -1))); } if (AndorsTrailApplication.DEVELOPMENT_DEBUGMESSAGES) timingCheckpoint("ActorConditionsTypeParser"); @@ -106,7 +112,7 @@ public final class ResourceLoader { final ItemTypeParser itemTypeParser = new ItemTypeParser(loader, world.actorConditionsTypes, world.itemCategories); final TypedArray itemsToLoad = r.obtainTypedArray(itemsResourceId); for (int i = 0; i < itemsToLoad.length(); ++i) { - world.itemTypes.initialize(itemTypeParser, itemsToLoad.getString(i)); + world.itemTypes.initialize(itemTypeParser, readStringFromRawResource(r, itemsToLoad.getResourceId(i, -1))); } if (AndorsTrailApplication.DEVELOPMENT_DEBUGMESSAGES) timingCheckpoint("ItemTypeParser"); @@ -116,7 +122,7 @@ public final class ResourceLoader { final DropListParser dropListParser = new DropListParser(world.itemTypes); final TypedArray droplistsToLoad = r.obtainTypedArray(droplistsResourceId); for (int i = 0; i < droplistsToLoad.length(); ++i) { - world.dropLists.initialize(dropListParser, droplistsToLoad.getString(i)); + world.dropLists.initialize(dropListParser, readStringFromRawResource(r, droplistsToLoad.getResourceId(i, -1))); } if (AndorsTrailApplication.DEVELOPMENT_DEBUGMESSAGES) timingCheckpoint("DropListParser"); @@ -126,7 +132,7 @@ public final class ResourceLoader { final QuestParser questParser = new QuestParser(); final TypedArray questsToLoad = r.obtainTypedArray(questsResourceId); for (int i = 0; i < questsToLoad.length(); ++i) { - world.quests.initialize(questParser, questsToLoad.getString(i)); + world.quests.initialize(questParser, readStringFromRawResource(r, questsToLoad.getResourceId(i, -1))); } if (AndorsTrailApplication.DEVELOPMENT_DEBUGMESSAGES) timingCheckpoint("QuestParser"); @@ -137,7 +143,7 @@ public final class ResourceLoader { final TypedArray conversationsListsToLoad = r.obtainTypedArray(conversationsListsResourceId); for (int i = 0; i < conversationsListsToLoad.length(); ++i) { ConversationCollection conversations = new ConversationCollection(); - Collection ids = conversations.initialize(conversationListParser, conversationsListsToLoad.getString(i)); + Collection ids = conversations.initialize(conversationListParser, readStringFromRawResource(r, conversationsListsToLoad.getResourceId(i, -1))); world.conversationLoader.addIDs(conversationsListsToLoad.getResourceId(i, -1), ids); } if (AndorsTrailApplication.DEVELOPMENT_DEBUGMESSAGES) timingCheckpoint("ConversationListParser"); @@ -148,7 +154,7 @@ public final class ResourceLoader { final MonsterTypeParser monsterTypeParser = new MonsterTypeParser(world.dropLists, world.actorConditionsTypes, loader); final TypedArray monstersToLoad = r.obtainTypedArray(monstersResourceId); for (int i = 0; i < monstersToLoad.length(); ++i) { - world.monsterTypes.initialize(monsterTypeParser, monstersToLoad.getString(i)); + world.monsterTypes.initialize(monsterTypeParser, readStringFromRawResource(r, monstersToLoad.getResourceId(i, -1))); } if (AndorsTrailApplication.DEVELOPMENT_DEBUGMESSAGES) timingCheckpoint("MonsterTypeParser"); @@ -190,6 +196,22 @@ public final class ResourceLoader { } } + public static String readStringFromRawResource(final Resources r, int resourceID) { + InputStream is = r.openRawResource(resourceID); + BufferedReader br = new BufferedReader(new InputStreamReader(is)); + StringBuilder sb = new StringBuilder(1000); + String line = ""; + try { + while((line = br.readLine()) != null) sb.append(line); + br.close(); + is.close(); + return sb.toString(); + } catch (IOException e) { + L.log("ERROR: Reading from resource " + resourceID + " failed. " + e.toString()); + return ""; + } + } + private static void prepareTilesets(DynamicTileLoader loader, int mTileSize) { final Size dst_sz1x1 = new Size(mTileSize, mTileSize); final Size dst_sz2x2 = new Size(mTileSize*2, mTileSize*2); From 8e75512cfadda58cf100cd699d2095e59737015f Mon Sep 17 00:00:00 2001 From: Oskar Wiksten Date: Mon, 21 Jan 2013 00:20:03 +0100 Subject: [PATCH 4/6] Fixes to JSON parsing of resource files. --- .../resource/parsers/ConversationListParser.java | 12 ++++++------ .../resource/parsers/MonsterTypeParser.java | 8 ++++---- .../AndorsTrail/resource/parsers/QuestParser.java | 2 +- .../resource/parsers/ResourceParserUtils.java | 4 ++-- .../parsers/json/JsonCollectionParserFor.java | 13 ++++++++++++- .../resource/parsers/json/JsonFieldNames.java | 3 --- 6 files changed, 25 insertions(+), 17 deletions(-) diff --git a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/ConversationListParser.java b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/ConversationListParser.java index 8810b9acb..dfe3e2c3a 100644 --- a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/ConversationListParser.java +++ b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/ConversationListParser.java @@ -24,8 +24,8 @@ public final class ConversationListParser extends JsonCollectionParserFor(id, new Phrase( - o.optString(JsonFieldNames.Phrase.message) + o.optString(JsonFieldNames.Phrase.message, null) , _replies , _rewards )); diff --git a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/MonsterTypeParser.java b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/MonsterTypeParser.java index d008f7084..781d0f703 100644 --- a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/MonsterTypeParser.java +++ b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/MonsterTypeParser.java @@ -50,12 +50,12 @@ public final class MonsterTypeParser extends JsonCollectionParserFor 0 - , o.optString(JsonFieldNames.Monster.faction) + , o.optString(JsonFieldNames.Monster.faction, null) , o.optInt(JsonFieldNames.Monster.monsterClass, MonsterType.MONSTERCLASS_HUMANOID) - , ResourceParserUtils.parseSize(o.optString(JsonFieldNames.Monster.size), size1x1) //TODO: This could be loaded from the tileset size instead. + , ResourceParserUtils.parseSize(o.optString(JsonFieldNames.Monster.size, null), size1x1) //TODO: This could be loaded from the tileset size instead. , ResourceParserUtils.parseImageID(tileLoader, o.getString(JsonFieldNames.Monster.iconID)) , maxAP , maxHP diff --git a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/QuestParser.java b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/QuestParser.java index f5fa50894..b00d67e60 100644 --- a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/QuestParser.java +++ b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/QuestParser.java @@ -21,7 +21,7 @@ public final class QuestParser extends JsonCollectionParserFor { protected QuestLogEntry parseObject(JSONObject o) throws JSONException { return new QuestLogEntry( o.getInt(JsonFieldNames.QuestLogEntry.progress) - ,o.getString(JsonFieldNames.QuestLogEntry.logText) + ,o.optString(JsonFieldNames.QuestLogEntry.logText, null) ,o.optInt(JsonFieldNames.QuestLogEntry.rewardExperience, 0) ,o.optInt(JsonFieldNames.QuestLogEntry.finishesQuest, 0) > 0 ); diff --git a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/ResourceParserUtils.java b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/ResourceParserUtils.java index c539d9395..7f9e9165a 100644 --- a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/ResourceParserUtils.java +++ b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/ResourceParserUtils.java @@ -75,8 +75,8 @@ public final class ResourceParserUtils { public static StatsModifierTraits parseStatsModifierTraits(JSONObject o) throws JSONException { if (o == null) return null; - ConstRange boostCurrentHP = parseConstRange(o.getJSONObject(JsonFieldNames.StatsModifierTraits.increaseCurrentHP)); - ConstRange boostCurrentAP = parseConstRange(o.getJSONObject(JsonFieldNames.StatsModifierTraits.increaseCurrentAP)); + ConstRange boostCurrentHP = parseConstRange(o.optJSONObject(JsonFieldNames.StatsModifierTraits.increaseCurrentHP)); + ConstRange boostCurrentAP = parseConstRange(o.optJSONObject(JsonFieldNames.StatsModifierTraits.increaseCurrentAP)); if (boostCurrentHP == null && boostCurrentAP == null) { if (AndorsTrailApplication.DEVELOPMENT_VALIDATEDATA) { L.log("OPTIMIZE: Tried to parseStatsModifierTraits , where hasEffect=" + o.toString() + ", but all data was empty."); diff --git a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/json/JsonCollectionParserFor.java b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/json/JsonCollectionParserFor.java index e9ac10cd8..69ef744bd 100644 --- a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/json/JsonCollectionParserFor.java +++ b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/json/JsonCollectionParserFor.java @@ -6,6 +6,8 @@ import com.gpl.rpg.AndorsTrail.util.Pair; import org.json.JSONArray; import org.json.JSONException; +import java.io.PrintWriter; +import java.io.StringWriter; import java.util.ArrayList; import java.util.HashMap; import java.util.HashSet; @@ -19,7 +21,16 @@ public abstract class JsonCollectionParserFor extends JsonParserFor o : objects) { diff --git a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/json/JsonFieldNames.java b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/json/JsonFieldNames.java index 3299950c2..0187e94fd 100644 --- a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/json/JsonFieldNames.java +++ b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/parsers/json/JsonFieldNames.java @@ -1,8 +1,5 @@ package com.gpl.rpg.AndorsTrail.resource.parsers.json; -import com.gpl.rpg.AndorsTrail.model.ability.ActorConditionEffect; -import com.gpl.rpg.AndorsTrail.model.item.ItemTraits_OnEquip; - public final class JsonFieldNames { public static final class ActorCondition { public static final String conditionTypeID = "id"; From 76eaf13772dcfbf71501a711d6565c93ebcf6211 Mon Sep 17 00:00:00 2001 From: Oskar Wiksten Date: Mon, 21 Jan 2013 21:04:08 +0100 Subject: [PATCH 5/6] Minor fix to loading json files from raw/. --- .../conversation/ConversationLoader.java | 2 +- .../AndorsTrail/resource/ResourceLoader.java | 51 ++++++++----------- 2 files changed, 23 insertions(+), 30 deletions(-) diff --git a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/conversation/ConversationLoader.java b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/conversation/ConversationLoader.java index 48acd15c7..183a80fe1 100644 --- a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/conversation/ConversationLoader.java +++ b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/conversation/ConversationLoader.java @@ -21,7 +21,7 @@ public final class ConversationLoader { ConversationListParser conversationListParser = new ConversationListParser(); int resourceID = resourceIDsPerPhraseID.get(phraseID); - conversationCollection.initialize(conversationListParser, ResourceLoader.readStringFromRawResource(r, resourceID)); + conversationCollection.initialize(conversationListParser, ResourceLoader.readStringFromRaw(r, resourceID)); return conversationCollection.getPhrase(phraseID); } diff --git a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/ResourceLoader.java b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/ResourceLoader.java index 3db86f6b5..cf1fd6de5 100644 --- a/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/ResourceLoader.java +++ b/AndorsTrail/src/com/gpl/rpg/AndorsTrail/resource/ResourceLoader.java @@ -1,32 +1,22 @@ package com.gpl.rpg.AndorsTrail.resource; +import android.content.res.Resources; +import android.content.res.TypedArray; +import com.gpl.rpg.AndorsTrail.AndorsTrailApplication; +import com.gpl.rpg.AndorsTrail.R; +import com.gpl.rpg.AndorsTrail.context.WorldContext; +import com.gpl.rpg.AndorsTrail.conversation.ConversationCollection; +import com.gpl.rpg.AndorsTrail.model.map.TMXMapTranslator; +import com.gpl.rpg.AndorsTrail.resource.parsers.*; +import com.gpl.rpg.AndorsTrail.util.L; +import com.gpl.rpg.AndorsTrail.util.Size; + import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.util.Collection; -import com.gpl.rpg.AndorsTrail.AndorsTrailApplication; -import com.gpl.rpg.AndorsTrail.R; -import com.gpl.rpg.AndorsTrail.context.WorldContext; -import com.gpl.rpg.AndorsTrail.conversation.ConversationCollection; -import com.gpl.rpg.AndorsTrail.model.map.TMXMapTranslator; -import com.gpl.rpg.AndorsTrail.resource.parsers.ActorConditionsTypeParser; -import com.gpl.rpg.AndorsTrail.resource.parsers.ConversationListParser; -import com.gpl.rpg.AndorsTrail.resource.parsers.DropListParser; -import com.gpl.rpg.AndorsTrail.resource.parsers.ItemCategoryParser; -import com.gpl.rpg.AndorsTrail.resource.parsers.ItemTypeParser; -import com.gpl.rpg.AndorsTrail.resource.parsers.MonsterTypeParser; -import com.gpl.rpg.AndorsTrail.resource.parsers.QuestParser; -import com.gpl.rpg.AndorsTrail.resource.parsers.WorldMapParser; -import com.gpl.rpg.AndorsTrail.util.L; -import com.gpl.rpg.AndorsTrail.util.Size; - -import android.content.res.Resources; -import android.content.res.TypedArray; -import org.json.JSONArray; -import org.json.JSONException; - public final class ResourceLoader { private static final int itemCategoriesResourceId = R.array.loadresource_itemcategories; @@ -88,7 +78,7 @@ public final class ResourceLoader { final ItemCategoryParser itemCategoryParser = new ItemCategoryParser(); final TypedArray categoriesToLoad = r.obtainTypedArray(itemCategoriesResourceId); for (int i = 0; i < categoriesToLoad.length(); ++i) { - world.itemCategories.initialize(itemCategoryParser, readStringFromRawResource(r, categoriesToLoad.getResourceId(i, -1))); + world.itemCategories.initialize(itemCategoryParser, readStringFromRaw(r, categoriesToLoad, i)); } if (AndorsTrailApplication.DEVELOPMENT_DEBUGMESSAGES) timingCheckpoint("ItemCategoryParser"); @@ -97,7 +87,7 @@ public final class ResourceLoader { final ActorConditionsTypeParser actorConditionsTypeParser = new ActorConditionsTypeParser(loader); final TypedArray conditionsToLoad = r.obtainTypedArray(actorConditionsResourceId); for (int i = 0; i < conditionsToLoad.length(); ++i) { - world.actorConditionsTypes.initialize(actorConditionsTypeParser, readStringFromRawResource(r, conditionsToLoad.getResourceId(i, -1))); + world.actorConditionsTypes.initialize(actorConditionsTypeParser, readStringFromRaw(r, conditionsToLoad, i)); } if (AndorsTrailApplication.DEVELOPMENT_DEBUGMESSAGES) timingCheckpoint("ActorConditionsTypeParser"); @@ -112,7 +102,7 @@ public final class ResourceLoader { final ItemTypeParser itemTypeParser = new ItemTypeParser(loader, world.actorConditionsTypes, world.itemCategories); final TypedArray itemsToLoad = r.obtainTypedArray(itemsResourceId); for (int i = 0; i < itemsToLoad.length(); ++i) { - world.itemTypes.initialize(itemTypeParser, readStringFromRawResource(r, itemsToLoad.getResourceId(i, -1))); + world.itemTypes.initialize(itemTypeParser, readStringFromRaw(r, itemsToLoad, i)); } if (AndorsTrailApplication.DEVELOPMENT_DEBUGMESSAGES) timingCheckpoint("ItemTypeParser"); @@ -122,7 +112,7 @@ public final class ResourceLoader { final DropListParser dropListParser = new DropListParser(world.itemTypes); final TypedArray droplistsToLoad = r.obtainTypedArray(droplistsResourceId); for (int i = 0; i < droplistsToLoad.length(); ++i) { - world.dropLists.initialize(dropListParser, readStringFromRawResource(r, droplistsToLoad.getResourceId(i, -1))); + world.dropLists.initialize(dropListParser, readStringFromRaw(r, droplistsToLoad, i)); } if (AndorsTrailApplication.DEVELOPMENT_DEBUGMESSAGES) timingCheckpoint("DropListParser"); @@ -132,7 +122,7 @@ public final class ResourceLoader { final QuestParser questParser = new QuestParser(); final TypedArray questsToLoad = r.obtainTypedArray(questsResourceId); for (int i = 0; i < questsToLoad.length(); ++i) { - world.quests.initialize(questParser, readStringFromRawResource(r, questsToLoad.getResourceId(i, -1))); + world.quests.initialize(questParser, readStringFromRaw(r, questsToLoad, i)); } if (AndorsTrailApplication.DEVELOPMENT_DEBUGMESSAGES) timingCheckpoint("QuestParser"); @@ -143,7 +133,7 @@ public final class ResourceLoader { final TypedArray conversationsListsToLoad = r.obtainTypedArray(conversationsListsResourceId); for (int i = 0; i < conversationsListsToLoad.length(); ++i) { ConversationCollection conversations = new ConversationCollection(); - Collection ids = conversations.initialize(conversationListParser, readStringFromRawResource(r, conversationsListsToLoad.getResourceId(i, -1))); + Collection ids = conversations.initialize(conversationListParser, readStringFromRaw(r, conversationsListsToLoad, i)); world.conversationLoader.addIDs(conversationsListsToLoad.getResourceId(i, -1), ids); } if (AndorsTrailApplication.DEVELOPMENT_DEBUGMESSAGES) timingCheckpoint("ConversationListParser"); @@ -154,7 +144,7 @@ public final class ResourceLoader { final MonsterTypeParser monsterTypeParser = new MonsterTypeParser(world.dropLists, world.actorConditionsTypes, loader); final TypedArray monstersToLoad = r.obtainTypedArray(monstersResourceId); for (int i = 0; i < monstersToLoad.length(); ++i) { - world.monsterTypes.initialize(monsterTypeParser, readStringFromRawResource(r, monstersToLoad.getResourceId(i, -1))); + world.monsterTypes.initialize(monsterTypeParser, readStringFromRaw(r, monstersToLoad, i)); } if (AndorsTrailApplication.DEVELOPMENT_DEBUGMESSAGES) timingCheckpoint("MonsterTypeParser"); @@ -196,7 +186,10 @@ public final class ResourceLoader { } } - public static String readStringFromRawResource(final Resources r, int resourceID) { + public static String readStringFromRaw(final Resources r, final TypedArray array, final int index) { + return readStringFromRaw(r, array.getResourceId(index, -1)); + } + public static String readStringFromRaw(final Resources r, final int resourceID) { InputStream is = r.openRawResource(resourceID); BufferedReader br = new BufferedReader(new InputStreamReader(is)); StringBuilder sb = new StringBuilder(1000); From 52a5b8f387b9f68f7f6180cc1ea85a2587766646 Mon Sep 17 00:00:00 2001 From: Oskar Wiksten Date: Sat, 9 Feb 2013 12:34:03 +0100 Subject: [PATCH 6/6] Converted all resource files to json instead of our previous custom format. --- .../res/raw-de/actorconditions_v0610.json | 27 + .../res/raw-de/actorconditions_v0611.json | 78 + .../res/raw-de/actorconditions_v0611_2.json | 97 + .../res/raw-de/actorconditions_v069.json | 52 + .../res/raw-de/actorconditions_v069_bwm.json | 101 + .../res/raw-de/conversationlist_alynndir.json | 70 + .../res/raw-de/conversationlist_ambelie.json | 128 + .../raw-de/conversationlist_crossglen.json | 140 + .../conversationlist_crossglen_gruil.json | 118 + .../conversationlist_crossglen_leonid.json | 201 + .../conversationlist_crossglen_leta.json | 110 + .../conversationlist_crossglen_odair.json | 161 + .../conversationlist_crossglen_tharal.json | 138 + .../raw-de/conversationlist_fallhaven.json | 206 + .../conversationlist_fallhaven_arcir.json | 153 + .../conversationlist_fallhaven_athamyr.json | 115 + .../conversationlist_fallhaven_bucus.json | 236 + .../conversationlist_fallhaven_church.json | 265 + .../conversationlist_fallhaven_drunk.json | 219 + .../conversationlist_fallhaven_gaela.json | 84 + .../conversationlist_fallhaven_larcal.json | 85 + .../conversationlist_fallhaven_nocmar.json | 258 + .../conversationlist_fallhaven_oldman.json | 151 + .../conversationlist_fallhaven_south.json | 52 + .../conversationlist_fallhaven_tavern.json | 107 + .../conversationlist_fallhaven_unnmir.json | 174 + .../conversationlist_fallhaven_unzel.json | 326 ++ .../conversationlist_fallhaven_vacor.json | 604 ++ .../conversationlist_fallhaven_warden.json | 405 ++ .../res/raw-de/conversationlist_farrik.json | 401 ++ .../raw-de/conversationlist_flagstone.json | 586 ++ .../raw-de/conversationlist_foamingflask.json | 247 + .../conversationlist_foamingflask_guards.json | 215 + ...rsationlist_foamingflask_outsideguard.json | 333 ++ .../res/raw-de/conversationlist_jan.json | 350 ++ .../res/raw-de/conversationlist_jolnor.json | 598 ++ .../res/raw-de/conversationlist_kaori.json | 296 + .../res/raw-de/conversationlist_maelveon.json | 78 + .../res/raw-de/conversationlist_mikhail.json | 350 ++ .../res/raw-de/conversationlist_ogam.json | 170 + .../res/raw-de/conversationlist_oluag.json | 272 + .../raw-de/conversationlist_signs_pre067.json | 103 + .../raw-de/conversationlist_signs_v068.json | 30 + .../conversationlist_thievesguild_1.json | 342 ++ .../res/raw-de/conversationlist_umar.json | 346 ++ .../conversationlist_vilegard_erttu.json | 97 + .../conversationlist_vilegard_shops.json | 99 + .../conversationlist_vilegard_tavern.json | 68 + .../conversationlist_vilegard_villagers.json | 171 + .../raw-de/conversationlist_wilderness.json | 74 + .../res/raw-de/conversationlist_wrye.json | 488 ++ AndorsTrail/res/raw-de/itemcategories_1.json | 330 ++ AndorsTrail/res/raw-de/itemlist_animal.json | 58 + AndorsTrail/res/raw-de/itemlist_armour.json | 260 + AndorsTrail/res/raw-de/itemlist_food.json | 206 + AndorsTrail/res/raw-de/itemlist_junk.json | 50 + AndorsTrail/res/raw-de/itemlist_money.json | 10 + .../res/raw-de/itemlist_necklaces.json | 35 + AndorsTrail/res/raw-de/itemlist_potions.json | 141 + .../res/raw-de/itemlist_pre0610_unused.json | 58 + AndorsTrail/res/raw-de/itemlist_quest.json | 188 + AndorsTrail/res/raw-de/itemlist_rings.json | 124 + AndorsTrail/res/raw-de/itemlist_v0610_1.json | 1021 ++++ AndorsTrail/res/raw-de/itemlist_v0610_2.json | 190 + AndorsTrail/res/raw-de/itemlist_v0611_1.json | 477 ++ AndorsTrail/res/raw-de/itemlist_v0611_2.json | 71 + AndorsTrail/res/raw-de/itemlist_v0611_3.json | 47 + AndorsTrail/res/raw-de/itemlist_v068.json | 190 + AndorsTrail/res/raw-de/itemlist_v069.json | 464 ++ AndorsTrail/res/raw-de/itemlist_v069_2.json | 38 + .../res/raw-de/itemlist_v069_questitems.json | 58 + AndorsTrail/res/raw-de/itemlist_weapons.json | 255 + .../raw-de/monsterlist_crossglen_animals.json | 469 ++ .../raw-de/monsterlist_crossglen_npcs.json | 119 + .../raw-de/monsterlist_fallhaven_animals.json | 292 + .../raw-de/monsterlist_fallhaven_npcs.json | 333 ++ .../raw-de/monsterlist_v0610_monsters1.json | 494 ++ .../raw-de/monsterlist_v0610_monsters2.json | 450 ++ .../res/raw-de/monsterlist_v0610_npcs1.json | 582 ++ .../raw-de/monsterlist_v0611_monsters1.json | 1862 ++++++ .../res/raw-de/monsterlist_v0611_npcs1.json | 176 + .../res/raw-de/monsterlist_v0611_npcs2.json | 580 ++ .../res/raw-de/monsterlist_v068_npcs.json | 423 ++ .../res/raw-de/monsterlist_v069_monsters.json | 646 +++ .../res/raw-de/monsterlist_v069_npcs.json | 536 ++ .../res/raw-de/monsterlist_wilderness.json | 513 ++ AndorsTrail/res/raw-de/questlist.json | 387 ++ .../res/raw-de/questlist_nondisplayed.json | 70 + AndorsTrail/res/raw-de/questlist_v0610.json | 352 ++ AndorsTrail/res/raw-de/questlist_v0611.json | 82 + AndorsTrail/res/raw-de/questlist_v0611_2.json | 257 + AndorsTrail/res/raw-de/questlist_v0611_3.json | 296 + AndorsTrail/res/raw-de/questlist_v068.json | 211 + AndorsTrail/res/raw-de/questlist_v069.json | 368 ++ .../res/raw-fr/actorconditions_v069.json | 52 + .../res/raw-fr/actorconditions_v069_bwm.json | 101 + .../raw-fr/conversationlist_crossglen.json | 140 + .../conversationlist_crossglen_gruil.json | 118 + .../conversationlist_crossglen_leonid.json | 201 + .../conversationlist_crossglen_leta.json | 110 + .../conversationlist_crossglen_odair.json | 161 + .../conversationlist_crossglen_tharal.json | 138 + .../raw-fr/conversationlist_fallhaven.json | 206 + .../conversationlist_fallhaven_arcir.json | 153 + .../conversationlist_fallhaven_athamyr.json | 115 + .../conversationlist_fallhaven_bucus.json | 236 + .../conversationlist_fallhaven_church.json | 265 + .../conversationlist_fallhaven_drunk.json | 219 + .../conversationlist_fallhaven_gaela.json | 84 + .../conversationlist_fallhaven_larcal.json | 85 + .../conversationlist_fallhaven_nocmar.json | 258 + .../conversationlist_fallhaven_oldman.json | 151 + .../conversationlist_fallhaven_tavern.json | 107 + .../conversationlist_fallhaven_unnmir.json | 174 + .../conversationlist_fallhaven_unzel.json | 326 ++ .../conversationlist_fallhaven_vacor.json | 604 ++ .../res/raw-fr/conversationlist_jan.json | 350 ++ .../res/raw-fr/conversationlist_mikhail.json | 350 ++ AndorsTrail/res/raw-fr/itemlist_animal.json | 58 + AndorsTrail/res/raw-fr/itemlist_armour.json | 260 + AndorsTrail/res/raw-fr/itemlist_food.json | 206 + AndorsTrail/res/raw-fr/itemlist_junk.json | 50 + AndorsTrail/res/raw-fr/itemlist_money.json | 10 + .../res/raw-fr/itemlist_necklaces.json | 35 + AndorsTrail/res/raw-fr/itemlist_potions.json | 141 + .../res/raw-fr/itemlist_pre0610_unused.json | 58 + AndorsTrail/res/raw-fr/itemlist_quest.json | 188 + AndorsTrail/res/raw-fr/itemlist_rings.json | 124 + AndorsTrail/res/raw-fr/itemlist_v0610_1.json | 1021 ++++ AndorsTrail/res/raw-fr/itemlist_v0610_2.json | 190 + AndorsTrail/res/raw-fr/itemlist_v0611_1.json | 477 ++ AndorsTrail/res/raw-fr/itemlist_v0611_2.json | 71 + AndorsTrail/res/raw-fr/itemlist_v068.json | 190 + AndorsTrail/res/raw-fr/itemlist_v069.json | 464 ++ AndorsTrail/res/raw-fr/itemlist_v069_2.json | 38 + .../res/raw-fr/itemlist_v069_questitems.json | 58 + AndorsTrail/res/raw-fr/itemlist_weapons.json | 255 + .../raw-fr/monsterlist_crossglen_animals.json | 469 ++ .../raw-fr/monsterlist_crossglen_npcs.json | 119 + .../raw-fr/monsterlist_fallhaven_animals.json | 292 + .../raw-fr/monsterlist_fallhaven_npcs.json | 333 ++ .../raw-fr/monsterlist_v0610_monsters1.json | 494 ++ .../raw-fr/monsterlist_v0610_monsters2.json | 450 ++ .../res/raw-fr/monsterlist_v0610_npcs1.json | 582 ++ .../raw-fr/monsterlist_v0611_monsters1.json | 1862 ++++++ .../res/raw-fr/monsterlist_v0611_npcs1.json | 176 + .../res/raw-fr/monsterlist_v068_npcs.json | 423 ++ .../res/raw-fr/monsterlist_v069_monsters.json | 646 +++ .../res/raw-fr/monsterlist_v069_npcs.json | 536 ++ .../res/raw-fr/monsterlist_wilderness.json | 513 ++ AndorsTrail/res/raw-fr/questlist.json | 387 ++ AndorsTrail/res/raw-fr/questlist_v068.json | 211 + AndorsTrail/res/raw-fr/questlist_v069.json | 368 ++ .../res/raw-it/actorconditions_v069.json | 52 + .../res/raw-it/actorconditions_v069_bwm.json | 101 + .../res/raw-it/conversationlist_alynndir.json | 70 + .../res/raw-it/conversationlist_ambelie.json | 128 + .../conversationlist_blackwater_harlenn.json | 1042 ++++ .../conversationlist_blackwater_herec.json | 232 + .../conversationlist_blackwater_kazaul.json | 158 + .../conversationlist_blackwater_lower.json | 263 + .../conversationlist_blackwater_signs.json | 281 + .../conversationlist_blackwater_throdna.json | 640 ++ .../conversationlist_blackwater_upper.json | 122 + .../raw-it/conversationlist_bwm_agent_1.json | 187 + .../raw-it/conversationlist_bwm_agent_2.json | 161 + .../raw-it/conversationlist_bwm_agent_3.json | 112 + .../raw-it/conversationlist_bwm_agent_4.json | 105 + .../raw-it/conversationlist_bwm_agent_5.json | 83 + .../raw-it/conversationlist_bwm_agent_6.json | 111 + .../raw-it/conversationlist_crossglen.json | 140 + .../conversationlist_crossglen_gruil.json | 118 + .../conversationlist_crossglen_leonid.json | 201 + .../conversationlist_crossglen_leta.json | 110 + .../conversationlist_crossglen_odair.json | 161 + .../conversationlist_crossglen_tharal.json | 138 + .../raw-it/conversationlist_fallhaven.json | 206 + .../conversationlist_fallhaven_arcir.json | 153 + .../conversationlist_fallhaven_athamyr.json | 115 + .../conversationlist_fallhaven_bucus.json | 236 + .../conversationlist_fallhaven_church.json | 265 + .../conversationlist_fallhaven_drunk.json | 219 + .../conversationlist_fallhaven_gaela.json | 84 + .../conversationlist_fallhaven_larcal.json | 85 + .../conversationlist_fallhaven_nocmar.json | 258 + .../conversationlist_fallhaven_oldman.json | 151 + .../conversationlist_fallhaven_south.json | 52 + .../conversationlist_fallhaven_tavern.json | 107 + .../conversationlist_fallhaven_unnmir.json | 174 + .../conversationlist_fallhaven_unzel.json | 326 ++ .../conversationlist_fallhaven_vacor.json | 604 ++ .../conversationlist_fallhaven_warden.json | 405 ++ .../res/raw-it/conversationlist_farrik.json | 401 ++ .../raw-it/conversationlist_flagstone.json | 586 ++ .../raw-it/conversationlist_foamingflask.json | 247 + .../conversationlist_foamingflask_guards.json | 215 + ...rsationlist_foamingflask_outsideguard.json | 333 ++ .../res/raw-it/conversationlist_jan.json | 350 ++ .../res/raw-it/conversationlist_jolnor.json | 598 ++ .../res/raw-it/conversationlist_kaori.json | 296 + .../res/raw-it/conversationlist_maelveon.json | 78 + .../res/raw-it/conversationlist_mikhail.json | 350 ++ .../res/raw-it/conversationlist_ogam.json | 170 + .../res/raw-it/conversationlist_oluag.json | 272 + .../raw-it/conversationlist_prim_arghest.json | 308 + .../raw-it/conversationlist_prim_bjorgur.json | 209 + .../raw-it/conversationlist_prim_fulus.json | 296 + .../conversationlist_prim_guthbered.json | 1150 ++++ .../res/raw-it/conversationlist_prim_inn.json | 353 ++ .../conversationlist_prim_merchants.json | 156 + .../raw-it/conversationlist_prim_outside.json | 355 ++ .../raw-it/conversationlist_prim_tavern.json | 177 + .../raw-it/conversationlist_signs_pre067.json | 103 + .../raw-it/conversationlist_signs_v068.json | 30 + .../conversationlist_thievesguild_1.json | 342 ++ .../res/raw-it/conversationlist_umar.json | 346 ++ .../conversationlist_vilegard_erttu.json | 97 + .../conversationlist_vilegard_shops.json | 99 + .../conversationlist_vilegard_tavern.json | 68 + .../conversationlist_vilegard_villagers.json | 171 + .../raw-it/conversationlist_wilderness.json | 74 + .../res/raw-it/conversationlist_wrye.json | 488 ++ AndorsTrail/res/raw-it/itemlist_animal.json | 58 + AndorsTrail/res/raw-it/itemlist_armour.json | 260 + AndorsTrail/res/raw-it/itemlist_food.json | 206 + AndorsTrail/res/raw-it/itemlist_junk.json | 50 + AndorsTrail/res/raw-it/itemlist_money.json | 10 + .../res/raw-it/itemlist_necklaces.json | 35 + AndorsTrail/res/raw-it/itemlist_potions.json | 141 + .../res/raw-it/itemlist_pre0610_unused.json | 58 + AndorsTrail/res/raw-it/itemlist_quest.json | 188 + AndorsTrail/res/raw-it/itemlist_rings.json | 124 + AndorsTrail/res/raw-it/itemlist_v068.json | 190 + AndorsTrail/res/raw-it/itemlist_v069.json | 464 ++ AndorsTrail/res/raw-it/itemlist_v069_2.json | 38 + .../res/raw-it/itemlist_v069_questitems.json | 58 + AndorsTrail/res/raw-it/itemlist_weapons.json | 255 + AndorsTrail/res/raw-it/questlist.json | 387 ++ AndorsTrail/res/raw-it/questlist_v068.json | 211 + AndorsTrail/res/raw-it/questlist_v069.json | 368 ++ .../raw-ja/conversationlist_crossglen.json | 140 + .../conversationlist_crossglen_gruil.json | 118 + .../conversationlist_crossglen_leonid.json | 201 + .../conversationlist_crossglen_leta.json | 110 + .../conversationlist_crossglen_odair.json | 161 + .../conversationlist_crossglen_tharal.json | 138 + .../raw-ja/conversationlist_fallhaven.json | 206 + .../res/raw-ja/conversationlist_jan.json | 350 ++ .../res/raw-ja/conversationlist_mikhail.json | 350 ++ .../res/raw-pl/actorconditions_v0610.json | 27 + .../res/raw-pl/actorconditions_v0611.json | 78 + .../res/raw-pl/actorconditions_v0611_2.json | 97 + .../res/raw-pl/actorconditions_v069.json | 52 + .../res/raw-pl/actorconditions_v069_bwm.json | 101 + .../raw-pl/conversationlist_crossglen.json | 140 + .../conversationlist_crossglen_gruil.json | 118 + .../conversationlist_crossglen_leonid.json | 201 + .../conversationlist_crossglen_leta.json | 110 + .../conversationlist_crossglen_odair.json | 161 + .../conversationlist_crossglen_tharal.json | 138 + .../raw-pl/conversationlist_fallhaven.json | 206 + .../conversationlist_fallhaven_arcir.json | 153 + .../conversationlist_fallhaven_bucus.json | 236 + .../conversationlist_fallhaven_church.json | 265 + .../conversationlist_fallhaven_drunk.json | 219 + .../conversationlist_fallhaven_nocmar.json | 258 + .../conversationlist_fallhaven_oldman.json | 151 + .../conversationlist_fallhaven_tavern.json | 107 + .../res/raw-pl/conversationlist_jan.json | 350 ++ .../res/raw-pl/conversationlist_mikhail.json | 350 ++ AndorsTrail/res/raw-pl/itemcategories_1.json | 330 ++ AndorsTrail/res/raw-pl/questlist.json | 387 ++ AndorsTrail/res/raw-pl/questlist_v0610.json | 352 ++ AndorsTrail/res/raw-pl/questlist_v0611.json | 82 + AndorsTrail/res/raw-pl/questlist_v0611_2.json | 257 + AndorsTrail/res/raw-pl/questlist_v0611_3.json | 296 + AndorsTrail/res/raw-pl/questlist_v068.json | 211 + AndorsTrail/res/raw-pl/questlist_v069.json | 368 ++ .../res/raw-pt-rBR/actorconditions_v0610.json | 27 + .../res/raw-pt-rBR/actorconditions_v0611.json | 78 + .../raw-pt-rBR/actorconditions_v0611_2.json | 97 + .../res/raw-pt-rBR/actorconditions_v069.json | 52 + .../raw-pt-rBR/actorconditions_v069_bwm.json | 101 + .../raw-pt-rBR/conversationlist_ailshara.json | 302 + .../conversationlist_algangror.json | 1498 +++++ .../raw-pt-rBR/conversationlist_alynndir.json | 70 + .../raw-pt-rBR/conversationlist_ambelie.json | 128 + .../raw-pt-rBR/conversationlist_arghes.json | 126 + .../raw-pt-rBR/conversationlist_benbyr.json | 353 ++ .../conversationlist_blackwater_harlenn.json | 1042 ++++ .../conversationlist_blackwater_herec.json | 232 + .../conversationlist_blackwater_kazaul.json | 158 + .../conversationlist_blackwater_lower.json | 263 + .../conversationlist_blackwater_signs.json | 281 + .../conversationlist_blackwater_throdna.json | 640 ++ .../conversationlist_blackwater_upper.json | 122 + .../raw-pt-rBR/conversationlist_buceth.json | 746 +++ .../conversationlist_bwm_agent_1.json | 187 + .../conversationlist_bwm_agent_2.json | 161 + .../conversationlist_bwm_agent_3.json | 112 + .../conversationlist_bwm_agent_4.json | 105 + .../conversationlist_bwm_agent_5.json | 83 + .../conversationlist_bwm_agent_6.json | 111 + .../conversationlist_crossglen.json | 140 + .../conversationlist_crossglen_gruil.json | 118 + .../conversationlist_crossglen_leonid.json | 201 + .../conversationlist_crossglen_leta.json | 110 + .../conversationlist_crossglen_odair.json | 161 + .../conversationlist_crossglen_tharal.json | 138 + .../conversationlist_crossroads_1.json | 243 + .../conversationlist_crossroads_2.json | 136 + .../conversationlist_crossroads_3.json | 236 + .../raw-pt-rBR/conversationlist_duaina.json | 324 ++ .../raw-pt-rBR/conversationlist_elwyl.json | 477 ++ .../conversationlist_elythom_1.json | 333 ++ .../raw-pt-rBR/conversationlist_erinith.json | 470 ++ .../raw-pt-rBR/conversationlist_ervelyn.json | 97 + .../conversationlist_fallhaven.json | 206 + .../conversationlist_fallhaven_arcir.json | 153 + .../conversationlist_fallhaven_athamyr.json | 115 + .../conversationlist_fallhaven_bucus.json | 236 + .../conversationlist_fallhaven_church.json | 265 + .../conversationlist_fallhaven_drunk.json | 219 + .../conversationlist_fallhaven_gaela.json | 84 + .../conversationlist_fallhaven_larcal.json | 85 + .../conversationlist_fallhaven_nocmar.json | 258 + .../conversationlist_fallhaven_oldman.json | 151 + .../conversationlist_fallhaven_south.json | 52 + .../conversationlist_fallhaven_tavern.json | 107 + .../conversationlist_fallhaven_unnmir.json | 174 + .../conversationlist_fallhaven_unzel.json | 326 ++ .../conversationlist_fallhaven_vacor.json | 604 ++ .../conversationlist_fallhaven_warden.json | 405 ++ .../raw-pt-rBR/conversationlist_farrik.json | 401 ++ .../raw-pt-rBR/conversationlist_fields_1.json | 34 + .../conversationlist_flagstone.json | 586 ++ .../conversationlist_foamingflask.json | 247 + .../conversationlist_foamingflask_guards.json | 215 + ...rsationlist_foamingflask_outsideguard.json | 333 ++ .../raw-pt-rBR/conversationlist_gandoren.json | 577 ++ .../raw-pt-rBR/conversationlist_gylew.json | 10 + .../raw-pt-rBR/conversationlist_hadracor.json | 424 ++ .../raw-pt-rBR/conversationlist_hjaldar.json | 426 ++ .../raw-pt-rBR/conversationlist_ingus.json | 257 + .../res/raw-pt-rBR/conversationlist_jan.json | 350 ++ .../raw-pt-rBR/conversationlist_jhaeld.json | 1149 ++++ .../raw-pt-rBR/conversationlist_jolnor.json | 598 ++ .../raw-pt-rBR/conversationlist_kaori.json | 296 + .../raw-pt-rBR/conversationlist_kaverin.json | 399 ++ .../raw-pt-rBR/conversationlist_kendelow.json | 238 + .../conversationlist_loneford_1.json | 259 + .../conversationlist_loneford_2.json | 284 + .../conversationlist_loneford_3.json | 89 + .../conversationlist_loneford_4.json | 186 + .../conversationlist_loneford_kuldan.json | 174 + .../raw-pt-rBR/conversationlist_maelveon.json | 78 + .../raw-pt-rBR/conversationlist_mazeg.json | 290 + .../raw-pt-rBR/conversationlist_mikhail.json | 350 ++ .../raw-pt-rBR/conversationlist_minarra.json | 483 ++ .../raw-pt-rBR/conversationlist_norath.json | 221 + .../res/raw-pt-rBR/conversationlist_ogam.json | 170 + .../raw-pt-rBR/conversationlist_oluag.json | 272 + .../conversationlist_prim_arghest.json | 308 + .../conversationlist_prim_bjorgur.json | 209 + .../conversationlist_prim_fulus.json | 296 + .../conversationlist_prim_guthbered.json | 1150 ++++ .../raw-pt-rBR/conversationlist_prim_inn.json | 353 ++ .../conversationlist_prim_merchants.json | 156 + .../conversationlist_prim_outside.json | 355 ++ .../conversationlist_prim_tavern.json | 177 + .../raw-pt-rBR/conversationlist_pwcave.json | 242 + .../raw-pt-rBR/conversationlist_reinkarr.json | 159 + .../conversationlist_remgard_bridgeguard.json | 388 ++ .../conversationlist_remgard_idolsigns.json | 657 +++ .../conversationlist_remgard_villagers1.json | 320 + .../conversationlist_remgard_villagers2.json | 68 + .../raw-pt-rBR/conversationlist_rogorn.json | 501 ++ .../raw-pt-rBR/conversationlist_rothses.json | 564 ++ .../conversationlist_sign_ulirfendor.json | 244 + .../conversationlist_sign_waterwaycave.json | 194 + .../conversationlist_signs_pre067.json | 103 + .../conversationlist_signs_v0611.json | 65 + .../conversationlist_signs_v068.json | 30 + .../raw-pt-rBR/conversationlist_taevinn.json | 76 + .../raw-pt-rBR/conversationlist_talion.json | 121 + .../raw-pt-rBR/conversationlist_talion_2.json | 1005 ++++ .../conversationlist_thievesguild_1.json | 342 ++ .../raw-pt-rBR/conversationlist_thorin.json | 373 ++ .../conversationlist_thorinbone.json | 308 + .../raw-pt-rBR/conversationlist_tinlyn.json | 280 + .../conversationlist_tinlyn_sheep.json | 359 ++ .../raw-pt-rBR/conversationlist_toszylae.json | 167 + .../conversationlist_toszylae_guard.json | 212 + .../conversationlist_ulirfendor.json | 1553 +++++ .../res/raw-pt-rBR/conversationlist_umar.json | 346 ++ .../raw-pt-rBR/conversationlist_unzel2.json | 80 + .../conversationlist_v0612graves.json | 246 + .../raw-pt-rBR/conversationlist_vacor2.json | 237 + .../conversationlist_vilegard_erttu.json | 97 + .../conversationlist_vilegard_shops.json | 99 + .../conversationlist_vilegard_tavern.json | 68 + .../conversationlist_vilegard_v0610.json | 118 + .../conversationlist_vilegard_villagers.json | 171 + .../conversationlist_wilderness.json | 74 + .../res/raw-pt-rBR/conversationlist_wrye.json | 488 ++ .../res/raw-pt-rBR/itemlist_animal.json | 58 + .../res/raw-pt-rBR/itemlist_armour.json | 260 + AndorsTrail/res/raw-pt-rBR/itemlist_food.json | 206 + AndorsTrail/res/raw-pt-rBR/itemlist_junk.json | 50 + .../res/raw-pt-rBR/itemlist_money.json | 10 + .../res/raw-pt-rBR/itemlist_necklaces.json | 35 + .../res/raw-pt-rBR/itemlist_potions.json | 141 + .../raw-pt-rBR/itemlist_pre0610_unused.json | 58 + .../res/raw-pt-rBR/itemlist_quest.json | 188 + .../res/raw-pt-rBR/itemlist_rings.json | 124 + .../res/raw-pt-rBR/itemlist_v0610_1.json | 1021 ++++ .../res/raw-pt-rBR/itemlist_v0610_2.json | 190 + .../res/raw-pt-rBR/itemlist_v0611_1.json | 477 ++ .../res/raw-pt-rBR/itemlist_v0611_2.json | 71 + .../res/raw-pt-rBR/itemlist_v0611_3.json | 47 + AndorsTrail/res/raw-pt-rBR/itemlist_v068.json | 190 + AndorsTrail/res/raw-pt-rBR/itemlist_v069.json | 464 ++ .../res/raw-pt-rBR/itemlist_v069_2.json | 38 + .../raw-pt-rBR/itemlist_v069_questitems.json | 58 + .../res/raw-pt-rBR/itemlist_weapons.json | 255 + .../monsterlist_crossglen_animals.json | 469 ++ .../monsterlist_crossglen_npcs.json | 119 + .../monsterlist_fallhaven_animals.json | 292 + .../monsterlist_fallhaven_npcs.json | 333 ++ .../monsterlist_v0610_monsters1.json | 494 ++ .../monsterlist_v0610_monsters2.json | 450 ++ .../raw-pt-rBR/monsterlist_v0610_npcs1.json | 582 ++ .../monsterlist_v0611_monsters1.json | 1862 ++++++ .../raw-pt-rBR/monsterlist_v0611_npcs1.json | 176 + .../raw-pt-rBR/monsterlist_v0611_npcs2.json | 580 ++ .../res/raw-pt-rBR/monsterlist_v068_npcs.json | 423 ++ .../raw-pt-rBR/monsterlist_v069_monsters.json | 646 +++ .../res/raw-pt-rBR/monsterlist_v069_npcs.json | 536 ++ .../raw-pt-rBR/monsterlist_wilderness.json | 513 ++ AndorsTrail/res/raw-pt-rBR/questlist.json | 387 ++ .../res/raw-pt-rBR/questlist_v0610.json | 352 ++ .../res/raw-pt-rBR/questlist_v0611.json | 82 + .../res/raw-pt-rBR/questlist_v0611_2.json | 257 + .../res/raw-pt-rBR/questlist_v0611_3.json | 296 + .../res/raw-pt-rBR/questlist_v068.json | 211 + .../res/raw-pt-rBR/questlist_v069.json | 368 ++ .../res/raw-pt/actorconditions_v0610.json | 27 + .../res/raw-pt/actorconditions_v069.json | 52 + .../res/raw-pt/actorconditions_v069_bwm.json | 101 + .../raw-pt/monsterlist_crossglen_animals.json | 469 ++ .../raw-pt/monsterlist_crossglen_npcs.json | 119 + .../raw-pt/monsterlist_fallhaven_animals.json | 292 + .../raw-pt/monsterlist_fallhaven_npcs.json | 333 ++ .../raw-pt/monsterlist_v0610_monsters1.json | 494 ++ .../raw-pt/monsterlist_v0610_monsters2.json | 450 ++ .../res/raw-pt/monsterlist_v0610_npcs1.json | 582 ++ .../res/raw-pt/monsterlist_v068_npcs.json | 423 ++ .../res/raw-pt/monsterlist_v069_monsters.json | 646 +++ .../res/raw-pt/monsterlist_v069_npcs.json | 536 ++ .../res/raw-pt/monsterlist_wilderness.json | 513 ++ .../res/raw-ru/actorconditions_v0610.json | 27 + .../res/raw-ru/actorconditions_v0611.json | 78 + .../res/raw-ru/actorconditions_v0611_2.json | 97 + .../res/raw-ru/actorconditions_v069.json | 52 + .../res/raw-ru/actorconditions_v069_bwm.json | 101 + .../raw-ru/conversationlist_crossglen.json | 140 + .../conversationlist_crossglen_gruil.json | 118 + .../conversationlist_crossglen_leonid.json | 201 + .../conversationlist_crossglen_leta.json | 110 + .../conversationlist_crossglen_odair.json | 161 + .../conversationlist_crossglen_tharal.json | 138 + .../raw-ru/conversationlist_fallhaven.json | 206 + .../conversationlist_fallhaven_arcir.json | 153 + .../conversationlist_fallhaven_athamyr.json | 115 + .../conversationlist_fallhaven_bucus.json | 236 + .../conversationlist_fallhaven_church.json | 265 + .../conversationlist_fallhaven_drunk.json | 219 + .../conversationlist_fallhaven_gaela.json | 84 + .../conversationlist_fallhaven_larcal.json | 85 + .../conversationlist_fallhaven_nocmar.json | 258 + .../conversationlist_fallhaven_oldman.json | 151 + .../conversationlist_fallhaven_south.json | 52 + .../conversationlist_fallhaven_tavern.json | 107 + .../conversationlist_fallhaven_unnmir.json | 174 + .../conversationlist_fallhaven_unzel.json | 326 ++ .../conversationlist_fallhaven_vacor.json | 604 ++ .../raw-ru/conversationlist_flagstone.json | 586 ++ .../res/raw-ru/conversationlist_jan.json | 350 ++ .../res/raw-ru/conversationlist_mikhail.json | 350 ++ .../raw-ru/conversationlist_wilderness.json | 74 + AndorsTrail/res/raw-ru/itemlist_animal.json | 58 + AndorsTrail/res/raw-ru/itemlist_armour.json | 260 + AndorsTrail/res/raw-ru/itemlist_food.json | 206 + AndorsTrail/res/raw-ru/itemlist_junk.json | 50 + AndorsTrail/res/raw-ru/itemlist_money.json | 10 + .../res/raw-ru/itemlist_necklaces.json | 35 + AndorsTrail/res/raw-ru/itemlist_potions.json | 141 + .../res/raw-ru/itemlist_pre0610_unused.json | 58 + AndorsTrail/res/raw-ru/itemlist_quest.json | 188 + AndorsTrail/res/raw-ru/itemlist_rings.json | 124 + AndorsTrail/res/raw-ru/itemlist_v0610_1.json | 1021 ++++ AndorsTrail/res/raw-ru/itemlist_v0610_2.json | 190 + AndorsTrail/res/raw-ru/itemlist_v0611_1.json | 477 ++ AndorsTrail/res/raw-ru/itemlist_v0611_2.json | 71 + AndorsTrail/res/raw-ru/itemlist_v068.json | 190 + AndorsTrail/res/raw-ru/itemlist_v069.json | 464 ++ AndorsTrail/res/raw-ru/itemlist_v069_2.json | 38 + .../res/raw-ru/itemlist_v069_questitems.json | 58 + AndorsTrail/res/raw-ru/itemlist_weapons.json | 255 + .../raw-ru/monsterlist_crossglen_animals.json | 469 ++ .../raw-ru/monsterlist_crossglen_npcs.json | 119 + .../raw-ru/monsterlist_fallhaven_animals.json | 292 + .../raw-ru/monsterlist_fallhaven_npcs.json | 333 ++ .../raw-ru/monsterlist_v0610_monsters1.json | 494 ++ .../raw-ru/monsterlist_v0610_monsters2.json | 450 ++ .../res/raw-ru/monsterlist_v0610_npcs1.json | 582 ++ .../raw-ru/monsterlist_v0611_monsters1.json | 1862 ++++++ .../res/raw-ru/monsterlist_v0611_npcs1.json | 176 + .../res/raw-ru/monsterlist_v068_npcs.json | 423 ++ .../res/raw-ru/monsterlist_v069_monsters.json | 646 +++ .../res/raw-ru/monsterlist_v069_npcs.json | 536 ++ .../res/raw-ru/monsterlist_wilderness.json | 513 ++ AndorsTrail/res/raw-ru/questlist.json | 387 ++ AndorsTrail/res/raw-ru/questlist_v0610.json | 352 ++ AndorsTrail/res/raw-ru/questlist_v0611.json | 82 + AndorsTrail/res/raw-ru/questlist_v068.json | 211 + AndorsTrail/res/raw-ru/questlist_v069.json | 368 ++ .../res/raw/actorconditions_v0610.json | 27 + .../res/raw/actorconditions_v0611.json | 78 + .../res/raw/actorconditions_v0611_2.json | 97 + .../res/raw/actorconditions_v0612_2.json | 27 + AndorsTrail/res/raw/actorconditions_v069.json | 52 + .../res/raw/actorconditions_v069_bwm.json | 101 + .../res/raw/conversationlist_ailshara.json | 302 + .../res/raw/conversationlist_algangror.json | 1498 +++++ .../res/raw/conversationlist_alynndir.json | 70 + .../res/raw/conversationlist_ambelie.json | 128 + .../res/raw/conversationlist_arghes.json | 126 + .../res/raw/conversationlist_benbyr.json | 353 ++ .../conversationlist_blackwater_harlenn.json | 1042 ++++ .../conversationlist_blackwater_herec.json | 232 + .../conversationlist_blackwater_kazaul.json | 158 + .../conversationlist_blackwater_lower.json | 263 + .../conversationlist_blackwater_signs.json | 281 + .../conversationlist_blackwater_throdna.json | 640 ++ .../conversationlist_blackwater_upper.json | 122 + .../res/raw/conversationlist_buceth.json | 746 +++ .../res/raw/conversationlist_bwm_agent_1.json | 187 + .../res/raw/conversationlist_bwm_agent_2.json | 161 + .../res/raw/conversationlist_bwm_agent_3.json | 112 + .../res/raw/conversationlist_bwm_agent_4.json | 105 + .../res/raw/conversationlist_bwm_agent_5.json | 83 + .../res/raw/conversationlist_bwm_agent_6.json | 111 + .../res/raw/conversationlist_crossglen.json | 140 + .../raw/conversationlist_crossglen_gruil.json | 118 + .../conversationlist_crossglen_leonid.json | 201 + .../raw/conversationlist_crossglen_leta.json | 110 + .../raw/conversationlist_crossglen_odair.json | 161 + .../conversationlist_crossglen_tharal.json | 138 + .../raw/conversationlist_crossroads_1.json | 243 + .../raw/conversationlist_crossroads_2.json | 136 + .../raw/conversationlist_crossroads_3.json | 236 + .../res/raw/conversationlist_debug.json | 123 + .../res/raw/conversationlist_duaina.json | 324 ++ .../res/raw/conversationlist_elwyl.json | 477 ++ .../res/raw/conversationlist_elythom_1.json | 333 ++ .../res/raw/conversationlist_erinith.json | 470 ++ .../res/raw/conversationlist_ervelyn.json | 97 + .../res/raw/conversationlist_fallhaven.json | 206 + .../raw/conversationlist_fallhaven_arcir.json | 153 + .../conversationlist_fallhaven_athamyr.json | 115 + .../raw/conversationlist_fallhaven_bucus.json | 236 + .../conversationlist_fallhaven_church.json | 265 + .../raw/conversationlist_fallhaven_drunk.json | 219 + .../raw/conversationlist_fallhaven_gaela.json | 84 + .../conversationlist_fallhaven_larcal.json | 85 + .../conversationlist_fallhaven_nocmar.json | 258 + .../conversationlist_fallhaven_oldman.json | 151 + .../raw/conversationlist_fallhaven_south.json | 52 + .../conversationlist_fallhaven_tavern.json | 107 + .../conversationlist_fallhaven_unnmir.json | 174 + .../raw/conversationlist_fallhaven_unzel.json | 326 ++ .../raw/conversationlist_fallhaven_vacor.json | 604 ++ .../conversationlist_fallhaven_warden.json | 405 ++ .../res/raw/conversationlist_farrik.json | 401 ++ .../res/raw/conversationlist_fields_1.json | 34 + .../res/raw/conversationlist_flagstone.json | 586 ++ .../raw/conversationlist_foamingflask.json | 247 + .../conversationlist_foamingflask_guards.json | 215 + ...rsationlist_foamingflask_outsideguard.json | 333 ++ .../res/raw/conversationlist_gandoren.json | 577 ++ .../res/raw/conversationlist_gylew.json | 10 + .../res/raw/conversationlist_hadracor.json | 424 ++ .../res/raw/conversationlist_hjaldar.json | 426 ++ .../res/raw/conversationlist_ingus.json | 257 + AndorsTrail/res/raw/conversationlist_jan.json | 350 ++ .../res/raw/conversationlist_jhaeld.json | 1149 ++++ .../res/raw/conversationlist_jolnor.json | 598 ++ .../res/raw/conversationlist_kaori.json | 296 + .../res/raw/conversationlist_kaverin.json | 399 ++ .../res/raw/conversationlist_kendelow.json | 238 + .../res/raw/conversationlist_loneford_1.json | 259 + .../res/raw/conversationlist_loneford_2.json | 284 + .../res/raw/conversationlist_loneford_3.json | 89 + .../res/raw/conversationlist_loneford_4.json | 186 + .../raw/conversationlist_loneford_kuldan.json | 174 + .../res/raw/conversationlist_maelveon.json | 78 + .../res/raw/conversationlist_mazeg.json | 290 + .../res/raw/conversationlist_mikhail.json | 350 ++ .../res/raw/conversationlist_minarra.json | 483 ++ .../res/raw/conversationlist_norath.json | 221 + .../res/raw/conversationlist_ogam.json | 170 + .../res/raw/conversationlist_oluag.json | 272 + .../raw/conversationlist_prim_arghest.json | 308 + .../raw/conversationlist_prim_bjorgur.json | 209 + .../res/raw/conversationlist_prim_fulus.json | 296 + .../raw/conversationlist_prim_guthbered.json | 1150 ++++ .../res/raw/conversationlist_prim_inn.json | 353 ++ .../raw/conversationlist_prim_merchants.json | 156 + .../raw/conversationlist_prim_outside.json | 355 ++ .../res/raw/conversationlist_prim_tavern.json | 177 + .../res/raw/conversationlist_pwcave.json | 242 + .../res/raw/conversationlist_reinkarr.json | 159 + .../conversationlist_remgard_bridgeguard.json | 388 ++ .../conversationlist_remgard_idolsigns.json | 657 +++ .../conversationlist_remgard_villagers1.json | 320 + .../conversationlist_remgard_villagers2.json | 68 + .../res/raw/conversationlist_rogorn.json | 501 ++ .../res/raw/conversationlist_rothses.json | 564 ++ .../raw/conversationlist_sign_ulirfendor.json | 244 + .../conversationlist_sign_waterwaycave.json | 194 + .../raw/conversationlist_signs_pre067.json | 103 + .../res/raw/conversationlist_signs_v0611.json | 65 + .../res/raw/conversationlist_signs_v068.json | 30 + .../res/raw/conversationlist_taevinn.json | 76 + .../res/raw/conversationlist_talion.json | 121 + .../res/raw/conversationlist_talion_2.json | 1005 ++++ .../raw/conversationlist_thievesguild_1.json | 342 ++ .../res/raw/conversationlist_thorin.json | 373 ++ .../res/raw/conversationlist_thorinbone.json | 308 + .../res/raw/conversationlist_tinlyn.json | 280 + .../raw/conversationlist_tinlyn_sheep.json | 359 ++ .../res/raw/conversationlist_toszylae.json | 167 + .../raw/conversationlist_toszylae_guard.json | 212 + .../res/raw/conversationlist_ulirfendor.json | 1553 +++++ .../res/raw/conversationlist_umar.json | 346 ++ .../res/raw/conversationlist_unzel2.json | 80 + .../res/raw/conversationlist_v0612graves.json | 246 + .../res/raw/conversationlist_vacor2.json | 237 + .../raw/conversationlist_vilegard_erttu.json | 97 + .../raw/conversationlist_vilegard_shops.json | 99 + .../raw/conversationlist_vilegard_tavern.json | 68 + .../raw/conversationlist_vilegard_v0610.json | 118 + .../conversationlist_vilegard_villagers.json | 171 + .../res/raw/conversationlist_wilderness.json | 74 + .../res/raw/conversationlist_wrye.json | 488 ++ AndorsTrail/res/raw/droplists_crossglen.json | 233 + .../res/raw/droplists_crossglen_outside.json | 250 + AndorsTrail/res/raw/droplists_debug.json | 165 + AndorsTrail/res/raw/droplists_fallhaven.json | 213 + .../res/raw/droplists_v0610_monsters.json | 571 ++ AndorsTrail/res/raw/droplists_v0610_npcs.json | 281 + .../res/raw/droplists_v0610_shops.json | 2195 +++++++ .../res/raw/droplists_v0611_monsters.json | 577 ++ AndorsTrail/res/raw/droplists_v0611_npcs.json | 525 ++ .../res/raw/droplists_v0611_shops.json | 386 ++ AndorsTrail/res/raw/droplists_v068.json | 221 + .../res/raw/droplists_v069_monsters.json | 523 ++ AndorsTrail/res/raw/droplists_v069_npcs.json | 387 ++ AndorsTrail/res/raw/droplists_wilderness.json | 599 ++ AndorsTrail/res/raw/itemcategories_1.json | 330 ++ AndorsTrail/res/raw/itemlist_animal.json | 58 + AndorsTrail/res/raw/itemlist_armour.json | 260 + AndorsTrail/res/raw/itemlist_debug.json | 63 + AndorsTrail/res/raw/itemlist_food.json | 206 + AndorsTrail/res/raw/itemlist_junk.json | 50 + AndorsTrail/res/raw/itemlist_money.json | 10 + AndorsTrail/res/raw/itemlist_necklaces.json | 35 + AndorsTrail/res/raw/itemlist_potions.json | 141 + .../res/raw/itemlist_pre0610_unused.json | 58 + AndorsTrail/res/raw/itemlist_quest.json | 188 + AndorsTrail/res/raw/itemlist_rings.json | 124 + AndorsTrail/res/raw/itemlist_v0610_1.json | 1021 ++++ AndorsTrail/res/raw/itemlist_v0610_2.json | 190 + AndorsTrail/res/raw/itemlist_v0611_1.json | 477 ++ AndorsTrail/res/raw/itemlist_v0611_2.json | 71 + AndorsTrail/res/raw/itemlist_v0611_3.json | 47 + AndorsTrail/res/raw/itemlist_v068.json | 190 + AndorsTrail/res/raw/itemlist_v069.json | 464 ++ AndorsTrail/res/raw/itemlist_v069_2.json | 38 + .../res/raw/itemlist_v069_questitems.json | 58 + AndorsTrail/res/raw/itemlist_weapons.json | 255 + .../raw/monsterlist_crossglen_animals.json | 469 ++ .../res/raw/monsterlist_crossglen_npcs.json | 119 + AndorsTrail/res/raw/monsterlist_debug.json | 109 + .../raw/monsterlist_fallhaven_animals.json | 292 + .../res/raw/monsterlist_fallhaven_npcs.json | 333 ++ .../res/raw/monsterlist_v0610_monsters1.json | 494 ++ .../res/raw/monsterlist_v0610_monsters2.json | 450 ++ .../res/raw/monsterlist_v0610_npcs1.json | 582 ++ .../res/raw/monsterlist_v0611_monsters1.json | 1862 ++++++ .../res/raw/monsterlist_v0611_npcs1.json | 176 + .../res/raw/monsterlist_v0611_npcs2.json | 580 ++ .../res/raw/monsterlist_v068_npcs.json | 423 ++ .../res/raw/monsterlist_v069_monsters.json | 646 +++ .../res/raw/monsterlist_v069_npcs.json | 536 ++ .../res/raw/monsterlist_wilderness.json | 513 ++ AndorsTrail/res/raw/questlist.json | 387 ++ AndorsTrail/res/raw/questlist_debug.json | 26 + .../res/raw/questlist_nondisplayed.json | 70 + AndorsTrail/res/raw/questlist_v0610.json | 352 ++ AndorsTrail/res/raw/questlist_v0611.json | 82 + AndorsTrail/res/raw/questlist_v0611_2.json | 257 + AndorsTrail/res/raw/questlist_v0611_3.json | 296 + AndorsTrail/res/raw/questlist_v068.json | 211 + AndorsTrail/res/raw/questlist_v069.json | 368 ++ .../res/values-de/content_actorconditions.xml | 52 - .../values-de/content_conversationlist.xml | 1026 ---- .../res/values-de/content_itemcategories.xml | 66 - .../res/values-de/content_itemlist.xml | 362 -- .../res/values-de/content_monsterlist.xml | 562 -- .../res/values-de/content_questlist.xml | 497 -- .../res/values-fr/content_actorconditions.xml | 23 - .../values-fr/content_conversationlist.xml | 455 -- .../res/values-fr/content_itemlist.xml | 354 -- .../res/values-fr/content_monsterlist.xml | 501 -- .../res/values-fr/content_questlist.xml | 212 - .../res/values-it/content_actorconditions.xml | 24 - .../values-it/content_conversationlist.xml | 1607 ----- .../res/values-it/content_itemlist.xml | 213 - .../res/values-it/content_questlist.xml | 229 - .../values-ja/content_conversationlist.xml | 377 -- .../res/values-pl/content_actorconditions.xml | 52 - .../values-pl/content_conversationlist.xml | 308 - .../res/values-pl/content_itemcategories.xml | 66 - .../res/values-pl/content_questlist.xml | 480 -- .../values-pt-rBR/content_actorconditions.xml | 51 - .../content_conversationlist.xml | 5147 ----------------- .../res/values-pt-rBR/content_itemlist.xml | 362 -- .../res/values-pt-rBR/content_monsterlist.xml | 562 -- .../res/values-pt-rBR/content_questlist.xml | 481 -- .../res/values-pt/content_actorconditions.xml | 30 - .../res/values-pt/content_monsterlist.xml | 403 -- .../res/values-ru/content_actorconditions.xml | 52 - .../values-ru/content_conversationlist.xml | 531 -- .../res/values-ru/content_itemlist.xml | 354 -- .../res/values-ru/content_monsterlist.xml | 501 -- .../res/values-ru/content_questlist.xml | 345 -- .../res/values/content_actorconditions.xml | 58 - .../res/values/content_conversationlist.xml | 5140 ---------------- AndorsTrail/res/values/content_droplist.xml | 787 --- .../res/values/content_itemcategories.xml | 66 - AndorsTrail/res/values/content_itemlist.xml | 392 -- .../res/values/content_monsterlist.xml | 562 -- AndorsTrail/res/values/content_questlist.xml | 497 -- AndorsTrail/res/values/loadresources.xml | 366 +- .../res/values/loadresources_debug.xml | 78 +- 757 files changed, 198908 insertions(+), 24040 deletions(-) create mode 100644 AndorsTrail/res/raw-de/actorconditions_v0610.json create mode 100644 AndorsTrail/res/raw-de/actorconditions_v0611.json create mode 100644 AndorsTrail/res/raw-de/actorconditions_v0611_2.json create mode 100644 AndorsTrail/res/raw-de/actorconditions_v069.json create mode 100644 AndorsTrail/res/raw-de/actorconditions_v069_bwm.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_alynndir.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_ambelie.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_crossglen.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_crossglen_gruil.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_crossglen_leonid.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_crossglen_leta.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_crossglen_odair.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_crossglen_tharal.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_fallhaven.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_fallhaven_arcir.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_fallhaven_athamyr.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_fallhaven_bucus.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_fallhaven_church.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_fallhaven_drunk.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_fallhaven_gaela.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_fallhaven_larcal.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_fallhaven_nocmar.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_fallhaven_oldman.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_fallhaven_south.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_fallhaven_tavern.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_fallhaven_unnmir.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_fallhaven_unzel.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_fallhaven_vacor.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_fallhaven_warden.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_farrik.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_flagstone.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_foamingflask.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_foamingflask_guards.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_foamingflask_outsideguard.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_jan.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_jolnor.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_kaori.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_maelveon.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_mikhail.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_ogam.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_oluag.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_signs_pre067.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_signs_v068.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_thievesguild_1.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_umar.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_vilegard_erttu.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_vilegard_shops.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_vilegard_tavern.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_vilegard_villagers.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_wilderness.json create mode 100644 AndorsTrail/res/raw-de/conversationlist_wrye.json create mode 100644 AndorsTrail/res/raw-de/itemcategories_1.json create mode 100644 AndorsTrail/res/raw-de/itemlist_animal.json create mode 100644 AndorsTrail/res/raw-de/itemlist_armour.json create mode 100644 AndorsTrail/res/raw-de/itemlist_food.json create mode 100644 AndorsTrail/res/raw-de/itemlist_junk.json create mode 100644 AndorsTrail/res/raw-de/itemlist_money.json create mode 100644 AndorsTrail/res/raw-de/itemlist_necklaces.json create mode 100644 AndorsTrail/res/raw-de/itemlist_potions.json create mode 100644 AndorsTrail/res/raw-de/itemlist_pre0610_unused.json create mode 100644 AndorsTrail/res/raw-de/itemlist_quest.json create mode 100644 AndorsTrail/res/raw-de/itemlist_rings.json create mode 100644 AndorsTrail/res/raw-de/itemlist_v0610_1.json create mode 100644 AndorsTrail/res/raw-de/itemlist_v0610_2.json create mode 100644 AndorsTrail/res/raw-de/itemlist_v0611_1.json create mode 100644 AndorsTrail/res/raw-de/itemlist_v0611_2.json create mode 100644 AndorsTrail/res/raw-de/itemlist_v0611_3.json create mode 100644 AndorsTrail/res/raw-de/itemlist_v068.json create mode 100644 AndorsTrail/res/raw-de/itemlist_v069.json create mode 100644 AndorsTrail/res/raw-de/itemlist_v069_2.json create mode 100644 AndorsTrail/res/raw-de/itemlist_v069_questitems.json create mode 100644 AndorsTrail/res/raw-de/itemlist_weapons.json create mode 100644 AndorsTrail/res/raw-de/monsterlist_crossglen_animals.json create mode 100644 AndorsTrail/res/raw-de/monsterlist_crossglen_npcs.json create mode 100644 AndorsTrail/res/raw-de/monsterlist_fallhaven_animals.json create mode 100644 AndorsTrail/res/raw-de/monsterlist_fallhaven_npcs.json create mode 100644 AndorsTrail/res/raw-de/monsterlist_v0610_monsters1.json create mode 100644 AndorsTrail/res/raw-de/monsterlist_v0610_monsters2.json create mode 100644 AndorsTrail/res/raw-de/monsterlist_v0610_npcs1.json create mode 100644 AndorsTrail/res/raw-de/monsterlist_v0611_monsters1.json create mode 100644 AndorsTrail/res/raw-de/monsterlist_v0611_npcs1.json create mode 100644 AndorsTrail/res/raw-de/monsterlist_v0611_npcs2.json create mode 100644 AndorsTrail/res/raw-de/monsterlist_v068_npcs.json create mode 100644 AndorsTrail/res/raw-de/monsterlist_v069_monsters.json create mode 100644 AndorsTrail/res/raw-de/monsterlist_v069_npcs.json create mode 100644 AndorsTrail/res/raw-de/monsterlist_wilderness.json create mode 100644 AndorsTrail/res/raw-de/questlist.json create mode 100644 AndorsTrail/res/raw-de/questlist_nondisplayed.json create mode 100644 AndorsTrail/res/raw-de/questlist_v0610.json create mode 100644 AndorsTrail/res/raw-de/questlist_v0611.json create mode 100644 AndorsTrail/res/raw-de/questlist_v0611_2.json create mode 100644 AndorsTrail/res/raw-de/questlist_v0611_3.json create mode 100644 AndorsTrail/res/raw-de/questlist_v068.json create mode 100644 AndorsTrail/res/raw-de/questlist_v069.json create mode 100644 AndorsTrail/res/raw-fr/actorconditions_v069.json create mode 100644 AndorsTrail/res/raw-fr/actorconditions_v069_bwm.json create mode 100644 AndorsTrail/res/raw-fr/conversationlist_crossglen.json create mode 100644 AndorsTrail/res/raw-fr/conversationlist_crossglen_gruil.json create mode 100644 AndorsTrail/res/raw-fr/conversationlist_crossglen_leonid.json create mode 100644 AndorsTrail/res/raw-fr/conversationlist_crossglen_leta.json create mode 100644 AndorsTrail/res/raw-fr/conversationlist_crossglen_odair.json create mode 100644 AndorsTrail/res/raw-fr/conversationlist_crossglen_tharal.json create mode 100644 AndorsTrail/res/raw-fr/conversationlist_fallhaven.json create mode 100644 AndorsTrail/res/raw-fr/conversationlist_fallhaven_arcir.json create mode 100644 AndorsTrail/res/raw-fr/conversationlist_fallhaven_athamyr.json create mode 100644 AndorsTrail/res/raw-fr/conversationlist_fallhaven_bucus.json create mode 100644 AndorsTrail/res/raw-fr/conversationlist_fallhaven_church.json create mode 100644 AndorsTrail/res/raw-fr/conversationlist_fallhaven_drunk.json create mode 100644 AndorsTrail/res/raw-fr/conversationlist_fallhaven_gaela.json create mode 100644 AndorsTrail/res/raw-fr/conversationlist_fallhaven_larcal.json create mode 100644 AndorsTrail/res/raw-fr/conversationlist_fallhaven_nocmar.json create mode 100644 AndorsTrail/res/raw-fr/conversationlist_fallhaven_oldman.json create mode 100644 AndorsTrail/res/raw-fr/conversationlist_fallhaven_tavern.json create mode 100644 AndorsTrail/res/raw-fr/conversationlist_fallhaven_unnmir.json create mode 100644 AndorsTrail/res/raw-fr/conversationlist_fallhaven_unzel.json create mode 100644 AndorsTrail/res/raw-fr/conversationlist_fallhaven_vacor.json create mode 100644 AndorsTrail/res/raw-fr/conversationlist_jan.json create mode 100644 AndorsTrail/res/raw-fr/conversationlist_mikhail.json create mode 100644 AndorsTrail/res/raw-fr/itemlist_animal.json create mode 100644 AndorsTrail/res/raw-fr/itemlist_armour.json create mode 100644 AndorsTrail/res/raw-fr/itemlist_food.json create mode 100644 AndorsTrail/res/raw-fr/itemlist_junk.json create mode 100644 AndorsTrail/res/raw-fr/itemlist_money.json create mode 100644 AndorsTrail/res/raw-fr/itemlist_necklaces.json create mode 100644 AndorsTrail/res/raw-fr/itemlist_potions.json create mode 100644 AndorsTrail/res/raw-fr/itemlist_pre0610_unused.json create mode 100644 AndorsTrail/res/raw-fr/itemlist_quest.json create mode 100644 AndorsTrail/res/raw-fr/itemlist_rings.json create mode 100644 AndorsTrail/res/raw-fr/itemlist_v0610_1.json create mode 100644 AndorsTrail/res/raw-fr/itemlist_v0610_2.json create mode 100644 AndorsTrail/res/raw-fr/itemlist_v0611_1.json create mode 100644 AndorsTrail/res/raw-fr/itemlist_v0611_2.json create mode 100644 AndorsTrail/res/raw-fr/itemlist_v068.json create mode 100644 AndorsTrail/res/raw-fr/itemlist_v069.json create mode 100644 AndorsTrail/res/raw-fr/itemlist_v069_2.json create mode 100644 AndorsTrail/res/raw-fr/itemlist_v069_questitems.json create mode 100644 AndorsTrail/res/raw-fr/itemlist_weapons.json create mode 100644 AndorsTrail/res/raw-fr/monsterlist_crossglen_animals.json create mode 100644 AndorsTrail/res/raw-fr/monsterlist_crossglen_npcs.json create mode 100644 AndorsTrail/res/raw-fr/monsterlist_fallhaven_animals.json create mode 100644 AndorsTrail/res/raw-fr/monsterlist_fallhaven_npcs.json create mode 100644 AndorsTrail/res/raw-fr/monsterlist_v0610_monsters1.json create mode 100644 AndorsTrail/res/raw-fr/monsterlist_v0610_monsters2.json create mode 100644 AndorsTrail/res/raw-fr/monsterlist_v0610_npcs1.json create mode 100644 AndorsTrail/res/raw-fr/monsterlist_v0611_monsters1.json create mode 100644 AndorsTrail/res/raw-fr/monsterlist_v0611_npcs1.json create mode 100644 AndorsTrail/res/raw-fr/monsterlist_v068_npcs.json create mode 100644 AndorsTrail/res/raw-fr/monsterlist_v069_monsters.json create mode 100644 AndorsTrail/res/raw-fr/monsterlist_v069_npcs.json create mode 100644 AndorsTrail/res/raw-fr/monsterlist_wilderness.json create mode 100644 AndorsTrail/res/raw-fr/questlist.json create mode 100644 AndorsTrail/res/raw-fr/questlist_v068.json create mode 100644 AndorsTrail/res/raw-fr/questlist_v069.json create mode 100644 AndorsTrail/res/raw-it/actorconditions_v069.json create mode 100644 AndorsTrail/res/raw-it/actorconditions_v069_bwm.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_alynndir.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_ambelie.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_blackwater_harlenn.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_blackwater_herec.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_blackwater_kazaul.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_blackwater_lower.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_blackwater_signs.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_blackwater_throdna.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_blackwater_upper.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_bwm_agent_1.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_bwm_agent_2.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_bwm_agent_3.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_bwm_agent_4.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_bwm_agent_5.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_bwm_agent_6.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_crossglen.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_crossglen_gruil.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_crossglen_leonid.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_crossglen_leta.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_crossglen_odair.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_crossglen_tharal.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_fallhaven.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_fallhaven_arcir.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_fallhaven_athamyr.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_fallhaven_bucus.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_fallhaven_church.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_fallhaven_drunk.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_fallhaven_gaela.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_fallhaven_larcal.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_fallhaven_nocmar.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_fallhaven_oldman.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_fallhaven_south.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_fallhaven_tavern.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_fallhaven_unnmir.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_fallhaven_unzel.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_fallhaven_vacor.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_fallhaven_warden.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_farrik.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_flagstone.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_foamingflask.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_foamingflask_guards.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_foamingflask_outsideguard.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_jan.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_jolnor.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_kaori.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_maelveon.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_mikhail.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_ogam.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_oluag.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_prim_arghest.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_prim_bjorgur.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_prim_fulus.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_prim_guthbered.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_prim_inn.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_prim_merchants.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_prim_outside.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_prim_tavern.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_signs_pre067.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_signs_v068.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_thievesguild_1.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_umar.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_vilegard_erttu.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_vilegard_shops.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_vilegard_tavern.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_vilegard_villagers.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_wilderness.json create mode 100644 AndorsTrail/res/raw-it/conversationlist_wrye.json create mode 100644 AndorsTrail/res/raw-it/itemlist_animal.json create mode 100644 AndorsTrail/res/raw-it/itemlist_armour.json create mode 100644 AndorsTrail/res/raw-it/itemlist_food.json create mode 100644 AndorsTrail/res/raw-it/itemlist_junk.json create mode 100644 AndorsTrail/res/raw-it/itemlist_money.json create mode 100644 AndorsTrail/res/raw-it/itemlist_necklaces.json create mode 100644 AndorsTrail/res/raw-it/itemlist_potions.json create mode 100644 AndorsTrail/res/raw-it/itemlist_pre0610_unused.json create mode 100644 AndorsTrail/res/raw-it/itemlist_quest.json create mode 100644 AndorsTrail/res/raw-it/itemlist_rings.json create mode 100644 AndorsTrail/res/raw-it/itemlist_v068.json create mode 100644 AndorsTrail/res/raw-it/itemlist_v069.json create mode 100644 AndorsTrail/res/raw-it/itemlist_v069_2.json create mode 100644 AndorsTrail/res/raw-it/itemlist_v069_questitems.json create mode 100644 AndorsTrail/res/raw-it/itemlist_weapons.json create mode 100644 AndorsTrail/res/raw-it/questlist.json create mode 100644 AndorsTrail/res/raw-it/questlist_v068.json create mode 100644 AndorsTrail/res/raw-it/questlist_v069.json create mode 100644 AndorsTrail/res/raw-ja/conversationlist_crossglen.json create mode 100644 AndorsTrail/res/raw-ja/conversationlist_crossglen_gruil.json create mode 100644 AndorsTrail/res/raw-ja/conversationlist_crossglen_leonid.json create mode 100644 AndorsTrail/res/raw-ja/conversationlist_crossglen_leta.json create mode 100644 AndorsTrail/res/raw-ja/conversationlist_crossglen_odair.json create mode 100644 AndorsTrail/res/raw-ja/conversationlist_crossglen_tharal.json create mode 100644 AndorsTrail/res/raw-ja/conversationlist_fallhaven.json create mode 100644 AndorsTrail/res/raw-ja/conversationlist_jan.json create mode 100644 AndorsTrail/res/raw-ja/conversationlist_mikhail.json create mode 100644 AndorsTrail/res/raw-pl/actorconditions_v0610.json create mode 100644 AndorsTrail/res/raw-pl/actorconditions_v0611.json create mode 100644 AndorsTrail/res/raw-pl/actorconditions_v0611_2.json create mode 100644 AndorsTrail/res/raw-pl/actorconditions_v069.json create mode 100644 AndorsTrail/res/raw-pl/actorconditions_v069_bwm.json create mode 100644 AndorsTrail/res/raw-pl/conversationlist_crossglen.json create mode 100644 AndorsTrail/res/raw-pl/conversationlist_crossglen_gruil.json create mode 100644 AndorsTrail/res/raw-pl/conversationlist_crossglen_leonid.json create mode 100644 AndorsTrail/res/raw-pl/conversationlist_crossglen_leta.json create mode 100644 AndorsTrail/res/raw-pl/conversationlist_crossglen_odair.json create mode 100644 AndorsTrail/res/raw-pl/conversationlist_crossglen_tharal.json create mode 100644 AndorsTrail/res/raw-pl/conversationlist_fallhaven.json create mode 100644 AndorsTrail/res/raw-pl/conversationlist_fallhaven_arcir.json create mode 100644 AndorsTrail/res/raw-pl/conversationlist_fallhaven_bucus.json create mode 100644 AndorsTrail/res/raw-pl/conversationlist_fallhaven_church.json create mode 100644 AndorsTrail/res/raw-pl/conversationlist_fallhaven_drunk.json create mode 100644 AndorsTrail/res/raw-pl/conversationlist_fallhaven_nocmar.json create mode 100644 AndorsTrail/res/raw-pl/conversationlist_fallhaven_oldman.json create mode 100644 AndorsTrail/res/raw-pl/conversationlist_fallhaven_tavern.json create mode 100644 AndorsTrail/res/raw-pl/conversationlist_jan.json create mode 100644 AndorsTrail/res/raw-pl/conversationlist_mikhail.json create mode 100644 AndorsTrail/res/raw-pl/itemcategories_1.json create mode 100644 AndorsTrail/res/raw-pl/questlist.json create mode 100644 AndorsTrail/res/raw-pl/questlist_v0610.json create mode 100644 AndorsTrail/res/raw-pl/questlist_v0611.json create mode 100644 AndorsTrail/res/raw-pl/questlist_v0611_2.json create mode 100644 AndorsTrail/res/raw-pl/questlist_v0611_3.json create mode 100644 AndorsTrail/res/raw-pl/questlist_v068.json create mode 100644 AndorsTrail/res/raw-pl/questlist_v069.json create mode 100644 AndorsTrail/res/raw-pt-rBR/actorconditions_v0610.json create mode 100644 AndorsTrail/res/raw-pt-rBR/actorconditions_v0611.json create mode 100644 AndorsTrail/res/raw-pt-rBR/actorconditions_v0611_2.json create mode 100644 AndorsTrail/res/raw-pt-rBR/actorconditions_v069.json create mode 100644 AndorsTrail/res/raw-pt-rBR/actorconditions_v069_bwm.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_ailshara.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_algangror.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_alynndir.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_ambelie.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_arghes.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_benbyr.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_blackwater_harlenn.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_blackwater_herec.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_blackwater_kazaul.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_blackwater_lower.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_blackwater_signs.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_blackwater_throdna.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_blackwater_upper.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_buceth.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_bwm_agent_1.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_bwm_agent_2.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_bwm_agent_3.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_bwm_agent_4.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_bwm_agent_5.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_bwm_agent_6.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_crossglen.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_crossglen_gruil.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_crossglen_leonid.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_crossglen_leta.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_crossglen_odair.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_crossglen_tharal.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_crossroads_1.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_crossroads_2.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_crossroads_3.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_duaina.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_elwyl.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_elythom_1.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_erinith.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_ervelyn.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_arcir.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_athamyr.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_bucus.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_church.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_drunk.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_gaela.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_larcal.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_nocmar.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_oldman.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_south.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_tavern.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_unnmir.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_unzel.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_vacor.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_warden.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_farrik.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_fields_1.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_flagstone.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_foamingflask.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_foamingflask_guards.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_foamingflask_outsideguard.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_gandoren.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_gylew.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_hadracor.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_hjaldar.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_ingus.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_jan.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_jhaeld.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_jolnor.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_kaori.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_kaverin.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_kendelow.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_loneford_1.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_loneford_2.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_loneford_3.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_loneford_4.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_loneford_kuldan.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_maelveon.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_mazeg.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_mikhail.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_minarra.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_norath.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_ogam.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_oluag.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_prim_arghest.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_prim_bjorgur.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_prim_fulus.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_prim_guthbered.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_prim_inn.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_prim_merchants.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_prim_outside.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_prim_tavern.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_pwcave.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_reinkarr.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_remgard_bridgeguard.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_remgard_idolsigns.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_remgard_villagers1.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_remgard_villagers2.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_rogorn.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_rothses.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_sign_ulirfendor.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_sign_waterwaycave.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_signs_pre067.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_signs_v0611.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_signs_v068.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_taevinn.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_talion.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_talion_2.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_thievesguild_1.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_thorin.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_thorinbone.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_tinlyn.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_tinlyn_sheep.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_toszylae.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_toszylae_guard.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_ulirfendor.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_umar.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_unzel2.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_v0612graves.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_vacor2.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_vilegard_erttu.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_vilegard_shops.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_vilegard_tavern.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_vilegard_v0610.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_vilegard_villagers.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_wilderness.json create mode 100644 AndorsTrail/res/raw-pt-rBR/conversationlist_wrye.json create mode 100644 AndorsTrail/res/raw-pt-rBR/itemlist_animal.json create mode 100644 AndorsTrail/res/raw-pt-rBR/itemlist_armour.json create mode 100644 AndorsTrail/res/raw-pt-rBR/itemlist_food.json create mode 100644 AndorsTrail/res/raw-pt-rBR/itemlist_junk.json create mode 100644 AndorsTrail/res/raw-pt-rBR/itemlist_money.json create mode 100644 AndorsTrail/res/raw-pt-rBR/itemlist_necklaces.json create mode 100644 AndorsTrail/res/raw-pt-rBR/itemlist_potions.json create mode 100644 AndorsTrail/res/raw-pt-rBR/itemlist_pre0610_unused.json create mode 100644 AndorsTrail/res/raw-pt-rBR/itemlist_quest.json create mode 100644 AndorsTrail/res/raw-pt-rBR/itemlist_rings.json create mode 100644 AndorsTrail/res/raw-pt-rBR/itemlist_v0610_1.json create mode 100644 AndorsTrail/res/raw-pt-rBR/itemlist_v0610_2.json create mode 100644 AndorsTrail/res/raw-pt-rBR/itemlist_v0611_1.json create mode 100644 AndorsTrail/res/raw-pt-rBR/itemlist_v0611_2.json create mode 100644 AndorsTrail/res/raw-pt-rBR/itemlist_v0611_3.json create mode 100644 AndorsTrail/res/raw-pt-rBR/itemlist_v068.json create mode 100644 AndorsTrail/res/raw-pt-rBR/itemlist_v069.json create mode 100644 AndorsTrail/res/raw-pt-rBR/itemlist_v069_2.json create mode 100644 AndorsTrail/res/raw-pt-rBR/itemlist_v069_questitems.json create mode 100644 AndorsTrail/res/raw-pt-rBR/itemlist_weapons.json create mode 100644 AndorsTrail/res/raw-pt-rBR/monsterlist_crossglen_animals.json create mode 100644 AndorsTrail/res/raw-pt-rBR/monsterlist_crossglen_npcs.json create mode 100644 AndorsTrail/res/raw-pt-rBR/monsterlist_fallhaven_animals.json create mode 100644 AndorsTrail/res/raw-pt-rBR/monsterlist_fallhaven_npcs.json create mode 100644 AndorsTrail/res/raw-pt-rBR/monsterlist_v0610_monsters1.json create mode 100644 AndorsTrail/res/raw-pt-rBR/monsterlist_v0610_monsters2.json create mode 100644 AndorsTrail/res/raw-pt-rBR/monsterlist_v0610_npcs1.json create mode 100644 AndorsTrail/res/raw-pt-rBR/monsterlist_v0611_monsters1.json create mode 100644 AndorsTrail/res/raw-pt-rBR/monsterlist_v0611_npcs1.json create mode 100644 AndorsTrail/res/raw-pt-rBR/monsterlist_v0611_npcs2.json create mode 100644 AndorsTrail/res/raw-pt-rBR/monsterlist_v068_npcs.json create mode 100644 AndorsTrail/res/raw-pt-rBR/monsterlist_v069_monsters.json create mode 100644 AndorsTrail/res/raw-pt-rBR/monsterlist_v069_npcs.json create mode 100644 AndorsTrail/res/raw-pt-rBR/monsterlist_wilderness.json create mode 100644 AndorsTrail/res/raw-pt-rBR/questlist.json create mode 100644 AndorsTrail/res/raw-pt-rBR/questlist_v0610.json create mode 100644 AndorsTrail/res/raw-pt-rBR/questlist_v0611.json create mode 100644 AndorsTrail/res/raw-pt-rBR/questlist_v0611_2.json create mode 100644 AndorsTrail/res/raw-pt-rBR/questlist_v0611_3.json create mode 100644 AndorsTrail/res/raw-pt-rBR/questlist_v068.json create mode 100644 AndorsTrail/res/raw-pt-rBR/questlist_v069.json create mode 100644 AndorsTrail/res/raw-pt/actorconditions_v0610.json create mode 100644 AndorsTrail/res/raw-pt/actorconditions_v069.json create mode 100644 AndorsTrail/res/raw-pt/actorconditions_v069_bwm.json create mode 100644 AndorsTrail/res/raw-pt/monsterlist_crossglen_animals.json create mode 100644 AndorsTrail/res/raw-pt/monsterlist_crossglen_npcs.json create mode 100644 AndorsTrail/res/raw-pt/monsterlist_fallhaven_animals.json create mode 100644 AndorsTrail/res/raw-pt/monsterlist_fallhaven_npcs.json create mode 100644 AndorsTrail/res/raw-pt/monsterlist_v0610_monsters1.json create mode 100644 AndorsTrail/res/raw-pt/monsterlist_v0610_monsters2.json create mode 100644 AndorsTrail/res/raw-pt/monsterlist_v0610_npcs1.json create mode 100644 AndorsTrail/res/raw-pt/monsterlist_v068_npcs.json create mode 100644 AndorsTrail/res/raw-pt/monsterlist_v069_monsters.json create mode 100644 AndorsTrail/res/raw-pt/monsterlist_v069_npcs.json create mode 100644 AndorsTrail/res/raw-pt/monsterlist_wilderness.json create mode 100644 AndorsTrail/res/raw-ru/actorconditions_v0610.json create mode 100644 AndorsTrail/res/raw-ru/actorconditions_v0611.json create mode 100644 AndorsTrail/res/raw-ru/actorconditions_v0611_2.json create mode 100644 AndorsTrail/res/raw-ru/actorconditions_v069.json create mode 100644 AndorsTrail/res/raw-ru/actorconditions_v069_bwm.json create mode 100644 AndorsTrail/res/raw-ru/conversationlist_crossglen.json create mode 100644 AndorsTrail/res/raw-ru/conversationlist_crossglen_gruil.json create mode 100644 AndorsTrail/res/raw-ru/conversationlist_crossglen_leonid.json create mode 100644 AndorsTrail/res/raw-ru/conversationlist_crossglen_leta.json create mode 100644 AndorsTrail/res/raw-ru/conversationlist_crossglen_odair.json create mode 100644 AndorsTrail/res/raw-ru/conversationlist_crossglen_tharal.json create mode 100644 AndorsTrail/res/raw-ru/conversationlist_fallhaven.json create mode 100644 AndorsTrail/res/raw-ru/conversationlist_fallhaven_arcir.json create mode 100644 AndorsTrail/res/raw-ru/conversationlist_fallhaven_athamyr.json create mode 100644 AndorsTrail/res/raw-ru/conversationlist_fallhaven_bucus.json create mode 100644 AndorsTrail/res/raw-ru/conversationlist_fallhaven_church.json create mode 100644 AndorsTrail/res/raw-ru/conversationlist_fallhaven_drunk.json create mode 100644 AndorsTrail/res/raw-ru/conversationlist_fallhaven_gaela.json create mode 100644 AndorsTrail/res/raw-ru/conversationlist_fallhaven_larcal.json create mode 100644 AndorsTrail/res/raw-ru/conversationlist_fallhaven_nocmar.json create mode 100644 AndorsTrail/res/raw-ru/conversationlist_fallhaven_oldman.json create mode 100644 AndorsTrail/res/raw-ru/conversationlist_fallhaven_south.json create mode 100644 AndorsTrail/res/raw-ru/conversationlist_fallhaven_tavern.json create mode 100644 AndorsTrail/res/raw-ru/conversationlist_fallhaven_unnmir.json create mode 100644 AndorsTrail/res/raw-ru/conversationlist_fallhaven_unzel.json create mode 100644 AndorsTrail/res/raw-ru/conversationlist_fallhaven_vacor.json create mode 100644 AndorsTrail/res/raw-ru/conversationlist_flagstone.json create mode 100644 AndorsTrail/res/raw-ru/conversationlist_jan.json create mode 100644 AndorsTrail/res/raw-ru/conversationlist_mikhail.json create mode 100644 AndorsTrail/res/raw-ru/conversationlist_wilderness.json create mode 100644 AndorsTrail/res/raw-ru/itemlist_animal.json create mode 100644 AndorsTrail/res/raw-ru/itemlist_armour.json create mode 100644 AndorsTrail/res/raw-ru/itemlist_food.json create mode 100644 AndorsTrail/res/raw-ru/itemlist_junk.json create mode 100644 AndorsTrail/res/raw-ru/itemlist_money.json create mode 100644 AndorsTrail/res/raw-ru/itemlist_necklaces.json create mode 100644 AndorsTrail/res/raw-ru/itemlist_potions.json create mode 100644 AndorsTrail/res/raw-ru/itemlist_pre0610_unused.json create mode 100644 AndorsTrail/res/raw-ru/itemlist_quest.json create mode 100644 AndorsTrail/res/raw-ru/itemlist_rings.json create mode 100644 AndorsTrail/res/raw-ru/itemlist_v0610_1.json create mode 100644 AndorsTrail/res/raw-ru/itemlist_v0610_2.json create mode 100644 AndorsTrail/res/raw-ru/itemlist_v0611_1.json create mode 100644 AndorsTrail/res/raw-ru/itemlist_v0611_2.json create mode 100644 AndorsTrail/res/raw-ru/itemlist_v068.json create mode 100644 AndorsTrail/res/raw-ru/itemlist_v069.json create mode 100644 AndorsTrail/res/raw-ru/itemlist_v069_2.json create mode 100644 AndorsTrail/res/raw-ru/itemlist_v069_questitems.json create mode 100644 AndorsTrail/res/raw-ru/itemlist_weapons.json create mode 100644 AndorsTrail/res/raw-ru/monsterlist_crossglen_animals.json create mode 100644 AndorsTrail/res/raw-ru/monsterlist_crossglen_npcs.json create mode 100644 AndorsTrail/res/raw-ru/monsterlist_fallhaven_animals.json create mode 100644 AndorsTrail/res/raw-ru/monsterlist_fallhaven_npcs.json create mode 100644 AndorsTrail/res/raw-ru/monsterlist_v0610_monsters1.json create mode 100644 AndorsTrail/res/raw-ru/monsterlist_v0610_monsters2.json create mode 100644 AndorsTrail/res/raw-ru/monsterlist_v0610_npcs1.json create mode 100644 AndorsTrail/res/raw-ru/monsterlist_v0611_monsters1.json create mode 100644 AndorsTrail/res/raw-ru/monsterlist_v0611_npcs1.json create mode 100644 AndorsTrail/res/raw-ru/monsterlist_v068_npcs.json create mode 100644 AndorsTrail/res/raw-ru/monsterlist_v069_monsters.json create mode 100644 AndorsTrail/res/raw-ru/monsterlist_v069_npcs.json create mode 100644 AndorsTrail/res/raw-ru/monsterlist_wilderness.json create mode 100644 AndorsTrail/res/raw-ru/questlist.json create mode 100644 AndorsTrail/res/raw-ru/questlist_v0610.json create mode 100644 AndorsTrail/res/raw-ru/questlist_v0611.json create mode 100644 AndorsTrail/res/raw-ru/questlist_v068.json create mode 100644 AndorsTrail/res/raw-ru/questlist_v069.json create mode 100644 AndorsTrail/res/raw/actorconditions_v0610.json create mode 100644 AndorsTrail/res/raw/actorconditions_v0611.json create mode 100644 AndorsTrail/res/raw/actorconditions_v0611_2.json create mode 100644 AndorsTrail/res/raw/actorconditions_v0612_2.json create mode 100644 AndorsTrail/res/raw/actorconditions_v069.json create mode 100644 AndorsTrail/res/raw/actorconditions_v069_bwm.json create mode 100644 AndorsTrail/res/raw/conversationlist_ailshara.json create mode 100644 AndorsTrail/res/raw/conversationlist_algangror.json create mode 100644 AndorsTrail/res/raw/conversationlist_alynndir.json create mode 100644 AndorsTrail/res/raw/conversationlist_ambelie.json create mode 100644 AndorsTrail/res/raw/conversationlist_arghes.json create mode 100644 AndorsTrail/res/raw/conversationlist_benbyr.json create mode 100644 AndorsTrail/res/raw/conversationlist_blackwater_harlenn.json create mode 100644 AndorsTrail/res/raw/conversationlist_blackwater_herec.json create mode 100644 AndorsTrail/res/raw/conversationlist_blackwater_kazaul.json create mode 100644 AndorsTrail/res/raw/conversationlist_blackwater_lower.json create mode 100644 AndorsTrail/res/raw/conversationlist_blackwater_signs.json create mode 100644 AndorsTrail/res/raw/conversationlist_blackwater_throdna.json create mode 100644 AndorsTrail/res/raw/conversationlist_blackwater_upper.json create mode 100644 AndorsTrail/res/raw/conversationlist_buceth.json create mode 100644 AndorsTrail/res/raw/conversationlist_bwm_agent_1.json create mode 100644 AndorsTrail/res/raw/conversationlist_bwm_agent_2.json create mode 100644 AndorsTrail/res/raw/conversationlist_bwm_agent_3.json create mode 100644 AndorsTrail/res/raw/conversationlist_bwm_agent_4.json create mode 100644 AndorsTrail/res/raw/conversationlist_bwm_agent_5.json create mode 100644 AndorsTrail/res/raw/conversationlist_bwm_agent_6.json create mode 100644 AndorsTrail/res/raw/conversationlist_crossglen.json create mode 100644 AndorsTrail/res/raw/conversationlist_crossglen_gruil.json create mode 100644 AndorsTrail/res/raw/conversationlist_crossglen_leonid.json create mode 100644 AndorsTrail/res/raw/conversationlist_crossglen_leta.json create mode 100644 AndorsTrail/res/raw/conversationlist_crossglen_odair.json create mode 100644 AndorsTrail/res/raw/conversationlist_crossglen_tharal.json create mode 100644 AndorsTrail/res/raw/conversationlist_crossroads_1.json create mode 100644 AndorsTrail/res/raw/conversationlist_crossroads_2.json create mode 100644 AndorsTrail/res/raw/conversationlist_crossroads_3.json create mode 100644 AndorsTrail/res/raw/conversationlist_debug.json create mode 100644 AndorsTrail/res/raw/conversationlist_duaina.json create mode 100644 AndorsTrail/res/raw/conversationlist_elwyl.json create mode 100644 AndorsTrail/res/raw/conversationlist_elythom_1.json create mode 100644 AndorsTrail/res/raw/conversationlist_erinith.json create mode 100644 AndorsTrail/res/raw/conversationlist_ervelyn.json create mode 100644 AndorsTrail/res/raw/conversationlist_fallhaven.json create mode 100644 AndorsTrail/res/raw/conversationlist_fallhaven_arcir.json create mode 100644 AndorsTrail/res/raw/conversationlist_fallhaven_athamyr.json create mode 100644 AndorsTrail/res/raw/conversationlist_fallhaven_bucus.json create mode 100644 AndorsTrail/res/raw/conversationlist_fallhaven_church.json create mode 100644 AndorsTrail/res/raw/conversationlist_fallhaven_drunk.json create mode 100644 AndorsTrail/res/raw/conversationlist_fallhaven_gaela.json create mode 100644 AndorsTrail/res/raw/conversationlist_fallhaven_larcal.json create mode 100644 AndorsTrail/res/raw/conversationlist_fallhaven_nocmar.json create mode 100644 AndorsTrail/res/raw/conversationlist_fallhaven_oldman.json create mode 100644 AndorsTrail/res/raw/conversationlist_fallhaven_south.json create mode 100644 AndorsTrail/res/raw/conversationlist_fallhaven_tavern.json create mode 100644 AndorsTrail/res/raw/conversationlist_fallhaven_unnmir.json create mode 100644 AndorsTrail/res/raw/conversationlist_fallhaven_unzel.json create mode 100644 AndorsTrail/res/raw/conversationlist_fallhaven_vacor.json create mode 100644 AndorsTrail/res/raw/conversationlist_fallhaven_warden.json create mode 100644 AndorsTrail/res/raw/conversationlist_farrik.json create mode 100644 AndorsTrail/res/raw/conversationlist_fields_1.json create mode 100644 AndorsTrail/res/raw/conversationlist_flagstone.json create mode 100644 AndorsTrail/res/raw/conversationlist_foamingflask.json create mode 100644 AndorsTrail/res/raw/conversationlist_foamingflask_guards.json create mode 100644 AndorsTrail/res/raw/conversationlist_foamingflask_outsideguard.json create mode 100644 AndorsTrail/res/raw/conversationlist_gandoren.json create mode 100644 AndorsTrail/res/raw/conversationlist_gylew.json create mode 100644 AndorsTrail/res/raw/conversationlist_hadracor.json create mode 100644 AndorsTrail/res/raw/conversationlist_hjaldar.json create mode 100644 AndorsTrail/res/raw/conversationlist_ingus.json create mode 100644 AndorsTrail/res/raw/conversationlist_jan.json create mode 100644 AndorsTrail/res/raw/conversationlist_jhaeld.json create mode 100644 AndorsTrail/res/raw/conversationlist_jolnor.json create mode 100644 AndorsTrail/res/raw/conversationlist_kaori.json create mode 100644 AndorsTrail/res/raw/conversationlist_kaverin.json create mode 100644 AndorsTrail/res/raw/conversationlist_kendelow.json create mode 100644 AndorsTrail/res/raw/conversationlist_loneford_1.json create mode 100644 AndorsTrail/res/raw/conversationlist_loneford_2.json create mode 100644 AndorsTrail/res/raw/conversationlist_loneford_3.json create mode 100644 AndorsTrail/res/raw/conversationlist_loneford_4.json create mode 100644 AndorsTrail/res/raw/conversationlist_loneford_kuldan.json create mode 100644 AndorsTrail/res/raw/conversationlist_maelveon.json create mode 100644 AndorsTrail/res/raw/conversationlist_mazeg.json create mode 100644 AndorsTrail/res/raw/conversationlist_mikhail.json create mode 100644 AndorsTrail/res/raw/conversationlist_minarra.json create mode 100644 AndorsTrail/res/raw/conversationlist_norath.json create mode 100644 AndorsTrail/res/raw/conversationlist_ogam.json create mode 100644 AndorsTrail/res/raw/conversationlist_oluag.json create mode 100644 AndorsTrail/res/raw/conversationlist_prim_arghest.json create mode 100644 AndorsTrail/res/raw/conversationlist_prim_bjorgur.json create mode 100644 AndorsTrail/res/raw/conversationlist_prim_fulus.json create mode 100644 AndorsTrail/res/raw/conversationlist_prim_guthbered.json create mode 100644 AndorsTrail/res/raw/conversationlist_prim_inn.json create mode 100644 AndorsTrail/res/raw/conversationlist_prim_merchants.json create mode 100644 AndorsTrail/res/raw/conversationlist_prim_outside.json create mode 100644 AndorsTrail/res/raw/conversationlist_prim_tavern.json create mode 100644 AndorsTrail/res/raw/conversationlist_pwcave.json create mode 100644 AndorsTrail/res/raw/conversationlist_reinkarr.json create mode 100644 AndorsTrail/res/raw/conversationlist_remgard_bridgeguard.json create mode 100644 AndorsTrail/res/raw/conversationlist_remgard_idolsigns.json create mode 100644 AndorsTrail/res/raw/conversationlist_remgard_villagers1.json create mode 100644 AndorsTrail/res/raw/conversationlist_remgard_villagers2.json create mode 100644 AndorsTrail/res/raw/conversationlist_rogorn.json create mode 100644 AndorsTrail/res/raw/conversationlist_rothses.json create mode 100644 AndorsTrail/res/raw/conversationlist_sign_ulirfendor.json create mode 100644 AndorsTrail/res/raw/conversationlist_sign_waterwaycave.json create mode 100644 AndorsTrail/res/raw/conversationlist_signs_pre067.json create mode 100644 AndorsTrail/res/raw/conversationlist_signs_v0611.json create mode 100644 AndorsTrail/res/raw/conversationlist_signs_v068.json create mode 100644 AndorsTrail/res/raw/conversationlist_taevinn.json create mode 100644 AndorsTrail/res/raw/conversationlist_talion.json create mode 100644 AndorsTrail/res/raw/conversationlist_talion_2.json create mode 100644 AndorsTrail/res/raw/conversationlist_thievesguild_1.json create mode 100644 AndorsTrail/res/raw/conversationlist_thorin.json create mode 100644 AndorsTrail/res/raw/conversationlist_thorinbone.json create mode 100644 AndorsTrail/res/raw/conversationlist_tinlyn.json create mode 100644 AndorsTrail/res/raw/conversationlist_tinlyn_sheep.json create mode 100644 AndorsTrail/res/raw/conversationlist_toszylae.json create mode 100644 AndorsTrail/res/raw/conversationlist_toszylae_guard.json create mode 100644 AndorsTrail/res/raw/conversationlist_ulirfendor.json create mode 100644 AndorsTrail/res/raw/conversationlist_umar.json create mode 100644 AndorsTrail/res/raw/conversationlist_unzel2.json create mode 100644 AndorsTrail/res/raw/conversationlist_v0612graves.json create mode 100644 AndorsTrail/res/raw/conversationlist_vacor2.json create mode 100644 AndorsTrail/res/raw/conversationlist_vilegard_erttu.json create mode 100644 AndorsTrail/res/raw/conversationlist_vilegard_shops.json create mode 100644 AndorsTrail/res/raw/conversationlist_vilegard_tavern.json create mode 100644 AndorsTrail/res/raw/conversationlist_vilegard_v0610.json create mode 100644 AndorsTrail/res/raw/conversationlist_vilegard_villagers.json create mode 100644 AndorsTrail/res/raw/conversationlist_wilderness.json create mode 100644 AndorsTrail/res/raw/conversationlist_wrye.json create mode 100644 AndorsTrail/res/raw/droplists_crossglen.json create mode 100644 AndorsTrail/res/raw/droplists_crossglen_outside.json create mode 100644 AndorsTrail/res/raw/droplists_debug.json create mode 100644 AndorsTrail/res/raw/droplists_fallhaven.json create mode 100644 AndorsTrail/res/raw/droplists_v0610_monsters.json create mode 100644 AndorsTrail/res/raw/droplists_v0610_npcs.json create mode 100644 AndorsTrail/res/raw/droplists_v0610_shops.json create mode 100644 AndorsTrail/res/raw/droplists_v0611_monsters.json create mode 100644 AndorsTrail/res/raw/droplists_v0611_npcs.json create mode 100644 AndorsTrail/res/raw/droplists_v0611_shops.json create mode 100644 AndorsTrail/res/raw/droplists_v068.json create mode 100644 AndorsTrail/res/raw/droplists_v069_monsters.json create mode 100644 AndorsTrail/res/raw/droplists_v069_npcs.json create mode 100644 AndorsTrail/res/raw/droplists_wilderness.json create mode 100644 AndorsTrail/res/raw/itemcategories_1.json create mode 100644 AndorsTrail/res/raw/itemlist_animal.json create mode 100644 AndorsTrail/res/raw/itemlist_armour.json create mode 100644 AndorsTrail/res/raw/itemlist_debug.json create mode 100644 AndorsTrail/res/raw/itemlist_food.json create mode 100644 AndorsTrail/res/raw/itemlist_junk.json create mode 100644 AndorsTrail/res/raw/itemlist_money.json create mode 100644 AndorsTrail/res/raw/itemlist_necklaces.json create mode 100644 AndorsTrail/res/raw/itemlist_potions.json create mode 100644 AndorsTrail/res/raw/itemlist_pre0610_unused.json create mode 100644 AndorsTrail/res/raw/itemlist_quest.json create mode 100644 AndorsTrail/res/raw/itemlist_rings.json create mode 100644 AndorsTrail/res/raw/itemlist_v0610_1.json create mode 100644 AndorsTrail/res/raw/itemlist_v0610_2.json create mode 100644 AndorsTrail/res/raw/itemlist_v0611_1.json create mode 100644 AndorsTrail/res/raw/itemlist_v0611_2.json create mode 100644 AndorsTrail/res/raw/itemlist_v0611_3.json create mode 100644 AndorsTrail/res/raw/itemlist_v068.json create mode 100644 AndorsTrail/res/raw/itemlist_v069.json create mode 100644 AndorsTrail/res/raw/itemlist_v069_2.json create mode 100644 AndorsTrail/res/raw/itemlist_v069_questitems.json create mode 100644 AndorsTrail/res/raw/itemlist_weapons.json create mode 100644 AndorsTrail/res/raw/monsterlist_crossglen_animals.json create mode 100644 AndorsTrail/res/raw/monsterlist_crossglen_npcs.json create mode 100644 AndorsTrail/res/raw/monsterlist_debug.json create mode 100644 AndorsTrail/res/raw/monsterlist_fallhaven_animals.json create mode 100644 AndorsTrail/res/raw/monsterlist_fallhaven_npcs.json create mode 100644 AndorsTrail/res/raw/monsterlist_v0610_monsters1.json create mode 100644 AndorsTrail/res/raw/monsterlist_v0610_monsters2.json create mode 100644 AndorsTrail/res/raw/monsterlist_v0610_npcs1.json create mode 100644 AndorsTrail/res/raw/monsterlist_v0611_monsters1.json create mode 100644 AndorsTrail/res/raw/monsterlist_v0611_npcs1.json create mode 100644 AndorsTrail/res/raw/monsterlist_v0611_npcs2.json create mode 100644 AndorsTrail/res/raw/monsterlist_v068_npcs.json create mode 100644 AndorsTrail/res/raw/monsterlist_v069_monsters.json create mode 100644 AndorsTrail/res/raw/monsterlist_v069_npcs.json create mode 100644 AndorsTrail/res/raw/monsterlist_wilderness.json create mode 100644 AndorsTrail/res/raw/questlist.json create mode 100644 AndorsTrail/res/raw/questlist_debug.json create mode 100644 AndorsTrail/res/raw/questlist_nondisplayed.json create mode 100644 AndorsTrail/res/raw/questlist_v0610.json create mode 100644 AndorsTrail/res/raw/questlist_v0611.json create mode 100644 AndorsTrail/res/raw/questlist_v0611_2.json create mode 100644 AndorsTrail/res/raw/questlist_v0611_3.json create mode 100644 AndorsTrail/res/raw/questlist_v068.json create mode 100644 AndorsTrail/res/raw/questlist_v069.json delete mode 100644 AndorsTrail/res/values-de/content_actorconditions.xml delete mode 100644 AndorsTrail/res/values-de/content_conversationlist.xml delete mode 100644 AndorsTrail/res/values-de/content_itemcategories.xml delete mode 100644 AndorsTrail/res/values-de/content_itemlist.xml delete mode 100644 AndorsTrail/res/values-de/content_monsterlist.xml delete mode 100644 AndorsTrail/res/values-de/content_questlist.xml delete mode 100644 AndorsTrail/res/values-fr/content_actorconditions.xml delete mode 100644 AndorsTrail/res/values-fr/content_conversationlist.xml delete mode 100644 AndorsTrail/res/values-fr/content_itemlist.xml delete mode 100644 AndorsTrail/res/values-fr/content_monsterlist.xml delete mode 100644 AndorsTrail/res/values-fr/content_questlist.xml delete mode 100644 AndorsTrail/res/values-it/content_actorconditions.xml delete mode 100644 AndorsTrail/res/values-it/content_conversationlist.xml delete mode 100644 AndorsTrail/res/values-it/content_itemlist.xml delete mode 100644 AndorsTrail/res/values-it/content_questlist.xml delete mode 100644 AndorsTrail/res/values-ja/content_conversationlist.xml delete mode 100644 AndorsTrail/res/values-pl/content_actorconditions.xml delete mode 100644 AndorsTrail/res/values-pl/content_conversationlist.xml delete mode 100644 AndorsTrail/res/values-pl/content_itemcategories.xml delete mode 100644 AndorsTrail/res/values-pl/content_questlist.xml delete mode 100644 AndorsTrail/res/values-pt-rBR/content_actorconditions.xml delete mode 100644 AndorsTrail/res/values-pt-rBR/content_conversationlist.xml delete mode 100644 AndorsTrail/res/values-pt-rBR/content_itemlist.xml delete mode 100644 AndorsTrail/res/values-pt-rBR/content_monsterlist.xml delete mode 100644 AndorsTrail/res/values-pt-rBR/content_questlist.xml delete mode 100644 AndorsTrail/res/values-pt/content_actorconditions.xml delete mode 100644 AndorsTrail/res/values-pt/content_monsterlist.xml delete mode 100644 AndorsTrail/res/values-ru/content_actorconditions.xml delete mode 100644 AndorsTrail/res/values-ru/content_conversationlist.xml delete mode 100644 AndorsTrail/res/values-ru/content_itemlist.xml delete mode 100644 AndorsTrail/res/values-ru/content_monsterlist.xml delete mode 100644 AndorsTrail/res/values-ru/content_questlist.xml delete mode 100644 AndorsTrail/res/values/content_actorconditions.xml delete mode 100644 AndorsTrail/res/values/content_conversationlist.xml delete mode 100644 AndorsTrail/res/values/content_droplist.xml delete mode 100644 AndorsTrail/res/values/content_itemcategories.xml delete mode 100644 AndorsTrail/res/values/content_itemlist.xml delete mode 100644 AndorsTrail/res/values/content_monsterlist.xml delete mode 100644 AndorsTrail/res/values/content_questlist.xml diff --git a/AndorsTrail/res/raw-de/actorconditions_v0610.json b/AndorsTrail/res/raw-de/actorconditions_v0610.json new file mode 100644 index 000000000..24f5e22fa --- /dev/null +++ b/AndorsTrail/res/raw-de/actorconditions_v0610.json @@ -0,0 +1,27 @@ +[ + { + "id": "chaotic_grip", + "iconID": "actorconditions_1:96", + "name": "Chaotischer Griff", + "category": 1, + "abilityEffect": { + "increaseBlockChance": -10, + "increaseDamageResistance": -1 + } + }, + { + "id": "chaotic_curse", + "iconID": "actorconditions_1:89", + "name": "Chaotischer Fluch", + "category": 1, + "abilityEffect": { + "increaseMaxAP": -1, + "increaseAttackDamage": { + "min": -1, + "max": -1 + }, + "increaseBlockChance": -10, + "increaseDamageResistance": -1 + } + } +] diff --git a/AndorsTrail/res/raw-de/actorconditions_v0611.json b/AndorsTrail/res/raw-de/actorconditions_v0611.json new file mode 100644 index 000000000..d5d62473e --- /dev/null +++ b/AndorsTrail/res/raw-de/actorconditions_v0611.json @@ -0,0 +1,78 @@ +[ + { + "id": "contagion", + "iconID": "actorconditions_1:58", + "name": "Infektion durch Insekten", + "category": 3, + "abilityEffect": { + "increaseAttackChance": -10, + "increaseAttackDamage": { + "min": -1, + "max": -1 + } + } + }, + { + "id": "blister", + "iconID": "actorconditions_1:15", + "name": "Glühende Haut", + "category": 3, + "roundEffect": { + "visualEffectID": 0, + "increaseCurrentHP": { + "min": -1, + "max": -1 + } + } + }, + { + "id": "stunned", + "iconID": "actorconditions_1:95", + "name": "Betäubt", + "category": 2, + "abilityEffect": { + "increaseMaxAP": -2, + "increaseMoveCost": 8, + "increaseAttackCost": 5 + } + }, + { + "id": "focus_dmg", + "iconID": "actorconditions_1:70", + "name": "Wucht", + "category": 1, + "isPositive": 1, + "abilityEffect": { + "increaseAttackCost": 1, + "increaseAttackDamage": { + "min": 3, + "max": 3 + } + } + }, + { + "id": "focus_ac", + "iconID": "actorconditions_1:98", + "name": "Treffsicherheit", + "category": 1, + "isPositive": 1, + "abilityEffect": { + "increaseAttackCost": 1, + "increaseAttackChance": 40 + } + }, + { + "id": "poison_irdegh", + "iconID": "actorconditions_1:60", + "name": "Irdegh-Gift", + "category": 3, + "isStacking": 1, + "roundEffect": { + "visualEffectID": 2, + "increaseCurrentHP": { + "min": -1, + "max": -1 + } + } + } +] diff --git a/AndorsTrail/res/raw-de/actorconditions_v0611_2.json b/AndorsTrail/res/raw-de/actorconditions_v0611_2.json new file mode 100644 index 000000000..d3d603ff1 --- /dev/null +++ b/AndorsTrail/res/raw-de/actorconditions_v0611_2.json @@ -0,0 +1,97 @@ +[ + { + "id": "rotworm", + "iconID": "actorconditions_1:82", + "name": "Kazaul-Maden", + "category": 2, + "abilityEffect": { + "increaseMaxHP": -15, + "increaseMaxAP": -3, + "increaseDamageResistance": -1 + } + }, + { + "id": "shadowbless_str", + "iconID": "actorconditions_1:70", + "name": "Stärkesegen des Schattens", + "category": 0, + "isPositive": 1, + "abilityEffect": { + "increaseAttackDamage": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "shadowbless_heal", + "iconID": "actorconditions_1:35", + "name": "Erhohlungssegen des Schattens", + "category": 0, + "isPositive": 1, + "roundEffect": { + "visualEffectID": 1, + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "shadowbless_acc", + "iconID": "actorconditions_1:98", + "name": "Genauigkeitsegen des Schattens", + "category": 0, + "isPositive": 1, + "abilityEffect": { + "increaseAttackChance": 30 + } + }, + { + "id": "shadowbless_guard", + "iconID": "actorconditions_1:91", + "name": "Beschützersegen des Schattens", + "category": 0, + "isPositive": 1, + "abilityEffect": { + "increaseMaxHP": 30, + "increaseDamageResistance": 1 + } + }, + { + "id": "crit1", + "iconID": "actorconditions_1:89", + "name": "Innere Blutung", + "category": 2, + "isStacking": 1, + "abilityEffect": { + "increaseAttackCost": 1, + "increaseAttackChance": -50, + "increaseAttackDamage": { + "min": -3, + "max": -3 + } + } + }, + { + "id": "crit2", + "iconID": "actorconditions_1:89", + "name": "Knochenbruch", + "category": 2, + "isStacking": 1, + "abilityEffect": { + "increaseBlockChance": -50, + "increaseDamageResistance": -2 + } + }, + { + "id": "concussion", + "iconID": "actorconditions_1:80", + "name": "Gehirnerschütterung", + "category": 2, + "isStacking": 1, + "abilityEffect": { + "increaseAttackChance": -30 + } + } +] diff --git a/AndorsTrail/res/raw-de/actorconditions_v069.json b/AndorsTrail/res/raw-de/actorconditions_v069.json new file mode 100644 index 000000000..e4cab0678 --- /dev/null +++ b/AndorsTrail/res/raw-de/actorconditions_v069.json @@ -0,0 +1,52 @@ +[ + { + "id": "bless", + "iconID": "actorconditions_1:41", + "name": "Segen", + "category": 0, + "isPositive": 1, + "abilityEffect": { + "increaseAttackChance": 5 + } + }, + { + "id": "poison_weak", + "iconID": "actorconditions_1:60", + "name": "Schwaches Gift", + "category": 3, + "roundEffect": { + "visualEffectID": 2, + "increaseCurrentHP": { + "min": -1, + "max": -1 + } + } + }, + { + "id": "str", + "iconID": "actorconditions_1:70", + "name": "Stärke", + "category": 2, + "isPositive": 1, + "abilityEffect": { + "increaseAttackDamage": { + "min": 2, + "max": 2 + } + } + }, + { + "id": "regen", + "iconID": "actorconditions_1:35", + "name": "Regeneration des Schattens", + "category": 0, + "isPositive": 1, + "roundEffect": { + "visualEffectID": 1, + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + } +] diff --git a/AndorsTrail/res/raw-de/actorconditions_v069_bwm.json b/AndorsTrail/res/raw-de/actorconditions_v069_bwm.json new file mode 100644 index 000000000..8fda745ae --- /dev/null +++ b/AndorsTrail/res/raw-de/actorconditions_v069_bwm.json @@ -0,0 +1,101 @@ +[ + { + "id": "speed_minor", + "iconID": "actorconditions_1:87", + "name": "Geringe Geschwindigkeit", + "category": 2, + "isPositive": 1, + "abilityEffect": { + "increaseMaxAP": 2 + } + }, + { + "id": "fatigue_minor", + "iconID": "actorconditions_1:14", + "name": "Geringe Ermüdung", + "category": 2, + "abilityEffect": { + "increaseMoveCost": 2, + "increaseAttackCost": 2, + "increaseAttackDamage": { + "min": -1, + "max": -1 + } + } + }, + { + "id": "feebleness_minor", + "iconID": "actorconditions_1:74", + "name": "Geringe Schwächung der Waffen", + "category": 1, + "abilityEffect": { + "increaseAttackDamage": { + "min": -3, + "max": -3 + } + } + }, + { + "id": "bleeding_wound", + "iconID": "actorconditions_2:0", + "name": "Blutende Wunde", + "category": 3, + "isStacking": 1, + "roundEffect": { + "visualEffectID": 0, + "increaseCurrentHP": { + "min": -1, + "max": -1 + } + } + }, + { + "id": "rage_minor", + "iconID": "actorconditions_1:90", + "name": "Geringe Berserkerwut", + "category": 1, + "isPositive": 1, + "abilityEffect": { + "increaseMaxHP": 35, + "increaseAttackChance": 60, + "increaseBlockChance": -90, + "increaseDamageResistance": -1 + } + }, + { + "id": "blackwater_misery", + "iconID": "actorconditions_1:58", + "name": "Blackwater's Elend", + "category": 3, + "abilityEffect": { + "increaseAttackCost": 1, + "increaseAttackChance": -50, + "increaseCriticalSkill": -50 + } + }, + { + "id": "intoxicated", + "iconID": "actorconditions_2:1", + "name": "Betäubt", + "category": 1, + "isPositive": 1, + "abilityEffect": { + "increaseMaxHP": 15, + "increaseAttackCost": 1, + "increaseAttackChance": -30, + "increaseAttackDamage": { + "min": 4, + "max": 4 + } + } + }, + { + "id": "dazed", + "iconID": "actorconditions_1:65", + "name": "Benommen", + "category": 1, + "abilityEffect": { + "increaseBlockChance": -40 + } + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_alynndir.json b/AndorsTrail/res/raw-de/conversationlist_alynndir.json new file mode 100644 index 000000000..c22fcf5b0 --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_alynndir.json @@ -0,0 +1,70 @@ +[ + { + "id": "alynndir_1", + "message": "Hallo. Willkommen in meiner Hütte.", + "replies": [ + { + "text": "Was machst du hier?", + "nextPhraseID": "alynndir_2" + }, + { + "text": "Was kannst du mir über die Umgebung hier erzählen?", + "nextPhraseID": "alynndir_3" + } + ] + }, + { + "id": "alynndir_2", + "message": "Meistens handle ich mit Reisenden auf der Hauptstraße auf dem Weg nach Nor City.", + "replies": [ + { + "text": "Hast du etwas zu tauschen?", + "nextPhraseID": "S" + }, + { + "text": "Was kannst du mir über die Umgebung hier erzählen?", + "nextPhraseID": "alynndir_3" + } + ] + }, + { + "id": "alynndir_3", + "message": "Oh, hier gibt es nicht viel. Vilegard im Westen und Brightport im Osten.", + "replies": [ + { + "text": "N", + "nextPhraseID": "alynndir_4" + } + ] + }, + { + "id": "alynndir_4", + "message": "Nördlich ist bloß Wald. Aber dort geschehen manche merkwürdigen Dinge.", + "replies": [ + { + "text": "N", + "nextPhraseID": "alynndir_5" + } + ] + }, + { + "id": "alynndir_5", + "message": "Ich habe schreckliche Schreie aus dem Wald im Nordwesten gehört.", + "replies": [ + { + "text": "N", + "nextPhraseID": "alynndir_6" + } + ] + }, + { + "id": "alynndir_6", + "message": "Ich frage mich wirklich, was dort ist.", + "replies": [ + { + "text": "Auf Wiedersehen.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_ambelie.json b/AndorsTrail/res/raw-de/conversationlist_ambelie.json new file mode 100644 index 000000000..44435a2a5 --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_ambelie.json @@ -0,0 +1,128 @@ +[ + { + "id": "ambelie_1", + "message": "Oh nein, ein Bürgerlicher. Geh weg von mir. Ich könnte mir etwas holen.", + "replies": [ + { + "text": "Wer bist du?", + "nextPhraseID": "ambelie_2" + }, + { + "text": "Was macht eine noble Frau, wie du es bist, an einem Ort wie diesem?", + "nextPhraseID": "ambelie_5" + }, + { + "text": "Ich würde froh darüber sein, von einer Wichtigtuerin wie dir fortzukommen.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "ambelie_2", + "message": "Ich bin Ambelie vom Hause Laumwill in Feygard. Ich bin sicher, dass du von mir und meinem Haus gehört haben musst.", + "replies": [ + { + "text": "Oh, ja.. Äh.. Haus von Laumwill in Feygard. Natürlich.", + "nextPhraseID": "ambelie_3" + }, + { + "text": "Ich habe noch nie etwas von dir oder deinem Haus gehört.", + "nextPhraseID": "ambelie_4" + }, + { + "text": "Wo ist Feygard?", + "nextPhraseID": "ambelie_3" + } + ] + }, + { + "id": "ambelie_3", + "message": "Feygard, die großartige Stadt des Friedens. Sicher musst du sie kennen. Im Nordwesten unseres großartigen Landes.", + "replies": [ + { + "text": "Was macht eine noble Frau, wie du es bist, an einem Ort wie diesem?", + "nextPhraseID": "ambelie_5" + }, + { + "text": "Nein, ich habe noch nie davon gehört.", + "nextPhraseID": "ambelie_4" + } + ] + }, + { + "id": "ambelie_4", + "message": "Pfft. Das beweist alles, was ich von euch Wilden hier im Süden gehört habe. So ungebildet." + }, + { + "id": "ambelie_5", + "message": "Ich, Ambelie, vom Hause Laumwill in Feygard, bin auf einer Reise zum südlichen Nor City.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ambelie_6" + } + ] + }, + { + "id": "ambelie_6", + "message": "Eine Reise um zu sehen, ob Nor City wirklich so ist, wie man sagt. Ob es wirklich mit dem Glanz der großartigen Stadt Feygard verglichen werden kann.", + "replies": [ + { + "text": "Nor City, wo ist das?", + "nextPhraseID": "ambelie_7" + }, + { + "text": "Wenn du es in Feygard so magst, warum verlässt du es dann überhaupt?", + "nextPhraseID": "ambelie_9" + } + ] + }, + { + "id": "ambelie_7", + "message": "Hast du noch nie von Nor City gehört? Ich werde eine Notiz machen, dass die Wilden hier nicht einmal von der Stadt gehört haben.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ambelie_8" + } + ] + }, + { + "id": "ambelie_8", + "message": "Ich bin mir immer sicherer, dass Nor City nicht einmal in meinen wildesten Träumen, mit der großartigen Stadt von Feygard verglichen werden kann.", + "replies": [ + { + "text": "Viel Glück auf deiner Reise.", + "nextPhraseID": "ambelie_10" + } + ] + }, + { + "id": "ambelie_9", + "message": "All die Edelfrauen in Feygard reden immer wieder über den mysteriösen Schatten von Nor City. Ich habe es selbst gesehen.", + "replies": [ + { + "text": "Nor City, wo ist das?", + "nextPhraseID": "ambelie_7" + }, + { + "text": "Viel Glück auf deiner Reise.", + "nextPhraseID": "ambelie_10" + } + ] + }, + { + "id": "ambelie_10", + "message": "Vielen Dank. Nun geh bitte, bevor mich noch jemand mit einem Bürgerlichen wie dir reden sieht.", + "replies": [ + { + "text": "Bürgerlichen? Versuchst du mich zu beleidigen? Tschüss.", + "nextPhraseID": "X" + }, + { + "text": "Was immer du sagst, du würdest vermutlich nicht einmal eine Waldwespe überleben.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_crossglen.json b/AndorsTrail/res/raw-de/conversationlist_crossglen.json new file mode 100644 index 000000000..3286feaad --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_crossglen.json @@ -0,0 +1,140 @@ +[ + { + "id": "audir1", + "message": "Willkommen in meinem Laden!\n\nBitte schaue dir meine erlesenen Waren nur näher an.", + "replies": [ + { + "text": "Bitte zeige mir dein Angebot.", + "nextPhraseID": "S" + } + ] + }, + { + "id": "arambold1", + "message": "Oh Mann, ob ich wohl jemals ein wenig schlafen kann, wenn diese Saufköpfe so weitersingen?\n\nJemand sollte etwas dagegen tun.", + "replies": [ + { + "text": "Kann ich mich hier ausruhen?", + "nextPhraseID": "arambold2" + }, + { + "text": "Hast du etwas zu verkaufen?", + "nextPhraseID": "S" + } + ] + }, + { + "id": "arambold2", + "message": "Na klar Junge, du kannst dich hier ausruhen.\n\nNimm' dir einfach ein Bett.", + "replies": [ + { + "text": "Wiedersehen, und danke!", + "nextPhraseID": "X" + } + ] + }, + { + "id": "drunk1", + "message": "Trink, trink, trink - trink noch ein wenig mehr.\nTrink, trink, trink - dann wird der Becher leer.\n\nHey Junge, willst du bei unserem Trinkspiel mitmachen?", + "replies": [ + { + "text": "Nein danke.", + "nextPhraseID": "X" + }, + { + "text": "Vielleicht ein andermal.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "mara_default", + "message": "Achte nicht auf die besoffenen Typen, die machen immer Ärger.\n\nDarf es was zu essen sein?", + "replies": [ + { + "text": "Hast du etwas zu verkaufen?", + "nextPhraseID": "S" + } + ] + }, + { + "id": "mara1", + "replies": [ + { + "nextPhraseID": "mara_thanks", + "requires": { + "progress": "odair:100" + } + }, + { + "nextPhraseID": "mara_default" + } + ] + }, + { + "id": "mara_thanks", + "message": "Ich habe gehört, dass du Odair bei der Säuberung der alten Vorratshöhle geholfen hast. Vielen Dank, wir werden sie bald wieder benutzen können.", + "replies": [ + { + "text": "Es war mir ein Vergnügen.", + "nextPhraseID": "mara_default" + } + ] + }, + { + "id": "farm1", + "message": "Bitte stör' mich nicht, ich habe zu arbeiten.", + "replies": [ + { + "text": "Hast du meinen Bruder Andor gesehen?", + "nextPhraseID": "farm_andor" + } + ] + }, + { + "id": "farm2", + "message": "Was? Kannst du nicht sehen, dass ich beschäftigt bin. Belästige jemand anderen.", + "replies": [ + { + "text": "Hast du meinen Bruder Andor gesehen?", + "nextPhraseID": "farm_andor" + } + ] + }, + { + "id": "farm_andor", + "message": "Andor? Nein, den hab' ich in letzter Zeit nicht mehr gesehen." + }, + { + "id": "snakemaster", + "message": "Ah, wen haben wir den hier? Einen Besucher, wie nett. Ich bin beeindruckt, dass du es an meinen Leuten vorbei bis hierher geschafft hast.\n\nNun stirb, jämmerliche Kreatur.", + "replies": [ + { + "text": "Wunderbar, ich habe mich auf einen Kampf gefreut!", + "nextPhraseID": "F" + }, + { + "text": "Wir werden sehen, wer hier stirbt.", + "nextPhraseID": "F" + }, + { + "text": "Bitte tut mir nichts!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "haunt", + "message": "Oh Sterblicher, befreit mich aus dieser verfluchten Welt!", + "replies": [ + { + "text": "Oh, ich werde dich befreien.", + "nextPhraseID": "F" + }, + { + "text": "Du meinst, ich soll dich töten?", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_crossglen_gruil.json b/AndorsTrail/res/raw-de/conversationlist_crossglen_gruil.json new file mode 100644 index 000000000..7873347ed --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_crossglen_gruil.json @@ -0,0 +1,118 @@ +[ + { + "id": "gruil1", + "message": "Psst, hey.\n\nWillst du was kaufen?", + "replies": [ + { + "text": "Sicher, zeig' mir deine Waren.", + "nextPhraseID": "S" + }, + { + "text": "Ich habe gehört, dass du vor einiger Zeit mit meinem Bruder gesprochen hast.", + "nextPhraseID": "gruil_select", + "requires": { + "progress": "andor:10" + } + } + ] + }, + { + "id": "gruil_select", + "replies": [ + { + "nextPhraseID": "gruil_return", + "requires": { + "progress": "andor:30" + } + }, + { + "nextPhraseID": "gruil2" + } + ] + }, + { + "id": "gruil2", + "message": "Dein Bruder? Oh, meinst du Andor? Ich könnte etwas wissen, aber diese Information wird dich was kosten. Wenn du mir eine Giftdrüse von einer dieser Giftschlagen bringst, werde ich es dir vielleicht sagen.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 20 + } + ], + "replies": [ + { + "text": "Hier, ich habe eine Giftdrüse für dich.", + "nextPhraseID": "gruil_complete", + "requires": { + "item": { + "itemID": "gland", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Okay, ich besorge eine.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "gruil_complete", + "message": "Danke Kleiner. Das wird genügen.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "gruil_andor1" + } + ] + }, + { + "id": "gruil_return", + "message": "Schau Junge, ich habe dir doch schon alles erzählt.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gruil_andor1" + } + ] + }, + { + "id": "gruil_andor1", + "message": "Ich habe gestern mit ihm gesprochen. Er fragte, ob ich jemanden mit dem Namen Umar oder so ähnlich kenne. Ich habe keine Ahnung, von was er da geredet hat.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gruil_andor2" + } + ] + }, + { + "id": "gruil_andor2", + "message": "Er schien wirklich sehr nervös wegen irgendeiner Sache und brach beinahe fluchtartig auf. Es hatte anscheinend etwas mit der Diebesgilde in Fallhaven zu tun.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gruil_andor3" + } + ] + }, + { + "id": "gruil_andor3", + "message": "Das ist alles was ich weiß. Vielleicht fragst du ein wenig in Fallhaven herum. Halte nach meinem Freund Gaela Ausschau, er weiß möglicherweise mehr.", + "replies": [ + { + "text": "Danke, Wiedersehen.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_crossglen_leonid.json b/AndorsTrail/res/raw-de/conversationlist_crossglen_leonid.json new file mode 100644 index 000000000..c78f17a6c --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_crossglen_leonid.json @@ -0,0 +1,201 @@ +[ + { + "id": "leonid1", + "message": "Hallo Junge. Du bist Mikhail's Sohn, stimmt's? Und du hast noch einen Bruder.\n\nIch bin Leonid, der Vogt von Crossglen.", + "replies": [ + { + "text": "Hast du meinen Bruder Andor gesehen?", + "nextPhraseID": "leonid_andor" + }, + { + "text": "Was kannst du mir über Crossglen berichten?", + "nextPhraseID": "leonid_crossglen" + }, + { + "text": "Na dann, bis später.", + "nextPhraseID": "leonid_bye" + } + ] + }, + { + "id": "leonid_andor", + "message": "Deinen Bruder? Nein, heute habe ich ihn noch nicht gesehen. Ich denke, dass ich ihn gestern mit Gruil zusammen gesehen habe. Vielleicht weiß er mehr?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 10 + } + ], + "replies": [ + { + "text": "Danke, ich werde mit Gruil reden. Vorher möchte ich jedoch noch etwas anderes wissen.", + "nextPhraseID": "leonid_continue" + }, + { + "text": "Danke, ich werde dann mal mit Gruil reden.", + "nextPhraseID": "leonid_bye" + } + ] + }, + { + "id": "leonid_continue", + "message": "Kann ich dir noch bei etwas anderem helfen?", + "replies": [ + { + "text": "Hast du meinen Bruder Andor gesehen?", + "nextPhraseID": "leonid_andor" + }, + { + "text": "Was kannst du mir über Crossglen berichten?", + "nextPhraseID": "leonid_crossglen" + }, + { + "text": "Na dann, bis später.", + "nextPhraseID": "leonid_bye" + } + ] + }, + { + "id": "leonid_crossglen", + "message": "Wie du weißt, ist das hier das Dorf Crossglen. Vor allem sind wir eine Bauerngemeinde.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen1" + } + ] + }, + { + "id": "leonid_crossglen1", + "message": "Wir haben Audir mit seiner Schmiede im Südwesten, die Hütte von Leta und ihrem Mann im Westen, dieses Gemeindehaus und natürlich die Hütte deines Vaters im Nordwesten.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen2" + } + ] + }, + { + "id": "leonid_crossglen2", + "message": "Das war es dann auch schon. Wir versuchen, ein friedliches Leben zu leben.", + "replies": [ + { + "text": "Ist im Dorf kürzlich etwas Besonderes geschehen?", + "nextPhraseID": "leonid_crossglen3" + }, + { + "text": "In Ordnung, zurück zu den Themen von vorhin.", + "nextPhraseID": "leonid_continue" + } + ] + }, + { + "id": "leonid_crossglen3", + "message": "Es gab ein paar kleinere Unruhen vor einigen Wochen - wie du vielleicht bemerkt hast. Einige Dörfler stritten sich über den neuen Erlass von Lord Geomyr.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen4" + } + ] + }, + { + "id": "leonid_crossglen4", + "message": "Lord Geomyr ließ eine Anordnung betreffend der illegalen Verwendung von Knochenmehl als Heilsubstanz verkünden. Einige Dorfbewohner meinten, dass wir uns Lord Geomyr's Wort entgegenstellen und es dennoch weiter verwenden sollten.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen4_1" + } + ] + }, + { + "id": "leonid_crossglen4_1", + "message": "Tharal, unser Geistlicher, war besonders aufgeregt und schlug vor, dass wir etwas gegen Lord Geomyr unternehmen sollten.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen5" + } + ] + }, + { + "id": "leonid_crossglen5", + "message": "Andere Dörfler meinten, dass wir Lord Geomyr's Erlass befolgen sollten.\n\nIch persönlich habe mich noch nicht entschieden.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen6" + } + ] + }, + { + "id": "leonid_crossglen6", + "message": "Einerseits gewährt Lord Geomyr Crossglen seinen Schutz. *er zeigt auf die Soldaten im Gemeindehaus*", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen7" + } + ] + }, + { + "id": "leonid_crossglen7", + "message": "Andererseits fordern die Steuern und die jüngsten Bestimmungen, was erlaubt ist und was nicht, hohen Tribut von Crossglen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen8" + } + ] + }, + { + "id": "leonid_crossglen8", + "message": "Jemand sollte zur Burg Geomyr gehen und mit dem Verwalter dort über unsere Situation hier in Crossglen sprechen.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "crossglen", + "value": 1 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen9" + } + ] + }, + { + "id": "leonid_crossglen9", + "message": "In der Zwischenzeit, haben wir jegliche Verwendung von Knochenmehl als Heilsubstanz untersagt.", + "replies": [ + { + "text": "Danke für die Information. Ich möchte noch etwas anderes fragen.", + "nextPhraseID": "leonid_continue" + }, + { + "text": "Danke für die Information. Wiedersehen.", + "nextPhraseID": "leonid_bye" + } + ] + }, + { + "id": "leonid_bye", + "message": "Der Schatten sei mit dir.", + "replies": [ + { + "text": "Der Schatten sei auch mit dir.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_crossglen_leta.json b/AndorsTrail/res/raw-de/conversationlist_crossglen_leta.json new file mode 100644 index 000000000..92eeb0983 --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_crossglen_leta.json @@ -0,0 +1,110 @@ +[ + { + "id": "leta1", + "message": "Hey, das ist mein Haus. Raus hier!", + "replies": [ + { + "text": "Aber ich wollte doch nur...", + "nextPhraseID": "leta2" + }, + { + "text": "Was ist mit deinem Mann Oromir?", + "nextPhraseID": "leta_oromir_select" + } + ] + }, + { + "id": "leta2", + "message": "Zisch ab Junge, raus aus meinem Haus!", + "replies": [ + { + "text": "Was ist mit deinem Mann Oromir?", + "nextPhraseID": "leta_oromir_select" + } + ] + }, + { + "id": "leta_oromir_select", + "replies": [ + { + "nextPhraseID": "leta_oromir_complete2", + "requires": { + "progress": "leta:100" + } + }, + { + "nextPhraseID": "leta_oromir1" + } + ] + }, + { + "id": "leta_oromir1", + "message": "Weißt du etwas über meinen Ehemann? Der Faulpelz sollte mir heute bei der Arbeit auf dem Hof helfen, aber er glänzt wieder einmal mit seiner Abwesenheit.\n[Seufz].", + "replies": [ + { + "text": "Ich habe keine Ahnung.", + "nextPhraseID": "leta_oromir2" + }, + { + "text": "Ja, ich habe gesehen, wie er sich bei einigen Bäumen östlich von hier versteckt hat.", + "nextPhraseID": "leta_oromir_complete", + "requires": { + "progress": "leta:20" + } + } + ] + }, + { + "id": "leta_oromir2", + "message": "Wenn du ihn findest, kannst du ihm ausrichten, dass er schnellstens zurück kommen soll um mir bei der Arbeit zu helfen.\nUnd jetzt raus hier!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "leta", + "value": 10 + } + ] + }, + { + "id": "leta_oromir_complete", + "message": "Er versteckt sich? Das sieht ihm ja mal wieder ähnlich. Es wird Zeit, dass ich ihn erinnere, wer hier der Boss ist.\nDanke übrigens für die Information.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "leta", + "value": 100 + } + ] + }, + { + "id": "leta_oromir_complete2", + "message": "Danke für deine Informationen über Oromir. Ich werde ihn mir gleich vorknöpfen." + }, + { + "id": "oromir1", + "message": "Puh, hast du mich erschreckt.\nHallo.", + "replies": [ + { + "text": "Hallo", + "nextPhraseID": "oromir2" + } + ] + }, + { + "id": "oromir2", + "message": "Ich verstecke mich vor meiner Frau Leta. Sie wird immer ziemlich sauer, wenn ich ihr nicht auf dem Hof helfe. Bitte erzähle ihr nicht, wo ich bin.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "leta", + "value": 20 + } + ], + "replies": [ + { + "text": "In Ordnung.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_crossglen_odair.json b/AndorsTrail/res/raw-de/conversationlist_crossglen_odair.json new file mode 100644 index 000000000..d98d2d6f4 --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_crossglen_odair.json @@ -0,0 +1,161 @@ +[ + { + "id": "odair1", + "message": "Oh, du bist es. Du und dein Bruder, immer für etwas Ärger gut.", + "replies": [ + { + "text": "N", + "nextPhraseID": "odair_select" + } + ] + }, + { + "id": "odair_select", + "replies": [ + { + "nextPhraseID": "odair_complete2", + "requires": { + "progress": "odair:100" + } + }, + { + "nextPhraseID": "odair_continue", + "requires": { + "progress": "odair:10" + } + }, + { + "nextPhraseID": "odair2" + } + ] + }, + { + "id": "odair2", + "message": "Hmm, vielleicht könntest du mir nützlich sein. Meinst du, dass du eine kleine Aufgabe für mich erledigen kannst?", + "replies": [ + { + "text": "Erzähle mir mehr über die Aufgabe.", + "nextPhraseID": "odair3" + }, + { + "text": "Sicher, wenn dabei etwas für mich herausspringt.", + "nextPhraseID": "odair3" + } + ] + }, + { + "id": "odair3", + "message": "Ich war kürzlich in der Höhle dort *er deutet nach Westen*, um unsere Vorräte zu prüfen. Aber offensichtlich wurde die Höhle von Ratten heimgesucht.", + "replies": [ + { + "text": "N", + "nextPhraseID": "odair4" + } + ] + }, + { + "id": "odair4", + "message": "Inbesonders ist mir eine Ratte aufgefallen, die größer als alle anderen war. Denkst du, dass du das Zeug dazu hast, die Ratten zu entfernen?", + "replies": [ + { + "text": "Sicher helfe ich, damit Crossglen die Vorratshöhle wieder benutzen kann.", + "nextPhraseID": "odair5" + }, + { + "text": "Sicher helfe ich, aber nur, weil dabei etwas für mich herausspringen könnte.", + "nextPhraseID": "odair5" + }, + { + "text": "Nein danke.", + "nextPhraseID": "odair_cowards" + } + ] + }, + { + "id": "odair5", + "message": "Du musst in diese Höhle und die große Ratte töten. Damit sollten wir die Rattenplage in der Höhle stoppen können. Dann endlich können wir unsere Vorratshöhle wieder benutzen.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "odair", + "value": 10 + } + ], + "replies": [ + { + "text": "Okay.", + "nextPhraseID": "X" + }, + { + "text": "Wenn ich so darüber nachdenke, denke ich, dass ich dir doch nicht helfen kann.", + "nextPhraseID": "odair_cowards" + } + ] + }, + { + "id": "odair_cowards", + "message": "Ich habe mich nicht getäuscht. Du und dein Bruder wart schon immer Feiglinge.", + "replies": [ + { + "text": "Tschüss.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "odair_continue", + "message": "Hast du die große Ratte in der Höhle westlich von hier schon getötet?", + "replies": [ + { + "text": "Ja, ich habe die große Ratte getötet.", + "nextPhraseID": "odair_complete", + "requires": { + "item": { + "itemID": "tail_caverat", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Was sollte ich nochmal tun?", + "nextPhraseID": "odair5" + }, + { + "text": "Nein, noch nicht.", + "nextPhraseID": "odair_cowards" + } + ] + }, + { + "id": "odair_complete", + "message": "Vielen Dank für deine Hilfe, Junge! Vielleicht bis du und dein Bruder doch nicht so feige wie ich dachte. Hier, nimm diese Münzen als Belohnung.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "odair", + "value": 100 + }, + { + "rewardType": 1, + "rewardID": "gold20" + } + ], + "replies": [ + { + "text": "Danke", + "nextPhraseID": "X" + } + ] + }, + { + "id": "odair_complete2", + "message": "Nochmals vielen Dank für deine Hilfe. Nun können wir die Höhle endlich wieder als Vorratsraum verwenden.", + "replies": [ + { + "text": "Wiedersehen.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_crossglen_tharal.json b/AndorsTrail/res/raw-de/conversationlist_crossglen_tharal.json new file mode 100644 index 000000000..caae831b7 --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_crossglen_tharal.json @@ -0,0 +1,138 @@ +[ + { + "id": "tharal1", + "message": "Das Leuchten des Schattens sei mit dir, mein Junge.", + "replies": [ + { + "text": "Hast du etwas zu verkaufen?", + "nextPhraseID": "S" + }, + { + "text": "Was kannst du mir über Knochenmehl sagen?", + "nextPhraseID": "tharal_bonemeal_select", + "requires": { + "progress": "bonemeal:10" + } + } + ] + }, + { + "id": "tharal_bonemeal_select", + "replies": [ + { + "nextPhraseID": "tharal_bonemeal4", + "requires": { + "progress": "bonemeal:30" + } + }, + { + "nextPhraseID": "tharal_bonemeal1" + } + ] + }, + { + "id": "tharal_bonemeal1", + "message": "Knochenmehl? Darüber sollten wir lieber nicht reden. Laut einem Erlass von Lord Geomyr ist es nicht mehr erlaubt.", + "replies": [ + { + "text": "Bitte?", + "nextPhraseID": "tharal_bonemeal2_1" + } + ] + }, + { + "id": "tharal_bonemeal2_1", + "message": "Nein, wir sollten wirklich nicht darüber reden.", + "replies": [ + { + "text": "Ach, komm' schon.", + "nextPhraseID": "tharal_bonemeal2" + } + ] + }, + { + "id": "tharal_bonemeal2", + "message": "Nun, wenn du darauf bestehst: Bring mir 5 Insektenflügel die ich für das Herstellen von Tränken brauche, dann können wir weiterreden.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 20 + } + ], + "replies": [ + { + "text": "Hier sind die Insektenflügel.", + "nextPhraseID": "tharal_bonemeal3", + "requires": { + "item": { + "itemID": "insectwing", + "quantity": 5, + "requireType": 0 + } + } + }, + { + "text": "Okay, ich werde welche holen.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "tharal_bonemeal3", + "message": "Danke mein Junge. Ich weiß, dass ich mich auf dich verlassen kann.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "tharal_bonemeal4" + } + ] + }, + { + "id": "tharal_bonemeal4", + "message": "Oh ja, Knochenmehl. Gemischt mit den richtigen Zutaten kann es zu einem sehr wirksamen Heilmittel werden.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tharal_bonemeal5" + } + ] + }, + { + "id": "tharal_bonemeal5", + "message": "Wir haben es früher oft benutzt. Aber jetzt hat der Bastard Lord Geomyr jeglichen Gebrauch verboten.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tharal_bonemeal6" + } + ] + }, + { + "id": "tharal_bonemeal6", + "message": "Wie soll ich jetzt die Leute heilen? Mit normalen Heiltränken? Pah, die sind so unwirksam.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tharal_bonemeal7" + } + ] + }, + { + "id": "tharal_bonemeal7", + "message": "Ich kenne jemand, der noch einen Vorrat an Knochenmehl hat, wenn du interessiert bist. Rede mit Thoronir, meinem Priesterkollegen in Fallhaven. Nenne ihm das Passwort 'Leuchten des Schattens'.", + "replies": [ + { + "text": "Danke. Wiedersehen.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_fallhaven.json b/AndorsTrail/res/raw-de/conversationlist_fallhaven.json new file mode 100644 index 000000000..0d889dd37 --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_fallhaven.json @@ -0,0 +1,206 @@ +[ + { + "id": "fallhaven_citizen1", + "message": "Hallo, schönes Wetter, nicht wahr?", + "replies": [ + { + "text": "Hast du meinen Bruder Andor gesehen?", + "nextPhraseID": "fallhaven_andor_1" + } + ] + }, + { + "id": "fallhaven_citizen2", + "message": "Hallo, möchtest du etwas von mir?", + "replies": [ + { + "text": "Hast du meinen Bruder Andor gesehen?", + "nextPhraseID": "fallhaven_andor_2" + } + ] + }, + { + "id": "fallhaven_citizen3", + "message": "Hallo, kann ich dir helfen?", + "replies": [ + { + "text": "Hast du meinen Bruder Andor gesehen?", + "nextPhraseID": "fallhaven_andor_3" + } + ] + }, + { + "id": "fallhaven_citizen4", + "message": "Du bis der Junge aus dem Dorf Crossglen, richtig?", + "replies": [ + { + "text": "Hast du meinen Bruder Andor gesehen?", + "nextPhraseID": "fallhaven_andor_4" + } + ] + }, + { + "id": "fallhaven_citizen5", + "message": "Geh mir aus dem Weg." + }, + { + "id": "fallhaven_citizen6", + "message": "Ich wünsche dir einen guten Tag.", + "replies": [ + { + "text": "Hast du meinen Bruder Andor gesehen?", + "nextPhraseID": "fallhaven_andor_6" + } + ] + }, + { + "id": "fallhaven_andor_1", + "message": "Nein, leider nicht. Ich habe niemanden gesehen, auf den deine Beschreibung passt." + }, + { + "id": "fallhaven_andor_2", + "message": "Ein anderer Junge sagt du? Lass mich mal nachdenken.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_andor_1" + } + ] + }, + { + "id": "fallhaven_andor_3", + "message": "Hm, möglicherweise habe ich vor ein paar Tagen jemand gesehen, auf den die Beschreibung passt. Erinnere mich aber nicht mehr wo." + }, + { + "id": "fallhaven_andor_4", + "message": "Oh ja, vor ein paar Tagen war da ein anderer Junge aus dem Dorf Crossglen. Obwohl ich nicht ganz sicher bin, ob deine Beschreibung passt.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_andor_4_1" + } + ] + }, + { + "id": "fallhaven_andor_4_1", + "message": "Da waren ein paar zwielichtige Gestalten bei ihm. Mehr als das habe ich aber nicht gesehen." + }, + { + "id": "fallhaven_andor_6", + "message": "Nein, ich habe ihn nicht gesehen." + }, + { + "id": "fallhaven_guard", + "message": "Mach keinen Ärger." + }, + { + "id": "fallhaven_priest", + "message": "Der Schatten sei mit dir.", + "replies": [ + { + "text": "Kannst du mir mehr über den Schatten erzählen?", + "nextPhraseID": "priest_shadow_1" + } + ] + }, + { + "id": "priest_shadow_1", + "message": "Der Schatten beschützt uns. Er hält Schaden von uns fern und behütet uns, wenn wir schlafen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "priest_shadow_2" + } + ] + }, + { + "id": "priest_shadow_2", + "message": "Er folgt uns wohin wir auch gehen. Geh mit dem Schatten mein Junge.", + "replies": [ + { + "text": "Der Schatten sei mit dir.", + "nextPhraseID": "X" + }, + { + "text": "Wie du meinst, tschüss.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "rigmor", + "message": "Hey du! Bist du nicht der nette kleine Bursche.", + "replies": [ + { + "text": "Hast du meinen Bruder Andor gesehen?", + "nextPhraseID": "rigmor_1" + }, + { + "text": "Ich muss jetzt wirklich gehen.", + "nextPhraseID": "rigmor_leave_select" + } + ] + }, + { + "id": "rigmor_1", + "message": "Dein Bruder sagst du? Sein Name ist Andor? Nein, ich kann mich nicht an ihn erinnern.", + "replies": [ + { + "text": "Ich muss jetzt wirklich gehen.", + "nextPhraseID": "rigmor_leave_select" + } + ] + }, + { + "id": "rigmor_leave_select", + "replies": [ + { + "nextPhraseID": "rigmor_thanks", + "requires": { + "progress": "calomyran:100" + } + }, + { + "nextPhraseID": "X" + } + ] + }, + { + "id": "rigmor_thanks", + "message": "Ich hörte du hast dem alten Mann geholfen sein Buch zu finden, vielen Dank. Seit Wochen hatte er über das Buch gesprochen. Armer Mann, er neigt dazu Dinge zu vergessen.", + "replies": [ + { + "text": "Es war mir ein Vergnügen. Wiedersehen.", + "nextPhraseID": "X" + }, + { + "text": "Du solltest ihn im Auge behalten, sonst könnten ihm schlimme Dinge passieren.", + "nextPhraseID": "X" + }, + { + "text": "Egal, ich habe es nur wegen den Goldmünzen gemacht.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_clothes", + "message": "Willkommen in meinem Laden. Bitte schaue dir meine erlesenen Kleider und Juwelen an.", + "replies": [ + { + "text": "Lass mich deine Waren ansehen.", + "nextPhraseID": "S" + } + ] + }, + { + "id": "fallhaven_potions", + "message": "Willkommen in meinem Laden. Bitte schaue dir meine wohlmundenden Getränke an.", + "replies": [ + { + "text": "Lass mich sehen, welche Getränke du hast.", + "nextPhraseID": "S" + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_fallhaven_arcir.json b/AndorsTrail/res/raw-de/conversationlist_fallhaven_arcir.json new file mode 100644 index 000000000..d3f1cc868 --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_fallhaven_arcir.json @@ -0,0 +1,153 @@ +[ + { + "id": "arcir_start", + "message": "Hallo, ich bin Arcir.", + "replies": [ + { + "text": "Ich habe deine Statue von Elythara unten bemerkt.", + "nextPhraseID": "arcir_elythara_1", + "requires": { + "progress": "arcir:10" + } + }, + { + "text": "Du scheinst deine Bücher wirklich zu mögen.", + "nextPhraseID": "arcir_books_1" + } + ] + }, + { + "id": "arcir_anythingelse", + "message": "Möchtest du irgend was anderes wissen?", + "replies": [ + { + "text": "Ich habe deine Statue von Elythara unten bemerkt.", + "nextPhraseID": "arcir_elythara_1", + "requires": { + "progress": "arcir:10" + } + }, + { + "text": "Du scheinst deine Bücher wirklich zu mögen.", + "nextPhraseID": "arcir_books_1" + } + ] + }, + { + "id": "arcir_elythara_1", + "message": "Oh, du hast meine Statue im Keller gefunden?\n\nJa, Elythara ist mein Beschützer.", + "replies": [ + { + "text": "Okay.", + "nextPhraseID": "arcir_anythingelse" + } + ] + }, + { + "id": "arcir_books_1", + "message": "Ich habe großes Vergnügen an meinen Büchern. Sie enthalten das angehäufte Wissen vergangener Generationen.", + "replies": [ + { + "text": "Hast du ein Buch mit dem Namen 'Calomyranische Geheimnisse'?", + "nextPhraseID": "arcir_calomyran_select", + "requires": { + "progress": "calomyran:10" + } + }, + { + "text": "Okay.", + "nextPhraseID": "arcir_anythingelse" + } + ] + }, + { + "id": "arcir_calomyran_1", + "message": "'Calomyranische Geheimnisse'? Hm, ja ich denke ich habe eins davon im Keller.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_calomyran_2" + } + ] + }, + { + "id": "arcir_calomyran_2", + "message": "Der alte Mann Benradas kam letzte Woche vorbei, wollte mir das Buch verkaufen. Weil das Buch nicht wirklich mein Fall ist, habe ich abgelehnt.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_calomyran_3" + } + ] + }, + { + "id": "arcir_calomyran_3", + "message": "Er scheint sehr verärgert gewesen zu sein, dass ich sein Buch nicht mochte und warf es nach mir, während er aus dem Haus stürmte.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_calomyran_4" + } + ] + }, + { + "id": "arcir_calomyran_4", + "message": "Der arme alte Mann Benradas, er vergass wahrscheinlich, dass er es hier gelassen hatte. Er neigt dazu Dinge zu vergessen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_anythingelse" + } + ] + }, + { + "id": "arcir_calomyran_5", + "message": "Du hast unten nachgeschaut, aber nichts gefunden? Eine Notiz sagst du? Ich vermute, es muss jemand in meinem Haus gewesen sein.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_calomyran_6" + } + ] + }, + { + "id": "arcir_calomyran_select", + "replies": [ + { + "nextPhraseID": "arcir_calomyran_complete", + "requires": { + "progress": "calomyran:100" + } + }, + { + "nextPhraseID": "arcir_calomyran_5", + "requires": { + "progress": "calomyran:20" + } + }, + { + "nextPhraseID": "arcir_calomyran_1" + } + ] + }, + { + "id": "arcir_calomyran_complete", + "message": "Ich hörte du hast es gefunden und zum alten Mann Benradas zurückgebracht. Vielen Dank. Er neigt dazu Dinge zu vergessen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_anythingelse" + } + ] + }, + { + "id": "arcir_calomyran_6", + "message": "Was stand auf der Notiz?\n\nLarcal.. Ist mir bekannt. Macht immer Ärger. Er ist normalerweise im Stall östlich von hier.", + "replies": [ + { + "text": "Danke, tschüss", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_fallhaven_athamyr.json b/AndorsTrail/res/raw-de/conversationlist_fallhaven_athamyr.json new file mode 100644 index 000000000..366346d75 --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_fallhaven_athamyr.json @@ -0,0 +1,115 @@ +[ + { + "id": "athamyr", + "message": "Geh mit dem Schatten.", + "replies": [ + { + "text": "Warst du unten in den Katakomben?", + "nextPhraseID": "athamyr_select", + "requires": { + "progress": "bucus:20" + } + } + ] + }, + { + "id": "athamyr_1", + "message": "Ja, ich war in den Katakomben unter der Fallhaven Kirche.", + "replies": [ + { + "text": "N", + "nextPhraseID": "athamyr_2" + } + ] + }, + { + "id": "athamyr_2", + "message": "Aber ich bin der einzige, der sowohl die Erlaubnis als auch die Tapferkeit hat dort hinunter zu gehen.", + "replies": [ + { + "text": "Wie kann ich die Erlaubnis bekommen hinunter zu gehen?", + "nextPhraseID": "athamyr_3" + } + ] + }, + { + "id": "athamyr_3", + "message": "Du willst hinunter in die Katakomben? Hm, vielleicht können wir einen Handel machen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "athamyr_4" + } + ] + }, + { + "id": "athamyr_4", + "message": "Bring mir etwas von diesem köstlich zubereiteten Braten aus der Schenke und ich gebe dir die Erlaubnis zum Betreten der Katakomben der Fallhaven Kirche.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 30 + } + ], + "replies": [ + { + "text": "Hier, ich habe einen Braten für dich.", + "nextPhraseID": "athamyr_complete", + "requires": { + "item": { + "itemID": "meat_cooked", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Okay, ich gehe etwas holen.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "athamyr_complete_2", + "message": "Du hast die Erlaubnis zum Betreten der Katakomben der Fallhaven Kirche.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 50 + } + ] + }, + { + "id": "athamyr_select", + "replies": [ + { + "nextPhraseID": "athamyr_complete_2", + "requires": { + "progress": "bucus:40" + } + }, + { + "nextPhraseID": "athamyr_1" + } + ] + }, + { + "id": "athamyr_complete", + "message": "Danke, den werde ich genießen.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "athamyr_complete_2" + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_fallhaven_bucus.json b/AndorsTrail/res/raw-de/conversationlist_fallhaven_bucus.json new file mode 100644 index 000000000..6d8c54746 --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_fallhaven_bucus.json @@ -0,0 +1,236 @@ +[ + { + "id": "bucus_welcome", + "message": "Hallo nochmal, willkommen zurück zu .. Oh wart mal, Ich dachte, du wärst jemand anders.", + "replies": [ + { + "text": "Hast du meinen Bruder Andor gesehen?", + "nextPhraseID": "bucus_andor_select" + }, + { + "text": "Was weisst du über die Diebesgilde?", + "nextPhraseID": "bucus_thieves_select" + } + ] + }, + { + "id": "bucus_andor_select", + "replies": [ + { + "nextPhraseID": "bucus_umar_1", + "requires": { + "progress": "bucus:100" + } + }, + { + "nextPhraseID": "bucus_andor_no_1" + } + ] + }, + { + "id": "bucus_andor_no_1", + "message": "Wie interessant, dass du fragst. Was wenn ich ihn gesehen hätte? Warum sollte ich es dir erzählen?", + "replies": [ + { + "text": "N", + "nextPhraseID": "bucus_andor_no_2" + } + ] + }, + { + "id": "bucus_andor_no_2", + "message": "Nein, das kann ich dir nicht sagen. Jetzt geh bitte." + }, + { + "id": "bucus_thieves_select", + "replies": [ + { + "nextPhraseID": "bucus_thieves_complete_3", + "requires": { + "progress": "bucus:100" + } + }, + { + "nextPhraseID": "bucus_thieves_continue", + "requires": { + "progress": "bucus:10" + } + }, + { + "nextPhraseID": "bucus_thieves_select2" + } + ] + }, + { + "id": "bucus_thieves_select2", + "replies": [ + { + "nextPhraseID": "bucus_thieves_1", + "requires": { + "progress": "andor:40" + } + }, + { + "nextPhraseID": "bucus_thieves_no" + } + ] + }, + { + "id": "bucus_thieves_no", + "message": "Wa, was? Nein, ich weiss nichts darüber." + }, + { + "id": "bucus_umar_1", + "message": "Okay Junge. Du hast dich als nützlich erwiesen. Ja, ich sah vor ein paar Tagen einen Junge nach deiner Beschreibung hier herumlaufen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bucus_umar_2" + } + ] + }, + { + "id": "bucus_umar_2", + "message": "Ich weiss nicht genau, was er wollte. Er stellte andauernd irgendwelche Fragen. Ganz ähnlich wie du. *kicher*", + "replies": [ + { + "text": "N", + "nextPhraseID": "bucus_umar_3" + } + ] + }, + { + "id": "bucus_umar_3", + "message": "Jedenfalls ist das alles, was ich weiss. Du solltest mit Umar sprechen, er weiss wahrscheinlich mehr. Durch die Bodenluke dort hinten.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 50 + } + ], + "replies": [ + { + "text": "Okay, tschüss", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bucus_thieves_1", + "message": "Wer hat dir das gesagt? Argh.\n\nOkay du hast uns gefunden. Und jetzt?", + "replies": [ + { + "text": "Kann ich mich der Diebesgilde anschliessen?", + "nextPhraseID": "bucus_thieves_2" + } + ] + }, + { + "id": "bucus_thieves_2", + "message": "Hah! Der Diebesgilde beitreten?! Du?!\n\nDu bist ein spaßiger Junge.", + "replies": [ + { + "text": "Es ist mir ernst.", + "nextPhraseID": "bucus_thieves_3" + }, + { + "text": "Ja ja, sehr lustig, hä?", + "nextPhraseID": "bucus_thieves_3" + } + ] + }, + { + "id": "bucus_thieves_3", + "message": "Okay, ich sag dir was Junge. Erfülle eine Aufgabe für mich und vielleicht ziehe ich es dann in betracht dir mehr Informationen zu geben.", + "replies": [ + { + "text": "Über was für eine Aufgabe sprechen wir?", + "nextPhraseID": "bucus_thieves_4" + }, + { + "text": "Solange etwas für mich dabei herausspringt, bin ich dabei!", + "nextPhraseID": "bucus_thieves_4" + } + ] + }, + { + "id": "bucus_thieves_4", + "message": "Bring mir den Schlüssel von Luthor und wir sprechen weiter. Ich weiß nichts über den Schlüssel selbst, aber Gerüchte sagen er ist irgendwo in den Katakomben unter der Fallhaven Kirche versteckt.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 10 + } + ], + "replies": [ + { + "text": "Okay, hört sich leicht genug an.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bucus_thieves_continue", + "message": "Wie geht die Suche nach dem Schlüssel von Luthor vorwärts?", + "replies": [ + { + "text": "Was sollte ich nochmal tun?", + "nextPhraseID": "bucus_thieves_4" + }, + { + "text": "Hier, ich habe ihn. Den Schlüssel von Luthor.", + "nextPhraseID": "bucus_thieves_complete_1", + "requires": { + "item": { + "itemID": "key_luthor", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Ich bin immer noch am suchen. Tschüss.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bucus_thieves_complete_1", + "message": "Wow, du hast den Schlüssel von Luthor wirklich bekommen? Ich denke, ich würde es dort nicht mehr heraus schaffen.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 100 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "bucus_thieves_complete_2" + } + ] + }, + { + "id": "bucus_thieves_complete_2", + "message": "Gut gemacht, Junge.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bucus_thieves_complete_3" + } + ] + }, + { + "id": "bucus_thieves_complete_3", + "message": "Also lass uns reden. Was wolltest du wissen?", + "replies": [ + { + "text": "Was weißt du über meinen Bruder Andor?", + "nextPhraseID": "bucus_umar_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_fallhaven_church.json b/AndorsTrail/res/raw-de/conversationlist_fallhaven_church.json new file mode 100644 index 000000000..664b0a582 --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_fallhaven_church.json @@ -0,0 +1,265 @@ +[ + { + "id": "chapelgoer", + "message": "Schatten, umgebe mich." + }, + { + "id": "thoronir_default", + "message": "Wärm dich beim Schatten, mein Junge.", + "replies": [ + { + "text": "Kannst du mir mehr über den Schatten erzählen?", + "nextPhraseID": "thoronir_shadow_1" + }, + { + "text": "Kannst du mir mehr über die Kirche erzählen?", + "nextPhraseID": "thoronir_church_1" + }, + { + "text": "Sind die Knochenmehltränke schon fertig?", + "nextPhraseID": "thoronir_trade_bonemeal", + "requires": { + "progress": "bonemeal:100" + } + } + ] + }, + { + "id": "thoronir_shadow_1", + "message": "Der Schatten beschützt uns vor den Gefahren der Nacht. Er hält uns unbeschadet und behütet uns, wenn wir schlafen.", + "replies": [ + { + "text": "Tharal schickt mich und wies mich an dir das Passwort 'Leuchten des Schattens' zu sagen.", + "nextPhraseID": "thoronir_tharal_select", + "requires": { + "progress": "bonemeal:30" + } + }, + { + "text": "Der Schatten sei mit dir.", + "nextPhraseID": "thoronir_default" + }, + { + "text": "Hört sich für mich unsinnig an.", + "nextPhraseID": "thoronir_default" + } + ] + }, + { + "id": "thoronir_church_1", + "message": "Das ist unsere Kapelle der Verehrung in Fallhaven. Unsere Gemeinde wendet sich an uns um Unterstützung zu erhalten.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thoronir_church_2" + } + ] + }, + { + "id": "thoronir_church_2", + "message": "Diese Kirche hat hunderten von Jahren standgehalten und wurde vor Grabjägern bewahrt.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thoronir_church_3" + } + ] + }, + { + "id": "thoronir_tharal_select", + "replies": [ + { + "nextPhraseID": "thoronir_trade_bonemeal", + "requires": { + "progress": "bonemeal:100" + } + }, + { + "nextPhraseID": "thoronir_tharal_1" + } + ] + }, + { + "id": "thoronir_tharal_1", + "message": "'Leuchten des Schattens' wirklich mein Junge. Also mein alter Freund Tharal im Dorf Crossglen schickt dich?", + "replies": [ + { + "text": "Was kannst du mir über Knochenmehl erzählen?", + "nextPhraseID": "thoronir_tharal_2" + } + ] + }, + { + "id": "thoronir_church_3", + "message": "Die Katakomben unter dem Kirchenschiff gehören zu den Überbleibseln vergangener Anführer. Unser großer König Luthor ist Gerüchten zufolge dort begraben.", + "replies": [ + { + "text": "War schon jemand in den Katakomben?", + "nextPhraseID": "thoronir_church_4", + "requires": { + "progress": "bucus:10" + } + }, + { + "text": "Da war noch etwas, über das ich reden wollte.", + "nextPhraseID": "thoronir_default" + } + ] + }, + { + "id": "thoronir_church_4", + "message": "Niemand ist es erlaubt in die Katakomben zu gehen, abgesehen von Athamyr, meinem Lehrling. Seit Jahren ist er der einzige, der jemals dort unten war.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 20 + } + ], + "replies": [ + { + "text": "Okay, vielleicht besuche ich ihn.", + "nextPhraseID": "thoronir_default" + } + ] + }, + { + "id": "thoronir_tharal_2", + "message": "Shhh, wir sollten nicht laut über die Verwendung von Knochenmehl reden. Wie du weißt, erliess Lord Geomyr ein Verbot auf jegliche Verwendung von Knochenmehl.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thoronir_tharal_3" + } + ] + }, + { + "id": "thoronir_tharal_3", + "message": "Als das Verbot kam, riskierte ich nicht welches zu behalten, darum habe ich alle meine Vorräte weggeworfen. Wenn ich es jetzt bedenke, war das ziemlich töricht.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thoronir_tharal_4" + } + ] + }, + { + "id": "thoronir_tharal_4", + "message": "Könntest du mir 5 Skelettknochen finden, die ich zum Anmischen von Knochenmehl verwenden kann? Das Knochenmehl ist sehr gut geeignet alte Wunden zu heilen.", + "replies": [ + { + "text": "Sicher, ich schaff das schon.", + "nextPhraseID": "thoronir_tharal_5" + }, + { + "text": "Ich habe die Knochen für dich.", + "nextPhraseID": "thoronir_tharal_complete", + "requires": { + "item": { + "itemID": "bone", + "quantity": 5, + "requireType": 0 + } + } + } + ] + }, + { + "id": "thoronir_tharal_5", + "message": "Vielen dank, bitte komm bald zurück. Ich hörte da wären einige Untote bei einem verlassenen Haus ein wenig nördlich von Fallhaven. Vielleicht kannst du dort Knochen finden?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 40 + } + ], + "replies": [ + { + "text": "Okay, ich werde es überprüfen.", + "nextPhraseID": "thoronir_default" + } + ] + }, + { + "id": "thoronir_tharal_complete", + "message": "Vielen dank, diese Knochen werden genügen. Jetzt kann ich anfangen, einige Knochenmehl Heiltränke für dich zu mischen.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 100 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "thoronir_complete_2" + } + ] + }, + { + "id": "thoronir_complete_2", + "message": "Gib mir zum Herstellen der Knochenmehltränke etwas Zeit. Es ist ein sehr starker Heiltrank. Komm in kürze wieder her." + }, + { + "id": "thoronir_trade_bonemeal", + "message": "Ja, die Knochenmehltränke sind fertig. Bitte verwende sie mit Bedacht und lass es die Wachen nicht sehen. Wir dürften es eigentlich nicht mehr verwenden.", + "replies": [ + { + "text": "Lass mich sehen, welche Tränke du schon gemacht hast.", + "nextPhraseID": "S" + }, + { + "text": "Da war noch etwas anderes, über das ich reden wollte.", + "nextPhraseID": "thoronir_default" + } + ] + }, + { + "id": "catacombguard", + "message": "Kehr um solange du noch kannst, Sterblicher. Das ist kein Ort für dich. Nur der Tod erwartet dich hier.", + "replies": [ + { + "text": "Schön, ich kehr um.", + "nextPhraseID": "X" + }, + { + "text": "Geh zur Seite, ich muss tiefer in die Katakomben hinein kommen.", + "nextPhraseID": "catacombguard1" + }, + { + "text": "Beim Schatten, du wirst mich nicht aufhalten.", + "nextPhraseID": "catacombguard1" + } + ] + }, + { + "id": "catacombguard1", + "message": "Neinnn, du kannst nicht vorbei!", + "replies": [ + { + "text": "Okay. Lass uns kämpfen.", + "nextPhraseID": "F" + } + ] + }, + { + "id": "luthor", + "message": "*zischen* Welcher Sterbliche stört meinen Schlaf?", + "replies": [ + { + "text": "Beim Schatten, was bist du?", + "nextPhraseID": "F" + }, + { + "text": "Immerhin, ein würdiger Kampf! Darauf habe ich gewartet.", + "nextPhraseID": "F" + }, + { + "text": "Na los, bringen wir es hinter uns.", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_fallhaven_drunk.json b/AndorsTrail/res/raw-de/conversationlist_fallhaven_drunk.json new file mode 100644 index 000000000..a906afb05 --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_fallhaven_drunk.json @@ -0,0 +1,219 @@ +[ + { + "id": "fallhaven_drunk", + "message": "Kein Problem. Nein mein Herr! Mache jetzt keinen Ärger mehr. Ich sitze jetzt hier draussen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_2" + } + ] + }, + { + "id": "fallhaven_drunk_2", + "message": "Warte, wer bist du noch? Bist du dieser Wachmann?", + "replies": [ + { + "text": "Ja", + "nextPhraseID": "fallhaven_drunk_3_1" + }, + { + "text": "Nein", + "nextPhraseID": "fallhaven_drunk_3_2" + } + ] + }, + { + "id": "fallhaven_drunk_3_1", + "message": "Oh, Herr. Ich mache jetzt keine Mühe mehr, schau? Ich sitze hier draussen, wie du gesagt hast, okay?", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_4" + } + ] + }, + { + "id": "fallhaven_drunk_3_2", + "message": "Oh gut. Dieser Wachmann hat mich aus der Schenke geworfen. Falls ich ihn nochmals sehe, zeige ich es ihm aber.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_4" + } + ] + }, + { + "id": "fallhaven_drunk_4", + "message": "Trink trink trink, trink noch mehr. Trink, trink .. Wie ging das nochmal?", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_5" + } + ] + }, + { + "id": "fallhaven_drunk_5", + "message": "Hast du was gesagt? Wo war ich? Ja, wir waren also in dieser Höhle.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_6" + } + ] + }, + { + "id": "fallhaven_drunk_6", + "message": "Oder war es doch ein Haus? Ich kann mich nicht erinnern.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_7" + } + ] + }, + { + "id": "fallhaven_drunk_7", + "message": "Nein nein, es war draussen! Jetzt erinnere ich mich.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_7_select" + } + ] + }, + { + "id": "fallhaven_drunk_7_select", + "replies": [ + { + "nextPhraseID": "fallhaven_drunk_11", + "requires": { + "progress": "fallhavendrunk:100" + } + }, + { + "nextPhraseID": "fallhaven_drunk_8" + } + ] + }, + { + "id": "fallhaven_drunk_8", + "message": "Das war als wir..\n\nHey, wo ist mein Met hin? Hast du es mir weggenommen? ", + "replies": [ + { + "text": "Ja", + "nextPhraseID": "fallhaven_drunk_9_1" + }, + { + "text": "Nein", + "nextPhraseID": "fallhaven_drunk_9_2" + } + ] + }, + { + "id": "fallhaven_drunk_9_1", + "message": "Also dann gib es mir zurück! Oder kauf mir ein anderes Met.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fallhavendrunk", + "value": 10 + } + ], + "replies": [ + { + "text": "Hier, nimm etwas Met.", + "nextPhraseID": "fallhaven_drunk_10", + "requires": { + "item": { + "itemID": "mead", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Okay, ich gehe dir etwas Met kaufen.", + "nextPhraseID": "X" + }, + { + "text": "Nein. Ich denke nicht, dass ich dir helfen sollte. Auf Wiedersehen.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_drunk_9_2", + "message": "Ich muss es wohl getrunken haben. Könntest du mir ein neues Met besorgen? ", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fallhavendrunk", + "value": 10 + } + ], + "replies": [ + { + "text": "Hier, nimm etwas Met.", + "nextPhraseID": "fallhaven_drunk_10", + "requires": { + "item": { + "itemID": "mead", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Okay, Ich gehe dir etwas Met kaufen.", + "nextPhraseID": "X" + }, + { + "text": "Nein. Ich denke nicht, dass ich dir helfen sollte. Auf Wiedersehen.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_drunk_10", + "message": "Oh, süßer Trank der Freude. Möge der SSSSchatten mir dir sein mein Junge. *macht große Augen*", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_11" + } + ] + }, + { + "id": "fallhaven_drunk_11", + "message": "*nimmt einen grossen Schluck vom Met*\n\nDas ist gutes Gesöff!", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_12" + } + ] + }, + { + "id": "fallhaven_drunk_12", + "message": "Jaaa, ich und Unnmir hatten gute Zeiten. Geh, frag in selber, er üblicherweise im Stall östlich von hier. Ich wundere mich *görps* wo der Schatz geblieben ist.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fallhavendrunk", + "value": 100 + } + ], + "replies": [ + { + "text": "Schatz? Ich bin dabei! Ich gehe sofort Unnmir suchen.", + "nextPhraseID": "X" + }, + { + "text": "Danke für die Geschichte. Auf Wiedersehen.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_fallhaven_gaela.json b/AndorsTrail/res/raw-de/conversationlist_fallhaven_gaela.json new file mode 100644 index 000000000..c8146cff9 --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_fallhaven_gaela.json @@ -0,0 +1,84 @@ +[ + { + "id": "gaela", + "replies": [ + { + "nextPhraseID": "gaela_r", + "requires": { + "progress": "andor:40" + } + }, + { + "nextPhraseID": "gaela_0" + } + ] + }, + { + "id": "gaela_r", + "message": "Hallo nochmal. I hoffe du findest was du suchst." + }, + { + "id": "gaela_0", + "message": "Flink ist meine Klinge. Giftig meine Zunge. Oder war es anders herum?", + "replies": [ + { + "text": "Es gibt hier in Fallhaven scheinbar eine Menge Diebe.", + "nextPhraseID": "gaela_1" + } + ] + }, + { + "id": "gaela_1", + "message": "Ja, wir Diebe sind hier stark Präsent.", + "replies": [ + { + "text": "Sonst noch was?", + "nextPhraseID": "gaela_2", + "requires": { + "progress": "andor:30" + } + } + ] + }, + { + "id": "gaela_2", + "message": "Ich hörte du hast Gruil, einem Diebesgenossen im Dorf Crossglen, geholfen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gaela_3" + } + ] + }, + { + "id": "gaela_3", + "message": "Es hat mich auch die Nachricht erreicht, dass du jemand suchst. Ich kann dir vielleicht helfen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gaela_4" + } + ] + }, + { + "id": "gaela_4", + "message": "Du solltest mit Bucus, im heruntergekommenen Haus etwas südwestlich von hier, reden. Sag ihm, du möchtest mehr über die Diebesgilde wissen.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 40 + } + ], + "replies": [ + { + "text": "Danke, ich werde mit ihm reden.", + "nextPhraseID": "gaela_5" + } + ] + }, + { + "id": "gaela_5", + "message": "Betrachte diesen Gefallen als Gegenleistung für deine Hilfe Gruil gegenüber." + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_fallhaven_larcal.json b/AndorsTrail/res/raw-de/conversationlist_fallhaven_larcal.json new file mode 100644 index 000000000..b61b44eaf --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_fallhaven_larcal.json @@ -0,0 +1,85 @@ +[ + { + "id": "larcal", + "message": "Ich habe keine Zeit für dich, Junge. Verschwinde.", + "replies": [ + { + "text": "Ich fand eine Notiz mit deinem Namen drauf, während ich nach dem Buch 'Calomyranische Geheimnisse' suchte.", + "nextPhraseID": "larcal_1", + "requires": { + "progress": "calomyran:20" + } + } + ] + }, + { + "id": "larcal_1", + "message": "Wie jetzt, was ist denn jetzt los? Willst du andeuten, ich wäre unten in Arcir's Keller gewesen?", + "replies": [ + { + "text": "N", + "nextPhraseID": "larcal_2" + } + ] + }, + { + "id": "larcal_2", + "message": "Na, möglicherweise war ich das. Das Buch gehört jedenfalls mir.", + "replies": [ + { + "text": "N", + "nextPhraseID": "larcal_3" + } + ] + }, + { + "id": "larcal_3", + "message": "Schau, lass uns das friedlich regeln. Du gehst weg und vergisst alles über das Buch und du darfst am Leben bleiben.", + "replies": [ + { + "text": "Also gut. Behalte dein Buch.", + "nextPhraseID": "larcal_4" + }, + { + "text": "Nein, du wirst mir das Buch geben.", + "nextPhraseID": "larcal_5" + } + ] + }, + { + "id": "larcal_4", + "message": "Guter Knabe, jetzt lauf weg." + }, + { + "id": "larcal_5", + "message": "Okay, jetzt fängst du an mich zu nerven, Junge. Verschwinde solange du noch kannst.", + "replies": [ + { + "text": "Also gut, ich gehe.", + "nextPhraseID": "X" + }, + { + "text": "Nein, dieses Buch gehört nicht dir!", + "nextPhraseID": "larcal_6" + } + ] + }, + { + "id": "larcal_6", + "message": "Du bist immer noch da? Also dann, wenn du das Buch so dringend brauchst, wirst du es mir wegnehmen müssen!", + "replies": [ + { + "text": "Na endlich, ein Kampf. Darauf habe ich gewartet!", + "nextPhraseID": "F" + }, + { + "text": "Ich habe gehofft, dass es nicht so weit kommen würde.", + "nextPhraseID": "F" + }, + { + "text": "Also gut, ich werde verschwinden.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_fallhaven_nocmar.json b/AndorsTrail/res/raw-de/conversationlist_fallhaven_nocmar.json new file mode 100644 index 000000000..0816360cd --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_fallhaven_nocmar.json @@ -0,0 +1,258 @@ +[ + { + "id": "nocmar", + "message": "Hallo, ich bin Nocmar.", + "replies": [ + { + "text": "Sieht so aus als wäre das hier die Schmiede. Hast du etwas zum handeln?", + "nextPhraseID": "nocmar_trade_select" + }, + { + "text": "Unnmir schickte mich.", + "nextPhraseID": "nocmar_quest_select", + "requires": { + "progress": "nocmar:10" + } + }, + { + "text": "Tschüss", + "nextPhraseID": "X" + } + ] + }, + { + "id": "nocmar_quest_select", + "replies": [ + { + "nextPhraseID": "nocmar_complete_5", + "requires": { + "progress": "nocmar:200" + } + }, + { + "nextPhraseID": "nocmar_continue", + "requires": { + "progress": "nocmar:20" + } + }, + { + "nextPhraseID": "nocmar_quest" + } + ] + }, + { + "id": "nocmar_trade_select", + "replies": [ + { + "nextPhraseID": "S", + "requires": { + "progress": "nocmar:200" + } + }, + { + "nextPhraseID": "nocmar_trade_1" + } + ] + }, + { + "id": "nocmar_trade_1", + "message": "Ich habe keine Gegenstände zu verkaufen. Ich hatte viele Sachen zum Verkauf, aber heutzutage ist es mir nicht erlaubt etwas zu verkaufen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_trade_2" + } + ] + }, + { + "id": "nocmar_trade_2", + "message": "Ich war einmal einer der besten Schmiede in Fallhaven. Dann verbot mir dieser Bastard Lord Geomyr die Benutzung von Herzstahl.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_trade_3" + } + ] + }, + { + "id": "nocmar_trade_3", + "message": "Durch einen Erlass von Lord Geomyr, ist es sogar niemand in Fallhaven auch nur erlaubt Herzstahlwaffen zu benutzen. Und schon gar nicht welche zu verkaufen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_trade_4" + } + ] + }, + { + "id": "nocmar_trade_4", + "message": "Darum muss ich jetzt die wenigen Herzstahlwaffen, die ich noch habe, verstecken. Und ich riskiere keinesfalls sie zu verkaufen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_trade_4_1" + } + ] + }, + { + "id": "nocmar_trade_4_1", + "message": "I habe das Herzstahlleuchten, jetzt wo Lord Geomyr ihn verboten hat, seit mehreren Jahren nicht gesehen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_trade_5" + } + ] + }, + { + "id": "nocmar_trade_5", + "message": "Leider kann ich dir keine meiner Waffen verkaufen." + }, + { + "id": "nocmar_quest", + "message": "Unnmir schickte dich, huh? Ich vermute, es muss dann wichtig sein.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nocmar", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_quest_1" + } + ] + }, + { + "id": "nocmar_quest_1", + "message": "Okay, diese alten Waffen haben, nachdem sie länger nicht mehr benutzt wurden, ihr inneres Leuchten verloren.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_quest_2" + } + ] + }, + { + "id": "nocmar_quest_2", + "message": "Um den Herzstahl erneut zum Leuchten zu bringen, brauchen wir einen Herzstein.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_quest_3" + } + ] + }, + { + "id": "nocmar_quest_3", + "message": "Vor Jahren, bekämpften wir die Lichs von Undertell. Ich habe keine Ahnung, ob sie den Ort immer noch heimsuchen.", + "replies": [ + { + "text": "Undertell? Was ist das?", + "nextPhraseID": "nocmar_quest_4" + } + ] + }, + { + "id": "nocmar_quest_4", + "message": "Undertell; die Gruben der verlorenen Seelen. Reise nach Süden und betrete die Höhle der Zwerge. Von dort folge dem schrecklichen Gestank.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_quest_5" + } + ] + }, + { + "id": "nocmar_quest_5", + "message": "Hüte dich vor den Lichs von Undertell, falls sie immer noch da sind. Diese Dinger können dich mit ihren Blicken allein töten." + }, + { + "id": "nocmar_continue", + "message": "Hast du schon einen Herzstein gefunden?", + "replies": [ + { + "text": "Ja, letztendlich habe ich einen gefunden.", + "nextPhraseID": "nocmar_complete", + "requires": { + "item": { + "itemID": "heartstone", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Kannst du mir die Geschichte nochmal erzählen?", + "nextPhraseID": "nocmar_quest_1" + }, + { + "text": "Nein, noch nicht.", + "nextPhraseID": "nocmar_continue_2" + } + ] + }, + { + "id": "nocmar_continue_2", + "message": "Bitte such weiter. Unnmir muss etwas Wichtiges mit dir vorhaben." + }, + { + "id": "nocmar_complete", + "message": "Beim Schatten! Du hast tatsächlich einen Herzstein gefunden. Ich dachte, ich würde diesen Tag nicht mehr erleben.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nocmar", + "value": 200 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_complete_2" + } + ] + }, + { + "id": "nocmar_complete_2", + "message": "Kannst du das Leuchten sehen? Es ist buchstäblich pulsierend.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_complete_3" + } + ] + }, + { + "id": "nocmar_complete_3", + "message": "Schnell. Lass uns die alten Herzstahlwaffen wieder zum Leuchten bringen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_complete_4" + } + ] + }, + { + "id": "nocmar_complete_4", + "message": "*Nocmar legt den Herzstein zwischen die Herzstahlwaffen*", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_complete_5" + } + ] + }, + { + "id": "nocmar_complete_5", + "message": "Kannst du es spüren? Der Herzstahl leuchtet wieder.", + "replies": [ + { + "text": "Lass mich sehen, welche Gegenstände du für mich hast.", + "nextPhraseID": "S" + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_fallhaven_oldman.json b/AndorsTrail/res/raw-de/conversationlist_fallhaven_oldman.json new file mode 100644 index 000000000..df0981cba --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_fallhaven_oldman.json @@ -0,0 +1,151 @@ +[ + { + "id": "fallhaven_oldman", + "replies": [ + { + "nextPhraseID": "fallhaven_oldman_complete_2", + "requires": { + "progress": "calomyran:100" + } + }, + { + "nextPhraseID": "fallhaven_oldman_continue", + "requires": { + "progress": "calomyran:10" + } + }, + { + "nextPhraseID": "fallhaven_oldman_1" + } + ] + }, + { + "id": "fallhaven_oldman_1", + "message": "Kannst du bitte einem alten Mann helfen?", + "replies": [ + { + "text": "Sicher, für was brauchst du Hilfe?", + "nextPhraseID": "fallhaven_oldman_2" + }, + { + "text": "Vielleicht. Reden wir über eine Art von Belohnung?", + "nextPhraseID": "fallhaven_oldman_2" + }, + { + "text": "Nein, ich helfe keinem Oldie wie dir. Tschüss.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_oldman_2", + "message": "Ich verlor kürzlich ein mir sehr wertvolles Buch.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_oldman_3" + } + ] + }, + { + "id": "fallhaven_oldman_3", + "message": "Ich weiß, dass ich es gestern noch hatte. Wie es scheint kann ich es jetzt nicht mehr finden.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_oldman_4" + } + ] + }, + { + "id": "fallhaven_oldman_4", + "message": "Ich verliere meine Sachen nie! Irgendjemand muss es gestohlen haben, das ist meine Vermutung.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_oldman_5" + } + ] + }, + { + "id": "fallhaven_oldman_5", + "message": "Würdest du bitte nach meinem Buch suchen? Es heißt 'Calomyranische Geheimnisse'.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_oldman_6" + } + ] + }, + { + "id": "fallhaven_oldman_6", + "message": "Ich habe keine Ahnung, wo es sein könnte. Kannst du Arcir fragen, er scheint sehr verliebt in seine Bücher zu sein. *zeigt zum Haus im Süden*", + "rewards": [ + { + "rewardType": 0, + "rewardID": "calomyran", + "value": 10 + } + ], + "replies": [ + { + "text": "Okay, ich werde Arcir fragen. Auf Wiedersehen.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_oldman_continue", + "message": "Wie geht die Suche nach meinem Buch vorwärts? Es heißt 'Calomyranische Geheimnisse'. Hast du mein Buch gefunden?", + "replies": [ + { + "text": "Ja, ich habe es.", + "nextPhraseID": "fallhaven_oldman_complete", + "requires": { + "item": { + "itemID": "calomyran_secrets", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Nein, ich habe es noch nicht gefunden.", + "nextPhraseID": "fallhaven_oldman_6" + }, + { + "text": "Kannst du mir bitte die Geschichte nochmal erzählen?", + "nextPhraseID": "fallhaven_oldman_2" + } + ] + }, + { + "id": "fallhaven_oldman_complete", + "message": "Mein Buch! Danke, vielen Dank! Wo war es? Nein, sag es nicht. Hier, nimm ein paar Münzen für deine Bemühungen.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "calomyran", + "value": 100 + }, + { + "rewardType": 1, + "rewardID": "gold51" + } + ], + "replies": [ + { + "text": "Danke. Auf Wiedersehen.", + "nextPhraseID": "X" + }, + { + "text": "Letztendlich ein paar Goldmünzen. Tschüss.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_oldman_complete_2", + "message": "Vielen vielen Dank, dass du mein Buch gefunden hast!" + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_fallhaven_south.json b/AndorsTrail/res/raw-de/conversationlist_fallhaven_south.json new file mode 100644 index 000000000..f2d37846e --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_fallhaven_south.json @@ -0,0 +1,52 @@ +[ + { + "id": "fallhaven_lumberjack", + "message": "Hallo, ich bin Jakrar.", + "replies": [ + { + "text": "Bist du ein Holzfäller?", + "nextPhraseID": "fallhaven_lumberjack_2" + } + ] + }, + { + "id": "fallhaven_lumberjack_2", + "message": "Ja, Ich bin Fallhaven's Holzfäller. Brauchst du irgend etwas aus feinstem Holz? Wahrscheinlich habe ich es." + }, + { + "id": "alaun", + "message": "Hallo. Ich bin Alaun. Wie kann ich dir helfen?", + "replies": [ + { + "text": "Hast du meinen Bruder Andor gesehen? Er sieht mir ähnlich.", + "nextPhraseID": "alaun_2" + } + ] + }, + { + "id": "alaun_2", + "message": "Du suchst nach deinem Bruder, sagst du? Sieht aus wie du? Hm.", + "replies": [ + { + "text": "N", + "nextPhraseID": "alaun_3" + } + ] + }, + { + "id": "alaun_3", + "message": "Nein, ich kann mich nicht daran erinnern, jemanden nach dieser Beschreibung gesehen zu haben. Vielleicht solltest du es im Dorf Crossglen westlich von hier probieren." + }, + { + "id": "fallhaven_farmer1", + "message": "Hallo. Bitte störe mich nicht, ich habe viel zu tun." + }, + { + "id": "fallhaven_farmer2", + "message": "Hallo. Könntest du mir bitte aus dem Weg gehen? Ich versuche zu arbeiten." + }, + { + "id": "khorand", + "message": "Hey du, denk nicht mal dran, eine von den Kisten auch nur anzufassen. Ich beobachte dich!" + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_fallhaven_tavern.json b/AndorsTrail/res/raw-de/conversationlist_fallhaven_tavern.json new file mode 100644 index 000000000..f7d848924 --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_fallhaven_tavern.json @@ -0,0 +1,107 @@ +[ + { + "id": "bela", + "message": "Willkommen in der Fallhaven Taverne. Setzt dich irgendwo.", + "replies": [ + { + "text": "Lass mich sehen, welche Speisen und Getränke es hier gibt.", + "nextPhraseID": "S" + }, + { + "text": "Gibt es freie Zimmer?", + "nextPhraseID": "bela_room_select" + } + ] + }, + { + "id": "bela_room_1", + "message": "Ein Zimmer kostet dich nur 10 Goldmünzen.", + "replies": [ + { + "text": "Kaufen [10 Goldmünzen]", + "nextPhraseID": "bela_room_2", + "requires": { + "item": { + "itemID": "gold", + "quantity": 10, + "requireType": 0 + } + } + }, + { + "text": "Nein danke.", + "nextPhraseID": "bela" + } + ] + }, + { + "id": "bela_room_2", + "message": "Danke. Nimm das Zimmer dort am Ende des Ganges.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fallhaventavern", + "value": 10 + } + ], + "replies": [ + { + "text": "Vielen dank. Da war noch etwas, über das ich reden wollte.", + "nextPhraseID": "bela" + }, + { + "text": "Danke, tschüss.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bela_room_3", + "message": "Ich hoffe, das Zimmer erfüllt deine Erwartungen. Es ist das letzte Zimmer dort am Ende des Ganges.", + "replies": [ + { + "text": "Vielen dank. Da war noch etwas, über das ich reden wollte.", + "nextPhraseID": "bela" + }, + { + "text": "Danke, tschüss.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bela_room_select", + "replies": [ + { + "nextPhraseID": "bela_room_3", + "requires": { + "progress": "fallhaventavern:10" + } + }, + { + "nextPhraseID": "bela_room_1" + } + ] + }, + { + "id": "ganos", + "message": "Du kommst mir irgendwie bekannt vor.", + "replies": [ + { + "text": "Hast du etwas zu verkaufen?", + "nextPhraseID": "S" + }, + { + "text": "Was weißt du über die Diebesgilde?", + "nextPhraseID": "ganos_1", + "requires": { + "progress": "andor:30" + } + } + ] + }, + { + "id": "ganos_1", + "message": "Diebesgilde? Wie sollte ich etwas wissen? Sehe ich für dich wie ein Dieb aus?! Hrmpf." + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_fallhaven_unnmir.json b/AndorsTrail/res/raw-de/conversationlist_fallhaven_unnmir.json new file mode 100644 index 000000000..e98fd82cb --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_fallhaven_unnmir.json @@ -0,0 +1,174 @@ +[ + { + "id": "unnmir", + "replies": [ + { + "nextPhraseID": "unnmir_r", + "requires": { + "progress": "nocmar:10" + } + }, + { + "nextPhraseID": "unnmir_0" + } + ] + }, + { + "id": "unnmir_r", + "message": "Hallo nochmal. Du solltest mit Nocmar reden.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_13" + } + ] + }, + { + "id": "unnmir_0", + "message": "Hallo.", + "replies": [ + { + "text": "Da war ein Betrunkener draußen vor der Schenke, der mir eine Geschichte über euch beide erzählt hat.", + "nextPhraseID": "unnmir_1", + "requires": { + "progress": "fallhavendrunk:100" + } + } + ] + }, + { + "id": "unnmir_1", + "message": "Dieser betrunkene alte Mann bei der Schenke hat dir seine Geschichte erzählt, nicht wahr?", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_2" + } + ] + }, + { + "id": "unnmir_2", + "message": "Die selbe alte Geschichte. Vor ein paar Jahren pflegten wir miteinander zu Reisen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_3" + } + ] + }, + { + "id": "unnmir_3", + "message": "Echte Abenteuer du weißt schon, mit Schwertern und Zaubersprüchen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_4" + } + ] + }, + { + "id": "unnmir_4", + "message": "Aber dann, nach einer Weile, hörten wir auf. Ich kann nicht einmal sagen warum, ich vermute wir wurden des Vagabundenlebens müde. Wir ließen uns hier in Fallhaven nieder.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_5" + } + ] + }, + { + "id": "unnmir_5", + "message": "Nette kleine Stadt hier. Viele Diebe streifen umher, aber die kümmern mich nicht.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_6" + } + ] + }, + { + "id": "unnmir_6", + "message": "Also wie ist deine Geschichte, Junge? Wie bist du nach Fallhaven gekommen?", + "replies": [ + { + "text": "Ich suche nach meinem Bruder.", + "nextPhraseID": "unnmir_7" + } + ] + }, + { + "id": "unnmir_7", + "message": "Ja ja, ich verstehe. Dein Bruder ist wahrscheinlich abgehauen um in irgendeiner Höhle ein Abenteuer zu erleben. *rollt mit seinen Augen*", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_8" + } + ] + }, + { + "id": "unnmir_8", + "message": "Oder vielleicht ist er in eine der größeren Städte im Norden gegangen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_9" + } + ] + }, + { + "id": "unnmir_9", + "message": "Ich kann es ihm nicht verübeln, dass er die Welt sehen will.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_10" + } + ] + }, + { + "id": "unnmir_10", + "message": "He, so nebenbei, versuchst du ein Abenteurer zu sein?", + "replies": [ + { + "text": "Ja", + "nextPhraseID": "unnmir_11" + }, + { + "text": "Nein, nicht wirklich.", + "nextPhraseID": "unnmir_12" + } + ] + }, + { + "id": "unnmir_11", + "message": "Gut, ich gebe dir einen Tipp, Junge. *kichert*. Geh zu Nocmar drüben auf der Westseite der Stadt. Sag ihm ich schicke dich.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nocmar", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_13" + } + ] + }, + { + "id": "unnmir_12", + "message": "Gute Einstellung. Abenteuer führen zu vielen Narben, wenn du verstehst was ich meine." + }, + { + "id": "unnmir_13", + "message": "Sein Haus ist etwas südwestlich der Schenke.", + "replies": [ + { + "text": "Danke, ich werde zu ihm gehen.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_fallhaven_unzel.json b/AndorsTrail/res/raw-de/conversationlist_fallhaven_unzel.json new file mode 100644 index 000000000..1d5a01c44 --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_fallhaven_unzel.json @@ -0,0 +1,326 @@ +[ + { + "id": "unzel_1", + "message": "Hallo. Ich bin Unzel.", + "replies": [ + { + "text": "Ist das dein Lager?", + "nextPhraseID": "unzel_2" + }, + { + "text": "Ich wurde von Vacor geschickt um dich zu töten.", + "nextPhraseID": "unzel_3", + "requires": { + "progress": "vacor:40" + } + } + ] + }, + { + "id": "unzel_2", + "message": "Ja, das ist mein Lager. Herrlicher Platz, nicht wahr?", + "replies": [ + { + "text": "Tschüss", + "nextPhraseID": "X" + } + ] + }, + { + "id": "unzel_3", + "message": "Vacor hat dich geschickt huh? Ich fürchte ich hätte wissen müssen, dass er früher oder später jemand schicken wird.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_4" + } + ] + }, + { + "id": "unzel_4", + "message": "Nun gut. Töte mich oder erlaube mir dir meine Seite der Geschichte zu erzählen.", + "replies": [ + { + "text": "Hah, ich werde dich mit Vergnügen töten!", + "nextPhraseID": "unzel_fight" + }, + { + "text": "Okay, ich werde mir deine Geschichte anhören.", + "nextPhraseID": "unzel_5" + } + ] + }, + { + "id": "unzel_fight", + "message": "Nun denn, lass uns kämpfen.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 53 + } + ], + "replies": [ + { + "text": "Auf in den Kampf!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "unzel_5", + "message": "Vielen Dank fürs zuhören.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_10" + } + ] + }, + { + "id": "unzel_10", + "message": "Vacor und ich reisten gewöhnlich miteinander, aber er begann von der Zauberei besessen zu werden.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_11" + } + ] + }, + { + "id": "unzel_11", + "message": "Er stellte sogar den Schatten in Frage. Ich wusste ich musste etwas tun, um ihn aufzuhalten!", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_12" + } + ] + }, + { + "id": "unzel_12", + "message": "Ich begann die Dinge die er vorhatte in Frage zu stellen, aber wollte immer nur weitermachen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_13" + } + ] + }, + { + "id": "unzel_13", + "message": "Nach einer Weile, wurde er vom Gedanken eines Spaltzaubers besessen. Er sagte er würde ihm unbeschränkte Macht gegen den Schatten geben.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_14" + } + ] + }, + { + "id": "unzel_14", + "message": "Darum konnte ich nur noch eines tun. Ich verließ ihn und musste ihn bei seinen Versuche den Spaltzauber zu erzeugen aufhalten.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_15" + } + ] + }, + { + "id": "unzel_15", + "message": "Ich schickte einige Freunde, um ihm den Zauberspruch wegzunehmen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_16_select" + } + ] + }, + { + "id": "unzel_16_select", + "replies": [ + { + "nextPhraseID": "unzel_16_2", + "requires": { + "progress": "vacor:50" + } + }, + { + "nextPhraseID": "unzel_16_1" + } + ] + }, + { + "id": "unzel_16_1", + "message": "So weit die Geschichte.", + "replies": [ + { + "text": "Ich tötete die 4 Banditen, die du zu Vacor geschickt hast.", + "nextPhraseID": "unzel_17" + } + ] + }, + { + "id": "unzel_16_2", + "message": "So weit die Geschichte.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_19" + } + ] + }, + { + "id": "unzel_17", + "message": "Was? Du hast meine Freunde getötet? Argh, ich fühle die Wut in mir aufsteigen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_18" + } + ] + }, + { + "id": "unzel_18", + "message": "Allerdings verstehe ich auch, dass das die alleinigen Machenschaften von Vacor sind. Ich stelle dich jetzt vor eine Entscheidung. Wähle weise.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_19" + } + ] + }, + { + "id": "unzel_19", + "message": "Entweder du wählst die Seite von Vacor und seinem Spaltzauber, oder die Seite des Schattens und hilfst mir, ihn los zu werden. Wem willst du helfen?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 50 + } + ], + "replies": [ + { + "text": "Ich will dir helfen. Der Schatten darf nicht gestört werden.", + "nextPhraseID": "unzel_20" + }, + { + "text": "Ich helfe Vacor.", + "nextPhraseID": "unzel_fight" + } + ] + }, + { + "id": "unzel_20", + "message": "Vielen Dank mein Freund. Wir werden den Schatten vor Vacor bewahren.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 51 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_21" + } + ] + }, + { + "id": "unzel_21", + "message": "Du solltest nochmals mit ihm über den Schatten sprechen." + }, + { + "id": "unzel_return_1", + "message": "Willkommen zurück. Hast du mit Vacor gesprochen?", + "replies": [ + { + "text": "Ja, ich habe ihn erledigt.", + "nextPhraseID": "unzel_30", + "requires": { + "item": { + "itemID": "ring_vacor", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Nein, noch nicht.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "unzel_30", + "message": "Du hast ihn getötet? Du hast meinen Dank verdient, Freund. Nun sind wir sicher vor Vacor's Spaltzauber. Hier, nimm diese Goldmünzen für deine Hilfe.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 61 + }, + { + "rewardType": 1, + "rewardID": "gold200" + } + ], + "replies": [ + { + "text": "Der Schatten sei mit dir.", + "nextPhraseID": "X" + }, + { + "text": "Vielen Dank.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "unzel_40", + "message": "Danke für deine Hilfe. Nun sind wir vor Vacor's Spaltzauber sicher.", + "replies": [ + { + "text": "Ich habe eine Nachricht von Kaverin in Remgard für dich.", + "nextPhraseID": "unzel_msg1", + "requires": { + "progress": "kaverin:25", + "item": { + "itemID": "kaverin_message", + "quantity": 1, + "requireType": 1 + } + } + } + ] + }, + { + "id": "unzel", + "replies": [ + { + "nextPhraseID": "unzel_msg_r0", + "requires": { + "progress": "kaverin:30" + } + }, + { + "nextPhraseID": "unzel_40", + "requires": { + "progress": "vacor:61" + } + }, + { + "nextPhraseID": "unzel_return_1", + "requires": { + "progress": "vacor:51" + } + }, + { + "nextPhraseID": "unzel_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_fallhaven_vacor.json b/AndorsTrail/res/raw-de/conversationlist_fallhaven_vacor.json new file mode 100644 index 000000000..87e4d5dfc --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_fallhaven_vacor.json @@ -0,0 +1,604 @@ +[ + { + "id": "vacor", + "replies": [ + { + "nextPhraseID": "vacor_return_complete0", + "requires": { + "progress": "vacor:60" + } + }, + { + "nextPhraseID": "vacor_return2", + "requires": { + "progress": "vacor:40" + } + }, + { + "nextPhraseID": "vacor_42", + "requires": { + "progress": "vacor:30" + } + }, + { + "nextPhraseID": "vacor_select1" + } + ] + }, + { + "id": "vacor_select1", + "replies": [ + { + "nextPhraseID": "vacor_return1", + "requires": { + "progress": "vacor:20" + } + }, + { + "nextPhraseID": "vacor_begin" + } + ] + }, + { + "id": "vacor_begin", + "message": "Hallo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_2" + } + ] + }, + { + "id": "vacor_2", + "message": "Was bist du, eine Art Abenteurer? Hm. Vielleicht kannst für mich nützlich sein.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_3" + } + ] + }, + { + "id": "vacor_3", + "message": "Willst du mir helfen?", + "replies": [ + { + "text": "Sicher, was für Hilfe brauchst du?", + "nextPhraseID": "vacor_4" + }, + { + "text": "Nein, warum sollte ich dir helfen?", + "nextPhraseID": "vacor_bah" + } + ] + }, + { + "id": "vacor_bah", + "message": "Bah, niedrige Kreatur. Ich wusste, ich hätte dich nicht fragen sollen. Jetzt verschwinde." + }, + { + "id": "vacor_4", + "message": "Vor einiger Zeit, arbeitete ich an einem Spaltzauber, über den ich gelesen hatte.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_5" + } + ] + }, + { + "id": "vacor_5", + "message": "Der Zauberspruch soll angeblich, sagen wir mal so, neue Möglichkeiten eröffnen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_6" + } + ] + }, + { + "id": "vacor_6", + "message": "Erm, ja, der Spaltzauber wird Dinge öffnen, ganz richtig. Ähm.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_7" + } + ] + }, + { + "id": "vacor_7", + "message": "Also war ich hart am arbeiten, um die letzten Teile zusammenzusetzen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_8" + } + ] + }, + { + "id": "vacor_8", + "message": "Dann plötzlich, kam eine Rotte von Schlägern hierher und begann mich zu terrorisieren.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_9" + } + ] + }, + { + "id": "vacor_9", + "message": "Sie sagten, sie wären Botschafter des Schattens und beharrten darauf, dass ich meine Zauberei unterlassen sollte.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_10" + } + ] + }, + { + "id": "vacor_10", + "message": "Lächerlich, nicht war? Ich war so kurz davor die Macht zu besitzen!", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_11" + } + ] + }, + { + "id": "vacor_11", + "message": "Oh, die Macht, die ich hätte haben können. Mein teurer Spaltzauber.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_12" + } + ] + }, + { + "id": "vacor_12", + "message": "Jedenfalls, ich war gerade dabei den letzten Teils des Spaltzaubers zu beenden, als diese Banditen kamen und mich ausraubten.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_13" + } + ] + }, + { + "id": "vacor_13", + "message": "Die Banditen klauten meine Notizen des Zauberspruchs und flüchteten bevor ich die Wache rufen konnten.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_14" + } + ] + }, + { + "id": "vacor_14", + "message": "Nach Jahren der Arbeit, kann ich mich scheinbar nicht mehr an die letzten Teile des Zauberspruchs erinnern.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_15" + } + ] + }, + { + "id": "vacor_15", + "message": "Kannst du mir helfen, sie zu finden? Dann kann ich letztendlich die Macht doch haben!", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_16" + } + ] + }, + { + "id": "vacor_16", + "message": "Für deine Beteiligung mir die Macht zu verschaffen wirst du natürlich angemessen belohnt werden.", + "replies": [ + { + "text": "Eine Belohnung? Ich bin dabei!", + "nextPhraseID": "vacor_17" + }, + { + "text": "Also gut. Ich werde dir helfen.", + "nextPhraseID": "vacor_17" + }, + { + "text": "Nein danke, das scheint etwas zu sein, in das ich lieber nicht verwickelt werden will.", + "nextPhraseID": "vacor_bah" + } + ] + }, + { + "id": "vacor_17", + "message": "Ich wusste ich könnte dir nicht trauen... Warte, was? Du hast wirklich ja gesagt? Ha, also gut.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_18" + } + ] + }, + { + "id": "vacor_18", + "message": "Okay, finde die 4 Teile meines Spaltzaubers, die die Banditen weggenommen haben, und bring die Teile zu mir.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_19" + } + ] + }, + { + "id": "vacor_19", + "message": "Es waren 4 Banditen und nachdem sie mich überfallen hatten verteilten sie sich im Süden von Fallhaven .", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_20" + } + ] + }, + { + "id": "vacor_20", + "message": "Du solltest in den Gegenden südlich von Fallhaven nach den 4 Banditen suchen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_21" + } + ] + }, + { + "id": "vacor_21", + "message": "Bitte beeile dich! Ich bin so begierig den Spalt zu öffnen.. äh, ich meine den Zauberspruch zu vollenden. Ist nichts falsches dabei, oder?" + }, + { + "id": "vacor_return1", + "message": "Hallo nochmal. Wie ist die Suche nach meinen verlorenen Teilen des Spaltzaubers verlaufen?", + "replies": [ + { + "text": "Ich habe alle Teile gefunden.", + "nextPhraseID": "vacor_40", + "requires": { + "item": { + "itemID": "vacor_spell", + "quantity": 4, + "requireType": 0 + } + } + }, + { + "text": "Was sollte ich nochmal machen?", + "nextPhraseID": "vacor_18" + }, + { + "text": "Kannst du mir die ganze Geschichte nochmal erzählen?", + "nextPhraseID": "vacor_4" + } + ] + }, + { + "id": "vacor_40", + "message": "Oh, du hast alle 4 Teile gefunden? Schnell, gib sie mir.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_41" + } + ] + }, + { + "id": "vacor_41", + "message": "Ja, das sind die Teile, die die Banditen mitgenommen haben.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_42" + } + ] + }, + { + "id": "vacor_42", + "message": "Jetzt sollte ich fähig sein den Spaltzauber zu vollenden und den Schattenspalt zu öffnen.. äh, ich meine neue Möglichkeiten zu eröffnen. Ja, das meinte ich.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_43" + } + ] + }, + { + "id": "vacor_43", + "message": "Das einzige Hindernis zwischen mir und der fortlaufenden Erforschung des Spaltzaubers, ist dieser blöde Kerl Unzel.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_44" + } + ] + }, + { + "id": "vacor_44", + "message": "Unzel war vor einiger Zeit mein Lehrling. Aber er begann mich mit seinen Fragen und seinem Vortrag über Moral zu nerven.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_45" + } + ] + }, + { + "id": "vacor_45", + "message": "Er sagte meine Zauberei würde den Willen des Schattens zerbrechen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_46" + } + ] + }, + { + "id": "vacor_46", + "message": "Bah, der Schatten. Was hat er jemals für MICH getan?!", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_47" + } + ] + }, + { + "id": "vacor_47", + "message": "Eines Tages werde ich meinen Spaltzauber ausführen und wir werden vom Schatten befreit sein.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_48" + } + ] + }, + { + "id": "vacor_48", + "message": "Jedenfalls habe ich das Gefühl, dass Unzel diese Banditen zu mir sandte. Wenn ich ihn nicht aufhalte, wird er vermutlich weitere schicken.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_49" + } + ] + }, + { + "id": "vacor_49", + "message": "Ich brauche dich um Unzel zu finden und ihn für mich zu töten. Er kann wahrscheinlich irgendwo südwestlich von Fallhaven gefunden werden.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_50" + } + ] + }, + { + "id": "vacor_50", + "message": "Bring mir seinen Siegelring als Beweis wenn du ihn getötet hast.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_51" + } + ] + }, + { + "id": "vacor_51", + "message": "Jetzt beeil dich, ich kann nicht mehr viel länger warten. Die Macht soll MIR gehören!" + }, + { + "id": "vacor_return2", + "message": "Hallo nochmal. Irgendein Fortschritt bisher?", + "replies": [ + { + "text": "Über Unzel...", + "nextPhraseID": "vacor_return2_2" + }, + { + "text": "Kannst du mir die Geschichte noch einmal erzählen?", + "nextPhraseID": "vacor_43" + } + ] + }, + { + "id": "vacor_return2_2", + "message": "Hast du Unzel schon für mich getötet? Bring mir seinen Siegelring wenn du ihn getötet hast.", + "replies": [ + { + "text": "Ich habe ihn erledigt. Hier ist sein Ring.", + "nextPhraseID": "vacor_60", + "requires": { + "item": { + "itemID": "ring_unzel", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Ich habe mir Unzel's Geschichte angehört und habe entschieden auf seine Seite zu wechseln. Der Schatten muss bewahrt werden.", + "nextPhraseID": "vacor_70", + "requires": { + "progress": "vacor:51" + } + } + ] + }, + { + "id": "vacor_60", + "message": "Ha ha, Unzel ist tot! Diese erbärmliche Kreatur ist weg!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 60 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_61" + } + ] + }, + { + "id": "vacor_61", + "message": "Ich kann Blut an deinen Schuhen sehen. Und ich habe dich sogar überzeugt vorher seine Lakaien zu töten.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_62" + } + ] + }, + { + "id": "vacor_62", + "message": "Das ist wirklich ein großer Tag. Bald werde ich die Macht haben!", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_63" + } + ] + }, + { + "id": "vacor_63", + "message": "Hier, nimm diese Goldmünzen für deine Hilfe.", + "rewards": [ + { + "rewardType": 1, + "rewardID": "gold200" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_64" + } + ] + }, + { + "id": "vacor_64", + "message": "Jetzt geh, ich muss Vorbereitungen treffen bevor ich den Spaltzauber ausführen kann." + }, + { + "id": "vacor_return_complete0", + "replies": [ + { + "nextPhraseID": "vacor_msg_16", + "requires": { + "progress": "kaverin:90" + } + }, + { + "nextPhraseID": "vacor_msg_9", + "requires": { + "progress": "kaverin:75" + } + }, + { + "nextPhraseID": "vacor_msg1", + "requires": { + "progress": "kaverin:60", + "item": { + "itemID": "kaverin_message", + "quantity": 1, + "requireType": 1 + } + } + }, + { + "nextPhraseID": "vacor_return_complete" + } + ] + }, + { + "id": "vacor_return_complete", + "message": "Hallo nochmal, mein Freund der Attentäter. Bald werde ich den Spaltzauber fertig haben." + }, + { + "id": "vacor_70", + "message": "Was? Er hat dir seine Geschichte erzählt? Du hast sie ihm tatsächlich abgenommen?", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_71" + } + ] + }, + { + "id": "vacor_71", + "message": "Ich gebe dir noch eine Chance. Entweder du tötest Unzel für mich und ich werde dich stattlich belohnen, oder du musst mit mir kämpfen.", + "replies": [ + { + "text": "Nein. Du musst aufgehalten werden.", + "nextPhraseID": "vacor_72" + }, + { + "text": "Okay, ich werde noch einmal darüber nachdenken.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "vacor_72", + "message": "Bah, niedrige Kreatur. Ich wusste ich hätte dir nicht trauen sollen. Jetzt wirst du sterben zusammen mit deinem heißgeliebten Schatten.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 54 + } + ], + "replies": [ + { + "text": "Für den Schatten!", + "nextPhraseID": "F" + }, + { + "text": "Du musst aufgehalten werden.", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_fallhaven_warden.json b/AndorsTrail/res/raw-de/conversationlist_fallhaven_warden.json new file mode 100644 index 000000000..21e3957d2 --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_fallhaven_warden.json @@ -0,0 +1,405 @@ +[ + { + "id": "fallhaven_warden", + "message": "Erkläre dein Vorhaben.", + "replies": [ + { + "text": "Wer ist dieser Gefangene?", + "nextPhraseID": "warden_prisoner_1" + }, + { + "text": "Ich hörte, dass du Met magst.", + "nextPhraseID": "fallhaven_warden_1", + "requires": { + "progress": "farrik:20" + } + }, + { + "text": "Die Diebe planen, ihren Freund zu befreien.", + "nextPhraseID": "fallhaven_warden_20", + "requires": { + "progress": "farrik:30" + } + } + ] + }, + { + "id": "warden_prisoner_1", + "message": "Dieser Dieb? Er wurde auf frischer Tat ertappt. Einbrechen wollte er. Er versuchte hinunter in die Katakomben der Kirche von Fallhaven zu gelangen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "warden_prisoner_2" + } + ] + }, + { + "id": "warden_prisoner_2", + "message": "Glücklicherweise konnten wir ihn festnehmen, bevor er nach unten gelangen konnte. Nun wird er für alle anderen Diebe als Exempel dienen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "warden_prisoner_3" + } + ] + }, + { + "id": "warden_prisoner_3", + "message": "Verdammte Diebe. Es muss hier irgendwo ein Nest von ihnen geben. Wenn ich nur herausfinden könnte, wo sie sich verstecken." + }, + { + "id": "fallhaven_warden_1", + "message": "Met? Oh.. nein, Ich mach das nicht mehr. Wer hat dir das erzählt?", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_2" + } + ] + }, + { + "id": "fallhaven_warden_2", + "message": "Ich habe vor Jahren damit aufgehört.", + "replies": [ + { + "text": "Klingt nach einem guten Vorsatz. Viel Glück dabei, damit weiterzumachen.", + "nextPhraseID": "X" + }, + { + "text": "Nicht mal ein kleines bisschen?", + "nextPhraseID": "fallhaven_warden_3" + } + ] + }, + { + "id": "fallhaven_warden_3", + "message": "Hm. *räuspert sich* Ich sollte wirklich nicht.", + "replies": [ + { + "text": "Ich habe welchen dabei, wenn du ein Schlückchen willst.", + "nextPhraseID": "fallhaven_warden_4", + "requires": { + "progress": "farrik:25", + "item": { + "itemID": "sleepingmead", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Ok, auf Wiedersehen", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_warden_4", + "message": "Oh, süßes Getränk der Freude. Ich sollte das allerdings nicht trinken, während ich Dienst habe.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 32 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_5" + } + ] + }, + { + "id": "fallhaven_warden_5", + "message": "Ich könnte für das Trinken im Dienst bestraft werden. Ich denke nicht, dass ich es im Augenblick wagen sollte.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_6" + } + ] + }, + { + "id": "fallhaven_warden_6", + "message": "Danke aber für das Getränk, ich werde es später genießen, wenn ich morgen nach Hause gekommen bin.", + "replies": [ + { + "text": "Du bist willkommen. Tschüss.", + "nextPhraseID": "X" + }, + { + "text": "Was wäre, wenn jemand dir die Strafe bezahlen würde?", + "nextPhraseID": "fallhaven_warden_7" + } + ] + }, + { + "id": "fallhaven_warden_7", + "message": "Oh, das klingt ein bisschen fragwürdig. Ich bezweifle stark, dass jemand hier die 450 Goldmünzen aufbringen könnte. Außerdem würde ich ein bisschen mehr als das brauchen, um dies zu riskieren.", + "replies": [ + { + "text": "Ich habe gerade 500 Goldmünzen dabei, die kannst du haben.", + "nextPhraseID": "fallhaven_warden_9", + "requires": { + "item": { + "itemID": "gold", + "quantity": 500, + "requireType": 0 + } + } + }, + { + "text": "Du weißt, du willst den Met, richtig?", + "nextPhraseID": "fallhaven_warden_8" + }, + { + "text": "Ja, ich stimme dir zu. Das fängt wirklich an, sich sehr fragwürdig anzuhören. Tschüss.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_warden_8", + "message": "Oh sicher. Jetzt da du es sagst. Es würde sicher gut sein.", + "replies": [ + { + "text": "Was wäre, wenn ich dir, sagen wir, 400 Goldmünzen zahle. Würde das deiner Beunruhigung, den Trunk jetzt zu genießen, genug entgegenwirken?", + "nextPhraseID": "fallhaven_warden_9", + "requires": { + "item": { + "itemID": "gold", + "quantity": 400, + "requireType": 0 + } + } + }, + { + "text": "Das fängt an, für mich zu fragwürdig zu klingen. Ich überlasse dich deiner Pflicht, tschüss.", + "nextPhraseID": "X" + }, + { + "text": "Ich mache mich auf, die Goldmünzen für dich aufzutreiben. Tschüss.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_warden_9", + "message": "Wow, so viele Goldmünzen? Ich bin sicher, ich könnte sogar damit davonkommen, ohne bestraft zu werden. Dann könnte ich die Goldmünzen UND einen schönen Met gleichzeitig haben.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 60 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_10" + } + ] + }, + { + "id": "fallhaven_warden_10", + "message": "Ich danke dir, Junge, du bist wirklich nett. Nun geh, damit ich mein Getränk genießen kann." + }, + { + "id": "fallhaven_warden_select_1", + "replies": [ + { + "nextPhraseID": "fallhaven_warden_11", + "requires": { + "progress": "farrik:60" + } + }, + { + "nextPhraseID": "fallhaven_warden_35", + "requires": { + "progress": "farrik:90" + } + }, + { + "nextPhraseID": "fallhaven_warden_select_2" + } + ] + }, + { + "id": "fallhaven_warden_select_2", + "replies": [ + { + "nextPhraseID": "fallhaven_warden_30", + "requires": { + "progress": "farrik:50" + } + }, + { + "nextPhraseID": "fallhaven_warden_12", + "requires": { + "progress": "farrik:32" + } + }, + { + "nextPhraseID": "fallhaven_warden" + } + ] + }, + { + "id": "fallhaven_warden_11", + "message": "Hallo nochmal, Junge. Danke für das Getränk vorhin. Ich habe alles auf einmal getrunken. Ich bin mir sicher, es hat anders als vorher geschmeckt, aber ich vermute, es liegt daran, dass ich daran schon nicht mehr gewöhnt bin.", + "replies": [ + { + "text": "Wer ist dieser Gefangene?", + "nextPhraseID": "warden_prisoner_1" + } + ] + }, + { + "id": "fallhaven_warden_12", + "message": "Hallo nochmal, Junge. Danke für das Getränk vorhin. Ich habe es noch immer nicht getrunken.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_5" + } + ] + }, + { + "id": "fallhaven_warden_20", + "message": "Wirklich, sie würden es wagen, gegen die Wache in Fallhaven vorzugehen? Hast du irgendwelche Details ihres Plans?", + "replies": [ + { + "text": "Ich hörte, sie planen seine Flucht heute Nacht", + "nextPhraseID": "fallhaven_warden_21" + }, + { + "text": "Nein, ich habe mir bloß einen Scherz erlaubt. Mach dir nichts daraus.", + "nextPhraseID": "X" + }, + { + "text": "Wenn ich es recht bedenke, sollte ich die Diebesgilde besser nicht enttäuschen. Vergiss, dass ich etwas gesagt habe.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_warden_21", + "message": "Heute Nacht? Danke für diese Information. Wir werden sicherstellen, dass die Sicherheit heute Nacht erhöht wird, aber auf eine Art, dass sie davon nichts mitbekommen werden.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_22" + } + ] + }, + { + "id": "fallhaven_warden_22", + "message": "Sobald sie sich dafür entscheiden, ihn zu befreien, werden wir vorbereitet sein. Vielleicht können wir mehr von diesen schmutzigen Dieben verhaften.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_23" + } + ] + }, + { + "id": "fallhaven_warden_23", + "message": "Danke nochmal für die Benachrichtigung. Auch wenn ich nicht genau weiß, wie du das herausbekommen konntest, bin ich sehr froh, dass du es mir gesagt hast.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_24" + } + ] + }, + { + "id": "fallhaven_warden_24", + "message": "Ich möchte dass du noch einen draufsetzt und ihnen sagst, dass die Zelle heute Nacht nur schwach bewacht wird. Aber stattdessen werden wir die Sicherheit erhöhen. Auf diese Art können wir wirklich auf sie gefasst sein.", + "replies": [ + { + "text": "Sicher kann ich das tun.", + "nextPhraseID": "fallhaven_warden_25" + } + ] + }, + { + "id": "fallhaven_warden_25", + "message": "Gut. Sag mir Bescheid, sobald du es ihnen gesagt hast.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 50 + } + ], + "replies": [ + { + "text": "Werde ich machen.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_warden_30", + "message": "Hallo nochmal, mein Freund. Hast du diesen Dieben erzählt, dass wir heute Nacht die Sicherheit verringern?", + "replies": [ + { + "text": "Ja, sie sind auf nichts gefasst.", + "nextPhraseID": "fallhaven_warden_31" + }, + { + "text": "Nein, noch nicht. Ich arbeite daran.", + "nextPhraseID": "fallhaven_warden_25" + } + ] + }, + { + "id": "fallhaven_warden_31", + "message": "Großartig. Danke für deine Hilfe. Hier, nimm diese Münzen als ein Zeichen unserer Anerkennung.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 90 + }, + { + "rewardType": 1, + "rewardID": "gold200" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_36" + } + ] + }, + { + "id": "fallhaven_warden_35", + "message": "Hallo nochmal, mein Freund. Danke für deine Hilfe mit diesen Dieben neulich.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_36" + } + ] + }, + { + "id": "fallhaven_warden_36", + "message": "Ich werde dafür sorgen, dass man den anderen Wachen erzählt, wie du uns hier in Fallhaven geholfen hast.", + "replies": [ + { + "text": "Ich danke dir. Auf Wiedersehen.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_farrik.json b/AndorsTrail/res/raw-de/conversationlist_farrik.json new file mode 100644 index 000000000..2db9b75f4 --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_farrik.json @@ -0,0 +1,401 @@ +[ + { + "id": "farrik_1", + "message": "Hallo. I habe gehört, dass du den Schlüssel von Luthor für uns gefunden hast. Gute Arbeit, er wird uns wirklich nützlich sein.", + "replies": [ + { + "text": "Wer bist du?", + "nextPhraseID": "farrik_2" + }, + { + "text": "Was kannst du mir über die Diebesgilde erzählen?", + "nextPhraseID": "farrik_4" + } + ] + }, + { + "id": "farrik_2", + "message": "Ich bin Farrik, Umars Bruder.", + "replies": [ + { + "text": "Was machst du hier?", + "nextPhraseID": "farrik_3" + }, + { + "text": "Was kannst du mir über die Diebesgilde erzählen?", + "nextPhraseID": "farrik_4" + } + ] + }, + { + "id": "farrik_3", + "message": "Ich bin vor allem für den Handel mit anderen Gilden zuständig und habe ein Auge darauf, was die Diebe brauchen, um so effektiv wie möglich zu sein.", + "replies": [ + { + "text": "Was kannst du mir über die Diebesgilde erzählen?", + "nextPhraseID": "farrik_4" + } + ] + }, + { + "id": "farrik_4", + "message": "Wir versuchen so stark wie möglich zueinander zu halten und helfen unseren Kameraden so gut es nur geht.", + "replies": [ + { + "text": "Gibt es irgendwelche Neuigkeiten?", + "nextPhraseID": "farrik_5" + } + ] + }, + { + "id": "farrik_5", + "message": "Nun, da gab es etwas vor ein paar Wochen. Eines unserer Gildenmitglieder wurde wegen einem Einbruch inhaftiert.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_6" + } + ] + }, + { + "id": "farrik_6", + "message": "Die Wache von Fallhaven nimmt seit kurzem großen Anstoß an uns. Wahrscheinlich, weil wir auf unseren jüngsten Missionen sehr erfolgreich waren.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_7" + } + ] + }, + { + "id": "farrik_7", + "message": "Die Wachen haben ihre Sicherheitsmaßnahmen in letzter Zeit verschärft, was zur Verhaftung eines unserer Mitglieder führte.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_8" + } + ] + }, + { + "id": "farrik_8", + "message": "Er wird zur Zeit im Gefängnis von Fallhaven festgehalten und wartet auf seine bevorstehende Verlegung nach Feygard.", + "replies": [ + { + "text": "Was hat er gemacht?", + "nextPhraseID": "farrik_9" + } + ] + }, + { + "id": "farrik_9", + "message": "Oh, nichts schlimmes. Er versuchte in die Katakomben der Kirche von Fallhaven einzubrechen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_10" + } + ] + }, + { + "id": "farrik_10", + "message": "Aber nun, da du uns bei dieser Mission geholfen hast, schätze ich, dass wir dort nicht mehr hingehen müssen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_11" + } + ] + }, + { + "id": "farrik_11", + "message": "Ich vermute, ich kann dir ein Geheimnis anvertrauen. Wir planen eine Mission in dieser Nacht, um ihn aus dem Gefängnis zu befreien.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 10 + } + ], + "replies": [ + { + "text": "Diese Wachen scheinen wirklich lästig zu sein.", + "nextPhraseID": "farrik_13" + }, + { + "text": "Naja, wenn es ihm nicht erlaubt war dort hinunter zu gehen, dann hatten die Wachen doch Recht damit, ihn zu verhaften.", + "nextPhraseID": "farrik_12" + } + ] + }, + { + "id": "farrik_12", + "message": "Ja, vermutlich. Aber der Gilde wegen hätten wir unseren Freund lieber frei als gefangen.", + "replies": [ + { + "text": "Vielleicht sollte ich den Wachen erzählen, dass ihr vorhabt, ihn zu befreien?", + "nextPhraseID": "farrik_15" + }, + { + "text": "Keine Sorge, euer geheimer Plan, ihn zu befreien, ist bei mir sicher.", + "nextPhraseID": "farrik_14" + }, + { + "text": "[Lüge] Keine Sorge, euer geheimer Plan, ihn zu befreien, ist bei mir sicher.", + "nextPhraseID": "farrik_14" + } + ] + }, + { + "id": "farrik_13", + "message": "Oh ja, das sind sie. Die Allgemeinheit kann sie auch nicht leiden, das empfinden nicht nur wir in der Diebesgilde so.", + "replies": [ + { + "text": "Gibt es etwas, womit ich euch gegen diese lästigen Wachen helfen kann?", + "nextPhraseID": "farrik_16" + } + ] + }, + { + "id": "farrik_14", + "message": "Vielen Dank. Nun geh bitte." + }, + { + "id": "farrik_15", + "message": "Wie du meinst, sie würden dir sowieso nicht glauben.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 30 + } + ] + }, + { + "id": "farrik_16", + "message": "Bist du sicher, dass du die Wachen verärgern möchtest? Fall sie bemerken, dass du daran beteiligt bist, könntest du in große Schwierigkeiten geraten.", + "replies": [ + { + "text": "Kein Problem, ich kann auf mich aufpassen!", + "nextPhraseID": "farrik_18" + }, + { + "text": "Dafür könnte es später eine Belohnung geben. Ich bin dabei.", + "nextPhraseID": "farrik_18" + }, + { + "text": "Wenn ich es mir recht überlege, sollte ich mich aus der Sache raushalten.", + "nextPhraseID": "farrik_17" + } + ] + }, + { + "id": "farrik_17", + "message": "Sicher, es liegt an dir.", + "replies": [ + { + "text": "Viel Glück auf deiner Mission.", + "nextPhraseID": "farrik_14" + }, + { + "text": "Vielleicht sollte ich der Wache erzählen, dass ihr vorhabt, ihn zu befreien?", + "nextPhraseID": "farrik_15" + } + ] + }, + { + "id": "farrik_18", + "message": "Gut.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_19" + } + ] + }, + { + "id": "farrik_19", + "message": "Ok, hier ist der Plan. Der Kommandant der Wache hat ein kleines Alkoholproblem.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_20" + } + ] + }, + { + "id": "farrik_20", + "message": "Falls wir ihm den Met, den wir vorbereitet haben, in die Hände spielen würden, dann könnten wir in der Lage sein, unseren Freund in der Nacht, während der Kommandant seinen Rausch ausschläft, zu befreien.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_20a" + } + ] + }, + { + "id": "farrik_20a", + "message": "Unser Koch kann dir ein speziell zubereiteten Met herstellen, das ihn außer Gefecht setzen wird.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_21" + } + ] + }, + { + "id": "farrik_21", + "message": "Es wird wahrscheinlich nötig sein, ihn zu überzeugen, bei der Pflicht zu trinken. Falls das nicht klappt, könnte er vielleicht stattdessen bestochen werden.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_22" + } + ] + }, + { + "id": "farrik_22", + "message": "Wie klingt das für dich? Denkst du, du schaffst das?", + "replies": [ + { + "text": "Sicher, klingt leicht!", + "nextPhraseID": "farrik_23" + }, + { + "text": "Klingt ein bisschen gefährlich, aber ich denke, ich werde es versuchen.", + "nextPhraseID": "farrik_23" + }, + { + "text": "Nein, das hört sich mittlerweile wirklich langsam nach einer schlechten Idee an.", + "nextPhraseID": "farrik_17" + } + ] + }, + { + "id": "farrik_23", + "message": "Gut. Erstatte mir Bericht, sobald du es geschafft hast, dem Kommandanten den speziellen Met zu verabreichen.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 20 + } + ], + "replies": [ + { + "text": "Werde ich tun", + "nextPhraseID": "farrik_14" + } + ] + }, + { + "id": "farrik_return_1", + "message": "Sei gegrüßt, mein Freund. Wie lief deine Mission, den Kommandanten betrunken zu machen?", + "replies": [ + { + "text": "Ich bin noch nicht fertig, aber ich arbeite dran.", + "nextPhraseID": "farrik_23" + }, + { + "text": "[Lüge] Es ist geschafft. Er sollte heute Nacht kein Problem sein.", + "nextPhraseID": "farrik_26", + "requires": { + "progress": "farrik:50" + } + }, + { + "text": "Es ist geschafft. Er sollte heute Nacht kein Problem sein.", + "nextPhraseID": "farrik_24", + "requires": { + "progress": "farrik:60" + } + } + ] + }, + { + "id": "farrik_select_1", + "replies": [ + { + "nextPhraseID": "farrik_return_2", + "requires": { + "progress": "farrik:70" + } + }, + { + "nextPhraseID": "farrik_return_2", + "requires": { + "progress": "farrik:80" + } + }, + { + "nextPhraseID": "farrik_select_2" + } + ] + }, + { + "id": "farrik_select_2", + "replies": [ + { + "nextPhraseID": "farrik_return_1", + "requires": { + "progress": "farrik:20" + } + }, + { + "nextPhraseID": "farrik_1" + } + ] + }, + { + "id": "farrik_24", + "message": "Das sind gute Nachrichten! Nun sollte es uns möglich sein, unseren Freund heute Nacht aus dem Gefängnis zu befreien.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 70 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_25" + } + ] + }, + { + "id": "farrik_25", + "message": "Ich danke dir für deine Hilfe, mein Freund. Nimm diese Münzen als Zeichen unserer Anerkennung.", + "rewards": [ + { + "rewardType": 1, + "rewardID": "gold200" + } + ], + "replies": [ + { + "text": "Danke sehr. Tschüss.", + "nextPhraseID": "X" + }, + { + "text": "Endlich ein paar Goldmünzen.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "farrik_return_2", + "message": "Danke für deine Hilfe mit dem Kommandanten der Wache neulich." + }, + { + "id": "farrik_26", + "message": "Oh, du hast es geschafft? Gut gemacht. Du hast meinen Dank, mein Freund.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 80 + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_flagstone.json b/AndorsTrail/res/raw-de/conversationlist_flagstone.json new file mode 100644 index 000000000..2695e4186 --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_flagstone.json @@ -0,0 +1,586 @@ +[ + { + "id": "zombie1", + "message": "Frischfleisch!", + "replies": [ + { + "text": "Beim Schatten, ich werde dich erschlagen.", + "nextPhraseID": "F" + }, + { + "text": "Bah, was bist du? Und was ist das für ein Geruch?", + "nextPhraseID": "F" + } + ] + }, + { + "id": "prisoner1", + "message": "Neiiin, ich werde nicht wieder gefangen sein!", + "replies": [ + { + "text": "Aber ich bin nicht...", + "nextPhraseID": "F" + } + ] + }, + { + "id": "prisoner2", + "message": "Aaaa! Wer ist da? Ich werde nie wieder unterjocht!", + "replies": [ + { + "text": "Beruhige dich, ich wollte nur...", + "nextPhraseID": "F" + } + ] + }, + { + "id": "flagstone_guard0", + "message": "Ah, ein anderer Sterblicher. Bereite dich darauf vor, Teil meiner Armee von Untoten zu werden!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "flagstone", + "value": 31 + } + ], + "replies": [ + { + "text": "Der Schatten soll dich nehmen.", + "nextPhraseID": "F" + }, + { + "text": "Mach dich bereit, ein weiteres Mal zu sterben.", + "nextPhraseID": "F" + } + ] + }, + { + "id": "flagstone_guard1", + "message": "Stirb, Sterblicher!", + "replies": [ + { + "text": "Der Schatten soll dich nehmen.", + "nextPhraseID": "F" + }, + { + "text": "Bereite dich vor, meine Klinge zu spüren.", + "nextPhraseID": "F" + } + ] + }, + { + "id": "flagstone_guard2", + "message": "Was? Ein Sterblicher, den ich noch nicht umgebracht habe?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "flagstone", + "value": 50 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_guard2_2" + } + ] + }, + { + "id": "flagstone_guard2_2", + "message": "Du scheinst schmackhaft und weich zu sein, willst du Teil des Festessens sein?", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_guard2_3" + } + ] + }, + { + "id": "flagstone_guard2_3", + "message": "Ja, ich denke, du wirst. Meine Untotenhorde wird sich weit über Flagstone hinaus ausbreiten, wenn ich mit dir fertig bin.", + "replies": [ + { + "text": "Beim Schatten, du musst aufgehalten werden!", + "nextPhraseID": "F" + }, + { + "text": "Nein! Dieses Land muss vor den Untoten beschützt werden!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "flagstone_sentry", + "replies": [ + { + "nextPhraseID": "flagstone_sentry_return4", + "requires": { + "progress": "flagstone:60" + } + }, + { + "nextPhraseID": "flagstone_sentry_return3", + "requires": { + "progress": "flagstone:40" + } + }, + { + "nextPhraseID": "flagstone_sentry_select0" + } + ] + }, + { + "id": "flagstone_sentry_select0", + "replies": [ + { + "nextPhraseID": "flagstone_sentry_return2", + "requires": { + "progress": "flagstone:30" + } + }, + { + "nextPhraseID": "flagstone_sentry_return1", + "requires": { + "progress": "flagstone:10" + } + }, + { + "nextPhraseID": "flagstone_sentry_1" + } + ] + }, + { + "id": "flagstone_sentry_1", + "message": "Halt! Wer ist da? Niemandem ist es erlaubt, sich Flagstone zu nähern.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_2" + } + ] + }, + { + "id": "flagstone_sentry_2", + "message": "Du solltest umkehren, solange du noch kannst.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_3" + } + ] + }, + { + "id": "flagstone_sentry_3", + "message": "Flagstone wurde von den Untoten überrannt, und ich stehe hier Wache, um sicherzustellen, dass kein Untoter entfliehen kann.", + "replies": [ + { + "text": "Kannst du mir die Geschichte von Flagstone erzählen?", + "nextPhraseID": "flagstone_sentry_4" + } + ] + }, + { + "id": "flagstone_sentry_4", + "message": "Flagstone war als Gefängnislager für weggelaufene Arbeiter gedacht, während im Mount Galmore gegraben wurde.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_5" + } + ] + }, + { + "id": "flagstone_sentry_5", + "message": "Aber als dort der Abbau aufhörte, verlor es seinen Zweck.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_6" + } + ] + }, + { + "id": "flagstone_sentry_6", + "message": "Der Lord zu dieser Zeit sorgte sich nicht besonders viel um die Häftlinge, die schon in Flagstone waren und so ließ er sie dort.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_7" + } + ] + }, + { + "id": "flagstone_sentry_7", + "message": "Andererseits nahm der Leiter des Lagers seine Pflicht sehr genau und ließ Flagstone genauso weiterlaufen, wie es war, als im Mount Galmore noch gegraben wurde.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_8" + } + ] + }, + { + "id": "flagstone_sentry_8", + "message": "Viele Jahre lang achtete niemand auf Flagstone, abgesehen von gelegentlichen Berichten Reisender über grausame Schreie aus der Nähe des Lagers.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_9" + } + ] + }, + { + "id": "flagstone_sentry_9", + "message": "Kürzlich änderte sich das und nun tauchen die Untoten in großen Zahlen auf.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_10" + } + ] + }, + { + "id": "flagstone_sentry_10", + "message": "So weit die Geschichte. Ich muss die Straße vor den Untoten beschützen, so dass sie sich nicht über die Grenzen Flagstones hinaus ausbreiten können.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_11" + } + ] + }, + { + "id": "flagstone_sentry_11", + "message": "So, ich würde dir raten du gehst, wenn du nicht von ihnen überrannt werden willst.", + "replies": [ + { + "text": "Kann ich mir die Ruinen von Flagstone einmal ansehen?", + "nextPhraseID": "flagstone_sentry_12" + }, + { + "text": "Ja, ich sollte verschwinden.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "flagstone_sentry_12", + "message": "Bist du wirklich sicher, hinein gehen zu wollen? Gut, in Ordnung, von mir aus.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_13" + } + ] + }, + { + "id": "flagstone_sentry_13", + "message": "Ich werde dich nicht aufhalten und ich werde dich nicht beklagen, falls du niemals zurückkehrst.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_14" + } + ] + }, + { + "id": "flagstone_sentry_14", + "message": "Geh nur. Lass mich wissen, falls ich dir etwas sagen kann, was dir weiterhelfen könnte.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_15" + } + ] + }, + { + "id": "flagstone_sentry_15", + "message": "Kehre hierher zurück, wenn du meinen Rat brauchst.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "flagstone", + "value": 10 + } + ], + "replies": [ + { + "text": "In Ordnung. Ich werde zu dir zurückkehren, falls es etwas gibt, bei dem ich Hilfe brauche.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "flagstone_sentry_return1", + "message": "Hallo nochmal. Hast du Flagstone betreten? Ich bin überrascht, dass du es wirklich geschafft hast, zurückzukehren.", + "replies": [ + { + "text": "Kannst du die Geschichte wiederholen?", + "nextPhraseID": "flagstone_sentry_4" + }, + { + "text": "Es gibt da einen Wächter in den tieferen Ebenen Flagstones, dem man sich nicht nähern kann.", + "nextPhraseID": "flagstone_sentry_20", + "requires": { + "progress": "flagstone:20" + } + } + ] + }, + { + "id": "flagstone_sentry_20", + "message": "Ein Wächter, sagst du? Das sind beunruhigende Nachrichten und bedeutet, dass es hinter alldem eine größere Kraft gibt, die dafür verantwortlich ist.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_21" + } + ] + }, + { + "id": "flagstone_sentry_21", + "message": "Hast du den ehemaligen Leiter von Flagstone gefunden? Er hatte für gewöhnlich immer eine Halskette bei sich.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_22" + } + ] + }, + { + "id": "flagstone_sentry_22", + "message": "Denn er war durch sie geschützt. Vielleicht war die Kette eine Art Schlüssel?", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_23" + } + ] + }, + { + "id": "flagstone_sentry_23", + "message": "Wenn du den Leiter gefunden und die Kette ausfindig gemacht hast, kehre bitte hierher zurück und ich werde, falls darauf eine Nachricht vorhanden ist, diese entziffern.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "flagstone", + "value": 30 + } + ], + "replies": [ + { + "text": "Ich habe sie gefunden, hier.", + "nextPhraseID": "flagstone_sentry_40", + "requires": { + "item": { + "itemID": "necklace_flagstone", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Was war nochmal mit diesem Wächter?", + "nextPhraseID": "flagstone_sentry_20" + }, + { + "text": "Ok, ich werde nach dem ehemaligen Leiter suchen.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "flagstone_sentry_return2", + "message": "Hallo nochmal. Hast du den ehemaligen Leiter Flagstones schon gefunden?", + "replies": [ + { + "text": "Über den ehemaligen Leiter...", + "nextPhraseID": "flagstone_sentry_23" + }, + { + "text": "Kannst du die Geschichte noch einmal wiederholen?", + "nextPhraseID": "flagstone_sentry_3" + } + ] + }, + { + "id": "flagstone_sentry_40", + "message": "Du hast die Kette gefunden? Gut. Hier, gib sie mir.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "flagstone", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_41" + } + ] + }, + { + "id": "flagstone_sentry_41", + "message": "Nun, lass uns sehen. Ah ja, es ist wie ich es mir gedacht habe. Die Halskette enthält ein Passwort.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_42" + } + ] + }, + { + "id": "flagstone_sentry_42", + "message": "'Licht und Schatten'. Das muss es sein. Du solltest versuchen, dich dem Wächter mit diesem Passwort zu nähern.", + "replies": [ + { + "text": "Danke, auf Wiedersehen.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "flagstone_sentry_return3", + "message": "Hallo nochmal. Wie geht es mit deiner Untersuchung der Untoten in Flagstone voran?", + "replies": [ + { + "text": "Es gibt noch keine Fortschritte.", + "nextPhraseID": "flagstone_sentry_43" + } + ] + }, + { + "id": "flagstone_sentry_43", + "message": "Gut, bleib wachsam. Komm zu mir, wenn du meinen Rat brauchst." + }, + { + "id": "flagstone_sentry_return4", + "message": "Hallo nochmal. Es scheint, dass etwas in Flagstone geschehen ist, das die Untoten geschwächt hat. Ich bin sicher, wir müssen dir dafür danken." + }, + { + "id": "narael", + "message": "Vielen Dank, dass du mich von dem Ungeheuer befreit hast.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_select" + } + ] + }, + { + "id": "narael_select", + "replies": [ + { + "nextPhraseID": "narael_9", + "requires": { + "progress": "flagstone:60" + } + }, + { + "nextPhraseID": "narael_1" + } + ] + }, + { + "id": "narael_1", + "message": "Mir kommt es so vor, als wäre ich hier eine Ewigkeit gefangen gewesen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_2" + } + ] + }, + { + "id": "narael_2", + "message": "Oh, all die Dinge, die sie mir antaten. Vielen vielen Dank, dass du mich gerettet hast.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_3" + } + ] + }, + { + "id": "narael_3", + "message": "Ich war einmal ein Bürger Nor Citys und arbeitete beim Abbau im Mount Galmore.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_4" + } + ] + }, + { + "id": "narael_4", + "message": "Nach einer Weile kam der Tag, an dem ich meinen Posten verlassen und zu meiner Frau zurückkehren wollte.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_5" + } + ] + }, + { + "id": "narael_5", + "message": "Der verantwortliche Offizier wollte mich nicht gehen lassen und ich wurde als Gefangener nach Flagstone geschickt, weil ich den Gehorsam verweigert hatte.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_6" + } + ] + }, + { + "id": "narael_6", + "message": "Wenn ich meine Frau nur noch einmal sehen könnte. Ich habe kaum noch Leben in mir, und ich habe nicht einmal genug Kraft um diesen Ort zu verlassen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_7" + } + ] + }, + { + "id": "narael_7", + "message": "Ich schätze, es ist mein Schicksal, hier zu sterben, aber nun wenigstens als freier Mann.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_8" + } + ] + }, + { + "id": "narael_8", + "message": "Jetzt überlass mich meinem Schicksal. Ich habe nicht genug Kraft, diesen Ort zu verlassen.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "flagstone", + "value": 60 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_9" + } + ] + }, + { + "id": "narael_9", + "message": "Wenn du meine Frau Taurum in Nor City findest, erzähle ihr bitte, dass ich am Leben bin und dass ich sie nicht vergessen habe.", + "replies": [ + { + "text": "Werde ich. Auf Wiedersehen.", + "nextPhraseID": "X" + }, + { + "text": "Werde ich. Der Schatten sei mit dir.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_foamingflask.json b/AndorsTrail/res/raw-de/conversationlist_foamingflask.json new file mode 100644 index 000000000..c6a314ebf --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_foamingflask.json @@ -0,0 +1,247 @@ +[ + { + "id": "ff_cook_1", + "message": "Hallo. Möchtest du etwas aus der Küche?", + "replies": [ + { + "text": "Sicher, zeig mir, welches Essen du zu verkaufen hast.", + "nextPhraseID": "ff_cook_3" + }, + { + "text": "Das riecht grauenhaft. Was kochst du?", + "nextPhraseID": "ff_cook_2" + }, + { + "text": "Das riecht wunderbar. Was kochst du?", + "nextPhraseID": "ff_cook_2" + } + ] + }, + { + "id": "ff_cook_2", + "message": "Oh das? Das soll ein Keiler-Eintopf werden. Ich vermute er braucht noch etwas Würze.", + "replies": [ + { + "text": "Ich freue mich, davon zu probieren, wenn er fertig ist. Viel Glück beim Kochen.", + "nextPhraseID": "X" + }, + { + "text": "Bäh, das klingt furchtbar. Kannst du diese Viecher wirklich essen? Ich bin angeekelt, tschüss.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "ff_cook_3", + "message": "Nein tut mir leid, ich kann dir kein Essen verkaufen. Geh und sprich mit Torilo dort drüben, wenn du fertiges Essen oder etwas zum Trinken möchtest." + }, + { + "id": "torilo_1", + "message": "Willkommen in der Taverne 'Schäumende Flasche'. Wir heißen hier alle Reisenden herzlich Willkommen.", + "replies": [ + { + "text": "Danke sehr. Bist du der Gastwirt hier?", + "nextPhraseID": "torilo_2" + }, + { + "text": "Hast du kürzlich einen Jungen namens Rincel gesehen?", + "nextPhraseID": "torilo_rincel_1", + "requires": { + "progress": "wrye:41" + } + } + ] + }, + { + "id": "torilo_2", + "message": "Ich bin Torilo, der Besitzer dieser Einrichtung. Bitte setz dich, wo auch immer du willst.", + "replies": [ + { + "text": "Darf ich sehen, welches Essen und welche Getränke erhältlich sind?", + "nextPhraseID": "torilo_shop_1" + }, + { + "text": "Gibt es einen Raum zu mieten?", + "nextPhraseID": "torilo_rest_select" + }, + { + "text": "Schreien und brüllen diese Wachen immer so viel?", + "nextPhraseID": "torilo_guards_1" + } + ] + }, + { + "id": "torilo_default", + "message": "Gibt es noch etwas anderes, was du möchtest?", + "replies": [ + { + "text": "Darf ich sehen, welches Essen und welche Getränke erhältlich sind?", + "nextPhraseID": "torilo_shop_1" + }, + { + "text": "Schreien und brüllen diese Wachen immer so viel?", + "nextPhraseID": "torilo_guards_1" + }, + { + "text": "Hast du kürzlich einen Jungen namens Rincel gesehen?", + "nextPhraseID": "torilo_rincel_1", + "requires": { + "progress": "wrye:41" + } + } + ] + }, + { + "id": "torilo_shop_1", + "message": "Auf jeden Fall. Wir haben eine große Auswahl an Speisen und Getränken.", + "replies": [ + { + "text": "N", + "nextPhraseID": "S" + } + ] + }, + { + "id": "torilo_rest_select", + "replies": [ + { + "nextPhraseID": "torilo_rest_1", + "requires": { + "progress": "nondisplay:10" + } + }, + { + "nextPhraseID": "torilo_rest_3" + } + ] + }, + { + "id": "torilo_rest_1", + "message": "Ja, du hast das Hinterzimmer bereits gemietet.", + "replies": [ + { + "text": "N", + "nextPhraseID": "torilo_rest_2" + } + ] + }, + { + "id": "torilo_rest_2", + "message": "Fühl dich bitte frei das Zimmer für jegliche Zwecke zu verwenden. Ich hoffe, du kannst ein wenig schlafen, auch wenn diese Wachen ihre Lieder rumbrüllen.", + "replies": [ + { + "text": "Danke.", + "nextPhraseID": "torilo_default" + } + ] + }, + { + "id": "torilo_rest_3", + "message": "Oh ja. Wir haben hier einen sehr komfortablen Raum in der Taverne 'Schäumende Flasche'.", + "replies": [ + { + "text": "N", + "nextPhraseID": "torilo_rest_4" + } + ] + }, + { + "id": "torilo_rest_4", + "message": "Erhältlich für nur 250 Goldmünzen. Dann kannst du ihn so oft benutzen, wie du es willst.", + "replies": [ + { + "text": "250 Goldmünzen? Sicher, das macht mir nichts aus. Hier hast du sie.", + "nextPhraseID": "torilo_rest_6", + "requires": { + "item": { + "itemID": "gold", + "quantity": 250, + "requireType": 0 + } + } + }, + { + "text": "250 Goldmünzen sind einiges, aber ich schätze, das ist es wert. Hier hast du sie.", + "nextPhraseID": "torilo_rest_6", + "requires": { + "item": { + "itemID": "gold", + "quantity": 250, + "requireType": 0 + } + } + }, + { + "text": "Das hört sich nach ein bisschen zu viel Goldmünzen für mich an.", + "nextPhraseID": "torilo_rest_5" + } + ] + }, + { + "id": "torilo_rest_5", + "message": "Nun gut, dabei entgeht dir etwas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "torilo_default" + } + ] + }, + { + "id": "torilo_rest_6", + "message": "Ich danke dir. Der Raum ist ab jetzt an dich vermietet.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nondisplay", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "torilo_rest_2" + } + ] + }, + { + "id": "torilo_rincel_1", + "message": "Rincel? Nein, nicht dass ich mich erinnern würde. Eigentlich sind hier drin nicht oft Kinder. *kicher*", + "replies": [ + { + "text": "N", + "nextPhraseID": "torilo_default" + } + ] + }, + { + "id": "torilo_guards_1", + "message": "*Seufz* Ja. Diese Wachen sind jetzt schon seit einiger Zeit hier.", + "replies": [ + { + "text": "N", + "nextPhraseID": "torilo_guards_2" + } + ] + }, + { + "id": "torilo_guards_2", + "message": "Sie scheinen nach etwas oder jemandem Ausschau zu halten, aber ich weiß nicht nach wem oder was.", + "replies": [ + { + "text": "N", + "nextPhraseID": "torilo_guards_3" + } + ] + }, + { + "id": "torilo_guards_3", + "message": "Ich hoffe, der Schatten wacht über uns, so dass wegen ihnen nichts Schlimmes über die Taverne 'Schäumende Flasche' hereinbricht.", + "replies": [ + { + "text": "N", + "nextPhraseID": "torilo_default" + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_foamingflask_guards.json b/AndorsTrail/res/raw-de/conversationlist_foamingflask_guards.json new file mode 100644 index 000000000..34b718915 --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_foamingflask_guards.json @@ -0,0 +1,215 @@ +[ + { + "id": "ff_guard_1", + "message": "Ha ha, du erzählst es ihm, Garl!\n\n*burp*", + "replies": [ + { + "text": "N", + "nextPhraseID": "ff_guard_2" + } + ] + }, + { + "id": "ff_guard_2", + "message": "Singen, Trinken, Kämpfen! Alle, die sich Feygard widersetzen, werden fallen!", + "replies": [ + { + "text": "N", + "nextPhraseID": "ff_guard_3" + } + ] + }, + { + "id": "ff_guard_3", + "message": "Wir werden stramm stehen. Feygard, Stadt des Friedens!", + "replies": [ + { + "text": "Ich sollte besser gehen", + "nextPhraseID": "X" + }, + { + "text": "Feygard, wo ist das?", + "nextPhraseID": "ff_guard_4" + }, + { + "text": "Habt ihr hier kürzlich einen Jungen namens Rincel gesehen?", + "nextPhraseID": "ff_guard_rincel_1", + "requires": { + "progress": "wrye:41" + } + } + ] + }, + { + "id": "ff_guard_4", + "message": "Was, du hast noch nie von Feygard gehört, Junge? Folge einfach der Straße nach Nordwesten und du wirst sehen, wie sich die großartige Stadt Feygard über den Baumspitzen erhebt.", + "replies": [ + { + "text": "Danke. Tschüss.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "ff_guard_rincel_1", + "message": "Ein Junge?! Abgesehen von dir gibt es hier drinnen keine Kinder, die ich gesehen habe.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ff_guard_rincel_2" + } + ] + }, + { + "id": "ff_guard_rincel_2", + "message": "Sprich mit dem Kommandanten dort drüben. Er ist hier schon länger als wir.", + "replies": [ + { + "text": "Vielen Dank, tschüss.", + "nextPhraseID": "X" + }, + { + "text": "Vielen Dank. Der Schatten sei mit dir.", + "nextPhraseID": "ff_guard_shadow_1" + } + ] + }, + { + "id": "ff_guard_shadow_1", + "message": "Bring nicht den verfluchten Schatten hier herein, Sohn. Wir möchten das nicht. Nun geh." + }, + { + "id": "ff_captain_1", + "message": "Hast du dich verlaufen, Sohn? Dies ist kein Ort für einen Junge wie dich.", + "replies": [ + { + "text": "Ich habe eine Lieferung Eisenschwerter von Gandoren für dich.", + "nextPhraseID": "ff_captain_vg_items_1", + "requires": { + "progress": "feygard_shipment:56", + "item": { + "itemID": "fg_ironsword_d", + "quantity": 10, + "requireType": 0 + } + } + }, + { + "text": "Ich habe eine Lieferung Eisenschwerter von Gandoren für dich.", + "nextPhraseID": "ff_captain_fg_items_1", + "requires": { + "progress": "feygard_shipment:25", + "item": { + "itemID": "fg_ironsword", + "quantity": 10, + "requireType": 0 + } + } + }, + { + "text": "Wer bist du?", + "nextPhraseID": "ff_captain_2" + }, + { + "text": "Hast du kürzlich einen Jungen namens Rincel hier gesehen?", + "nextPhraseID": "ff_captain_rincel_1", + "requires": { + "progress": "wrye:41" + } + } + ] + }, + { + "id": "ff_captain_2", + "message": "Ich bin der Kommandant dieser Wachen. Wir grüßen dich von der großen Stadt Feygard.", + "replies": [ + { + "text": "Feygard, wo ist das?", + "nextPhraseID": "ff_captain_4" + }, + { + "text": "Was macht ihr hier?", + "nextPhraseID": "ff_captain_3" + } + ] + }, + { + "id": "ff_captain_3", + "message": "Wir bereisen die Hauptstraße, um dafür zu sorgen, dass die Händler und Reisenden sicher sind. Wir bewahren den Frieden hier.", + "replies": [ + { + "text": "Du erwähntest Feygard. Wo ist das?", + "nextPhraseID": "ff_captain_4" + } + ] + }, + { + "id": "ff_captain_4", + "message": "Die große Stadt Feygard ist die größte Sehenswürdigkeit, die du jemals sehen wirst. Folge der Straße in Richtung Nordwesten.", + "replies": [ + { + "text": "Vielen Dank. Der Schatten sei mit dir.", + "nextPhraseID": "ff_captain_shadow_1" + }, + { + "text": "Vielen Dank, auf Wiedersehen.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "ff_captain_rincel_1", + "message": "Vor einer Weile rannte hier ein Junge herum.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ff_captain_rincel_2" + } + ] + }, + { + "id": "ff_captain_rincel_2", + "message": "Ich habe nie mit ihm gesprochen, also weiß ich leider nicht, ob er derjenige ist, nach dem du suchst.", + "replies": [ + { + "text": "Ok, es könnte trotzdem nützlich sein, dass zu überprüfen.", + "nextPhraseID": "ff_captain_rincel_3" + } + ] + }, + { + "id": "ff_captain_rincel_3", + "message": "Ich habe mitbekommen, dass er die Taverne 'Schäumende Flasche' in Richtung Westen verließ.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "wrye", + "value": 42 + } + ], + "replies": [ + { + "text": "Westen. Geht klar. Danke für die Information.", + "nextPhraseID": "ff_captain_rincel_4" + } + ] + }, + { + "id": "ff_captain_rincel_4", + "message": "Ich bin immer froh, wenn ich helfen kann. Alles für den Glanz Feygards.", + "replies": [ + { + "text": "Der Schatten sei mit dir.", + "nextPhraseID": "ff_captain_shadow_1" + }, + { + "text": "Auf Wiedersehen.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "ff_captain_shadow_1", + "message": "Der Schatten? Erzähl mir nicht, dass du an diesen Quatsch glaubst. Meiner Erfahrung nach sprechen bloß Unruhestifter vom Schatten." + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_foamingflask_outsideguard.json b/AndorsTrail/res/raw-de/conversationlist_foamingflask_outsideguard.json new file mode 100644 index 000000000..e1495a5d5 --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_foamingflask_outsideguard.json @@ -0,0 +1,333 @@ +[ + { + "id": "ff_outsideguard_select", + "replies": [ + { + "nextPhraseID": "ff_outsideguard_trouble_24", + "requires": { + "progress": "jolnor:20" + } + }, + { + "nextPhraseID": "ff_outsideguard_1" + } + ] + }, + { + "id": "ff_outsideguard_1", + "message": "Hallo. Solltest du hier sein? Du weißt, dass dies eine Taverne ist. Die 'Schäumende Flasche', um genau zu sein.", + "replies": [ + { + "text": "Wer bist du?", + "nextPhraseID": "ff_outsideguard_2" + } + ] + }, + { + "id": "ff_outsideguard_2", + "message": "Ich bin Mitglied der königlichen Garde von Feygard.", + "replies": [ + { + "text": "Feygard, wo ist das?", + "nextPhraseID": "ff_outsideguard_3" + }, + { + "text": "Was machst du hier?", + "nextPhraseID": "ff_outsideguard_3" + } + ] + }, + { + "id": "ff_outsideguard_3", + "message": "Geh und sprich mit dem Kommandanten drinnen, wenn du reden willst. Ich muss auf meinem Posten wachsam sein.", + "replies": [ + { + "text": "Ok. Auf Wiedersehen.", + "nextPhraseID": "X" + }, + { + "text": "Warum musst du vor einer Taverne wachsam sein?", + "nextPhraseID": "ff_outsideguard_trouble_1", + "requires": { + "progress": "jolnor:10" + } + } + ] + }, + { + "id": "ff_outsideguard_trouble_1", + "message": "Wirklich, ich kann nicht mit dir reden. Ich könnte Ärger bekommen.", + "replies": [ + { + "text": "Ok. Ich werde dich nicht mehr belästigen. Der Schatten sei mit dir.", + "nextPhraseID": "ff_outsideguard_shadow_1" + }, + { + "text": "Ok. Ich werde dich nicht mehr belästigen. Auf Wiedersehen.", + "nextPhraseID": "X" + }, + { + "text": "Was für Ärger?", + "nextPhraseID": "ff_outsideguard_trouble_2" + } + ] + }, + { + "id": "ff_outsideguard_trouble_2", + "message": "Nein wirklich, der Kommandant könnte mich sehen. Ich muss jederzeit wachsam auf meinem Posten sein. *seufz*", + "replies": [ + { + "text": "Ok. ich werde dich nicht mehr belästigen. Der Schatten sei mit dir.", + "nextPhraseID": "ff_outsideguard_shadow_1" + }, + { + "text": "Ok. Ich werde dich nicht mehr belästigen. Auf Wiedersehen.", + "nextPhraseID": "X" + }, + { + "text": "Magst du deine Arbeit hier?", + "nextPhraseID": "ff_outsideguard_trouble_3" + } + ] + }, + { + "id": "ff_outsideguard_trouble_3", + "message": "Meine Arbeit? Ich schätze, die königliche Garde ist in Ordnung. Ich meine, Feygard ist ein wirklich schöner Platz zum leben.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ff_outsideguard_trouble_4" + } + ] + }, + { + "id": "ff_outsideguard_trouble_4", + "message": "Wachdienst hier irgendwo im Nirgendwo zu haben, ist nicht wirklich das, wofür ich mich zum Dienst gemeldet habe.", + "replies": [ + { + "text": "Darauf wette ich. Dieser Ort ist wirklich langweilig.", + "nextPhraseID": "ff_outsideguard_trouble_5" + }, + { + "text": "Du musst auch Müde werden, wenn du hier nur herumstehst.", + "nextPhraseID": "ff_outsideguard_trouble_5" + } + ] + }, + { + "id": "ff_outsideguard_trouble_5", + "message": "Ja, ich weiß. Ich würde lieber in der Taverne sein und wie die älteren Offiziere und der Kommandant trinken. Wie kommt es dazu, dass ich hier draußen stehen muss?", + "replies": [ + { + "text": "Wenigstens wacht der Schatten über dich.", + "nextPhraseID": "ff_outsideguard_shadow_1" + }, + { + "text": "Warum gehst du nicht einfach, wenn es nicht das ist was du machen möchtest?", + "nextPhraseID": "ff_outsideguard_trouble_7" + }, + { + "text": "Die größere Aufgabe der königlichen Garde, den Frieden zu bewahren, ist es auf lange Sicht Wert.", + "nextPhraseID": "ff_outsideguard_trouble_6" + } + ] + }, + { + "id": "ff_outsideguard_trouble_6", + "message": "Ja, du hast natürlich Recht. Unsere Pflicht gilt Feygard und den Frieden vor allen, die ihn stören wollen, zu erhalten.", + "replies": [ + { + "text": "Ja. Der Schatten wird nicht gefällig auf die sehen, die den Frieden stören wollen.", + "nextPhraseID": "ff_outsideguard_shadow_1" + }, + { + "text": "Ja. Die Störenfriede sollen bestraft werden.", + "nextPhraseID": "ff_outsideguard_trouble_8" + } + ] + }, + { + "id": "ff_outsideguard_trouble_7", + "message": "Nein, meine Loyalität gehört Feygard. Wenn ich gehen würde, würde ich auch meine Loyalität zurücklassen.", + "replies": [ + { + "text": "Was bedeutet das, wenn du mit dem, was du tust, nicht Zufrieden bist?", + "nextPhraseID": "ff_outsideguard_trouble_9" + }, + { + "text": "Ja, das hört sich richtig an. Nach dem, was ich gehört habe, scheint Feygard eine tolle Stadt zu sein.", + "nextPhraseID": "ff_outsideguard_trouble_6" + } + ] + }, + { + "id": "ff_outsideguard_trouble_8", + "message": "Richtig. Ich mag dich, Junge. Weißt du was? Wenn du möchtest, lege ich in den Kasernen für dich ein gutes Wort ein, wenn wir nach Feygard zurückkehren.", + "replies": [ + { + "text": "Sicher, das klingt gut.", + "nextPhraseID": "ff_outsideguard_trouble_20" + }, + { + "text": "Nein, danke. Ich habe schon genug zu tun.", + "nextPhraseID": "ff_outsideguard_trouble_20" + } + ] + }, + { + "id": "ff_outsideguard_trouble_9", + "message": "Naja, ich bin davon überzeugt, dass ich den Gesetzen folgen muss, die von unseren Herrschern gemacht wurden. Wenn wir die Gesetze nicht befolgen, was bleibt dann übrig?", + "replies": [ + { + "text": "N", + "nextPhraseID": "ff_outsideguard_trouble_10" + } + ] + }, + { + "id": "ff_outsideguard_trouble_10", + "message": "Chaos. Unordnung.\n\nNein, ich bevorzuge den gesetzestreuen Weg von Feygard. Meine Loyalität ist beständig.", + "replies": [ + { + "text": "Hört sich gut an. Gesetze werden gemacht, um befolgt zu werden.", + "nextPhraseID": "ff_outsideguard_trouble_8" + }, + { + "text": "Da stimme ich nicht zu. Wir sollten unserem Herzen folgen, auch wenn das gegen die Regeln verstößt.", + "nextPhraseID": "ff_outsideguard_trouble_12" + } + ] + }, + { + "id": "ff_outsideguard_trouble_20", + "message": "Gab es noch etwas anderes, was du wolltest?", + "replies": [ + { + "text": "Ich habe mich gefragt, warum du hier Wache stehst.", + "nextPhraseID": "ff_outsideguard_trouble_21" + } + ] + }, + { + "id": "ff_outsideguard_trouble_12", + "message": "Deine Einstellungen machen mich besorgt. Wir könnten uns in der Zukunft erneut treffen. Aber dann wird uns möglicherweise so eine zivilisierte Diskussion nicht möglich sein." + }, + { + "id": "ff_outsideguard_trouble_21", + "message": "Richtig, darüber haben wir gesprochen. Wie ich gesagt habe, würde ich lieber drinnen am Feuer sein.", + "replies": [ + { + "text": "Ich könnte für dich übernehmen, wenn du rein gehen möchtest.", + "nextPhraseID": "ff_outsideguard_trouble_23" + }, + { + "text": "Hartes Schicksal. Ich vermute, du wirst hier draußen zurück gelassen, während dein Kommandant und deine Kameraden drinnen sind.", + "nextPhraseID": "ff_outsideguard_trouble_22" + } + ] + }, + { + "id": "ff_outsideguard_trouble_22", + "message": "Ja, das ist wieder mein Glück." + }, + { + "id": "ff_outsideguard_trouble_23", + "message": "Wirklich? Ja, das wäre großartig. Dann könnte ich wenigstens etwas Essen und die Wärme am Feuer genießen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ff_outsideguard_trouble_24" + } + ] + }, + { + "id": "ff_outsideguard_trouble_24", + "message": "Ich werde kurz reingehen. Wirst du Wache stehen, während ich reingehe?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "jolnor", + "value": 20 + } + ], + "replies": [ + { + "text": "Sicher, das werde ich tun.", + "nextPhraseID": "ff_outsideguard_trouble_25" + }, + { + "text": "[Lüge] Sicher, das werde ich tun.", + "nextPhraseID": "ff_outsideguard_trouble_25" + } + ] + }, + { + "id": "ff_outsideguard_trouble_25", + "message": "Vielen Dank, mein Freund." + }, + { + "id": "ff_outsideguard_shadow_1", + "message": "Schatten? Merkwürdig, dass du das erwähnst. Erkläre dich!", + "replies": [ + { + "text": "Ich meinte damit gar nichts. Vergiss, dass ich etwas gesagt habe.", + "nextPhraseID": "ff_outsideguard_shadow_2" + }, + { + "text": "Der Schatten wacht über uns, während wir schlafen.", + "nextPhraseID": "ff_outsideguard_shadow_3" + } + ] + }, + { + "id": "ff_outsideguard_shadow_2", + "message": "Gut. Nun verschwinde, bevor ich dich noch fertig machen muss." + }, + { + "id": "ff_outsideguard_shadow_3", + "message": "Was? Bist du einer von diesen Unruhestiftern, die hierher geschickt wurden, um unsere Mission zu sabotieren?", + "replies": [ + { + "text": "Der Schatten beschützt uns.", + "nextPhraseID": "ff_outsideguard_shadow_4" + }, + { + "text": "Nun gut. Ich fange besser keinen Kampf mit der königlichen Garde an.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "ff_outsideguard_shadow_4", + "message": "Das reicht. Besser du kämpfst oder fliehst jetzt, Junge.", + "replies": [ + { + "text": "Gut. Ich habe schon auf einen Kampf gewartet!", + "nextPhraseID": "ff_outsideguard_shadow_5" + }, + { + "text": "Für den Schatten!", + "nextPhraseID": "ff_outsideguard_shadow_5" + }, + { + "text": "Schon gut. Ich habe bloß mit dir gescherzt.", + "nextPhraseID": "ff_outsideguard_shadow_2" + } + ] + }, + { + "id": "ff_outsideguard_shadow_5", + "rewards": [ + { + "rewardType": 0, + "rewardID": "jolnor", + "value": 21 + } + ], + "replies": [ + { + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_jan.json b/AndorsTrail/res/raw-de/conversationlist_jan.json new file mode 100644 index 000000000..2c4848557 --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_jan.json @@ -0,0 +1,350 @@ +[ + { + "id": "jan_start_select", + "replies": [ + { + "nextPhraseID": "jan_complete2", + "requires": { + "progress": "jan:100" + } + }, + { + "nextPhraseID": "jan_return", + "requires": { + "progress": "jan:10" + } + }, + { + "nextPhraseID": "jan_default" + } + ] + }, + { + "id": "jan_default", + "message": "Hallo Junge. Lass mich bitte allein mit meiner Trauer.", + "replies": [ + { + "text": "Was ist das Problem?", + "nextPhraseID": "jan_default2" + }, + { + "text": "Möchtest du darüber reden?", + "nextPhraseID": "jan_default2" + }, + { + "text": "Alles klar, Wiedersehen.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_default2", + "message": "Oh, es ist so traurig. Ich möchte wirklich nicht darüber reden.", + "replies": [ + { + "text": "Bitte, erzähl es mir.", + "nextPhraseID": "jan_default3" + }, + { + "text": "Okay, Wiedersehen.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_default3", + "message": "Nun, ich denke es ist in Ordnung wenn ich es dir erzähle. Du scheinst ein freundlicher Junge zu sein.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default4" + } + ] + }, + { + "id": "jan_default4", + "message": "Mein Freund Gandir, sein Freund Irogotu und ich gingen hinunter in dieses Loch um zu graben. Wir hatten gehört, dass es hier einen verborgenen Schatz gibt.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default5" + } + ] + }, + { + "id": "jan_default5", + "message": "Wir haben angefangen zu graben und sind schließlich in ein tiefer liegendes Höhlensystem durchgebrochen. Da haben wir sie entdeckt: Kriechtiere und Käfer.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default6" + } + ] + }, + { + "id": "jan_default6", + "message": "Oh, dieses verdammte Kriechzeugs. Hätten mich beinahe getötet.\n\nGandir und ich sagten zu Irogotu, dass wir die Grabung beenden und fliehen sollten, solange wir noch könnten.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default7" + } + ] + }, + { + "id": "jan_default7", + "message": "Aber Irogotu wollte weiter in die Höhlen vordringen. Er und Gandir gerieten in Streit und fingen an zu kämpfen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default8" + } + ] + }, + { + "id": "jan_default8", + "message": "Dann passierte es.\n\n*schluchz*\n\nOh, was haben wir nur getan?", + "replies": [ + { + "text": "Bitte erzähl weiter.", + "nextPhraseID": "jan_default9" + } + ] + }, + { + "id": "jan_default9", + "message": "Irogotu tötete Gandir mit seinen bloßen Händen. Man konnte das Feuer in seinen Augen sehen, beinahe als hätte er es genossen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default10" + } + ] + }, + { + "id": "jan_default10", + "message": "Ich bin geflohen und habe mich wegen der Kriechtiere und Irogotu selbst auch nicht mehr zurück nach unten getraut.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default11" + } + ] + }, + { + "id": "jan_default11", + "message": "Oh dieser verdammte Irogotu. Wenn ich nur zu ihm gelangen könnte, dann würde ich es ihm schon zeigen.", + "replies": [ + { + "text": "Denkst du, ich kann helfen?", + "nextPhraseID": "jan_default11_1" + } + ] + }, + { + "id": "jan_default11_1", + "message": "Glaubst du, dass du mir helfen könntest?", + "replies": [ + { + "text": "Sicher! Da könnten ein paar Schätze auf mich warten.", + "nextPhraseID": "jan_default12" + }, + { + "text": "Sicher! Irogotu soll für seine Taten bezahlen.", + "nextPhraseID": "jan_default12" + }, + { + "text": "Nein danke, da möchte ich lieber nicht hineingezogen werden. Das klingt gefährlich.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_default12", + "message": "Wirklich? Du glaubst, dass du mir helfen kannst? Hm, vielleicht kannst du das wirklich. Hüte dich vor diesen Käfern, sie sind ziemlich zähe Bastarde.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "jan", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default13" + } + ] + }, + { + "id": "jan_default13", + "message": "Wenn du wirklich helfen willst, finde Irogotu unten in dieser Höhle und bring mir Gandir's Ring zurück.", + "replies": [ + { + "text": "Sicher, ich werde dir helfen.", + "nextPhraseID": "jan_default14" + }, + { + "text": "Kannst du mir deine Geschichte noch mal erzählen?", + "nextPhraseID": "jan_background" + }, + { + "text": "Nichts für ungut, Wiedersehen.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_default14", + "message": "Komm zu mir zurück, wenn du fertig bist. Und hole Gandir's Ring von Irogotu unten in der Höhle.", + "replies": [ + { + "text": "Okay, bis später.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_return", + "message": "Hallo Junge. Hast du Irogotu in der Höhle gefunden?", + "replies": [ + { + "text": "Nein, noch nicht.", + "nextPhraseID": "jan_default14" + }, + { + "text": "Kannst du mir deine Geschichte noch mal erzählen?", + "nextPhraseID": "jan_background" + }, + { + "text": "Ja, ich habe Irogotu getötet.", + "nextPhraseID": "jan_complete", + "requires": { + "item": { + "itemID": "ring_gandir", + "quantity": 1, + "requireType": 0 + } + } + } + ] + }, + { + "id": "jan_background", + "message": "Hast du nicht zugehört, als ich dir alles erzählt habe? Muss ich die Geschichte wirklich noch einmal erzählen?", + "replies": [ + { + "text": "Ja, bitte wiederhole die Geschichte noch einmal.", + "nextPhraseID": "jan_default3" + }, + { + "text": "Ich habe beim ersten Mal nicht so genau zugehört. Wie war das nochmal mit dem Schatz?", + "nextPhraseID": "jan_default4" + }, + { + "text": "Nein, vergiss es. Ich erinnere mich wieder.", + "nextPhraseID": "jan_default14" + } + ] + }, + { + "id": "jan_complete2", + "message": "Danke für deine Hilfe mit Irogotu! Ich stehe für immer in deiner Schuld.", + "replies": [ + { + "text": "Wiedersehen.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_complete", + "message": "Warte mal. Du bist wirklich da hinuntergegangen und lebend zurückgekommen? Wie hast du das gemacht. Wow, ich bin schon beinahe gestorben, als ich in die Höhle gegangen bin.\n\nVielen Dank für Gandir's Ring. Jetzt habe ich wenigstens eine Erinnerung an ihn.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "jan", + "value": 100 + } + ], + "replies": [ + { + "text": "Ich habe gern geholfen. Auf Wiedersehen.", + "nextPhraseID": "X" + }, + { + "text": "Möge der Schatten mit dir sein. Auf Wiedersehen.", + "nextPhraseID": "X" + }, + { + "text": "Jaja, ich hab' es nur wegen der Beute getan.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "irogotu", + "message": "Wen haben wir den da? Wieder ein Abenteurer der gekommen ist, meinen Schatz zu stehlen. Das ist MEINE HÖHLE. Und der Schatz ist MEIN!", + "replies": [ + { + "text": "Hast du Gandir getötet?", + "nextPhraseID": "irogotu1", + "requires": { + "progress": "jan:10" + } + } + ] + }, + { + "id": "irogotu1", + "message": "Dieser Frischling Gandir. Er stand mir im Weg. Ich habe ihn lediglich als Werkzeug benutzt, um mich tiefer in diese Höhle zu graben.", + "replies": [ + { + "text": "N", + "nextPhraseID": "irogotu2" + } + ] + }, + { + "id": "irogotu2", + "message": "Nebenbei, ich konnte ihn nie ausstehen.", + "replies": [ + { + "text": "Ich schätze, er hat den Tod verdient. Hatte er einen Ring dabei?", + "nextPhraseID": "irogotu3" + }, + { + "text": "Jan erwähnte etwas von einem Ring?", + "nextPhraseID": "irogotu3" + } + ] + }, + { + "id": "irogotu3", + "message": "NEIN! Du kannst ihn nicht haben. Er gehört mir. Und überhaupt, wer bist du Junge, dass du hier herunterkommst, um mich zu stören?!", + "replies": [ + { + "text": "Ich bin kein Junge mehr! Und jetzt gib mir den Ring!", + "nextPhraseID": "irogotu4" + }, + { + "text": "Gib mir diesen Ring und wir könnten beide lebend aus dieser Sache heraus kommen.", + "nextPhraseID": "irogotu4" + } + ] + }, + { + "id": "irogotu4", + "message": "Nein. Wenn du ihn willst, musst du ihn meiner leblosen Hand entreißen. Der Fairness halber sollte ich dir mitteilen, dass ich über große Macht verfüge, so dass du dich eventuell lieber für die Flucht entscheiden solltest.", + "replies": [ + { + "text": "Sehr gut, lass uns sehen, wer von uns sterben wird.", + "nextPhraseID": "F" + }, + { + "text": "Beim Schatten, Gandir wird gerächt werden.", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_jolnor.json b/AndorsTrail/res/raw-de/conversationlist_jolnor.json new file mode 100644 index 000000000..5a752eab9 --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_jolnor.json @@ -0,0 +1,598 @@ +[ + { + "id": "jolnor_select_1", + "replies": [ + { + "nextPhraseID": "jolnor_default_3", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "jolnor_default_2", + "requires": { + "progress": "vilegard:20" + } + }, + { + "nextPhraseID": "jolnor_default" + } + ] + }, + { + "id": "jolnor_default", + "message": "Geh mit dem Schatten, mein Sohn.", + "replies": [ + { + "text": "Was ist das für ein Ort?", + "nextPhraseID": "jolnor_chapel_1" + }, + { + "text": "Mir wurde gesagt, dass ich dich fragen soll, warum jeder in Vilegard Fremden gegenüber so misstrauisch ist.", + "nextPhraseID": "jolnor_suspicious_1", + "requires": { + "progress": "vilegard:10" + } + } + ] + }, + { + "id": "jolnor_default_2", + "message": "Geh mit dem Schatten, mein Sohn.", + "replies": [ + { + "text": "Kannst du mir nochmal erzählen, was das für ein Ort ist?", + "nextPhraseID": "jolnor_chapel_1" + }, + { + "text": "Lass uns über diese Missionen zum Vertrauensbeweis reden, von denen du gesprochen hattest.", + "nextPhraseID": "jolnor_quests_1" + }, + { + "text": "Ich benötige Heilung. Darf ich einen Blick auf deine Waren werfen?", + "nextPhraseID": "jolnor_shop_1" + } + ] + }, + { + "id": "jolnor_default_3", + "message": "Geh mit dem Schatten, mein Freund.", + "replies": [ + { + "text": "Kannst du mir nochmal sagen, was das für ein Ort ist?", + "nextPhraseID": "jolnor_chapel_1" + }, + { + "text": "Ich benötige Heilung. Darf ich einen Blick auf deine Waren werfen?", + "nextPhraseID": "jolnor_shop_1" + } + ] + }, + { + "id": "jolnor_chapel_1", + "message": "Dies ist Vilegards Verehrungsstätte für den Schatten. Wir preisen den Schatten in all seiner Macht und Herrlichkeit.", + "replies": [ + { + "text": "Kannst du mir mehr über den Schatten sagen?", + "nextPhraseID": "jolnor_shadow_1" + }, + { + "text": "Ich benötige Heilung. Darf ich einen Blick auf deine Waren werfen?", + "nextPhraseID": "jolnor_shop_1" + }, + { + "text": "Wie auch immer. Zeig mir einfach deine Waren.", + "nextPhraseID": "jolnor_shop_1" + } + ] + }, + { + "id": "jolnor_shadow_1", + "message": "Der Schatten beschützt uns vor den Gefahren der Nacht. Bei ihm sind wir sicher aufgehoben und er stärkt uns während wir schlafen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_select_1" + } + ] + }, + { + "id": "jolnor_shop_1", + "replies": [ + { + "nextPhraseID": "S", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "jolnor_shop_2" + } + ] + }, + { + "id": "jolnor_shop_2", + "message": "Ich vertraue dir noch nicht genug, um mich bei dem Gedanken mit dir zu handeln wohl zu fühlen.", + "replies": [ + { + "text": "Warum bist du so misstrauisch?", + "nextPhraseID": "jolnor_suspicious_1" + }, + { + "text": "Nun gut.", + "nextPhraseID": "jolnor_select_1" + } + ] + }, + { + "id": "jolnor_suspicious_1", + "message": "Misstrauisch? Nein, ich würde es nicht Misstrauen nennen. Ich würde eher sagen, dass wir heutzutage vorsichtig sind.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_suspicious_2" + } + ] + }, + { + "id": "jolnor_suspicious_2", + "message": "Um das Vertrauen des Dorfes zu gewinnen, müssen Fremde beweisen, dass sie nicht hier sind um Unheil zu stiften.", + "replies": [ + { + "text": "Klingt nach einer guten Idee. Da draußen gibt es viele selbstsüchtige Menschen.", + "nextPhraseID": "jolnor_suspicious_3" + }, + { + "text": "Das klingt wirklich unnötig. Warum sollte man den Menschen nicht von vornherein vertrauen?", + "nextPhraseID": "jolnor_suspicious_4" + } + ] + }, + { + "id": "jolnor_suspicious_3", + "message": "Ja, das ist richtig. Du scheinst uns gut zu verstehen, ich mag das.", + "replies": [ + { + "text": "Gibt es etwas, was ich machen kann um euer Vertrauen zu gewinnen?", + "nextPhraseID": "jolnor_gaintrust_select" + } + ] + }, + { + "id": "jolnor_suspicious_4", + "message": "Wir haben mit der Zeit gelernt, Fremden nicht zu vertrauen und du bist ein Fremder. Warum sollten wir dir trauen?", + "replies": [ + { + "text": "Was kann ich machen, um euer Vertrauen zu gewinnen?", + "nextPhraseID": "jolnor_gaintrust_select" + }, + { + "text": "Da hast du Recht. Du solltest mir vermutlich nicht vertrauen.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jolnor_gaintrust_select", + "replies": [ + { + "nextPhraseID": "jolnor_gaintrust_return_2", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "jolnor_gaintrust_return", + "requires": { + "progress": "vilegard:20" + } + }, + { + "nextPhraseID": "jolnor_gaintrust_1" + } + ] + }, + { + "id": "jolnor_gaintrust_return_2", + "message": "Durch deine Hilfe neulich hast du unser Vertrauen schon gewonnen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_default_3" + } + ] + }, + { + "id": "jolnor_gaintrust_return", + "message": "Wie ich schon gesagt habe, um unser Vertrauen zu gewinnen musst du manchen Leuten hier in Vilegard helfen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_quests_1" + } + ] + }, + { + "id": "jolnor_gaintrust_1", + "message": "Wenn du uns einen Gefallen tust, könnten wir es in Erwägung ziehen, dir zu vertrauen. Mir fallen drei Leute ein, die hier in Vilegard einflussreich sind und denen du versuchen solltest zu helfen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_gaintrust_2" + } + ] + }, + { + "id": "jolnor_gaintrust_2", + "message": "Zuerst gibt es da Kaori. Sie lebt im nördlichen Teil von Vilegard. Frag sie, ob sie deine Hilfe benötigt.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kaori", + "value": 5 + } + ], + "replies": [ + { + "text": "Ok. Mit Kaori reden. Verstanden.", + "nextPhraseID": "jolnor_gaintrust_3" + } + ] + }, + { + "id": "jolnor_gaintrust_3", + "message": "Dann ist da noch Wrye. Wrye lebt auch im nördlichen Teil von Vilegard. Viele Leute hier in Vilegard fragen sie in verschieden Fällen um Rat.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_gaintrust_4" + } + ] + }, + { + "id": "jolnor_gaintrust_4", + "message": "Unlängst verlor sie ihren Sohn auf tragische Art. Wenn du es schaffst, ihr Vertrauen zu gewinnen, wirst du in ihr einen starken Verbündeten haben.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "wrye", + "value": 10 + } + ], + "replies": [ + { + "text": "Mit Wrye reden. Verstanden.", + "nextPhraseID": "jolnor_gaintrust_5" + } + ] + }, + { + "id": "jolnor_gaintrust_5", + "message": "Und zu guter Letzt habe ich noch einen Gefallen, den du mir erweisen kannst.", + "replies": [ + { + "text": "Welcher Gefallen ist das?", + "nextPhraseID": "jolnor_gaintrust_6" + } + ] + }, + { + "id": "jolnor_gaintrust_6", + "message": "Nördlich von Vilegard gibt es eine Taverne mit dem Namen 'Schäumende Flasche'. Meiner Meinung nach ist diese Taverne eine getarnte Wachstation von Feygard.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_gaintrust_7" + } + ] + }, + { + "id": "jolnor_gaintrust_7", + "message": "Diese Taverne wird nahezu immer von der königlichen Garde Lord Geomyrs besucht.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_gaintrust_8" + } + ] + }, + { + "id": "jolnor_gaintrust_8", + "message": "Sie ist vermutlich hier, um uns auszuspionieren, da wir ja Anhänger des Schattens sind. Lord Geomyrs Truppen versuchen immer, uns und dem Schatten das Leben schwer zu machen.", + "replies": [ + { + "text": "Ja, sie verhalten sich überall wie Störenfriede.", + "nextPhraseID": "jolnor_gaintrust_9" + }, + { + "text": "Ich bin sicher, sie haben ihre Gründe für das, was sie tun.", + "nextPhraseID": "jolnor_gaintrust_10" + } + ] + }, + { + "id": "jolnor_gaintrust_9", + "message": "Richtig. Störenfriede in der Tat.", + "replies": [ + { + "text": "Was möchtest du das ich tun soll?", + "nextPhraseID": "jolnor_gaintrust_11" + } + ] + }, + { + "id": "jolnor_gaintrust_10", + "message": "Ja, ihr Grund ist es, uns das Leben schwer zu machen, da bin ich sicher.", + "replies": [ + { + "text": "Was möchtest du das ich tun soll?", + "nextPhraseID": "jolnor_gaintrust_11" + } + ] + }, + { + "id": "jolnor_gaintrust_11", + "message": "Meinen Berichten zufolge ist eine Wache außerhalb der Taverne stationiert, um ein Auge auf mögliche Gefahren zu haben.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_gaintrust_12" + } + ] + }, + { + "id": "jolnor_gaintrust_12", + "message": "Ich möchte, dass du dafür sorgst, dass die Wache irgendwie verschwindet. Wie du das anstellst, liegt völlig an dir.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "jolnor", + "value": 10 + } + ], + "replies": [ + { + "text": "Ich bin nicht sicher, ob ich die Wachen von Feygard verärgern sollte. Das könnte mich wirklich in Schwierigkeiten bringen.", + "nextPhraseID": "jolnor_gaintrust_13" + }, + { + "text": "Für den Schatten. Ich werde tun, wonach du verlangst.", + "nextPhraseID": "jolnor_gaintrust_14" + }, + { + "text": "Ok, ich hoffe das bringt mir am Ende eine Belohnung ein.", + "nextPhraseID": "jolnor_gaintrust_14" + } + ] + }, + { + "id": "jolnor_gaintrust_13", + "message": "Du hast die Wahl. Du kannst dir zumindest die Taverne einmal ansehen und nachsehen, ob du etwas verdächtiges findest.", + "replies": [ + { + "text": "Vielleicht.", + "nextPhraseID": "jolnor_gaintrust_15" + } + ] + }, + { + "id": "jolnor_gaintrust_14", + "message": "Gut. Gib mir Bescheid, wenn du damit fertig bist.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_gaintrust_15" + } + ] + }, + { + "id": "jolnor_gaintrust_15", + "message": "Also, um unser Vertrauen hier in Vilegard zu gewinnen, würde ich vorschlagen, du hilfst Kaori, Wrye und mir.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vilegard", + "value": 20 + } + ], + "replies": [ + { + "text": "Danke für die Information. Ich werde zurück sein, wenn ich etwas zu berichten habe.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jolnor_quests_1", + "message": "Ich würde vorschlagen, du hilfst Kaori, Wrye und mir, um unser Vertrauen zu gewinnen.", + "replies": [ + { + "text": "Was die Wache vor der Taverne ''Schäumende Flasche'' angeht...", + "nextPhraseID": "jolnor_guard_select" + }, + { + "text": "Über diese Aufgaben...", + "nextPhraseID": "jolnor_quests_2" + }, + { + "text": "Wie auch immer, lass uns über andere Themen sprechen.", + "nextPhraseID": "jolnor_select_1" + } + ] + }, + { + "id": "jolnor_quests_2", + "message": "Ja, was ist damit?", + "replies": [ + { + "text": "Was sollte ich nochmal tun?", + "nextPhraseID": "jolnor_suspicious_2" + }, + { + "text": "Ich habe alle Aufgaben erfüllt, die du mir gegeben hast.", + "nextPhraseID": "jolnor_quests_select_1", + "requires": { + "progress": "jolnor:30" + } + }, + { + "text": "Wie auch immer, lass uns über andere Themen sprechen.", + "nextPhraseID": "jolnor_select_1" + } + ] + }, + { + "id": "jolnor_guard_select", + "replies": [ + { + "nextPhraseID": "jolnor_guard_completed", + "requires": { + "progress": "jolnor:30" + } + }, + { + "nextPhraseID": "jolnor_guard_1" + } + ] + }, + { + "id": "jolnor_guard_1", + "message": "Ja, was ist mit ihr?. Hast du sie schon entfernt?", + "replies": [ + { + "text": "Ja, er wird seinen Posten verlassen, sobald seine Schicht vorüber ist.", + "nextPhraseID": "jolnor_guard_2", + "requires": { + "progress": "jolnor:20" + } + }, + { + "text": "Ja, er ist verschwunden.", + "nextPhraseID": "jolnor_guard_2", + "requires": { + "item": { + "itemID": "ffguard_qitem", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Nein, aber ich arbeite daran.", + "nextPhraseID": "jolnor_gaintrust_14" + } + ] + }, + { + "id": "jolnor_guard_completed", + "message": "Ja, du hattest dich um die Wache gekümmert. Vielen Dank für deine Hilfe.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_quests_1" + } + ] + }, + { + "id": "jolnor_guard_2", + "message": "Sehr gut. Danke für deine Hilfe.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "jolnor", + "value": 30 + } + ], + "replies": [ + { + "text": "Kein Problem. Lass uns über die anderen Aufgaben reden von denen du erzählt hast.", + "nextPhraseID": "jolnor_quests_2" + } + ] + }, + { + "id": "jolnor_quests_select_1", + "replies": [ + { + "nextPhraseID": "jolnor_quests_select_2", + "requires": { + "progress": "kaori:20" + } + }, + { + "nextPhraseID": "jolnor_quests_kaori_1" + } + ] + }, + { + "id": "jolnor_quests_kaori_1", + "message": "Du musst Kaori immer noch bei ihrer Aufgabe helfen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_select_1" + } + ] + }, + { + "id": "jolnor_quests_select_2", + "replies": [ + { + "nextPhraseID": "jolnor_quests_completed", + "requires": { + "progress": "wrye:90" + } + }, + { + "nextPhraseID": "jolnor_quests_wrye_1" + } + ] + }, + { + "id": "jolnor_quests_wrye_1", + "message": "Du musst Wrye immer noch bei ihrer Aufgabe helfen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_select_1" + } + ] + }, + { + "id": "jolnor_quests_completed", + "message": "Gut. Du hast uns allen dreien geholfen.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vilegard", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_quests_completed_2" + } + ] + }, + { + "id": "jolnor_quests_completed_2", + "message": "Ich denke, du hast Einsatz gezeigt und wir können dir jetzt vertrauen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_quests_completed_3" + } + ] + }, + { + "id": "jolnor_quests_completed_3", + "message": "Du hast unseren Dank, Freund. Du wirst uns in Vilegard immer willkommen sein. Wir begrüßen dich in unserem Dorf.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_select_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_kaori.json b/AndorsTrail/res/raw-de/conversationlist_kaori.json new file mode 100644 index 000000000..711cb5923 --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_kaori.json @@ -0,0 +1,296 @@ +[ + { + "id": "kaori_start", + "replies": [ + { + "nextPhraseID": "kaori_default_1", + "requires": { + "progress": "kaori:20" + } + }, + { + "nextPhraseID": "kaori_return_1", + "requires": { + "progress": "kaori:10" + } + }, + { + "nextPhraseID": "kaori_1" + } + ] + }, + { + "id": "kaori_1", + "message": "Du bist hier nicht willkommen. Bitte geh jetzt.", + "replies": [ + { + "text": "Warum hat hier in Vilegard jeder so viel Angst vor Fremden?", + "nextPhraseID": "kaori_2" + }, + { + "text": "Jolnor bat mich mit dir zu reden.", + "nextPhraseID": "kaori_3", + "requires": { + "progress": "kaori:5" + } + } + ] + }, + { + "id": "kaori_2", + "message": "Ich möchte nicht mit dir reden. Geh und sprich mit Jolnor in der Kapelle, wenn du uns helfen willst.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vilegard", + "value": 10 + } + ], + "replies": [ + { + "text": "Ok, tschüss.", + "nextPhraseID": "X" + }, + { + "text": "Na gut, dann rede eben nicht mit mir.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "kaori_3", + "message": "Das tat er? Ich vermute, du bist nicht so schlimm wie ich zuerst dachte.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaori_4" + } + ] + }, + { + "id": "kaori_4", + "message": "Ich bin noch nicht davon überzeugt, dass du kein Spion von Feygard bist, der geschickt wurde, um Unheil zu stiften.", + "replies": [ + { + "text": "Was kannst du mir über Vilegard erzählen?", + "nextPhraseID": "kaori_trust_1" + }, + { + "text": "Ich kann dir versichern, dass ich kein Spion bin.", + "nextPhraseID": "kaori_5" + }, + { + "text": "Feygard, wo oder was ist das?", + "nextPhraseID": "kaori_trust_1" + } + ] + }, + { + "id": "kaori_5", + "message": "Hm. Vielleicht nicht. Aber andererseits, vielleicht bist du einer. Ich bin immer noch unsicher.", + "replies": [ + { + "text": "Gibt es irgendetwas, das ich tun kann, um dein Vertrauen zu gewinnen?", + "nextPhraseID": "kaori_10" + }, + { + "text": "[Bestechung] Wie würden sich 100 Goldmünzen anhören? Könnte dir das helfen, mir zu vertrauen?", + "nextPhraseID": "kaori_bribe" + } + ] + }, + { + "id": "kaori_trust_1", + "message": "Ich traue dir noch immer nicht genug, um mit dir darüber zu sprechen.", + "replies": [ + { + "text": "Gibt es irgendetwas, das ich tun kann, um dein Vertrauen zu gewinnen?", + "nextPhraseID": "kaori_10" + }, + { + "text": "[Bestechung] Wie würden sich 100 Goldmünzen anhören? Könnte dir das helfen, mir zu vertrauen?", + "nextPhraseID": "kaori_bribe" + } + ] + }, + { + "id": "kaori_bribe", + "message": "Möchtest du mich bestechen, Junge? Das klappt bei mir nicht. Welchen Nutzen hätte ich von Goldmünzen, wenn du ein Spion wärst?", + "replies": [ + { + "text": "Gibt es irgendetwas, das ich tun kann, um dein Vertrauen zu gewinnen?", + "nextPhraseID": "kaori_10" + } + ] + }, + { + "id": "kaori_10", + "message": "Wenn du mir wirklich beweisen möchtest, dass du kein Spion von Feygard bist, gibt es da etwas, das du für mich tun kannst.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaori_11" + } + ] + }, + { + "id": "kaori_11", + "message": "Bis vor kurzem haben wir spezielle Tränke, die aus gemahlenen Knochen hergestellt werden, als Heilmittel benutzt. Diese Tränke sind sehr starke Heiltränke und werden für verschiedene Zwecke genutzt.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaori_12" + } + ] + }, + { + "id": "kaori_12", + "message": "Aber nun wurden sie von Lord Geomyr verboten und die meisten haben aufgehört, sie zu verwenden.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaori_13" + } + ] + }, + { + "id": "kaori_13", + "message": "Ich würde wirklich gern ein paar mehr davon haben. Wenn du mir 10 Knochenmehltränke bringen kannst, könnte ich es in Betracht ziehen, dir ein bisschen mehr zu vertrauen.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kaori", + "value": 10 + } + ], + "replies": [ + { + "text": "Ok. Ich werde ein paar Tränke für dich auftreiben.", + "nextPhraseID": "kaori_14" + }, + { + "text": "Nein. Wenn etwas verboten ist, gibt es dafür meist einen guten Grund. Du solltest sie nicht verwenden.", + "nextPhraseID": "kaori_15" + }, + { + "text": "Ich habe schon einige von diesen Tränken bei mir, die du haben kannst", + "nextPhraseID": "kaori_20", + "requires": { + "item": { + "itemID": "bonemeal_potion", + "quantity": 10, + "requireType": 0 + } + } + } + ] + }, + { + "id": "kaori_return_1", + "message": "Hallo nochmal. Hast du diese 10 Knochenmehltränke schon besorgt, nach denen ich gefragt habe?", + "replies": [ + { + "text": "Nein, ich versuche immer noch welche zu bekommen.", + "nextPhraseID": "kaori_14" + }, + { + "text": "Ja, ich habe deine Tränke mitgebracht.", + "nextPhraseID": "kaori_20", + "requires": { + "item": { + "itemID": "bonemeal_potion", + "quantity": 10, + "requireType": 0 + } + } + }, + { + "text": "Nein. Wenn etwas verboten ist, gibt es dafür meist einen guten Grund. Du solltest sie nicht verwenden.", + "nextPhraseID": "kaori_15" + } + ] + }, + { + "id": "kaori_14", + "message": "Gut, beeil dich. Ich brauche sie wirklich bald." + }, + { + "id": "kaori_15", + "message": "Nun gut. Jetzt geh bitte." + }, + { + "id": "kaori_20", + "message": "Ausgezeichnet. Gib sie mir.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kaori", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "kaori_21" + } + ] + }, + { + "id": "kaori_21", + "message": "Ja, sie werden mir von Nutzen sein. Vielen Dank, Junge. Vielleicht bist du letztendlich ja doch ganz in Ordnung. Möge der Schatten über dich wachen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaori_default_1" + } + ] + }, + { + "id": "kaori_default_1", + "message": "War da etwas, worüber du reden wolltest?", + "replies": [ + { + "text": "Was kannst du mir über Vilegard erzählen?", + "nextPhraseID": "kaori_vilegard_1" + }, + { + "text": "Warum hat hier in Vilegard jeder so viel Angst vor Fremden?", + "nextPhraseID": "kaori_vilegard_2" + } + ] + }, + { + "id": "kaori_vilegard_1", + "message": "Du solltest mit Erttu sprechen, wenn du die Hintergrundgeschichte über Vilegard hören möchtest. Sie lebt schon viel länger hier in der Gegend als ich.", + "replies": [ + { + "text": "Ok, das werde ich machen.", + "nextPhraseID": "kaori_default_1" + } + ] + }, + { + "id": "kaori_vilegard_2", + "message": "Es gibt eine lange Liste von Leuten, die in der Vergangenheit hier herkamen und Unheil stifteten. Über die Zeit haben wir gelernt, dass es das beste ist, unter uns zu bleiben.", + "replies": [ + { + "text": "Das klingt nach einem guten Vorgehen.", + "nextPhraseID": "kaori_vilegard_3" + }, + { + "text": "Das klingt falsch.", + "nextPhraseID": "kaori_vilegard_3" + } + ] + }, + { + "id": "kaori_vilegard_3", + "message": "Auf jeden Fall sind wir deshalb so misstrauisch gegenüber Fremden.", + "replies": [ + { + "text": "Ich verstehe.", + "nextPhraseID": "kaori_default_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_maelveon.json b/AndorsTrail/res/raw-de/conversationlist_maelveon.json new file mode 100644 index 000000000..040377586 --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_maelveon.json @@ -0,0 +1,78 @@ +[ + { + "id": "maelveon", + "message": "[dir läuft ein Schauer den Rücken hinunter, als die furchteinjagende Kreatur zu sprechen beginnt]", + "replies": [ + { + "text": "N", + "nextPhraseID": "maelveon_1" + } + ] + }, + { + "id": "maelveon_1", + "message": "Ssschatten, verzehre dich.", + "replies": [ + { + "text": "N", + "nextPhraseID": "maelveon_2" + } + ] + }, + { + "id": "maelveon_2", + "message": "G.. argoyle-Schatten.", + "replies": [ + { + "text": "N", + "nextPhraseID": "maelveon_3" + } + ] + }, + { + "id": "maelveon_3", + "message": "Ge.. währe den Ssschatten Raum in dir.", + "replies": [ + { + "text": "Den Schatten, was meinst du damit?", + "nextPhraseID": "maelveon_4" + }, + { + "text": "Stirb, elende Kreatur!", + "nextPhraseID": "maelveon_4" + }, + { + "text": "Dein Geschwätz interessiert mich nicht!", + "nextPhraseID": "maelveon_4" + } + ] + }, + { + "id": "maelveon_4", + "message": "[die Figur hebt ihre Hand und zeigt auf dich]", + "replies": [ + { + "text": "N", + "nextPhraseID": "maelveon_5" + } + ] + }, + { + "id": "maelveon_5", + "message": "Ssschatten, sei mit dir.", + "replies": [ + { + "text": "Schatten, was?", + "nextPhraseID": "F" + }, + { + "text": "Stirb, elende Kreatur!", + "nextPhraseID": "F" + }, + { + "text": "Bitte verletze mich nicht!", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_mikhail.json b/AndorsTrail/res/raw-de/conversationlist_mikhail.json new file mode 100644 index 000000000..b468c2ebd --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_mikhail.json @@ -0,0 +1,350 @@ +[ + { + "id": "mikhail_start_select", + "replies": [ + { + "nextPhraseID": "mikhail_start_select2", + "requires": { + "progress": "mikhail_bread:100" + } + }, + { + "nextPhraseID": "mikhail_bread_continue", + "requires": { + "progress": "mikhail_bread:10" + } + }, + { + "nextPhraseID": "mikhail_start_select2" + } + ] + }, + { + "id": "mikhail_start_select2", + "replies": [ + { + "nextPhraseID": "mikhail_start_select_default", + "requires": { + "progress": "mikhail_rats:100" + } + }, + { + "nextPhraseID": "mikhail_rats_continue", + "requires": { + "progress": "mikhail_rats:10" + } + }, + { + "nextPhraseID": "mikhail_start_select_default" + } + ] + }, + { + "id": "mikhail_start_select_default", + "replies": [ + { + "nextPhraseID": "mikhail_visited", + "requires": { + "progress": "andor:1" + } + }, + { + "nextPhraseID": "mikhail_gamestart" + } + ] + }, + { + "id": "mikhail_gamestart", + "message": "Oh gut, du bist wach.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_visited" + } + ] + }, + { + "id": "mikhail_visited", + "message": "Ich kann deinen Bruder Andor nirgends finden. Weißt du, wo er sein könnte? Er ging gestern weg und ist bis jetzt noch nicht zurück.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 1 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail3" + } + ] + }, + { + "id": "mikhail3", + "message": "Naja, er wird wahrscheinlich bald wieder da sein.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_default", + "message": "Kann ich dir noch bei etwas anderem helfen?", + "replies": [ + { + "text": "Hast du eine Aufgabe für mich?", + "nextPhraseID": "mikhail_tasks" + }, + { + "text": "Gibt es noch etwas anderes, das du mir über Andor sagen kannst?", + "nextPhraseID": "mikhail_andor1" + } + ] + }, + { + "id": "mikhail_tasks", + "message": "Oh natürlich, es gibt zwei Dinge, die erledigt werden müssten: Brot und Ratten. Was möchtest du machen?", + "replies": [ + { + "text": "Was ist mit dem Brot?", + "nextPhraseID": "mikhail_bread_select" + }, + { + "text": "Was ist mit den Ratten?", + "nextPhraseID": "mikhail_rats_select" + }, + { + "text": "Reden wir über die anderen Dinge.", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_andor1", + "message": "Wie ich schon sagte, ging Andor gestern weg und ist seither nicht wieder gekommen. Ich mache mir langsam Sorgen um ihn. Bitte suche nach deinem Bruder, denn er hat eigentlich gesagt, dass er nur kurz weggehen würde.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_andor2" + } + ] + }, + { + "id": "mikhail_andor2", + "message": "Vielleicht ist er wieder in die Lagerhöhle gegangen und sitzt dort fest. Oder er ist in Leta's Keller und trainiert wieder mal mit diesem Holzschwert. Bitte schau, ob du ihn irgendwo im Dorf finden kannst.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_bread_select", + "replies": [ + { + "nextPhraseID": "mikhail_bread_complete2", + "requires": { + "progress": "mikhail_bread:100" + } + }, + { + "nextPhraseID": "mikhail_bread_continue", + "requires": { + "progress": "mikhail_bread:10" + } + }, + { + "nextPhraseID": "mikhail_bread_start" + } + ] + }, + { + "id": "mikhail_bread_start", + "message": "Oh, das habe ich beinahe vergessen: Wenn du Zeit hast, gehe bitte zu Mara ins Gemeindehaus und kaufe noch ein Brot.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "mikhail_bread", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_bread_continue", + "message": "Hast Du das Brot von Mara schon besorgt?", + "replies": [ + { + "text": "Ja, hier ist es.", + "nextPhraseID": "mikhail_bread_complete", + "requires": { + "item": { + "itemID": "bread", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Nein, noch nicht.", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_bread_complete", + "message": "Danke schön, jetzt kann ich endlich frühstücken. Hier, diese Münzen hast du dir verdient.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "mikhail_bread", + "value": 100 + }, + { + "rewardType": 1, + "rewardID": "gold20" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_bread_complete2", + "message": "Danke, dass du mir das Brot geholt hast.", + "replies": [ + { + "text": "Gern geschehen.", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_rats_select", + "replies": [ + { + "nextPhraseID": "mikhail_rats_complete2", + "requires": { + "progress": "mikhail_rats:100" + } + }, + { + "nextPhraseID": "mikhail_rats_continue", + "requires": { + "progress": "mikhail_rats:10" + } + }, + { + "nextPhraseID": "mikhail_rats_start" + } + ] + }, + { + "id": "mikhail_rats_start", + "message": "Ich habe heute Morgen ein paar Ratten in unserem Garten entdeckt. Könntest du sie bitte töten, bevor sie Schaden anrichten?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "mikhail_rats", + "value": 10 + } + ], + "replies": [ + { + "text": "Ich habe mich schon um die Ratten gekümmert.", + "nextPhraseID": "mikhail_rats_complete", + "requires": { + "item": { + "itemID": "tail_trainingrat", + "quantity": 2, + "requireType": 0 + } + } + }, + { + "text": "Okay, ich werde mal im Garten nach dem Rechten sehen.", + "nextPhraseID": "mikhail_rats_start2" + } + ] + }, + { + "id": "mikhail_rats_start2", + "message": "Wenn du von den Ratten verletzt wirst, komm' wieder rein und ruh dich im Bett aus. Das wird dich wieder zu Kräften kommen lassen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_rats_start3" + } + ] + }, + { + "id": "mikhail_rats_start3", + "message": "Ach so: Schau mal in deinen Rucksack. Vielleicht ist dort noch der alte Ring, den ich dir einmal gegeben habe. Du solltest ihn an den Finger stecken.", + "replies": [ + { + "text": "Okay, verstanden. Ich kann mich hier ausruhen, wenn ich verletzt werde und ich sollte in meinem Rucksack nach nützlichen Gegenständen suchen.", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_rats_continue", + "message": "Hast du die beiden Ratten in unserem Garten erwischt?", + "replies": [ + { + "text": "Ja, das Rattenproblem ist erledigt.", + "nextPhraseID": "mikhail_rats_complete", + "requires": { + "item": { + "itemID": "tail_trainingrat", + "quantity": 2, + "requireType": 0 + } + } + }, + { + "text": "Nein, ich bin noch dabei.", + "nextPhraseID": "mikhail_rats_start2" + } + ] + }, + { + "id": "mikhail_rats_complete", + "message": "Tatsächlich? Ich bin dir wirklich sehr dankbar für deine Hilfe\n\nDenk' dran: Wenn du verletzt bist, kannst du dich jederzeit im Bett ausruhen.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "mikhail_rats", + "value": 100 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_rats_complete2", + "message": "Danke nochmal für deine Hilfe mit den Ratten.\n\nWenn du verletzt bist, kannst du dich in dem Bett dort drüben ausruhen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_ogam.json b/AndorsTrail/res/raw-de/conversationlist_ogam.json new file mode 100644 index 000000000..84e10a395 --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_ogam.json @@ -0,0 +1,170 @@ +[ + { + "id": "ogam_1", + "message": "Glaube. Stärke. Anstrengung.", + "replies": [ + { + "text": "Wie bitte?", + "nextPhraseID": "ogam_2" + }, + { + "text": "Mir wurde gesagt ich solle dich treffen.", + "nextPhraseID": "ogam_2", + "requires": { + "progress": "lodar:15" + } + } + ] + }, + { + "id": "ogam_2", + "message": "Umgekehrt ist die Last hoch und tief.", + "replies": [ + { + "text": "Wie bitte?", + "nextPhraseID": "ogam_3" + }, + { + "text": "Bitte fahre fort", + "nextPhraseID": "ogam_3" + }, + { + "text": "Hallo? Umar aus der Diebesgilde in Fallhaven schickt mich dich zu treffen.", + "nextPhraseID": "ogam_3", + "requires": { + "progress": "lodar:15" + } + } + ] + }, + { + "id": "ogam_3", + "message": "Verborgen im Schatten.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ogam_4" + } + ] + }, + { + "id": "ogam_4", + "message": "Zwei ähneln sich in Körper und Geist.", + "replies": [ + { + "text": "Willst du überhaupt mal etwas sinnvolles sagen?", + "nextPhraseID": "ogam_5" + }, + { + "text": "Was meinst du?", + "nextPhraseID": "ogam_5" + } + ] + }, + { + "id": "ogam_5", + "message": "Der rechtmäßige und der chaotische.", + "replies": [ + { + "text": "Hallo? Weißt du, wie ich Lodars Zufluchtsort finden kann?", + "nextPhraseID": "ogam_lodar_1", + "requires": { + "progress": "lodar:15" + } + }, + { + "text": "Ich verstehe das nicht.", + "nextPhraseID": "ogam_6" + } + ] + }, + { + "id": "ogam_lodar_1", + "message": "Lodar? Klar, dröhnend, verletzt.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ogam_6" + } + ] + }, + { + "id": "ogam_6", + "message": "Ja. Die wahre Form. Erblicken.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ogam_7" + } + ] + }, + { + "id": "ogam_7", + "message": "Verborgen im Schatten.", + "replies": [ + { + "text": "Der Schatten?", + "nextPhraseID": "ogam_4" + }, + { + "text": "Hörst du überhaupt, was ich gesagt habe?", + "nextPhraseID": "ogam_4" + }, + { + "text": "Hallo? Weißt du, wie ich Lodars Zufluchtsort finden kann?", + "nextPhraseID": "ogam_lodar_2", + "requires": { + "progress": "lodar:15" + } + } + ] + }, + { + "id": "ogam_lodar_2", + "message": "Lodar, auf halbem Wege zwischen dem Schatten und dem Licht. Felsformationen.", + "replies": [ + { + "text": "Ok, auf halbem Wege zwischen zwei Plätzen. Einige Felsen?", + "nextPhraseID": "ogam_lodar_3" + }, + { + "text": "Uh. Könntest du das wiederholen?", + "nextPhraseID": "ogam_lodar_3" + } + ] + }, + { + "id": "ogam_lodar_3", + "message": "Wächter. Leuchten des Schattens.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "lodar", + "value": 20 + } + ], + "replies": [ + { + "text": "Leuchten des Schattens? Sind das die Worte, die der Wächter hören soll?", + "nextPhraseID": "ogam_lodar_4" + }, + { + "text": "'Leuchten des Schattens'? Das kommt mir von irgendwoher bekannt vor.", + "nextPhraseID": "ogam_lodar_4", + "requires": { + "progress": "bonemeal:30" + } + } + ] + }, + { + "id": "ogam_lodar_4", + "message": "Biegung. Drehung. Klare Form.", + "replies": [ + { + "text": "Was bedeutet das?", + "nextPhraseID": "ogam_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_oluag.json b/AndorsTrail/res/raw-de/conversationlist_oluag.json new file mode 100644 index 000000000..13eeb6308 --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_oluag.json @@ -0,0 +1,272 @@ +[ + { + "id": "oluag_1", + "replies": [ + { + "nextPhraseID": "oluag_grave_16", + "requires": { + "progress": "wrye:80" + } + }, + { + "nextPhraseID": "oluag_1_1" + } + ] + }, + { + "id": "oluag_1_1", + "message": "Hallo. Ich bin Oluag.", + "replies": [ + { + "text": "Was machst du hier bei all diesen Kisten?", + "nextPhraseID": "oluag_2" + } + ] + }, + { + "id": "oluag_2", + "message": "Ach die. Sie sind nicht von Bedeutung. Kümmere dich nicht darum. Um das Grab dort drüben solltest du dir auch keine Gedanken machen.", + "replies": [ + { + "text": "Welches Grab?", + "nextPhraseID": "oluag_grave_select" + }, + { + "text": "Nicht von Bedeutung? Wirklich? Das klingt verdächtig.", + "nextPhraseID": "oluag_boxes_1" + } + ] + }, + { + "id": "oluag_boxes_1", + "message": "Nein nein, nichts von alledem ist verdächtig. Es ist ja nicht so, dass sie Schmuggelware oder irgendetwas ähnliches enthalten würden.", + "replies": [ + { + "text": "Was hattest du von einem Grab gesagt?", + "nextPhraseID": "oluag_grave_select" + }, + { + "text": "Nun gut. Ich vermute, dann habe ich nichts gesehen.", + "nextPhraseID": "oluag_goodbye" + } + ] + }, + { + "id": "oluag_goodbye", + "message": "Richtig. Tschüss." + }, + { + "id": "oluag_grave_select", + "replies": [ + { + "nextPhraseID": "oluag_grave_return", + "requires": { + "progress": "wrye:80" + } + }, + { + "nextPhraseID": "oluag_grave_1" + } + ] + }, + { + "id": "oluag_grave_return", + "message": "Ich habe dir meine Geschichte bereits erzählt.", + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_5" + } + ] + }, + { + "id": "oluag_grave_1", + "message": "Ja, ok. Also gleich dort drüben ist ein Grab. Ich schwöre, ich hatte damit nichts zu tun.", + "replies": [ + { + "text": "Nichts? Wirklich?", + "nextPhraseID": "oluag_grave_2" + }, + { + "text": "Ok. Ich vermute, du hast wirklich nichts damit zu tun.", + "nextPhraseID": "oluag_goodbye" + } + ] + }, + { + "id": "oluag_grave_2", + "message": "Nun, wenn ich sage 'nichts', dann meine ich auch wirklich nichts. Oder vielleicht auch ein ganz kleines bisschen.", + "replies": [ + { + "text": "Ein kleines bisschen?", + "nextPhraseID": "oluag_grave_3" + } + ] + }, + { + "id": "oluag_grave_3", + "message": "Ok, also vielleicht hatte ich ein kleines bisschen damit zu tun.", + "replies": [ + { + "text": "Du fängst besser an, zu reden.", + "nextPhraseID": "oluag_grave_5" + }, + { + "text": "Was hast du getan?", + "nextPhraseID": "oluag_grave_5" + }, + { + "text": "Muss ich es aus dir rausprügeln?", + "nextPhraseID": "oluag_grave_4" + } + ] + }, + { + "id": "oluag_grave_4", + "message": "Entspann dich, entspann dich. Ich will keine Kämpfe mehr.", + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_5" + } + ] + }, + { + "id": "oluag_grave_5", + "message": "Da war dieser Junge, den ich gefunden habe. Er war schon fast verblutet.", + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_6" + } + ] + }, + { + "id": "oluag_grave_6", + "message": "Ich konnte ein paar Sätze aus ihm herausbekommen, bevor er starb.", + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_7" + } + ] + }, + { + "id": "oluag_grave_7", + "message": "Also begrub ich ihn dort drüben in diesem Grab.", + "replies": [ + { + "text": "Was waren die letzten Sätze, die du von ihm gehört hast?", + "nextPhraseID": "oluag_grave_8" + } + ] + }, + { + "id": "oluag_grave_8", + "message": "Irgendetwas über Vilegard und Ryndel, ich bin mir nicht sicher? Ich habe nicht wirklich zugehört, ich war mehr an dem interessiert, was er bei sich hatte.", + "replies": [ + { + "text": "Ich sollte mir das Grab einmal ansehen. Tschüss.", + "nextPhraseID": "X" + }, + { + "text": "Rincel, war es das? Aus Vilegard? Wryes vermisster Sohn.", + "nextPhraseID": "oluag_grave_9", + "requires": { + "progress": "wrye:40" + } + } + ] + }, + { + "id": "oluag_grave_9", + "message": "Ja, das könnte es gewesen sein. Auf jeden Fall sagte er etwas darüber, den Traum zu erfüllen, die großartige Stadt Feygard zu sehen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_10" + } + ] + }, + { + "id": "oluag_grave_10", + "message": "Und er erzählte mir etwas darüber, dass er es sich nicht traute, jemandem davon zu erzählen.", + "replies": [ + { + "text": "Vielleicht hatte er sich nicht getraut, es Wrye zu erzählen?", + "nextPhraseID": "oluag_grave_11" + } + ] + }, + { + "id": "oluag_grave_11", + "message": "Ja sicher, das ist möglich. Er hatte hier sein Lager aufgeschlagen, aber er wurde von einigen Monstern angegriffen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_12" + } + ] + }, + { + "id": "oluag_grave_12", + "message": "Offenbar war er kein so guter Kämpfer wie beispielsweise jemand wie ich. Deshalb verwundeten ihn die Monster zu stark, als das er die Nacht hätte überleben können.", + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_13" + } + ] + }, + { + "id": "oluag_grave_13", + "message": "Dummerweise müssen sie ihm auch alles abgenommen haben, da ich nichts bei ihm finden konnte.", + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_14" + } + ] + }, + { + "id": "oluag_grave_14", + "message": "Ich hörte den Kampflärm, konnte aber erst zu ihm zu gelangen, als die Monster schon geflohen waren.", + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_15" + } + ] + }, + { + "id": "oluag_grave_15", + "message": "Wie auch immer. Jetzt liegt er dort drüben begraben. Ruhe in Frieden.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "wrye", + "value": 80 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_16" + } + ] + }, + { + "id": "oluag_grave_16", + "message": "Lausiger Junge. Er hätte wenigstens ein paar Goldmünzen dabeihaben können.", + "replies": [ + { + "text": "Vielen Dank für die Geschichte. Auf Wiedersehen.", + "nextPhraseID": "oluag_goodbye" + }, + { + "text": "Vielen Dank für die Geschichte. Der Schatten sei mit dir.", + "nextPhraseID": "oluag_goodbye" + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_signs_pre067.json b/AndorsTrail/res/raw-de/conversationlist_signs_pre067.json new file mode 100644 index 000000000..ad5117e47 --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_signs_pre067.json @@ -0,0 +1,103 @@ +[ + { + "id": "keyarea_andor1", + "message": "Du solltest als erstes mit Mikhail reden." + }, + { + "id": "note_lodars", + "message": "Auf dem Boden findest du ein Stück Papier mit lauter merkwürdigen Zeichen. Du kannst gerade so die Worte 'treffe mich bei Lodars Versteck' entziffern, aber du weißt nicht, was das bedeuten soll." + }, + { + "id": "keyarea_crossglen_smith", + "message": "Audir ruft: Hey du, verschwinde! Du hast da hinten nichts zu suchen." + }, + { + "id": "sign_crossglen_cave", + "message": "Das Schild an der Wand ist an mehreren Stellen gesprungen. Du kannst aus der Schrift nichts verständliches herauslesen." + }, + { + "id": "sign_wild1", + "message": "westlich: Crossglen\nsüdlich: Fallhaven\nnördlich: Feygard" + }, + { + "id": "sign_notdone", + "message": "Diese Karte ist noch nicht fertig. Bitte komm in einer späteren Version des Spiels zurück." + }, + { + "id": "sign_wild3", + "message": "westlich: Crossglen\nöstlich: Fallhaven\nnördlich: Feygard" + }, + { + "id": "sign_pitcave2", + "message": "Gandir liegt hier begraben, ermordet von der Hand seines früheren Freundes Irogotu." + }, + { + "id": "sign_fallhaven1", + "message": "Willkommen in Fallhaven. Achte auf Taschendiebe!" + }, + { + "id": "key_fallhavenchurch", + "message": "Es ist nicht erlaubt, die Katakomben der Kirche von Fallhaven ohne Genehmigung zu betreten." + }, + { + "id": "arcir_basement_tornpage", + "message": "Du siehst eine ausgerissene Seite eines Buches mit dem Namen 'Calomyranische Geheimnisse'. Blut befleckt seine Ränder und jemand hat das Wort 'Larcal' mit Blut darauf geschrieben.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "calomyran", + "value": 20 + } + ] + }, + { + "id": "arcir_basement_statue", + "message": "Elythara, Mutter des Lichts. Beschütze uns vor dem Fluch des Schattens.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "arcir", + "value": 10 + } + ] + }, + { + "id": "fallhaven_tavern_room", + "message": "Dir ist der Zutritt zu dem Raum nicht erlaubt, solange du ihn nicht gemietet hast." + }, + { + "id": "fallhaven_derelict1", + "message": "Bucus ruft: Hey du, geh dort weg!" + }, + { + "id": "sign_wild6", + "message": "nördlich: Crossglen\nöstlich: Fallhaven\nsüdlich: Stoutford" + }, + { + "id": "sign_wild7", + "message": "westlich: Stoutford\nnördlich: Fallhaven" + }, + { + "id": "sign_wild10", + "message": "nördlich: Fallhaven\nwestlich: Stoutford" + }, + { + "id": "flagstone_key_demon", + "message": "Der Dämon strahlt eine Kraft aus, die dich zurückdrückt, was es dir unmöglich macht, den Dämon zu erreichen." + }, + { + "id": "flagstone_brokensteps", + "message": "Du bemerkst, dass dieser Tunnel scheinbar unterhalb von Flagstone ausgegraben wurde. Vermutlich die Arbeit eines früheren Häftlings von Flagstone.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "flagstone", + "value": 20 + } + ] + }, + { + "id": "sign_wild12", + "message": "nördlich: Fallhaven\nöstlich: Vilegard\nöstlich: Nor City" + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_signs_v068.json b/AndorsTrail/res/raw-de/conversationlist_signs_v068.json new file mode 100644 index 000000000..3a505a108 --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_signs_v068.json @@ -0,0 +1,30 @@ +[ + { + "id": "foaming_flask_tavern_room", + "message": "Du musst das Zimmer mieten, bevor du es betreten darfst." + }, + { + "id": "sign_vilegard_n", + "message": "Auf dem Schild steht:\nWillkommen in Vilegard, der freundlichsten Stadt in der Umgebung." + }, + { + "id": "sign_foamingflask", + "message": "Willkommen in der Taverne 'Schäumende Flasche'!" + }, + { + "id": "sign_road1_nw", + "message": "nördlich: Loneford\nöstlich: Nor City\nwestlich: Fallhaven" + }, + { + "id": "sign_road1_s", + "message": "nördlich: Loneford\nöstlich: Nor City\nsüdlich: Vilegard" + }, + { + "id": "sign_oluag", + "message": "Du siehst ein erst vor kurzem ausgehobenes Grab." + }, + { + "id": "sign_road2", + "message": "östlich: Nor City\nwestlich: Vilegard" + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_thievesguild_1.json b/AndorsTrail/res/raw-de/conversationlist_thievesguild_1.json new file mode 100644 index 000000000..64150960a --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_thievesguild_1.json @@ -0,0 +1,342 @@ +[ + { + "id": "thievesguild_thief_1", + "message": "Hallo Junge.", + "replies": [ + { + "text": "Hallo. Weißt du, wo ich Umar finden kann?", + "nextPhraseID": "thievesguild_thief_4" + }, + { + "text": "Was ist das für ein Ort?", + "nextPhraseID": "thievesguild_thief_2" + } + ] + }, + { + "id": "thievesguild_thief_2", + "message": "Das ist unsere Gildenhalle. Hier sind wir vor den Wachen von Fallhaven sicher.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thievesguild_thief_3" + } + ] + }, + { + "id": "thievesguild_thief_3", + "message": "Wir können hier so ziemlich alles machen, was wir wollen. Solange Umar es erlaubt, versteht sich.", + "replies": [ + { + "text": "Weißt du, wo ich Umar finden kann?", + "nextPhraseID": "thievesguild_thief_4" + }, + { + "text": "Wer ist Umar?", + "nextPhraseID": "thievesguild_thief_5" + } + ] + }, + { + "id": "thievesguild_thief_4", + "message": "Er ist wahrscheinlich in seinem Raum, dort drüben. *zeigt darauf*", + "replies": [ + { + "text": "Danke.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "thievesguild_thief_5", + "message": "Umar ist unser Gildenoberhaupt. Er macht unsere Regeln und entscheidet für uns bei moralischen Fragen.", + "replies": [ + { + "text": "Wo kann ich ihn finden?", + "nextPhraseID": "thievesguild_thief_4" + } + ] + }, + { + "id": "thievesguild_cook_1", + "message": "Hallo, möchtest du etwas?", + "replies": [ + { + "text": "Du siehst aus, als wärst du hier der Koch.", + "nextPhraseID": "thievesguild_cook_2" + }, + { + "text": "Darf ich sehen, welches Essen du verkaufst?", + "nextPhraseID": "S" + }, + { + "text": "Farrik sagte, du kannst mir einen speziellen Met zubereiten.", + "nextPhraseID": "thievesguild_select_1", + "requires": { + "progress": "farrik:20" + } + } + ] + }, + { + "id": "thievesguild_cook_2", + "message": "Das ist richtig. Jemand muss dafür sorgen, dass diese Raufbolde satt werden.", + "replies": [ + { + "text": "Das riecht auf jeden Fall sehr gut", + "nextPhraseID": "thievesguild_cook_3" + }, + { + "text": "Dieser Eintopf sieht ekelhaft aus", + "nextPhraseID": "thievesguild_cook_4" + }, + { + "text": "Na dann, bis später", + "nextPhraseID": "X" + } + ] + }, + { + "id": "thievesguild_cook_3", + "message": "Danke. Mit diesem Eintopf geht es gut voran.", + "replies": [ + { + "text": "Ich bin daran interessiert, etwas davon zu kaufen.", + "nextPhraseID": "S" + } + ] + }, + { + "id": "thievesguild_cook_4", + "message": "Ja, ich weiß. Mit diesen schlechten Zutaten kann man nicht viel machen? Immerhin macht es uns satt.", + "replies": [ + { + "text": "Darf ich sehen, was du zu verkaufen hast?", + "nextPhraseID": "S" + } + ] + }, + { + "id": "thievesguild_cook_5", + "message": "Oh sicher. Du hast vor, jemand ins Reich der Träume zu schicken, oder?", + "replies": [ + { + "text": "N", + "nextPhraseID": "thievesguild_cook_6" + } + ] + }, + { + "id": "thievesguild_cook_6", + "message": "Keine Angst, ich werde es niemandem erzählen. So etwas zuzubereiten gehört zu meinen Spezialitäten.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thievesguild_cook_7" + } + ] + }, + { + "id": "thievesguild_cook_7", + "message": "Gib mir eine Minute, um ihn für dich zusammenzumischen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thievesguild_cook_8" + } + ] + }, + { + "id": "thievesguild_select_1", + "replies": [ + { + "nextPhraseID": "thievesguild_cook_10", + "requires": { + "progress": "farrik:25" + } + }, + { + "nextPhraseID": "thievesguild_cook_5" + } + ] + }, + { + "id": "thievesguild_cook_8", + "message": "Hier. Das sollte genügen. Bitte schön.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 25 + }, + { + "rewardType": 1, + "rewardID": "sleepingmead" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "thievesguild_cook_9" + } + ] + }, + { + "id": "thievesguild_cook_10", + "message": "Ja, ich hab dir vorhin einen speziellen Trank gegeben.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thievesguild_cook_9" + } + ] + }, + { + "id": "thievesguild_cook_9", + "message": "Sei vorsichtig, damit du nicht etwas von dem Zeug an die Finger bekommst, es ist wirklich sehr stark.", + "replies": [ + { + "text": "Vielen Dank.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "thievesguild_pickpocket_1", + "message": "Hallo.", + "replies": [ + { + "text": "Wer bist du?", + "nextPhraseID": "thievesguild_pickpocket_2" + }, + { + "text": "Was ist das für ein Ort?", + "nextPhraseID": "thievesguild_thief_2" + } + ] + }, + { + "id": "thievesguild_pickpocket_2", + "message": "Mein richtiger Name ist unwichtig. Die Leute nennen mich meistens Flinke Hände.", + "replies": [ + { + "text": "Warum das?", + "nextPhraseID": "thievesguild_pickpocket_3" + } + ] + }, + { + "id": "thievesguild_pickpocket_3", + "message": "Nun, ich habe eine Tendenz zu .. wie soll ich es sagen .. gewisse Dinge einfach anzueignen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thievesguild_pickpocket_4" + } + ] + }, + { + "id": "thievesguild_pickpocket_4", + "message": "Dinge, die früher anderen Besitzern gehörten.", + "replies": [ + { + "text": "Meinst du stehlen?", + "nextPhraseID": "thievesguild_pickpocket_5" + } + ] + }, + { + "id": "thievesguild_pickpocket_5", + "message": "Nein nein. ich würde es nicht stehlen nennen. Es ist mehr ein Eigentumstransfer. Für mich ist es das.", + "replies": [ + { + "text": "Das hört sich für mich aber sehr nach stehlen an.", + "nextPhraseID": "thievesguild_pickpocket_6" + }, + { + "text": "Das hört sich für mich wie eine gute Rechtfertigung an.", + "nextPhraseID": "thievesguild_pickpocket_6" + } + ] + }, + { + "id": "thievesguild_pickpocket_6", + "message": "Naja, wir sind die Diebesgilde. Was hast du erwartet?" + }, + { + "id": "thievesguild_troublemaker_1", + "message": "Hallo. Kenne ich dich nicht irgendwoher?", + "replies": [ + { + "text": "Nein, ich bin sicher, wir sind uns noch nie begegnet.", + "nextPhraseID": "thievesguild_troublemaker_3" + }, + { + "text": "Was machst du hier?", + "nextPhraseID": "thievesguild_troublemaker_2" + }, + { + "text": "Kann ich einen Blick auf deine Vorräte werfen?", + "nextPhraseID": "S" + } + ] + }, + { + "id": "thievesguild_troublemaker_2", + "message": "Ich habe ein Auge auf unsere Vorräte für die Gilde.", + "replies": [ + { + "text": "Kann ich einen Blick auf deine Vorräte werfen?", + "nextPhraseID": "S" + } + ] + }, + { + "id": "thievesguild_troublemaker_3", + "message": "Nein, ich erkenne dich wirklich.", + "replies": [ + { + "text": "Du musst mich mit jemand anderem verwechselt haben.", + "nextPhraseID": "thievesguild_troublemaker_4" + }, + { + "text": "Vielleicht hast du mich mit meinem Bruder Andor verwechselt.", + "nextPhraseID": "thievesguild_troublemaker_5" + } + ] + }, + { + "id": "thievesguild_troublemaker_4", + "message": "Ja, das könnte sein.", + "replies": [ + { + "text": "Hast du meinen Bruder hier gesehen? Er sieht mir ähnlich.", + "nextPhraseID": "thievesguild_troublemaker_5" + } + ] + }, + { + "id": "thievesguild_troublemaker_5", + "message": "Oh ja, jetzt wo du es sagst. Da war dieser Junge, der hier umher rannte und eine Menge Fragen stellte.", + "replies": [ + { + "text": "Weißt du, was er gesucht oder gemacht hat?", + "nextPhraseID": "thievesguild_troublemaker_6" + } + ] + }, + { + "id": "thievesguild_troublemaker_6", + "message": "Nein. Ich weiß es nicht. Ich kümmere mich bloß um die Vorräte.", + "replies": [ + { + "text": "Ok, vielen Dank jedenfalls. Auf Wiedersehen.", + "nextPhraseID": "X" + }, + { + "text": "Bah, du bist nutzlos. Auf Wiedersehen.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_umar.json b/AndorsTrail/res/raw-de/conversationlist_umar.json new file mode 100644 index 000000000..e1eadfacf --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_umar.json @@ -0,0 +1,346 @@ +[ + { + "id": "umar_select_1", + "replies": [ + { + "nextPhraseID": "umar_return_1", + "requires": { + "progress": "andor:51" + } + }, + { + "nextPhraseID": "umar_novisit_1" + } + ] + }, + { + "id": "umar_return_1", + "message": "Hallo nochmal, mein Freund.", + "replies": [ + { + "text": "Hallo.", + "nextPhraseID": "umar_return_2" + }, + { + "text": "Schön dich gesehen zu haben. Tschüss.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "umar_return_2", + "message": "Irgendetwas anderes, womit ich dir helfen kann?", + "replies": [ + { + "text": "Könntest du wiederholen, was du über Andor gesagt hast?", + "nextPhraseID": "umar_5" + }, + { + "text": "Schön dich gesehen zu haben. Tschüss.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "umar_novisit_1", + "message": "Hallo. Wie lief deine Suche?", + "replies": [ + { + "text": "Welche Suche?", + "nextPhraseID": "umar_2" + } + ] + }, + { + "id": "umar_2", + "message": "Als wir uns das letzte Mal unterhielten, fragtest du nach dem Weg zu Lodars Zufluchtsort. Hast du ihn gefunden?", + "replies": [ + { + "text": "Wir haben uns noch nie getroffen.", + "nextPhraseID": "umar_3" + }, + { + "text": "Du musst mich mit meinem Bruder Andor verwechselt haben. Wir sehen uns sehr ähnlich.", + "nextPhraseID": "umar_4" + } + ] + }, + { + "id": "umar_3", + "message": "Oh. Ich muss dich mit jemand anderem verwechselt haben.", + "replies": [ + { + "text": "Mein Bruder Andor und ich sehen uns sehr ähnlich.", + "nextPhraseID": "umar_4" + } + ] + }, + { + "id": "umar_4", + "message": "Wirklich? Dann vergiss, was ich gesagt habe.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 51 + } + ], + "replies": [ + { + "text": "Ich schätze das heißt, dass Andor hier war. Was hat er gemacht?", + "nextPhraseID": "umar_5" + } + ] + }, + { + "id": "umar_5", + "message": "Er kam vor einer Weile hierher und stellte eine Menge Fragen darüber, welches Verhältnis die Diebesgilde zum Schatten und zur königlichen Garde in Feygard hat.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_6" + } + ] + }, + { + "id": "umar_6", + "message": "Wir in der Diebesgilde kümmern uns weder so richtig um den Schatten noch kümmern wir uns um die königliche Garde.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_7" + } + ] + }, + { + "id": "umar_7", + "message": "Wir versuchen, über ihren Zänkereien und Streitigkeiten zu stehen. Sie können so viel kämpfen, wie sie wollen, aber die Diebesgilde wird sie alle überdauern.", + "replies": [ + { + "text": "Was für einen Konflikt meinst du?", + "nextPhraseID": "umar_conflict_1" + }, + { + "text": "Erzähl mir mehr von dem, wonach Andor gefragt hat", + "nextPhraseID": "umar_andor_1" + } + ] + }, + { + "id": "umar_conflict_1", + "message": "Wo warst du die letzten paar Jahre? Weißt du nichts von dem brodelndem Konflikt?", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_conflict_2" + } + ] + }, + { + "id": "umar_conflict_2", + "message": "Die königliche Garde, unter der Führung von Lord Geomyr in Feygard, versucht den jüngsten Anstieg von illegalen Aktivitäten Einhalt zu gebieten und erlässt aus dem Grund immer mehr Regeln, was erlaubt ist und was nicht.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_conflict_3" + } + ] + }, + { + "id": "umar_conflict_3", + "message": "Die Priester des Schattens, die hauptsächlich in Nor City leben, sind Gegner der neuen Verbote und sagen, dass sie die Art und Weise einschränken, auf die sie den Schatten erfreuen können.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_conflict_4" + } + ] + }, + { + "id": "umar_conflict_4", + "message": "Im Gegenzug planen die Priester des Schattens Lord Geomyr und seine Truppen zu stürzen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_conflict_5" + } + ] + }, + { + "id": "umar_conflict_5", + "message": "Außerdem munkelt man, dass die Priester weiterhin ihre Rituale ausüben, obwohl die meisten dieser Rituale verboten worden sind.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_conflict_6" + } + ] + }, + { + "id": "umar_conflict_6", + "message": "Lord Geomyr und seine königliche Garde auf der anderen Seite, versuchen weiterhin ihr Bestes, auf eine Weise zu regieren, die sie als gerecht empfinden.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_conflict_7" + } + ] + }, + { + "id": "umar_conflict_7", + "message": "Wir in der Diebesgilde versuchen, nicht in diesen Konflikt verwickelt zu werden. Unsere Aktivitäten wurden bislang noch nicht von dem Konflikt beeinträchtigt.", + "replies": [ + { + "text": "Danke, dass du mir das alles erzählt hast.", + "nextPhraseID": "umar_return_2" + }, + { + "text": "Was auch immer, das ist nicht meine Angelegenheit.", + "nextPhraseID": "umar_return_2" + } + ] + }, + { + "id": "umar_andor_1", + "message": "Er fragte nach meiner Unterstützung und fragte, wie man Lodar finden kann.", + "replies": [ + { + "text": "Wer ist Lodar?", + "nextPhraseID": "umar_andor_2" + } + ] + }, + { + "id": "umar_andor_2", + "message": "Lodar? Er ist einer von unseren berühmten Alchemisten in der Diebesgilde. Er kann alle Sorten von starken Schlafmitteln, Heiltränken und Heilmitteln herstellen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_andor_3" + } + ] + }, + { + "id": "umar_andor_3", + "message": "Aber seine Spezialität sind natürlich seine Gifte. Seine Gifte können sogar den größten Monstern schaden.", + "replies": [ + { + "text": "Was würde Andor von ihm wollen?", + "nextPhraseID": "umar_andor_4" + } + ] + }, + { + "id": "umar_andor_4", + "message": "Ich weiß es nicht. Vielleicht hat er nach einem Trank gesucht.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 55 + } + ], + "replies": [ + { + "text": "So, wo kann ich diesen Lodar finden?", + "nextPhraseID": "umar_lodar_1" + } + ] + }, + { + "id": "umar_lodar_1", + "message": "Das sollte ich dir wirklich nicht sagen. Wie man ihn findet ist ein streng gehütetes Geheimnis in der Gilde. Sein Zufluchtsort ist nur von unseren Mitgliedern erreichbar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_lodar_2" + } + ] + }, + { + "id": "umar_lodar_2", + "message": "Andererseits, ich habe gehört, dass du uns geholfen hast, den Schlüssel von Luthor zu finden. Er ist etwas, das wir schon seit langer Zeit haben wollten.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_lodar_3" + } + ] + }, + { + "id": "umar_lodar_3", + "message": "Ok, ich werde dir sagen, wie man zu Lodars Zufluchtsort kommt. Aber du musst versprechen, es geheimzuhalten. Erzähle es niemandem. Nicht einmal denen, die Mitglieder der Diebesgilde zu sein scheinen.", + "replies": [ + { + "text": "Ok, ich verspreche, es niemandem zu sagen.", + "nextPhraseID": "umar_lodar_4" + }, + { + "text": "Ich kann dir keine Garantie geben, aber ich werde es versuchen.", + "nextPhraseID": "umar_lodar_4" + } + ] + }, + { + "id": "umar_lodar_4", + "message": "Gut. Das Ding ist, dass du nicht nur den Ort selbst finden musst, sondern du außerdem auch die richtigen Worte nennen musst, damit dir der Wächter Zutritt gewährt.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_lodar_5" + } + ] + }, + { + "id": "umar_lodar_5", + "message": "Der einzige, der die Sprache des Wächters versteht, ist der alte Mann Ogam in Vilegard.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "lodar", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_lodar_6" + } + ] + }, + { + "id": "umar_lodar_6", + "message": "Du solltest in die Stadt Vilegard reisen und Ogam aufsuchen. Er kann dir helfen, die richtigen Worte zu bekommen, um Lodars Zufluchtsort betreten zu können.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "lodar", + "value": 15 + } + ], + "replies": [ + { + "text": "Wie komme ich nach Vilegard?", + "nextPhraseID": "umar_vilegard_1" + }, + { + "text": "Danke sehr. Da war noch etwas anderes, über das ich reden wollte.", + "nextPhraseID": "umar_return_2" + }, + { + "text": "Danke vielmals, auf Wiedersehen.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "umar_vilegard_1", + "message": "Du reist von Fallhaven in Richtung Südosten. Wenn du die Hauptstraße und die Taverne 'Schäumende Flasche' erreichst, reise nach Süden. Es liegt nicht weit von hier im Südosten.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_return_2" + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_vilegard_erttu.json b/AndorsTrail/res/raw-de/conversationlist_vilegard_erttu.json new file mode 100644 index 000000000..68b2f6a5f --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_vilegard_erttu.json @@ -0,0 +1,97 @@ +[ + { + "id": "erttu_1", + "message": "Hallo Fremder. Normalerweise können wir hier in Vilegard Fremde nicht ausstehen, aber du hast etwas an dir, das mir vertraut vorkommt.", + "replies": [ + { + "text": "N", + "nextPhraseID": "erttu_default" + } + ] + }, + { + "id": "erttu_default", + "message": "Worüber möchtest du reden?", + "replies": [ + { + "text": "Warum ist hier in Vilegard jeder so misstrauisch gegenüber Fremden?", + "nextPhraseID": "erttu_distrust_1", + "requires": { + "progress": "vilegard:10" + } + }, + { + "text": "Was kannst du mir über Vilegard erzählen?", + "nextPhraseID": "erttu_vilegard_1" + } + ] + }, + { + "id": "erttu_distrust_1", + "message": "Die meisten von uns hier in Vilegard haben in ihrer Vorgeschichte Leuten zu sehr vertraut. Leuten, die uns am Ende verletzt haben.", + "replies": [ + { + "text": "N", + "nextPhraseID": "erttu_distrust_2" + } + ] + }, + { + "id": "erttu_distrust_2", + "message": "Nun beginnen wir damit, erst einmal misstrauisch zu sein und fragen Fremde, die hierher kommen, erst einmal ob sie unser Vertrauen gewinnen wollen, indem sie uns helfen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "erttu_distrust_3" + } + ] + }, + { + "id": "erttu_distrust_3", + "message": "Außerdem blicken andere Leute gewöhnlicherweise aus irgendeinem Grund auf uns hier in Vilegard herab. Besonders diese Wichtigtuer aus Feygard und den nördlichen Städten.", + "replies": [ + { + "text": "Was kannst du mir noch über Vilegard erzählen?", + "nextPhraseID": "erttu_vilegard_1" + } + ] + }, + { + "id": "erttu_vilegard_1", + "message": "Wir haben hier in Vilegard fast alles was wir brauchen. Das Zentrum unseres Dorfes ist die Kapelle.", + "replies": [ + { + "text": "N", + "nextPhraseID": "erttu_vilegard_2" + } + ] + }, + { + "id": "erttu_vilegard_2", + "message": "Die Kapelle dient als unser Platz zur Verehrung des Schattens und außerdem als unser Versammlungsort wenn wir in unserem Dorf größere Belange besprechen müssen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "erttu_vilegard_3" + } + ] + }, + { + "id": "erttu_vilegard_3", + "message": "Abgesehen von der Kapelle haben wir eine Taverne, einen Schmied und einen Waffenschmied.", + "replies": [ + { + "text": "Danke für die Information. Da war noch etwas anderes, über das ich reden wollte.", + "nextPhraseID": "erttu_default" + }, + { + "text": "Danke für die Information. Auf Wiedersehen.", + "nextPhraseID": "X" + }, + { + "text": "Wow, nicht noch mehr? Ich frage mich, was ich in einem mickrigen Dörflein wie diesem hier mache.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_vilegard_shops.json b/AndorsTrail/res/raw-de/conversationlist_vilegard_shops.json new file mode 100644 index 000000000..ee66425ce --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_vilegard_shops.json @@ -0,0 +1,99 @@ +[ + { + "id": "vilegard_armorer_select", + "replies": [ + { + "nextPhraseID": "vilegard_armorer_1", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "vilegard_shop_notrust" + } + ] + }, + { + "id": "vilegard_armorer_1", + "message": "Hallo. Bitte durchstöbere meine feine Auswahl an Waffen und Rüstungen.", + "replies": [ + { + "text": "Zeig mir deine Waren", + "nextPhraseID": "S" + } + ] + }, + { + "id": "vilegard_smith_select", + "replies": [ + { + "nextPhraseID": "vilegard_smith_1", + "requires": { + "progress": "feygard_shipment:56" + } + }, + { + "nextPhraseID": "vilegard_smith_fg_2", + "requires": { + "progress": "feygard_shipment:55" + } + }, + { + "nextPhraseID": "vilegard_smith_1", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "vilegard_shop_notrust" + } + ] + }, + { + "id": "vilegard_smith_1", + "message": "Hallo. Ich hörte, dass du uns hier in Vilegard geholfen hast. Womit kann ich dienen?", + "replies": [ + { + "text": "Darf ich einen Blick auf deine Waren werfen?", + "nextPhraseID": "S" + }, + { + "text": "Ich habe eine Lieferung von Waren aus Feygard für dich.", + "nextPhraseID": "vilegard_smith_fg_1", + "requires": { + "progress": "feygard_shipment:35", + "item": { + "itemID": "fg_ironsword", + "quantity": 10, + "requireType": 0 + } + } + } + ] + }, + { + "id": "vilegard_shop_notrust", + "message": "Du bist ein Fremder. Wir mögen keine Fremden hier in Vilegard. Bitte geh.", + "replies": [ + { + "text": "Warum ist jeder hier in Vilegard Fremden gegenüber so misstrauisch?", + "nextPhraseID": "vilegard_shop_notrust_2" + }, + { + "text": "Darf ich einen Blick auf deine Waren werfen?", + "nextPhraseID": "vilegard_shop_notrust_2" + } + ] + }, + { + "id": "vilegard_shop_notrust_2", + "message": "Ich vertraue dir nicht. Du solltest Jolnor in der Kapelle aufsuchen, falls du etwas Sympathie möchtest.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vilegard", + "value": 10 + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_vilegard_tavern.json b/AndorsTrail/res/raw-de/conversationlist_vilegard_tavern.json new file mode 100644 index 000000000..2baedeb03 --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_vilegard_tavern.json @@ -0,0 +1,68 @@ +[ + { + "id": "dunla_default", + "message": "Du siehst aus wie ein gerissenes Kerlchen. Brauchst du ein paar Vorräte?", + "replies": [ + { + "text": "Sicher, lass mich sehen, was du zu verkaufen hast.", + "nextPhraseID": "S" + }, + { + "text": "Was kannst du mir über dich erzählen?", + "nextPhraseID": "dunla_1" + } + ] + }, + { + "id": "dunla_1", + "message": "Ich? Ich bin niemand. Du hast mich nicht einmal gesehen und ganz sicher hast du nicht mit mir gesprochen." + }, + { + "id": "tharwyn_select", + "replies": [ + { + "nextPhraseID": "tharwyn_1", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "vilegard_shop_notrust" + } + ] + }, + { + "id": "tharwyn_1", + "message": "Hallo. Ich hörte, du hast Jolnor in der Kapelle geholfen. Du hast meinen Dank, mein Freund.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tharwyn_2" + } + ] + }, + { + "id": "tharwyn_2", + "message": "Setz dich irgendwo hin. Was kann ich dir bringen?", + "replies": [ + { + "text": "Zeig mir welches Essen du anzubieten hast.", + "nextPhraseID": "S" + } + ] + }, + { + "id": "vilegard_tavern_drunk_1", + "message": "Sieh an, ein verlorener Junge. Hier, nimm etwas Met, Kleiner.", + "replies": [ + { + "text": "Nein, danke.", + "nextPhraseID": "X" + }, + { + "text": "Achte auf deine Zunge, Saufbold.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_vilegard_villagers.json b/AndorsTrail/res/raw-de/conversationlist_vilegard_villagers.json new file mode 100644 index 000000000..1793c1447 --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_vilegard_villagers.json @@ -0,0 +1,171 @@ +[ + { + "id": "vilegard_villager_1", + "replies": [ + { + "nextPhraseID": "vilegard_villager_friend", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "vilegard_villager_1_0" + } + ] + }, + { + "id": "vilegard_villager_1_0", + "message": "Hallo. Wer bist du? Du bist hier in Vilegard nicht willkommen.", + "replies": [ + { + "text": "Hast du meinen Bruder Andor hier gesehen?", + "nextPhraseID": "vilegard_villager_1_2" + } + ] + }, + { + "id": "vilegard_villager_1_2", + "message": "Nein, habe ich bestimmt nicht. Und wenn ich es hätte, warum sollte ich es dir erzählen?" + }, + { + "id": "vilegard_villager_2", + "replies": [ + { + "nextPhraseID": "vilegard_villager_friend", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "vilegard_villager_2_0" + } + ] + }, + { + "id": "vilegard_villager_2_0", + "message": "Beim Schatten, du bist ein Fremder. Wir mögen hier keine Fremden.", + "replies": [ + { + "text": "Warum hat hier in Vilegard jeder so viel Angst vor Fremden?", + "nextPhraseID": "vilegard_villager_5_1" + } + ] + }, + { + "id": "vilegard_villager_3", + "replies": [ + { + "nextPhraseID": "vilegard_villager_friend", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "vilegard_villager_3_0" + } + ] + }, + { + "id": "vilegard_villager_3_0", + "message": "Das ist Vilegard. Du wirst hier keine Annehmlichkeiten finden, Fremder." + }, + { + "id": "vilegard_villager_4", + "replies": [ + { + "nextPhraseID": "vilegard_villager_friend", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "vilegard_villager_4_0" + } + ] + }, + { + "id": "vilegard_villager_4_0", + "message": "Du siehst aus wie der andere Junge, der hier herumrannte. Wahrscheinlich verursachst du Ärger, wie immer bei Fremden.", + "replies": [ + { + "text": "Hast du meinen Bruder Andor gesehen?", + "nextPhraseID": "vilegard_villager_1_2" + }, + { + "text": "Ich werde keinen Ärger machen.", + "nextPhraseID": "vilegard_villager_4_2" + }, + { + "text": "Oh ja, ich werde Ärger machen, schon klar.", + "nextPhraseID": "vilegard_villager_4_3" + } + ] + }, + { + "id": "vilegard_villager_4_2", + "message": "Nein, ich bin sicher das tust du. Fremde tun das immer." + }, + { + "id": "vilegard_villager_4_3", + "message": "Ja, ich weiß. Deshalb wollen wir deine Sorte hier nicht haben. Du solltest Vilegard verlassen, solange du noch kannst." + }, + { + "id": "vilegard_villager_5", + "replies": [ + { + "nextPhraseID": "vilegard_villager_friend", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "vilegard_villager_5_0" + } + ] + }, + { + "id": "vilegard_villager_5_0", + "message": "Hallo Fremder. Du siehst verloren aus, das ist gut. Jetzt verlasse Vilegard, solange du noch kannst.", + "replies": [ + { + "text": "Warum hat hier in Vilegard jeder so viel Angst vor Fremden?", + "nextPhraseID": "vilegard_villager_5_1" + } + ] + }, + { + "id": "vilegard_villager_5_1", + "message": "Ich traue dir nicht über den Weg. Du solltest Jolnor in der Kapelle aufsuchen, falls du etwas Sympathie möchtest.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vilegard", + "value": 10 + } + ] + }, + { + "id": "vilegard_villager_friend", + "message": "Hallo. Ich hörte, du halfst uns einfachem Volk hier in Vilegard. Bitte bleib solange wie du willst als Freund.", + "replies": [ + { + "text": "Danke sehr. Hast du meinen Bruder Andor hier gesehen?", + "nextPhraseID": "vilegard_villager_friend_1" + }, + { + "text": "Vielen Dank. Man sieht sich.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "vilegard_villager_friend_1", + "message": "Dein Bruder? Nein, ich habe niemanden gesehen, der aussieht wie du. Aber andererseits nehme ich nie viel Notiz von Fremden.", + "replies": [ + { + "text": "Danke, tschüss.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_wilderness.json b/AndorsTrail/res/raw-de/conversationlist_wilderness.json new file mode 100644 index 000000000..a376a642a --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_wilderness.json @@ -0,0 +1,74 @@ +[ + { + "id": "fallhaven_bandit", + "message": "Verschwinde Junge. Ich habe keine Zeit für dich.", + "replies": [ + { + "text": "Ich suche einen Teil des Spaltzaubers.", + "nextPhraseID": "fallhaven_bandit_2", + "requires": { + "progress": "vacor:20" + } + } + ] + }, + { + "id": "fallhaven_bandit_2", + "message": "Nein! Vacor wird die Macht des Spaltzaubers nicht bekommen! ", + "replies": [ + { + "text": "Lass uns kämpfen!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "bandit1", + "message": "Was haben wir hier? Einen verirrten Wanderer?", + "replies": [ + { + "text": "N", + "nextPhraseID": "bandit1_2" + } + ] + }, + { + "id": "bandit1_2", + "message": "Wie viel ist dir dein Leben wert? Gib mir 100 Goldmünzen und ich lasse dich gehen.", + "replies": [ + { + "text": "Okay okay. Hier sind die Goldmünzen. Bitte verletze mich nicht!", + "nextPhraseID": "bandit1_3", + "requires": { + "item": { + "itemID": "gold", + "quantity": 100, + "requireType": 0 + } + } + }, + { + "text": "Wie wäre es, wenn wir darum kämpfen?", + "nextPhraseID": "bandit1_4" + }, + { + "text": "Wie wertvoll ist dir dein Leben?", + "nextPhraseID": "bandit1_4" + } + ] + }, + { + "id": "bandit1_3", + "message": "Wird langsam Zeit. Du kannst gehen wohin du willst." + }, + { + "id": "bandit1_4", + "message": "Nun gut, dein Leben also. Lass uns kämpfen. Ich habe schon auf einen guten Kampf gewartet!", + "replies": [ + { + "text": "Lass uns anfangen!", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/conversationlist_wrye.json b/AndorsTrail/res/raw-de/conversationlist_wrye.json new file mode 100644 index 000000000..4ba00ba79 --- /dev/null +++ b/AndorsTrail/res/raw-de/conversationlist_wrye.json @@ -0,0 +1,488 @@ +[ + { + "id": "wrye_select_1", + "replies": [ + { + "nextPhraseID": "wrye_return_2", + "requires": { + "progress": "wrye:90" + } + }, + { + "nextPhraseID": "wrye_return_1", + "requires": { + "progress": "wrye:40" + } + }, + { + "nextPhraseID": "wrye_mourn_1" + } + ] + }, + { + "id": "wrye_return_1", + "message": "Willkommen zurück. Hast du etwas über meinen Sohn Rincel herausgefunden?", + "replies": [ + { + "text": "Kannst du mir nochmal erzählen, was passiert ist?", + "nextPhraseID": "wrye_mourn_5" + }, + { + "text": "Nein, bis jetzt noch nicht.", + "nextPhraseID": "wrye_story_14" + }, + { + "text": "Ja, ich habe herausgefunden, was mit ihm passiert ist.", + "nextPhraseID": "wrye_resolved_1", + "requires": { + "progress": "wrye:80" + } + } + ] + }, + { + "id": "wrye_return_2", + "message": "Willkommen zurück. Danke, dass du herausgefunden hast, was mit meinem Sohn passiert ist.", + "replies": [ + { + "text": "Der Schatten sei mit dir.", + "nextPhraseID": "wrye_story_15" + }, + { + "text": "Gern geschehen.", + "nextPhraseID": "wrye_story_15" + } + ] + }, + { + "id": "wrye_mourn_1", + "message": "Schatten, hilf mir.", + "replies": [ + { + "text": "Was ist los?", + "nextPhraseID": "wrye_mourn_2" + } + ] + }, + { + "id": "wrye_mourn_2", + "message": "Mein Sohn! Mein Sohn ist gegangen.", + "replies": [ + { + "text": "Jolnor sagte, ich sollte dich sprechen, wegen deinem Sohn.", + "nextPhraseID": "wrye_mourn_5", + "requires": { + "progress": "wrye:10" + } + }, + { + "text": "Was ist mit ihm?", + "nextPhraseID": "wrye_mourn_3" + } + ] + }, + { + "id": "wrye_mourn_3", + "message": "Ich möchte nicht darüber sprechen. Nicht mit einem Fremden wie dir.", + "replies": [ + { + "text": "Outsider?", + "nextPhraseID": "wrye_mourn_4" + }, + { + "text": "Jolnor sagte, ich sollte dich sprechen, wegen deinem Sohn.", + "nextPhraseID": "wrye_mourn_5", + "requires": { + "progress": "wrye:10" + } + } + ] + }, + { + "id": "wrye_mourn_4", + "message": "Bitte geh.\n\nOh, Schatten, wache über mich." + }, + { + "id": "wrye_mourn_5", + "message": "Mein Sohn ist tot, ich weiß es! Und diese verdammten Wachen sind daran schuld. Diese Wachen mit ihrem wichtigtuerischen Feygard-Verhalten.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_mourn_6" + } + ] + }, + { + "id": "wrye_mourn_6", + "message": "Als erstes kommen sie mit Versprechungen von Schutz und Kraft. Aber dann irgendwann merkst du, wie sie wirklich sind.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_mourn_7" + } + ] + }, + { + "id": "wrye_mourn_7", + "message": "Ich spüre es. Der Schatten spricht zu mir. Er ist tot.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "wrye", + "value": 20 + } + ], + "replies": [ + { + "text": "Kannst du mir erzählen, was passiert ist?", + "nextPhraseID": "wrye_story_1" + }, + { + "text": "Worüber sprichst du?", + "nextPhraseID": "wrye_story_1" + }, + { + "text": "Der Schatten sei mit dir.", + "nextPhraseID": "wrye_mourn_8" + } + ] + }, + { + "id": "wrye_mourn_8", + "message": "Danke. Schatten, wache über mich.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_1" + } + ] + }, + { + "id": "wrye_story_1", + "message": "Es fing alles damit an, dass die königliche Garde von Feygard hierher kam.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_2" + } + ] + }, + { + "id": "wrye_story_2", + "message": "Sie versuchten, jeden in Vilegard zu bedrängen, um mehr Soldaten zu rekrutieren.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_3" + } + ] + }, + { + "id": "wrye_story_3", + "message": "Die Wachen sagten, sie bräuchten mehr Unterstützung, um einen angeblichen Aufstand und Sabotage zu bekämpfen.", + "replies": [ + { + "text": "Was hat das mit deinem Sohn zu tun?", + "nextPhraseID": "wrye_story_4" + }, + { + "text": "Kommst du bald mal auf den Punkt?", + "nextPhraseID": "wrye_story_4" + } + ] + }, + { + "id": "wrye_story_4", + "message": "Mein Sohn Rincel kümmerte sich nicht wirklich um die Geschichten, die sie erzählten.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_5" + } + ] + }, + { + "id": "wrye_story_5", + "message": "Außerdem erzählte ich ihm, was für eine schlechte Idee es meiner Meinung nach war, mehr Soldaten für die königliche Garde zu rekrutieren.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_6" + } + ] + }, + { + "id": "wrye_story_6", + "message": "Die Wachen blieben für ein paar Tage hier, um mit jedem hier in Vilegard zu reden. Dann gingen sie. Ich schätze, sie zogen weiter in die nächste Stadt.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_7" + } + ] + }, + { + "id": "wrye_story_7", + "message": "Ein paar Tage vergingen bis eines Tages auf einmal mein Sohn Rincel verschwunden war. Ich bin sicher, dass die Wachen es irgendwie geschafft haben, ihn zu überzeugen, ihnen beizutreten.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_8" + } + ] + }, + { + "id": "wrye_story_8", + "message": "Oh, wie ich diese bösen und wichtigtuerischen Feygard-Bastarde verachte.", + "replies": [ + { + "text": "Was nun?", + "nextPhraseID": "wrye_story_9" + } + ] + }, + { + "id": "wrye_story_9", + "message": "Das war mehrere Wochen her. Nun fühle ich in mir eine Leere. Etwas in mir gibt mir die Gewissheit, dass meinem Sohn Rincel irgendwas zugestoßen ist.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_10" + } + ] + }, + { + "id": "wrye_story_10", + "message": "Ich befürchte, er starb oder wurde irgendwie verletzt. Diese Bastarde haben ihn vermutlich in seinen eigenen Tod getrieben.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "wrye", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_11" + } + ] + }, + { + "id": "wrye_story_11", + "message": "*schluchz* Schatten, hilf mir.", + "replies": [ + { + "text": "Was kann ich tun, um zu helfen?", + "nextPhraseID": "wrye_story_13" + }, + { + "text": "Das klingt fürchterlich. Ich bin sicher, du bildest dir diese Dinge bloß ein.", + "nextPhraseID": "wrye_story_13" + }, + { + "text": "Hast du Beweise, dass die Leute von Feygard etwas damit zu tun haben?", + "nextPhraseID": "wrye_story_12" + } + ] + }, + { + "id": "wrye_story_12", + "message": "Nein, aber ich weiß es einfach. Der Schatten spricht zu mir.", + "replies": [ + { + "text": "Ok. Gibt es da irgendetwas, womit ich helfen kann?", + "nextPhraseID": "wrye_story_13" + }, + { + "text": "Es hört sich ein wenig so an, als ob du dich zu viel mit dem Schatten befasst. Ich will davon nichts hören.", + "nextPhraseID": "wrye_mourn_4" + }, + { + "text": "Ich sollte mich vermutlich nicht darin verwickeln lassen, falls das bedeutet, dass ich die königliche Wache gegen mich aufbringen könnte.", + "nextPhraseID": "wrye_mourn_4" + } + ] + }, + { + "id": "wrye_story_13", + "message": "Wenn du mir helfen willst, finde bitte heraus, was mit meinem Sohn Rincel passiert ist.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "wrye", + "value": 40 + } + ], + "replies": [ + { + "text": "Irgendeine Idee, wo ich nachsehen sollte?", + "nextPhraseID": "wrye_story_16" + }, + { + "text": "Ok. Ich werde nach deinem Sohn suchen. Ich hoffe, ich bekomme dafür eine Belohnung.", + "nextPhraseID": "wrye_story_14" + }, + { + "text": "Beim Schatten, dein Sohn wird gerächt werden.", + "nextPhraseID": "wrye_story_14" + } + ] + }, + { + "id": "wrye_story_14", + "message": "Bitte komm hierher zurück, sobald du etwas herausgefunden hast.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_15" + } + ] + }, + { + "id": "wrye_story_15", + "message": "Geh mit dem Schatten." + }, + { + "id": "wrye_story_16", + "message": "I denke, du könntest in der Taverne hier in Vilegard oder der Taverne 'Schäumende Flasche' etwas nördlich von hier nachfragen.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "wrye", + "value": 41 + } + ], + "replies": [ + { + "text": "Beim Schatten, dein Sohn wird gerächt werden.", + "nextPhraseID": "wrye_story_14" + }, + { + "text": "Ok. Ich werde nach deinem Sohn suchen. Ich hoffe, ich bekomme dafür eine Belohnung.", + "nextPhraseID": "wrye_story_14" + }, + { + "text": "Ok. Ich werde nach deinem Sohn suchen, damit du weißt, was mit ihm passiert ist.", + "nextPhraseID": "wrye_story_14" + } + ] + }, + { + "id": "wrye_resolved_1", + "message": "Bitte erzähl mir, was mit ihm passiert ist!", + "replies": [ + { + "text": "Er verließ Vilegard aus freien Stücken, weil er die großartige Stadt Feygard sehen wollte.", + "nextPhraseID": "wrye_resolved_2" + } + ] + }, + { + "id": "wrye_resolved_2", + "message": "Das glaube ich nicht.", + "replies": [ + { + "text": "Er hatte sich insgeheim gesehnt nach Feygard zu gehen, aber er wagte nicht, es dir zu sagen.", + "nextPhraseID": "wrye_resolved_3" + } + ] + }, + { + "id": "wrye_resolved_3", + "message": "Wirklich?", + "replies": [ + { + "text": "Aber er kam nicht weit. In einer Nacht wurde er in seinem Lager angegriffen.", + "nextPhraseID": "wrye_resolved_4" + } + ] + }, + { + "id": "wrye_resolved_4", + "message": "Angegriffen?", + "replies": [ + { + "text": "Ja, er wurde von den Monstern übermannt und schwer verletzt.", + "nextPhraseID": "wrye_resolved_5" + } + ] + }, + { + "id": "wrye_resolved_5", + "message": "Mein geliebter Junge.", + "replies": [ + { + "text": "Ich sprach mit einem Mann, der ihn fand, als er verblutete.", + "nextPhraseID": "wrye_resolved_6" + } + ] + }, + { + "id": "wrye_resolved_6", + "message": "Er war noch am Leben?", + "replies": [ + { + "text": "Ja, aber nicht lange. Er überlebte die Wunden nicht. Er liegt nun im Nordwesten Vilegards begraben.", + "nextPhraseID": "wrye_resolved_7" + } + ] + }, + { + "id": "wrye_resolved_7", + "message": "Oh, mein armer Junge. Was habe ich getan?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "wrye", + "value": 90 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_resolved_8" + } + ] + }, + { + "id": "wrye_resolved_8", + "message": "Ich dachte immer, er teilte meine Ansicht, dass die Leute aus Feygard Wichtigtuer sind.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_resolved_9" + } + ] + }, + { + "id": "wrye_resolved_9", + "message": "Und nun ist er nicht mehr bei uns.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_resolved_10" + } + ] + }, + { + "id": "wrye_resolved_10", + "message": "Vielen Dank, Freund, dass du herausgefunden hast, was mit ihm passiert ist und mir die Wahrheit gesagt hast.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_resolved_11" + } + ] + }, + { + "id": "wrye_resolved_11", + "message": "Oh, mein armer Junge.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_mourn_4" + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/itemcategories_1.json b/AndorsTrail/res/raw-de/itemcategories_1.json new file mode 100644 index 000000000..525bc5653 --- /dev/null +++ b/AndorsTrail/res/raw-de/itemcategories_1.json @@ -0,0 +1,330 @@ +[ + { + "id": "dagger", + "name": "Dolch", + "actionType": 2, + "inventorySlot": 0, + "size": 1 + }, + { + "id": "ssword", + "name": "Kurzschwert", + "actionType": 2, + "inventorySlot": 0, + "size": 1 + }, + { + "id": "rapier", + "name": "Degen", + "actionType": 2, + "inventorySlot": 0, + "size": 2 + }, + { + "id": "lsword", + "name": "Langschwert", + "actionType": 2, + "inventorySlot": 0, + "size": 2 + }, + { + "id": "2hsword", + "name": "Zweihandschwert", + "actionType": 2, + "inventorySlot": 0, + "size": 3 + }, + { + "id": "bsword", + "name": "Breitschwert", + "actionType": 2, + "inventorySlot": 0, + "size": 2 + }, + { + "id": "axe", + "name": "Axt", + "actionType": 2, + "inventorySlot": 0, + "size": 2 + }, + { + "id": "axe2h", + "name": "Große Axt", + "actionType": 2, + "inventorySlot": 0, + "size": 3 + }, + { + "id": "club", + "name": "Knüppel", + "actionType": 2, + "inventorySlot": 0, + "size": 2 + }, + { + "id": "staff", + "name": "Kampfstab", + "actionType": 2, + "inventorySlot": 0, + "size": 3 + }, + { + "id": "mace", + "name": "Streitkolben", + "actionType": 2, + "inventorySlot": 0, + "size": 2 + }, + { + "id": "scepter", + "name": "Zepter", + "actionType": 2, + "inventorySlot": 0, + "size": 2 + }, + { + "id": "hammer", + "name": "Kriegshammer", + "actionType": 2, + "inventorySlot": 0, + "size": 2 + }, + { + "id": "hammer2h", + "name": "Riesenhammer", + "actionType": 2, + "inventorySlot": 0, + "size": 3 + }, + { + "id": "buckler", + "name": "Faustschild", + "actionType": 2, + "inventorySlot": 1, + "size": 1 + }, + { + "id": "shld_wd_li", + "name": "Schild, Holz (leicht)", + "actionType": 2, + "inventorySlot": 1, + "size": 2 + }, + { + "id": "shld_mtl_li", + "name": "Schild, Metall (leicht)", + "actionType": 2, + "inventorySlot": 1, + "size": 2 + }, + { + "id": "shld_wd_hv", + "name": "Schild, Holz (schwer)", + "actionType": 2, + "inventorySlot": 1, + "size": 3 + }, + { + "id": "shld_mtl_hv", + "name": "Schild, Metall (schwer)", + "actionType": 2, + "inventorySlot": 1, + "size": 3 + }, + { + "id": "shld_twr", + "name": "Turmschild", + "actionType": 2, + "inventorySlot": 1, + "size": 3 + }, + { + "id": "hd_cloth", + "name": "Kopfbedeckung, Stoff", + "actionType": 2, + "inventorySlot": 2 + }, + { + "id": "hd_lthr", + "name": "Kopfbedeckung, Leder", + "actionType": 2, + "inventorySlot": 2, + "size": 1 + }, + { + "id": "hd_mtl_li", + "name": "Kopfbedeckung, Metall (leicht)", + "actionType": 2, + "inventorySlot": 2, + "size": 2 + }, + { + "id": "hd_mtl_hv", + "name": "Kopfbedeckung, Metall (schwer)", + "actionType": 2, + "inventorySlot": 2, + "size": 3 + }, + { + "id": "bdy_clth", + "name": "Rüstung, Stoff", + "actionType": 2, + "inventorySlot": 3 + }, + { + "id": "bdy_lthr", + "name": "Rüstung, Leder", + "actionType": 2, + "inventorySlot": 3, + "size": 1 + }, + { + "id": "bdy_hide", + "name": "Tarnrüstung", + "actionType": 2, + "inventorySlot": 3, + "size": 1 + }, + { + "id": "bdy_lt", + "name": "Rüstung (leicht)", + "actionType": 2, + "inventorySlot": 3, + "size": 2 + }, + { + "id": "bdy_hv", + "name": "Rüstung (schwer)", + "actionType": 2, + "inventorySlot": 3, + "size": 3 + }, + { + "id": "chmail", + "name": "Kettenrüstung", + "actionType": 2, + "inventorySlot": 3, + "size": 3 + }, + { + "id": "spmail", + "name": "Kettenhemd", + "actionType": 2, + "inventorySlot": 3, + "size": 3 + }, + { + "id": "plmail", + "name": "Plattenpanzer", + "actionType": 2, + "inventorySlot": 3, + "size": 3 + }, + { + "id": "hnd_cloth", + "name": "Handschuhe, Stoff", + "actionType": 2, + "inventorySlot": 4 + }, + { + "id": "hnd_lthr", + "name": "Handschuhe, Leder", + "actionType": 2, + "inventorySlot": 4, + "size": 1 + }, + { + "id": "hnd_mtl_li", + "name": "Handschuhe, Metall (leicht)", + "actionType": 2, + "inventorySlot": 4, + "size": 2 + }, + { + "id": "hnd_mtl_hv", + "name": "Handschuhe, Metall (schwer)", + "actionType": 2, + "inventorySlot": 4, + "size": 3 + }, + { + "id": "feet_clth", + "name": "Schuhwerk, Stoff", + "actionType": 2, + "inventorySlot": 5 + }, + { + "id": "feet_lthr", + "name": "Schuhwerk, Leder", + "actionType": 2, + "inventorySlot": 5, + "size": 1 + }, + { + "id": "feet_mtl_li", + "name": "Schuhwerk, Metall (leicht)", + "actionType": 2, + "inventorySlot": 5, + "size": 2 + }, + { + "id": "feet_mtl_hv", + "name": "Schuhwerk, Metall (schwer)", + "actionType": 2, + "inventorySlot": 5, + "size": 3 + }, + { + "id": "neck", + "name": "Halskette", + "actionType": 2, + "inventorySlot": 6 + }, + { + "id": "ring", + "name": "Ring", + "actionType": 2, + "inventorySlot": 7 + }, + { + "id": "pot", + "name": "Trank", + "actionType": 1 + }, + { + "id": "food", + "name": "Lebensmittel", + "actionType": 1 + }, + { + "id": "drink", + "name": "Getränk", + "actionType": 1 + }, + { + "id": "gem", + "name": "Edelstein" + }, + { + "id": "animal", + "name": "Tierbestandteil" + }, + { + "id": "animal_e", + "name": "essbarer Tierbestandteil", + "actionType": 1 + }, + { + "id": "flask", + "name": "Flüssigkeitsbehälter" + }, + { + "id": "money", + "name": "Geld" + }, + { + "id": "other", + "name": "Sonstige" + } +] diff --git a/AndorsTrail/res/raw-de/itemlist_animal.json b/AndorsTrail/res/raw-de/itemlist_animal.json new file mode 100644 index 000000000..2dbc563ca --- /dev/null +++ b/AndorsTrail/res/raw-de/itemlist_animal.json @@ -0,0 +1,58 @@ +[ + { + "id": "hair", + "iconID": "items_misc:48", + "name": "Tierhaar", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "insectwing", + "iconID": "items_misc:52", + "name": "Insektenflügel", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 3 + }, + { + "id": "bone", + "iconID": "items_misc:44", + "name": "Knochen", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "claws", + "iconID": "items_misc:47", + "name": "Klauen", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "shell", + "iconID": "items_misc:54", + "name": "Insektenpanzer", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "gland", + "iconID": "actorconditions_1:60", + "name": "Giftdrüse", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 15 + }, + { + "id": "rat_tail", + "iconID": "items_misc:38", + "name": "Rattenschwanz", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 2 + } +] diff --git a/AndorsTrail/res/raw-de/itemlist_armour.json b/AndorsTrail/res/raw-de/itemlist_armour.json new file mode 100644 index 000000000..38074e3f8 --- /dev/null +++ b/AndorsTrail/res/raw-de/itemlist_armour.json @@ -0,0 +1,260 @@ +[ + { + "id": "shirt1", + "iconID": "items_armours:14", + "name": "Stoffhemd", + "category": "bdy_clth", + "baseMarketCost": 16, + "equipEffect": { + "increaseBlockChance": 2 + } + }, + { + "id": "shirt2", + "iconID": "items_armours:14", + "name": "Feines Hemd", + "category": "bdy_clth", + "baseMarketCost": 72, + "equipEffect": { + "increaseBlockChance": 5 + } + }, + { + "id": "shirt_dmgresist", + "iconID": "items_armours:15", + "name": "Gehärtetes Lederhemd", + "category": "bdy_lthr", + "displaytype": 4, + "baseMarketCost": 1633, + "equipEffect": { + "increaseBlockChance": 5, + "increaseDamageResistance": 1 + } + }, + { + "id": "armor1", + "iconID": "items_armours:15", + "name": "Lederrüstung", + "category": "bdy_lthr", + "baseMarketCost": 464, + "equipEffect": { + "increaseBlockChance": 8 + } + }, + { + "id": "armor2", + "iconID": "items_armours:15", + "name": "Gute Lederrüstung", + "category": "bdy_lthr", + "baseMarketCost": 624, + "equipEffect": { + "increaseBlockChance": 9 + } + }, + { + "id": "armor3", + "iconID": "items_armours:16", + "name": "Gehärtete Lederrüstung", + "category": "bdy_lthr", + "baseMarketCost": 2407, + "equipEffect": { + "increaseBlockChance": 13 + } + }, + { + "id": "armor4", + "iconID": "items_armours:16", + "name": "Gute Hartlederrüstung", + "category": "bdy_lthr", + "baseMarketCost": 3866, + "equipEffect": { + "increaseBlockChance": 15 + } + }, + { + "id": "hat1", + "iconID": "items_armours:21", + "name": "Grüner Hut", + "category": "hd_cloth", + "baseMarketCost": 13, + "equipEffect": { + "increaseBlockChance": 1 + } + }, + { + "id": "hat2", + "iconID": "items_armours:21", + "name": "Feiner grüner Hut", + "category": "hd_cloth", + "baseMarketCost": 25, + "equipEffect": { + "increaseBlockChance": 2 + } + }, + { + "id": "hat3", + "iconID": "items_armours:24", + "name": "Plumpe Lederkappe", + "category": "hd_lthr", + "baseMarketCost": 72, + "equipEffect": { + "increaseBlockChance": 5 + } + }, + { + "id": "hat4", + "iconID": "items_armours:24", + "name": "Lederkappe", + "category": "hd_lthr", + "baseMarketCost": 146, + "equipEffect": { + "increaseBlockChance": 6 + } + }, + { + "id": "gloves1", + "iconID": "items_armours:35", + "name": "Lederhandschuhe", + "category": "hnd_lthr", + "baseMarketCost": 23, + "equipEffect": { + "increaseBlockChance": 3 + } + }, + { + "id": "gloves2", + "iconID": "items_armours:35", + "name": "Feine Lederhandschuhe", + "category": "hnd_lthr", + "baseMarketCost": 38, + "equipEffect": { + "increaseBlockChance": 4 + } + }, + { + "id": "gloves3", + "iconID": "items_armours:36", + "name": "Schlangenlederhandschuhe", + "category": "hnd_cloth", + "baseMarketCost": 72, + "equipEffect": { + "increaseBlockChance": 5 + } + }, + { + "id": "gloves4", + "iconID": "items_armours:36", + "name": "Feine Schlangenlederhandschuhe", + "category": "hnd_cloth", + "baseMarketCost": 146, + "equipEffect": { + "increaseBlockChance": 6 + } + }, + { + "id": "shield1", + "iconID": "items_armours:0", + "name": "Faustschild aus Holz", + "category": "buckler", + "baseMarketCost": 72, + "equipEffect": { + "increaseAttackChance": -2, + "increaseBlockChance": 5 + } + }, + { + "id": "shield3", + "iconID": "items_armours:1", + "name": "Faustschild aus Hartholz", + "category": "buckler", + "baseMarketCost": 226, + "equipEffect": { + "increaseAttackChance": -5, + "increaseBlockChance": 7 + } + }, + { + "id": "shield4", + "iconID": "items_armours:2", + "name": "Plumpes Holzschild", + "category": "shld_wd_li", + "baseMarketCost": 464, + "equipEffect": { + "increaseAttackChance": -5, + "increaseBlockChance": 8 + } + }, + { + "id": "shield5", + "iconID": "items_armours:2", + "name": "Gutes Holzschild", + "category": "shld_wd_li", + "baseMarketCost": 624, + "equipEffect": { + "increaseAttackChance": -4, + "increaseBlockChance": 9 + } + }, + { + "id": "boots1", + "iconID": "items_armours:28", + "name": "Lederstiefel", + "category": "feet_lthr", + "baseMarketCost": 23, + "equipEffect": { + "increaseBlockChance": 3 + } + }, + { + "id": "boots2", + "iconID": "items_armours:28", + "name": "Gute Lederstiefel", + "category": "feet_lthr", + "baseMarketCost": 38, + "equipEffect": { + "increaseBlockChance": 4 + } + }, + { + "id": "boots3", + "iconID": "items_armours:29", + "name": "Schlangenlederstiefel", + "category": "feet_lthr", + "baseMarketCost": 146, + "equipEffect": { + "increaseBlockChance": 6 + } + }, + { + "id": "boots5", + "iconID": "items_armours:30", + "name": "Panzerstiefel", + "category": "feet_mtl_hv", + "baseMarketCost": 226, + "equipEffect": { + "increaseBlockChance": 7 + } + }, + { + "id": "gloves_attack1", + "iconID": "items_armours:35", + "name": "Handschuhe des Blitzangriffs", + "category": "hnd_lthr", + "baseMarketCost": 150, + "equipEffect": { + "increaseAttackChance": 15, + "increaseBlockChance": -9 + } + }, + { + "id": "gloves_attack2", + "iconID": "items_armours:35", + "name": "Feine Handschuhe des Blitzangriffs", + "category": "hnd_lthr", + "baseMarketCost": 221, + "equipEffect": { + "increaseAttackChance": 17, + "increaseBlockChance": -9 + } + } +] diff --git a/AndorsTrail/res/raw-de/itemlist_food.json b/AndorsTrail/res/raw-de/itemlist_food.json new file mode 100644 index 000000000..37925ce6e --- /dev/null +++ b/AndorsTrail/res/raw-de/itemlist_food.json @@ -0,0 +1,206 @@ +[ + { + "id": "apple_green", + "iconID": "items_consumables:2", + "name": "Grüner Apfel", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 14, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 8, + "chance": 100 + } + ] + } + }, + { + "id": "apple_red", + "iconID": "items_consumables:3", + "name": "Roter Apfel", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 22, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 12, + "chance": 100 + } + ] + } + }, + { + "id": "meat", + "iconID": "items_consumables:25", + "name": "Fleisch", + "category": "animal_e", + "hasManualPrice": 1, + "baseMarketCost": 29, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 2, + "duration": 12, + "chance": 100 + }, + { + "condition": "foodp", + "magnitude": 3, + "duration": 10, + "chance": 10 + } + ] + } + }, + { + "id": "meat_cooked", + "iconID": "items_consumables:27", + "name": "Braten", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 78, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 3, + "duration": 11, + "chance": 100 + } + ] + } + }, + { + "id": "strawberry", + "iconID": "items_consumables:8", + "name": "Erdbeere", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 3, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 2, + "chance": 100 + } + ] + } + }, + { + "id": "carrot", + "iconID": "items_consumables:15", + "name": "Karotte", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 14, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 8, + "chance": 100 + } + ] + } + }, + { + "id": "bread", + "iconID": "items_consumables:21", + "name": "Brot", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 6, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 10, + "chance": 100 + } + ] + } + }, + { + "id": "mushroom", + "iconID": "items_consumables:19", + "name": "Pilz", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 3, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 2, + "chance": 100 + } + ] + } + }, + { + "id": "pear", + "iconID": "items_consumables:9", + "name": "Birne", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 14, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 8, + "chance": 100 + } + ] + } + }, + { + "id": "eggs", + "iconID": "items_consumables:20", + "name": "Eier", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 10, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 6, + "chance": 100 + } + ] + } + }, + { + "id": "radish", + "iconID": "items_consumables:14", + "name": "Rettich", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 6, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 4, + "chance": 100 + } + ] + } + } +] diff --git a/AndorsTrail/res/raw-de/itemlist_junk.json b/AndorsTrail/res/raw-de/itemlist_junk.json new file mode 100644 index 000000000..6c1daf858 --- /dev/null +++ b/AndorsTrail/res/raw-de/itemlist_junk.json @@ -0,0 +1,50 @@ +[ + { + "id": "rock", + "iconID": "items_misc:28", + "name": "Kleiner Stein", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 1 + }, + { + "id": "gem1", + "iconID": "items_misc:0", + "name": "Glaskristall", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "gem2", + "iconID": "items_misc:1", + "name": "Rubin", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 6 + }, + { + "id": "gem3", + "iconID": "items_misc:2", + "name": "Polierter Edelstein", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 8 + }, + { + "id": "gem4", + "iconID": "items_misc:3", + "name": "Geschnittener Edelstein", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 13 + }, + { + "id": "gem5", + "iconID": "items_misc:5", + "name": "Funkelnder Edelstein", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 15 + } +] diff --git a/AndorsTrail/res/raw-de/itemlist_money.json b/AndorsTrail/res/raw-de/itemlist_money.json new file mode 100644 index 000000000..7e8f58520 --- /dev/null +++ b/AndorsTrail/res/raw-de/itemlist_money.json @@ -0,0 +1,10 @@ +[ + { + "id": "gold", + "iconID": "items_misc:10", + "name": "Goldmünzen", + "category": "money", + "hasManualPrice": 1, + "baseMarketCost": 1 + } +] diff --git a/AndorsTrail/res/raw-de/itemlist_necklaces.json b/AndorsTrail/res/raw-de/itemlist_necklaces.json new file mode 100644 index 000000000..b85eda8e4 --- /dev/null +++ b/AndorsTrail/res/raw-de/itemlist_necklaces.json @@ -0,0 +1,35 @@ +[ + { + "id": "jewel_fallhaven", + "iconID": "items_jewelry:6", + "name": "Juwel von Fallhaven", + "category": "neck", + "displaytype": 4, + "baseMarketCost": 3125, + "equipEffect": { + "increaseAttackCost": -1 + } + }, + { + "id": "necklace_shield1", + "iconID": "items_jewelry:7", + "name": "Halskette des Beschützers", + "category": "neck", + "displaytype": 4, + "baseMarketCost": 935, + "equipEffect": { + "increaseBlockChance": 9 + } + }, + { + "id": "necklace_shield2", + "iconID": "items_jewelry:7", + "name": "Schützende Halskette", + "category": "neck", + "displaytype": 4, + "baseMarketCost": 1255, + "equipEffect": { + "increaseBlockChance": 12 + } + } +] diff --git a/AndorsTrail/res/raw-de/itemlist_potions.json b/AndorsTrail/res/raw-de/itemlist_potions.json new file mode 100644 index 000000000..4d5867e17 --- /dev/null +++ b/AndorsTrail/res/raw-de/itemlist_potions.json @@ -0,0 +1,141 @@ +[ + { + "id": "vial_empty1", + "iconID": "items_consumables:56", + "name": "Leeres Glasröhrchen", + "category": "flask", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "vial_empty2", + "iconID": "items_consumables:57", + "name": "Leere Ampulle", + "category": "flask", + "hasManualPrice": 1, + "baseMarketCost": 4 + }, + { + "id": "vial_empty3", + "iconID": "items_consumables:59", + "name": "Leeres Fläschchen", + "category": "flask", + "hasManualPrice": 1, + "baseMarketCost": 6 + }, + { + "id": "vial_empty4", + "iconID": "items_consumables:58", + "name": "Leere Flasche", + "category": "flask", + "hasManualPrice": 1, + "baseMarketCost": 11 + }, + { + "id": "health_minor", + "iconID": "items_consumables:35", + "name": "Kleine Ampulle der Gesundheit", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 5, + "useEffect": { + "increaseCurrentHP": { + "min": 5, + "max": 5 + } + } + }, + { + "id": "health_minor2", + "iconID": "items_consumables:35", + "name": "Kleiner Trank der Gesundheit", + "category": "pot", + "baseMarketCost": 18, + "useEffect": { + "increaseCurrentHP": { + "min": 5, + "max": 5 + } + } + }, + { + "id": "health", + "iconID": "items_consumables:49", + "name": "Trank der Gesundheit", + "category": "pot", + "baseMarketCost": 40, + "useEffect": { + "increaseCurrentHP": { + "min": 10, + "max": 10 + } + } + }, + { + "id": "health_major", + "iconID": "items_consumables:28", + "name": "Große Flasche der Gesundheit", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 210, + "useEffect": { + "increaseCurrentHP": { + "min": 40, + "max": 40 + } + } + }, + { + "id": "health_major2", + "iconID": "items_consumables:28", + "name": "Großer Trank der Gesundheit", + "category": "pot", + "baseMarketCost": 280, + "useEffect": { + "increaseCurrentHP": { + "min": 40, + "max": 40 + } + } + }, + { + "id": "mead", + "iconID": "items_consumables:51", + "name": "Met", + "category": "drink", + "baseMarketCost": 15, + "useEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "milk", + "iconID": "items_consumables:55", + "name": "Milch", + "category": "drink", + "baseMarketCost": 21, + "useEffect": { + "increaseCurrentHP": { + "min": 2, + "max": 2 + } + } + }, + { + "id": "bonemeal_potion", + "iconID": "items_consumables:34", + "name": "Knochenmehltrank", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 45, + "useEffect": { + "increaseCurrentHP": { + "min": 40, + "max": 40 + } + } + } +] diff --git a/AndorsTrail/res/raw-de/itemlist_pre0610_unused.json b/AndorsTrail/res/raw-de/itemlist_pre0610_unused.json new file mode 100644 index 000000000..67c8566ed --- /dev/null +++ b/AndorsTrail/res/raw-de/itemlist_pre0610_unused.json @@ -0,0 +1,58 @@ +[ + { + "id": "eye", + "iconID": "items_misc:45", + "name": "Auge", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 6 + }, + { + "id": "bat_wing", + "iconID": "items_misc:46", + "name": "Fledermausflügel", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "feather", + "iconID": "items_misc:16", + "name": "Feder", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 6 + }, + { + "id": "red_feather", + "iconID": "items_misc:15", + "name": "Rote Feder", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 11 + }, + { + "id": "clay", + "iconID": "actorconditions_1:9", + "name": "Lehmklumpen", + "category": "other", + "hasManualPrice": 1, + "baseMarketCost": 1 + }, + { + "id": "gem6", + "iconID": "items_misc:4", + "name": "Schimmernder Edelstein", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 26 + }, + { + "id": "gem8", + "iconID": "actorconditions_1:50", + "name": "Brilliant", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 68 + } +] diff --git a/AndorsTrail/res/raw-de/itemlist_quest.json b/AndorsTrail/res/raw-de/itemlist_quest.json new file mode 100644 index 000000000..f27cf43f1 --- /dev/null +++ b/AndorsTrail/res/raw-de/itemlist_quest.json @@ -0,0 +1,188 @@ +[ + { + "id": "tail_caverat", + "iconID": "items_misc:38", + "name": "Schwanz einer Höhlenratte", + "category": "animal", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "tail_trainingrat", + "iconID": "items_misc:38", + "name": "Kleiner Rattenschwanz", + "category": "animal", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "ring_mikhail", + "iconID": "items_jewelry:0", + "name": "Mikhail's Ring", + "category": "ring", + "baseMarketCost": 15, + "equipEffect": { + "increaseAttackChance": 10 + } + }, + { + "id": "neck_irogotu", + "iconID": "items_jewelry:7", + "name": "Irogotu's Halskette", + "category": "neck", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 30, + "equipEffect": { + "increaseBlockChance": 5, + "increaseDamageResistance": 1 + } + }, + { + "id": "ring_gandir", + "iconID": "items_jewelry:0", + "name": "Gandir's Ring", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "dagger_venom", + "iconID": "items_weapons:17", + "name": "Giftdolch", + "category": "dagger", + "displaytype": 3, + "baseMarketCost": 15, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 10, + "increaseCriticalSkill": 5, + "setCriticalMultiplier": 2, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "key_luthor", + "iconID": "items_misc:21", + "name": "Schlüssel von Luthor", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "calomyran_secrets", + "iconID": "items_books:0", + "name": "Calomyranische Geheimnisse", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "heartstone", + "iconID": "items_misc:6", + "name": "Herzstein", + "category": "gem", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "vacor_spell", + "iconID": "items_books:7", + "name": "Teil von Vacor's Zauberspruch", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "ring_unzel", + "iconID": "items_jewelry:0", + "name": "Unzel's Ring", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "ring_vacor", + "iconID": "items_jewelry:0", + "name": "Vacor's Ring", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "boots_unzel", + "iconID": "items_armours:29", + "name": "Unzel's Abwehrstiefel", + "category": "feet_lthr", + "displaytype": 3, + "baseMarketCost": 185, + "equipEffect": { + "increaseBlockChance": 8 + } + }, + { + "id": "boots_vacor", + "iconID": "items_armours:29", + "name": "Vacor's Angriffsstiefel", + "category": "feet_lthr", + "displaytype": 3, + "baseMarketCost": 185, + "equipEffect": { + "increaseAttackChance": 9, + "increaseBlockChance": 2 + } + }, + { + "id": "necklace_flagstone", + "iconID": "items_jewelry:6", + "name": "Flagstone Warden's Halskette", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "packhide", + "iconID": "items_armours:15", + "name": "Wolfpack's Fell", + "category": "bdy_hide", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 121, + "equipEffect": { + "increaseAttackChance": -15, + "increaseBlockChance": 2, + "increaseDamageResistance": 1 + } + }, + { + "id": "sword_flagstone", + "iconID": "items_weapons:7", + "name": "Flagstone's Stolz", + "category": "lsword", + "displaytype": 3, + "baseMarketCost": 169, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 21, + "increaseCriticalSkill": 10, + "setCriticalMultiplier": 2, + "increaseAttackDamage": { + "min": 1, + "max": 6 + } + } + } +] diff --git a/AndorsTrail/res/raw-de/itemlist_rings.json b/AndorsTrail/res/raw-de/itemlist_rings.json new file mode 100644 index 000000000..6c9425cc4 --- /dev/null +++ b/AndorsTrail/res/raw-de/itemlist_rings.json @@ -0,0 +1,124 @@ +[ + { + "id": "ring_dmg1", + "iconID": "items_jewelry:0", + "name": "Angriffsring +1", + "category": "ring", + "baseMarketCost": 215, + "equipEffect": { + "increaseAttackDamage": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "ring_dmg2", + "iconID": "items_jewelry:1", + "name": "Angriffsring +2", + "category": "ring", + "baseMarketCost": 398, + "equipEffect": { + "increaseAttackDamage": { + "min": 2, + "max": 2 + } + } + }, + { + "id": "ring_dmg5", + "iconID": "items_jewelry:2", + "name": "Angriffsring +5", + "category": "ring", + "displaytype": 4, + "baseMarketCost": 2014, + "equipEffect": { + "increaseAttackDamage": { + "min": 5, + "max": 5 + } + } + }, + { + "id": "ring_dmg6", + "iconID": "items_jewelry:3", + "name": "Angriffsring +6", + "category": "ring", + "displaytype": 4, + "baseMarketCost": 3186, + "equipEffect": { + "increaseAttackDamage": { + "min": 6, + "max": 6 + } + } + }, + { + "id": "ring_block1", + "iconID": "items_jewelry:0", + "name": "Geringer Schutzring", + "category": "ring", + "displaytype": 4, + "baseMarketCost": 1239, + "equipEffect": { + "increaseBlockChance": 10 + } + }, + { + "id": "ring_block2", + "iconID": "items_jewelry:0", + "name": "Polierter Schutzring", + "category": "ring", + "displaytype": 4, + "baseMarketCost": 3866, + "equipEffect": { + "increaseBlockChance": 15 + } + }, + { + "id": "ring_atkch1", + "iconID": "items_jewelry:0", + "name": "Ring der Treffsicherheit", + "category": "ring", + "baseMarketCost": 215, + "equipEffect": { + "increaseAttackChance": 15 + } + }, + { + "id": "ring1", + "iconID": "items_jewelry:0", + "name": "Einfacher Ring", + "category": "ring", + "hasManualPrice": 1, + "baseMarketCost": 13, + "equipEffect": { + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "ring2", + "iconID": "items_jewelry:0", + "name": "Polierter Ring", + "category": "ring", + "hasManualPrice": 1, + "baseMarketCost": 21, + "equipEffect": { + "increaseBlockChance": 1 + } + }, + { + "id": "ring_jinxed1", + "iconID": "items_jewelry:2", + "name": "Verfluchter Ring des Widerstands", + "category": "ring", + "baseMarketCost": 229, + "equipEffect": { + "increaseBlockChance": -9, + "increaseDamageResistance": 1 + } + } +] diff --git a/AndorsTrail/res/raw-de/itemlist_v0610_1.json b/AndorsTrail/res/raw-de/itemlist_v0610_1.json new file mode 100644 index 000000000..6c5e430be --- /dev/null +++ b/AndorsTrail/res/raw-de/itemlist_v0610_1.json @@ -0,0 +1,1021 @@ +[ + { + "id": "dagger_shadow_priests", + "iconID": "items_weapons:17", + "name": "Dolch des Schattenpriesters", + "category": "dagger", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 15, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 20, + "increaseCriticalSkill": 20, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "sword_hard_iron", + "iconID": "items_weapons:0", + "name": "Gehärtetes Eisenschwert", + "category": "lsword", + "hasManualPrice": 0, + "baseMarketCost": 369, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 15, + "increaseAttackDamage": { + "min": 2, + "max": 4 + } + } + }, + { + "id": "club_fine_wooden", + "iconID": "items_weapons:42", + "name": "Feiner Holzknüppel", + "category": "club", + "hasManualPrice": 0, + "baseMarketCost": 245, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 12, + "increaseAttackDamage": { + "min": 0, + "max": 7 + } + } + }, + { + "id": "axe_fine_iron", + "iconID": "items_weapons:56", + "name": "Feine Eisenaxt", + "category": "axe", + "hasManualPrice": 0, + "baseMarketCost": 365, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 9, + "increaseAttackDamage": { + "min": 4, + "max": 6 + } + } + }, + { + "id": "longsword_hard_iron", + "iconID": "items_weapons:1", + "name": "Gehärtetes Eisenlangschwert", + "category": "lsword", + "hasManualPrice": 0, + "baseMarketCost": 362, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 14, + "increaseAttackDamage": { + "min": 2, + "max": 6 + } + } + }, + { + "id": "broadsword_fine_iron", + "iconID": "items_weapons:5", + "name": "Feines Eisenbreitschwert", + "category": "bsword", + "hasManualPrice": 0, + "baseMarketCost": 422, + "equipEffect": { + "increaseAttackCost": 7, + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 4, + "max": 10 + } + } + }, + { + "id": "dagger_sharp_steel", + "iconID": "items_weapons:14", + "name": "Scharfer Stahldolch", + "category": "dagger", + "hasManualPrice": 0, + "baseMarketCost": 1428, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 24, + "increaseAttackDamage": { + "min": 2, + "max": 4 + } + } + }, + { + "id": "sword_balanced_steel", + "iconID": "items_weapons:7", + "name": "Kriegsstahlschwert", + "category": "lsword", + "hasManualPrice": 0, + "baseMarketCost": 2797, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 32, + "increaseAttackDamage": { + "min": 3, + "max": 7 + } + } + }, + { + "id": "broadsword_fine_steel", + "iconID": "items_weapons:6", + "name": "Feines Stahlbreitschwert", + "category": "bsword", + "hasManualPrice": 0, + "baseMarketCost": 1206, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 20, + "increaseAttackDamage": { + "min": 4, + "max": 11 + } + } + }, + { + "id": "sword_defenders", + "iconID": "items_weapons:2", + "name": "Klinge des Verteidigers", + "category": "lsword", + "hasManualPrice": 0, + "baseMarketCost": 1711, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 26, + "increaseAttackDamage": { + "min": 3, + "max": 7 + }, + "increaseBlockChance": 3 + } + }, + { + "id": "sword_villains", + "iconID": "items_weapons:16", + "name": "Villain's Klinge", + "category": "ssword", + "hasManualPrice": 0, + "baseMarketCost": 1665, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 20, + "increaseCriticalSkill": 5, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "sword_challengers", + "iconID": "items_weapons:1", + "name": "Eisenschwert des Herausforderers", + "category": "lsword", + "hasManualPrice": 0, + "baseMarketCost": 785, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 20, + "increaseAttackDamage": { + "min": 2, + "max": 6 + } + } + }, + { + "id": "sword_fencing", + "iconID": "items_weapons:13", + "name": "Fechtklinge", + "category": "rapier", + "hasManualPrice": 0, + "baseMarketCost": 922, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 14, + "increaseAttackDamage": { + "min": 2, + "max": 5 + }, + "increaseBlockChance": 5 + } + }, + { + "id": "club_brutal", + "iconID": "items_weapons:44", + "name": "Morgenstern", + "category": "mace", + "hasManualPrice": 0, + "baseMarketCost": 2522, + "equipEffect": { + "increaseAttackCost": 7, + "increaseAttackChance": 20, + "increaseCriticalSkill": 5, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 2, + "max": 21 + } + } + }, + { + "id": "axe_gutsplitter", + "iconID": "items_weapons:58", + "name": "Bauchschlitzer", + "category": "axe2h", + "hasManualPrice": 0, + "baseMarketCost": 2733, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 21, + "increaseAttackDamage": { + "min": 7, + "max": 17 + } + } + }, + { + "id": "hammer_skullcrusher", + "iconID": "items_weapons:45", + "name": "Schädelbrecher", + "category": "hammer2h", + "hasManualPrice": 0, + "baseMarketCost": 3142, + "equipEffect": { + "increaseAttackCost": 7, + "increaseAttackChance": 20, + "increaseCriticalSkill": 5, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 0, + "max": 26 + } + } + }, + { + "id": "shield_crude_wooden", + "iconID": "items_armours:0", + "name": "Plumpes Faustschild aus Holz", + "category": "buckler", + "hasManualPrice": 0, + "baseMarketCost": 31, + "equipEffect": { + "increaseBlockChance": 1 + } + }, + { + "id": "shield_cracked_wooden", + "iconID": "items_armours:0", + "name": "Gerissenes Faustschild aus Holz", + "category": "buckler", + "hasManualPrice": 0, + "baseMarketCost": 34, + "equipEffect": { + "increaseAttackChance": -2, + "increaseBlockChance": 2 + } + }, + { + "id": "shield_wooden_buckler", + "iconID": "items_armours:0", + "name": "Gebrauchtes Faustschild aus Holz", + "category": "buckler", + "hasManualPrice": 0, + "baseMarketCost": 92, + "equipEffect": { + "increaseAttackChance": -2, + "increaseBlockChance": 3 + } + }, + { + "id": "shield_wooden", + "iconID": "items_armours:2", + "name": "Holzschild", + "category": "shld_wd_li", + "hasManualPrice": 0, + "baseMarketCost": 514, + "equipEffect": { + "increaseAttackChance": -4, + "increaseBlockChance": 8 + } + }, + { + "id": "shield_wooden_defender", + "iconID": "items_armours:2", + "name": "Hölzerner Verteidiger", + "category": "shld_wd_li", + "hasManualPrice": 0, + "baseMarketCost": 1996, + "equipEffect": { + "increaseAttackChance": -8, + "increaseCriticalSkill": -5, + "increaseBlockChance": 14, + "increaseDamageResistance": 1 + } + }, + { + "id": "hat_hard_leather", + "iconID": "items_armours:24", + "name": "Gehärtete Lederkappe", + "category": "hd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 648, + "equipEffect": { + "increaseAttackChance": -3, + "increaseCriticalSkill": -1, + "increaseBlockChance": 8 + } + }, + { + "id": "hat_fine_leather", + "iconID": "items_armours:24", + "name": "Feine Lederkappe", + "category": "hd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 846, + "equipEffect": { + "increaseAttackChance": -3, + "increaseCriticalSkill": -2, + "increaseBlockChance": 9 + } + }, + { + "id": "hat_leather_vision", + "iconID": "items_armours:24", + "name": "Lederkappe der beschränkten Sicht", + "category": "hd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 971, + "equipEffect": { + "increaseAttackChance": -3, + "increaseCriticalSkill": -4, + "increaseBlockChance": 10 + } + }, + { + "id": "helm_crude_iron", + "iconID": "items_armours:25", + "name": "Plumper Eisenhelm", + "category": "hd_mtl_hv", + "hasManualPrice": 0, + "baseMarketCost": 1120, + "equipEffect": { + "increaseAttackChance": -3, + "increaseCriticalSkill": -5, + "increaseBlockChance": 11 + } + }, + { + "id": "shirt_torn", + "iconID": "items_armours:14", + "name": "Gerissenes Hemd", + "category": "bdy_clth", + "hasManualPrice": 0, + "baseMarketCost": 92, + "equipEffect": { + "increaseAttackChance": -2, + "increaseBlockChance": 3 + } + }, + { + "id": "shirt_weathered", + "iconID": "items_armours:14", + "name": "Zersetztes Hemd", + "category": "bdy_clth", + "hasManualPrice": 0, + "baseMarketCost": 125, + "equipEffect": { + "increaseAttackChance": -1, + "increaseBlockChance": 3 + } + }, + { + "id": "shirt_patched_cloth", + "iconID": "items_armours:14", + "name": "Geflicktes Stoffhemd", + "category": "bdy_clth", + "hasManualPrice": 0, + "baseMarketCost": 208, + "equipEffect": { + "increaseBlockChance": 4 + } + }, + { + "id": "armour_crude_leather", + "iconID": "items_armours:16", + "name": "Plumpe Lederrüstung", + "category": "bdy_lthr", + "hasManualPrice": 0, + "baseMarketCost": 514, + "equipEffect": { + "increaseAttackChance": -4, + "increaseBlockChance": 8 + } + }, + { + "id": "armour_firm_leather", + "iconID": "items_armours:16", + "name": "Stabile Lederrüstung", + "category": "bdy_lthr", + "hasManualPrice": 0, + "baseMarketCost": 417, + "equipEffect": { + "increaseMoveCost": 1, + "increaseBlockChance": 8 + } + }, + { + "id": "armour_rigid_leather", + "iconID": "items_armours:16", + "name": "Versteifte Lederrüstung", + "category": "bdy_lthr", + "hasManualPrice": 0, + "baseMarketCost": 625, + "equipEffect": { + "increaseMoveCost": 1, + "increaseAttackChance": -1, + "increaseBlockChance": 9 + } + }, + { + "id": "armour_rigid_chain", + "iconID": "items_armours:17", + "name": "Versteifte Kettenrüstung", + "category": "chmail", + "hasManualPrice": 0, + "baseMarketCost": 4667, + "equipEffect": { + "increaseAttackCost": 1, + "increaseAttackChance": -5, + "increaseBlockChance": 23 + } + }, + { + "id": "armour_superior_chain", + "iconID": "items_armours:17", + "name": "Gute Kettenrüstung", + "category": "chmail", + "hasManualPrice": 0, + "baseMarketCost": 5992, + "equipEffect": { + "increaseAttackChance": -9, + "increaseBlockChance": 23 + } + }, + { + "id": "armour_chain_champ", + "iconID": "items_armours:17", + "name": "Kettenrüstung des Champions", + "category": "chmail", + "hasManualPrice": 0, + "baseMarketCost": 6808, + "equipEffect": { + "increaseMaxHP": 2, + "increaseAttackChance": -9, + "increaseCriticalSkill": -5, + "increaseBlockChance": 24 + } + }, + { + "id": "armour_leather_villain", + "iconID": "items_armours:16", + "name": "Villain's Lederrüstung", + "category": "bdy_lthr", + "hasManualPrice": 0, + "baseMarketCost": 3700, + "equipEffect": { + "increaseMoveCost": -1, + "increaseAttackChance": -4, + "increaseCriticalSkill": 3, + "increaseBlockChance": 15 + } + }, + { + "id": "armour_misfortune", + "iconID": "items_armours:15", + "name": "Lederhemd des Unglücks", + "category": "bdy_lthr", + "hasManualPrice": 0, + "baseMarketCost": 2459, + "equipEffect": { + "increaseAttackChance": -5, + "increaseAttackDamage": { + "min": -1, + "max": -1 + }, + "increaseBlockChance": 15 + } + }, + { + "id": "gloves_barbrawler", + "iconID": "items_armours:35", + "name": "Handschuhe des Kneipenraufboldes", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 95, + "equipEffect": { + "increaseAttackChance": 5, + "increaseBlockChance": 2 + } + }, + { + "id": "gloves_fumbling", + "iconID": "items_armours:35", + "name": "Stümperhafte Handschuhe", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": -432, + "equipEffect": { + "increaseAttackChance": -5, + "increaseBlockChance": 1 + } + }, + { + "id": "gloves_crude_cloth", + "iconID": "items_armours:35", + "name": "Plumpe Stoffhandschuhe", + "category": "hnd_cloth", + "hasManualPrice": 0, + "baseMarketCost": 31, + "equipEffect": { + "increaseBlockChance": 1 + } + }, + { + "id": "gloves_crude_leather", + "iconID": "items_armours:35", + "name": "Plumpe Lederhandschuhe", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 180, + "equipEffect": { + "increaseAttackChance": -4, + "increaseBlockChance": 6 + } + }, + { + "id": "gloves_troublemaker", + "iconID": "items_armours:36", + "name": "Handschuhe des Hitzkopfes", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 501, + "equipEffect": { + "increaseMaxHP": 1, + "increaseAttackChance": 7, + "increaseCriticalSkill": 4, + "increaseBlockChance": 4 + } + }, + { + "id": "gloves_guards", + "iconID": "items_armours:37", + "name": "Handschuhe des Wachpostens", + "category": "hnd_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 636, + "equipEffect": { + "increaseMaxHP": 3, + "increaseAttackChance": 3, + "increaseBlockChance": 5 + } + }, + { + "id": "gloves_leather_attack", + "iconID": "items_armours:35", + "name": "Lederhandschuhe des Angriffs", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 510, + "equipEffect": { + "increaseMaxHP": 3, + "increaseAttackChance": 13, + "increaseBlockChance": -2 + } + }, + { + "id": "gloves_woodcutter", + "iconID": "items_armours:35", + "name": "Handschuhe des Holzfällers", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 426, + "equipEffect": { + "increaseMaxHP": 3, + "increaseAttackChance": 8, + "increaseBlockChance": 1 + } + }, + { + "id": "boots_crude_leather", + "iconID": "items_armours:28", + "name": "Plumpe Lederstiefel", + "category": "feet_lthr", + "hasManualPrice": 0, + "baseMarketCost": 31, + "equipEffect": { + "increaseBlockChance": 1 + } + }, + { + "id": "boots_sewn", + "iconID": "items_armours:28", + "name": "Genähtes Schuhwerk", + "category": "feet_clth", + "hasManualPrice": 0, + "baseMarketCost": 73, + "equipEffect": { + "increaseBlockChance": 2 + } + }, + { + "id": "boots_coward", + "iconID": "items_armours:28", + "name": "Stiefel des Feiglings", + "category": "feet_lthr", + "hasManualPrice": 0, + "baseMarketCost": 933, + "equipEffect": { + "increaseMoveCost": -1, + "increaseBlockChance": 2 + } + }, + { + "id": "boots_hard_leather", + "iconID": "items_armours:30", + "name": "Gehärtete Lederstiefel", + "category": "feet_lthr", + "hasManualPrice": 0, + "baseMarketCost": 626, + "equipEffect": { + "increaseMoveCost": 1, + "increaseAttackChance": -4, + "increaseBlockChance": 10 + } + }, + { + "id": "boots_defender", + "iconID": "items_armours:30", + "name": "Stiefel des Verteidigers", + "category": "feet_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 1190, + "equipEffect": { + "increaseMaxHP": 2, + "increaseBlockChance": 9 + } + }, + { + "id": "necklace_shield_0", + "iconID": "items_jewelry:7", + "name": "Geringe schützende Halskette", + "category": "neck", + "hasManualPrice": 0, + "baseMarketCost": 131, + "equipEffect": { + "increaseBlockChance": 3 + } + }, + { + "id": "necklace_strike", + "iconID": "items_jewelry:6", + "name": "Halskette des Treffers", + "category": "neck", + "hasManualPrice": 0, + "baseMarketCost": 832, + "equipEffect": { + "increaseMaxHP": 5, + "increaseCriticalSkill": 5 + } + }, + { + "id": "necklace_defender_stone", + "iconID": "items_jewelry:7", + "name": "Stein des Verteidigers", + "category": "neck", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 1325, + "equipEffect": { + "increaseDamageResistance": 1 + } + }, + { + "id": "necklace_protector", + "iconID": "items_jewelry:7", + "name": "Halskette des Beschützers", + "category": "neck", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 3207, + "equipEffect": { + "increaseMaxHP": 5, + "increaseDamageResistance": 2 + } + }, + { + "id": "ring_crude_combat", + "iconID": "items_jewelry:0", + "name": "Plumper Kampfring", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 44, + "equipEffect": { + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "ring_crude_surehit", + "iconID": "items_jewelry:0", + "name": "Plumper Ring der Treffsicherheit", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 52, + "equipEffect": { + "increaseAttackChance": 7 + } + }, + { + "id": "ring_crude_block", + "iconID": "items_jewelry:0", + "name": "Plumper Schutzring", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 73, + "equipEffect": { + "increaseBlockChance": 2 + } + }, + { + "id": "ring_rough_life", + "iconID": "items_jewelry:0", + "name": "Unebener Ring der Lebenskraft", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 100, + "equipEffect": { + "increaseMaxHP": 1 + } + }, + { + "id": "ring_fumbling", + "iconID": "items_jewelry:0", + "name": "Stümperhafter Ring", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": -463, + "equipEffect": { + "increaseAttackChance": -5 + } + }, + { + "id": "ring_rough_damage", + "iconID": "items_jewelry:0", + "name": "Unebener Angriffsring", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 56, + "equipEffect": { + "increaseAttackDamage": { + "min": 0, + "max": 2 + } + } + }, + { + "id": "ring_barbrawler", + "iconID": "items_jewelry:0", + "name": "Ring des Kneipenraufboldes", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 222, + "equipEffect": { + "increaseAttackChance": 12, + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "ring_dmg_3", + "iconID": "items_jewelry:0", + "name": "Angriffsring +3", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 624, + "equipEffect": { + "increaseAttackDamage": { + "min": 3, + "max": 3 + } + } + }, + { + "id": "ring_life", + "iconID": "items_jewelry:0", + "name": "Ring der Lebenskraft", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 557, + "equipEffect": { + "increaseMaxHP": 5 + } + }, + { + "id": "ring_taverbrawler", + "iconID": "items_jewelry:0", + "name": "Ring des Tavernenraufboldes", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 314, + "equipEffect": { + "increaseAttackChance": 12, + "increaseAttackDamage": { + "min": 0, + "max": 3 + } + } + }, + { + "id": "ring_defender", + "iconID": "items_jewelry:0", + "name": "Ring des Verteidigers", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 755, + "equipEffect": { + "increaseAttackChance": -6, + "increaseBlockChance": 11 + } + }, + { + "id": "ring_challenger", + "iconID": "items_jewelry:0", + "name": "Ring des Herausforderers", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 408, + "equipEffect": { + "increaseAttackChance": 12, + "increaseBlockChance": 4 + } + }, + { + "id": "ring_dmg_4", + "iconID": "items_jewelry:2", + "name": "Angriffsring +4", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 1168, + "equipEffect": { + "increaseAttackDamage": { + "min": 4, + "max": 4 + } + } + }, + { + "id": "ring_troublemaker", + "iconID": "items_jewelry:2", + "name": "Ring des Hitzkopfes", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 797, + "equipEffect": { + "increaseAttackChance": 15, + "increaseAttackDamage": { + "min": 2, + "max": 4 + } + } + }, + { + "id": "ring_guardian", + "iconID": "items_jewelry:2", + "name": "Ring des Beschützers", + "category": "ring", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 1489, + "equipEffect": { + "increaseAttackChance": 19, + "increaseAttackDamage": { + "min": 3, + "max": 5 + } + } + }, + { + "id": "ring_block", + "iconID": "items_jewelry:2", + "name": "Schutzring", + "category": "ring", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 2192, + "equipEffect": { + "increaseBlockChance": 13 + } + }, + { + "id": "ring_backstab", + "iconID": "items_jewelry:2", + "name": "Ring des Verrats", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 1363, + "equipEffect": { + "increaseAttackChance": 17, + "increaseCriticalSkill": 7, + "increaseBlockChance": 3 + } + }, + { + "id": "ring_polished_combat", + "iconID": "items_jewelry:2", + "name": "Polierter Kampfring", + "category": "ring", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 1346, + "equipEffect": { + "increaseMaxHP": 5, + "increaseAttackChance": 15, + "increaseAttackDamage": { + "min": 1, + "max": 5 + } + } + }, + { + "id": "ring_villain", + "iconID": "items_jewelry:2", + "name": "Villain's Ring", + "category": "ring", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 2750, + "equipEffect": { + "increaseMaxHP": 4, + "increaseAttackChance": 25, + "increaseAttackDamage": { + "min": 3, + "max": 6 + } + } + }, + { + "id": "ring_polished_backstab", + "iconID": "items_jewelry:2", + "name": "Polierter Ring des Verrats", + "category": "ring", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 2731, + "equipEffect": { + "increaseAttackChance": 21, + "increaseCriticalSkill": 7, + "increaseAttackDamage": { + "min": 4, + "max": 4 + } + } + }, + { + "id": "ring_protector", + "iconID": "items_jewelry:4", + "name": "Ring des Beschützers", + "category": "ring", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 3744, + "equipEffect": { + "increaseMaxHP": 3, + "increaseAttackChance": 20, + "increaseAttackDamage": { + "min": 0, + "max": 3 + }, + "increaseBlockChance": 14 + } + } +] diff --git a/AndorsTrail/res/raw-de/itemlist_v0610_2.json b/AndorsTrail/res/raw-de/itemlist_v0610_2.json new file mode 100644 index 000000000..7408b2e30 --- /dev/null +++ b/AndorsTrail/res/raw-de/itemlist_v0610_2.json @@ -0,0 +1,190 @@ +[ + { + "id": "erinith_book", + "iconID": "items_books:0", + "name": "Erinith's Buch", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "hadracor_waspwing", + "iconID": "items_misc:52", + "name": "Riesiger Wespenflügel", + "category": "animal", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "tinlyn_bells", + "iconID": "items_necklaces_1:10", + "name": "Tinlyn's Schafsglocken", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "tinlyn_sheep_meat", + "iconID": "items_consumables:25", + "name": "Fleisch von Tinlyn's Schafen", + "category": "animal", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "rogorn_qitem", + "iconID": "items_books:7", + "name": "Teil eines Gemäldes", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "fg_ironsword", + "iconID": "items_weapons:0", + "name": "Feygard Eisenschwert", + "category": "lsword", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 1, + "max": 5 + } + } + }, + { + "id": "fg_ironsword_d", + "iconID": "items_weapons:0", + "name": "Minderwertiges Feygard Eisenschwert", + "category": "lsword", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": -50 + } + }, + { + "id": "buceth_vial", + "iconID": "items_consumables:47", + "name": "Buceth's Ampulle mit grüner Flüssigkeit", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "chaosreaper", + "iconID": "items_weapons:49", + "name": "Zepter des Chaos", + "category": "scepter", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 339, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": -30, + "increaseAttackDamage": { + "min": 0, + "max": 2 + } + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 5, + "duration": 3, + "chance": 50 + } + ] + } + }, + { + "id": "izthiel_claw", + "iconID": "items_misc:47", + "name": "Izthiel Klauen", + "category": "animal_e", + "hasManualPrice": 1, + "baseMarketCost": 1, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 3, + "duration": 6, + "chance": 100 + }, + { + "condition": "foodp", + "magnitude": 3, + "duration": 10, + "chance": 20 + } + ] + } + }, + { + "id": "iqhan_pendant", + "iconID": "items_necklaces_1:2", + "name": "Iqhan Anhänger", + "category": "neck", + "hasManualPrice": 1, + "baseMarketCost": 10, + "equipEffect": { + "increaseAttackChance": 6 + } + }, + { + "id": "shadowfang", + "iconID": "items_weapons_3:41", + "name": "Reißzahn des Schattens", + "category": "ssword", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 512, + "equipEffect": { + "increaseMaxHP": -20, + "increaseAttackCost": 4, + "increaseAttackChance": 40, + "increaseAttackDamage": { + "min": 2, + "max": 5 + } + }, + "hitEffect": { + "conditionsSource": [ + { + "condition": "fatigue_minor", + "magnitude": 1, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "gloves_life", + "iconID": "items_armours_2:1", + "name": "Handschuhe der Lebenskraft", + "category": "hnd_lthr", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 390, + "equipEffect": { + "increaseMaxHP": 9, + "increaseAttackChance": 5, + "increaseBlockChance": 3 + } + } +] diff --git a/AndorsTrail/res/raw-de/itemlist_v0611_1.json b/AndorsTrail/res/raw-de/itemlist_v0611_1.json new file mode 100644 index 000000000..e3c25fd7c --- /dev/null +++ b/AndorsTrail/res/raw-de/itemlist_v0611_1.json @@ -0,0 +1,477 @@ +[ + { + "id": "pot_focus_dmg", + "iconID": "items_consumables:39", + "name": "Trank der Wucht", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 272, + "useEffect": { + "conditionsSource": [ + { + "condition": "focus_dmg", + "magnitude": 1, + "duration": 4, + "chance": 100 + } + ] + } + }, + { + "id": "pot_focus_dmg2", + "iconID": "items_consumables:39", + "name": "Starker Trank der Wucht", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 630, + "useEffect": { + "conditionsSource": [ + { + "condition": "focus_dmg", + "magnitude": 2, + "duration": 4, + "chance": 100 + } + ] + } + }, + { + "id": "pot_focus_ac", + "iconID": "items_consumables:37", + "name": "Trank der Treffsicherheit", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 210, + "useEffect": { + "conditionsSource": [ + { + "condition": "focus_ac", + "magnitude": 1, + "duration": 4, + "chance": 100 + } + ] + } + }, + { + "id": "pot_focus_ac2", + "iconID": "items_consumables:37", + "name": "Starker Trank der Treffsicherheit", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 618, + "useEffect": { + "conditionsSource": [ + { + "condition": "focus_ac", + "magnitude": 2, + "duration": 4, + "chance": 100 + } + ] + } + }, + { + "id": "pot_scaradon", + "iconID": "items_consumables:48", + "name": "Scaradon Extrakt", + "category": "pot", + "hasManualPrice": 0, + "baseMarketCost": 28, + "useEffect": { + "increaseCurrentHP": { + "min": 5, + "max": 10 + } + } + }, + { + "id": "remgard_shield_1", + "iconID": "items_armours_3:24", + "name": "Remgard Schild", + "category": "shld_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 2189, + "equipEffect": { + "increaseAttackChance": -3, + "increaseBlockChance": 9, + "increaseDamageResistance": 1 + } + }, + { + "id": "remgard_shield_2", + "iconID": "items_armours_3:24", + "name": "Remgard Kampfschild", + "category": "shld_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 2720, + "equipEffect": { + "increaseAttackChance": -3, + "increaseBlockChance": 11, + "increaseDamageResistance": 1 + } + }, + { + "id": "helm_combat1", + "iconID": "items_armours:25", + "name": "Kampfhelm", + "category": "hd_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 455, + "equipEffect": { + "increaseAttackChance": 5, + "increaseBlockChance": 6 + } + }, + { + "id": "helm_combat2", + "iconID": "items_armours:25", + "name": "Verbesserter Kampfhelm", + "category": "hd_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 485, + "equipEffect": { + "increaseAttackChance": 7, + "increaseBlockChance": 6 + } + }, + { + "id": "helm_combat3", + "iconID": "items_armours:26", + "name": "Remgard Kampfhelm", + "category": "hd_mtl_hv", + "hasManualPrice": 0, + "baseMarketCost": 1540, + "equipEffect": { + "increaseMaxHP": 1, + "increaseAttackChance": -3, + "increaseCriticalSkill": -5, + "increaseBlockChance": 12 + } + }, + { + "id": "helm_redeye1", + "iconID": "items_armours:24", + "name": "Kappe der roten Augen", + "category": "hd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 1, + "equipEffect": { + "increaseMaxHP": -5, + "increaseBlockChance": 8 + } + }, + { + "id": "helm_redeye2", + "iconID": "items_armours:24", + "name": "Kappe der blutigen Augen", + "category": "hd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 1, + "equipEffect": { + "increaseMaxHP": -5, + "increaseAttackDamage": { + "min": 0, + "max": 1 + }, + "increaseBlockChance": 8 + } + }, + { + "id": "helm_defend1", + "iconID": "items_armours_3:31", + "name": "Helm des Verteidigers", + "category": "hd_mtl_hv", + "hasManualPrice": 0, + "baseMarketCost": 1975, + "equipEffect": { + "increaseAttackChance": -3, + "increaseBlockChance": 8, + "increaseDamageResistance": 1 + } + }, + { + "id": "helm_protector0", + "iconID": "items_armours_3:31", + "name": "seltsam aussehender Helm", + "category": "hd_mtl_li", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxHP": -9, + "increaseAttackDamage": { + "min": 0, + "max": 1 + }, + "increaseBlockChance": 5 + } + }, + { + "id": "helm_protector", + "iconID": "items_armours_3:31", + "name": "Dunkler Beschützer", + "category": "hd_mtl_li", + "displaytype": 3, + "hasManualPrice": 0, + "baseMarketCost": 3119, + "equipEffect": { + "increaseMaxHP": -6, + "increaseAttackDamage": { + "min": 0, + "max": 1 + }, + "increaseBlockChance": 13, + "increaseDamageResistance": 1 + } + }, + { + "id": "armour_chain_remg", + "iconID": "items_armours_3:13", + "name": "Remgard Kettenrüstung", + "category": "chmail", + "hasManualPrice": 0, + "baseMarketCost": 8927, + "equipEffect": { + "increaseAttackChance": -7, + "increaseBlockChance": 25 + } + }, + { + "id": "armour_cvest1", + "iconID": "items_armours_3:5", + "name": "Kampfweste", + "category": "bdy_lt", + "hasManualPrice": 0, + "baseMarketCost": 1116, + "equipEffect": { + "increaseAttackChance": 15, + "increaseBlockChance": 8 + } + }, + { + "id": "armour_cvest2", + "iconID": "items_armours_3:5", + "name": "Remgard Kampfweste", + "category": "bdy_lt", + "hasManualPrice": 0, + "baseMarketCost": 1244, + "equipEffect": { + "increaseAttackChance": 17, + "increaseBlockChance": 8 + } + }, + { + "id": "gloves_leather1", + "iconID": "items_armours:38", + "name": "Gehärtete Lederhandschuhe", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 757, + "equipEffect": { + "increaseMaxHP": 3, + "increaseAttackChance": 2, + "increaseBlockChance": 6 + } + }, + { + "id": "gloves_arulir", + "iconID": "items_armours_2:1", + "name": "Handschuhe aus Arulirfell", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 1793, + "equipEffect": { + "increaseAttackChance": -3, + "increaseBlockChance": 7, + "increaseDamageResistance": 1 + } + }, + { + "id": "gloves_combat1", + "iconID": "items_armours:36", + "name": "Kampfhandschuhe", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 956, + "equipEffect": { + "increaseMaxHP": 4, + "increaseAttackChance": -5, + "increaseBlockChance": 9 + } + }, + { + "id": "gloves_combat2", + "iconID": "items_armours:36", + "name": "Verbesserte Kampfhandschuhe", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 1204, + "equipEffect": { + "increaseMaxHP": 4, + "increaseAttackChance": -5, + "increaseBlockChance": 10 + } + }, + { + "id": "gloves_remgard1", + "iconID": "items_armours:37", + "name": "Remgard Kampfhandschuhe", + "category": "hnd_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 1205, + "equipEffect": { + "increaseMaxHP": 4, + "increaseBlockChance": 8 + } + }, + { + "id": "gloves_remgard2", + "iconID": "items_armours:37", + "name": "Verbesserte Remgard Handschuhe", + "category": "hnd_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 1326, + "equipEffect": { + "increaseMaxHP": 5, + "increaseAttackChance": 2, + "increaseBlockChance": 8 + } + }, + { + "id": "gloves_guard1", + "iconID": "items_armours:38", + "name": "Handschuhe des Beschützers", + "category": "hnd_lthr", + "hasManualPrice": 1, + "baseMarketCost": 601, + "equipEffect": { + "increaseAttackChance": -9, + "increaseCriticalSkill": -5, + "increaseBlockChance": 14 + } + }, + { + "id": "boots_combat1", + "iconID": "items_armours:30", + "name": "Kampfschuhe", + "category": "feet_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackChance": 7, + "increaseBlockChance": 7 + } + }, + { + "id": "boots_combat2", + "iconID": "items_armours:30", + "name": "Verbesserte Kampfschuhe", + "category": "feet_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackChance": 7, + "increaseBlockChance": 11 + } + }, + { + "id": "boots_remgard1", + "iconID": "items_armours:31", + "name": "Remgard Schuhe", + "category": "feet_mtl_hv", + "hasManualPrice": 0, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxHP": 4, + "increaseBlockChance": 12 + } + }, + { + "id": "boots_guard1", + "iconID": "items_armours:31", + "name": "Schuhe des Beschützers", + "category": "feet_mtl_hv", + "hasManualPrice": 0, + "baseMarketCost": 0, + "equipEffect": { + "increaseBlockChance": 7, + "increaseDamageResistance": 1 + } + }, + { + "id": "boots_brawler", + "iconID": "items_armours_3:38", + "name": "Schuhe des Kneipenraufboldes", + "category": "feet_lthr", + "hasManualPrice": 0, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxHP": 2, + "increaseCriticalSkill": 4, + "increaseBlockChance": 7 + } + }, + { + "id": "marrowtaint", + "iconID": "items_necklaces_1:9", + "name": "Marrow's Verderben", + "category": "neck", + "displaytype": 3, + "hasManualPrice": 0, + "baseMarketCost": 4760, + "equipEffect": { + "increaseMaxHP": 5, + "increaseAttackCost": -1, + "increaseAttackChance": 9, + "increaseBlockChance": 9 + } + }, + { + "id": "valugha_gown", + "iconID": "items_armours_3:2", + "name": "Valugha's Seidengewand", + "category": "bdy_clth", + "displaytype": 3, + "hasManualPrice": 0, + "baseMarketCost": 3109, + "equipEffect": { + "increaseMaxHP": 5, + "increaseMoveCost": -1, + "increaseAttackChance": 30, + "increaseBlockChance": -10 + } + }, + { + "id": "valugha_hat", + "iconID": "items_armours_3:1", + "name": "Valugha's schimmernder Hut", + "category": "hd_cloth", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 648, + "equipEffect": { + "increaseMaxHP": 3, + "increaseMoveCost": -1, + "increaseAttackChance": 15, + "increaseAttackDamage": { + "min": -2, + "max": -2 + }, + "increaseBlockChance": -5 + } + }, + { + "id": "hat_crit", + "iconID": "items_armours_3:0", + "name": "Gefederter Hut des Holzfällers", + "category": "hd_cloth", + "displaytype": 3, + "hasManualPrice": 0, + "baseMarketCost": 1, + "equipEffect": { + "increaseCriticalSkill": 4, + "increaseBlockChance": -5 + } + } +] diff --git a/AndorsTrail/res/raw-de/itemlist_v0611_2.json b/AndorsTrail/res/raw-de/itemlist_v0611_2.json new file mode 100644 index 000000000..9959c90de --- /dev/null +++ b/AndorsTrail/res/raw-de/itemlist_v0611_2.json @@ -0,0 +1,71 @@ +[ + { + "id": "thorin_bone", + "iconID": "items_misc:44", + "name": "Angenagter Knochen", + "category": "animal", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "spider", + "iconID": "items_misc:40", + "name": "Tote Spinne", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 1 + }, + { + "id": "irdegh", + "iconID": "items_misc:49", + "name": "Irdegh Giftdrüse", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 5 + }, + { + "id": "arulir_skin", + "iconID": "items_misc:39", + "name": "Arulir Fell", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 4 + }, + { + "id": "algangror_rat", + "iconID": "items_misc:38", + "name": "Eigenartig aussehender Rattenschwanz", + "category": "animal", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "oegyth", + "iconID": "items_misc:35", + "name": "Oegyth Kristall", + "category": "gem", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "toszylae_heart", + "iconID": "items_misc:6", + "name": "Dämonenherz", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "potion_rotworm", + "iconID": "items_consumables:63", + "name": "Kazaul-Maden", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + } +] diff --git a/AndorsTrail/res/raw-de/itemlist_v0611_3.json b/AndorsTrail/res/raw-de/itemlist_v0611_3.json new file mode 100644 index 000000000..a4a15679f --- /dev/null +++ b/AndorsTrail/res/raw-de/itemlist_v0611_3.json @@ -0,0 +1,47 @@ +[ + { + "id": "lyson_marrow", + "iconID": "items_consumables:63", + "name": "Glasröhrchen mit Lyson Marrowextrakt", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "algangror_idol", + "iconID": "items_misc_2:220", + "name": "Kleine Figur", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "algangror_ring", + "iconID": "items_rings_1:11", + "name": "Algangror's Ring", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "kaverin_message", + "iconID": "items_books:7", + "name": "Kaverin's versiegelte Nachricht", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "vacor_map", + "iconID": "items_books:9", + "name": "Karte zu Vacor's altem Versteck", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + } +] diff --git a/AndorsTrail/res/raw-de/itemlist_v068.json b/AndorsTrail/res/raw-de/itemlist_v068.json new file mode 100644 index 000000000..4dea83448 --- /dev/null +++ b/AndorsTrail/res/raw-de/itemlist_v068.json @@ -0,0 +1,190 @@ +[ + { + "id": "armor_chain1", + "iconID": "items_armours:17", + "name": "Rostige Kettenrüstung", + "category": "chmail", + "baseMarketCost": 3629, + "equipEffect": { + "increaseAttackChance": -9, + "increaseBlockChance": 20 + } + }, + { + "id": "armor_chain2", + "iconID": "items_armours:17", + "name": "Einfache Kettenrüstung", + "category": "chmail", + "baseMarketCost": 4191, + "equipEffect": { + "increaseAttackChance": -10, + "increaseBlockChance": 22 + } + }, + { + "id": "hat_leather1", + "iconID": "items_armours:24", + "name": "Einfache Lederkappe", + "category": "hd_lthr", + "baseMarketCost": 261, + "equipEffect": { + "increaseAttackChance": -2, + "increaseBlockChance": 7 + } + }, + { + "id": "sleepingmead", + "iconID": "items_consumables:51", + "name": "Vorbereiteter Schlafmet", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "ffguard_qitem", + "iconID": "items_jewelry:0", + "name": "Ring der Feygard Patrouille", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "shield6", + "iconID": "items_armours:3", + "name": "Turmschild aus Holz", + "category": "shld_twr", + "baseMarketCost": 952, + "equipEffect": { + "increaseAttackChance": -6, + "increaseBlockChance": 12 + } + }, + { + "id": "shield7", + "iconID": "items_armours:3", + "name": "Turmschild aus Hartholz", + "category": "shld_twr", + "baseMarketCost": 1538, + "equipEffect": { + "increaseAttackChance": -6, + "increaseBlockChance": 14 + } + }, + { + "id": "club_wood1", + "iconID": "items_weapons:44", + "name": "Schwerer Eisenknüppel", + "category": "mace", + "baseMarketCost": 950, + "equipEffect": { + "increaseAttackCost": 8, + "increaseAttackChance": 15, + "increaseCriticalSkill": 5, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 2, + "max": 11 + } + } + }, + { + "id": "club_wood2", + "iconID": "items_weapons:44", + "name": "Kriegseisenknüppel", + "category": "mace", + "baseMarketCost": 2194, + "equipEffect": { + "increaseAttackCost": 7, + "increaseAttackChance": 10, + "increaseCriticalSkill": 10, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 2, + "max": 11 + } + } + }, + { + "id": "gloves_grip", + "iconID": "items_armours:35", + "name": "Handschuhe der besseren Haftung", + "category": "hnd_lthr", + "baseMarketCost": 471, + "equipEffect": { + "increaseAttackChance": 9, + "increaseBlockChance": 1 + } + }, + { + "id": "gloves_fancy", + "iconID": "items_armours:35", + "name": "Modische Handschuhe", + "category": "hnd_cloth", + "baseMarketCost": 78, + "equipEffect": { + "increaseAttackChance": 5 + } + }, + { + "id": "ring_crit1", + "iconID": "items_jewelry:0", + "name": "Schlagring", + "category": "ring", + "displaytype": 4, + "baseMarketCost": 2921, + "equipEffect": { + "increaseCriticalSkill": 5 + } + }, + { + "id": "ring_crit2", + "iconID": "items_jewelry:0", + "name": "Brutaler Schlagring", + "category": "ring", + "displaytype": 4, + "baseMarketCost": 3455, + "equipEffect": { + "increaseAttackChance": -3, + "increaseCriticalSkill": 7 + } + }, + { + "id": "armor_stone", + "iconID": "items_armours:17", + "name": "Steinbrustpanzer", + "category": "bdy_hv", + "displaytype": 3, + "baseMarketCost": 52, + "equipEffect": { + "increaseAttackCost": 2, + "increaseBlockChance": 22, + "increaseDamageResistance": 1 + } + }, + { + "id": "ring_shadow0", + "iconID": "items_jewelry:2", + "name": "Ring der helleren Schatten", + "category": "ring", + "displaytype": 2, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackChance": 25, + "increaseCriticalSkill": 6, + "increaseAttackDamage": { + "min": 4, + "max": 7 + }, + "increaseBlockChance": 5, + "addedConditions": [ + { + "condition": "regen", + "magnitude": 1 + } + ] + } + } +] diff --git a/AndorsTrail/res/raw-de/itemlist_v069.json b/AndorsTrail/res/raw-de/itemlist_v069.json new file mode 100644 index 000000000..e96ae489d --- /dev/null +++ b/AndorsTrail/res/raw-de/itemlist_v069.json @@ -0,0 +1,464 @@ +[ + { + "id": "rapier_lifesteal", + "iconID": "items_weapons:71", + "name": "Vampirdegen", + "category": "rapier", + "displaytype": 2, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxHP": 5, + "increaseAttackCost": 5, + "increaseAttackChance": 21, + "increaseAttackDamage": { + "min": 1, + "max": 6 + } + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 0, + "max": 3 + } + }, + "killEffect": { + "increaseCurrentHP": { + "min": 3, + "max": 3 + } + } + }, + { + "id": "dagger_barbed", + "iconID": "items_weapons:17", + "name": "Spitzdolch", + "category": "dagger", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 15, + "increaseBlockChance": 5 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "bleeding_wound", + "magnitude": 1, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "elytharan_redeemer", + "iconID": "items_weapons:70", + "name": "Elytharanischer Erlöser", + "category": "2hsword", + "displaytype": 2, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxAP": 2, + "increaseAttackCost": 5, + "increaseAttackChance": 25, + "increaseAttackDamage": { + "min": 3, + "max": 8 + }, + "increaseBlockChance": 5, + "addedConditions": [ + { + "condition": "bless", + "magnitude": 1 + } + ] + } + }, + { + "id": "clouded_rage", + "iconID": "items_weapons:71", + "name": "Raserei des Schattens", + "category": "rapier", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 21, + "increaseAttackDamage": { + "min": 3, + "max": 6 + }, + "increaseBlockChance": 5 + }, + "killEffect": { + "conditionsSource": [ + { + "condition": "rage_minor", + "magnitude": 1, + "duration": 1, + "chance": 50 + } + ] + } + }, + { + "id": "shadow_slayer", + "iconID": "items_weapons:60", + "name": "Schatten des Mörders", + "category": "axe2h", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxAP": 2, + "increaseAttackCost": 7, + "increaseAttackChance": 25, + "increaseCriticalSkill": 10, + "setCriticalMultiplier": 2, + "increaseAttackDamage": { + "min": 5, + "max": 9 + } + }, + "killEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "ring_shadow_embrace", + "iconID": "items_jewelry:0", + "name": "Umarmung des Schattens", + "category": "ring", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxHP": 20, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 2, + "max": 2 + } + } + }, + { + "id": "bwm_dagger", + "iconID": "items_weapons:19", + "name": "Blackwater Dolch", + "category": "dagger", + "displaytype": 4, + "hasManualPrice": 1, + "baseMarketCost": 539, + "equipEffect": { + "increaseAttackCost": 3, + "increaseAttackChance": 40, + "increaseAttackDamage": { + "min": 1, + "max": 1 + }, + "increaseBlockChance": 5, + "addedConditions": [ + { + "condition": "blackwater_misery", + "magnitude": 1 + } + ] + } + }, + { + "id": "bwm_dagger_venom", + "iconID": "items_weapons:19", + "name": "Blackwater Giftdolch", + "category": "dagger", + "displaytype": 4, + "hasManualPrice": 1, + "baseMarketCost": 1552, + "equipEffect": { + "increaseAttackCost": 3, + "increaseAttackChance": 45, + "increaseAttackDamage": { + "min": 1, + "max": 1 + }, + "addedConditions": [ + { + "condition": "blackwater_misery", + "magnitude": 1 + } + ] + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_weak", + "magnitude": 1, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "bwm_ironsword", + "iconID": "items_weapons:0", + "name": "Blackwater Eisenschwert", + "category": "lsword", + "displaytype": 4, + "hasManualPrice": 1, + "baseMarketCost": 1224, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 50, + "increaseAttackDamage": { + "min": 3, + "max": 7 + }, + "increaseBlockChance": 5, + "addedConditions": [ + { + "condition": "blackwater_misery", + "magnitude": 1 + } + ] + } + }, + { + "id": "bwm_leather_armour", + "iconID": "items_armours:15", + "name": "Blackwater Lederrüstung", + "category": "bdy_lthr", + "displaytype": 4, + "hasManualPrice": 1, + "baseMarketCost": 2551, + "equipEffect": { + "increaseBlockChance": 25, + "increaseDamageResistance": 1, + "addedConditions": [ + { + "condition": "blackwater_misery", + "magnitude": 1 + } + ] + } + }, + { + "id": "bwm_leather_cap", + "iconID": "items_armours:24", + "name": "Blackwater Lederkappe", + "category": "hd_lthr", + "displaytype": 4, + "hasManualPrice": 1, + "baseMarketCost": 722, + "equipEffect": { + "increaseMaxHP": 5, + "increaseBlockChance": 21, + "addedConditions": [ + { + "condition": "blackwater_misery", + "magnitude": 1 + } + ] + } + }, + { + "id": "bwm_combat_ring", + "iconID": "items_jewelry:2", + "name": "Blackwater Kampfring", + "category": "ring", + "displaytype": 4, + "hasManualPrice": 1, + "baseMarketCost": 595, + "equipEffect": { + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 0, + "max": 7 + }, + "addedConditions": [ + { + "condition": "blackwater_misery", + "magnitude": 1 + } + ] + } + }, + { + "id": "bwm_brew", + "iconID": "items_consumables:51", + "name": "Blackwater Bräu", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 57, + "useEffect": { + "increaseCurrentHP": { + "min": 15, + "max": 15 + }, + "conditionsSource": [ + { + "condition": "intoxicated", + "magnitude": 1, + "duration": 10, + "chance": 100 + } + ] + } + }, + { + "id": "woodcutter_hatchet", + "iconID": "items_weapons:57", + "name": "Holzfällerbeil", + "category": "axe", + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 9, + "increaseAttackDamage": { + "min": 6, + "max": 12 + } + } + }, + { + "id": "woodcutter_boots", + "iconID": "items_armours:30", + "name": "Holzfällerstiefel", + "category": "feet_lthr", + "baseMarketCost": 873, + "equipEffect": { + "increaseMaxHP": 1, + "increaseAttackChance": 3, + "increaseBlockChance": 8 + } + }, + { + "id": "heavy_club", + "iconID": "items_weapons:44", + "name": "Schwerer Knüppel", + "category": "mace", + "baseMarketCost": 1229, + "equipEffect": { + "increaseAttackCost": 7, + "increaseAttackChance": 15, + "increaseCriticalSkill": 5, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 2, + "max": 15 + } + } + }, + { + "id": "pot_speed_1", + "iconID": "items_consumables:41", + "name": "Kleiner Trank der Geschwindigkeit", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 261, + "useEffect": { + "conditionsSource": [ + { + "condition": "speed_minor", + "magnitude": 1, + "duration": 5, + "chance": 100 + } + ] + } + }, + { + "id": "pot_poison_weak", + "iconID": "items_consumables:40", + "name": "Schwaches Gift", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 125, + "useEffect": { + "conditionsSource": [ + { + "condition": "poison_weak", + "magnitude": 1, + "duration": 5, + "chance": 100 + } + ] + } + }, + { + "id": "pot_poison_weak_antidote", + "iconID": "items_consumables:54", + "name": "Schwaches Gegengift", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 337, + "useEffect": { + "conditionsSource": [ + { + "condition": "poison_weak", + "magnitude": -99, + "chance": 100 + } + ] + } + }, + { + "id": "pot_bleeding_ointment", + "iconID": "items_consumables:35", + "name": "Wundbalsam", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 310, + "useEffect": { + "conditionsSource": [ + { + "condition": "bleeding_wound", + "magnitude": -99, + "chance": 100 + } + ] + } + }, + { + "id": "pot_fatigue_restore", + "iconID": "items_consumables:41", + "name": "Erholungstrank", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 210, + "useEffect": { + "conditionsSource": [ + { + "condition": "fatigue_minor", + "magnitude": -99, + "chance": 100 + } + ] + } + }, + { + "id": "pot_blind_rage", + "iconID": "items_consumables:63", + "name": "Trank der wilden Raserei", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 495, + "useEffect": { + "conditionsSource": [ + { + "condition": "rage_minor", + "magnitude": 1, + "duration": 5, + "chance": 100 + } + ] + } + } +] diff --git a/AndorsTrail/res/raw-de/itemlist_v069_2.json b/AndorsTrail/res/raw-de/itemlist_v069_2.json new file mode 100644 index 000000000..d7903c63b --- /dev/null +++ b/AndorsTrail/res/raw-de/itemlist_v069_2.json @@ -0,0 +1,38 @@ +[ + { + "id": "rusted_iron_sword", + "iconID": "items_weapons:0", + "name": "Rostiges Eisenschwert", + "category": "lsword", + "baseMarketCost": 52, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "broken_buckler", + "iconID": "items_armours:0", + "name": "Gebrochenes Faustschild aus Holz", + "category": "buckler", + "baseMarketCost": 120, + "equipEffect": { + "increaseAttackChance": -5, + "increaseBlockChance": 1 + } + }, + { + "id": "used_gloves", + "iconID": "items_armours:35", + "name": "Blutverschmierte Handschuhe", + "category": "hnd_lthr", + "baseMarketCost": 56, + "equipEffect": { + "increaseBlockChance": 1 + } + } +] diff --git a/AndorsTrail/res/raw-de/itemlist_v069_questitems.json b/AndorsTrail/res/raw-de/itemlist_v069_questitems.json new file mode 100644 index 000000000..185acf7e3 --- /dev/null +++ b/AndorsTrail/res/raw-de/itemlist_v069_questitems.json @@ -0,0 +1,58 @@ +[ + { + "id": "bwm_claws", + "iconID": "items_misc:47", + "name": "Klauen des weißen Lindwurms", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 35 + }, + { + "id": "bwm_permit", + "iconID": "items_books:8", + "name": "Gefälschte Papiere für Blackwater", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "bjorgur_dagger", + "iconID": "items_weapons:14", + "name": "Bjorgur's Familiendolch", + "category": "dagger", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackCost": 5 + } + }, + { + "id": "q_kazaul_vial", + "iconID": "items_consumables:57", + "name": "Ampulle des reinigenden Geistes", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "guthbered_id", + "iconID": "items_jewelry:0", + "name": "Guthbered's Ring", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "harlenn_id", + "iconID": "items_jewelry:0", + "name": "Harlenn's Ring", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + } +] diff --git a/AndorsTrail/res/raw-de/itemlist_weapons.json b/AndorsTrail/res/raw-de/itemlist_weapons.json new file mode 100644 index 000000000..b9320b8f9 --- /dev/null +++ b/AndorsTrail/res/raw-de/itemlist_weapons.json @@ -0,0 +1,255 @@ +[ + { + "id": "club1", + "iconID": "items_weapons:42", + "name": "Holzknüppel", + "category": "club", + "baseMarketCost": 7, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "club3", + "iconID": "items_weapons:44", + "name": "Eisenknüppel", + "category": "mace", + "baseMarketCost": 253, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 2, + "max": 7 + } + } + }, + { + "id": "ironsword0", + "iconID": "items_weapons:0", + "name": "Plumpes Eisenschwert", + "category": "lsword", + "baseMarketCost": 12, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "hammer0", + "iconID": "items_weapons:45", + "name": "Eisenhammer", + "category": "hammer", + "baseMarketCost": 12, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "hammer1", + "iconID": "items_weapons:45", + "name": "Riesenhammer", + "category": "hammer2h", + "baseMarketCost": 121, + "equipEffect": { + "increaseAttackCost": 10, + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 4, + "max": 7 + } + } + }, + { + "id": "dagger0", + "iconID": "items_weapons:14", + "name": "Eisendolch", + "category": "dagger", + "baseMarketCost": 12, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "dagger1", + "iconID": "items_weapons:14", + "name": "Scharfer Eisendolch", + "category": "dagger", + "baseMarketCost": 53, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 20, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "dagger2", + "iconID": "items_weapons:14", + "name": "Guter Eisendolch", + "category": "dagger", + "baseMarketCost": 70, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 25, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "shortsword1", + "iconID": "items_weapons:15", + "name": "Eisenkurzschwert", + "category": "ssword", + "baseMarketCost": 78, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 15, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "ironsword1", + "iconID": "items_weapons:0", + "name": "Eisenschwert", + "category": "lsword", + "baseMarketCost": 78, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 1, + "max": 3 + } + } + }, + { + "id": "ironsword2", + "iconID": "items_weapons:1", + "name": "Eisenlangschwert", + "category": "lsword", + "baseMarketCost": 121, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 1, + "max": 4 + } + } + }, + { + "id": "broadsword1", + "iconID": "items_weapons:5", + "name": "Eisenbreitschwert", + "category": "bsword", + "baseMarketCost": 251, + "equipEffect": { + "increaseAttackCost": 7, + "increaseAttackChance": 2, + "increaseAttackDamage": { + "min": 1, + "max": 10 + } + } + }, + { + "id": "broadsword2", + "iconID": "items_weapons:6", + "name": "Stahlbreitschwert", + "category": "bsword", + "baseMarketCost": 582, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 15, + "increaseAttackDamage": { + "min": 3, + "max": 10 + } + } + }, + { + "id": "steelsword1", + "iconID": "items_weapons:7", + "name": "Stahlschwert", + "category": "lsword", + "baseMarketCost": 874, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 24, + "increaseAttackDamage": { + "min": 3, + "max": 7 + } + } + }, + { + "id": "axe1", + "iconID": "items_weapons:56", + "name": "Holzfälleraxt", + "category": "axe", + "baseMarketCost": 24, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 1, + "max": 3 + } + } + }, + { + "id": "axe2", + "iconID": "items_weapons:56", + "name": "Eisenaxt", + "category": "axe", + "baseMarketCost": 312, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 2, + "max": 5 + } + } + }, + { + "id": "quickdagger1", + "iconID": "items_weapons:14", + "name": "Schnellstoßdolch", + "category": "dagger", + "displaytype": 4, + "baseMarketCost": 512, + "equipEffect": { + "increaseAttackCost": 3, + "increaseAttackChance": 20, + "increaseBlockChance": -20 + } + } +] diff --git a/AndorsTrail/res/raw-de/monsterlist_crossglen_animals.json b/AndorsTrail/res/raw-de/monsterlist_crossglen_animals.json new file mode 100644 index 000000000..7f0788305 --- /dev/null +++ b/AndorsTrail/res/raw-de/monsterlist_crossglen_animals.json @@ -0,0 +1,469 @@ +[ + { + "id": "tiny_rat", + "iconID": "monsters_rats:0", + "name": "Kleine Ratte", + "spawnGroup": "trainingrat", + "monsterClass": 4, + "unique": 1, + "maxHP": 2, + "attackCost": 10, + "attackChance": 50, + "droplistID": "trainingrat", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "cave_rat", + "iconID": "monsters_rats:1", + "name": "Höhlenratte", + "spawnGroup": "crossglen_caverat", + "monsterClass": 4, + "maxHP": 5, + "attackCost": 10, + "attackChance": 90, + "droplistID": "rat", + "attackDamage": { + "min": 2, + "max": 2 + } + }, + { + "id": "tough_cave_rat", + "iconID": "monsters_rats:1", + "name": "Kräftige Höhlenratte", + "spawnGroup": "crossglen_caverat2", + "monsterClass": 4, + "maxHP": 5, + "attackCost": 5, + "attackChance": 90, + "droplistID": "rat", + "attackDamage": { + "min": 3, + "max": 3 + } + }, + { + "id": "strong_cave_rat", + "iconID": "monsters_rats:3", + "name": "Starke Höhlenratte", + "spawnGroup": "crossglen_caveboss", + "monsterClass": 4, + "unique": 1, + "maxHP": 20, + "attackCost": 5, + "attackChance": 100, + "blockChance": 10, + "droplistID": "caveratboss", + "attackDamage": { + "min": 2, + "max": 4 + } + }, + { + "id": "black_ant", + "iconID": "monsters_insects:0", + "name": "Schwarze Ameise", + "spawnGroup": "crossglen_ant", + "monsterClass": 1, + "maxHP": 3, + "attackCost": 10, + "attackChance": 70, + "droplistID": "insect", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "small_wasp", + "iconID": "monsters_insects:1", + "name": "Kleine Wespe", + "spawnGroup": "crossglen_wasp", + "monsterClass": 1, + "maxHP": 4, + "attackCost": 10, + "attackChance": 70, + "droplistID": "wasp", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "beetle", + "iconID": "monsters_insects:4", + "name": "Käfer", + "spawnGroup": "crossglen_beetle", + "monsterClass": 1, + "maxHP": 4, + "attackCost": 10, + "attackChance": 70, + "droplistID": "insect", + "attackDamage": { + "min": 3, + "max": 3 + } + }, + { + "id": "forest_wasp", + "iconID": "monsters_insects:1", + "name": "Waldwespe", + "spawnGroup": "forestwasp", + "monsterClass": 1, + "maxHP": 6, + "attackCost": 10, + "attackChance": 70, + "droplistID": "wasp", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "forest_ant", + "iconID": "monsters_insects:0", + "name": "Waldameise", + "spawnGroup": "forestant", + "monsterClass": 1, + "maxHP": 4, + "attackCost": 10, + "attackChance": 90, + "blockChance": 10, + "droplistID": "insect", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "yellow_forest_ant", + "iconID": "monsters_insects:2", + "name": "Gelbe Waldameise", + "spawnGroup": "forestant", + "monsterClass": 1, + "maxHP": 5, + "attackCost": 10, + "attackChance": 100, + "blockChance": 15, + "droplistID": "insect", + "attackDamage": { + "min": 2, + "max": 2 + } + }, + { + "id": "small_rabid_dog", + "iconID": "monsters_dogs:1", + "name": "Kleiner tollwütiger Hund", + "spawnGroup": "forestdog", + "monsterClass": 4, + "maxHP": 6, + "attackCost": 10, + "attackChance": 90, + "droplistID": "canine", + "attackDamage": { + "min": 2, + "max": 2 + } + }, + { + "id": "forest_snake", + "iconID": "monsters_snakes:1", + "name": "Waldschlange", + "spawnGroup": "forestsnake", + "monsterClass": 7, + "maxHP": 7, + "attackCost": 10, + "attackChance": 110, + "blockChance": 10, + "droplistID": "snake", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "young_cave_snake", + "iconID": "monsters_snakes:3", + "name": "Junge Höhlenschlange", + "spawnGroup": "cavesnake1", + "monsterClass": 7, + "maxHP": 8, + "attackCost": 5, + "attackChance": 110, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 10, + "droplistID": "snake", + "attackDamage": { + "min": 2, + "max": 2 + } + }, + { + "id": "cave_snake", + "iconID": "monsters_snakes:3", + "name": "Höhlenschlange", + "spawnGroup": "cavesnake1", + "monsterClass": 7, + "maxHP": 12, + "attackCost": 5, + "attackChance": 110, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 15, + "droplistID": "snake", + "attackDamage": { + "min": 2, + "max": 2 + } + }, + { + "id": "venomous_cave_snake", + "iconID": "monsters_snakes:3", + "name": "Giftige Höhlenschlange", + "spawnGroup": "cavesnake2", + "monsterClass": 7, + "maxHP": 15, + "maxAP": 10, + "attackCost": 5, + "attackChance": 110, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 10, + "droplistID": "snake", + "attackDamage": { + "min": 2, + "max": 2 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_weak", + "magnitude": 1, + "duration": 1, + "chance": 10 + } + ] + } + }, + { + "id": "tough_cave_snake", + "iconID": "monsters_snakes:3", + "name": "Kräftige Höhlenschlange", + "spawnGroup": "cavesnake2", + "monsterClass": 7, + "maxHP": 21, + "attackCost": 5, + "attackChance": 110, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 15, + "droplistID": "snake", + "attackDamage": { + "min": 2, + "max": 2 + } + }, + { + "id": "basilisk", + "iconID": "monsters_rats:4", + "name": "Basilisk", + "spawnGroup": "cavesnake2_boss", + "monsterClass": 7, + "maxHP": 40, + "attackCost": 7, + "attackChance": 40, + "blockChance": 50, + "damageResistance": 2, + "droplistID": "cavecritter", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "snake_servant", + "iconID": "monsters_liches:0", + "name": "Schlangendiener", + "spawnGroup": "cavesnake3", + "monsterClass": 6, + "maxHP": 35, + "attackCost": 5, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 3, + "blockChance": 10, + "damageResistance": 1, + "droplistID": "lich1", + "attackDamage": { + "min": 2, + "max": 3 + } + }, + { + "id": "snake_master", + "iconID": "monsters_liches:1", + "name": "Schlangenmeister", + "spawnGroup": "cavesnake3_boss", + "monsterClass": 6, + "unique": 1, + "maxHP": 55, + "attackCost": 5, + "attackChance": 60, + "criticalSkill": 200, + "criticalMultiplier": 3, + "blockChance": 10, + "damageResistance": 4, + "droplistID": "snakemaster", + "phraseID": "snakemaster", + "attackDamage": { + "min": 1, + "max": 4 + } + }, + { + "id": "rabid_boar", + "iconID": "monsters_dogs:6", + "name": "Tollwütiger Eber", + "spawnGroup": "forestboar", + "monsterClass": 4, + "maxHP": 20, + "attackCost": 5, + "attackChance": 110, + "blockChance": 30, + "droplistID": "canineboss", + "attackDamage": { + "min": 3, + "max": 3 + } + }, + { + "id": "rabid_fox", + "iconID": "monsters_dogs:3", + "name": "Tollwütiger Fuchs", + "spawnGroup": "fox1", + "monsterClass": 4, + "maxHP": 25, + "attackCost": 5, + "attackChance": 100, + "blockChance": 50, + "droplistID": "canine", + "attackDamage": { + "min": 3, + "max": 3 + } + }, + { + "id": "yellow_cave_ant", + "iconID": "monsters_insects:2", + "name": "Gelbe Höhlenameise", + "spawnGroup": "pitcave1", + "monsterClass": 1, + "maxHP": 20, + "attackCost": 3, + "attackChance": 30, + "blockChance": 80, + "droplistID": "insect", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "young_teeth_critter", + "iconID": "monsters_misc:0", + "name": "Junges gefräßiges Kriechtier", + "spawnGroup": "pitcave2", + "monsterClass": 7, + "maxHP": 15, + "attackCost": 2, + "attackChance": 50, + "blockChance": 70, + "droplistID": "cavecritter", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "teeth_critter", + "iconID": "monsters_misc:0", + "name": "Gefräßiges Kriechtier", + "spawnGroup": "pitcave2", + "monsterClass": 7, + "maxHP": 25, + "attackCost": 2, + "attackChance": 60, + "criticalSkill": 10, + "criticalMultiplier": 3, + "blockChance": 70, + "droplistID": "cavecritter", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "young_minotaur", + "iconID": "monsters_misc:5", + "name": "Junger Minotaurus", + "spawnGroup": "pitcave2", + "monsterClass": 5, + "maxHP": 45, + "attackCost": 6, + "attackChance": 20, + "criticalSkill": 40, + "criticalMultiplier": 3, + "blockChance": 50, + "damageResistance": 2, + "droplistID": "cavemonster", + "attackDamage": { + "min": 4, + "max": 4 + } + }, + { + "id": "strong_minotaur", + "iconID": "monsters_misc:5", + "name": "Starker Minotaurus", + "spawnGroup": "pitcave2_boss", + "monsterClass": 5, + "maxHP": 53, + "attackCost": 6, + "attackChance": 40, + "criticalSkill": 50, + "criticalMultiplier": 3, + "blockChance": 50, + "damageResistance": 2, + "droplistID": "cavemonster", + "attackDamage": { + "min": 5, + "max": 5 + } + }, + { + "id": "irogotu", + "iconID": "monsters_liches:0", + "name": "Irogotu", + "spawnGroup": "pitcave_boss", + "monsterClass": 6, + "unique": 1, + "maxHP": 61, + "attackCost": 3, + "attackChance": 50, + "criticalSkill": 40, + "criticalMultiplier": 3, + "blockChance": 70, + "damageResistance": 4, + "droplistID": "irogotu", + "phraseID": "irogotu", + "attackDamage": { + "min": 2, + "max": 5 + } + } +] diff --git a/AndorsTrail/res/raw-de/monsterlist_crossglen_npcs.json b/AndorsTrail/res/raw-de/monsterlist_crossglen_npcs.json new file mode 100644 index 000000000..0abe34b70 --- /dev/null +++ b/AndorsTrail/res/raw-de/monsterlist_crossglen_npcs.json @@ -0,0 +1,119 @@ +[ + { + "id": "mikhail", + "iconID": "monsters_mage2:0", + "name": "Mikhail", + "spawnGroup": "mikhail", + "monsterClass": 0, + "phraseID": "mikhail_start_select" + }, + { + "id": "leta", + "iconID": "monsters_men:2", + "name": "Leta", + "spawnGroup": "leta", + "monsterClass": 0, + "phraseID": "leta1" + }, + { + "id": "audir", + "iconID": "monsters_men:0", + "name": "Audir", + "spawnGroup": "audir", + "monsterClass": 0, + "droplistID": "shop_audir", + "phraseID": "audir1" + }, + { + "id": "arambold", + "iconID": "monsters_men:3", + "name": "Arambold", + "spawnGroup": "arambold", + "monsterClass": 0, + "droplistID": "shop_arambold", + "phraseID": "arambold1" + }, + { + "id": "tharal", + "iconID": "monsters_men:4", + "name": "Tharal", + "spawnGroup": "tharal", + "monsterClass": 0, + "droplistID": "shop_tharal", + "phraseID": "tharal1" + }, + { + "id": "drunk", + "iconID": "monsters_rltiles3:14", + "name": "Betrunkener", + "spawnGroup": "drunk", + "monsterClass": 0, + "phraseID": "drunk1" + }, + { + "id": "mara", + "iconID": "monsters_men:7", + "name": "Mara", + "spawnGroup": "mara", + "monsterClass": 0, + "droplistID": "shop_mara", + "phraseID": "mara1" + }, + { + "id": "gruil", + "iconID": "monsters_rogue1:0", + "name": "Gruil", + "spawnGroup": "gruil", + "monsterClass": 0, + "droplistID": "shop_gruil", + "phraseID": "gruil1" + }, + { + "id": "leonid", + "iconID": "monsters_men:3", + "name": "Leonid", + "spawnGroup": "leonid", + "monsterClass": 0, + "phraseID": "leonid1" + }, + { + "id": "farmer", + "iconID": "monsters_man1:0", + "name": "Bauer", + "spawnGroup": "crossglen_farmer1", + "monsterClass": 0, + "phraseID": "farm1" + }, + { + "id": "tired_farmer", + "iconID": "monsters_man1:0", + "name": "Erschöpfter Bauer", + "spawnGroup": "crossglen_farmer2", + "monsterClass": 0, + "phraseID": "farm2" + }, + { + "id": "oromir", + "iconID": "monsters_man1:0", + "name": "Oromir", + "spawnGroup": "oromir", + "monsterClass": 0, + "phraseID": "oromir1" + }, + { + "id": "odair", + "iconID": "monsters_men:8", + "name": "Odair", + "spawnGroup": "odair", + "monsterClass": 0, + "phraseID": "odair1" + }, + { + "id": "jan", + "iconID": "monsters_rltiles3:14", + "name": "Jan", + "spawnGroup": "jan", + "monsterClass": 0, + "phraseID": "jan_start_select" + } +] diff --git a/AndorsTrail/res/raw-de/monsterlist_fallhaven_animals.json b/AndorsTrail/res/raw-de/monsterlist_fallhaven_animals.json new file mode 100644 index 000000000..ce30e2766 --- /dev/null +++ b/AndorsTrail/res/raw-de/monsterlist_fallhaven_animals.json @@ -0,0 +1,292 @@ +[ + { + "id": "lost_spirit", + "iconID": "monsters_rltiles2:45", + "name": "Verlorener Geist", + "spawnGroup": "minorhaunt1", + "monsterClass": 8, + "maxHP": 15, + "attackCost": 10, + "attackChance": 50, + "blockChance": 10, + "damageResistance": 3, + "droplistID": "haunt", + "phraseID": "haunt", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "lost_soul", + "iconID": "monsters_rltiles2:45", + "name": "Verlorene Seele", + "spawnGroup": "minorhaunt2", + "monsterClass": 8, + "maxHP": 15, + "attackCost": 10, + "attackChance": 50, + "blockChance": 10, + "damageResistance": 4, + "droplistID": "haunt", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "haunting", + "iconID": "monsters_ghost1:0", + "name": "Geist", + "spawnGroup": "haunt3", + "monsterClass": 8, + "maxHP": 31, + "maxAP": 10, + "moveCost": 10, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 30, + "damageResistance": 1, + "droplistID": "haunt", + "attackDamage": { + "min": 1, + "max": 5 + } + }, + { + "id": "skeletal_warrior", + "iconID": "monsters_skeleton1:0", + "name": "Skelettkrieger", + "spawnGroup": "skeleton1", + "monsterClass": 3, + "maxHP": 52, + "maxAP": 10, + "moveCost": 10, + "attackCost": 5, + "attackChance": 60, + "blockChance": 40, + "damageResistance": 1, + "droplistID": "skeleton", + "attackDamage": { + "min": 1, + "max": 3 + } + }, + { + "id": "skeletal_master", + "iconID": "monsters_skeleton2:0", + "name": "Skelettmeister", + "spawnGroup": "skeletonmaster", + "monsterClass": 3, + "maxHP": 52, + "maxAP": 10, + "moveCost": 10, + "attackCost": 5, + "attackChance": 70, + "blockChance": 30, + "damageResistance": 2, + "droplistID": "skeleton", + "attackDamage": { + "min": 1, + "max": 3 + } + }, + { + "id": "skeleton", + "iconID": "monsters_skeleton1:0", + "name": "Skelett", + "spawnGroup": "skeleton1", + "monsterClass": 3, + "maxHP": 35, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 60, + "blockChance": 40, + "droplistID": "skeleton", + "attackDamage": { + "min": 1, + "max": 4 + } + }, + { + "id": "guardian_of_the_catacombs", + "iconID": "monsters_rltiles2:45", + "name": "Wächter der Katakomben", + "spawnGroup": "catacombguard1", + "monsterClass": 8, + "unique": 1, + "maxHP": 6, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 10, + "blockChance": 10, + "damageResistance": 3, + "droplistID": "catacombguard", + "phraseID": "catacombguard", + "attackDamage": { + "min": 1, + "max": 6 + } + }, + { + "id": "catacomb_rat", + "iconID": "monsters_rats:0", + "name": "Katakombenratte", + "spawnGroup": "catacombrat1", + "monsterClass": 4, + "maxHP": 15, + "maxAP": 10, + "moveCost": 10, + "attackCost": 3, + "attackChance": 60, + "blockChance": 40, + "droplistID": "catacombrat", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "large_catacomb_rat", + "iconID": "monsters_rats:3", + "name": "Große Katakombenratte", + "spawnGroup": "catacombrat1", + "monsterClass": 4, + "maxHP": 21, + "maxAP": 10, + "moveCost": 10, + "attackCost": 3, + "attackChance": 60, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 40, + "droplistID": "catacombrat", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "ghostly_visage", + "iconID": "monsters_ghost1:0", + "name": "Geisterhafte Erscheinung", + "spawnGroup": "catacombguard2", + "monsterClass": 8, + "maxHP": 16, + "maxAP": 10, + "moveCost": 10, + "attackCost": 5, + "attackChance": 20, + "blockChance": 20, + "damageResistance": 2, + "droplistID": "catacombguard", + "attackDamage": { + "min": 1, + "max": 4 + } + }, + { + "id": "spectre", + "iconID": "monsters_rltiles2:45", + "name": "Gespenst", + "spawnGroup": "catacombguard2", + "monsterClass": 8, + "maxHP": 15, + "maxAP": 10, + "moveCost": 10, + "attackCost": 3, + "attackChance": 50, + "blockChance": 60, + "damageResistance": 2, + "droplistID": "catacombguard", + "attackDamage": { + "min": 1, + "max": 5 + } + }, + { + "id": "apparition", + "iconID": "monsters_rltiles2:45", + "name": "Erscheinung", + "spawnGroup": "catacombguard3", + "monsterClass": 8, + "maxHP": 17, + "maxAP": 10, + "moveCost": 10, + "attackCost": 3, + "blockChance": 70, + "damageResistance": 2, + "droplistID": "catacombguard", + "attackDamage": { + "min": 1, + "max": 5 + } + }, + { + "id": "shade", + "iconID": "monsters_ghost1:0", + "name": "Schatten", + "spawnGroup": "catacombguard3", + "monsterClass": 8, + "maxHP": 16, + "maxAP": 10, + "moveCost": 10, + "attackCost": 5, + "attackChance": 20, + "blockChance": 20, + "damageResistance": 3, + "droplistID": "catacombguard", + "attackDamage": { + "min": 1, + "max": 4 + } + }, + { + "id": "young_gargoyle", + "iconID": "monsters_misc:2", + "name": "Junger Gargoyle", + "spawnGroup": "catacombguard3", + "monsterClass": 3, + "maxHP": 35, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 110, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 70, + "damageResistance": 1, + "droplistID": "catacombguard", + "attackDamage": { + "min": 2, + "max": 5 + } + }, + { + "id": "ghost_of_luthor", + "iconID": "monsters_liches:2", + "name": "Geist von Luthor", + "spawnGroup": "luthor", + "monsterClass": 6, + "unique": 1, + "maxHP": 86, + "maxAP": 10, + "moveCost": 10, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 15, + "criticalMultiplier": 2, + "blockChance": 50, + "damageResistance": 3, + "droplistID": "luthor", + "phraseID": "luthor", + "attackDamage": { + "min": 2, + "max": 5 + } + } +] diff --git a/AndorsTrail/res/raw-de/monsterlist_fallhaven_npcs.json b/AndorsTrail/res/raw-de/monsterlist_fallhaven_npcs.json new file mode 100644 index 000000000..eaf530130 --- /dev/null +++ b/AndorsTrail/res/raw-de/monsterlist_fallhaven_npcs.json @@ -0,0 +1,333 @@ +[ + { + "id": "warden", + "iconID": "monsters_men:3", + "name": "Aufseher", + "spawnGroup": "fallhaven_warden", + "monsterClass": 0, + "phraseID": "fallhaven_warden_select_1" + }, + { + "id": "guard", + "iconID": "monsters_rltiles3:14", + "name": "Wachposten", + "spawnGroup": "fallhaven_guard", + "monsterClass": 0, + "phraseID": "fallhaven_guard" + }, + { + "id": "acolyte", + "iconID": "monsters_men:4", + "name": "Messdiener", + "spawnGroup": "fallhaven_priest", + "monsterClass": 0, + "phraseID": "fallhaven_priest" + }, + { + "id": "bearded_citizen", + "iconID": "monsters_man1:0", + "name": "Bärtiger Bewohner", + "spawnGroup": "fallhaven_citizen1", + "monsterClass": 0, + "phraseID": "fallhaven_citizen1" + }, + { + "id": "old_citizen", + "iconID": "monsters_men:2", + "name": "Alter Bewohner", + "spawnGroup": "fallhaven_citizen2", + "monsterClass": 0, + "phraseID": "fallhaven_citizen2" + }, + { + "id": "tired_citizen", + "iconID": "monsters_men:7", + "name": "Erschöpfter Bewohner", + "spawnGroup": "fallhaven_citizen4", + "monsterClass": 0, + "phraseID": "fallhaven_citizen4" + }, + { + "id": "citizen", + "iconID": "monsters_man1:0", + "name": "Bewohner", + "spawnGroup": "fallhaven_citizen3", + "monsterClass": 0, + "phraseID": "fallhaven_citizen3" + }, + { + "id": "grumpy_citizen", + "iconID": "monsters_men:2", + "name": "Griesgram", + "spawnGroup": "fallhaven_citizen5", + "monsterClass": 0, + "phraseID": "fallhaven_citizen5" + }, + { + "id": "blond_citizen", + "iconID": "monsters_men:7", + "name": "Blonder Bewohner", + "spawnGroup": "fallhaven_citizen6", + "monsterClass": 0, + "phraseID": "fallhaven_citizen6" + }, + { + "id": "bucus", + "iconID": "monsters_rogue1:0", + "name": "Bucus", + "spawnGroup": "bucus", + "monsterClass": 0, + "phraseID": "bucus_welcome" + }, + { + "id": "drunkard", + "iconID": "monsters_men:0", + "name": "Säufer", + "spawnGroup": "fallhaven_drunk", + "monsterClass": 0, + "phraseID": "fallhaven_drunk" + }, + { + "id": "old_man", + "iconID": "monsters_men:5", + "name": "Alter Mann", + "spawnGroup": "fallhaven_oldman", + "monsterClass": 0, + "phraseID": "fallhaven_oldman" + }, + { + "id": "nocmar", + "iconID": "monsters_men:8", + "name": "Nocmar", + "spawnGroup": "nocmar", + "monsterClass": 0, + "droplistID": "nocmar", + "phraseID": "nocmar" + }, + { + "id": "prisoner", + "iconID": "monsters_rogue1:0", + "name": "Gefangener", + "spawnGroup": "fallhaven_prisoner", + "monsterClass": 0, + "maxHP": 1, + "maxAP": 1, + "moveCost": 1, + "attackCost": 1, + "attackChance": 0 + }, + { + "id": "ganos", + "iconID": "monsters_rogue1:0", + "name": "Ganos", + "spawnGroup": "ganos", + "monsterClass": 0, + "droplistID": "shop_ganos", + "phraseID": "ganos" + }, + { + "id": "arcir", + "iconID": "monsters_mage2:0", + "name": "Arcir", + "spawnGroup": "arcir", + "monsterClass": 0, + "phraseID": "arcir_start" + }, + { + "id": "athamyr", + "iconID": "monsters_men:4", + "name": "Athamyr", + "spawnGroup": "athamyr", + "monsterClass": 0, + "phraseID": "athamyr" + }, + { + "id": "thoronir", + "iconID": "monsters_men2:8", + "name": "Thoronir", + "spawnGroup": "thoronir", + "monsterClass": 0, + "droplistID": "shop_thoronir", + "phraseID": "thoronir_default" + }, + { + "id": "chapelgoer", + "iconID": "monsters_men:6", + "name": "Trauernde Frau", + "spawnGroup": "chapelgoer", + "monsterClass": 0, + "phraseID": "chapelgoer" + }, + { + "id": "potion_merchant", + "iconID": "monsters_mage2:0", + "name": "Händler für Tränke", + "spawnGroup": "fallhaven_potions", + "monsterClass": 0, + "droplistID": "shop_fallhaven_potions", + "phraseID": "fallhaven_potions" + }, + { + "id": "tailor", + "iconID": "monsters_men2:0", + "name": "Schneider", + "spawnGroup": "fallhaven_clothes", + "monsterClass": 0, + "droplistID": "shop_fallhaven_clothes", + "phraseID": "fallhaven_clothes" + }, + { + "id": "bela", + "iconID": "monsters_men:7", + "name": "Bela", + "spawnGroup": "bela", + "monsterClass": 0, + "droplistID": "shop_bela", + "phraseID": "bela" + }, + { + "id": "larcal", + "iconID": "monsters_men2:2", + "name": "Larcal", + "spawnGroup": "larcal", + "monsterClass": 0, + "unique": 1, + "maxHP": 51, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 25, + "blockChance": 50, + "droplistID": "larcal", + "phraseID": "larcal", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "gaela", + "iconID": "monsters_men2:9", + "name": "Gaela", + "spawnGroup": "gaela", + "monsterClass": 0, + "phraseID": "gaela" + }, + { + "id": "unnmir", + "iconID": "monsters_mage2:0", + "name": "Unnmir", + "spawnGroup": "unnmir", + "monsterClass": 0, + "phraseID": "unnmir" + }, + { + "id": "rigmor", + "iconID": "monsters_men:1", + "name": "Rigmor", + "spawnGroup": "rigmor", + "monsterClass": 0, + "phraseID": "rigmor" + }, + { + "id": "jakrar", + "iconID": "monsters_men2:2", + "name": "Jakrar", + "spawnGroup": "fallhaven_lumberjack", + "monsterClass": 0, + "phraseID": "fallhaven_lumberjack" + }, + { + "id": "alaun", + "iconID": "monsters_mage2:0", + "name": "Alaun", + "spawnGroup": "alaun", + "monsterClass": 0, + "phraseID": "alaun" + }, + { + "id": "busy_farmer", + "iconID": "monsters_man1:0", + "name": "Beschäftigter Bauer", + "spawnGroup": "fallhaven_farmer1", + "monsterClass": 0, + "phraseID": "fallhaven_farmer1" + }, + { + "id": "old_farmer", + "iconID": "monsters_mage2:0", + "name": "Alter Bauer", + "spawnGroup": "fallhaven_farmer2", + "monsterClass": 0, + "phraseID": "fallhaven_farmer2" + }, + { + "id": "khorand", + "iconID": "monsters_men:3", + "name": "Khorand", + "spawnGroup": "khorand", + "monsterClass": 0, + "phraseID": "khorand" + }, + { + "id": "vacor", + "iconID": "monsters_mage:0", + "name": "Vacor", + "spawnGroup": "vacor", + "monsterClass": 0, + "unique": 1, + "maxHP": 72, + "attackCost": 5, + "attackChance": 110, + "blockChance": 40, + "damageResistance": 2, + "droplistID": "vacor", + "phraseID": "vacor", + "attackDamage": { + "min": 4, + "max": 8 + } + }, + { + "id": "unzel", + "iconID": "monsters_men:8", + "name": "Unzel", + "spawnGroup": "unzel", + "monsterClass": 0, + "unique": 1, + "maxHP": 59, + "attackCost": 10, + "attackChance": 80, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 40, + "damageResistance": 2, + "droplistID": "unzel", + "phraseID": "unzel", + "attackDamage": { + "min": 5, + "max": 9 + } + }, + { + "id": "shady_bandit", + "iconID": "monsters_men2:9", + "name": "Dubioser Bandit", + "spawnGroup": "fallhaven_bandit", + "monsterClass": 0, + "unique": 1, + "maxHP": 45, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 50, + "damageResistance": 2, + "droplistID": "fallhaven_bandit", + "phraseID": "fallhaven_bandit", + "attackDamage": { + "min": 3, + "max": 9 + } + } +] diff --git a/AndorsTrail/res/raw-de/monsterlist_v0610_monsters1.json b/AndorsTrail/res/raw-de/monsterlist_v0610_monsters1.json new file mode 100644 index 000000000..210ff7483 --- /dev/null +++ b/AndorsTrail/res/raw-de/monsterlist_v0610_monsters1.json @@ -0,0 +1,494 @@ +[ + { + "id": "young_larval_burrower", + "iconID": "monsters_rltiles2:164", + "name": "Junger Raupengräber", + "spawnGroup": "larva_1", + "monsterClass": 1, + "maxHP": 30, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 35, + "criticalMultiplier": 3, + "blockChance": 25, + "droplistID": "larva_1", + "attackDamage": { + "min": 1, + "max": 6 + } + }, + { + "id": "larval_burrower", + "iconID": "monsters_rltiles2:164", + "name": "Raupengräber", + "spawnGroup": "larva_2", + "monsterClass": 1, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 35, + "criticalMultiplier": 3, + "blockChance": 25, + "droplistID": "larva_2", + "attackDamage": { + "min": 1, + "max": 6 + } + }, + { + "id": "larval_boss", + "iconID": "monsters_rltiles2:164", + "name": "Starker Raupengräber", + "spawnGroup": "larva_boss", + "monsterClass": 1, + "unique": 1, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 35, + "criticalMultiplier": 3, + "blockChance": 25, + "droplistID": "larva_boss", + "attackDamage": { + "min": 1, + "max": 6 + } + }, + { + "id": "rivertroll", + "iconID": "monsters_rltiles1:104", + "name": "Flusstroll", + "spawnGroup": "rivertroll", + "monsterClass": 5, + "unique": 1, + "maxHP": 210, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 30, + "criticalMultiplier": 4, + "blockChance": 65, + "damageResistance": 7, + "droplistID": "rivertroll", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "grass_ant", + "iconID": "monsters_insects:0", + "name": "Wiesenameise", + "spawnGroup": "fieldcritter_0", + "monsterClass": 1, + "maxHP": 29, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 80, + "droplistID": "fieldcritter_0", + "attackDamage": { + "min": 0, + "max": 4 + } + }, + { + "id": "grass_ant2", + "iconID": "monsters_insects:2", + "name": "Kräftige Wiesenameise", + "spawnGroup": "fieldcritter_0", + "monsterClass": 1, + "maxHP": 29, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "droplistID": "fieldcritter_0", + "attackDamage": { + "min": 1, + "max": 5 + } + }, + { + "id": "grass_beetle", + "iconID": "monsters_insects:4", + "name": "Wiesenkäfer", + "spawnGroup": "fieldcritter_1", + "monsterClass": 1, + "maxHP": 34, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 120, + "blockChance": 80, + "damageResistance": 3, + "droplistID": "fieldcritter_1", + "attackDamage": { + "min": 0, + "max": 5 + } + }, + { + "id": "grass_beetle2", + "iconID": "monsters_insects:4", + "name": "Kräftiger Wiesenkäfer", + "spawnGroup": "fieldcritter_1", + "monsterClass": 1, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 125, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "fieldcritter_1", + "attackDamage": { + "min": 1, + "max": 6 + } + }, + { + "id": "grass_snake", + "iconID": "monsters_rltiles2:25", + "name": "Wiesenschlange", + "spawnGroup": "fieldcritter_2", + "monsterClass": 7, + "maxHP": 36, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 80, + "droplistID": "fieldcritter_2", + "attackDamage": { + "min": 0, + "max": 6 + } + }, + { + "id": "grass_snake2", + "iconID": "monsters_rltiles2:25", + "name": "Kräftige Wiesenschlange", + "spawnGroup": "fieldcritter_2", + "monsterClass": 7, + "maxHP": 38, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "droplistID": "fieldcritter_2", + "attackDamage": { + "min": 1, + "max": 7 + } + }, + { + "id": "grass_lizard", + "iconID": "monsters_rltiles2:114", + "name": "Wieseneidechse", + "spawnGroup": "fieldcritter_3", + "monsterClass": 7, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 80, + "damageResistance": 3, + "droplistID": "fieldcritter_3", + "attackDamage": { + "min": 0, + "max": 8 + } + }, + { + "id": "grass_lizard2", + "iconID": "monsters_rltiles2:117", + "name": "Schwarze Wieseneidechse", + "spawnGroup": "fieldcritter_3", + "monsterClass": 7, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "fieldcritter_3", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "keknazar", + "iconID": "monsters_misc:9", + "name": "Keknazar", + "spawnGroup": "keknazar", + "monsterClass": 7, + "unique": 1, + "maxHP": 90, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 50, + "criticalSkill": 20, + "criticalMultiplier": 3, + "blockChance": 70, + "damageResistance": 8, + "droplistID": "keknazar", + "phraseID": "keknazar", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "crossroads_rat", + "iconID": "monsters_rats:0", + "name": "Ratte", + "spawnGroup": "crossroads_rat", + "monsterClass": 4, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 50, + "blockChance": 30, + "droplistID": "rat", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "fieldwasp_0", + "iconID": "monsters_insects:1", + "name": "Rasende Waldwespe", + "spawnGroup": "fieldwasp_0", + "monsterClass": 1, + "maxHP": 29, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 95, + "droplistID": "fieldwasp", + "attackDamage": { + "min": 2, + "max": 6 + } + }, + { + "id": "fieldwasp_1", + "iconID": "monsters_insects:1", + "name": "Rasende Waldwespe", + "spawnGroup": "fieldwasp_1", + "monsterClass": 1, + "maxHP": 32, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 70, + "criticalMultiplier": 3, + "blockChance": 125, + "droplistID": "fieldwasp", + "attackDamage": { + "min": 2, + "max": 6 + } + }, + { + "id": "fieldwasp_2", + "iconID": "monsters_insects:1", + "name": "Rasende Waldwespe", + "spawnGroup": "fieldwasp_2", + "monsterClass": 1, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 75, + "criticalMultiplier": 3, + "blockChance": 130, + "droplistID": "fieldwasp", + "attackDamage": { + "min": 2, + "max": 6 + } + }, + { + "id": "izthiel_1", + "iconID": "monsters_rltiles2:51", + "name": "Junger Izthiel", + "spawnGroup": "izthiel_1", + "monsterClass": 7, + "maxHP": 40, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "blockChance": 57, + "damageResistance": 5, + "droplistID": "izthiel", + "attackDamage": { + "min": 2, + "max": 7 + } + }, + { + "id": "izthiel_2", + "iconID": "monsters_rltiles2:49", + "name": "Izthiel", + "spawnGroup": "izthiel_2", + "monsterClass": 7, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "blockChance": 58, + "damageResistance": 6, + "droplistID": "izthiel", + "attackDamage": { + "min": 2, + "max": 7 + } + }, + { + "id": "izthiel_3", + "iconID": "monsters_rltiles2:48", + "name": "Starker Izthiel", + "spawnGroup": "izthiel_3", + "monsterClass": 7, + "maxHP": 52, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "blockChance": 60, + "damageResistance": 8, + "droplistID": "izthiel", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "bleeding_wound", + "magnitude": 2, + "duration": 4, + "chance": 40 + } + ] + } + }, + { + "id": "izthiel_4", + "iconID": "monsters_rltiles2:52", + "name": "Izthiel Wächter", + "spawnGroup": "izthiel_4", + "monsterClass": 7, + "maxHP": 54, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 60, + "damageResistance": 11, + "droplistID": "izthiel_4", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "bleeding_wound", + "magnitude": 3, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "frog_1", + "iconID": "monsters_rltiles1:131", + "name": "Flussfrosch", + "spawnGroup": "frog_1", + "monsterClass": 7, + "maxHP": 15, + "maxAP": 10, + "moveCost": 5, + "attackCost": 2, + "attackChance": 150, + "blockChance": 45, + "droplistID": "frog", + "attackDamage": { + "min": 0, + "max": 5 + } + }, + { + "id": "frog_2", + "iconID": "monsters_rltiles1:131", + "name": "Kräftiger Flussfrosch", + "spawnGroup": "frog_2", + "monsterClass": 7, + "maxHP": 17, + "maxAP": 10, + "moveCost": 5, + "attackCost": 2, + "attackChance": 160, + "blockChance": 49, + "droplistID": "frog", + "attackDamage": { + "min": 0, + "max": 5 + } + }, + { + "id": "frog_3", + "iconID": "monsters_rltiles1:130", + "name": "Giftiger Flussfrosch", + "spawnGroup": "frog_3", + "monsterClass": 7, + "maxHP": 21, + "maxAP": 10, + "moveCost": 5, + "attackCost": 2, + "attackChance": 165, + "blockChance": 55, + "droplistID": "frog_3", + "attackDamage": { + "min": 0, + "max": 5 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_weak", + "magnitude": 2, + "duration": 5, + "chance": 30 + } + ] + } + } +] diff --git a/AndorsTrail/res/raw-de/monsterlist_v0610_monsters2.json b/AndorsTrail/res/raw-de/monsterlist_v0610_monsters2.json new file mode 100644 index 000000000..678745273 --- /dev/null +++ b/AndorsTrail/res/raw-de/monsterlist_v0610_monsters2.json @@ -0,0 +1,450 @@ +[ + { + "id": "iqhan_1a", + "iconID": "monsters_rltiles2:96", + "name": "Iqhan Sklavenarbeiter", + "spawnGroup": "iqhan_1", + "monsterClass": 0, + "maxHP": 55, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 110, + "blockChance": 70, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "iqhan_1b", + "iconID": "monsters_rltiles2:96", + "name": "Iqhan Sklavendiener", + "spawnGroup": "iqhan_1", + "monsterClass": 0, + "maxHP": 57, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "criticalSkill": 15, + "criticalMultiplier": 2, + "blockChance": 70, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "iqhan_2a", + "iconID": "monsters_rltiles2:97", + "name": "Iqhan Sklavenwachposten", + "spawnGroup": "iqhan_2", + "monsterClass": 0, + "maxHP": 59, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 130, + "criticalSkill": 15, + "criticalMultiplier": 2, + "blockChance": 70, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "iqhan_2b", + "iconID": "monsters_rltiles2:97", + "name": "Iqhan Sklave", + "spawnGroup": "iqhan_2", + "monsterClass": 0, + "maxHP": 62, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 130, + "criticalSkill": 15, + "criticalMultiplier": 2, + "blockChance": 70, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 10 + } + }, + { + "id": "iqhan_3a", + "iconID": "monsters_rltiles2:128", + "name": "Iqhan Sklavenkämpfer", + "spawnGroup": "iqhan_3", + "monsterClass": 0, + "maxHP": 65, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 140, + "criticalSkill": 15, + "criticalMultiplier": 2, + "blockChance": 70, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 11 + } + }, + { + "id": "iqhan_3b", + "iconID": "monsters_rltiles2:129", + "name": "Iqhan Meister", + "spawnGroup": "iqhan_3", + "monsterClass": 0, + "maxHP": 67, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 140, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 12 + } + }, + { + "id": "iqhan_4a", + "iconID": "monsters_rltiles2:129", + "name": "Iqhan Meister", + "spawnGroup": "iqhan_4", + "monsterClass": 0, + "maxHP": 69, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 140, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 13 + } + }, + { + "id": "iqhan_4b", + "iconID": "monsters_rltiles2:133", + "name": "Iqhan Meister", + "spawnGroup": "iqhan_4", + "monsterClass": 0, + "maxHP": 71, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 140, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "iqhan", + "attackDamage": { + "min": 2, + "max": 15 + } + }, + { + "id": "iqhan_ch_1a", + "iconID": "monsters_rltiles2:135", + "name": "Iqhan Chaos Beschwörer", + "spawnGroup": "iqhan_ch_1", + "monsterClass": 0, + "maxHP": 73, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 140, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "iqhan", + "attackDamage": { + "min": 2, + "max": 15 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 2, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "iqhan_ch_1b", + "iconID": "monsters_rltiles2:135", + "name": "Iqhan Chaos Beschwörer", + "spawnGroup": "iqhan_ch_1", + "monsterClass": 0, + "maxHP": 75, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "iqhan", + "attackDamage": { + "min": 2, + "max": 14 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 2, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "iqhan_ch_2a", + "iconID": "monsters_rltiles2:134", + "name": "Iqhan Chaos Diener", + "spawnGroup": "iqhan_ch_2", + "monsterClass": 0, + "maxHP": 78, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "iqhan", + "attackDamage": { + "min": 2, + "max": 14 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 4, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "iqhan_ch_2b", + "iconID": "monsters_rltiles2:134", + "name": "Iqhan Chaos Diener", + "spawnGroup": "iqhan_ch_2", + "monsterClass": 0, + "maxHP": 79, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "criticalSkill": 25, + "criticalMultiplier": 2, + "blockChance": 75, + "droplistID": "iqhan", + "attackDamage": { + "min": 2, + "max": 13 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 4, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "iqhan_ch_3a", + "iconID": "monsters_rltiles2:136", + "name": "Iqhan Chaos Meister", + "spawnGroup": "iqhan_ch_3", + "monsterClass": 0, + "maxHP": 83, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 170, + "criticalSkill": 25, + "criticalMultiplier": 2, + "blockChance": 75, + "droplistID": "iqhan_master", + "attackDamage": { + "min": 2, + "max": 13 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 4, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "iqhan_ch_3b", + "iconID": "monsters_rltiles2:137", + "name": "Iqhan Chaos Meister", + "spawnGroup": "iqhan_ch_3", + "monsterClass": 0, + "maxHP": 85, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 170, + "criticalSkill": 25, + "criticalMultiplier": 2, + "blockChance": 75, + "droplistID": "iqhan_master", + "attackDamage": { + "min": 2, + "max": 13 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 4, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "iqhan_chb_1a", + "iconID": "monsters_rltiles1:19", + "name": "Iqhan Chaos Bestie", + "spawnGroup": "iqhan_chb_1", + "monsterClass": 3, + "maxHP": 122, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 150, + "criticalSkill": 10, + "criticalMultiplier": 3, + "blockChance": 45, + "damageResistance": 9, + "droplistID": "iqhan_beast", + "attackDamage": { + "min": 0, + "max": 15 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 5, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "iqhan_chb_1b", + "iconID": "monsters_rltiles1:19", + "name": "Iqhan Chaos Bestie", + "spawnGroup": "iqhan_chb_1", + "monsterClass": 3, + "maxHP": 140, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 150, + "criticalSkill": 10, + "criticalMultiplier": 3, + "blockChance": 45, + "damageResistance": 9, + "droplistID": "iqhan_beast", + "attackDamage": { + "min": 0, + "max": 15 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 5, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "iqhan_greeter", + "iconID": "monsters_men:8", + "name": "Rancent", + "spawnGroup": "iqhan_greeter", + "monsterClass": 0, + "unique": 1, + "phraseID": "iqhan_greeter" + }, + { + "id": "iqhan_boss", + "iconID": "monsters_rltiles1:5", + "name": "Iqhan Chaos Versklaver", + "spawnGroup": "iqhan_boss", + "monsterClass": 6, + "unique": 1, + "maxHP": 120, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 170, + "criticalSkill": 30, + "criticalMultiplier": 2, + "blockChance": 75, + "damageResistance": 2, + "droplistID": "iqhan_boss", + "phraseID": "iqhan_boss", + "attackDamage": { + "min": 2, + "max": 13 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 7, + "duration": 5, + "chance": 50 + }, + { + "condition": "chaotic_curse", + "magnitude": 3, + "duration": 5, + "chance": 50 + } + ] + } + } +] diff --git a/AndorsTrail/res/raw-de/monsterlist_v0610_npcs1.json b/AndorsTrail/res/raw-de/monsterlist_v0610_npcs1.json new file mode 100644 index 000000000..f9a0b9ae3 --- /dev/null +++ b/AndorsTrail/res/raw-de/monsterlist_v0610_npcs1.json @@ -0,0 +1,582 @@ +[ + { + "id": "lostsheep1", + "iconID": "monsters_karvis2:8", + "name": "Schaf", + "spawnGroup": "tinlyn_lostsheep1", + "monsterClass": 4, + "unique": 1, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 10, + "blockChance": 5, + "droplistID": "tinlyn_sheep", + "phraseID": "tinlyn_lostsheep1", + "attackDamage": { + "min": 0, + "max": 1 + } + }, + { + "id": "lostsheep2", + "iconID": "monsters_karvis2:8", + "name": "Schaf", + "spawnGroup": "tinlyn_lostsheep2", + "monsterClass": 4, + "unique": 1, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 10, + "blockChance": 5, + "droplistID": "tinlyn_sheep", + "phraseID": "tinlyn_lostsheep2", + "attackDamage": { + "min": 0, + "max": 1 + } + }, + { + "id": "lostsheep3", + "iconID": "monsters_karvis2:8", + "name": "Schaf", + "spawnGroup": "tinlyn_lostsheep3", + "monsterClass": 4, + "unique": 1, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 10, + "blockChance": 5, + "droplistID": "tinlyn_sheep", + "phraseID": "tinlyn_lostsheep3", + "attackDamage": { + "min": 0, + "max": 1 + } + }, + { + "id": "lostsheep4", + "iconID": "monsters_karvis2:8", + "name": "Schaf", + "spawnGroup": "tinlyn_lostsheep4", + "monsterClass": 4, + "unique": 1, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 10, + "blockChance": 5, + "droplistID": "tinlyn_sheep", + "phraseID": "tinlyn_lostsheep4", + "attackDamage": { + "min": 0, + "max": 1 + } + }, + { + "id": "sheep1", + "iconID": "monsters_karvis2:8", + "name": "Schaf", + "spawnGroup": "tinlyn_sheep", + "monsterClass": 4, + "unique": 1, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 10, + "blockChance": 5, + "droplistID": "tinlyn_sheep", + "phraseID": "tinlyn_sheep", + "attackDamage": { + "min": 0, + "max": 1 + } + }, + { + "id": "ailshara", + "iconID": "monsters_men:8", + "name": "Ailshara", + "spawnGroup": "ailshara", + "monsterClass": 0, + "droplistID": "shop_ailshara", + "phraseID": "ailshara" + }, + { + "id": "arngyr", + "iconID": "monsters_rltiles1:65", + "name": "Arngyr", + "spawnGroup": "arngyr", + "monsterClass": 0, + "phraseID": "arngyr" + }, + { + "id": "benbyr", + "iconID": "monsters_rltiles1:74", + "name": "Benbyr", + "spawnGroup": "benbyr", + "monsterClass": 0, + "phraseID": "benbyr" + }, + { + "id": "celdar", + "iconID": "monsters_rltiles1:94", + "name": "Celdar", + "spawnGroup": "celdar", + "monsterClass": 0, + "phraseID": "celdar" + }, + { + "id": "conren", + "iconID": "monsters_karvis2:5", + "name": "Conren", + "spawnGroup": "conren", + "monsterClass": 0, + "phraseID": "conren" + }, + { + "id": "crossroads_backguard", + "iconID": "monsters_rltiles1:76", + "name": "Wachposten", + "spawnGroup": "crossroads_backguard", + "monsterClass": 0, + "unique": 1, + "phraseID": "crossroads_backguard" + }, + { + "id": "crossroads_guard", + "iconID": "monsters_rltiles1:76", + "name": "Wachposten", + "spawnGroup": "crossroads_guard", + "monsterClass": 0, + "phraseID": "crossroads_guard" + }, + { + "id": "crossroads_sleepguard", + "iconID": "monsters_rltiles1:76", + "name": "Wachposten", + "spawnGroup": "crossroads_sleepguard", + "monsterClass": 0, + "phraseID": "crossroads_sleepguard" + }, + { + "id": "crossroads_guest", + "iconID": "monsters_rltiles1:83", + "name": "Besucher", + "spawnGroup": "crossroads_guest", + "monsterClass": 0, + "phraseID": "crossroads_guest" + }, + { + "id": "erinith", + "iconID": "monsters_rltiles1:82", + "name": "Erinith", + "spawnGroup": "erinith", + "monsterClass": 0, + "phraseID": "erinith" + }, + { + "id": "fanamor", + "iconID": "monsters_men:7", + "name": "Fanamor", + "spawnGroup": "fanamor", + "monsterClass": 0, + "phraseID": "fanamor" + }, + { + "id": "feygard_bridgeguard", + "iconID": "monsters_men2:4", + "name": "Feygard Brückenwachposten", + "spawnGroup": "feygard_bridgeguard", + "monsterClass": 0, + "phraseID": "feygard_bridgeguard" + }, + { + "id": "fieldwasp_unique", + "iconID": "monsters_insects:1", + "name": "Rasende Waldwespe", + "spawnGroup": "fieldwasp_unique", + "monsterClass": 1, + "unique": 1, + "maxHP": 70, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 200, + "criticalMultiplier": 3, + "blockChance": 150, + "droplistID": "fieldwasp_unique", + "attackDamage": { + "min": 2, + "max": 6 + } + }, + { + "id": "gallain", + "iconID": "monsters_man1:0", + "name": "Gallain", + "spawnGroup": "gallain", + "monsterClass": 0, + "droplistID": "shop_gallain", + "phraseID": "gallain" + }, + { + "id": "gandoren", + "iconID": "monsters_rltiles1:69", + "name": "Gandoren", + "spawnGroup": "gandoren", + "monsterClass": 0, + "phraseID": "gandoren" + }, + { + "id": "grimion", + "iconID": "monsters_men2:2", + "name": "Grimion", + "spawnGroup": "grimion", + "monsterClass": 0, + "droplistID": "shop_grimion", + "phraseID": "grimion" + }, + { + "id": "hadracor", + "iconID": "monsters_men2:2", + "name": "Hadracor", + "spawnGroup": "hadracor", + "monsterClass": 0, + "droplistID": "shop_hadracor", + "phraseID": "hadracor" + }, + { + "id": "kuldan", + "iconID": "monsters_rltiles1:85", + "name": "Kuldan", + "spawnGroup": "kuldan", + "monsterClass": 0, + "phraseID": "kuldan" + }, + { + "id": "kuldan_guard", + "iconID": "monsters_rltiles3:14", + "name": "Kuldan's Leibwächter", + "spawnGroup": "kuldan_guard", + "monsterClass": 0, + "phraseID": "kuldan_guard" + }, + { + "id": "landa", + "iconID": "monsters_men:0", + "name": "Landa", + "spawnGroup": "landa", + "monsterClass": 0, + "phraseID": "landa" + }, + { + "id": "loneford_chapelguard", + "iconID": "monsters_rltiles1:78", + "name": "Kapellen Wachposten", + "spawnGroup": "loneford_chapelguard", + "monsterClass": 0, + "phraseID": "loneford_chapelguard" + }, + { + "id": "loneford_farmer0", + "iconID": "monsters_karvis2:1", + "name": "Bauer", + "spawnGroup": "loneford_farmer0", + "monsterClass": 0, + "phraseID": "loneford_farmer0" + }, + { + "id": "loneford_guard0", + "iconID": "monsters_rltiles3:14", + "name": "Wachposten", + "spawnGroup": "loneford_guard0", + "monsterClass": 0, + "phraseID": "loneford_guard0" + }, + { + "id": "loneford_tavern_patron", + "iconID": "monsters_karvis2:2", + "name": "Loneford Gastwirt", + "spawnGroup": "loneford_tavern_patron", + "monsterClass": 0, + "phraseID": "loneford_tavern_patron" + }, + { + "id": "loneford_villager0", + "iconID": "monsters_karvis2:0", + "name": "Dorfbewohner", + "spawnGroup": "loneford_villager0", + "monsterClass": 0, + "phraseID": "loneford_villager0" + }, + { + "id": "loneford_villager1", + "iconID": "monsters_karvis2:1", + "name": "Dorfbewohner", + "spawnGroup": "loneford_villager1", + "monsterClass": 0, + "phraseID": "loneford_villager1" + }, + { + "id": "loneford_villager2", + "iconID": "monsters_karvis2:3", + "name": "Dorfbewohner", + "spawnGroup": "loneford_villager2", + "monsterClass": 0, + "phraseID": "loneford_villager2" + }, + { + "id": "loneford_villager3", + "iconID": "monsters_karvis2:5", + "name": "Dorfbewohner", + "spawnGroup": "loneford_villager3", + "monsterClass": 0, + "phraseID": "loneford_villager3" + }, + { + "id": "loneford_villager4", + "iconID": "monsters_men:2", + "name": "Dorfbewohner", + "spawnGroup": "loneford_villager4", + "monsterClass": 0, + "phraseID": "loneford_villager4" + }, + { + "id": "loneford_wellguard", + "iconID": "monsters_rltiles1:72", + "name": "Wachposten", + "spawnGroup": "loneford_wellguard", + "monsterClass": 0, + "phraseID": "loneford_wellguard" + }, + { + "id": "mienn", + "iconID": "monsters_rltiles1:87", + "name": "Mienn", + "spawnGroup": "mienn", + "monsterClass": 0, + "phraseID": "mienn" + }, + { + "id": "minarra", + "iconID": "monsters_rltiles1:86", + "name": "Minarra", + "spawnGroup": "minarra", + "monsterClass": 0, + "droplistID": "shop_minarra", + "phraseID": "minarra" + }, + { + "id": "puny_warehouserat", + "iconID": "monsters_rats:1", + "name": "Warenhaus Ratte", + "spawnGroup": "puny_warehouserat", + "monsterClass": 4, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 50, + "blockChance": 30, + "droplistID": "rat", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "rolwynn", + "iconID": "monsters_rltiles1:77", + "name": "Rolwynn", + "spawnGroup": "rolwynn", + "monsterClass": 0, + "phraseID": "rolwynn" + }, + { + "id": "sienn", + "iconID": "monsters_rltiles1:66", + "name": "Sienn", + "spawnGroup": "sienn", + "monsterClass": 0, + "phraseID": "sienn" + }, + { + "id": "sienn_pet", + "iconID": "monsters_misc:0", + "name": "Sienn's Haustier", + "spawnGroup": "sienn_pet", + "monsterClass": 7, + "phraseID": "sienn_pet" + }, + { + "id": "siola", + "iconID": "monsters_rltiles1:90", + "name": "Siola", + "spawnGroup": "siola", + "monsterClass": 0, + "droplistID": "shop_siola", + "phraseID": "siola" + }, + { + "id": "taevinn", + "iconID": "monsters_karvis2:5", + "name": "Taevinn", + "spawnGroup": "taevinn", + "monsterClass": 0, + "phraseID": "taevinn" + }, + { + "id": "talion", + "iconID": "monsters_men2:8", + "name": "Talion", + "spawnGroup": "talion", + "monsterClass": 0, + "droplistID": "shop_talion", + "phraseID": "talion" + }, + { + "id": "telund", + "iconID": "monsters_rltiles1:74", + "name": "Telund", + "spawnGroup": "telund", + "monsterClass": 0, + "phraseID": "telund" + }, + { + "id": "tinlyn", + "iconID": "monsters_karvis2:7", + "name": "Tinlyn", + "spawnGroup": "tinlyn", + "monsterClass": 0, + "phraseID": "tinlyn" + }, + { + "id": "wallach", + "iconID": "monsters_rltiles1:75", + "name": "Wallach", + "spawnGroup": "wallach", + "monsterClass": 0, + "phraseID": "wallach" + }, + { + "id": "woodcutter_0", + "iconID": "monsters_men:0", + "name": "Holzfäller", + "spawnGroup": "woodcutter_0", + "monsterClass": 0, + "phraseID": "woodcutter_0" + }, + { + "id": "woodcutter_2", + "iconID": "monsters_men:0", + "name": "Holzfäller", + "spawnGroup": "woodcutter_2", + "monsterClass": 0, + "phraseID": "woodcutter_2" + }, + { + "id": "woodcutter_3", + "iconID": "monsters_men2:2", + "name": "Holzfäller", + "spawnGroup": "woodcutter_3", + "monsterClass": 0, + "phraseID": "woodcutter_3" + }, + { + "id": "woodcutter_4", + "iconID": "monsters_rltiles1:93", + "name": "Holzfäller", + "spawnGroup": "woodcutter_4", + "monsterClass": 0, + "phraseID": "woodcutter_4" + }, + { + "id": "woodcutter_5", + "iconID": "monsters_men2:2", + "name": "Holzfäller", + "spawnGroup": "woodcutter_5", + "monsterClass": 0, + "phraseID": "woodcutter_5" + }, + { + "id": "rogorn", + "iconID": "monsters_rltiles1:63", + "name": "Rogorn", + "spawnGroup": "rogorn", + "monsterClass": 0, + "unique": 1, + "maxHP": 145, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "blockChance": 120, + "damageResistance": 5, + "droplistID": "rogorn", + "phraseID": "rogorn", + "attackDamage": { + "min": 5, + "max": 9 + } + }, + { + "id": "rogorn_henchman", + "iconID": "monsters_rogue1:0", + "name": "Rogorn's Anhänger", + "spawnGroup": "rogorn_henchman", + "monsterClass": 0, + "unique": 1, + "maxHP": 130, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "blockChance": 120, + "damageResistance": 4, + "droplistID": "rogorn_henchman", + "phraseID": "rogorn_henchman", + "attackDamage": { + "min": 5, + "max": 8 + } + }, + { + "id": "buceth", + "iconID": "monsters_men2:7", + "name": "Buceth", + "spawnGroup": "buceth", + "monsterClass": 0, + "unique": 1, + "maxHP": 75, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 200, + "criticalMultiplier": 2, + "blockChance": 120, + "damageResistance": 4, + "droplistID": "buceth", + "phraseID": "buceth", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "gauward", + "iconID": "monsters_mage2:0", + "name": "Gauward", + "spawnGroup": "gauward", + "monsterClass": 0, + "phraseID": "gauward" + } +] diff --git a/AndorsTrail/res/raw-de/monsterlist_v0611_monsters1.json b/AndorsTrail/res/raw-de/monsterlist_v0611_monsters1.json new file mode 100644 index 000000000..8b30f2afa --- /dev/null +++ b/AndorsTrail/res/raw-de/monsterlist_v0611_monsters1.json @@ -0,0 +1,1862 @@ +[ + { + "id": "cbeetle_1", + "iconID": "monsters_rltiles2:63", + "name": "Junger Aaskäfer", + "spawnGroup": "scaradon_1", + "monsterClass": 1, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "blockChance": 30, + "damageResistance": 9, + "droplistID": "scaradon", + "attackDamage": { + "min": 0, + "max": 5 + } + }, + { + "id": "cbeetle_2", + "iconID": "monsters_rltiles2:63", + "name": "Aaskäfer", + "spawnGroup": "scaradon_1", + "monsterClass": 1, + "maxHP": 51, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 75, + "blockChance": 30, + "damageResistance": 9, + "droplistID": "scaradon", + "attackDamage": { + "min": 0, + "max": 5 + } + }, + { + "id": "scaradon_1", + "iconID": "monsters_rltiles1:98", + "name": "Junger Scaradon", + "spawnGroup": "scaradon_1", + "monsterClass": 1, + "maxHP": 32, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 50, + "blockChance": 30, + "damageResistance": 15, + "droplistID": "scaradon", + "attackDamage": { + "min": 0, + "max": 4 + } + }, + { + "id": "scaradon_2", + "iconID": "monsters_rltiles1:98", + "name": "Kleiner Scaradon", + "spawnGroup": "scaradon_2", + "monsterClass": 1, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 50, + "blockChance": 30, + "damageResistance": 15, + "droplistID": "scaradon", + "attackDamage": { + "min": 1, + "max": 4 + } + }, + { + "id": "scaradon_3", + "iconID": "monsters_rltiles1:97", + "name": "Scaradon", + "spawnGroup": "scaradon_2", + "monsterClass": 1, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 50, + "blockChance": 30, + "damageResistance": 17, + "droplistID": "scaradon", + "attackDamage": { + "min": 0, + "max": 4 + } + }, + { + "id": "scaradon_4", + "iconID": "monsters_rltiles1:97", + "name": "Kräftiger Scaradon", + "spawnGroup": "scaradon_2", + "monsterClass": 1, + "maxHP": 37, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 50, + "blockChance": 30, + "damageResistance": 17, + "droplistID": "scaradon", + "attackDamage": { + "min": 1, + "max": 4 + } + }, + { + "id": "scaradon_5", + "iconID": "monsters_rltiles1:97", + "name": "Hartschalen Scaradon", + "spawnGroup": "scaradon_3", + "monsterClass": 1, + "maxHP": 38, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 50, + "blockChance": 30, + "damageResistance": 18, + "droplistID": "scaradon_b", + "attackDamage": { + "min": 1, + "max": 5 + } + }, + { + "id": "mwolf_1", + "iconID": "monsters_dogs:3", + "name": "Bergwolfwelpe", + "spawnGroup": "mwolf_1", + "monsterClass": 4, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 80, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 40, + "damageResistance": 3, + "droplistID": "mwolf", + "attackDamage": { + "min": 2, + "max": 7 + } + }, + { + "id": "mwolf_2", + "iconID": "monsters_dogs:3", + "name": "Junger Bergwolf", + "spawnGroup": "mwolf_1", + "monsterClass": 4, + "maxHP": 52, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 80, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 44, + "damageResistance": 3, + "droplistID": "mwolf", + "attackDamage": { + "min": 3, + "max": 7 + } + }, + { + "id": "mwolf_3", + "iconID": "monsters_dogs:2", + "name": "Junger Bergfuchs", + "spawnGroup": "mwolf_1", + "monsterClass": 4, + "maxHP": 56, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 80, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 48, + "damageResistance": 4, + "droplistID": "mwolf", + "attackDamage": { + "min": 3, + "max": 7 + } + }, + { + "id": "mwolf_4", + "iconID": "monsters_dogs:2", + "name": "Bergfuchs", + "spawnGroup": "mwolf_2", + "monsterClass": 4, + "maxHP": 60, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 85, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 52, + "damageResistance": 4, + "droplistID": "mwolf", + "attackDamage": { + "min": 3, + "max": 8 + } + }, + { + "id": "mwolf_5", + "iconID": "monsters_dogs:2", + "name": "Wilder Bergfuchs", + "spawnGroup": "mwolf_2", + "monsterClass": 4, + "maxHP": 64, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 85, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 54, + "damageResistance": 5, + "droplistID": "mwolf", + "attackDamage": { + "min": 3, + "max": 8 + } + }, + { + "id": "mwolf_6", + "iconID": "monsters_dogs:4", + "name": "Tollwütiger Bergwolf", + "spawnGroup": "mwolf_2", + "monsterClass": 4, + "maxHP": 67, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 56, + "damageResistance": 5, + "droplistID": "mwolf", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "mwolf_7", + "iconID": "monsters_dogs:4", + "name": "Starker Bergwolf", + "spawnGroup": "mwolf_3", + "monsterClass": 4, + "maxHP": 73, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 57, + "damageResistance": 6, + "droplistID": "mwolf", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "mwolf_8", + "iconID": "monsters_dogs:4", + "name": "Wilder Bergwolf", + "spawnGroup": "mwolf_3", + "monsterClass": 4, + "maxHP": 78, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 59, + "damageResistance": 6, + "droplistID": "mwolf_b", + "attackDamage": { + "min": 3, + "max": 10 + } + }, + { + "id": "mbrute_1", + "iconID": "monsters_rltiles2:35", + "name": "Junge Bergkreatur", + "spawnGroup": "mbrute_1", + "monsterClass": 5, + "maxHP": 148, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 0, + "max": 14 + } + }, + { + "id": "mbrute_2", + "iconID": "monsters_rltiles2:35", + "name": "Schwache Bergkreatur", + "spawnGroup": "mbrute_1", + "monsterClass": 5, + "maxHP": 157, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 0, + "max": 14 + } + }, + { + "id": "mbrute_3", + "iconID": "monsters_rltiles2:36", + "name": "Weißpelzige Bergkreatur", + "spawnGroup": "mbrute_1", + "monsterClass": 5, + "maxHP": 166, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 0, + "max": 14 + } + }, + { + "id": "mbrute_4", + "iconID": "monsters_rltiles2:35", + "name": "Bergkreatur", + "spawnGroup": "mbrute_2", + "monsterClass": 5, + "maxHP": 175, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 0, + "max": 14 + } + }, + { + "id": "mbrute_5", + "iconID": "monsters_rltiles2:36", + "name": "Große Bergkreatur", + "spawnGroup": "mbrute_2", + "monsterClass": 5, + "maxHP": 184, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 0, + "max": 14 + } + }, + { + "id": "mbrute_6", + "iconID": "monsters_rltiles2:34", + "name": "Schnelle Bergkreatur", + "spawnGroup": "mbrute_2", + "monsterClass": 5, + "maxHP": 82, + "maxAP": 12, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 0, + "max": 14 + } + }, + { + "id": "mbrute_7", + "iconID": "monsters_rltiles2:34", + "name": "Flinke Bergkreatur", + "spawnGroup": "mbrute_3", + "monsterClass": 5, + "maxHP": 93, + "maxAP": 12, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 0, + "max": 15 + } + }, + { + "id": "mbrute_8", + "iconID": "monsters_rltiles2:34", + "name": "Aggressive Bergkreatur", + "spawnGroup": "mbrute_3", + "monsterClass": 5, + "maxHP": 104, + "maxAP": 12, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 1, + "max": 15 + } + }, + { + "id": "mbrute_9", + "iconID": "monsters_rltiles2:33", + "name": "Starke Bergkreatur", + "spawnGroup": "mbrute_3", + "monsterClass": 5, + "maxHP": 115, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 1, + "max": 15 + } + }, + { + "id": "mbrute_10", + "iconID": "monsters_rltiles2:33", + "name": "Kräftige Bergkreatur", + "spawnGroup": "mbrute_4", + "monsterClass": 5, + "maxHP": 126, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 2, + "max": 15 + } + }, + { + "id": "mbrute_11", + "iconID": "monsters_rltiles2:33", + "name": "Furchtlose Bergkreatur", + "spawnGroup": "mbrute_4", + "monsterClass": 5, + "maxHP": 137, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute_b", + "attackDamage": { + "min": 2, + "max": 15 + } + }, + { + "id": "mbrute_12", + "iconID": "monsters_rltiles2:33", + "name": "Wütende Bergkreatur", + "spawnGroup": "mbrute_4", + "monsterClass": 5, + "maxHP": 148, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 3, + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute_b", + "attackDamage": { + "min": 2, + "max": 16 + } + }, + { + "id": "erumen_1", + "iconID": "monsters_rltiles2:114", + "name": "Junge Erumem Echse", + "spawnGroup": "erumen_1", + "monsterClass": 7, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "erumen", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "erumen_2", + "iconID": "monsters_rltiles2:114", + "name": "Gefleckte Erumem Echse", + "spawnGroup": "erumen_1", + "monsterClass": 7, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "erumen", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "erumen_3", + "iconID": "monsters_rltiles2:114", + "name": "Erumem Echse", + "spawnGroup": "erumen_2", + "monsterClass": 7, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "erumen", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "erumen_4", + "iconID": "monsters_rltiles2:115", + "name": "Starke Erumen Echse", + "spawnGroup": "erumen_2", + "monsterClass": 7, + "maxHP": 79, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "erumen", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "erumen_5", + "iconID": "monsters_rltiles2:115", + "name": "Widerliche Erumen Echse", + "spawnGroup": "erumen_3", + "monsterClass": 7, + "maxHP": 89, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "erumen", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "erumen_6", + "iconID": "monsters_rltiles2:117", + "name": "Kräftige Erumen Echse", + "spawnGroup": "erumen_3", + "monsterClass": 7, + "maxHP": 91, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 90, + "damageResistance": 8, + "droplistID": "erumen", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "erumen_7", + "iconID": "monsters_rltiles2:117", + "name": "Gehärtete Erumen Echse", + "spawnGroup": "erumen_4", + "monsterClass": 7, + "maxHP": 93, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 90, + "damageResistance": 12, + "droplistID": "erumen_b", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "plaguesp_1", + "iconID": "monsters_rltiles2:61", + "name": "Mickriger Seuchenkrabbler", + "spawnGroup": "plaguespider_1", + "monsterClass": 1, + "maxHP": 55, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 140, + "droplistID": "plaguespider", + "attackDamage": { + "min": 1, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 1, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 1, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_2", + "iconID": "monsters_rltiles2:61", + "name": "Seuchenkrabbler", + "spawnGroup": "plaguespider_1", + "monsterClass": 1, + "maxHP": 57, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 140, + "droplistID": "plaguespider", + "attackDamage": { + "min": 1, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 3, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 2, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_3", + "iconID": "monsters_rltiles2:61", + "name": "Kräftiger Seuchenkrabbler", + "spawnGroup": "plaguespider_1", + "monsterClass": 1, + "maxHP": 59, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 140, + "droplistID": "plaguespider", + "attackDamage": { + "min": 1, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 3, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 2, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_4", + "iconID": "monsters_rltiles2:61", + "name": "Schwarzer Seuchenkrabbler", + "spawnGroup": "plaguespider_2", + "monsterClass": 1, + "maxHP": 61, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 150, + "droplistID": "plaguespider", + "attackDamage": { + "min": 1, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 4, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 3, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_5", + "iconID": "monsters_rltiles2:151", + "name": "Pestkrabbler", + "spawnGroup": "plaguespider_2", + "monsterClass": 1, + "maxHP": 62, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 150, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 4, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 3, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_6", + "iconID": "monsters_rltiles2:151", + "name": "Hartschalen Pestkrabbler", + "spawnGroup": "plaguespider_2", + "monsterClass": 1, + "maxHP": 63, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 150, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 5, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 4, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_7", + "iconID": "monsters_rltiles2:151", + "name": "Kräftiger Pestkrabbler", + "spawnGroup": "plaguespider_3", + "monsterClass": 1, + "maxHP": 64, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 70, + "criticalMultiplier": 3, + "blockChance": 155, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 5, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 4, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_8", + "iconID": "monsters_rltiles2:153", + "name": "Flauschiger Pestkrabbler", + "spawnGroup": "plaguespider_3", + "monsterClass": 1, + "maxHP": 65, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 70, + "criticalMultiplier": 3, + "blockChance": 155, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 6, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 5, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "plaguesp_9", + "iconID": "monsters_rltiles2:153", + "name": "Kräftiger flauschiger Pestkrabbler", + "spawnGroup": "plaguespider_3", + "monsterClass": 1, + "maxHP": 66, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 70, + "criticalMultiplier": 3, + "blockChance": 160, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 6, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 5, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "plaguesp_10", + "iconID": "monsters_rltiles2:151", + "name": "Widerlicher Pestkrabbler", + "spawnGroup": "plaguespider_4", + "monsterClass": 1, + "maxHP": 67, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 85, + "criticalSkill": 70, + "criticalMultiplier": 3, + "blockChance": 160, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 6, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 5, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "plaguesp_11", + "iconID": "monsters_rltiles2:153", + "name": "Nistender Pestkrabbler", + "spawnGroup": "plaguespider_4", + "monsterClass": 1, + "maxHP": 68, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 85, + "criticalSkill": 70, + "criticalMultiplier": 3, + "blockChance": 165, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 6, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 5, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "plaguesp_12", + "iconID": "monsters_rltiles2:38", + "name": "Pestkrabbler Diener", + "spawnGroup": "plaguespider_5", + "monsterClass": 6, + "maxHP": 65, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 85, + "criticalSkill": 120, + "criticalMultiplier": 3, + "blockChance": 165, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 7, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 6, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "plaguesp_13", + "iconID": "monsters_rltiles2:38", + "name": "Pestkrabbler Meister", + "spawnGroup": "plaguespider_6", + "monsterClass": 6, + "maxHP": 65, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 85, + "criticalSkill": 120, + "criticalMultiplier": 3, + "blockChance": 175, + "damageResistance": 2, + "droplistID": "plaguespider_b", + "attackDamage": { + "min": 2, + "max": 8 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 7, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 6, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "allaceph_1", + "iconID": "monsters_rltiles2:101", + "name": "Junger Allaceph", + "spawnGroup": "allaceph_1", + "monsterClass": 2, + "maxHP": 90, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 105, + "damageResistance": 1, + "droplistID": "allaceph", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 4, + "max": 4 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 2, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "allaceph_2", + "iconID": "monsters_rltiles2:101", + "name": "Allaceph", + "spawnGroup": "allaceph_1", + "monsterClass": 2, + "maxHP": 94, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 105, + "damageResistance": 1, + "droplistID": "allaceph", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 4, + "max": 4 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 2, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "allaceph_3", + "iconID": "monsters_rltiles2:102", + "name": "Starker Allaceph", + "spawnGroup": "allaceph_2", + "monsterClass": 2, + "maxHP": 101, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 105, + "damageResistance": 2, + "droplistID": "allaceph", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 4, + "max": 4 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 2, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "allaceph_4", + "iconID": "monsters_rltiles2:102", + "name": "Kräftiger Allaceph", + "spawnGroup": "allaceph_2", + "monsterClass": 2, + "maxHP": 111, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 110, + "damageResistance": 2, + "droplistID": "allaceph", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 4, + "max": 4 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 3, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "allaceph_5", + "iconID": "monsters_rltiles2:103", + "name": "Strahlender Allaceph", + "spawnGroup": "allaceph_3", + "monsterClass": 2, + "maxHP": 124, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 110, + "damageResistance": 3, + "droplistID": "allaceph_b", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 6, + "max": 6 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 3, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "allaceph_6", + "iconID": "monsters_rltiles2:103", + "name": "Ehrwürdiger Allaceph", + "spawnGroup": "allaceph_3", + "monsterClass": 2, + "maxHP": 133, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 115, + "damageResistance": 3, + "droplistID": "allaceph_b", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 7, + "max": 7 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 3, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "vaeregh_1", + "iconID": "monsters_rltiles1:42", + "name": "Vaeregh", + "spawnGroup": "allaceph_4", + "monsterClass": 2, + "maxHP": 149, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 120, + "damageResistance": 4, + "droplistID": "allaceph", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 10, + "max": 10 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 4, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "irdegh_sp_1", + "iconID": "monsters_rltiles2:26", + "name": "Irdegh Nestling", + "spawnGroup": "irdegh_spawn", + "monsterClass": 7, + "maxHP": 57, + "maxAP": 12, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 80, + "droplistID": "irdegh_spawn", + "attackDamage": { + "min": 0, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_irdegh", + "magnitude": 2, + "duration": 3, + "chance": 10 + } + ] + } + }, + { + "id": "irdegh_sp_2", + "iconID": "monsters_rltiles2:26", + "name": "Irdegh Nestling", + "spawnGroup": "irdegh_spawn", + "monsterClass": 7, + "maxHP": 68, + "maxAP": 12, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 80, + "droplistID": "irdegh_spawn", + "attackDamage": { + "min": 0, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_irdegh", + "magnitude": 2, + "duration": 3, + "chance": 10 + } + ] + } + }, + { + "id": "irdegh_1", + "iconID": "monsters_rltiles2:15", + "name": "Irdegh", + "spawnGroup": "irdegh_1", + "monsterClass": 7, + "maxHP": 115, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 60, + "damageResistance": 10, + "droplistID": "irdegh", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_irdegh", + "magnitude": 3, + "duration": 4, + "chance": 50 + } + ] + } + }, + { + "id": "irdegh_2", + "iconID": "monsters_rltiles2:15", + "name": "Giftiger Irdegh", + "spawnGroup": "irdegh_2", + "monsterClass": 7, + "maxHP": 120, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 60, + "damageResistance": 11, + "droplistID": "irdegh", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_irdegh", + "magnitude": 3, + "duration": 4, + "chance": 50 + } + ] + } + }, + { + "id": "irdegh_3", + "iconID": "monsters_rltiles2:14", + "name": "Stachliger Irdegh", + "spawnGroup": "irdegh_3", + "monsterClass": 7, + "maxHP": 125, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 60, + "damageResistance": 11, + "droplistID": "irdegh", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_irdegh", + "magnitude": 3, + "duration": 4, + "chance": 50 + } + ] + } + }, + { + "id": "irdegh_4", + "iconID": "monsters_rltiles2:14", + "name": "Ehrwürdiger stachliger Irdegh", + "spawnGroup": "irdegh_4", + "monsterClass": 7, + "maxHP": 130, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "criticalSkill": 30, + "criticalMultiplier": 2, + "blockChance": 60, + "damageResistance": 14, + "droplistID": "irdegh_b", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_irdegh", + "magnitude": 3, + "duration": 4, + "chance": 70 + } + ] + } + }, + { + "id": "maonit_1", + "iconID": "monsters_rltiles1:104", + "name": "Maonit Kobold", + "spawnGroup": "maonit_1", + "monsterClass": 5, + "maxHP": 255, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 10, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 4, + "droplistID": "maonit", + "attackDamage": { + "min": 1, + "max": 20 + } + }, + { + "id": "maonit_2", + "iconID": "monsters_rltiles1:104", + "name": "Riesiger Maonit Kobold", + "spawnGroup": "maonit_1", + "monsterClass": 5, + "maxHP": 270, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 10, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 4, + "droplistID": "maonit", + "attackDamage": { + "min": 1, + "max": 20 + } + }, + { + "id": "maonit_3", + "iconID": "monsters_rltiles1:104", + "name": "Starker Maonit Kobold", + "spawnGroup": "maonit_2", + "monsterClass": 5, + "maxHP": 285, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 20, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 5, + "droplistID": "maonit", + "attackDamage": { + "min": 1, + "max": 20 + } + }, + { + "id": "maonit_4", + "iconID": "monsters_rltiles1:107", + "name": "Maonitkreatur brute", + "spawnGroup": "maonit_2", + "monsterClass": 5, + "maxHP": 290, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 20, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 5, + "droplistID": "maonit", + "attackDamage": { + "min": 1, + "max": 20 + } + }, + { + "id": "maonit_5", + "iconID": "monsters_rltiles1:107", + "name": "Kräftige Maonitkreatur", + "spawnGroup": "maonit_3", + "monsterClass": 5, + "maxHP": 310, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 6, + "droplistID": "maonit", + "attackDamage": { + "min": 1, + "max": 20 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "stunned", + "magnitude": 1, + "duration": 3, + "chance": 10 + } + ] + } + }, + { + "id": "maonit_6", + "iconID": "monsters_rltiles1:107", + "name": "Starke Maonitkreatur", + "spawnGroup": "maonit_3", + "monsterClass": 5, + "maxHP": 320, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 6, + "droplistID": "maonit", + "attackDamage": { + "min": 1, + "max": 20 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "stunned", + "magnitude": 1, + "duration": 3, + "chance": 10 + } + ] + } + }, + { + "id": "arulir_1", + "iconID": "monsters_rltiles1:13", + "name": "Arulir", + "spawnGroup": "arulir_1", + "monsterClass": 5, + "maxHP": 325, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 8, + "droplistID": "arulir", + "attackDamage": { + "min": 1, + "max": 20 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "stunned", + "magnitude": 1, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "arulir_2", + "iconID": "monsters_rltiles1:13", + "name": "Riesiger Arulir", + "spawnGroup": "arulir_1", + "monsterClass": 5, + "maxHP": 330, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 8, + "droplistID": "arulir", + "attackDamage": { + "min": 1, + "max": 20 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "stunned", + "magnitude": 1, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "burrower_1", + "iconID": "monsters_rltiles2:164", + "name": "Höhlengräberraupe", + "spawnGroup": "burrower_1", + "monsterClass": 1, + "maxHP": 30, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 95, + "blockChance": 80, + "damageResistance": 2, + "droplistID": "burrower", + "attackDamage": { + "min": 1, + "max": 25 + } + }, + { + "id": "burrower_2", + "iconID": "monsters_rltiles2:164", + "name": "Höhlengräber", + "spawnGroup": "burrower_1", + "monsterClass": 1, + "maxHP": 37, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 95, + "blockChance": 80, + "damageResistance": 2, + "droplistID": "burrower", + "attackDamage": { + "min": 1, + "max": 25 + } + }, + { + "id": "burrower_3", + "iconID": "monsters_rltiles2:165", + "name": "Starker Raupengräber", + "spawnGroup": "burrower_2", + "monsterClass": 1, + "maxHP": 44, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 95, + "blockChance": 80, + "damageResistance": 2, + "droplistID": "burrower", + "attackDamage": { + "min": 1, + "max": 25 + } + }, + { + "id": "burrower_4", + "iconID": "monsters_rltiles2:165", + "name": "Riesiger Raupengräber", + "spawnGroup": "burrower_3", + "monsterClass": 1, + "maxHP": 75, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 95, + "blockChance": 80, + "damageResistance": 2, + "droplistID": "burrower", + "attackDamage": { + "min": 1, + "max": 25 + } + } +] diff --git a/AndorsTrail/res/raw-de/monsterlist_v0611_npcs1.json b/AndorsTrail/res/raw-de/monsterlist_v0611_npcs1.json new file mode 100644 index 000000000..09fa71e62 --- /dev/null +++ b/AndorsTrail/res/raw-de/monsterlist_v0611_npcs1.json @@ -0,0 +1,176 @@ +[ + { + "id": "ulirfendor", + "iconID": "monsters_rltiles1:84", + "name": "Ulirfendor", + "spawnGroup": "ulirfendor", + "monsterClass": 0, + "unique": 1, + "maxHP": 288, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 30, + "criticalMultiplier": 2, + "blockChance": 60, + "damageResistance": 6, + "droplistID": "ulirfendor", + "phraseID": "ulirfendor", + "attackDamage": { + "min": 1, + "max": 16 + } + }, + { + "id": "gylew", + "iconID": "monsters_mage2:0", + "name": "Gylew", + "spawnGroup": "gylew", + "monsterClass": 0, + "phraseID": "gylew" + }, + { + "id": "gylew_henchman", + "iconID": "monsters_men:8", + "name": "Gylew's Anhänger", + "spawnGroup": "gylew_henchman", + "monsterClass": 0, + "phraseID": "gylew_henchman" + }, + { + "id": "toszylae", + "iconID": "monsters_liches:1", + "name": "Toszylae", + "spawnGroup": "toszylae", + "monsterClass": 6, + "unique": 1, + "maxHP": 207, + "maxAP": 8, + "moveCost": 5, + "attackCost": 2, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 120, + "damageResistance": 4, + "droplistID": "toszylae", + "phraseID": "toszylae", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 6, + "max": 6 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 3, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "toszylae_guard", + "iconID": "monsters_rltiles1:20", + "name": "Strahlender Wächter", + "spawnGroup": "toszylae_guard", + "monsterClass": 2, + "unique": 1, + "maxHP": 320, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 120, + "damageResistance": 4, + "droplistID": "toszylae_guard", + "phraseID": "toszylae_guard", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 5, + "max": 5 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 2, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "thorin", + "iconID": "monsters_rltiles1:66", + "name": "Thorin", + "spawnGroup": "thorin", + "monsterClass": 0, + "droplistID": "shop_thorin", + "phraseID": "thorin" + }, + { + "id": "lonelyhouse_sp", + "iconID": "monsters_rats:1", + "name": "Kellerratte", + "spawnGroup": "lonelyhouse_sp", + "monsterClass": 4, + "unique": 1, + "maxHP": 79, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 180, + "damageResistance": 4, + "droplistID": "lonelyhouse_sp", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "algangror", + "iconID": "monsters_rltiles1:68", + "name": "Algangror", + "spawnGroup": "algangror", + "monsterClass": 0, + "unique": 1, + "maxHP": 241, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 200, + "criticalMultiplier": 2, + "blockChance": 120, + "damageResistance": 4, + "droplistID": "algangror", + "phraseID": "algangror", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "remgard_bridge", + "iconID": "monsters_men2:4", + "name": "Brücken Beobachtungsposten", + "spawnGroup": "remgard_bridge", + "monsterClass": 0, + "unique": 1, + "phraseID": "remgard_bridge" + } +] diff --git a/AndorsTrail/res/raw-de/monsterlist_v0611_npcs2.json b/AndorsTrail/res/raw-de/monsterlist_v0611_npcs2.json new file mode 100644 index 000000000..5ab965ce9 --- /dev/null +++ b/AndorsTrail/res/raw-de/monsterlist_v0611_npcs2.json @@ -0,0 +1,580 @@ +[ + { + "id": "ingus", + "iconID": "monsters_rltiles1:94", + "name": "Ingus", + "spawnGroup": "ingus", + "monsterClass": 0, + "phraseID": "ingus" + }, + { + "id": "elwyl", + "iconID": "monsters_rltiles3:17", + "name": "Elwyl", + "spawnGroup": "elwyl", + "monsterClass": 0, + "phraseID": "elwyl" + }, + { + "id": "elwel", + "iconID": "monsters_rltiles3:17", + "name": "Elwel", + "spawnGroup": "elwel", + "monsterClass": 0, + "phraseID": "elwel" + }, + { + "id": "hjaldar", + "iconID": "monsters_rltiles1:70", + "name": "Hjaldar", + "spawnGroup": "hjaldar", + "monsterClass": 0, + "droplistID": "shop_hjaldar", + "phraseID": "hjaldar" + }, + { + "id": "norath", + "iconID": "monsters_ld1:8", + "name": "Norath", + "spawnGroup": "norath", + "monsterClass": 0, + "phraseID": "norath" + }, + { + "id": "rothses", + "iconID": "monsters_ld1:14", + "name": "Rothses", + "spawnGroup": "rothses", + "monsterClass": 0, + "droplistID": "shop_rothses", + "phraseID": "rothses" + }, + { + "id": "duaina", + "iconID": "monsters_ld1:154", + "name": "Duaina", + "spawnGroup": "duaina", + "monsterClass": 0, + "phraseID": "duaina" + }, + { + "id": "rg_villager1", + "iconID": "monsters_ld1:132", + "name": "Bürger", + "spawnGroup": "remgard_villager1", + "monsterClass": 0, + "phraseID": "remgard_villager1" + }, + { + "id": "rg_villager2", + "iconID": "monsters_ld1:20", + "name": "Bürger", + "spawnGroup": "remgard_villager2", + "monsterClass": 0, + "phraseID": "remgard_villager2" + }, + { + "id": "rg_villager3", + "iconID": "monsters_ld1:134", + "name": "Bürger", + "spawnGroup": "remgard_villager3", + "monsterClass": 0, + "phraseID": "remgard_villager3" + }, + { + "id": "jhaeld", + "iconID": "monsters_mage:0", + "name": "Jhaeld", + "spawnGroup": "jhaeld", + "monsterClass": 0, + "phraseID": "jhaeld" + }, + { + "id": "krell", + "iconID": "monsters_men2:6", + "name": "Krell", + "spawnGroup": "krell", + "monsterClass": 0, + "phraseID": "krell" + }, + { + "id": "elythom_kn1", + "iconID": "monsters_men:3", + "name": "Ritter von Elythom", + "spawnGroup": "elythom_knight1", + "monsterClass": 0, + "phraseID": "elythom_knight1" + }, + { + "id": "elythom_kn2", + "iconID": "monsters_men:3", + "name": "Ritter von Elythom", + "spawnGroup": "elythom_knight2", + "monsterClass": 0, + "phraseID": "elythom_knight2" + }, + { + "id": "almars", + "iconID": "monsters_rogue1:0", + "name": "Almars", + "spawnGroup": "almars", + "monsterClass": 0, + "phraseID": "almars" + }, + { + "id": "arghes", + "iconID": "monsters_rogue1:0", + "name": "Arghes", + "spawnGroup": "arghes", + "monsterClass": 0, + "droplistID": "shop_arghes", + "phraseID": "arghes" + }, + { + "id": "arnal", + "iconID": "monsters_ld1:28", + "name": "Arnal", + "spawnGroup": "arnal", + "monsterClass": 0, + "droplistID": "shop_arnal", + "phraseID": "arnal" + }, + { + "id": "atash", + "iconID": "monsters_ld1:38", + "name": "Aatash", + "spawnGroup": "atash", + "monsterClass": 0, + "phraseID": "atash" + }, + { + "id": "caeda", + "iconID": "monsters_ld1:145", + "name": "Caeda", + "spawnGroup": "caeda", + "monsterClass": 0, + "phraseID": "caeda" + }, + { + "id": "carthe", + "iconID": "monsters_man1:0", + "name": "Carthe", + "spawnGroup": "carthe", + "monsterClass": 0, + "phraseID": "carthe" + }, + { + "id": "chael", + "iconID": "monsters_men:0", + "name": "Chael", + "spawnGroup": "chael", + "monsterClass": 0, + "phraseID": "chael" + }, + { + "id": "easturlie", + "iconID": "monsters_men:6", + "name": "Easturlie", + "spawnGroup": "easturlie", + "monsterClass": 0, + "phraseID": "easturlie" + }, + { + "id": "emerei", + "iconID": "monsters_ld1:27", + "name": "Emerei", + "spawnGroup": "emerei", + "monsterClass": 0, + "phraseID": "emerei" + }, + { + "id": "ervelyn", + "iconID": "monsters_ld1:228", + "name": "Ervelyn", + "spawnGroup": "ervelyn", + "monsterClass": 0, + "droplistID": "shop_ervelyn", + "phraseID": "ervelyn" + }, + { + "id": "freen", + "iconID": "monsters_rltiles1:77", + "name": "Freen", + "spawnGroup": "freen", + "monsterClass": 0, + "phraseID": "freen" + }, + { + "id": "janach", + "iconID": "monsters_rltiles3:8", + "name": "Janach", + "spawnGroup": "janach", + "monsterClass": 0, + "phraseID": "janach" + }, + { + "id": "kendelow", + "iconID": "monsters_man1:0", + "name": "Kendelow", + "spawnGroup": "kendelow", + "monsterClass": 0, + "droplistID": "shop_kendelow", + "phraseID": "kendelow" + }, + { + "id": "larni", + "iconID": "monsters_ld1:26", + "name": "Larni", + "spawnGroup": "larni", + "monsterClass": 0, + "phraseID": "larni" + }, + { + "id": "maelf", + "iconID": "monsters_ld1:53", + "name": "Maelf", + "spawnGroup": "maelf", + "monsterClass": 0, + "phraseID": "maelf" + }, + { + "id": "morgisia", + "iconID": "monsters_rltiles3:5", + "name": "Morgisia", + "spawnGroup": "morgisia", + "monsterClass": 0, + "phraseID": "morgisia" + }, + { + "id": "perester", + "iconID": "monsters_rltiles3:18", + "name": "Perester", + "spawnGroup": "perester", + "monsterClass": 0, + "phraseID": "perester" + }, + { + "id": "perlynn", + "iconID": "monsters_mage2:0", + "name": "Perlynn", + "spawnGroup": "perlynn", + "monsterClass": 0, + "phraseID": "perlynn" + }, + { + "id": "reinkarr", + "iconID": "monsters_rltiles1:66", + "name": "Reinkarr", + "spawnGroup": "reinkarr", + "monsterClass": 0, + "phraseID": "reinkarr" + }, + { + "id": "remgard_d1", + "iconID": "monsters_ld1:18", + "name": "Tavernengast", + "spawnGroup": "remgard_drunk", + "monsterClass": 0, + "phraseID": "remgard_drunk1" + }, + { + "id": "remgard_d2", + "iconID": "monsters_rltiles2:81", + "name": "Tavernengast", + "spawnGroup": "remgard_drunk", + "monsterClass": 0, + "phraseID": "remgard_drunk2" + }, + { + "id": "remgard_farmer1", + "iconID": "monsters_ld1:26", + "name": "Bauer", + "spawnGroup": "remgard_farmer1", + "monsterClass": 0, + "phraseID": "remgard_farmer1" + }, + { + "id": "remgard_farmer2", + "iconID": "monsters_ld1:220", + "name": "Bauer", + "spawnGroup": "remgard_farmer2", + "monsterClass": 0, + "phraseID": "remgard_farmer2" + }, + { + "id": "remgard_g1", + "iconID": "monsters_ld1:4", + "name": "Wachposten", + "spawnGroup": "remgard_guard", + "monsterClass": 0, + "phraseID": "fallhaven_guard" + }, + { + "id": "remgard_g2", + "iconID": "monsters_ld1:5", + "name": "Wachposten", + "spawnGroup": "remgard_guard", + "monsterClass": 0, + "phraseID": "blackwater_guard1" + }, + { + "id": "remgard_g3", + "iconID": "monsters_ld1:67", + "name": "Wachposten", + "spawnGroup": "remgard_guard2", + "monsterClass": 0, + "phraseID": "remgard_guard1" + }, + { + "id": "remgard_pg", + "iconID": "monsters_ld1:11", + "name": "Gefängnis Wachposten", + "spawnGroup": "remgard_prison_guard", + "monsterClass": 0, + "phraseID": "remgard_prison_guard" + }, + { + "id": "rg_villager4", + "iconID": "monsters_ld1:164", + "name": "Bürger", + "spawnGroup": "remgard_villager4", + "monsterClass": 0, + "phraseID": "remgard_villager4" + }, + { + "id": "rg_villager5", + "iconID": "monsters_ld1:148", + "name": "Bürger", + "spawnGroup": "remgard_villager5", + "monsterClass": 0, + "phraseID": "remgard_villager5" + }, + { + "id": "rg_villager6", + "iconID": "monsters_ld1:188", + "name": "Bürger", + "spawnGroup": "remgard_villager6", + "monsterClass": 0, + "phraseID": "remgard_villager6" + }, + { + "id": "rg_villager7", + "iconID": "monsters_ld1:10", + "name": "Bürger", + "spawnGroup": "remgard_villager7", + "monsterClass": 0, + "phraseID": "remgard_villager7" + }, + { + "id": "rg_villager8", + "iconID": "monsters_rltiles3:18", + "name": "Bürger", + "spawnGroup": "remgard_villager8", + "monsterClass": 0, + "phraseID": "remgard_villager8" + }, + { + "id": "skylenar", + "iconID": "monsters_ld1:3", + "name": "Skylenar", + "spawnGroup": "skylenar", + "monsterClass": 0, + "droplistID": "shop_skylenar", + "phraseID": "skylenar" + }, + { + "id": "taylin", + "iconID": "monsters_rltiles1:74", + "name": "Taylin", + "spawnGroup": "taylin", + "monsterClass": 0, + "phraseID": "taylin" + }, + { + "id": "petdog", + "iconID": "monsters_dogs:0", + "name": "Hund", + "spawnGroup": "petdog", + "monsterClass": 4, + "phraseID": "petdog" + }, + { + "id": "kaverin", + "iconID": "monsters_ld1:100", + "name": "Kaverin", + "spawnGroup": "kaverin", + "monsterClass": 5, + "unique": 1, + "maxHP": 320, + "maxAP": 5, + "moveCost": 5, + "attackCost": 3, + "attackChance": 65, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 90, + "damageResistance": 6, + "droplistID": "kaverin", + "phraseID": "kaverin", + "attackDamage": { + "min": 1, + "max": 20 + } + }, + { + "id": "izthiel_cr", + "iconID": "monsters_rltiles2:52", + "name": "Izthiel Wächter", + "spawnGroup": "izthiel_cr", + "monsterClass": 7, + "unique": 1, + "maxHP": 354, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 60, + "damageResistance": 11, + "droplistID": "oegyth1", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "bleeding_wound", + "magnitude": 3, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "burrower_cr", + "iconID": "monsters_rltiles2:165", + "name": "Riesiger Raupengräber", + "spawnGroup": "burrower_cr", + "monsterClass": 1, + "unique": 1, + "maxHP": 175, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 95, + "blockChance": 80, + "damageResistance": 2, + "droplistID": "oegyth1", + "attackDamage": { + "min": 1, + "max": 25 + } + }, + { + "id": "allaceph_cr", + "iconID": "monsters_rltiles2:103", + "name": "Ehrwürdiger Allaceph", + "spawnGroup": "allaceph_cr", + "monsterClass": 2, + "unique": 1, + "maxHP": 333, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 115, + "damageResistance": 3, + "droplistID": "oegyth1", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 7, + "max": 7 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 3, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_cr", + "iconID": "monsters_rltiles2:38", + "name": "Pestkrabbler Meister", + "spawnGroup": "plaguespider_cr", + "monsterClass": 6, + "unique": 1, + "maxHP": 365, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 85, + "criticalSkill": 160, + "criticalMultiplier": 3, + "blockChance": 175, + "damageResistance": 2, + "droplistID": "oegyth1", + "attackDamage": { + "min": 2, + "max": 8 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 4, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 3, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "maonit_cr", + "iconID": "monsters_rltiles1:107", + "name": "Starke Maonitkreatur", + "spawnGroup": "maonit_cr", + "monsterClass": 5, + "unique": 1, + "maxHP": 620, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 6, + "droplistID": "oegyth1", + "attackDamage": { + "min": 1, + "max": 20 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "stunned", + "magnitude": 1, + "duration": 3, + "chance": 10 + } + ] + } + } +] diff --git a/AndorsTrail/res/raw-de/monsterlist_v068_npcs.json b/AndorsTrail/res/raw-de/monsterlist_v068_npcs.json new file mode 100644 index 000000000..519b9a23e --- /dev/null +++ b/AndorsTrail/res/raw-de/monsterlist_v068_npcs.json @@ -0,0 +1,423 @@ +[ + { + "id": "smug_looking_thief", + "iconID": "monsters_men2:9", + "name": "Überheblich wirkender Dieb", + "spawnGroup": "tg_thief", + "monsterClass": 0, + "phraseID": "thievesguild_thief_1" + }, + { + "id": "thieves_guild_cook", + "iconID": "monsters_men:0", + "name": "Koch der Diebesgilde", + "spawnGroup": "tg_cook", + "monsterClass": 0, + "droplistID": "shop_thieves_guild_cook", + "phraseID": "thievesguild_cook_1" + }, + { + "id": "pickpocket", + "iconID": "monsters_men:7", + "name": "Taschendieb", + "spawnGroup": "pickpocket", + "monsterClass": 0, + "phraseID": "thievesguild_pickpocket_1" + }, + { + "id": "troublemaker", + "iconID": "monsters_men:8", + "name": "Hitzkopf", + "spawnGroup": "troublemaker", + "monsterClass": 0, + "droplistID": "shop_troublemaker", + "phraseID": "thievesguild_troublemaker_1" + }, + { + "id": "farrik", + "iconID": "monsters_rogue1:0", + "name": "Farrik", + "spawnGroup": "farrik", + "monsterClass": 0, + "phraseID": "farrik_select_1" + }, + { + "id": "umar", + "iconID": "monsters_man1:0", + "name": "Umar", + "spawnGroup": "umar", + "monsterClass": 0, + "phraseID": "umar_select_1" + }, + { + "id": "kaori", + "iconID": "monsters_men:7", + "name": "Kaori", + "spawnGroup": "kaori", + "monsterClass": 0, + "phraseID": "kaori_start" + }, + { + "id": "old_vilegard_villager", + "iconID": "monsters_men:0", + "name": "Greis aus Vilegard", + "spawnGroup": "vilegard_villager_1", + "monsterClass": 0, + "phraseID": "vilegard_villager_1" + }, + { + "id": "grumpy_vilegard_villager", + "iconID": "monsters_men:5", + "name": "Griesgram aus Vilegard", + "spawnGroup": "vilegard_villager_2", + "monsterClass": 0, + "phraseID": "vilegard_villager_2" + }, + { + "id": "vilegard_citizen", + "iconID": "monsters_men:1", + "name": "Bürger von Vilegard", + "spawnGroup": "vilegard_villager_3", + "monsterClass": 0, + "phraseID": "vilegard_villager_3" + }, + { + "id": "vilegard_resident", + "iconID": "monsters_men2:0", + "name": "Einwohner von Vilegard", + "spawnGroup": "vilegard_villager_4", + "monsterClass": 0, + "phraseID": "vilegard_villager_4" + }, + { + "id": "vilegard_woman", + "iconID": "monsters_men:6", + "name": "Frau aus Vilegard", + "spawnGroup": "vilegard_villager_5", + "monsterClass": 0, + "phraseID": "vilegard_villager_5" + }, + { + "id": "erttu", + "iconID": "monsters_mage2:0", + "name": "Erttu", + "spawnGroup": "erttu", + "monsterClass": 0, + "phraseID": "erttu_1" + }, + { + "id": "dunla", + "iconID": "monsters_rogue1:0", + "name": "Dunla", + "spawnGroup": "dunla", + "monsterClass": 0, + "droplistID": "shop_dunla", + "phraseID": "dunla_default" + }, + { + "id": "tharwyn", + "iconID": "monsters_men:7", + "name": "Tharwyn", + "spawnGroup": "tharwyn", + "monsterClass": 0, + "droplistID": "shop_tharwyn", + "phraseID": "tharwyn_select" + }, + { + "id": "tavern_guest", + "iconID": "monsters_men:0", + "name": "Tavernengast", + "spawnGroup": "vg_tavern_drunk", + "monsterClass": 0, + "phraseID": "vilegard_tavern_drunk_1" + }, + { + "id": "jolnor", + "iconID": "monsters_men2:8", + "name": "Jolnor", + "spawnGroup": "jolnor", + "monsterClass": 0, + "droplistID": "shop_jolnor", + "phraseID": "jolnor_select_1" + }, + { + "id": "alynndir", + "iconID": "monsters_mage2:0", + "name": "Alynndir", + "spawnGroup": "alynndir", + "monsterClass": 0, + "droplistID": "shop_alynndir", + "phraseID": "alynndir_1" + }, + { + "id": "vilegard_armorer", + "iconID": "monsters_mage2:0", + "name": "Vilegard's Rüstungsbauer", + "spawnGroup": "vg_armorer", + "monsterClass": 0, + "droplistID": "shop_vg_armorer", + "phraseID": "vilegard_armorer_select" + }, + { + "id": "vilegard_smith", + "iconID": "monsters_mage2:0", + "name": "Vilegard's Schmied", + "spawnGroup": "vg_smith", + "monsterClass": 0, + "droplistID": "shop_vg_smith", + "phraseID": "vilegard_smith_select" + }, + { + "id": "ogam", + "iconID": "monsters_men:0", + "name": "Ogam", + "spawnGroup": "ogam", + "monsterClass": 0, + "phraseID": "ogam_1" + }, + { + "id": "foaming_flask_cook", + "iconID": "monsters_men:0", + "name": "Koch der Taverne 'Schäumende Flasche'", + "spawnGroup": "ff_cook", + "monsterClass": 0, + "phraseID": "ff_cook_1" + }, + { + "id": "torilo", + "iconID": "monsters_men2:9", + "name": "Torilo", + "spawnGroup": "torilo", + "monsterClass": 0, + "droplistID": "shop_torilo", + "phraseID": "torilo_1" + }, + { + "id": "ambelie", + "iconID": "monsters_men:6", + "name": "Ambelie", + "spawnGroup": "ambelie", + "monsterClass": 0, + "phraseID": "ambelie_1" + }, + { + "id": "feygard_patrol", + "iconID": "monsters_rltiles3:14", + "name": "Feygard Patrouille", + "spawnGroup": "ff_guard", + "monsterClass": 0, + "phraseID": "ff_guard_1" + }, + { + "id": "feygard_patrol_captain", + "iconID": "monsters_men:3", + "name": "Feygard Patrouillenhauptmann", + "spawnGroup": "ff_captain", + "monsterClass": 0, + "phraseID": "ff_captain_1" + }, + { + "id": "feygard_patrol_watch", + "iconID": "monsters_rltiles3:14", + "name": "Feygard Türwache", + "spawnGroup": "ff_outsideguard", + "monsterClass": 0, + "unique": 1, + "maxHP": 80, + "attackCost": 5, + "attackChance": 70, + "blockChance": 80, + "damageResistance": 3, + "droplistID": "ff_outsideguard", + "phraseID": "ff_outsideguard_select", + "attackDamage": { + "min": 2, + "max": 7 + } + }, + { + "id": "wrye", + "iconID": "monsters_men:6", + "name": "Wrye", + "spawnGroup": "wrye", + "monsterClass": 0, + "phraseID": "wrye_select_1" + }, + { + "id": "oluag", + "iconID": "monsters_men:8", + "name": "Oluag", + "spawnGroup": "oluag", + "monsterClass": 0, + "phraseID": "oluag_1" + }, + { + "id": "cave_dwelling_boar", + "iconID": "monsters_dogs:6", + "name": "Höhleneber", + "spawnGroup": "caveboar1", + "monsterClass": 4, + "maxHP": 35, + "attackCost": 5, + "attackChance": 70, + "blockChance": 60, + "damageResistance": 3, + "droplistID": "canine2", + "attackDamage": { + "min": 3, + "max": 8 + } + }, + { + "id": "hardshell_beetle", + "iconID": "monsters_insects:4", + "name": "Hartschalenkäfer", + "spawnGroup": "beetle2", + "monsterClass": 1, + "maxHP": 25, + "attackCost": 5, + "attackChance": 50, + "blockChance": 40, + "damageResistance": 9, + "droplistID": "beetle2", + "attackDamage": { + "min": 0, + "max": 5 + } + }, + { + "id": "young_shadow_gargoyle", + "iconID": "monsters_misc:1", + "name": "Junger Schattengargoyle", + "spawnGroup": "shadowgarg1", + "monsterClass": 3, + "maxHP": 35, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 8, + "criticalMultiplier": 3, + "blockChance": 75, + "damageResistance": 3, + "droplistID": "shadowgarg1", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "fledgling_shadow_gargoyle", + "iconID": "monsters_misc:1", + "name": "Halbwüchsiger Schattengargoyle", + "spawnGroup": "shadowgarg1", + "monsterClass": 3, + "maxHP": 36, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 8, + "criticalMultiplier": 3, + "blockChance": 75, + "damageResistance": 3, + "droplistID": "shadowgarg1", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "shadow_gargoyle", + "iconID": "monsters_misc:2", + "name": "Schattengargoyle", + "spawnGroup": "shadowgarg2", + "monsterClass": 3, + "maxHP": 37, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 8, + "criticalMultiplier": 3, + "blockChance": 85, + "damageResistance": 3, + "droplistID": "shadowgarg1", + "attackDamage": { + "min": 4, + "max": 10 + } + }, + { + "id": "tough_shadow_gargoyle", + "iconID": "monsters_misc:2", + "name": "Kräftiger Schattengargoyle", + "spawnGroup": "shadowgarg2", + "monsterClass": 3, + "maxHP": 37, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 8, + "criticalMultiplier": 3, + "blockChance": 85, + "damageResistance": 4, + "droplistID": "shadowgarg2", + "attackDamage": { + "min": 4, + "max": 10 + } + }, + { + "id": "shadow_gargoyle_trainer", + "iconID": "monsters_liches:0", + "name": "Schattengargoyle Ausbilder", + "spawnGroup": "shadowgarg3", + "monsterClass": 6, + "maxHP": 35, + "attackCost": 5, + "attackChance": 90, + "criticalSkill": 12, + "criticalMultiplier": 3, + "blockChance": 90, + "damageResistance": 5, + "droplistID": "shadowgarg3", + "attackDamage": { + "min": 3, + "max": 6 + } + }, + { + "id": "shadow_gargoyle_master", + "iconID": "monsters_liches:1", + "name": "Schattengargoyle Meister", + "spawnGroup": "shadowgarg4", + "monsterClass": 6, + "maxHP": 35, + "attackCost": 5, + "attackChance": 125, + "criticalSkill": 12, + "criticalMultiplier": 3, + "blockChance": 90, + "damageResistance": 5, + "droplistID": "shadowgarg3", + "attackDamage": { + "min": 3, + "max": 6 + } + }, + { + "id": "maelveon", + "iconID": "monsters_liches:2", + "name": "Maelveon", + "spawnGroup": "maelveon", + "monsterClass": 6, + "unique": 1, + "maxHP": 55, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 15, + "criticalMultiplier": 3, + "blockChance": 90, + "damageResistance": 5, + "droplistID": "maelveon", + "phraseID": "maelveon", + "attackDamage": { + "min": 0, + "max": 12 + } + } +] diff --git a/AndorsTrail/res/raw-de/monsterlist_v069_monsters.json b/AndorsTrail/res/raw-de/monsterlist_v069_monsters.json new file mode 100644 index 000000000..6b2ddf7b7 --- /dev/null +++ b/AndorsTrail/res/raw-de/monsterlist_v069_monsters.json @@ -0,0 +1,646 @@ +[ + { + "id": "puny_caverat", + "iconID": "monsters_rats:0", + "name": "Höhlenratte", + "spawnGroup": "puny_caverat", + "monsterClass": 4, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 50, + "blockChance": 30, + "droplistID": "rat", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "rabid_hound", + "iconID": "monsters_rltiles2:108", + "name": "Tollwütiger Jagdhund", + "spawnGroup": "forestwolf2", + "monsterClass": 4, + "maxHP": 40, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 110, + "blockChance": 30, + "droplistID": "canine", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "vicious_hound", + "iconID": "monsters_rltiles2:110", + "name": "Tückischer Jagdhund", + "spawnGroup": "forestboar4", + "monsterClass": 4, + "maxHP": 31, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 150, + "blockChance": 60, + "damageResistance": 3, + "droplistID": "canineboss", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "mountain_wolf", + "iconID": "monsters_rltiles2:109", + "name": "Bergwolf", + "spawnGroup": "primwolf1", + "monsterClass": 4, + "maxHP": 49, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 150, + "blockChance": 60, + "damageResistance": 3, + "droplistID": "canine", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "hatchling_white_wyrm", + "iconID": "monsters_rltiles1:118", + "name": "Geschlüpfter weißer Lindwurm", + "spawnGroup": "wyrm_1", + "monsterClass": 7, + "maxHP": 41, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 75, + "blockChance": 130, + "damageResistance": 5, + "droplistID": "wyrm_1", + "attackDamage": { + "min": 4, + "max": 10 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "fatigue_minor", + "magnitude": 1, + "duration": 5, + "chance": 10 + } + ] + } + }, + { + "id": "young_white_wyrm", + "iconID": "monsters_rltiles1:118", + "name": "Junger weißer Lindwurm", + "spawnGroup": "wyrm_2", + "monsterClass": 7, + "maxHP": 47, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 75, + "blockChance": 130, + "damageResistance": 5, + "droplistID": "wyrm_2", + "attackDamage": { + "min": 4, + "max": 10 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "fatigue_minor", + "magnitude": 1, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "white_wyrm", + "iconID": "monsters_rltiles1:119", + "name": "Weißer Lindwurm", + "spawnGroup": "wyrm_3", + "monsterClass": 7, + "maxHP": 55, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 75, + "blockChance": 130, + "damageResistance": 5, + "droplistID": "wyrm_3", + "attackDamage": { + "min": 4, + "max": 10 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "fatigue_minor", + "magnitude": 1, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "young_aulaeth", + "iconID": "monsters_rltiles2:176", + "name": "Junger Aulaeth", + "spawnGroup": "wyrm_1", + "monsterClass": 5, + "maxHP": 105, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 40, + "blockChance": 30, + "damageResistance": 5, + "droplistID": "aulaeth", + "attackDamage": { + "min": 0, + "max": 4 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "aulaeth", + "iconID": "monsters_rltiles2:58", + "name": "Aulaeth", + "spawnGroup": "wyrm_2", + "monsterClass": 5, + "maxHP": 120, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 40, + "blockChance": 40, + "damageResistance": 6, + "droplistID": "aulaeth", + "attackDamage": { + "min": 0, + "max": 5 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "strong_aulaeth", + "iconID": "monsters_rltiles2:58", + "name": "Starker Aulaeth", + "spawnGroup": "wyrm_3", + "monsterClass": 5, + "maxHP": 135, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 40, + "blockChance": 35, + "damageResistance": 6, + "droplistID": "aulaeth", + "attackDamage": { + "min": 0, + "max": 5 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "wyrm_trainer", + "iconID": "monsters_rltiles2:0", + "name": "Lindwurm Ausbilder", + "spawnGroup": "wyrm_4", + "monsterClass": 6, + "maxHP": 69, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "blockChance": 90, + "damageResistance": 4, + "droplistID": "wyrm_4", + "attackDamage": { + "min": 2, + "max": 9 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + }, + "conditionsTarget": [ + { + "condition": "fatigue_minor", + "magnitude": 1, + "duration": 10, + "chance": 70 + } + ] + } + }, + { + "id": "wyrm_apprentice", + "iconID": "monsters_rltiles2:0", + "name": "Lindwurm Lehrling", + "spawnGroup": "wyrm_4", + "monsterClass": 6, + "maxHP": 69, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 140, + "blockChance": 90, + "damageResistance": 4, + "droplistID": "wyrm_4", + "attackDamage": { + "min": 2, + "max": 9 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + }, + "conditionsTarget": [ + { + "condition": "fatigue_minor", + "magnitude": 1, + "duration": 10, + "chance": 70 + } + ] + } + }, + { + "id": "young_gornaud", + "iconID": "monsters_rltiles2:29", + "name": "Junger Gornaud", + "spawnGroup": "gornaud_1", + "monsterClass": 5, + "maxHP": 70, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "blockChance": 50, + "droplistID": "gornaud_1", + "attackDamage": { + "min": 0, + "max": 15 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "dazed", + "magnitude": 1, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "gornaud", + "iconID": "monsters_rltiles2:29", + "name": "Gornaud", + "spawnGroup": "gornaud_2", + "monsterClass": 5, + "maxHP": 95, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "blockChance": 50, + "damageResistance": 4, + "droplistID": "gornaud_2", + "attackDamage": { + "min": 0, + "max": 15 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "dazed", + "magnitude": 1, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "strong_gornaud", + "iconID": "monsters_rltiles2:30", + "name": "Starker Gornaud", + "spawnGroup": "gornaud_3", + "monsterClass": 5, + "maxHP": 95, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "blockChance": 50, + "damageResistance": 5, + "droplistID": "gornaud_3", + "attackDamage": { + "min": 0, + "max": 15 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "dazed", + "magnitude": 1, + "duration": 5, + "chance": 70 + } + ] + } + }, + { + "id": "slithering_venomfang", + "iconID": "monsters_snakes:2", + "name": "Schlüpfrige Giftschlange", + "spawnGroup": "gornaud_1", + "monsterClass": 7, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 90, + "damageResistance": 2, + "droplistID": "cave_serpent", + "attackDamage": { + "min": 1, + "max": 2 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_weak", + "magnitude": 1, + "duration": 2, + "chance": 20 + } + ] + } + }, + { + "id": "scaled_venomfang", + "iconID": "monsters_snakes:3", + "name": "Geschuppte Giftschlange", + "spawnGroup": "gornaud_2", + "monsterClass": 7, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "blockChance": 90, + "damageResistance": 2, + "droplistID": "cave_serpent", + "attackDamage": { + "min": 2, + "max": 4 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_weak", + "magnitude": 1, + "duration": 2, + "chance": 50 + } + ] + } + }, + { + "id": "tough_venomfang", + "iconID": "monsters_snakes:3", + "name": "Kräftige Giftschlange", + "spawnGroup": "gornaud_3", + "monsterClass": 7, + "maxHP": 41, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "blockChance": 90, + "damageResistance": 2, + "droplistID": "cave_serpent", + "attackDamage": { + "min": 2, + "max": 5 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_weak", + "magnitude": 1, + "duration": 2, + "chance": 50 + } + ] + } + }, + { + "id": "restless_dead", + "iconID": "monsters_rltiles1:47", + "name": "Ruheloser Toter", + "spawnGroup": "restless_dead_1", + "monsterClass": 8, + "maxHP": 25, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 50, + "criticalSkill": 80, + "criticalMultiplier": 2, + "blockChance": 140, + "damageResistance": 3, + "droplistID": "restless_dead_1", + "attackDamage": { + "min": 0, + "max": 3 + } + }, + { + "id": "grave_spawn", + "iconID": "monsters_rltiles1:49", + "name": "Gruftbewohner", + "spawnGroup": "restless_dead_1", + "monsterClass": 2, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 110, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 35, + "damageResistance": 3, + "droplistID": "restless_dead_1", + "attackDamage": { + "min": 2, + "max": 5 + } + }, + { + "id": "restless_apparition", + "iconID": "monsters_rltiles1:47", + "name": "Ruhelose Erscheinung", + "spawnGroup": "restless_dead_2", + "monsterClass": 8, + "maxHP": 29, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 10, + "damageResistance": 1, + "droplistID": "restless_dead_2", + "attackDamage": { + "min": 2, + "max": 6 + } + }, + { + "id": "skeletal_reaper", + "iconID": "monsters_rltiles1:27", + "name": "Sensenmann", + "spawnGroup": "restless_dead_2", + "monsterClass": 3, + "maxHP": 15, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 150, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 110, + "droplistID": "restless_dead_2", + "attackDamage": { + "min": 0, + "max": 9 + } + }, + { + "id": "kazaul_spawn", + "iconID": "monsters_rltiles1:41", + "name": "Kazaul Nestling", + "spawnGroup": "kazaul_1", + "monsterClass": 2, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 50, + "criticalMultiplier": 2, + "blockChance": 90, + "damageResistance": 1, + "droplistID": "kazaul_1", + "attackDamage": { + "min": 3, + "max": 5 + } + }, + { + "id": "kazaul_imp", + "iconID": "monsters_rltiles1:45", + "name": "Kazaul Kobold", + "spawnGroup": "kazaul_2", + "monsterClass": 2, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 105, + "damageResistance": 1, + "droplistID": "kazaul_2", + "attackDamage": { + "min": 3, + "max": 7 + } + }, + { + "id": "kazaul_guardian", + "iconID": "monsters_rltiles1:42", + "name": "Kazaul Wächter", + "spawnGroup": "kazaul_guardian", + "monsterClass": 2, + "unique": 1, + "maxHP": 95, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 90, + "damageResistance": 3, + "droplistID": "kazaul_guardian", + "phraseID": "kazaul_guardian", + "attackDamage": { + "min": 3, + "max": 8 + } + }, + { + "id": "graverobber", + "iconID": "monsters_karvis2:3", + "name": "Grabräuber", + "spawnGroup": "bjorgur_bandit", + "monsterClass": 0, + "unique": 1, + "maxHP": 62, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 120, + "blockChance": 72, + "damageResistance": 1, + "droplistID": "bjorgur_bandit", + "phraseID": "bjorgur_bandit", + "attackDamage": { + "min": 2, + "max": 6 + } + } +] diff --git a/AndorsTrail/res/raw-de/monsterlist_v069_npcs.json b/AndorsTrail/res/raw-de/monsterlist_v069_npcs.json new file mode 100644 index 000000000..661b8eed4 --- /dev/null +++ b/AndorsTrail/res/raw-de/monsterlist_v069_npcs.json @@ -0,0 +1,536 @@ +[ + { + "id": "agent1", + "iconID": "monsters_men:4", + "name": "Abgesandter", + "spawnGroup": "bwm_agent_1", + "monsterClass": 0, + "unique": 1, + "phraseID": "bwm_agent_1_start" + }, + { + "id": "agent2", + "iconID": "monsters_men:4", + "name": "Abgesandter", + "spawnGroup": "bwm_agent_2", + "monsterClass": 0, + "unique": 1, + "phraseID": "bwm_agent_2_start" + }, + { + "id": "agent3", + "iconID": "monsters_men:4", + "name": "Abgesandter", + "spawnGroup": "bwm_agent_3", + "monsterClass": 0, + "unique": 1, + "phraseID": "bwm_agent_3_start" + }, + { + "id": "agent4", + "iconID": "monsters_men:4", + "name": "Abgesandter", + "spawnGroup": "bwm_agent_4", + "monsterClass": 0, + "unique": 1, + "phraseID": "bwm_agent_4_start" + }, + { + "id": "agent5", + "iconID": "monsters_men:4", + "name": "Abgesandter", + "spawnGroup": "bwm_agent_5", + "monsterClass": 0, + "unique": 1, + "phraseID": "bwm_agent_5_start" + }, + { + "id": "agent6", + "iconID": "monsters_men:4", + "name": "Abgesandter", + "spawnGroup": "bwm_agent_6", + "monsterClass": 0, + "unique": 1, + "phraseID": "bwm_agent_6_start" + }, + { + "id": "arghest", + "iconID": "monsters_rltiles2:81", + "name": "Arghest", + "spawnGroup": "arghest", + "monsterClass": 0, + "phraseID": "arghest_start" + }, + { + "id": "tonis", + "iconID": "monsters_rltiles1:67", + "name": "Tonis", + "spawnGroup": "tonis", + "monsterClass": 0, + "phraseID": "tonis_start" + }, + { + "id": "moyra", + "iconID": "monsters_rltiles1:74", + "name": "Moyra", + "spawnGroup": "moyra", + "monsterClass": 0, + "phraseID": "moyra_1" + }, + { + "id": "prim_citizen", + "iconID": "monsters_karvis2:6", + "name": "Bürger von Prim", + "spawnGroup": "prim_commoner1", + "monsterClass": 0, + "phraseID": "prim_commoner1" + }, + { + "id": "prim_commoner", + "iconID": "monsters_rltiles1:68", + "name": "Bürger von Prim", + "spawnGroup": "prim_commoner2", + "monsterClass": 0, + "phraseID": "prim_commoner2" + }, + { + "id": "prim_resident", + "iconID": "monsters_karvis2:2", + "name": "Einwohner von Prim", + "spawnGroup": "prim_commoner3", + "monsterClass": 0, + "phraseID": "prim_commoner3" + }, + { + "id": "prim_evoker", + "iconID": "monsters_rltiles1:84", + "name": "Bürger von Prim", + "spawnGroup": "prim_commoner4", + "monsterClass": 0, + "phraseID": "prim_commoner4" + }, + { + "id": "laecca", + "iconID": "monsters_rltiles1:72", + "name": "Laecca", + "spawnGroup": "laecca", + "monsterClass": 0, + "phraseID": "laecca_1" + }, + { + "id": "prim_cook", + "iconID": "monsters_karvis2:0", + "name": "Prim's Koch", + "spawnGroup": "prim_cook", + "monsterClass": 0, + "phraseID": "prim_cook_start" + }, + { + "id": "prim_visitor", + "iconID": "monsters_rltiles1:63", + "name": "Besucher in Prim", + "spawnGroup": "prim_innguest", + "monsterClass": 0, + "phraseID": "prim_innguest" + }, + { + "id": "birgil", + "iconID": "monsters_rltiles2:81", + "name": "Birgil", + "spawnGroup": "birgil", + "monsterClass": 0, + "droplistID": "shop_birgil", + "phraseID": "birgil_1" + }, + { + "id": "prim_tavern_guest", + "iconID": "monsters_rltiles1:106", + "name": "Prim Tavernengast", + "spawnGroup": "prim_tavern_guest1", + "monsterClass": 0, + "phraseID": "prim_tavern_guest1" + }, + { + "id": "prim_tavern_regular", + "iconID": "monsters_rltiles1:106", + "name": "Prim Tavernenstammgast", + "spawnGroup": "prim_tavern_guest2", + "monsterClass": 0, + "phraseID": "prim_tavern_guest2" + }, + { + "id": "prim_bar_guest", + "iconID": "monsters_rltiles1:106", + "name": "Prim Tavernengast", + "spawnGroup": "prim_tavern_guest3", + "monsterClass": 0, + "phraseID": "prim_tavern_guest3" + }, + { + "id": "prim_bar_regular", + "iconID": "monsters_rltiles1:106", + "name": "Prim Tavernenstammgast", + "spawnGroup": "prim_tavern_guest4", + "monsterClass": 0, + "phraseID": "prim_tavern_guest4" + }, + { + "id": "prim_armorer", + "iconID": "monsters_rltiles1:88", + "name": "Prim's Rüstungsbauer", + "spawnGroup": "prim_armorer", + "monsterClass": 0, + "droplistID": "shop_prim_armorer", + "phraseID": "prim_armorer" + }, + { + "id": "jueth", + "iconID": "monsters_men2:0", + "name": "Jueth", + "spawnGroup": "prim_tailor", + "monsterClass": 0, + "phraseID": "prim_tailor" + }, + { + "id": "bjorgur", + "iconID": "monsters_karvis2:7", + "name": "Bjorgur", + "spawnGroup": "bjorgur", + "monsterClass": 0, + "phraseID": "bjorgur_start" + }, + { + "id": "prim_prisoner", + "iconID": "monsters_rltiles2:81", + "name": "Gefangener in Prim", + "spawnGroup": "prim_prisoner", + "monsterClass": 0, + "phraseID": "prim_guard1" + }, + { + "id": "fulus", + "iconID": "monsters_karvis2:3", + "name": "Fulus", + "spawnGroup": "fulus", + "monsterClass": 0, + "phraseID": "fulus_start" + }, + { + "id": "guthbered", + "iconID": "monsters_rltiles1:92", + "name": "Guthbered", + "spawnGroup": "guthbered", + "monsterClass": 0, + "unique": 1, + "maxHP": 80, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "guthbered", + "phraseID": "guthbered_start", + "attackDamage": { + "min": 4, + "max": 9 + } + }, + { + "id": "guthbereds_bodyguard", + "iconID": "monsters_rltiles1:76", + "name": "Guthbered's Leibwächter", + "spawnGroup": "guthbered_guard", + "monsterClass": 0, + "phraseID": "guthbered_guard" + }, + { + "id": "prim_weapon_guard", + "iconID": "monsters_rltiles1:65", + "name": "Prim Wachposten für die Waffen", + "spawnGroup": "prim_guard1", + "monsterClass": 0, + "phraseID": "prim_guard1" + }, + { + "id": "prim_sentry", + "iconID": "monsters_rltiles3:14", + "name": "Prim Wachposten", + "spawnGroup": "prim_guard2", + "monsterClass": 0, + "phraseID": "prim_guard2" + }, + { + "id": "prim_guard", + "iconID": "monsters_rltiles1:65", + "name": "Prim Wachposten", + "spawnGroup": "prim_guard4", + "monsterClass": 0, + "phraseID": "prim_guard4" + }, + { + "id": "tired_prim_guard", + "iconID": "monsters_rltiles1:76", + "name": "Müder Prim Wachposten", + "spawnGroup": "prim_guard3", + "monsterClass": 0, + "phraseID": "prim_guard3" + }, + { + "id": "prim_treasury_guard", + "iconID": "monsters_rltiles1:69", + "name": "Prim Wachposten für den Schatz", + "spawnGroup": "prim_treasury_guard", + "monsterClass": 0, + "phraseID": "prim_treasury_guard" + }, + { + "id": "samar", + "iconID": "monsters_rltiles2:93", + "name": "Samar", + "spawnGroup": "prim_priest", + "monsterClass": 0, + "droplistID": "shop_samar", + "phraseID": "prim_priest" + }, + { + "id": "prim_priestly_acolyte", + "iconID": "monsters_rltiles1:83", + "name": "Prim Messdiener", + "spawnGroup": "prim_acolyte", + "monsterClass": 0, + "phraseID": "prim_acolyte" + }, + { + "id": "studying_prim_pupil", + "iconID": "monsters_rltiles1:74", + "name": "Studierender Prim Schüler", + "spawnGroup": "prim_pupil1", + "monsterClass": 0, + "phraseID": "prim_pupil1" + }, + { + "id": "reading_prim_pupil", + "iconID": "monsters_rltiles1:74", + "name": "Lesender Prim Schüler", + "spawnGroup": "prim_pupil2", + "monsterClass": 0, + "phraseID": "prim_pupil2" + }, + { + "id": "prim_pupil", + "iconID": "monsters_rltiles1:74", + "name": "Prim Schüler", + "spawnGroup": "prim_pupil3", + "monsterClass": 0, + "phraseID": "prim_pupil3" + }, + { + "id": "blackwater_entrance_guard", + "iconID": "monsters_rltiles3:14", + "name": "Blackwater Eingangswachposten", + "spawnGroup": "blackwater_entranceguard", + "monsterClass": 0, + "maxHP": 30, + "maxAP": 10, + "phraseID": "blackwater_entranceguard" + }, + { + "id": "blackwater_dinner_guest", + "iconID": "monsters_karvis2:2", + "name": "Blackwater Tischgast", + "spawnGroup": "blackwater_guest1", + "monsterClass": 0, + "maxHP": 20, + "maxAP": 10, + "phraseID": "blackwater_guest1" + }, + { + "id": "blackwater_inhabitant", + "iconID": "monsters_man1:0", + "name": "Bürger von Blackwater", + "spawnGroup": "blackwater_guest2", + "monsterClass": 0, + "maxHP": 10, + "maxAP": 10, + "phraseID": "blackwater_guest2" + }, + { + "id": "blackwater_cook", + "iconID": "monsters_karvis2:0", + "name": "Blackwater's Koch", + "spawnGroup": "blackwater_cook", + "monsterClass": 0, + "phraseID": "blackwater_cook" + }, + { + "id": "keneg", + "iconID": "monsters_rltiles1:86", + "name": "Keneg", + "spawnGroup": "keneg", + "monsterClass": 0, + "phraseID": "keneg" + }, + { + "id": "mazeg", + "iconID": "monsters_rltiles1:85", + "name": "Mazeg", + "spawnGroup": "mazeg", + "monsterClass": 0, + "droplistID": "shop_mazeg", + "phraseID": "mazeg" + }, + { + "id": "waeges", + "iconID": "monsters_rltiles1:88", + "name": "Waeges", + "spawnGroup": "waeges", + "monsterClass": 0, + "droplistID": "shop_waeges", + "phraseID": "waeges" + }, + { + "id": "blackwater_fighter", + "iconID": "monsters_rltiles1:66", + "name": "Blackwater Kämpfer", + "spawnGroup": "blackwater_fighter", + "monsterClass": 0, + "phraseID": "blackwater_fighter" + }, + { + "id": "ungorm", + "iconID": "monsters_rltiles1:83", + "name": "Ungorm", + "spawnGroup": "ungorm", + "monsterClass": 0, + "phraseID": "ungorm" + }, + { + "id": "blackwater_pupil", + "iconID": "monsters_rltiles1:74", + "name": "Blackwater Schüler", + "spawnGroup": "blackwater_pupil", + "monsterClass": 0, + "phraseID": "blackwater_pupil" + }, + { + "id": "laede", + "iconID": "monsters_rltiles1:81", + "name": "Laede", + "spawnGroup": "blackwater_sleephall", + "monsterClass": 0, + "phraseID": "laede" + }, + { + "id": "herec", + "iconID": "monsters_men2:9", + "name": "Herec", + "spawnGroup": "herec", + "monsterClass": 0, + "droplistID": "shop_herec", + "phraseID": "herec_start" + }, + { + "id": "iducus", + "iconID": "monsters_rltiles1:87", + "name": "Iducus", + "spawnGroup": "iducus", + "monsterClass": 0, + "droplistID": "shop_iducus", + "phraseID": "iducus" + }, + { + "id": "blackwater_priest", + "iconID": "monsters_rltiles1:80", + "name": "Blackwater Priester", + "spawnGroup": "blackwater_priest", + "monsterClass": 0, + "phraseID": "blackwater_priest" + }, + { + "id": "studying_blackwater_priest", + "iconID": "monsters_rltiles1:84", + "name": "Studierender Blackwater Priester", + "spawnGroup": "blackwater_pupil", + "monsterClass": 0, + "phraseID": "blackwater_pupil" + }, + { + "id": "blackwater_guard", + "iconID": "monsters_rltiles1:76", + "name": "Blackwater Wachposten", + "spawnGroup": "blackwater_guard1", + "monsterClass": 0, + "phraseID": "blackwater_guard1" + }, + { + "id": "blackwater_border_patrol", + "iconID": "monsters_rltiles1:76", + "name": "Blackwater Grenzpatrouille", + "spawnGroup": "blackwater_guard2", + "monsterClass": 0, + "phraseID": "blackwater_guard2" + }, + { + "id": "harlenns_bodyguard", + "iconID": "monsters_rltiles1:76", + "name": "Harlenn's Leibwächter", + "spawnGroup": "blackwater_bossguard", + "monsterClass": 0, + "phraseID": "blackwater_bossguard" + }, + { + "id": "blackwater_chamber_guard", + "iconID": "monsters_men:3", + "name": "Blackwater Hinterzimmerwachposten", + "spawnGroup": "blackwater_throneguard", + "monsterClass": 0, + "unique": 1, + "phraseID": "blackwater_throneguard" + }, + { + "id": "harlenn", + "iconID": "monsters_men2:6", + "name": "Harlenn", + "spawnGroup": "harlenn", + "monsterClass": 0, + "unique": 1, + "maxHP": 80, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "harlenn", + "phraseID": "harlenn_start", + "attackDamage": { + "min": 4, + "max": 9 + } + }, + { + "id": "throdna", + "iconID": "monsters_men2:4", + "name": "Throdna", + "spawnGroup": "throdna", + "monsterClass": 0, + "phraseID": "throdna_start" + }, + { + "id": "throdnas_guard", + "iconID": "monsters_rltiles1:85", + "name": "Throdna's Leibwächter", + "spawnGroup": "throdna_guard", + "monsterClass": 0, + "phraseID": "throdna_guard" + }, + { + "id": "blackwater_mage", + "iconID": "monsters_rltiles1:80", + "name": "Blackwater Magier", + "spawnGroup": "blackwater_acolyte", + "monsterClass": 0, + "phraseID": "blackwater_acolyte" + } +] diff --git a/AndorsTrail/res/raw-de/monsterlist_wilderness.json b/AndorsTrail/res/raw-de/monsterlist_wilderness.json new file mode 100644 index 000000000..24d1122b9 --- /dev/null +++ b/AndorsTrail/res/raw-de/monsterlist_wilderness.json @@ -0,0 +1,513 @@ +[ + { + "id": "wild_fox", + "iconID": "monsters_dogs:3", + "name": "Wilder Fuchs", + "spawnGroup": "fox2", + "monsterClass": 4, + "maxHP": 25, + "attackCost": 5, + "attackChance": 100, + "blockChance": 40, + "droplistID": "canine", + "attackDamage": { + "min": 4, + "max": 5 + } + }, + { + "id": "stinging_wasp", + "iconID": "monsters_insects:1", + "name": "Stechende Wespen", + "spawnGroup": "forestwasp2", + "monsterClass": 1, + "maxHP": 15, + "attackCost": 10, + "attackChance": 150, + "blockChance": 60, + "droplistID": "wasp", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "wild_boar", + "iconID": "monsters_dogs:6", + "name": "Wilder Eber", + "spawnGroup": "forestboar2", + "monsterClass": 4, + "maxHP": 20, + "attackCost": 5, + "attackChance": 110, + "blockChance": 30, + "droplistID": "canineboss", + "attackDamage": { + "min": 3, + "max": 3 + } + }, + { + "id": "forest_beetle", + "iconID": "monsters_insects:4", + "name": "Waldkäfer", + "spawnGroup": "forestbeetle", + "monsterClass": 1, + "maxHP": 14, + "attackCost": 10, + "attackChance": 150, + "blockChance": 60, + "damageResistance": 2, + "droplistID": "insect", + "attackDamage": { + "min": 2, + "max": 4 + } + }, + { + "id": "wolf", + "iconID": "monsters_dogs:4", + "name": "Wolf", + "spawnGroup": "forestwolf1", + "monsterClass": 4, + "maxHP": 30, + "maxAP": 10, + "moveCost": 3, + "attackCost": 5, + "attackChance": 110, + "blockChance": 30, + "droplistID": "canine", + "attackDamage": { + "min": 3, + "max": 6 + } + }, + { + "id": "forest_serpent", + "iconID": "monsters_snakes:4", + "name": "Waldschlange", + "spawnGroup": "forestserpent1", + "monsterClass": 7, + "maxHP": 20, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "criticalSkill": 30, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "snake2", + "attackDamage": { + "min": 2, + "max": 3 + } + }, + { + "id": "vicious_forest_serpent", + "iconID": "monsters_snakes:4", + "name": "Tückische Waldschlange", + "spawnGroup": "forestserpent2", + "monsterClass": 7, + "maxHP": 27, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "criticalSkill": 30, + "criticalMultiplier": 2, + "blockChance": 50, + "droplistID": "snake2", + "attackDamage": { + "min": 3, + "max": 4 + } + }, + { + "id": "anklebiter", + "iconID": "monsters_dogs:6", + "name": "Keiler", + "spawnGroup": "forestboar3", + "monsterClass": 4, + "maxHP": 31, + "attackCost": 5, + "attackChance": 150, + "blockChance": 60, + "damageResistance": 3, + "droplistID": "canine2", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "flagstone_sentry", + "iconID": "monsters_men:3", + "name": "Flagstone Wachposten", + "spawnGroup": "flagstone_sentry", + "monsterClass": 0, + "phraseID": "flagstone_sentry" + }, + { + "id": "escaped_prisoner", + "iconID": "monsters_men:0", + "name": "Entflohener Gefangener", + "spawnGroup": "prisoner1", + "monsterClass": 0, + "unique": 1, + "maxHP": 15, + "attackCost": 10, + "attackChance": 50, + "blockChance": 20, + "droplistID": "prisoner", + "phraseID": "prisoner1", + "attackDamage": { + "min": 3, + "max": 7 + } + }, + { + "id": "starving_prisoner", + "iconID": "monsters_misc:11", + "name": "Verhungernder Gefangener", + "spawnGroup": "prisoner2", + "monsterClass": 0, + "unique": 1, + "maxHP": 10, + "attackCost": 3, + "attackChance": 60, + "blockChance": 60, + "droplistID": "prisoner", + "phraseID": "prisoner2", + "attackDamage": { + "min": 3, + "max": 5 + } + }, + { + "id": "bone_warrior", + "iconID": "monsters_skeleton1:0", + "name": "Knochenkämpfer", + "spawnGroup": "skeleton2", + "monsterClass": 3, + "maxHP": 32, + "attackCost": 5, + "attackChance": 120, + "blockChance": 60, + "damageResistance": 2, + "droplistID": "skeleton2", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "bone_champion", + "iconID": "monsters_skeleton1:0", + "name": "Knochenchampion", + "spawnGroup": "skeleton3", + "monsterClass": 3, + "maxHP": 49, + "attackCost": 5, + "attackChance": 130, + "blockChance": 60, + "damageResistance": 2, + "droplistID": "skeleton3", + "attackDamage": { + "min": 4, + "max": 9 + } + }, + { + "id": "undead_warden", + "iconID": "monsters_liches:0", + "name": "Untoter Aufseher", + "spawnGroup": "flagstone_guard0", + "monsterClass": 6, + "unique": 1, + "maxHP": 57, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "damageResistance": 1, + "droplistID": "flagstone_guard0", + "phraseID": "flagstone_guard0", + "attackDamage": { + "min": 4, + "max": 8 + } + }, + { + "id": "cave_guardian", + "iconID": "monsters_rltiles1:16", + "name": "Höhlenwächter", + "spawnGroup": "flagstone_guard1", + "monsterClass": 2, + "unique": 1, + "maxHP": 61, + "attackCost": 5, + "attackChance": 150, + "criticalSkill": 10, + "criticalMultiplier": 3, + "blockChance": 90, + "damageResistance": 2, + "droplistID": "flagstone_guard1", + "phraseID": "flagstone_guard1", + "attackDamage": { + "min": 4, + "max": 10 + } + }, + { + "id": "winged_demon", + "iconID": "monsters_demon1:0", + "name": "Beflügelter Dämon", + "spawnGroup": "flagstone_guard2", + "size": "2x2", + "monsterClass": 2, + "unique": 1, + "maxHP": 82, + "attackCost": 5, + "attackChance": 90, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 70, + "damageResistance": 5, + "droplistID": "flagstone_guard2", + "phraseID": "flagstone_guard2", + "attackDamage": { + "min": 4, + "max": 12 + } + }, + { + "id": "narael", + "iconID": "monsters_man1:0", + "name": "Narael", + "spawnGroup": "narael", + "monsterClass": 0, + "phraseID": "narael" + }, + { + "id": "rotting_corpse", + "iconID": "monsters_zombie1:0", + "name": "Verfaulende Leiche", + "spawnGroup": "undead1", + "monsterClass": 6, + "maxHP": 71, + "attackCost": 10, + "attackChance": 30, + "criticalSkill": 50, + "criticalMultiplier": 2, + "blockChance": 30, + "damageResistance": 2, + "droplistID": "undead1", + "phraseID": "zombie1", + "attackDamage": { + "min": 2, + "max": 5 + } + }, + { + "id": "walking_corpse", + "iconID": "monsters_zombie1:0", + "name": "Laufende Leiche", + "spawnGroup": "undead1", + "monsterClass": 6, + "maxHP": 90, + "attackCost": 10, + "attackChance": 30, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 30, + "damageResistance": 2, + "droplistID": "undead1", + "attackDamage": { + "min": 2, + "max": 4 + } + }, + { + "id": "gargoyle", + "iconID": "monsters_misc:2", + "name": "Gargoyle", + "spawnGroup": "undead1", + "monsterClass": 3, + "maxHP": 47, + "attackCost": 10, + "attackChance": 110, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 70, + "damageResistance": 2, + "droplistID": "undead1", + "attackDamage": { + "min": 3, + "max": 7 + } + }, + { + "id": "fledgling_gargoyle", + "iconID": "monsters_misc:1", + "name": "Halbwüchsiger Gargoyle", + "spawnGroup": "undead1", + "monsterClass": 3, + "maxHP": 35, + "attackCost": 10, + "attackChance": 110, + "blockChance": 60, + "damageResistance": 2, + "droplistID": "undead1", + "attackDamage": { + "min": 3, + "max": 6 + } + }, + { + "id": "large_cave_rat", + "iconID": "monsters_rats:3", + "name": "Große Höhlenratte", + "spawnGroup": "undeadrat1", + "monsterClass": 4, + "maxHP": 21, + "maxAP": 10, + "moveCost": 10, + "attackCost": 3, + "attackChance": 60, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 40, + "droplistID": "catacombrat", + "attackDamage": { + "min": 3, + "max": 4 + } + }, + { + "id": "pack_leader", + "iconID": "monsters_dogs:5", + "name": "Rudelführer", + "spawnGroup": "pack_boss", + "monsterClass": 4, + "unique": 1, + "maxHP": 65, + "attackCost": 5, + "attackChance": 90, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 40, + "damageResistance": 4, + "droplistID": "pack_boss", + "attackDamage": { + "min": 2, + "max": 10 + } + }, + { + "id": "pack_hunter", + "iconID": "monsters_dogs:4", + "name": "Rudeljäger", + "spawnGroup": "pack3", + "monsterClass": 4, + "maxHP": 45, + "attackCost": 5, + "attackChance": 90, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 40, + "damageResistance": 3, + "droplistID": "pack3", + "attackDamage": { + "min": 2, + "max": 7 + } + }, + { + "id": "rabid_wolf", + "iconID": "monsters_dogs:4", + "name": "Tollwütiger Wolf", + "spawnGroup": "pack2", + "monsterClass": 4, + "maxHP": 42, + "attackCost": 5, + "attackChance": 90, + "blockChance": 50, + "damageResistance": 3, + "droplistID": "pack2", + "attackDamage": { + "min": 2, + "max": 6 + } + }, + { + "id": "fledgling_wolf", + "iconID": "monsters_dogs:3", + "name": "Halbwüchsiger Wolf", + "spawnGroup": "pack2", + "monsterClass": 4, + "maxHP": 42, + "attackCost": 3, + "attackChance": 70, + "blockChance": 50, + "damageResistance": 3, + "droplistID": "pack2", + "attackDamage": { + "min": 2, + "max": 5 + } + }, + { + "id": "young_wolf", + "iconID": "monsters_dogs:4", + "name": "Junger Wolf", + "spawnGroup": "pack1", + "monsterClass": 4, + "maxHP": 35, + "attackCost": 3, + "attackChance": 60, + "blockChance": 30, + "damageResistance": 2, + "droplistID": "pack1", + "attackDamage": { + "min": 2, + "max": 5 + } + }, + { + "id": "hunting_dog", + "iconID": "monsters_dogs:2", + "name": "Jagdhund", + "spawnGroup": "pack1", + "monsterClass": 4, + "maxHP": 25, + "attackCost": 5, + "attackChance": 60, + "blockChance": 50, + "droplistID": "pack1", + "attackDamage": { + "min": 2, + "max": 5 + } + }, + { + "id": "highwayman", + "iconID": "monsters_men:8", + "name": "Straßenräuber", + "spawnGroup": "bandit1", + "monsterClass": 0, + "maxHP": 54, + "attackCost": 5, + "attackChance": 90, + "criticalSkill": 50, + "criticalMultiplier": 2, + "blockChance": 30, + "damageResistance": 2, + "droplistID": "bandit1", + "phraseID": "bandit1", + "attackDamage": { + "min": 2, + "max": 4 + } + } +] diff --git a/AndorsTrail/res/raw-de/questlist.json b/AndorsTrail/res/raw-de/questlist.json new file mode 100644 index 000000000..b309a667a --- /dev/null +++ b/AndorsTrail/res/raw-de/questlist.json @@ -0,0 +1,387 @@ +[ + { + "id": "andor", + "name": "Suche nach Andor", + "showInLog": 1, + "stages": [ + { + "progress": 1, + "logText": "Mein Vater Mikhail sagte mir, dass mein Bruder Andor gestern nicht nach Hause gekommen sei. Ich soll im Dorf nach ihm suchen.", + "finishesQuest": 0 + }, + { + "progress": 10, + "logText": "Leonid erzählte mir, dass er gesehen hat wie Andor mit Gruil sprach. Ich sollte Gruil danach fragen, vielleicht kann er mir weiterhelfen.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Gruil möchte, dass ich ihm eine Giftdrüse bringe, dann wird er mir mehr erzählen. Er sagte, dass einige Giftschlagen so eine Drüse haben.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Gruil sagte, dass Andor nach jemand namens Umar gesucht hat. Ich soll seinen Freund Gaela danach fragen. Er wohnt im Osten von Fallhaven.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Ich habe mit Gaela in Fallhaven gesprochen. Er riet mir, Bucus zu suchen und ihn nach der Diebesgilde zu fragen.", + "finishesQuest": 0 + }, + { + "progress": 50, + "logText": "Bucus erlaubte mir, die Falltür in dem verfallenen Haus in Fallhaven zu benutzen. Ich soll mit Umar sprechen.", + "finishesQuest": 0 + }, + { + "progress": 51, + "logText": "Umar, ein Mitglied der Diebesgilde in Fallhaven, schien mich zu kennen, verwechselte mich aber mit Andor. Offensichtlich war Andor also hier und hat sich mit ihm getroffen.", + "finishesQuest": 0 + }, + { + "progress": 55, + "logText": "Umar sagte mir, dass Andor nach einem Alchemisten namens Lodar gesucht hat. Ich sollte nach seinem Versteck suchen.", + "finishesQuest": 0 + }, + { + "progress": 61, + "logText": "Ich hörte eine Geschichte in Loneford die besagte, dass Andor wohl dort gewesen sein soll und vielleicht auch etwas mit der Krankheit zu tun haben könnte, die die Menschen dort plagt. Ich kann mir nicht vorstellen, dass das Andor war. Aber wenn doch, warum sollte er die Leute von Loneford krank machen wollen?", + "finishesQuest": 0 + } + ] + }, + { + "id": "mikhail_bread", + "name": "Brot zum Frühstück", + "showInLog": 1, + "stages": [ + { + "progress": 100, + "logText": "Ich habe das Brot gekauft und Mikhail gegeben.", + "finishesQuest": 1 + }, + { + "progress": 10, + "logText": "Mikhail möchte, dass ich bei Mara im Gemeindehaus ein Brot kaufe.", + "finishesQuest": 0 + } + ] + }, + { + "id": "mikhail_rats", + "name": "Ratten!", + "showInLog": 1, + "stages": [ + { + "progress": 100, + "logText": "Ich habe die beiden Ratten in unserem Garten getötet.", + "rewardExperience": 20, + "finishesQuest": 1 + }, + { + "progress": 10, + "logText": "Mikhail wäre mir dankbar, wenn ich mich um die Ratten in unserem Garten kümmern würde. Nachdem ich die Ratten getötet habe, soll ich zu ihm zurück kommen. Falls ich verletzt werde, kann ich mich jederzeit im Bett ausruhen, um meine Gesundheit wieder herzustellen.", + "finishesQuest": 0 + } + ] + }, + { + "id": "leta", + "name": "Verschollener Ehemann", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Leta in Crossglen bat mich, nach ihrem Ehemann Oromir zu suchen.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Ich habe Oromir im Süden von Crossglen gefunden. Er versteckte sich vor seiner Frau Leta.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "Ich habe Leta erzählt, dass sich Oromir in Crossglen versteckt.", + "rewardExperience": 50, + "finishesQuest": 1 + } + ] + }, + { + "id": "odair", + "name": "Rattenplage", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Odair möchte, dass ich mich um die Ratten in der Vorratshöhle von Crossglen kümmere. Genaugenommen hat er mir aufgetragen, die große Ratte zu töten, die dort ihr Unwesen treibt.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "Ich habe für Odair die Vorratshöhle von Crossglen von den Ratten befreit.", + "rewardExperience": 300, + "finishesQuest": 1 + } + ] + }, + { + "id": "bonemeal", + "name": "Verbotene Substanz", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Leonid erzählte mir in der Gemeindehalle von Crossglen etwas über eine Unruhe im Dorf vor einigen Wochen. Offensichtlich hat Lord Geomyr jeglichen Gebrauch von Knochenmehl als Heilsubstanz untersagt.\n\nTharal, der Dorfpriester sollte mehr darüber wissen.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Tharal möchte nicht über Knochenmehl reden. Mit 5 Insektenflügeln sollte ich ihn umstimmen können.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Tharal erzählte mir, dass Knochenmehl eine sehr wirksame Heilsubstanz ist und er hat sich ziemlich darüber aufgeregt, dass es nicht mehr erlaubt ist, welches zu besitzen. Falls ich mehr darüber wissen will, soll ich zu Thoronir nach Fallhaven reisen und das Passwort 'Das Leuchten des Schattens' nennen.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Ich habe mit Thoronir in Fallhaven gesprochen. Er könnte mir einen Knochenmehltrank herstellen, wenn ich ihm 5 Skelettknochen bringe. Er meinte, dass es in dem verlassenen Haus nördlich von Fallhaven wahrscheinlich ein paar Skelette geben könnte.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "Ich habe Thoronir die Knochen gegeben. Er kann mich ab jetzt mit Knochenmehltränken versorgen.\nIch sollte aber vorsichtig sein, wenn ich sie benutzen will, da das Verwenden der Tränke von Lord Geomyr verboten wurde.", + "rewardExperience": 900, + "finishesQuest": 1 + } + ] + }, + { + "id": "jan", + "name": "Zerbrochene Freundschaft", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Jan erzählte mir seine Geschichte, in der er und seine beiden Freunde Gandir und Irogotu in eine Höhle kletterten, um dort nach einem versteckten Schatz zu suchen. Aber sie fingen an zu streiten und Irogotu tötete in seiner Wut Gandir.\nIch soll Gandir's Ring von Irogotu zurückbringen und mich bei Jan melden, wenn ich ihn habe.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "Irogotu ist tot. Ich habe Jan den Ring von Gandir zurückgebracht und seinen Freund gerächt.", + "rewardExperience": 1500, + "finishesQuest": 1 + } + ] + }, + { + "id": "bucus", + "name": "Der Schlüssel von Luthor", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Bucus aus Fallhaven könnte etwas über Andor wissen. Er will, dass ich ihm den Schlüssel von Luthor aus den Katakomben unter der Kirche von Fallhaven bringe.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Die Katakomben unter der Kirche von Fallhaven sind nicht zugänglich. Athamyr ist die einzige Person, die sowohl die Erlaubnis als auch den Mut dafür hat, die Katakomben zu betreten. Ich sollte mich mit ihm in seinem Haus südwestlich der Kirche treffen.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Athamyr hat Appetit auf einen leckeren Braten. Nach dem Essen kann er mir wohl mehr erzählen.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Ich habe Athamyr einen leckeren Braten gebracht.", + "rewardExperience": 700, + "finishesQuest": 0 + }, + { + "progress": 50, + "logText": "Athamyr gab mir die Erlaubnis, die Katakomben unter der Kirche von Fallhaven zu betreten.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "Ich habe Bucus den Schlüssel von Luthor gebracht.", + "rewardExperience": 2150, + "finishesQuest": 1 + } + ] + }, + { + "id": "fallhavendrunk", + "name": "Erzählung eines Säufers", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Ein Betrunkener vor der Taverne von Fallhaven hat angefangen, mir seine Geschichte zu erzählen. Um mehr zu hören, soll ich ihm ein wenig Met holen. Ich weiß nicht, ob das was bringt.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "Der Betrunkene schwärmte von seinen früheren Reisen mit Unnmir. Ich sollte einmal mit Unnmir reden.", + "finishesQuest": 1 + } + ] + }, + { + "id": "calomyran", + "name": "Calomyranische Geheimnisse", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Ein alter Mann aus Fallhaven sagte mir, dass er sein Buch 'Calomyranische Geheimnisse' verloren habe. Ich soll danach suchen. Vielleicht in Arcir's Haus im südlichen Teil von Fallhaven?", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Ich habe eine herausgerissene Seite aus einem Buch mit dem Titel 'Calomyranische Geheimnisse' gefunden. Der Name 'Larcal' wurde darauf geschrieben.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "Ich habe dem alten Mann das Buch zurückgegeben.", + "rewardExperience": 600, + "finishesQuest": 1 + } + ] + }, + { + "id": "nocmar", + "name": "Verlorene Schätze", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Unnmir hat mir von seinem Leben als Abenteurer erzählt und schickte mich zu Nocmar. Sein Haus ist ein wenig südwestlich von der Taverne in Fallhaven.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Nocmar sagte mir, dass er früher einmal als Schmied gearbeitet hat. Aber da Lord Geomyr die Verwendung von Herzstahl verboten hat, kann er seine Waffen nicht mehr schmieden.\nWenn ich einen Herzstein finde und ihn zu Nocmar bringe, sollte er wieder Herzstahl schmieden können.", + "finishesQuest": 0 + }, + { + "progress": 200, + "logText": "Ich habe einen Herzstein zu Nocmar gebracht. Bald wird es wieder Gegenstände aus Herzstahl geben.", + "rewardExperience": 1200, + "finishesQuest": 1 + } + ] + }, + { + "id": "flagstone", + "name": "Uralte Geheimnisse", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Ich traf einen Wachposten außerhalb der Festung Flagstone. Er erzählte mir, dass Flagstone früher als Straflager für flüchtige Arbeiter von Mount Galmore genutzt wurde. Neuerdings ergiesst sich allerdings ein Strom untoter Monster aus Flagstone. Ich sollte die Quelle der Untoten finden! Der Wachposten will mir helfen, falls es nötig sein sollte.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Ich habe eine Art Fluchttunnel unterhalb von Flagstone gefunden, der in eine größere Höhle führt. Diese Höhle wird von einem Dämon bewacht, dem ich auf keinen Fall gewachsen bin. Vielleicht weiß der Wachposten außerhalb von Flagstone mehr?", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Der Wachposten erzählt mir, dass der frühere Leiter eine Halskette hatte, die er immer trug. Auf dieser Kette könnten möglicherweise die Worte zu finden sein, die den Dämon besänftigen. Ich soll zum Wachposten zurückkehren wenn ich die Kette gefunden habe, damit er die Worte entschlüsseln kann.", + "finishesQuest": 0 + }, + { + "progress": 31, + "logText": "Ich habe den früheren Leiter von Flagstone auf der oberen Etage gefunden. Ich sollte nun zum Wachposten zurückkehren.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Ich kenne jetzt die Worte, die man benötigt, um sich dem Dämon unter Flagstone zu nähern: 'Licht und Schatten'.", + "rewardExperience": 1600, + "finishesQuest": 0 + }, + { + "progress": 50, + "logText": "Tief unterhalb von Flagstone habe ich endlich die Quelle der untoten Heimsuchung gefunden: Eine Kreatur, die aus dem Leid der früheren Häftlinge von Flagstone entstand.", + "finishesQuest": 0 + }, + { + "progress": 60, + "logText": "Ich habe Narael, einen überlebenen Häftling tief unterhalb von Flagstone gefunden. Narael stammt aus Nor. Er ist zu schwach, um zu laufen. Wenn ich aber sein Frau in Nor finden kann, werde ich sicher großzügig belohnt.", + "rewardExperience": 2100, + "finishesQuest": 1 + } + ] + }, + { + "id": "vacor", + "name": "Fehlende Teile", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Der Magier Vacor im Südwesten von Fallhaven hat versucht, einen magischen Spalt zu schaffen. Irgendwie kam er mir komisch vor, fast besessen von diesem Zauberspruch. Er schien sich große Macht davon zu versprechen.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Vacor möchte, dass ich ihm die vier Teile des Spaltzaubers zurückbringe. Er behauptet, dass sie ihm von vier Banditen irgendwo südlich von Fallhaven gestohlen wurden.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Ich habe die vier Teile des Spaltzaubers zu Vacor zurückgebracht.", + "rewardExperience": 1200, + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Vacor erzählte mir von seinem ehemaligen Lehrling Unzel, der anfing ihn in Frage zu stellen. Vacor möchte, dass ich Unzel umbringe, und seinen Siegelring als Beweis dafür bringe. Unzel sollte irgendwo südwestlich außerhalb von Fallhaven zu finden sein.", + "finishesQuest": 0 + }, + { + "progress": 50, + "logText": "Unzel sagte, ich solle entweder Partei für Vacor oder für ihn ergreifen. Er lässt mir die Wahl.", + "finishesQuest": 0 + }, + { + "progress": 51, + "logText": "Ich habe mich für Unzel entschieden. Ich sollte mit Vacor im Süden von Fallhaven über Unzel und den Schatten sprechen.", + "finishesQuest": 0 + }, + { + "progress": 53, + "logText": "Ich habe Unzel angegriffen. Ich sollte seinen Ring zu Vacor bringen, sobald er tot ist.", + "finishesQuest": 0 + }, + { + "progress": 54, + "logText": "Ich habe Vacor angegriffen. Ich sollte seinen Ring zu Unzel bringen, sobald er tot ist.", + "finishesQuest": 0 + }, + { + "progress": 60, + "logText": "Ich habe Unzel getötet und Vacor über die Tat informiert.", + "rewardExperience": 1600, + "finishesQuest": 1 + }, + { + "progress": 61, + "logText": "Ich habe Vacor getötet und Unzel über die Tat informiert.", + "rewardExperience": 1600, + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/questlist_nondisplayed.json b/AndorsTrail/res/raw-de/questlist_nondisplayed.json new file mode 100644 index 000000000..54adace52 --- /dev/null +++ b/AndorsTrail/res/raw-de/questlist_nondisplayed.json @@ -0,0 +1,70 @@ +[ + { + "id": "nondisplay", + "name": "Platzhalter für versteckte Queststatus (wird nicht angezeigt)", + "showInLog": 0, + "stages": [ + { + "progress": 10, + "logText": "Raum in der 'Foaming Flask'" + }, + { + "progress": 16, + "logText": "Quartier in Blackwater Mountain" + }, + { + "progress": 17, + "logText": "Schlafplatz in Crossroads1" + }, + { + "progress": 18, + "logText": "Einkaufen bei Minarra im Turm von Crossroads" + }, + { + "progress": 19, + "logText": "Quartier in Loneford10" + }, + { + "progress": 20, + "logText": "Verkauf von Izthiel Klauen an Gauward" + }, + { + "progress": 21, + "logText": "Raum in der Taverne in Remgard" + } + ] + }, + { + "id": "crossglen", + "name": "ToDo", + "showInLog": 0, + "stages": [ + { + "progress": 1, + "finishesQuest": 0 + } + ] + }, + { + "id": "fallhaventavern", + "name": "Zimmer zur Miete", + "showInLog": 0, + "stages": [ + { + "progress": 10, + "finishesQuest": 1 + } + ] + }, + { + "id": "arcir", + "name": "Elythara", + "showInLog": 0, + "stages": [ + { + "progress": 10, + "finishesQuest": 0 + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/questlist_v0610.json b/AndorsTrail/res/raw-de/questlist_v0610.json new file mode 100644 index 000000000..35302c018 --- /dev/null +++ b/AndorsTrail/res/raw-de/questlist_v0610.json @@ -0,0 +1,352 @@ +[ + { + "id": "erinith", + "name": "Tiefe Wunde", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Nordöstlich von Crossglen habe ich Erinith gefunden, der hilflos in den Büschen lag. Offensichtlich wurde er nachts angegriffen und verwundet. Dabei hat er ein wertvolles Buch verloren." + }, + { + "progress": 20, + "logText": "Ich habe Erinith versprochen, das Buch für ihn zu finden. Er meinte, dass er es zwischen ein paar Bäume nördlich von seinem Lager geworfen hätte." + }, + { + "progress": 21, + "logText": "Ich habe mit Erinith vereinbart, für 200 Goldmünzen das Buch für ihn zu finden. Er meinte, dass er es zwischen ein paar Bäume nördlich von seinem Lager geworfen hätte." + }, + { + "progress": 30, + "logText": "Ich habe das Buch zu Erinith zurückgebracht.", + "rewardExperience": 2000 + }, + { + "progress": 31, + "logText": "Erinith braucht auch noch Hilfe mit seiner Verwundung, die einfach nicht verheilt. Ich soll ihm entweder einen großen Heiltrank oder vier normale Heiltränke bringen, das sollte die Wunde schließen." + }, + { + "progress": 40, + "logText": "Ich habe Erinith einen Knochenmehltrank gegeben. Er zögerte ein wenig, weil die Verwendung durch Lord Geomyr verboten ist." + }, + { + "progress": 41, + "logText": "Ich habe Erinith einen großen Heiltrank zur Versorgung seiner Wunde gebracht." + }, + { + "progress": 42, + "logText": "Ich habe Erinith vier normale Heiltränke zur Versorgung seiner Wunde gebracht." + }, + { + "progress": 50, + "logText": "Die Wunde heilte vollständig und Erinith dankte mir herzlich für all die Hilfe.", + "rewardExperience": 1500, + "finishesQuest": 1 + } + ] + }, + { + "id": "hadracor", + "name": "Verwüstetes Land", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Auf der Straße nach Carn Tower, westlich der Wachstube von Crossroads, bin ich auf einige Holzfäller gestoßen. Ihr Anführer Hadracor möchte, dass ich mich um ein paar Wespen kümmere, die sie immer bei ihren Arbeiten stören. Ich soll nach Riesenwespen in der Nähe des Holzfällerlagers suchen und mindestens 5 Flügel von Riesenwespen als Beweis für meine 'Arbeit' zu Hadracor bringen." + }, + { + "progress": 20, + "logText": "Ich habe Hadracor fünf Riesenwespenflügel gebracht." + }, + { + "progress": 21, + "logText": "Ich habe Hadracor sechs Riesenwespenflügel gebracht. Für die Hilfe gab er mir ein paar Handschuhe." + }, + { + "progress": 30, + "logText": "Hadracor dankte mir für die Hilfe mit den Wespen. Er bot mir einige Waren zum Handeln an.", + "finishesQuest": 1 + } + ] + }, + { + "id": "tinlyn", + "name": "Verlorene Schafe", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Auf der Straße nach Feygard, nahe der Brücke von Feygard, traf ich den Schafhirten Tinlyn. Er beklagte, das vier seiner Schafe entwischt seinen, er sich aber nicht traue, die übrigen Tiere bei der Suche nach den Entflohenen unbeaufsichtigt zu lassen." + }, + { + "progress": 15, + "logText": "Ich habe Tinlyn Hilfe bei der Suche nach den vier Schafen versprochen." + }, + { + "progress": 20, + "logText": "Ich habe eines von Tinlyn's verlorenen Schafen gefunden." + }, + { + "progress": 21, + "logText": "Ich habe eines von Tinlyn's verlorenen Schafen gefunden." + }, + { + "progress": 22, + "logText": "Ich habe eines von Tinlyn's verlorenen Schafen gefunden." + }, + { + "progress": 23, + "logText": "Ich habe eines von Tinlyn's verlorenen Schafen gefunden." + }, + { + "progress": 25, + "logText": "Ich habe nun alle vier verlorenen Schafe von Tinlyn gefunden." + }, + { + "progress": 30, + "logText": "Tinlyn dankte mir für die Suche nach seinen Schafen.", + "rewardExperience": 3500, + "finishesQuest": 1 + }, + { + "progress": 31, + "logText": "Tinlyn dankte mir für die Suche nach seinen Schafen, aber er hatte leider keine Belohnung für mich.", + "rewardExperience": 2000, + "finishesQuest": 1 + }, + { + "progress": 60, + "logText": "Ich habe eines von Tinlyn's Schafen angegriffen. Nun kann ich ihm nicht mehr alle Schafe zurückbringen.", + "finishesQuest": 1 + } + ] + }, + { + "id": "benbyr", + "name": "Schlachtung", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Ich traf Benbyr vor der Wachstube von Crossroads. Er möchte sich an seinem alten 'Geschäftspartner' Tinlyn rächen. Benbyr will, dass ich alle Schafe von Tinlyn abschlachte." + }, + { + "progress": 20, + "logText": "Ich habe versprochen, für Benbyr alle acht Schafe von Tinlyn zu finden und zu töten. Ich soll auf den Feldern nordwestlich von der Wachstube Ausschau nach ihnen halten." + }, + { + "progress": 21, + "logText": "Ich habe mit der Schlachtung begonnen. Wenn ich alle acht Schafe getötet habe, sollte ich zu Benbyr zurückkehren." + }, + { + "progress": 30, + "logText": "Benbyr war begeistert zu hören, dass Tinlyn's Schafe tot sind.", + "rewardExperience": 5200, + "finishesQuest": 1 + }, + { + "progress": 60, + "logText": "Ich habe es abgelehnt, für Benbyr wehrlose Schafe abzuschlachten.", + "finishesQuest": 1 + } + ] + }, + { + "id": "rogorn", + "name": "Der Weg liegt klar vor mir", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Vom Turm der Wachstube von Crossroads aus hat Minarra ein paar Gauner beobachtet, die nach Westen Richtung Carn Tower schlichen. Minarra glaubt, dass es sich bei den Typen um Verbrecher handelt, auf die in Feygard ein Kopfgeld ausgesetzt wurde. Wenn das wahr ist, werden diese Männer von einem besonders rücksichtslosen Rohling namens Rogorn angeführt." + }, + { + "progress": 20, + "logText": "Ich helfe Minarra bei der Suche nach den Schurken. I soll auf der Straße westlich von der Wachstube in Richtung Carn Tower reisen und nach ihnen Ausschau halten. Sie haben angeblich drei Teile eines wertvollen Gemäldes gestohlen und sollen für ihre Verbrechen hingerichtet werden." + }, + { + "progress": 21, + "logText": "Minarra hat mir auch gesagt, dass ich ihnen auf keinen Fall trauen dürfe, egal was sie sagen. Besonders die Worte von Rogorn sollten mit äußerster Skepsis beurteilt werden." + }, + { + "progress": 30, + "logText": "Ich habe die Bande auf der Straße nach Carn Tower aufgespürt und sie wird wie erwartet von Rogorn angeführt." + }, + { + "progress": 35, + "logText": "Rogorn erzählte mir, dass er und seine Leute zu Unrecht wegen Mord und Diebstahl in Feygard beschuldigt werden, den keiner von ihnen war jemals in Feygard gewesen." + }, + { + "progress": 40, + "logText": "Ich habe beschlossen, Rogorn und seine Kumpane anzugreifen. Wenn sie tot sind, werde ich mit den drei Teilen des Gemäldes zu Minarra zurückkehren." + }, + { + "progress": 45, + "logText": "Ich habe beschlossen, Rogorn und seine Kumpane am Leben zu lassen und stattdessen Minarra zu berichten, dass sie sich geirrt haben müsse." + }, + { + "progress": 50, + "logText": "Minarra bedankte sich bei mir für das Ergreifen der Diebe. Sie versprach mir, dass meine Dienste für Feygard gewürdigt werden würden." + }, + { + "progress": 55, + "logText": "Nachdem ich Minarra gesagt habe, dass sie die Männer mit jemand anderem verwechselt habe, schien sie etwas misstrauisch, dankte mir aber für meine Hilfe in der Sache." + }, + { + "progress": 60, + "logText": "Ich habe Minarra bei ihrer Aufgabe unterstützt.", + "finishesQuest": 1 + } + ] + }, + { + "id": "feygard_shipment", + "name": "Botengang für Feygard", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Ich habe Gandoren, den Hauptmann der Garde in der Wachstube von Crossroads getroffen. Er erzählte mir von einigen Schwierigkeiten in Loneford, welche die Wachleute zu erhöhter Wachsamkeit zwingen. Aus diesem Grund haben sie keine Zeit für ihre gewöhnlichen Botengänge und könnten da ein wenig Hilfe gebrauchen." + }, + { + "progress": 20, + "logText": "Gandoren möchte, dass ich eine Lieferung von 10 Eisenschwerter zu einem Gardeposten im Süden bringe." + }, + { + "progress": 21, + "logText": "Ich habe zugestimmt, die Lieferung für Gandoren zu übernehmen, als Dienst an Feygard." + }, + { + "progress": 22, + "logText": "Ich habe widerwillig zugestimmt, die Lieferung für Gandoren zu übernehmen." + }, + { + "progress": 25, + "logText": "Ich soll die Lieferung zum Hauptmann der Patrouille bringen, die in der Taverne 'Schäumende Flasche' stationiert ist." + }, + { + "progress": 26, + "logText": "Gandoren sagte mir, dass Ailshara Interesse an den Lieferungen von Feygard bekundet hat und drängte mich, Abstand von ihr zu halten." + }, + { + "progress": 30, + "logText": "Ailshara ist in der Tat an der Lieferungen interessiert und möchte, dass ich Nor City mit den Lieferungen helfe." + }, + { + "progress": 35, + "logText": "Wenn ich Ailshara und Nor City helfen möchte, soll ich die Lieferung stattdessen zum Schmied in Vilegard bringen." + }, + { + "progress": 50, + "logText": "Ich habe die Lieferung zum Hauptmann der Patrouille in der Taverne 'Schäumende Flasche' gebracht. Ich sollte Gandoren in der Wachstube von Crossroads mitteilen, das die Lieferung erfolgt ist." + }, + { + "progress": 55, + "logText": "Ich habe die Lieferung beim Schmied in Vilegard abgegeben." + }, + { + "progress": 56, + "logText": "Der Schmied von Vilegard hat mir eine Lieferung von minderwertigen Schwertern mitgegeben, die ich beim Hauptmann der Patrouille in der Taverne 'Schäumende Flasche' statt der normalen Schwerter abliefern kann." + }, + { + "progress": 60, + "logText": "Ich habe die Lieferung mit den minderwertigen Schwertern zum Hauptmann der Patrouille in der Taverne 'Schäumende Flasche' gebracht. Ich sollte Gandoren mitteilen, das die Lieferung erfolgt ist." + }, + { + "progress": 80, + "logText": "Gandoren dankte mir für die Hilfe bei der Lieferung der Waffen.", + "rewardExperience": 4000, + "finishesQuest": 1 + }, + { + "progress": 81, + "logText": "Gandoren dankte mir für die Hilfe bei der Lieferung der Waffen. Er hat nichts gemerkt. Ich sollte nun auch Ailshara berichten." + }, + { + "progress": 82, + "logText": "Ich habe Ailshara von der Lieferung berichtet.", + "rewardExperience": 4000, + "finishesQuest": 1 + } + ] + }, + { + "id": "loneford", + "name": "Es fließt durch die Adern", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Ich habe eine Geschichte über Loneford gehört. Offenbar wurden dort in der letzten Zeit viele Menschen krank, einige sind sogar gestorben. Die Ursache ist immer noch unbekannt." + }, + { + "progress": 11, + "logText": "Ich sollte herausbekommen, was die Leute aus Loneford krank gemacht haben könnte. Um Hinweise zu sammeln sollte ich die Einwohner von Loneford und der näheren Umgebung nach möglichen Ursachen befragen." + }, + { + "progress": 21, + "logText": "Die Wächter aus der Wachstube von Crossroads sind sich sicher, dass die Krankheit in Loneford durch einen Anschlag der Priester oder durch Leute aus Nor City ausgelöst wurde." + }, + { + "progress": 22, + "logText": "Einige Dorfbewohner aus Loneford glauben, dass die Krankheit durch die Wachen aus Feygard verursacht wurde - als Teil eines Plans, die Leute noch mehr leiden zu lassen." + }, + { + "progress": 23, + "logText": "Talion, der Priester aus Loneford denkt, dass die Krankheit ein Werk des Schattens ist - als Strafe für Loneford's mangelnde Hingabe an den Schatten." + }, + { + "progress": 24, + "logText": "Taevinn aus Loneford ist sicher, dass Sienn in der Scheune im Südosten irgendetwas mit der Krankheit zu tun hat. Offenbar hält Sienn ein Haustier, durch das sich Taevinn schon mehrmals bedroht fühlte." + }, + { + "progress": 25, + "logText": "Ich sollte nach Landa in der Taverne von Loneford sehen. Gerüchten zufolge solle er etwas gesehen haben, das er sich niemandem zu erzählen traut." + }, + { + "progress": 30, + "logText": "Landa verwechselte mich zunächst mit jemandem. Er behauptet, einen kleinen Jungen gesehen zu haben, der in der Nacht, bevor sich die Krankheit ausbreitete um den Dorfbrunnen schlich und irgendetwas machte. Er hatte zuerst Angst mit mir zu sprechen, weil ich dem Jungen den er gesehen hat sehr ähnlich bin. Könnte der Junge, den er gesehen hat, vielleicht Andor gewesen sein?" + }, + { + "progress": 31, + "logText": "Außerdem hat er in der Nacht, als er den Jungen am Brunnen gesehen hatte, Buceth dabei beobachtet, wie dieser Proben des Brunnenwassers genommen hat. Verdächtigerweise ist Buceth auch nicht krank geworden wie die anderen im Dorf." + }, + { + "progress": 35, + "logText": "Ich sollte Buceth in der Kapelle von Loneford aufsuchen und ihn danach fragen, was er am Brunnen gemacht hat. Vielleicht weiß er auch etwas über Andor." + }, + { + "progress": 41, + "logText": "Ich habe Buceth bestochen, damit er mit mir redet." + }, + { + "progress": 42, + "logText": "Ich habe Buceth erzählt, dass ich bereit bin, dem Schatten zu folgen." + }, + { + "progress": 45, + "logText": "Buceth erzählte mir, dass er von den Priestern aus Nor City beauftragt worden war sicherzustellen, dass der Schatten sein Leuchten über Loneford ausbreiten kann. Offenbar haben die Priester einen Jungen geschickt, um etwas in Loneford zu erledigen und Buceth damit beauftragt, einige Wasserproben zu nehmen." + }, + { + "progress": 50, + "logText": "Ich habe Buceth angegriffen. Ich sollte die Beweise von Buceth zu Kuldan, den Hauptmann der Wache im Langhaus von Loneford bringen." + }, + { + "progress": 54, + "logText": "Ich habe das Fläschchen, das Buceth bei sich hatte zu Kuldan, dem Hauptmann der Wache in Loneford gebracht." + }, + { + "progress": 55, + "logText": "Kuldan dankte mir für das Lösen des Rätsels um die mysteriöse Krankheit in Loneford. Sie werden nun Wasser aus Feygard importieren, anstatt es aus dem Brunnen zu schöpfen. Er sagte mir auch, dass ich den Haushofmeister in der Burg von Feygard besuchen soll, wenn ich noch mehr helfen will.", + "rewardExperience": 15000, + "finishesQuest": 1 + }, + { + "progress": 60, + "logText": "Ich habe Buceth versprochen, sein Geheimnis zu hüten. Wenn Andor wirklich hier war, muss er einen guten Grund dafür gehabt haben. Buceth sagt mir auch, dass ich den Hüter der Kapelle in Nor City besuchen soll, um mehr über den Schatten zu erfahren.", + "rewardExperience": 15000, + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/questlist_v0611.json b/AndorsTrail/res/raw-de/questlist_v0611.json new file mode 100644 index 000000000..2be6538d0 --- /dev/null +++ b/AndorsTrail/res/raw-de/questlist_v0611.json @@ -0,0 +1,82 @@ +[ + { + "id": "thorin", + "name": "Stückchen und Teile", + "showInLog": 1, + "stages": [ + { + "progress": 20, + "logText": "In einer Höhle im Osten habe ich Thorin gefunden. Er möchte, dass ich ihm helfe, die Knochen seiner früheren Weggefährten zu finden. Wenn ich die Gebeine der sechs Gefährten gefunden habe, soll ich sie zu ihm bringen." + }, + { + "progress": 31, + "logText": "Ich habe ein paar Knochenreste in der gleichen Höhle gefunden, in der ich Thorin getroffen habe." + }, + { + "progress": 32, + "logText": "Ich habe ein paar Knochenreste in der gleichen Höhle gefunden, in der ich Thorin getroffen habe." + }, + { + "progress": 33, + "logText": "Ich habe ein paar Knochenreste in der gleichen Höhle gefunden, in der ich Thorin getroffen habe." + }, + { + "progress": 34, + "logText": "Ich habe ein paar Knochenreste in der gleichen Höhle gefunden, in der ich Thorin getroffen habe." + }, + { + "progress": 35, + "logText": "Ich habe ein paar Knochenreste in der gleichen Höhle gefunden, in der ich Thorin getroffen habe." + }, + { + "progress": 36, + "logText": "Ich habe ein paar Knochenreste in der gleichen Höhle gefunden, in der ich Thorin getroffen habe." + }, + { + "progress": 40, + "logText": "Thorin dankte mir für meine Hilfe. Im Gegenzug darf ich sein Lager nutzen um mich auszuruhen. Er hat mir auch angeboten ein paar Tränke von ihm zu erwerben.", + "rewardExperience": 4000, + "finishesQuest": 1 + } + ] + }, + { + "id": "algangror", + "name": "Von Mäusen und Menschen", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "In einem einsamen Haus auf einer Halbinsel am Nordufer vom Laerothsee in den nordöstlichen Bergen habe ich Algangror getroffen." + }, + { + "progress": 11, + "logText": "Sie hat ein Problem mit Nagertieren und hat ein paar davon im Keller eingesperrt. Sie möchte, dass ich ihr bei der Beseitigung helfe." + }, + { + "progress": 15, + "logText": "Ich werde Algangror bei ihrem Nagertier-Problem helfen. Wenn die sechs Störenfriede beseitigt sind, soll ich ihr Bescheid geben." + }, + { + "progress": 20, + "logText": "Algangror war dankbar für die Hilfe bei ihrem Problem.", + "rewardExperience": 5000 + }, + { + "progress": 21, + "logText": "Sie bat mich noch, mit niemandem in Remgard über ihren Aufenthaltsort zu sprechen. Offensichtlich wird sie dort wegen irgendetwas gesucht, will mir aber nicht sagen warum. Ich soll unter keinen Umständen sagen wo sie ist.", + "finishesQuest": 1 + }, + { + "progress": 100, + "logText": "Ich werde Algangror mit ihrer Aufgabe nicht helfen.", + "finishesQuest": 1 + }, + { + "progress": 101, + "logText": "Algangror wird nicht mit mir reden, ich werde ihr deswegen mit ihrer Aufgabe nicht helfen können.", + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/questlist_v0611_2.json b/AndorsTrail/res/raw-de/questlist_v0611_2.json new file mode 100644 index 000000000..d1b247040 --- /dev/null +++ b/AndorsTrail/res/raw-de/questlist_v0611_2.json @@ -0,0 +1,257 @@ +[ + { + "id": "toszylae", + "name": "Ein unfreiwilliger Botschafter", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Auf der Straße zwischen Loneford und Brimhaven habe ich ein ausgetrocknetes Flussbett mit einer größeren Höhle darunter gefunden. Tief in der Höhle traf ich auf Ulirfendor, einen Priester des Schattens aus Brimhaven. Ulirfendor versucht, die Inschriften auf einem Schrein von Kazaul zu entziffern und hat herausgefunden, dass sie von einem 'Dunklen Beschützer' sprechen. Er weiß allerdings nicht, wer das sein soll. Was auch immer es bedeutet, er hat beschlossen, dass es aufgehalten werden muss." + }, + { + "progress": 11, + "logText": "Ulirfendor braucht Hilfe beim Bestimmen der fehlenden Teile der Inschriften auf dem Schrein. Die Inschrift lautet 'Kulauil hamar urum Kazaul'te', aber die nächsten Teile sind auf dem Felsen nicht mehr lesbar." + }, + { + "progress": 15, + "logText": "Ich habe Ulirfendor meine Hilfe angeboten und werde versuchen herauszufinden, wie die fehlenden Teile der Inschrift lauten. Ulirfendor glaubt, dass der Schrein von einer mächtigen Kreatur spricht, welche tiefer in der Höhle hausen soll. Vielleicht kann ich dort Hinweise über die fehlenden Teile finden." + }, + { + "progress": 20, + "logText": "Tief im inneren der Höhle, bin ich auf einen strahlenden Wächter gestoßen, der irgendeine andere Kreatur beschützt. Er stieß die Worte 'Kulauil hamar urum Kazaul'te. Kazaul hamat urul' hervor. Das müssen die fehlenden Worte sein, nach denen Ulirfendor sucht. Ich sollte sofort zu ihm zurückkehren." + }, + { + "progress": 21, + "logText": "Ich habe versucht, den Wächter anzugreifen, konnte ihm jedoch nicht einmal nahe kommen. Irgendeine starke Macht hielt mich zurück. Vielleicht weiß Ulirfendor mehr." + }, + { + "progress": 30, + "logText": "Ulirfendor war sehr davon angetan, dass ich die fehlenden Teile der Inschrift in Erfahrung bringen konnte.", + "rewardExperience": 2000 + }, + { + "progress": 32, + "logText": "Er erzählte mir auch, wie die Inschrift weiter lautete, wusste jedoch wieder nicht um deren Bedeutung. Ich soll zum Wächter zurückgehen und ihm die Worte von Ulirfendor ausrichten." + }, + { + "progress": 42, + "logText": "Ich habe die Worte vor dem Wächter ausgesprochen.", + "rewardExperience": 5000 + }, + { + "progress": 45, + "logText": "Der Wächter brach in schallendes Lachen aus und griff mich an." + }, + { + "progress": 50, + "logText": "Ich habe den Wächter besiegt und gelangte so zum Lich 'Toszylae'. Er hat es geschafft, mich mit irgendetwas zu infizieren. Ich muss ihn töten und zu Ulirfendor zurückkehren." + }, + { + "progress": 60, + "logText": "Ulirfendor teilte mir mit, dass er es geschafft habe, die Worte zu übersetzen, die ich zu dem Wächter gesagt habe. Frei übersetzt lauteten die Worte 'Mein Körper für Kazaul'. Ulirfendor war sehr betroffen von der Bedeutung der Worte für mich und bedauerte, dass er mich diese Worte sprechen lies." + }, + { + "progress": 70, + "logText": "Ulirfendor war sehr glücklich zu hören, dass ich den Lich besiegen konnte. Das wird die Leute in der Umgebung wieder ruhiger schlafen lassen.", + "rewardExperience": 20000, + "finishesQuest": 1 + } + ] + }, + { + "id": "darkprotector", + "name": "Der dunkle Beschützer", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Ich habe nach dem Sieg über den Lich 'Toszylae' einen fremdartigen Helm gefunden. Ich werde Ulirfendor fragen, ob er mir etwas darüber sagen kann." + }, + { + "progress": 15, + "logText": "Ulirfendor denkt, dass dieses Artefakt der Gegenstand ist, von dem die Inschrift auf dem Schrein spricht. Er wird Kummer im Umfeld desjenigen verursachen, der ihn trägt. Er möchte, dass ich ihn sofort zerstöre." + }, + { + "progress": 26, + "logText": "Für die Zerstörung des Helms braucht Ulirfendor den Helm und das Herz des Lichs." + }, + { + "progress": 30, + "logText": "Ich habe Ulirfendor den Helm gegeben." + }, + { + "progress": 31, + "logText": "Ich habe Ulirfendor das Herz des Lichs gegeben." + }, + { + "progress": 35, + "logText": "Ulirfendor hat das Artefakt zerstört. Die Menschen in den umliegenden Gegenden sind nun sicher vor dem Leid, das der Helm über sie gebracht hätte." + }, + { + "progress": 40, + "logText": "Für die Hilfe mit dem Lich und dem Helm hat mir Ulirfendor den dunklen Segen des Schattens zuteil werden lassen.", + "rewardExperience": 15000, + "finishesQuest": 1 + }, + { + "progress": 41, + "logText": "Für die Hilfe mit dem Lich und dem Helm wollte mir Ulirfendor den dunklen Segen des Schattens zuteil werden lassen. Ich habe jedoch abgelehnt.", + "rewardExperience": 35000, + "finishesQuest": 1 + }, + { + "progress": 50, + "logText": "Ich habe beschlossen, den Helm für mich zu behalten. Wer weiß, welche Kräfte er für mich bereit hält." + }, + { + "progress": 51, + "logText": "Ulirfendor hat mich angegriffen, weil ich den Helm behalten habe." + }, + { + "progress": 55, + "logText": "Ich habe ein Buch in der Nähe des Schreins gefunden. Das Buch beschreibt ein Ritual, bei dem die wahre Macht des Helms wiederhergestellt werden kann. Ich sollte es durchführen, wenn ich den Helm tragen will." + }, + { + "progress": 60, + "logText": "Ich habe mit dem Ritual von Kazaul begonnen." + }, + { + "progress": 65, + "logText": "Ich habe den Helm vor dem Schrein von Kazaul platziert." + }, + { + "progress": 66, + "logText": "Ich habe das Herz des Lichs vor dem Schrein von Kazaul platziert." + }, + { + "progress": 70, + "logText": "Das Ritual ist beendet und die Macht und der uralte Ruhm des Helmes wurden wiederhergestellt.", + "rewardExperience": 5000, + "finishesQuest": 1 + } + ] + }, + { + "id": "maggots", + "name": "Es ist in mir!", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Tief im inneren einer Höhle bin ich mit einem Lich von Kazaul zusammengestoßen. Irgendwie hat es der Lich geschafft, mich mit etwas zu infizieren, was in meinem Bauch herumkrabbelt! Ich muss das irgendwie los werden. Ich sollte Ulirfendor fragen, oder gleich Hilfe in einer Kirche suchen." + }, + { + "progress": 20, + "logText": "Ulirfendor sagte, dass er einmal etwas über Maden gelesen hätte, die sich von lebendem Gewebe ernähren. Das kann bei mir 'ungewöhnliche' Auswirkungen haben und die Eier der Maden können einen Menschen langsam von innen her töten. Ich sollte so schnell wie möglich Hilfe suchen, bevor es zu spät ist." + }, + { + "progress": 21, + "logText": "Ulirfendor meinte, dass mir ein Priester des Schattens helfen könnte. Ich solle Talion in Loneford sofort aufsuchen." + }, + { + "progress": 30, + "logText": "Der Priester Talion aus Loneford sagte mir, dass er für die Heilung meines Leidens ein paar Sachen benötigt. Zunächst einmal braucht er fünf Knochen und zwei Büschel Tierfell. Außerdem wird noch eine Irdegh-Giftdrüse und ein leeres Fläschchen benötigt. Knochen und Fell sollten sich in der Wildnis leicht finden lassen. Die Giftdrüse sollte einer der Irdeghs liefern können, die östlich von hier gesichtet wurden." + }, + { + "progress": 40, + "logText": "Ich habe fünf Knochen zu Talion gebracht." + }, + { + "progress": 41, + "logText": "Ich habe die zwei Büschel Tierhaar zu Talion gebracht." + }, + { + "progress": 42, + "logText": "Ich habe die Giftdrüse bei Talion abgeliefert." + }, + { + "progress": 43, + "logText": "Ich habe Talion ein leeres Fläschchen gegeben." + }, + { + "progress": 45, + "logText": "Ich habe jetzt alle Zutaten die Talion für meine Heilung braucht besorgt." + }, + { + "progress": 50, + "logText": "Talion hat mich von den Kazaul-Maden geheilt. Ich konnte eine der Maden in einem leeren Fläschchen auffangen. Talion meinte, das wäre sehr wertvoll. Ich kann mir aber nicht vorstellen wofür.", + "rewardExperience": 30000 + }, + { + "progress": 51, + "logText": "Wegen meiner früheren Erkrankung kann ich mich jetzt jederzeit gegen eine geringe Gebühr bei Talion mit dem Segen des Schattens belegen lassen.", + "finishesQuest": 1 + } + ] + }, + { + "id": "sisterfight", + "name": "Meinungsverschiedenheiten", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Ich habe von zwei zankenden Schwestern aus Remgard gehört: Elwel und Elwyl. Anscheinend halten sie nachts die Leute wach, so laut schreien sie sich gegenseitig an. Ich sollte sie vielleicht einmal in ihrem Haus am Südrand von Remgard besuchen." + }, + { + "progress": 20, + "logText": "Ich habe mit Elwyl, einer der Elwille Schwestern in Remgard, geredet. Sie ist wütend auf ihre Schweser, da sie ihr nicht einmal bei ganz einfachen Fakten zustimmt. Scheinbar haben sie ihre gegenseitigen Meinungsverschiedenheiten seit mehreren Jahren." + }, + { + "progress": 21, + "logText": "Elwel will nicht mit mir reden." + }, + { + "progress": 30, + "logText": "Eine Sache in der die beiden Schwestern aktuell unterschiedlicher Meinung sind ist die Farbe eines bestimmten Trankes, den der Stadtalchemist Hjaldar zubereitet. Elwyl sagt, dass der Trank der Treffsicherheit den Hjaldar macht ein blauer Trank ist, aber Elwel besteht darauf, dass der Trank aus einer grünen Substanz ist." + }, + { + "progress": 31, + "logText": "Elwyl will, dass ich einen Trank der Treffsicherheit von Hjaldar hier in Remgard besorge, so dass sie endgültig beweisen kann, dass Elwel falsch liegt." + }, + { + "progress": 40, + "logText": "Ich habe mit Hjaldar in Remgard gesprochen. Hjaldar kann seine Tränke nicht mehr zubereiten, da ihm sein Vorrat an Lyson Marrowextrakt ausgegangen ist." + }, + { + "progress": 41, + "logText": "Offenbar hätte Hjaldar's alter Freund Mazeg sicher noch etwas Lyson Marrowextrakt zu verkaufen. Unglücklicherweise weiß er nicht wo Mazeg aktuell lebt. Er weiß nur, dass Mazeg bei ihrem letzten Treffen auf der Reise weit nach Westen war." + }, + { + "progress": 45, + "logText": "Ich sollte Mazeg finden um etwas Lyson Marrowextrakt zu bekommen, so dass Hjaldar wieder seine Tränke machen kann." + }, + { + "progress": 50, + "logText": "Ich habe mit Mazeg in der Blackwater Mountain Siedlung gesprochen. Da ich den Leuten aus Blackwater Mountain geholfen habe, würde er mir Lyson Marrowextrakt für nur 400 Goldmünzen verkaufen." + }, + { + "progress": 51, + "logText": "Ich habe mit Mazeg in der Blackwater Mountain Siedlung gesprochen. Er würde mir Lyson Marrowextrakt für 800 Goldmünzen verkaufen." + }, + { + "progress": 55, + "logText": "Ich habe etwas Lyson Marrowextrakt von Mazeg gekauft. Ich sollte nach Remgard zurückkehren und es Hjaldar geben." + }, + { + "progress": 60, + "logText": "Hjaldar dankte mir für das Lyson Marrowextrakt, dass ich ihm gebracht habe.", + "rewardExperience": 15000 + }, + { + "progress": 61, + "logText": "Hjaldar kann jetzt wieder Tränke herstellen, und er würde gern mit mir handeln. Er gab mir sogar ein paar seiner ersten Tränke, die er zubereitet hatte. Ich sollte die Elwille sisters hier in Remgard wieder besuchen und ihnen einen Trank der Treffsicherheit zeigen." + }, + { + "progress": 70, + "logText": "Ich habe Elwyl einen Trank der Treffsicherheit gegeben." + }, + { + "progress": 71, + "logText": "Bedauerlicherweise haben ihre Zankereien nicht aufgehört. Im Gegensatz, sie scheinen noch wütender aufeinander zu sein, da sie bei der Farbe beide falsch lagen.", + "rewardExperience": 9000, + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/questlist_v0611_3.json b/AndorsTrail/res/raw-de/questlist_v0611_3.json new file mode 100644 index 000000000..befefe61d --- /dev/null +++ b/AndorsTrail/res/raw-de/questlist_v0611_3.json @@ -0,0 +1,296 @@ +[ + { + "id": "remgard", + "name": "Alles in Ordnung", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Ich habe die Brücke erreicht, die nach Remgard führt. Dem Brückenwächter zufolge ist die Stadt für Fremde gesperrt und es darf gegenwärtig auch niemand die Stadt verlassen. Es finden Untersuchungen wegen dem Verschwinden einiger Bewohner statt." + }, + { + "progress": 15, + "logText": "Ich habe angeboten, den Leuten von Remgard bei der Untersuchung im Fall der verschwundenen Bewohner zu helfen." + }, + { + "progress": 20, + "logText": "Der Brückenwächter hat mich gefragt, ob ich das verlassene Haus im Osten am Nordufer des Sees untersuchen könnte. Ich soll vor jeglichen Bewohnern die sich dort aufhalten auf der Hut sein." + }, + { + "progress": 30, + "logText": "Ich habe dem Brückenwächter berichtet, dass ich Algangror in dem verlassenen Haus getroffen habe.", + "rewardExperience": 3000 + }, + { + "progress": 31, + "logText": "Ich habe dem Brückenwächter berichtet, dass außer ein paar Ratten niemand in dem Haus war.", + "rewardExperience": 3000 + }, + { + "progress": 35, + "logText": "Ich habe Zugang zur Stadt Remgard erhalten. Ich sollte bei Jhaeld dem Stadtältesten vorsprechen, um weitere Schritte zu erfahren. Jhaeld könnte sich möglicherweise in der Taverne im Südosten der Stadt aufhalten." + }, + { + "progress": 40, + "logText": "Jhaeld war ziemlich überheblich, aber er hat mir gesagt sie hätten seit einer ganzen Weile ein Problem mit verschwindenden Bewohner. Sie haben keinen Anhaltspunkt was die Ursache dafür sein könnte." + }, + { + "progress": 50, + "logText": "Ich soll 4 Bewohner in Remgard besuchen und sie nach Hinweisen was mit den verschwundenen Bewohnern passiert sein könnte befragen." + }, + { + "progress": 51, + "logText": "Der erste ist Norath, dessen Frau Bethir verschwunden ist. Norath kann im südwestlichsten Bauernhaus gefunden werden." + }, + { + "progress": 52, + "logText": "Als zweites sollte ich mit den Rittern von Elythom hier in der Taverne reden." + }, + { + "progress": 53, + "logText": "Als drittes sollte ich mit der alten Frau Duaina in ihrem Haus im Süden reden." + }, + { + "progress": 54, + "logText": "Als letztes sollte ich mit Rothses dem Rüstungsbauer reden. Er lebt auf der Westseite der Stadt." + }, + { + "progress": 59, + "logText": "Ich habe versucht mit Jhaeld über Algangror zu reden, aber er entließ als ob er mich nicht gehört hätte." + }, + { + "progress": 61, + "logText": "Ich habe mit Norath gesprochen. Er und seine Frau hatten kürzlich einen Streit, aber er hat keine Ahnung was mit ihr passiert sein könnte." + }, + { + "progress": 62, + "logText": "Die Ritter von Elythom in der Remgard Taverne sagen eine der Ritterinnen sei kürzlich verschwunden. Allerdings hatte niemand etwas bemerkt als sie verschwunden war." + }, + { + "progress": 63, + "logText": "Duaina hat mich ih ihrer Vision gesehen. Ich habe nicht alles verstanden was sie gesagt hatte, aber was ich verstanden hatte war, dass ich und Andor teil eines größeren Plans wären. Ich frage mich was das bedeutet? Sie redete nicht über irgendwelche verschwundenen Bewohner, jedenfalls nicht so, dass ich es verstehen konnte." + }, + { + "progress": 64, + "logText": "Rothses hat mir gesagt, dass Bethir ihn in der Nacht vor ihrem Verschwinden besucht hatte, um einige Gegenstände zu verkaufen. Er hatte nicht gesehen, wo sie anschließend hingegangen ist." + }, + { + "progress": 70, + "logText": "Wie Jhaeld es wollte habe ich mit allen Bewohnern gesprochen, aber ich habe von niemanden Informationen bekommen, was mir den verschwundenen Bewohnern passiert sein könnte. Ich sollte zurück zu Jhaeld gehen und ihn nach seinen weiteren Plänen fragen." + }, + { + "progress": 75, + "logText": "Jhaeld war sehr enttäuscht, dass ich von den Bewohnern, mit denen ich sprechen sollte, nichts herausfinden konnte.", + "rewardExperience": 15000 + }, + { + "progress": 80, + "logText": "Wenn ich Jhaeld und den Bewohnern von Remgard immer noch helfen will, sollte ich an anderen Orten nach Hinweisen suchen.", + "finishesQuest": 1 + }, + { + "progress": 110, + "logText": "Jhaeld will nicht mit mir reden. Ich werde ihnen nicht helfen herauszufinden was mit den vermissten Bewohnern aus Remgard passiert ist.", + "finishesQuest": 1 + } + ] + }, + { + "id": "remgard2", + "name": "Was ist das für ein Gestank?", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Ich habe Jhaeld dem Stadtältesten in Remgard über die Frau namens Algangror erzählt. Sie wohnt in dem verlassenen Haus im Osten des Nordstrandes von dem See außerhalb Remgard's." + }, + { + "progress": 20, + "logText": "Jhaeld hat mir gesagt er würde sich lieber nicht mit ihr anlegen, da er glaubt, dass sie sehr gefährlich sei. Den Wachen zuliebe wird er es nicht riskieren gegen sie vorzugehen, da er Angst hat was mit ihnen allen passieren könnte." + }, + { + "progress": 21, + "logText": "Wenn ich Jhaeld und den Bewohnern von Remgard helfen wollte, sollte ich einen Weg finden damit Algangror verschwindet. Er hat mich auch gewarnt äußerst vorsichtig zu sein." + }, + { + "progress": 30, + "logText": "Algangror hat mir gegenüber zugegeben einige Bewohner Remgard's verschwinden zu lassen. Aber sie würde mir nicht erzählen was mit ihnen passiert ist." + }, + { + "progress": 35, + "logText": "Ich habe Algangror angegriffen. Ich sollte mit einem Beweis sie besiegt zu haben zu Jhaeld zurückkehren wenn sie tot ist." + }, + { + "progress": 40, + "logText": "Ich habe Jhaeld erzählt, dass ich Algangror besiegt habe." + }, + { + "progress": 41, + "logText": "Jhaeld war sehr erfreut die guten Neuigkeiten zu hören. Die Bewohner aus Remgard sollten jetzt sicher sein und die Stadt kann nun für Fremde wieder geöffnet werden." + }, + { + "progress": 45, + "logText": "Dafür, dass ich die Ursache für das Verschwinden der Bewohner aus Remgard gefunden habe, sagte Jhaeld mir ich sollte mit Rothses reden. Es könnte ihm möglich sein etwas von meiner Ausrüstung zu verbessern.", + "rewardExperience": 21000, + "finishesQuest": 1 + }, + { + "progress": 46, + "logText": "Ervelyn, der Schneider aus Remgard, gab mir einen gefederten Hut als Dank für die Hilfe den Bewohnern Remgard's gegenüber." + } + ] + }, + { + "id": "fiveidols", + "name": "Die fünf Figuren", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Algangror will, dass ich ihr bei einer Aufgabe helfe. Sie kann mir weder den Inhalt der Aufgabe beschreiben, noch ihre Beweggründe erklären. Sie hat versprochen mir ihre magische Halskette, die offensichtlich sehr wertvoll ist, zu geben, wenn ich ihr helfe." + }, + { + "progress": 20, + "logText": "Ich habe zugestimmt Algangror mit ihrer Aufgabe zu helfen." + }, + { + "progress": 30, + "logText": "Algangror will, dass ich fünf Figuren bei fünf verschiedenen Bewohnern aus Remgard aufstelle. Die Figuren soll ich jeweils nah am Bett der fünf Bewohner platzieren. Die Figuren müssen gut versteckt werden, damit sie nicht so einfach gefunden werden können." + }, + { + "progress": 31, + "logText": "Der erste Bewohner ist Jhaeld, der Stadtältesten der in der Remgard Tavern gefunden werden kann." + }, + { + "progress": 32, + "logText": "Als zweites soll ich eine Figur beim Bett von Larni dem Bauern platzieren. Er wohnt in einem Haus im Norden von Remgard." + }, + { + "progress": 33, + "logText": "Der dritte Bewohner ist Arnal der Waffenschmied, der im Nordwesten von Remgard lebt." + }, + { + "progress": 34, + "logText": "Der vierte ist Emerei, der im Südosten von Remgard gefunden werden kann." + }, + { + "progress": 35, + "logText": "Der fünfte Bewohner ist Carthe. Carthe lebt am östlichem Strand von Remgard, in der Nähe der Taverne." + }, + { + "progress": 37, + "logText": "Ich darf niemand von meiner Aufgabe oder dem Platzieren der Figuren erzählen." + }, + { + "progress": 41, + "logText": "Ich habe eine Figur bei Jhaeld's Bett platziert." + }, + { + "progress": 42, + "logText": "Ich habe eine Figur bei dem Bett von Larni dem Bauern platziert." + }, + { + "progress": 43, + "logText": "Ich habe eine Figur bei Arnal's Bett platziert." + }, + { + "progress": 44, + "logText": "Ich habe eine Figur bei Emerei's Bett platziert." + }, + { + "progress": 45, + "logText": "Ich habe eine Figur bei Carthe's Bett platziert." + }, + { + "progress": 50, + "logText": "Wie Algangror mir gesagt hat habe ich alle Figuren bei den Betten der fünf Bewohner aufgestellt. Ich sollte zu Algangror zurückkehren." + }, + { + "progress": 51, + "logText": "Algangror dankte mir, dass ich ihr geholfen hatte." + }, + { + "progress": 60, + "logText": "Sie erzählte mir ihre Geschichte, wie sie in der Stadt lebte, aber für ihren Glauben verfolgt wurde. Ihrer Meinung nach war die Verfolgung vollkommen ungerechtfertigt, da sie den Bewohnern kein Schaden zugefügt hatte." + }, + { + "progress": 61, + "logText": "Um sich an der Stadt Remgard zu rächen, hatte sie es geschafft ein paar Bewohner in ihr Haus zu locken und sie in Ratten zu verwandeln." + }, + { + "progress": 70, + "logText": "Für die Hilfe bei der Aufgabe, die sie selbst nicht durchführen konnte, gab mir Algangror ihre magische Halskette, 'Marrow's Verderben'.", + "rewardExperience": 21000, + "finishesQuest": 1 + }, + { + "progress": 100, + "logText": "Ich habe mich entschieden Algangror bei ihrer Aufgabe nicht zu helfen.", + "finishesQuest": 1 + } + ] + }, + { + "id": "kaverin", + "name": "Alte Freunde?", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Ich traf Kaverin in Remgard, der offenbar ein alter Bekannter von Unzel ist, der außerhalb von Fallhaven lebt." + }, + { + "progress": 20, + "logText": "Kaverin will, dass ich Unzel eine Nachricht überbringe." + }, + { + "progress": 21, + "logText": "Ich habe abgelehnt Kaverin zu helfen.", + "finishesQuest": 1 + }, + { + "progress": 22, + "logText": "Ich habe zugestimmt die Nachricht zu überbringen." + }, + { + "progress": 25, + "logText": "Kaverin hat mir die Nachricht gegeben, die ich Unzel weitergeben soll." + }, + { + "progress": 30, + "logText": "Ich habe Unzel die Nachricht überreicht. Ich sollte zu Kaverin in Remgard zurückkehren." + }, + { + "progress": 40, + "logText": "Kaverin dankte mir für das überbringen der Nachricht an Unzel.", + "rewardExperience": 10000 + }, + { + "progress": 45, + "logText": "Im Gegenzug, gab Kaverin mir eine alte Karte, die in seinen Besitz gelangt war. Offenbar führt sie zu Vacor's altem Versteck." + }, + { + "progress": 60, + "logText": "Kaverin war darüber dass ich Unzel getötet und Vacor geholfen hatte sehr aufgebracht. Er fing an mich zu attakieren. Ich sollte zu Vacor zurückkehren, wenn Kaverin tot ist." + }, + { + "progress": 70, + "logText": "Kaverin trug eine versiegelte Nachricht bei sich. Vacor hatte das Siegel sofort erkannt und schien sehr an der Nachricht interessiert zu sein." + }, + { + "progress": 75, + "logText": "Ich habe Vacor die Nachricht von Kaverin gegeben. Im Gegenzug gab mir Vacor eine alte Karte, die zu seinem alten Versteck führte.", + "rewardExperience": 10000 + }, + { + "progress": 90, + "logText": "Ich sollte versuchen Vacor's altes Versteck auf der Straße westlich des ehemaligen Gefängnisses in Flagstone, südwestlich von Fallhaven zu finden." + }, + { + "progress": 100, + "logText": "Ich habe Vacor's altes Versteck gefunden.", + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/questlist_v068.json b/AndorsTrail/res/raw-de/questlist_v068.json new file mode 100644 index 000000000..ad9aa0d51 --- /dev/null +++ b/AndorsTrail/res/raw-de/questlist_v068.json @@ -0,0 +1,211 @@ +[ + { + "id": "farrik", + "name": "Nächtlicher Besuch", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Farrik, ein Mitglied der Diebesgilde in Fallhaven, hat mir von einer geplanten Flucht erzählt. Ein Mitglied der Gilde soll aus dem Gefängnis von Fallhaven befreit werden.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Farrik hat mir die Details zu dem Fluchtplan genannt und ich habe die Aufgabe der Gilde zu helfen angenommen. Der Hauptmann der Wache im Gefängnis hat anscheinend ein Alkoholproblem. Dem Plan zufolge soll ich eine präparierte Flasche Met vom Koch der Diebesgilde an ihn übergeben, was ihn mit Sicherheit einige Stunden außer Gefecht setzen wird. Es könnte außerdem notwendig sein, den Hauptmann zu bestechen.", + "finishesQuest": 0 + }, + { + "progress": 25, + "logText": "Ich habe den präparierten Met vom Koch der Diebesgilde erhalten.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Ich habe Ferrik gesagt, dass ich nicht in allen Punkten mit seinem Plan einverstanden bin. Ich könnte dem Hauptmann der Wache von ihrem zwielichtigen Plan berichten...", + "finishesQuest": 0 + }, + { + "progress": 32, + "logText": "Ich habe den präparierten Met an den Hauptmann der Wache übergeben.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Ich habe dem Hauptmann der Wache von Plan der Diebe, ihren Freund zu befreien, erzählt.", + "finishesQuest": 0 + }, + { + "progress": 50, + "logText": "Der Hauptmann möchte, dass ich den Dieben erzähle, dass die Wache heute Nacht nur aus einer Notmannschaft besteht. Das sollte dafür sorgen, dass einige Diebe gefangen werden können.", + "finishesQuest": 0 + }, + { + "progress": 60, + "logText": "Ich habe den Hauptmann dazu gebracht, den präparierten Met zu trinken. Er sollte heute Nacht außer Gefecht sein, so dass die Diebe ihren Freund befreien können.", + "finishesQuest": 0 + }, + { + "progress": 70, + "logText": "Farrik hat mich für meine Hilfe der Diebesgilde gegenüber belohnt.", + "rewardExperience": 1500, + "finishesQuest": 1 + }, + { + "progress": 80, + "logText": "Ich habe Ferrik erzählt, dass die Wache heute Nacht nur sehr dünn besetzt sein wird.", + "finishesQuest": 0 + }, + { + "progress": 90, + "logText": "Der Hauptmann der Gefängniswache dankte mir für die Hilfe bei der Gefangennahme der Diebe. Er sagte, dass er auch den anderen Wachen davon erzählen würde.", + "rewardExperience": 1700, + "finishesQuest": 1 + } + ] + }, + { + "id": "lodar", + "name": "Ein verlorener Trank", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Ich soll einen Alchemisten namens Lodar finden. Umar von der Diebesgilde in Fallhaven erzählte mir auch, dass ich auf dem Weg zu Lodar's Versteck einen Wächter passieren müsse, für den ich ein Passwort benötigen würde.", + "finishesQuest": 0 + }, + { + "progress": 15, + "logText": "Umar sagte mir, dass ich das Passwort für Lodar's Versteck bei Ogam in Vilegard in Erfahrung bringen könnte.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Ich habe Ogam im Südwesten von Vilegard besucht. Er schien in Rätseln zu sprechen. Ich konnte kaum etwas verstehen, als ich in nach Lodar's Versteck fragte. 'Auf halbem Weg zwischen dem Schatten und dem Licht. Felsformationen.' und 'Das Leuchten des Schattens.' waren einige seiner Worte. Ich habe keine Ahnung, was das bedeuten könnte.", + "finishesQuest": 0 + } + ] + }, + { + "id": "vilegard", + "name": "Vertrauen für einen Fremden", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Die Leute von Vilegard sind sehr misstrauisch gegenüber Fremden. Mir wurde gesagt, dass ich mit Jolnor in der Kapelle von Vilegard rede soll, wenn ich das Vertrauen der Bewohner erlangen möchte.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Ich habe mit Jolnor in der Kapelle von Vilegard geredet. Er schlägt vor, dass ich drei einflussreichen Menschen helfen solle, um das Vertrauen der Menschen zu gewinnen. Ich soll Kaori, Wrye und Jolnar selbst nach Aufgaben fragen.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Ich habe den drei wichtigen Bürgern von Vilegard geholfen, so wie Jolnor mir geraten hat. Nun sollten mir die Leute etwas mehr vertrauen.", + "rewardExperience": 2100, + "finishesQuest": 1 + } + ] + }, + { + "id": "kaori", + "name": "Botengang für Kaori", + "showInLog": 1, + "stages": [ + { + "progress": 5, + "logText": "Jolnor hat mir in der Kapelle von Vilegard den Auftrag gegeben, mit Kaori im Norden von Vilegard zu reden, um sie nach einer Aufgabe zu fragen.", + "finishesQuest": 0 + }, + { + "progress": 10, + "logText": "Kaori aus Nord-Vilegard will 10 Knochenmehltränke von mir.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Ich habe Kaori die 10 Knochentränke gebracht.", + "rewardExperience": 520, + "finishesQuest": 1 + } + ] + }, + { + "id": "wrye", + "name": "Eine zweifelhafte Angelegenheit", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Jolnor aus Vilegard möchte, dass ich mit Wrye im Norden von Vilegard rede. Sie vermisst ihren Sohn scheinbar seit kurzem.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Wrye aus Nord-Vilegard erzählte mir, dass ihr Sohn Rincel vermisst wird. Sie glaubt, dass er entweder tot oder sehr schwer verletzt ist.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Wrye erzählte mir, dass sie die königliche Garde aus Feygard mit dem Verschwinden ihres Sohnes in Verbindung bringt und das diese ihn rekrutiert hätten.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Wrye möchte, dass ich nach Hinweisen suche, die offenbaren, was ihrem Sohn zugestoßen ist.", + "finishesQuest": 0 + }, + { + "progress": 41, + "logText": "Ich sollte in der Taverne von Vilegard und in der Taverne 'Schäumende Flasche' nördlich von Vilegard nach dem Verbleib von Rincel forschen.", + "rewardExperience": 200, + "finishesQuest": 0 + }, + { + "progress": 42, + "logText": "Ich hörte, dass ein Junge vor einiger Zeit in der Taverne 'Schäumende Flasche' war. Offenbar ging er von hier aus nach Westen.", + "finishesQuest": 0 + }, + { + "progress": 80, + "logText": "Nordwestlich von Vilegard bin ich auf einen Mann gestoßen, der Rincel beim Kampf mit Monstern beobachtet hat. Anscheinend verließ Rincel Vilegard freiwillig, um sich die Stadt Feygard anzusehen. Ich sollte seiner Mutter Wrye im Norden von Vilegard berichten, was ihrem Sohn passiert ist.", + "finishesQuest": 0 + }, + { + "progress": 90, + "logText": "Ich habe Wrye die Wahrheit über das Verschwinden ihres Sohnes erzählt.", + "rewardExperience": 520, + "finishesQuest": 1 + } + ] + }, + { + "id": "jolnor", + "name": "Spione im Schaum", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Jolnor aus Vilegard erzählte mir in der Kapelle von einem Wachposten vor der Taverne 'Schäumende Flasche', von dem er annimmt, dass es sich um einen Spion der königlichen Garde aus Feygard handelt. Er möchte, dass ich irgendwie dafür sorge, dass der Wachposten dort verschwindet. Die Taverne liegt nördlich von Vilegard.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Ich konnte den Wächter vor der Taverne 'Schäumende Flasche' davon überzeugen, dass er nach seiner Schicht den Posten verlässt.", + "finishesQuest": 0 + }, + { + "progress": 21, + "logText": "Ich habe den Wachtposten vor der Taverne 'Schäumende Flasche' angegriffen. Seinen Ring mit dem Wappen der königlichen Garde werde ich Jolnor als Beweis dafür bringen, dass er den Posten für immer verlassen hat.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Ich habe Jolnor berichtet, dass die Wache nicht mehr auf ihrem Posten ist.", + "rewardExperience": 630, + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw-de/questlist_v069.json b/AndorsTrail/res/raw-de/questlist_v069.json new file mode 100644 index 000000000..dcc8d36e1 --- /dev/null +++ b/AndorsTrail/res/raw-de/questlist_v069.json @@ -0,0 +1,368 @@ +[ + { + "id": "bwm_agent", + "name": "Der Agent und das Biest", + "showInLog": 1, + "stages": [ + { + "progress": 1, + "logText": "Ich habe eine Mann auf der Suche nach Hilfe für seine Siedlung 'Blackwater Mountain' getroffen. Anscheinend wird seine Siedlung von Monstern und Banditen angegriffen und die Siedler benötigen dringend Hilfe." + }, + { + "progress": 5, + "logText": "Ich habe zugestimmt, dem Mann und 'Blackwater Mountain' bei der Lösung ihres Problems zu helfen." + }, + { + "progress": 10, + "logText": "Der Mann bat mich, ihn auf der anderen Seite der eingestürzten Mine zu treffen. Er wird durch einen Schacht kriechen und ich soll in die stockdunkle verlassene Mine hinabsteigen." + }, + { + "progress": 20, + "logText": "Ich habe mich durch die finstere Mine gearbeitet und traf den Mann auf der anderen Seite. Er war sehr erpicht darauf mit klarzumachen, dass ich mich geradewegs nach Osten wenden soll, sobald ich die Mine verlassen habe. Ich würde ihn am Fuße der Berge im Osten treffen." + }, + { + "progress": 25, + "logText": "Ich schnappte ein Gerücht auf, nach dem sich Prim und die Siedlung von Blackwater Mountain gegenseitig bekämpfen sollen." + }, + { + "progress": 30, + "logText": "Ich sollte dem Pfad die Berge hinauf zur Blackwater Siedlung folgen." + }, + { + "progress": 40, + "logText": "Ich habe den Mann auf meinem Weg nach Blackwater Mountain wieder getroffen. Er ermutigte mich, dem Pfad weiter zu folgen." + }, + { + "progress": 50, + "logText": "Ich habe die schneebedeckten Region der Blackwater Mountains erreicht. Der Mann sagte mir, das ich noch ein wenig weiter gehen solle. Offenbar ist die Siedlung von Blackwater Mountain nicht mehr weit entfernt." + }, + { + "progress": 60, + "logText": "Ich habe die Siedlung von Blackwater Mountain erreicht. Ich sollte nach ihrem Schwertmeister Harlenn suchen und mit ihm reden." + }, + { + "progress": 65, + "logText": "Ich habe mit Harlenn in der Siedlung von Blackwater Mountain gesprochen. Anscheinend ist die Siedlung häufigen Angriffen durch verschiedene Monster, den Aulaeth und weißen Lindwürmern ausgesetzt. Zusätzlich werden sie auch noch von den Einwohnern von Prim attackiert." + }, + { + "progress": 66, + "logText": "Harlenn denkt, dass die Leute von Prim irgendwie hinter den Angriffen der Monster stecken." + }, + { + "progress": 70, + "logText": "Harlenn hat eine Nachricht für Guthbered aus Prim. Entweder beenden die Leute von Prim ihre Angriffe auf Blackwater Mountain oder Harlenn werde nicht eher ruhen, bis Prim vernichtet ist. Das soll ich Guthbered in Prim ausrichten." + }, + { + "progress": 80, + "logText": "Guthbered meint, dass die Leute von Prim nichts mit den Angriffen der Monster auf Blackwater Mountain zu tun hätten. Das soll ich Harlenn ausrichten." + }, + { + "progress": 90, + "logText": "Harlenn ist sich absolut sicher, dass Prim irgendwie hinter den Angriffen steckt." + }, + { + "progress": 95, + "logText": "Harlenn bat mich, nach Prim zu gehen und nach Hinweisen Ausschau zu halten, ob dort ein Angriff auf seine Siedlung geplant wird. Ich soll vor allem das Umfeld von Guthbered im Auge behalten." + }, + { + "progress": 100, + "logText": "Ich habe Beweise gefunden, dass Prim Söldner für eine Angriff auf Blackwater Mountain rekrutiert hat. Ich sollte das sofort Harlenn berichten." + }, + { + "progress": 110, + "logText": "Harlenn hat sich bei mir bedankt, dass ich ihm von den Angriffsplänen berichtet habe.", + "rewardExperience": 1150 + }, + { + "progress": 120, + "logText": "Um die Angriffe auf Blackwater Mountain ein für alle Mal zu beenden, möchte Harlenn, dass ich Guthbered in Prim töte." + }, + { + "progress": 130, + "logText": "Ich habe Guthbered angegriffen." + }, + { + "progress": 131, + "logText": "Ich habe Guthbered gesagt, dass ich ihn töten soll. Ich habe ihn aber am Leben gelassen, wofür er mit zutiefst dankbar war und Prim verlassen hat.", + "rewardExperience": 2100 + }, + { + "progress": 149, + "logText": "Ich habe Harlenn gesagt, dass Guthbered von uns gegangen ist." + }, + { + "progress": 150, + "logText": "Harlenn hat sich für meine Hilfe bedankt. Nun sollten die Angriffe auf Blackwater Mountain ein Ende haben.", + "rewardExperience": 5000 + }, + { + "progress": 240, + "logText": "Ich genieße nun das Vertrauen der Einwohner von Blackwater Mountain und alle Dienstleistungen sollten jetzt für mich verfügbar sein.", + "finishesQuest": 1 + }, + { + "progress": 250, + "logText": "Ich habe mich entschieden, den Menschen von Blackwater Mountain nicht zu helfen.", + "finishesQuest": 1 + }, + { + "progress": 251, + "logText": "Da ich Prim unterstütze, will Harlenn nicht mehr mit mir reden.", + "finishesQuest": 1 + } + ] + }, + { + "id": "prim_innquest", + "name": "Gut ausgeruht", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Ich habe mich mit dem Koch in Prim unterhalten. Er kann ein Hinterzimmer vermieten, es ist aber derzeit von einem Typen namens Arghest angemietet. Ich sollte Arghest finden und feststellen, ob er den Raum noch braucht. Der Koch schickte mich in den Südwesten von Prim." + }, + { + "progress": 20, + "logText": "Ich habe mit Arghest über das Hinterzimmer im Gasthaus geredet. Er möchte das Zimmer gern behalten, falls er sich einmal erholen müsse. Allerdings würde er es mir überlassen, wenn ich ihn ausreichen entschädigen würde." + }, + { + "progress": 30, + "logText": "Arghest möchte 5 Flaschen Milch von mir. Wahrscheinlich kann ich Milch in den größeren Dörfern kaufen." + }, + { + "progress": 40, + "logText": "Ich habe die Milch zu Arghest gebracht. Er hat zugestimmt, dass ich den Raum im Gasthaus übernehmen kann. Damit ich mich dort ausruhen kann, sollte ich vorher mit dem Koch reden.", + "rewardExperience": 500 + }, + { + "progress": 50, + "logText": "Ich habe dem Koch erklärt, dass ich die Erlaubnis von Arghest habe, das Hinterzimmer zu benutzen.", + "finishesQuest": 1 + } + ] + }, + { + "id": "prim_hunt", + "name": "Düstere Absichten", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Gleich nach dem Verlassen der eingestürzten Mine traf ich auf dem Weg nach Blackwater Mountain einen Mann aus dem Dorf Prim. Er flehte mich an, ihm zu helfen." + }, + { + "progress": 11, + "logText": "Prim benötigt Hilfe von außerhalb, um sich gegen die Angriffe einiger Monster wehren zu können. Ich soll mit Guthbered in Prim sprechen, wenn ich den Leuten dort helfen will." + }, + { + "progress": 15, + "logText": "Guthbered soll sich im Gemeinschaftshaus von Prim aufhalten. Ich werde nach einem Steinhaus in der Mitte des Dorfes Ausschau halten." + }, + { + "progress": 20, + "logText": "Ich habe mit Guthbered über die Geschichte mit den Angriffen gesprochen. Prim befindet sich seit kurzem unter ständigem Angriff aus der Siedlung von Blackwater Mountain." + }, + { + "progress": 25, + "logText": "Guthbered möchte, dass ich zur Siedlung in den Bergen von Blackwater gehe und dort Schwertmeister Harlenn frage, warum (oder ob) er die Beschwörung von Gornauds für den Kampf gegen Prim veranlasst hat." + }, + { + "progress": 30, + "logText": "Ich habe mit Harlenn über die Angriffe auf Prim gesprochen. Er sagt, dass seine Leute nichts mit den Angriffen zu tun hätten. Das soll ich Guthbered in Prim ausrichten." + }, + { + "progress": 40, + "logText": "Guthbered glaubt immer noch, dass die Leute aus Blackwater Mountain hinter den Angriffen stecken." + }, + { + "progress": 50, + "logText": "Guthbered möchte, dass ich nach Hinweisen auf eine größere Offensive aus Blackwater Mountain gegen Prim suche. Er würde irgendwo in der Nähe von Harlenn's Privatquartier suchen, natürlich ohne gesehen zu werden." + }, + { + "progress": 60, + "logText": "Ich habe in Harlenn's Privatquartier Dokumente mit Angriffsplänen gegen Prim gefunden. Ich sollte das Guthbered so schnell wie möglich mitteilen." + }, + { + "progress": 70, + "logText": "Guthbered dankte mir für meine Hilfe beim Aufdecken der Angriffspläne aus Blackwater Mountain.", + "rewardExperience": 1150 + }, + { + "progress": 80, + "logText": "Um die Angriffe auf Prim ein für alle Mal zu beenden, möchte Guthbered, dass ich Harlenn in Blackwater Mountain töte." + }, + { + "progress": 90, + "logText": "Ich habe Harlenn angegriffen." + }, + { + "progress": 91, + "logText": "Ich habe Harlenn erklärt, dass ich geschickt wurde, ihn zu töten. Ich ließ ihn aber am Leben, wofür er mir zutiefst dankbar war und die Siedlung verlassen hat.", + "rewardExperience": 2100 + }, + { + "progress": 99, + "logText": "Ich habe Guthbered gesagt, dass Harlenn von uns gegangen ist." + }, + { + "progress": 100, + "logText": "Guthbered hat sich für meine Hilfe bedankt. Nun sollten die Angriffe auf Prim ein Ende haben. Als Dank erhielt ich außerdem einige Sachen und eine gefälschte Zugangserlaubnis für die inneren Kammern in der Siedlung von Blackwater Mountain.", + "rewardExperience": 5000 + }, + { + "progress": 140, + "logText": "Ich habe den Wachen die gefälschte Zugangserlaubnis gezeigt und wurde in die inneren Kammern vorgelassen." + }, + { + "progress": 240, + "logText": "Ich genieße nun das Vertrauen der Einwohner von Prim und alle Dienstleistungen sollten jetzt für mich verfügbar sein.", + "finishesQuest": 1 + }, + { + "progress": 250, + "logText": "Ich habe mich entschieden, den Menschen von Prim nicht zu helfen.", + "finishesQuest": 1 + }, + { + "progress": 251, + "logText": "Da ich Blackwater Mountain unterstütze, will Guthbered nicht mehr mit mir reden.", + "finishesQuest": 1 + } + ] + }, + { + "id": "kazaul", + "name": "Licht im Dunkel", + "showInLog": 1, + "stages": [ + { + "progress": 8, + "logText": "Ich habe die innere Kammer der Siedlung von Blackwater Mountain erreicht und einige Magier angetroffen, die von einem Mann namens Throdna angeführt werden." + }, + { + "progress": 9, + "logText": "Throdna schien sehr interessiert an jemand (oder etwas) mit dem Namen Kazaul, insbesondere an einem Ritual das in dessen Namen ausgeführt wird." + }, + { + "progress": 10, + "logText": "Ich habe Throdna versprochen ihm dabei zu helfen, mehr über das Ritual selbst herauszufinden. Dazu soll ich nach Bruchstücken für das Ritual suchen, welche irgendwo um den Berg herum zu finden sein müssen. Ich sollte nach den Stücken auf dem Bergpfad suchen, der von Blackwater Mountain nach Prim führt." + }, + { + "progress": 11, + "logText": "Ich muss die zwei Teile für den Gesang finden und die drei Teile, die das Ritual selbst beschreiben. Wenn ich alle Teile habe, soll ich zu Throdna zurückkehren." + }, + { + "progress": 21, + "logText": "Ich habe die erste Hälfte des Gesangs für das Ritual von Kazaul." + }, + { + "progress": 22, + "logText": "Ich habe die zweite Hälfte des Gesangs für das Ritual von Kazaul." + }, + { + "progress": 25, + "logText": "Ich habe das erste Teil für das Ritual von Kazaul gefunden." + }, + { + "progress": 26, + "logText": "Ich habe das zweite Teil für das Ritual von Kazaul gefunden." + }, + { + "progress": 27, + "logText": "Ich habe das dritte Teil für das Ritual von Kazaul gefunden." + }, + { + "progress": 30, + "logText": "Throdna dankte mir für das Auffinden aller Teile des Rituals.", + "rewardExperience": 3600 + }, + { + "progress": 40, + "logText": "Throdna will, dass ich die Kazaul Brutstätte in der Nähe von Blackwater Mountain zerstöre. Es gibt einen Schrein am Fuß des Berges, den ich mir näher ansehen sollte." + }, + { + "progress": 41, + "logText": "Ich habe eine Essenz des reinen Geistes von Throdna erhalten. Ich soll den Inhalt über den Schrein von Kazaul verteilen. Nachdem ich den Schrein gefunden und gereinigt habe, soll ich zu Throdna zurückkehren." + }, + { + "progress": 50, + "logText": "Im Schrein unterhalb von Blackwater Mountain bin ich einem Wächter von Kazaul begegnet. Nachdem ich die Verse des Ritualgesangs angestimmt hatte, griff er mich an." + }, + { + "progress": 60, + "logText": "Ich habe den Schrein von Kazaul gereinigt.", + "rewardExperience": 3200 + }, + { + "progress": 100, + "logText": "Ich hatte zumindest eine kleine Anerkennung von Throdna erwartet, nachdem ich ihm behilflich war, mehr über das Ritual herauszufinden und für das Reinigen des Schreins. Er schien jedoch mehr mit den Ausführungen über Kazaul beschäftigt, aus denen ich nicht Verständliches heraushören konnte.", + "finishesQuest": 1 + } + ] + }, + { + "id": "bwm_wyrms", + "name": "Keine Schwäche", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Auf der zweiten Ebene der Blackwater Mountain Siedlung erforscht Herec die weißen Lindwürmer, die außerhalb der Siedlung leben. Er braucht dafür 5 Krallen von weißen Lindwürmern. Offenbar haben nur einige der Lindwürmer diese Krallen, so dass ich wohl ein wenig jagen muss, um sie zu finden." + }, + { + "progress": 20, + "logText": "Ich habe Herec 5 Krallen von weißen Lindwürmern gebracht." + }, + { + "progress": 30, + "logText": "Herec hat einen Trank für die Wiederherstellung der Ausdauer hergestellt. Dieser wird sehr hilfreich sein, wenn ich wieder einmal gegen die Lindwürmer kämpfen muss.", + "rewardExperience": 1500, + "finishesQuest": 1 + } + ] + }, + { + "id": "bjorgur_grave", + "name": "Aus dem Schlummer erwacht", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Bjorgur aus Prim am Fuße der Berge von Blackwater denkt, dass irgendetwas die Grabruhe seiner Eltern gestört hat. Das Grab liegt südwestlich von Prim, beim Eingang zur Ulmenmine." + }, + { + "progress": 15, + "logText": "Bjorgur hat mich beauftrag, das Grab seiner Eltern zu überprüfen und sicherzustellen, dass der Erbdolch seiner Familie immer noch sicher in der Gruft liegt." + }, + { + "progress": 20, + "logText": "Fulus aus Prim ist daran interessiert, den Dolch aus Bjorgur's Familienbesitz zu bekommen, der früher Bjorgur's Großvater gehörte." + }, + { + "progress": 30, + "logText": "Ich traf einen Mann in den unteren Ebenen einer Gruft südwestlich von Prim. Er trug einen außergewöhnlichen Dolch bei sich. Er muss ihn aus dem Grab geraubt haben." + }, + { + "progress": 40, + "logText": "Ich habe den Dolch an seinen Platz in der Gruft zurückgelegt. Die rastlosen Untoten scheinen nun seltsamerweise ein wenig ruhiger zu sein.", + "rewardExperience": 200 + }, + { + "progress": 50, + "logText": "Bjorgur dankte mir für meine Hilfe. Er meinte, ich solle auch seine Verwandten in Feygard besuchen.", + "rewardExperience": 1100, + "finishesQuest": 1 + }, + { + "progress": 51, + "logText": "Ich habe Fulus erzählt, dass ich für Bjorgur den Familiendolch wieder an seinen angestammten Platz zurückgebracht habe." + }, + { + "progress": 60, + "logText": "Ich habe Fulus Bjorgur's Familiendolch gegeben. Er dankte mir und belohnte mich entsprechend.", + "rewardExperience": 1700, + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw-fr/actorconditions_v069.json b/AndorsTrail/res/raw-fr/actorconditions_v069.json new file mode 100644 index 000000000..80226e282 --- /dev/null +++ b/AndorsTrail/res/raw-fr/actorconditions_v069.json @@ -0,0 +1,52 @@ +[ + { + "id": "bless", + "iconID": "actorconditions_1:41", + "name": "Bénédiction", + "category": 0, + "isPositive": 1, + "abilityEffect": { + "increaseAttackChance": 5 + } + }, + { + "id": "poison_weak", + "iconID": "actorconditions_1:60", + "name": "Poison d'affaiblissement", + "category": 3, + "roundEffect": { + "visualEffectID": 2, + "increaseCurrentHP": { + "min": -1, + "max": -1 + } + } + }, + { + "id": "str", + "iconID": "actorconditions_1:70", + "name": "Force", + "category": 2, + "isPositive": 1, + "abilityEffect": { + "increaseAttackDamage": { + "min": 2, + "max": 2 + } + } + }, + { + "id": "regen", + "iconID": "actorconditions_1:35", + "name": "Régénération", + "category": 0, + "isPositive": 1, + "roundEffect": { + "visualEffectID": 1, + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + } +] diff --git a/AndorsTrail/res/raw-fr/actorconditions_v069_bwm.json b/AndorsTrail/res/raw-fr/actorconditions_v069_bwm.json new file mode 100644 index 000000000..3e42830e8 --- /dev/null +++ b/AndorsTrail/res/raw-fr/actorconditions_v069_bwm.json @@ -0,0 +1,101 @@ +[ + { + "id": "speed_minor", + "iconID": "actorconditions_1:87", + "name": "Rapidité mineure", + "category": 2, + "isPositive": 1, + "abilityEffect": { + "increaseMaxAP": 2 + } + }, + { + "id": "fatigue_minor", + "iconID": "actorconditions_1:14", + "name": "Fatigue mineure", + "category": 2, + "abilityEffect": { + "increaseMoveCost": 2, + "increaseAttackCost": 2, + "increaseAttackDamage": { + "min": -1, + "max": -1 + } + } + }, + { + "id": "feebleness_minor", + "iconID": "actorconditions_1:74", + "name": "Maladresse mineure au combat", + "category": 1, + "abilityEffect": { + "increaseAttackDamage": { + "min": -3, + "max": -3 + } + } + }, + { + "id": "bleeding_wound", + "iconID": "actorconditions_2:0", + "name": "Blessure saignante", + "category": 3, + "isStacking": 1, + "roundEffect": { + "visualEffectID": 0, + "increaseCurrentHP": { + "min": -1, + "max": -1 + } + } + }, + { + "id": "rage_minor", + "iconID": "actorconditions_1:90", + "name": "Rage de folie furieuse mineure", + "category": 1, + "isPositive": 1, + "abilityEffect": { + "increaseMaxHP": 35, + "increaseAttackChance": 60, + "increaseBlockChance": -90, + "increaseDamageResistance": -1 + } + }, + { + "id": "blackwater_misery", + "iconID": "actorconditions_1:58", + "name": "Abattement de Blackwater", + "category": 3, + "abilityEffect": { + "increaseAttackCost": 1, + "increaseAttackChance": -50, + "increaseCriticalSkill": -50 + } + }, + { + "id": "intoxicated", + "iconID": "actorconditions_2:1", + "name": "Intoxication", + "category": 1, + "isPositive": 1, + "abilityEffect": { + "increaseMaxHP": 15, + "increaseAttackCost": 1, + "increaseAttackChance": -30, + "increaseAttackDamage": { + "min": 4, + "max": 4 + } + } + }, + { + "id": "dazed", + "iconID": "actorconditions_1:65", + "name": "Hébétude", + "category": 1, + "abilityEffect": { + "increaseBlockChance": -40 + } + } +] diff --git a/AndorsTrail/res/raw-fr/conversationlist_crossglen.json b/AndorsTrail/res/raw-fr/conversationlist_crossglen.json new file mode 100644 index 000000000..bec460254 --- /dev/null +++ b/AndorsTrail/res/raw-fr/conversationlist_crossglen.json @@ -0,0 +1,140 @@ +[ + { + "id": "audir1", + "message": "Bienvenue dans mon échope !\n\nVeuillez prendre la peine de regarder tous mes articles.", + "replies": [ + { + "text": "Montrez-moi vos articles s'il vous plaît.", + "nextPhraseID": "S" + } + ] + }, + { + "id": "arambold1", + "message": "Nom d'un chien, pourrais-je jamais dormir avec des ivrognes qui chantent ainsi ?\n\nQuelqu'un devrait s'en occuper.", + "replies": [ + { + "text": "Puis-je me reposer ici ?", + "nextPhraseID": "arambold2" + }, + { + "text": "Avez-vous quelque chose à marchander ?", + "nextPhraseID": "S" + } + ] + }, + { + "id": "arambold2", + "message": "Bien sûr gamin,tu peux te reposer ici.\n\nPrends le lit que tu veux.", + "replies": [ + { + "text": "Merci, au revoir", + "nextPhraseID": "X" + } + ] + }, + { + "id": "drunk1", + "message": "Et glou, et glou, et glou, buvons encore !\nBois, bois, bois jusqu'à ce que tu roules par terre.\n\nHé gamin, tu veux te joindre à nous ?", + "replies": [ + { + "text": "Non, merci.", + "nextPhraseID": "X" + }, + { + "text": "Peut-être un autre jour.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "mara_default", + "message": "Ne t'occupe pas de ces ivrognes, ils sont toujours là à causer du désordre.\n\nTu veux manger quelque chose ?", + "replies": [ + { + "text": "As-tu quelque chose à marchander ?", + "nextPhraseID": "S" + } + ] + }, + { + "id": "mara1", + "replies": [ + { + "nextPhraseID": "mara_thanks", + "requires": { + "progress": "odair:100" + } + }, + { + "nextPhraseID": "mara_default" + } + ] + }, + { + "id": "mara_thanks", + "message": "J'ai appris que tu avais aidé Odair à débarasser la vielle réserve. Merci beaucoup, nous allons pouvoir nous en servir à nouveau.", + "replies": [ + { + "text": "C'était avec plaisir.", + "nextPhraseID": "mara_default" + } + ] + }, + { + "id": "farm1", + "message": "Laisse-moi tranquille, j'ai du boulot.", + "replies": [ + { + "text": "As-tu vu mon frère Andor ?", + "nextPhraseID": "farm_andor" + } + ] + }, + { + "id": "farm2", + "message": "Quoi ? Tu ne vois pas que je suis occupé ? Vas embêter quelqu'un d'autre !", + "replies": [ + { + "text": "As-tu vu mon frère Andor ?", + "nextPhraseID": "farm_andor" + } + ] + }, + { + "id": "farm_andor", + "message": "Andor ? Non, je ne l'ai pas vu récemment" + }, + { + "id": "snakemaster", + "message": "Bien, bien, qui voilà donc ? Un visiteur, comme c'est gentil. Je suis impressionné que tu sois parvenu ici à travers tous mes adorateurs.\n\nPrépare-toi à mourir, pitoyable créature.", + "replies": [ + { + "text": "Bien, j'attendais un beau combat !", + "nextPhraseID": "F" + }, + { + "text": "Voyons qui de nous deux périra.", + "nextPhraseID": "F" + }, + { + "text": "Pitié, ne me faites pas de mal !", + "nextPhraseID": "F" + } + ] + }, + { + "id": "haunt", + "message": "Oh mortel, délivre-moi de ce monde maudit !", + "replies": [ + { + "text": "Oh, Je vais vous libérer de ce pas.", + "nextPhraseID": "F" + }, + { + "text": "Vous voulez dire en vous tuant ?", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-fr/conversationlist_crossglen_gruil.json b/AndorsTrail/res/raw-fr/conversationlist_crossglen_gruil.json new file mode 100644 index 000000000..a06be1724 --- /dev/null +++ b/AndorsTrail/res/raw-fr/conversationlist_crossglen_gruil.json @@ -0,0 +1,118 @@ +[ + { + "id": "gruil1", + "message": "Psst, hé tu veux j'ai des trucs qui peuvent t'intéresser ?", + "replies": [ + { + "text": "Bien sûr, marchandons.", + "nextPhraseID": "S" + }, + { + "text": "J'ai appris que tu avais parlé avec mon frère il y a quelques temps.", + "nextPhraseID": "gruil_select", + "requires": { + "progress": "andor:10" + } + } + ] + }, + { + "id": "gruil_select", + "replies": [ + { + "nextPhraseID": "gruil_return", + "requires": { + "progress": "andor:30" + } + }, + { + "nextPhraseID": "gruil2" + } + ] + }, + { + "id": "gruil2", + "message": "Ton frère ? Ah, tu veux parler d'Andor ? J'ai peut-être quelques informations, mais je ne te les donnerais pas pour rien. Rapporte-moi une glande à venin de l'un de ces serpents venimeux et peut-être que je parlerais.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 20 + } + ], + "replies": [ + { + "text": "Voici une glande à venin pour toi.", + "nextPhraseID": "gruil_complete", + "requires": { + "item": { + "itemID": "gland", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "D'accord, j'en rapporterais une.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "gruil_complete", + "message": "Merci beaucoup gamin. C'est parfait.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "gruil_andor1" + } + ] + }, + { + "id": "gruil_return", + "message": "Écoute gamin, je t'ai déjà tout dit.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gruil_andor1" + } + ] + }, + { + "id": "gruil_andor1", + "message": "Je lui ai parlé hier. Il m'a demandé si je connaissais un certain Umar ou quelque chose de ce genre. Je n'ai aucune idée de qui il parlait.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gruil_andor2" + } + ] + }, + { + "id": "gruil_andor2", + "message": "Il paraissait vraiment en colère et est parti en trombes. Un truc à propos de la guilde des voleurs de Fallhaven.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gruil_andor3" + } + ] + }, + { + "id": "gruil_andor3", + "message": "C'est tout ce que je sais. Tu devrais aller demander du côté de Fallhaven. Demande à mon ami Gaela, il en sait certainement plus.", + "replies": [ + { + "text": "Merci, au revoir.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-fr/conversationlist_crossglen_leonid.json b/AndorsTrail/res/raw-fr/conversationlist_crossglen_leonid.json new file mode 100644 index 000000000..1b3bba254 --- /dev/null +++ b/AndorsTrail/res/raw-fr/conversationlist_crossglen_leonid.json @@ -0,0 +1,201 @@ +[ + { + "id": "leonid1", + "message": "Bonjour gamin, tu es le fils de Mikhail, non ? Et tu as un frère aussi.\n\nJe suis Leonid, le régent du village de Crossglen.", + "replies": [ + { + "text": "Avez-vous vu mon frère Andor ?", + "nextPhraseID": "leonid_andor" + }, + { + "text": "Que pouvez-vous me dire à propos de Crossglen ?", + "nextPhraseID": "leonid_crossglen" + }, + { + "text": "Cela ne fait rien, à plus tard.", + "nextPhraseID": "leonid_bye" + } + ] + }, + { + "id": "leonid_andor", + "message": "Ton frère ? Non, je ne l'ai pas vu de la journée. Je crois que je l'ai vu ici hier discutant avec Gruil. Peut-être en sait-il plus ?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 10 + } + ], + "replies": [ + { + "text": "Merci, je vais aller parler à Gruil. Je voulais vous demander autre chose.", + "nextPhraseID": "leonid_continue" + }, + { + "text": "Merci, je vais aller parler à Gruil.", + "nextPhraseID": "leonid_bye" + } + ] + }, + { + "id": "leonid_continue", + "message": "Puis-je t'aider à quelque chose ?", + "replies": [ + { + "text": "Avez-vous vu mon frère Andor ?", + "nextPhraseID": "leonid_andor" + }, + { + "text": "Que pouvez-vous me dire à propos de Crossglen ?", + "nextPhraseID": "leonid_crossglen" + }, + { + "text": "Cela ne fait rien, à plus tard.", + "nextPhraseID": "leonid_bye" + } + ] + }, + { + "id": "leonid_crossglen", + "message": "Comme tu le sais, nous sommes ici au village de Crossglen. C'est avant tout une communauté agricole.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen1" + } + ] + }, + { + "id": "leonid_crossglen1", + "message": "Nous avons Audir et sa forge au Sud-Ouest, la cabane de Leta et de son mari à l'Ouest, la halle du village ici et la cabane de ton père au Nord-Ouest.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen2" + } + ] + }, + { + "id": "leonid_crossglen2", + "message": "C'est à peu près tout. Nous essayons de vivre en paix.", + "replies": [ + { + "text": "Y a-t-il eu quelque évènement récent au village ?", + "nextPhraseID": "leonid_crossglen3" + }, + { + "text": "Revenons-en à ce dont nous parlions plus tôt.", + "nextPhraseID": "leonid_continue" + } + ] + }, + { + "id": "leonid_crossglen3", + "message": "Tu as pu remarquer quelques troubles il y a de cela quelques semaines. Certains villageois ce sont battus à propos d'un nouveau décret du seigneur Geomyr.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen4" + } + ] + }, + { + "id": "leonid_crossglen4", + "message": "Le seigneur Geomyr a promulgé l'interdiction de la potion d'os comme médicament. Certains villageois voulaient que nous nous opposions aux règles du seigneur Geomyr et que nous continuions à l'utiliser", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen4_1" + } + ] + }, + { + "id": "leonid_crossglen4_1", + "message": "Tharal, notre prêtre, était particulièrement en colère et suggérait que nous fassions quelque chose au sujet du seigner Geomyr.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen5" + } + ] + }, + { + "id": "leonid_crossglen5", + "message": "D'autres villageois pensaient que nous devions obéir au décret du seigneur Geomyr.\n\nPersonnellement, je ne me suis pas encore décidé.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen6" + } + ] + }, + { + "id": "leonid_crossglen6", + "message": "D'un côté, le seigneur Geomyr aide le village en lui apportant sa protection. *il pointe les soldats dans la halle*", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen7" + } + ] + }, + { + "id": "leonid_crossglen7", + "message": "Mais d'un autre côté, les impôts et les nouvelles règles sur ce qui est interdit font vraiment du tort à Crossglen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen8" + } + ] + }, + { + "id": "leonid_crossglen8", + "message": "Quelqu'un devrait aller au château de Geomyr et plaider la cause de Crossglen auprès du régent.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "crossglen", + "value": 1 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen9" + } + ] + }, + { + "id": "leonid_crossglen9", + "message": "Pour le moment, nous avons banni toute utilisation de la potion d'os comme substance de soin.", + "replies": [ + { + "text": "Merci pour ces informations. Je voulais vous demander autre chose.", + "nextPhraseID": "leonid_continue" + }, + { + "text": "Merci pour ces informations. Au revoir.", + "nextPhraseID": "leonid_bye" + } + ] + }, + { + "id": "leonid_bye", + "message": "Que l'Ombre soit avec toi.", + "replies": [ + { + "text": "Que l'Ombre soit avec vous.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-fr/conversationlist_crossglen_leta.json b/AndorsTrail/res/raw-fr/conversationlist_crossglen_leta.json new file mode 100644 index 000000000..b73987936 --- /dev/null +++ b/AndorsTrail/res/raw-fr/conversationlist_crossglen_leta.json @@ -0,0 +1,110 @@ +[ + { + "id": "leta1", + "message": "Hé, c'est ma maison, sors de là !", + "replies": [ + { + "text": "Mais j'étais juste ...", + "nextPhraseID": "leta2" + }, + { + "text": "Que se passe-t-il avec votre mari Oromir ?", + "nextPhraseID": "leta_oromir_select" + } + ] + }, + { + "id": "leta2", + "message": "File, gamin, sors de ma maison !", + "replies": [ + { + "text": "Que se passe-t-il avec votre mari Oromir ?", + "nextPhraseID": "leta_oromir_select" + } + ] + }, + { + "id": "leta_oromir_select", + "replies": [ + { + "nextPhraseID": "leta_oromir_complete2", + "requires": { + "progress": "leta:100" + } + }, + { + "nextPhraseID": "leta_oromir1" + } + ] + }, + { + "id": "leta_oromir1", + "message": "Tu as appris quelque chose au sujet de mon mari ? Il devait m'aider à la ferme aujourd'hui, mais comme d'habitude il n'est pas là.\nPffff.", + "replies": [ + { + "text": "Je ne sais pas.", + "nextPhraseID": "leta_oromir2" + }, + { + "text": "Oui, je l'ai trouvé. Il se cache dans le bosquet à l'Est.", + "nextPhraseID": "leta_oromir_complete", + "requires": { + "progress": "leta:20" + } + } + ] + }, + { + "id": "leta_oromir2", + "message": "Si tu le vois, dis-lui de rappliquer vite et de m'aider à m'occuper de la maison.\nEt maintenant, file !", + "rewards": [ + { + "rewardType": 0, + "rewardID": "leta", + "value": 10 + } + ] + }, + { + "id": "leta_oromir_complete", + "message": "Il se cache ? Ce n'est pas étonnant. Je vais aller le chercher et lui montrer qui est le chef ici.\nMerci du renseignement.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "leta", + "value": 100 + } + ] + }, + { + "id": "leta_oromir_complete2", + "message": "Merci de m'avoir indiqué où se cachait Oromir tout à l'heure. Je vais aller le chercher dans une minute." + }, + { + "id": "oromir1", + "message": "Oh, tu m'as fait peur.\nBonjour.", + "replies": [ + { + "text": "Hello", + "nextPhraseID": "oromir2" + } + ] + }, + { + "id": "oromir2", + "message": "Je me cache ici à cause de mon épouse. Elle est toujours après moi parce que je ne l'aide pas assez à la ferme. S'il te plaît, ne lui dis pas que je suis ici.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "leta", + "value": 20 + } + ], + "replies": [ + { + "text": "Ok.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-fr/conversationlist_crossglen_odair.json b/AndorsTrail/res/raw-fr/conversationlist_crossglen_odair.json new file mode 100644 index 000000000..f1f48d5ed --- /dev/null +++ b/AndorsTrail/res/raw-fr/conversationlist_crossglen_odair.json @@ -0,0 +1,161 @@ +[ + { + "id": "odair1", + "message": "Ah, c'est toi. Tu es bien comme ton frère. Toujours à faire des histoires.", + "replies": [ + { + "text": "N", + "nextPhraseID": "odair_select" + } + ] + }, + { + "id": "odair_select", + "replies": [ + { + "nextPhraseID": "odair_complete2", + "requires": { + "progress": "odair:100" + } + }, + { + "nextPhraseID": "odair_continue", + "requires": { + "progress": "odair:10" + } + }, + { + "nextPhraseID": "odair2" + } + ] + }, + { + "id": "odair2", + "message": "Hmm, il y a peut-être quelque chose que tu pourrais faire pour moi. Penses-tu pouvoir m'aider à accomplir une petite tâche ?", + "replies": [ + { + "text": "Dis-m'en plus au sujet de cette tâche.", + "nextPhraseID": "odair3" + }, + { + "text": "Bien sûr, à condition que cela me rapporte quelque chose.", + "nextPhraseID": "odair3" + } + ] + }, + { + "id": "odair3", + "message": "Je suis allé récemment dans cette caverne *il pointe vers l'Ouest*, pour vérifier nos réserves. Apparemment, la caverne est infestée de rats.", + "replies": [ + { + "text": "N", + "nextPhraseID": "odair4" + } + ] + }, + { + "id": "odair4", + "message": "J'ai vu en particulier un rat qui était plus gros que les autres. Penses-tu être capable de les éliminer ?", + "replies": [ + { + "text": "Bien sûr, je t'aiderais pour que Crossglen puisse à nouveau utiliser la caverne comme réserve.", + "nextPhraseID": "odair5" + }, + { + "text": "Bien sûr, je vais t'aider. Mais c'est uniquement parce que je peux y gagner quelque chose.", + "nextPhraseID": "odair5" + }, + { + "text": "Non, désolé", + "nextPhraseID": "odair_cowards" + } + ] + }, + { + "id": "odair5", + "message": "Je voudrais que tu ailles dans cette caverne et que tu tues le gros rat, cela pourrait peut-être stopper l'infestation de la caverne et nous pourrions l'utiliser à nouveau comme réserve.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "odair", + "value": 10 + } + ], + "replies": [ + { + "text": "Ok", + "nextPhraseID": "X" + }, + { + "text": "À bien y réfléchir, je ne pense pas pouvoir t'aider.", + "nextPhraseID": "odair_cowards" + } + ] + }, + { + "id": "odair_cowards", + "message": "Je ne pensais pas que tu le ferais. Toi et ton frère avez toujours été des trouillards.", + "replies": [ + { + "text": "Bye", + "nextPhraseID": "X" + } + ] + }, + { + "id": "odair_continue", + "message": "As-tu tué le gros rat de la caverne à l'Ouest ?", + "replies": [ + { + "text": "Oui, j'ai tué le gros rat.", + "nextPhraseID": "odair_complete", + "requires": { + "item": { + "itemID": "tail_caverat", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Qu'est ce que j'étais supposé faire exactement ?", + "nextPhraseID": "odair5" + }, + { + "text": "Non, pas encore.", + "nextPhraseID": "odair_cowards" + } + ] + }, + { + "id": "odair_complete", + "message": "Merci beaucoup de ton aide gamin ! Peut-être que toi et ton frère n'êtes pas si trouillards que je le pensais finalement. Tiens, prends ces pièces pour ton aide.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "odair", + "value": 100 + }, + { + "rewardType": 1, + "rewardID": "gold20" + } + ], + "replies": [ + { + "text": "Merci", + "nextPhraseID": "X" + } + ] + }, + { + "id": "odair_complete2", + "message": "Merci beaucoup pour ton aide tout à l'heure. Nous allons désormais pouvoir utiliser à nouveau notre vieille caverne comme réserve.", + "replies": [ + { + "text": "Bye", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-fr/conversationlist_crossglen_tharal.json b/AndorsTrail/res/raw-fr/conversationlist_crossglen_tharal.json new file mode 100644 index 000000000..a5295a16a --- /dev/null +++ b/AndorsTrail/res/raw-fr/conversationlist_crossglen_tharal.json @@ -0,0 +1,138 @@ +[ + { + "id": "tharal1", + "message": "Marche dans la lueur de l'Ombre, mon enfant.", + "replies": [ + { + "text": "Avez-vous quelque chose à marchander ?", + "nextPhraseID": "S" + }, + { + "text": "Qu'en est-il de la potion d'os ?", + "nextPhraseID": "tharal_bonemeal_select", + "requires": { + "progress": "bonemeal:10" + } + } + ] + }, + { + "id": "tharal_bonemeal_select", + "replies": [ + { + "nextPhraseID": "tharal_bonemeal4", + "requires": { + "progress": "bonemeal:30" + } + }, + { + "nextPhraseID": "tharal_bonemeal1" + } + ] + }, + { + "id": "tharal_bonemeal1", + "message": "La potion d'os ? Nous ne devons pas parler de cela. Le seigneur Geomyr a publié un décret. Ce n'est plus autorisé.", + "replies": [ + { + "text": "S'il vous plaît ?", + "nextPhraseID": "tharal_bonemeal2_1" + } + ] + }, + { + "id": "tharal_bonemeal2_1", + "message": "Non, nous ne devrions vraiment pas en parler.", + "replies": [ + { + "text": "Oh, allez ...", + "nextPhraseID": "tharal_bonemeal2" + } + ] + }, + { + "id": "tharal_bonemeal2", + "message": "Bon, puisque tu insistes. Rapporte moi cinq ailes d'insectes que je pourrais utiliser pour concocter mes potions, et peut-être t'en dirais-je plus.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 20 + } + ], + "replies": [ + { + "text": "Voici les ailes d'insectes.", + "nextPhraseID": "tharal_bonemeal3", + "requires": { + "item": { + "itemID": "insectwing", + "quantity": 5, + "requireType": 0 + } + } + }, + { + "text": "Très bien, je vous les rapporterai.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "tharal_bonemeal3", + "message": "Merci mon petit. Je savais que je pouvais compter sur toi", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "tharal_bonemeal4" + } + ] + }, + { + "id": "tharal_bonemeal4", + "message": "Alors la potion d'os. Préparée avec les bons ingrédients, cela peut être l'un des soins les plus efficaces à notre disposition.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tharal_bonemeal5" + } + ] + }, + { + "id": "tharal_bonemeal5", + "message": "Nous en faisions grand usage auparavant. Mais maintenant, ce bâtard de seigneur Geomyr en a interdit toute utilisation.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tharal_bonemeal6" + } + ] + }, + { + "id": "tharal_bonemeal6", + "message": "Comment vais-je pouvoir soigner les gens maintenant ? En utilisant les potions classiques ? Bah, elles sont tellement inefficaces.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tharal_bonemeal7" + } + ] + }, + { + "id": "tharal_bonemeal7", + "message": "Je connais quelqu'un qui a toujours de la potion d'os disponible si tu cela t'intéresse. Va parler à Thoronir, un confrère prêtre à Fallhaven. Donne-lui le mot de passe « Lueur de l'Ombre ».", + "replies": [ + { + "text": "Merci, au revoir.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-fr/conversationlist_fallhaven.json b/AndorsTrail/res/raw-fr/conversationlist_fallhaven.json new file mode 100644 index 000000000..0054137ae --- /dev/null +++ b/AndorsTrail/res/raw-fr/conversationlist_fallhaven.json @@ -0,0 +1,206 @@ +[ + { + "id": "fallhaven_citizen1", + "message": "Bonjour vous. Beau temps, n'est-ce pas ?", + "replies": [ + { + "text": "Avez-vous vu mon frère Andor ?", + "nextPhraseID": "fallhaven_andor_1" + } + ] + }, + { + "id": "fallhaven_citizen2", + "message": "Bonjour. Vous désirez quelque chose ?", + "replies": [ + { + "text": "Avez-vous vu mon frère Andor ?", + "nextPhraseID": "fallhaven_andor_2" + } + ] + }, + { + "id": "fallhaven_citizen3", + "message": "Salut. Puis-je vous aider ?", + "replies": [ + { + "text": "Avez-vous vu mon frère Andor ?", + "nextPhraseID": "fallhaven_andor_3" + } + ] + }, + { + "id": "fallhaven_citizen4", + "message": "Vous êtes le gamin du village de Crossglen, non ?", + "replies": [ + { + "text": "Avez-vous vu mon frère Andor ?", + "nextPhraseID": "fallhaven_andor_4" + } + ] + }, + { + "id": "fallhaven_citizen5", + "message": "Hors de mon chemin paysan." + }, + { + "id": "fallhaven_citizen6", + "message": "Bonjour à vous.", + "replies": [ + { + "text": "Avez-vous vu mon frère Andor ?", + "nextPhraseID": "fallhaven_andor_6" + } + ] + }, + { + "id": "fallhaven_andor_1", + "message": "Non, désolé. Je n'ai vu personne qui corresponde à cette description." + }, + { + "id": "fallhaven_andor_2", + "message": "Un autre gamin dans votre genre vous dites ? Hmm, laissez-moi réfléchir.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_andor_1" + } + ] + }, + { + "id": "fallhaven_andor_3", + "message": "Hmm, J'ai peut-être vu quelqu'un ressemblant à cette description il y a quelques jours. Je ne me souviens pas où cependant." + }, + { + "id": "fallhaven_andor_4", + "message": "Ah oui, il y avait un autre jeune du village de Crossglen ici il y a quelques jours. Je ne suis pas sûr qu'il corresponde à votre description cependant.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_andor_4_1" + } + ] + }, + { + "id": "fallhaven_andor_4_1", + "message": "Il y avait des gens louches qui lui tournaient autour. Je n'ai rien vu de plus que cela." + }, + { + "id": "fallhaven_andor_6", + "message": "Non, je ne l'ai pas vu." + }, + { + "id": "fallhaven_guard", + "message": "Circulez." + }, + { + "id": "fallhaven_priest", + "message": "Que l'Ombre soit avec toi.", + "replies": [ + { + "text": "Pouvez-vous m'en dire plus au sujet de l'Ombre ?", + "nextPhraseID": "priest_shadow_1" + } + ] + }, + { + "id": "priest_shadow_1", + "message": "L'Ombre nous protège. Elle nous garde à l'abri du péril et nous réconforte lorsque nous dormons.", + "replies": [ + { + "text": "N", + "nextPhraseID": "priest_shadow_2" + } + ] + }, + { + "id": "priest_shadow_2", + "message": "Elle nous suit parout où nous allons. Va avec l'Ombre mon enfant.", + "replies": [ + { + "text": "Que l'Ombre soit avec vous.", + "nextPhraseID": "X" + }, + { + "text": "Qu'importe, au revoir.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "rigmor", + "message": "Tiens, bonjour toi ! N'es-tu pas un adorable petit bonhomme.", + "replies": [ + { + "text": "Avez-vous vu mon frère Andor ?", + "nextPhraseID": "rigmor_1" + }, + { + "text": "Je dois vraiment m'en aller.", + "nextPhraseID": "rigmor_leave_select" + } + ] + }, + { + "id": "rigmor_1", + "message": "Ton frère, dis-tu ? Son nom serait Andor ? Non, je ne me souviens pas avoir rencontré quelqu'un comme cela.", + "replies": [ + { + "text": "Je dois vraiment m'en aller.", + "nextPhraseID": "rigmor_leave_select" + } + ] + }, + { + "id": "rigmor_leave_select", + "replies": [ + { + "nextPhraseID": "rigmor_thanks", + "requires": { + "progress": "calomyran:100" + } + }, + { + "nextPhraseID": "X" + } + ] + }, + { + "id": "rigmor_thanks", + "message": "J'ai entendu dire que tu avais aidé mon vieux monsieur à retrouver son livre, merci. Il parle de ce livre depuis des semaines. C'est bien triste, il a tendance à tout oublier.", + "replies": [ + { + "text": "C'était avec plaisir. Au revoir.", + "nextPhraseID": "X" + }, + { + "text": "Vous devriez garder un œil sur lui, ou des choses graves pourraient lui arriver.", + "nextPhraseID": "X" + }, + { + "text": "Qu'importe, je ne l'ai fait que pour l'argent.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_clothes", + "message": "Bienvenue dans mon échoppe. Laissez-vous tenter par mon grand choix de vêtements fins et de bijoux.", + "replies": [ + { + "text": "Montrez-moi vos articles.", + "nextPhraseID": "S" + } + ] + }, + { + "id": "fallhaven_potions", + "message": "Bienvenue dans ma boutique. Voyez donc mes potions pour toutes les occasions.", + "replies": [ + { + "text": "Montrez-moi de quelles potions vous disposez.", + "nextPhraseID": "S" + } + ] + } +] diff --git a/AndorsTrail/res/raw-fr/conversationlist_fallhaven_arcir.json b/AndorsTrail/res/raw-fr/conversationlist_fallhaven_arcir.json new file mode 100644 index 000000000..5f947f884 --- /dev/null +++ b/AndorsTrail/res/raw-fr/conversationlist_fallhaven_arcir.json @@ -0,0 +1,153 @@ +[ + { + "id": "arcir_start", + "message": "Bonjour, je suis Arcir.", + "replies": [ + { + "text": "J'ai vu votre statue d'Elythara en bas.", + "nextPhraseID": "arcir_elythara_1", + "requires": { + "progress": "arcir:10" + } + }, + { + "text": "Vous semblez beaucoup aimer vos livres.", + "nextPhraseID": "arcir_books_1" + } + ] + }, + { + "id": "arcir_anythingelse", + "message": "Y a-t-il autre chose que vous vouliez savoir ?", + "replies": [ + { + "text": "J'ai vu votre statue d'Elythara en bas.", + "nextPhraseID": "arcir_elythara_1", + "requires": { + "progress": "arcir:10" + } + }, + { + "text": "Vous semblez beaucoup aimer vos livres.", + "nextPhraseID": "arcir_books_1" + } + ] + }, + { + "id": "arcir_elythara_1", + "message": "Oh, vous avez trouvé ma statue à la cave ?\n\nOui, Elythara me protège.", + "replies": [ + { + "text": "Okay.", + "nextPhraseID": "arcir_anythingelse" + } + ] + }, + { + "id": "arcir_books_1", + "message": "Je trouve beaucoup de plaisir dans mes livres. Ils contiennent le savoir accumulé depuis les générations passées.", + "replies": [ + { + "text": "Auriez-vous un livre intitulé « les secrets de Calomyran » ?", + "nextPhraseID": "arcir_calomyran_select", + "requires": { + "progress": "calomyran:10" + } + }, + { + "text": "D'accord.", + "nextPhraseID": "arcir_anythingelse" + } + ] + }, + { + "id": "arcir_calomyran_1", + "message": "« les secrets de Calomyran » ? Hmm, oui, je dois en avoir un exemplaire à la cave.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_calomyran_2" + } + ] + }, + { + "id": "arcir_calomyran_2", + "message": "Le vieux Benradas est venu ici la semaine dernière, il voulait me vendre ce livre. Comme ce n'est pas vraiment mon style de livre, j'ai décliné son offre.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_calomyran_3" + } + ] + }, + { + "id": "arcir_calomyran_3", + "message": "Il était très en colère que je n'apprécie pas son livre et il me l'a jeté en se ruant hors de la maison.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_calomyran_4" + } + ] + }, + { + "id": "arcir_calomyran_4", + "message": "Pauvre vieux Benradas, il a probablement oublié qu'il l'avait laissé ici. Il a tendance à tout oublier.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_anythingelse" + } + ] + }, + { + "id": "arcir_calomyran_5", + "message": "Vous êtes allé en bas et vous ne l'avez pas trouvé ? Et il y avait une note dites-vous ? J'imagine que quelqu'un est entré chez moi.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_calomyran_6" + } + ] + }, + { + "id": "arcir_calomyran_select", + "replies": [ + { + "nextPhraseID": "arcir_calomyran_complete", + "requires": { + "progress": "calomyran:100" + } + }, + { + "nextPhraseID": "arcir_calomyran_5", + "requires": { + "progress": "calomyran:20" + } + }, + { + "nextPhraseID": "arcir_calomyran_1" + } + ] + }, + { + "id": "arcir_calomyran_complete", + "message": "J'ai entendu dire que vous aviez retrouvé le livre et l'aviez rendu au vieux Benradas. Merci. Il a tendance à tout oublier.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_anythingelse" + } + ] + }, + { + "id": "arcir_calomyran_6", + "message": "Que disait la note ?\n\nLarcal ... Je le connais. Toujours à faire des problèmes. Il est souvent dans la grange à l'Est d'ici.", + "replies": [ + { + "text": "Merci, au revoir.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-fr/conversationlist_fallhaven_athamyr.json b/AndorsTrail/res/raw-fr/conversationlist_fallhaven_athamyr.json new file mode 100644 index 000000000..9cecb08d9 --- /dev/null +++ b/AndorsTrail/res/raw-fr/conversationlist_fallhaven_athamyr.json @@ -0,0 +1,115 @@ +[ + { + "id": "athamyr", + "message": "Marche avec l'Ombre.", + "replies": [ + { + "text": "Êtes-vous descendu dans les catacombes ?", + "nextPhraseID": "athamyr_select", + "requires": { + "progress": "bucus:20" + } + } + ] + }, + { + "id": "athamyr_1", + "message": "Oui, je suis déjà allé dans les catacombes sous l'église de Fallhaven.", + "replies": [ + { + "text": "N", + "nextPhraseID": "athamyr_2" + } + ] + }, + { + "id": "athamyr_2", + "message": "Mais je suis le seul à avoir à la fois l'autorisation et la bravoure pour y descendre.", + "replies": [ + { + "text": "Comment puis-je obtenir la permission d'y descendre également ?", + "nextPhraseID": "athamyr_3" + } + ] + }, + { + "id": "athamyr_3", + "message": "Tu veux descendre dans les catacombes ? Hmm, on pourrait peut-être s'arranger.", + "replies": [ + { + "text": "N", + "nextPhraseID": "athamyr_4" + } + ] + }, + { + "id": "athamyr_4", + "message": "Apporte-moi l'un de ces délicieux plats de viande préparée de la taverne, et je te donnerais l'autorisation d'entrer dans les catacombes de l'église de Fallhaven.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 30 + } + ], + "replies": [ + { + "text": "Voici la viande préparée.", + "nextPhraseID": "athamyr_complete", + "requires": { + "item": { + "itemID": "meat_cooked", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Très bien, je vais vous en ramener.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "athamyr_complete_2", + "message": "Tu as ma permission d'entrer dans les catacombes de l'église de Fallhaven.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 50 + } + ] + }, + { + "id": "athamyr_select", + "replies": [ + { + "nextPhraseID": "athamyr_complete_2", + "requires": { + "progress": "bucus:40" + } + }, + { + "nextPhraseID": "athamyr_1" + } + ] + }, + { + "id": "athamyr_complete", + "message": "Merci,cela ira très bien.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "athamyr_complete_2" + } + ] + } +] diff --git a/AndorsTrail/res/raw-fr/conversationlist_fallhaven_bucus.json b/AndorsTrail/res/raw-fr/conversationlist_fallhaven_bucus.json new file mode 100644 index 000000000..50575f144 --- /dev/null +++ b/AndorsTrail/res/raw-fr/conversationlist_fallhaven_bucus.json @@ -0,0 +1,236 @@ +[ + { + "id": "bucus_welcome", + "message": "Re-bonjour, bon retour à la ... Oh, excusez-moi, je vous ai pris pour quelqu'un d'autre.", + "replies": [ + { + "text": "Avez-vous vu mon frère Andor ?", + "nextPhraseID": "bucus_andor_select" + }, + { + "text": "Que savez-vous de la guilde des voleurs ?", + "nextPhraseID": "bucus_thieves_select" + } + ] + }, + { + "id": "bucus_andor_select", + "replies": [ + { + "nextPhraseID": "bucus_umar_1", + "requires": { + "progress": "bucus:100" + } + }, + { + "nextPhraseID": "bucus_andor_no_1" + } + ] + }, + { + "id": "bucus_andor_no_1", + "message": "Comme c'est intéressant que tu me poses cette question. Et si je l'avais vu ? Pourquoi devrais-je te le dire ?", + "replies": [ + { + "text": "N", + "nextPhraseID": "bucus_andor_no_2" + } + ] + }, + { + "id": "bucus_andor_no_2", + "message": "Non, je n'ai rien à dire. Maintenant, vas t'en." + }, + { + "id": "bucus_thieves_select", + "replies": [ + { + "nextPhraseID": "bucus_thieves_complete_3", + "requires": { + "progress": "bucus:100" + } + }, + { + "nextPhraseID": "bucus_thieves_continue", + "requires": { + "progress": "bucus:10" + } + }, + { + "nextPhraseID": "bucus_thieves_select2" + } + ] + }, + { + "id": "bucus_thieves_select2", + "replies": [ + { + "nextPhraseID": "bucus_thieves_1", + "requires": { + "progress": "andor:40" + } + }, + { + "nextPhraseID": "bucus_thieves_no" + } + ] + }, + { + "id": "bucus_thieves_no", + "message": "Qu, quoi ? Non, je ne sais rien de tout cela." + }, + { + "id": "bucus_umar_1", + "message": "C'est bon gamin. Tu as fait tes preuves. Oui, j'ai vu un autre gamin ressemblant à cela se baladant dans les environs il y a quelques jours.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bucus_umar_2" + } + ] + }, + { + "id": "bucus_umar_2", + "message": "Je ne sais pas ce qu'il cherchait cependant. Il n'arrêtait pas de poser des questions à tout bout de champ. Un peu comme toi. *rire sarcastique*", + "replies": [ + { + "text": "N", + "nextPhraseID": "bucus_umar_3" + } + ] + }, + { + "id": "bucus_umar_3", + "message": "De toute façon, c'est tout ce que je sais. Tu devrais aller en parler avec Umar, il en sait sûrement plus. En bas de cette trappe par là.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 50 + } + ], + "replies": [ + { + "text": "Ok, bye", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bucus_thieves_1", + "message": "Qui t'as dit ça ? Argh\n\nD'accord, tu nous as trouvés. Et maintenant ?", + "replies": [ + { + "text": "Puis-je rejoindre la guilde des voleurs ?", + "nextPhraseID": "bucus_thieves_2" + } + ] + }, + { + "id": "bucus_thieves_2", + "message": "Ha ! Rejoindre la guilde des voleurs ?! Toi ?!\n\nTu es un gamin marrant.", + "replies": [ + { + "text": "Je suis sérieux.", + "nextPhraseID": "bucus_thieves_3" + }, + { + "text": "Oui, un vrai boute-en-train, pas vrai ?", + "nextPhraseID": "bucus_thieves_3" + } + ] + }, + { + "id": "bucus_thieves_3", + "message": "D'accord, je vais te dire gamin. Rends-moi un service et je pourrais peut-être envisager te donner quelques renseignements supplémentaires.", + "replies": [ + { + "text": "De quel genre de service parlons-nous ?", + "nextPhraseID": "bucus_thieves_4" + }, + { + "text": "Tant qu'il y a quelque butin à la clef, ça me va !", + "nextPhraseID": "bucus_thieves_4" + } + ] + }, + { + "id": "bucus_thieves_4", + "message": "Ramène-moi la clef de Luthor et nous pourrons parler un peu plus. Je ne sais rien sur la clef elle-même, mais la rumeur dit qu'elle est quelque part dans les catacombes sous l'église de Fallhaven.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 10 + } + ], + "replies": [ + { + "text": "Ok, cela semble assez facile.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bucus_thieves_continue", + "message": "Alors, où en es-tu de ta quête de la clef de Luthor ?", + "replies": [ + { + "text": "Qu'est-ce que j'étais supposé faire, déjà ?", + "nextPhraseID": "bucus_thieves_4" + }, + { + "text": "La voici, la clef de Luthor.", + "nextPhraseID": "bucus_thieves_complete_1", + "requires": { + "item": { + "itemID": "key_luthor", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Je suis toujours à sa recherche. Au revoir.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bucus_thieves_complete_1", + "message": "Mince, tu as réellement récupéré la clef de Luthor ? Je ne pensais pas que tu y arriverais.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 100 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "bucus_thieves_complete_2" + } + ] + }, + { + "id": "bucus_thieves_complete_2", + "message": "Bravo gamin.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bucus_thieves_complete_3" + } + ] + }, + { + "id": "bucus_thieves_complete_3", + "message": "Bon, causons. Que veux-tu savoir ?", + "replies": [ + { + "text": "Que savez-vous de mon frère Andor ?", + "nextPhraseID": "bucus_umar_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw-fr/conversationlist_fallhaven_church.json b/AndorsTrail/res/raw-fr/conversationlist_fallhaven_church.json new file mode 100644 index 000000000..fc98995a6 --- /dev/null +++ b/AndorsTrail/res/raw-fr/conversationlist_fallhaven_church.json @@ -0,0 +1,265 @@ +[ + { + "id": "chapelgoer", + "message": "Ombre, étreins-moi." + }, + { + "id": "thoronir_default", + "message": "Trouve la paix dans l'Ombre, mon enfant.", + "replies": [ + { + "text": "Que pouvez-vous me dire au sujet de l'Ombre ?", + "nextPhraseID": "thoronir_shadow_1" + }, + { + "text": "Pouvez-vous me parler un peu plus de l'église ?", + "nextPhraseID": "thoronir_church_1" + }, + { + "text": "Les potions d'os sont-elles prêtes ?", + "nextPhraseID": "thoronir_trade_bonemeal", + "requires": { + "progress": "bonemeal:100" + } + } + ] + }, + { + "id": "thoronir_shadow_1", + "message": "L'Ombre nous protège des dangers de la nuit. Elle nous garde à l'abri et nous réconforte lorsque nous dormons.", + "replies": [ + { + "text": "Tharal m'a envoyé et m'a dit de vous donner le mot de passe « lueur de l'Ombre ».", + "nextPhraseID": "thoronir_tharal_select", + "requires": { + "progress": "bonemeal:30" + } + }, + { + "text": "Que l'Ombre soit avec vous.", + "nextPhraseID": "thoronir_default" + }, + { + "text": "Cela ne veut rien dire pour moi.", + "nextPhraseID": "thoronir_default" + } + ] + }, + { + "id": "thoronir_church_1", + "message": "C'est notre chapelle de piété à Fallhaven. Notre communauté compte sur nous pour les aider.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thoronir_church_2" + } + ] + }, + { + "id": "thoronir_church_2", + "message": "Cette église se dresse depuis des centaines d'années ; elle nous a protégé des pilleurs de tombes.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thoronir_church_3" + } + ] + }, + { + "id": "thoronir_tharal_select", + "replies": [ + { + "nextPhraseID": "thoronir_trade_bonemeal", + "requires": { + "progress": "bonemeal:100" + } + }, + { + "nextPhraseID": "thoronir_tharal_1" + } + ] + }, + { + "id": "thoronir_tharal_1", + "message": "Lueur de l'Ombre, mon enfant. Ainsi c'est mon vieil ami Tharal du village de Crossglen qui t'a envoyé ?", + "replies": [ + { + "text": "Que pouvez-vous m'apprendre sur la potion d'os ?", + "nextPhraseID": "thoronir_tharal_2" + } + ] + }, + { + "id": "thoronir_church_3", + "message": "Les catacombes sous l'église sont le lieu où se trouvent les restes de nos anciens seigneurs. On dit que notre grand roi Luthor serait enseveli ici.", + "replies": [ + { + "text": "Quelqu'un est-il déjà entré dans ces catacombes ?", + "nextPhraseID": "thoronir_church_4", + "requires": { + "progress": "bucus:10" + } + }, + { + "text": "Je voulais vous dire autre chose.", + "nextPhraseID": "thoronir_default" + } + ] + }, + { + "id": "thoronir_church_4", + "message": "Personne n'a le droit de descendre dans les catacombes hormis Athamyr, mon apprenti. Il est le seul à s'y être rendu depuis des années.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 20 + } + ], + "replies": [ + { + "text": "D'accord, je vais aller le voir.", + "nextPhraseID": "thoronir_default" + } + ] + }, + { + "id": "thoronir_tharal_2", + "message": "Chut, il ne faut pas parler aussi fort de la potion d'os. Comme tu le sais, le seigneur Geomyr à interdit tout usage de la potion d'os.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thoronir_tharal_3" + } + ] + }, + { + "id": "thoronir_tharal_3", + "message": "Quand l'interdiction a été prononcée, je n'ai pas osé en garder et j'ai jeté tout ce que j'avais. Lorsque j'y repense, je crois que c'était un geste inconsidéré.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thoronir_tharal_4" + } + ] + }, + { + "id": "thoronir_tharal_4", + "message": "Penses-tu pouvoir me trouver 5 os de squelettes que je pourrais utiliser pour concocter à nouveau de la potion d'os ? La potion d'os est très efficace pour soigner les vieilles blessures.", + "replies": [ + { + "text": "Bien sûr, je devrais pouvoir faire cela.", + "nextPhraseID": "thoronir_tharal_5" + }, + { + "text": "J'ai ramené ces os pour vous.", + "nextPhraseID": "thoronir_tharal_complete", + "requires": { + "item": { + "itemID": "bone", + "quantity": 5, + "requireType": 0 + } + } + } + ] + }, + { + "id": "thoronir_tharal_5", + "message": "Merci, reviens bientôt. J'ai entendu dire qu'il y avait quelques morts-vivants du côté d'une vieille maison abandonnée au Nord de Fallhaven. Peut-être pourrais-tu trouver des os par là bas ?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 40 + } + ], + "replies": [ + { + "text": "D'accord, je vais aller cherchez de ce côté.", + "nextPhraseID": "thoronir_default" + } + ] + }, + { + "id": "thoronir_tharal_complete", + "message": "Merci, ces os seront parfaits. Je peux maintenant concocter à nouveau de la potion d'os pour te soigner.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 100 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "thoronir_complete_2" + } + ] + }, + { + "id": "thoronir_complete_2", + "message": "Laisse-moi un peu de temps pour concocter des potions d'os. Ce sont des potions de soins très efficaces. Reviens dans quelques temps." + }, + { + "id": "thoronir_trade_bonemeal", + "message": "Oui, les potions d'os sont prêtes. Utilises-les avec précaution, et ne te fais pas prendre par les gardes. Nous n'avons plus le droit de les utiliser.", + "replies": [ + { + "text": "Montrez-moi les potions que vous avez déjà faites.", + "nextPhraseID": "S" + }, + { + "text": "Je voulais vous parler d'autre chose.", + "nextPhraseID": "thoronir_default" + } + ] + }, + { + "id": "catacombguard", + "message": "Retourne sur tes pas tant que tu le peux encore, mortel. Cet endroit n'est pas pour toi. Seule la mort t'attend ici.", + "replies": [ + { + "text": "Très bien. Je repars.", + "nextPhraseID": "X" + }, + { + "text": "Poussez-vous, je dois descendre plus bas dans les catacombes.", + "nextPhraseID": "catacombguard1" + }, + { + "text": "Par l'Ombre, tu ne m'arrêteras pas.", + "nextPhraseID": "catacombguard1" + } + ] + }, + { + "id": "catacombguard1", + "message": "Nooooonn, tu ne passeras pas !", + "replies": [ + { + "text": "Très bien, en garde.", + "nextPhraseID": "F" + } + ] + }, + { + "id": "luthor", + "message": "*hissss* Quel mortel trouble mon repos ?", + "replies": [ + { + "text": "Par l'Ombre, qu'êtes-vous ?", + "nextPhraseID": "F" + }, + { + "text": "Enfin un combat qui en vaut la peine ! Je l'attendais.", + "nextPhraseID": "F" + }, + { + "text": "Qu'importe, finissons cette tâche.", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-fr/conversationlist_fallhaven_drunk.json b/AndorsTrail/res/raw-fr/conversationlist_fallhaven_drunk.json new file mode 100644 index 000000000..34ff2a544 --- /dev/null +++ b/AndorsTrail/res/raw-fr/conversationlist_fallhaven_drunk.json @@ -0,0 +1,219 @@ +[ + { + "id": "fallhaven_drunk", + "message": "Pas de problème. Non m'sieuuuuuur ! Plus faire d'ennui maintenant. Je reste assis dehors maintenant.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_2" + } + ] + }, + { + "id": "fallhaven_drunk_2", + "message": "Attends, qui t'es toi ? C'est toi le garde ?", + "replies": [ + { + "text": "Oui", + "nextPhraseID": "fallhaven_drunk_3_1" + }, + { + "text": "Non", + "nextPhraseID": "fallhaven_drunk_3_2" + } + ] + }, + { + "id": "fallhaven_drunk_3_1", + "message": "Oh, monsieur. Tu vois, j'fais plus de problème maintenant. Je reste assis comme tu l'as dit maintenant, c'est bon ?", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_4" + } + ] + }, + { + "id": "fallhaven_drunk_3_2", + "message": "Ah, bien. Ce garde m'a jeté hors de la taverne. Si je le revois, je lui montrerais un truc ou deux.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_4" + } + ] + }, + { + "id": "fallhaven_drunk_4", + "message": "Boire, boire, boire encore et encore. Boire encore un petit coup ... Eh, comment ça faisait déjà ?", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_5" + } + ] + }, + { + "id": "fallhaven_drunk_5", + "message": "Tu me parlais ? Où c'était déjà ? Ah oui, on était dans ce donjon.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_6" + } + ] + }, + { + "id": "fallhaven_drunk_6", + "message": "Ou alors c'était une maison ? Je n'arrive pas à me rappeler.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_7" + } + ] + }, + { + "id": "fallhaven_drunk_7", + "message": "Non, non, c'était dehors ! Je m'en souviens maintenent.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_7_select" + } + ] + }, + { + "id": "fallhaven_drunk_7_select", + "replies": [ + { + "nextPhraseID": "fallhaven_drunk_11", + "requires": { + "progress": "fallhavendrunk:100" + } + }, + { + "nextPhraseID": "fallhaven_drunk_8" + } + ] + }, + { + "id": "fallhaven_drunk_8", + "message": "C'est là que ...\n\nHé, où est passé mon hydromel ? C'est toi qui l'a fauché ?", + "replies": [ + { + "text": "Oui", + "nextPhraseID": "fallhaven_drunk_9_1" + }, + { + "text": "Non", + "nextPhraseID": "fallhaven_drunk_9_2" + } + ] + }, + { + "id": "fallhaven_drunk_9_1", + "message": "Alors tu va me l'a rendre ! Ou alors tu vas m'en acheter d'autre.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fallhavendrunk", + "value": 10 + } + ], + "replies": [ + { + "text": "Voilà ton hydromel.", + "nextPhraseID": "fallhaven_drunk_10", + "requires": { + "item": { + "itemID": "mead", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "D'accord, je vais t'en acheter un peu.", + "nextPhraseID": "X" + }, + { + "text": "Non, je ne pense pas pouvoir t'aider. Au revoir.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_drunk_9_2", + "message": "Alors j'ai dû la boire. Tu pourrais m'en ramener un broc ?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fallhavendrunk", + "value": 10 + } + ], + "replies": [ + { + "text": "Voilà ton hydromel.", + "nextPhraseID": "fallhaven_drunk_10", + "requires": { + "item": { + "itemID": "mead", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "D'accord, je vais t'en acheter un peu.", + "nextPhraseID": "X" + }, + { + "text": "Non, je ne pense pas pouvoir t'aider. Au revoir.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_drunk_10", + "message": "Oh douces gorgées de plaisir. Puisse l'Ooooombre être avec toi gamin. *roule des yeux*", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_11" + } + ] + }, + { + "id": "fallhaven_drunk_11", + "message": "*prends une gorgée d'hydromel*\n\nÇa c'est de la bonne !", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_12" + } + ] + }, + { + "id": "fallhaven_drunk_12", + "message": "Ouais, moi et Unnmir, on a eu du bon temps. Vas lui demander, tiens. Tu devrais le trouver dans la grange un peu à l'Est d'ici. Je m'demande *burps* où est passé le trésor.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fallhavendrunk", + "value": 100 + } + ], + "replies": [ + { + "text": "Trésor ? Ça m'intéresse ! Je vais de ce pas rechercher Unnmir.", + "nextPhraseID": "X" + }, + { + "text": "Merci pour l'histoire. Au revoir.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-fr/conversationlist_fallhaven_gaela.json b/AndorsTrail/res/raw-fr/conversationlist_fallhaven_gaela.json new file mode 100644 index 000000000..b861a51f6 --- /dev/null +++ b/AndorsTrail/res/raw-fr/conversationlist_fallhaven_gaela.json @@ -0,0 +1,84 @@ +[ + { + "id": "gaela", + "replies": [ + { + "nextPhraseID": "gaela_r", + "requires": { + "progress": "andor:40" + } + }, + { + "nextPhraseID": "gaela_0" + } + ] + }, + { + "id": "gaela_r", + "message": "Hello again. I hope you will find what you are looking for." + }, + { + "id": "gaela_0", + "message": "Prompte est ma lame. Empoisonnée est ma langue. À moins que ce ne soit le contraire ?", + "replies": [ + { + "text": "On dirait qu'il y a beaucoup de voleurs à Fallhaven.", + "nextPhraseID": "gaela_1" + } + ] + }, + { + "id": "gaela_1", + "message": "Oui, ils sont très présents ici.", + "replies": [ + { + "text": "Qu'y a-t-il d'autre ?", + "nextPhraseID": "gaela_2", + "requires": { + "progress": "andor:30" + } + } + ] + }, + { + "id": "gaela_2", + "message": "J'ai entendu dire que tu avais aidé Gruil, un compagnon voleur du village de Crossglen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gaela_3" + } + ] + }, + { + "id": "gaela_3", + "message": "J'ai aussi eu vent que tu recherchais quelqu'un. Peut-être pourrais-je t'aider.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gaela_4" + } + ] + }, + { + "id": "gaela_4", + "message": "Tu devrais aller parler avec Bucus, dans la maison en ruines un peu au Sud-Ouest d'ici. Dis-lui que tu veux en savoir plus sur la guilde des voleurs.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 40 + } + ], + "replies": [ + { + "text": "Merci, je vais aller lui parler.", + "nextPhraseID": "gaela_5" + } + ] + }, + { + "id": "gaela_5", + "message": "Considère que c'est une faveur en remerciement de l'aide que tu as apportée à Gruil." + } +] diff --git a/AndorsTrail/res/raw-fr/conversationlist_fallhaven_larcal.json b/AndorsTrail/res/raw-fr/conversationlist_fallhaven_larcal.json new file mode 100644 index 000000000..100cf44af --- /dev/null +++ b/AndorsTrail/res/raw-fr/conversationlist_fallhaven_larcal.json @@ -0,0 +1,85 @@ +[ + { + "id": "larcal", + "message": "Je n'ai pas de temps à perdre avec toi, gamin. Vas-t-en.", + "replies": [ + { + "text": "J'ai trouvé une note portant votre nom alors que je cherchais le livre « les secrets de Calomyran ».", + "nextPhraseID": "larcal_1", + "requires": { + "progress": "calomyran:20" + } + } + ] + }, + { + "id": "larcal_1", + "message": "Voyez-vous ça ? Insinuerais-tu que je sois descendu dans la cave d'Arcir ?", + "replies": [ + { + "text": "N", + "nextPhraseID": "larcal_2" + } + ] + }, + { + "id": "larcal_2", + "message": "Après-tout, c'est bien possible. De toute façon, ce livre est à moi.", + "replies": [ + { + "text": "N", + "nextPhraseID": "larcal_3" + } + ] + }, + { + "id": "larcal_3", + "message": "Écoute, ne nous énervons pas. Tu t'en vas, tu oublies ce livre et peut-être que je te laisserais vivre.", + "replies": [ + { + "text": "Très bien, gardez vore livre.", + "nextPhraseID": "larcal_4" + }, + { + "text": "Non, vous allez me donner ce livre.", + "nextPhraseID": "larcal_5" + } + ] + }, + { + "id": "larcal_4", + "message": "Tu es un bon garçon. Maintenant, file." + }, + { + "id": "larcal_5", + "message": "Là, tu commences à m'ennuyer gamin. Vas-t-en tant que tu es encore capable de le faire.", + "replies": [ + { + "text": "Très bien, je m'en vais.", + "nextPhraseID": "X" + }, + { + "text": "Non, ce livre n'est pas à vous !", + "nextPhraseID": "larcal_6" + } + ] + }, + { + "id": "larcal_6", + "message": "Tu es encore là ? Et bien si tu veux tellement avoir ce livre, il va falloir que tu me le prennes !", + "replies": [ + { + "text": "Enfin un bagarre. Je l'attendais !", + "nextPhraseID": "F" + }, + { + "text": "J'aurais préféré que cela n'en arrive pas là..", + "nextPhraseID": "F" + }, + { + "text": "Très bien, je m'en vais.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-fr/conversationlist_fallhaven_nocmar.json b/AndorsTrail/res/raw-fr/conversationlist_fallhaven_nocmar.json new file mode 100644 index 000000000..3e7c8340b --- /dev/null +++ b/AndorsTrail/res/raw-fr/conversationlist_fallhaven_nocmar.json @@ -0,0 +1,258 @@ +[ + { + "id": "nocmar", + "message": "Bonjour, je suis Nocmar.", + "replies": [ + { + "text": "Cet endroit ressemble à une forge. Avez-vous quelque chose à vendre ?", + "nextPhraseID": "nocmar_trade_select" + }, + { + "text": "Unnmir m'envoie.", + "nextPhraseID": "nocmar_quest_select", + "requires": { + "progress": "nocmar:10" + } + }, + { + "text": "Au revoir.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "nocmar_quest_select", + "replies": [ + { + "nextPhraseID": "nocmar_complete_5", + "requires": { + "progress": "nocmar:200" + } + }, + { + "nextPhraseID": "nocmar_continue", + "requires": { + "progress": "nocmar:20" + } + }, + { + "nextPhraseID": "nocmar_quest" + } + ] + }, + { + "id": "nocmar_trade_select", + "replies": [ + { + "nextPhraseID": "S", + "requires": { + "progress": "nocmar:200" + } + }, + { + "nextPhraseID": "nocmar_trade_1" + } + ] + }, + { + "id": "nocmar_trade_1", + "message": "Je n'ai rien à vendre. J'avais beaucoup de choses avant, mais je n'ai plus le droit de vendre quoi que ce soit désormais.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_trade_2" + } + ] + }, + { + "id": "nocmar_trade_2", + "message": "À une époque, j'étais le plus grand forgeron de Fallhaven. C'est alors que ce batard de seigneur Geomyr m'a interdit l'usage de l'acier-cœur.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_trade_3" + } + ] + }, + { + "id": "nocmar_trade_3", + "message": "Par décret du seigneur Geomyr, personne à Fallhaven n'est autorisé ne serait-ce qu'à utiliser des armes en acier-cœur. Ne parlons même pas d'en faire commerce.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_trade_4" + } + ] + }, + { + "id": "nocmar_trade_4", + "message": "Maintenant, je dois cacher les quelques armes qui me restent. Et je n'oserais pas les vendre à qui que ce soit.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_trade_4_1" + } + ] + }, + { + "id": "nocmar_trade_4_1", + "message": "Maintenant que le seigneur Geomyr l'a banni, je n'ai plus vu l'acier-cœur luire depuis plusieurs années.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_trade_5" + } + ] + }, + { + "id": "nocmar_trade_5", + "message": "Je ne peux donc malheureusement vous vendre aucune de mes armes." + }, + { + "id": "nocmar_quest", + "message": "Unnmir vous a envoyé dites-vous ? Je suppose que ce doit être important alors.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nocmar", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_quest_1" + } + ] + }, + { + "id": "nocmar_quest_1", + "message": "Bon, ces vieilles armes ont perdu leur lueur interne à force de ne plus être utilisées depuis aussi longtemps.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_quest_2" + } + ] + }, + { + "id": "nocmar_quest_2", + "message": "Pour faire luire à nouveau l'acier-cœur, il me faudrait une pierre-cœur.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_quest_3" + } + ] + }, + { + "id": "nocmar_quest_3", + "message": "Il y a des années, nous combattions les liches d'Undertell. Je ne sais pas si elles hantent toujours cet endroit.", + "replies": [ + { + "text": "Undertell ? Qu'est-ce que c'est ?", + "nextPhraseID": "nocmar_quest_4" + } + ] + }, + { + "id": "nocmar_quest_4", + "message": "Undertell ; le puits des âmes perdues. Allez vers le Sud et pénétrez dans les grottes des nains. Suivez l'odeur épouvantable à partir de là.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_quest_5" + } + ] + }, + { + "id": "nocmar_quest_5", + "message": "Méfiez-vous des liches d'Undertell si elles sont toujours là. Ces choses peuvent vous tuer rien qu'avec leur regard." + }, + { + "id": "nocmar_continue", + "message": "Alors, avez-vous trouvé la pierre-cœur ?", + "replies": [ + { + "text": "Oui, je l'ai enfin trouvée.", + "nextPhraseID": "nocmar_complete", + "requires": { + "item": { + "itemID": "heartstone", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Pourriez-vous me raconter votre histoire une nouvelle fois ?", + "nextPhraseID": "nocmar_quest_1" + }, + { + "text": "Non, pas encore.", + "nextPhraseID": "nocmar_continue_2" + } + ] + }, + { + "id": "nocmar_continue_2", + "message": "Continuez à cherchez s'il vous plaît. Unnmir a probablement prévu de vous faire faire quelque chose d'important." + }, + { + "id": "nocmar_complete", + "message": "Par l'Ombre. Vous avez vraiment trouvé une pierre-cœur. Je n'aurais jamais pensé en revoir une de mon vivant.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nocmar", + "value": 200 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_complete_2" + } + ] + }, + { + "id": "nocmar_complete_2", + "message": "Voyez-vous cette lueur ? Regardez ses pulsations.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_complete_3" + } + ] + }, + { + "id": "nocmar_complete_3", + "message": "Vite. Faisons luire à nouveau ces vieilles armes en acier-cœur.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_complete_4" + } + ] + }, + { + "id": "nocmar_complete_4", + "message": "*Nocmar met la pierre-cœur au milieu des armes d'acier-cœur*", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_complete_5" + } + ] + }, + { + "id": "nocmar_complete_5", + "message": "Vous le sentez ? L'acier-cœur luit à nouveau.", + "replies": [ + { + "text": "Montrez-moi les articles que vous avez.", + "nextPhraseID": "S" + } + ] + } +] diff --git a/AndorsTrail/res/raw-fr/conversationlist_fallhaven_oldman.json b/AndorsTrail/res/raw-fr/conversationlist_fallhaven_oldman.json new file mode 100644 index 000000000..b5e54a2fd --- /dev/null +++ b/AndorsTrail/res/raw-fr/conversationlist_fallhaven_oldman.json @@ -0,0 +1,151 @@ +[ + { + "id": "fallhaven_oldman", + "replies": [ + { + "nextPhraseID": "fallhaven_oldman_complete_2", + "requires": { + "progress": "calomyran:100" + } + }, + { + "nextPhraseID": "fallhaven_oldman_continue", + "requires": { + "progress": "calomyran:10" + } + }, + { + "nextPhraseID": "fallhaven_oldman_1" + } + ] + }, + { + "id": "fallhaven_oldman_1", + "message": "S'il vous plaît, accepteriez-vous d'aider un vieil homme ?", + "replies": [ + { + "text": "Bien sûr, que puis-je faire pour vous ?", + "nextPhraseID": "fallhaven_oldman_2" + }, + { + "text": "Peut-être. Y a-t-il quelque récompense à la clef ?", + "nextPhraseID": "fallhaven_oldman_2" + }, + { + "text": "Non, je n'aide pas les vieillards dans votre genre. Au revoir.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_oldman_2", + "message": "J'ai perdu il y a peu un livre qui m'était précieux.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_oldman_3" + } + ] + }, + { + "id": "fallhaven_oldman_3", + "message": "Je sais que je l'avais encore hier .Maintenant, je ne le retrouve plus.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_oldman_4" + } + ] + }, + { + "id": "fallhaven_oldman_4", + "message": "Je ne perds jamais rien ! Quelqu'un a dû me le voler à mon avis.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_oldman_5" + } + ] + }, + { + "id": "fallhaven_oldman_5", + "message": "Voudriez-vous partir à la recherche de mon livre ? Il s'intitule « les secrets de Calomyran ».", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_oldman_6" + } + ] + }, + { + "id": "fallhaven_oldman_6", + "message": "Je n'ai pas la moindre idée de l'endroit où il pourrait être. Vous pourriez demander à Arcir, il semble adorer ses livres. *montre la maison au Sud*", + "rewards": [ + { + "rewardType": 0, + "rewardID": "calomyran", + "value": 10 + } + ], + "replies": [ + { + "text": "D'accord, je vais demander à Arcir. Au revoir.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_oldman_continue", + "message": "Comment avance la recherche de mon livre ? Il s'intitule « les secrets de Calomyran ». L'avez-vous retrouvé ?", + "replies": [ + { + "text": "Oui, je l'ai retrouvé.", + "nextPhraseID": "fallhaven_oldman_complete", + "requires": { + "item": { + "itemID": "calomyran_secrets", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Non, je ne l'ai pas encore trouvé.", + "nextPhraseID": "fallhaven_oldman_6" + }, + { + "text": "Pourriez-vous me répéter votre histoire s'il vous plaît ?", + "nextPhraseID": "fallhaven_oldman_2" + } + ] + }, + { + "id": "fallhaven_oldman_complete", + "message": "Mon livre ! Merci, merci ! Où était-il ? Non, ne me le dites pas. Tenez, prenez cet argent pour votre dédommagement.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "calomyran", + "value": 100 + }, + { + "rewardType": 1, + "rewardID": "gold51" + } + ], + "replies": [ + { + "text": "Merci, au revoir.", + "nextPhraseID": "X" + }, + { + "text": "Enfin un peu d'or. Salut.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_oldman_complete_2", + "message": "Merci mille fois d'avoir retrouvé mon livre !" + } +] diff --git a/AndorsTrail/res/raw-fr/conversationlist_fallhaven_tavern.json b/AndorsTrail/res/raw-fr/conversationlist_fallhaven_tavern.json new file mode 100644 index 000000000..162f59091 --- /dev/null +++ b/AndorsTrail/res/raw-fr/conversationlist_fallhaven_tavern.json @@ -0,0 +1,107 @@ +[ + { + "id": "bela", + "message": "Bienvenue à la taverne de Fallhaven. Prenez place où vous voulez.", + "replies": [ + { + "text": "Montrez-moi ce que vous avez à boire", + "nextPhraseID": "S" + }, + { + "text": "Avez-vous des chambres libres ?", + "nextPhraseID": "bela_room_select" + } + ] + }, + { + "id": "bela_room_1", + "message": "Une chambre ne vous coûtera que 10 ors.", + "replies": [ + { + "text": "Acheter [10 ors]", + "nextPhraseID": "bela_room_2", + "requires": { + "item": { + "itemID": "gold", + "quantity": 10, + "requireType": 0 + } + } + }, + { + "text": "Non merci.", + "nextPhraseID": "bela" + } + ] + }, + { + "id": "bela_room_2", + "message": "Merci. Prenez la dernière chambre au fond.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fallhaventavern", + "value": 10 + } + ], + "replies": [ + { + "text": "Merci. J'avais autre chose à vous dire.", + "nextPhraseID": "bela" + }, + { + "text": "Merci. Au revoir.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bela_room_3", + "message": "J'espère que la chambre vous convient. C'est la dernière au fond.", + "replies": [ + { + "text": "Merci. J'avais autre chose à vous dire.", + "nextPhraseID": "bela" + }, + { + "text": "Merci. Au revoir.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bela_room_select", + "replies": [ + { + "nextPhraseID": "bela_room_3", + "requires": { + "progress": "fallhaventavern:10" + } + }, + { + "nextPhraseID": "bela_room_1" + } + ] + }, + { + "id": "ganos", + "message": "Vous me rappelez quelqu'un.", + "replies": [ + { + "text": "Avez-vous quelque chose à marchander ?", + "nextPhraseID": "S" + }, + { + "text": "Auriez-vous des informations concernant la guilde des voleurs ?", + "nextPhraseID": "ganos_1", + "requires": { + "progress": "andor:30" + } + } + ] + }, + { + "id": "ganos_1", + "message": "La guilde des voleurs ? Comment saurais-je ? Est-ce que je ressemble à un voleur d'après vous ? Hrmpf." + } +] diff --git a/AndorsTrail/res/raw-fr/conversationlist_fallhaven_unnmir.json b/AndorsTrail/res/raw-fr/conversationlist_fallhaven_unnmir.json new file mode 100644 index 000000000..4be60c2ee --- /dev/null +++ b/AndorsTrail/res/raw-fr/conversationlist_fallhaven_unnmir.json @@ -0,0 +1,174 @@ +[ + { + "id": "unnmir", + "replies": [ + { + "nextPhraseID": "unnmir_r", + "requires": { + "progress": "nocmar:10" + } + }, + { + "nextPhraseID": "unnmir_0" + } + ] + }, + { + "id": "unnmir_r", + "message": "Hello again. You should go talk to Nocmar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_13" + } + ] + }, + { + "id": "unnmir_0", + "message": "Bonjour.", + "replies": [ + { + "text": "J'ai croisé un ivrogne devant la taverne qui m'a raconté une histoire à propos de vous deux.", + "nextPhraseID": "unnmir_1", + "requires": { + "progress": "fallhavendrunk:100" + } + } + ] + }, + { + "id": "unnmir_1", + "message": "Ce vieux radoteur de la taverne t'a raconté notre histoire ?", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_2" + } + ] + }, + { + "id": "unnmir_2", + "message": "C'est toujours la même vieille histoire. Nous voyagions ensemble il y a de cela quelques années.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_3" + } + ] + }, + { + "id": "unnmir_3", + "message": "La grande aventure, tu vois, avec les épées et les sorts.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_4" + } + ] + }, + { + "id": "unnmir_4", + "message": "Et puis nous nous sommes arrêtés. Je ne sais pas très bien pour quelle raison, je suppose que nous étions fatigués de cette vie errante. Nous nous sommes installés ici à Fallhaven.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_5" + } + ] + }, + { + "id": "unnmir_5", + "message": "C'est une jolie petite ville. Il y a bien tous ces voleurs, mais ils ne m'embêtent pas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_6" + } + ] + }, + { + "id": "unnmir_6", + "message": "Alors quelle est ton histoire, gamin ? Comment es-tu arrivé ici à Fallhaven ?", + "replies": [ + { + "text": "Je suis à la recherche de mon frère.", + "nextPhraseID": "unnmir_7" + } + ] + }, + { + "id": "unnmir_7", + "message": "Ah, oui, je comprends. Ton frère est probablement parti en quête de quelque donjon, à l'aventure. *roule des yeux*", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_8" + } + ] + }, + { + "id": "unnmir_8", + "message": "Ou alors il est parti dans l'une des grandes villes au Nord.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_9" + } + ] + }, + { + "id": "unnmir_9", + "message": "Je ne peux guère le blâmer d'avoir envie de voir du pays.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_10" + } + ] + }, + { + "id": "unnmir_10", + "message": "Au fait, est-ce que toi non plus tu n'aurais pas envie de devenir aventurier ?", + "replies": [ + { + "text": "Si", + "nextPhraseID": "unnmir_11" + }, + { + "text": "Non, pas vraiment.", + "nextPhraseID": "unnmir_12" + } + ] + }, + { + "id": "unnmir_11", + "message": "C'est bien. Je vais te donner un conseil, gamin. *ricane*. Vas voir Nocmar à l'Ouest de la ville. Dis-lui que je t'ai envoyé.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nocmar", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_13" + } + ] + }, + { + "id": "unnmir_12", + "message": "Sage décision. L'aventure est cause de bien des cicatrices. Si tu vois ce que je veux dire." + }, + { + "id": "unnmir_13", + "message": "Sa maison est juste au Sud-Ouest de la taverne.", + "replies": [ + { + "text": "Merci, je vais aller le voir.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-fr/conversationlist_fallhaven_unzel.json b/AndorsTrail/res/raw-fr/conversationlist_fallhaven_unzel.json new file mode 100644 index 000000000..09aa0fed7 --- /dev/null +++ b/AndorsTrail/res/raw-fr/conversationlist_fallhaven_unzel.json @@ -0,0 +1,326 @@ +[ + { + "id": "unzel_1", + "message": "Bonjour, je suis Unzel.", + "replies": [ + { + "text": "Est-ce votre campement ?", + "nextPhraseID": "unzel_2" + }, + { + "text": "Vacor m'a envoyé pour vous tuer.", + "nextPhraseID": "unzel_3", + "requires": { + "progress": "vacor:40" + } + } + ] + }, + { + "id": "unzel_2", + "message": "Oui, c'est mon campement. C'est un joli coin, non ?", + "replies": [ + { + "text": "Au revoir", + "nextPhraseID": "X" + } + ] + }, + { + "id": "unzel_3", + "message": "Ah, Vacor vous a envoyé ? Je suppose que j'aurais du me douter qu'il enverrait quelqu'un un jour ou l'autre.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_4" + } + ] + }, + { + "id": "unzel_4", + "message": "Très bien alors. Tuez-moi si vous devez le faire, ou alors permettez-moi de vous raconter ma version de l'histoire.", + "replies": [ + { + "text": "Ha, je vais me faire un plaisir de vous tuer !", + "nextPhraseID": "unzel_fight" + }, + { + "text": "Je vous écoute.", + "nextPhraseID": "unzel_5" + } + ] + }, + { + "id": "unzel_fight", + "message": "Très bien alors, en garde..", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 53 + } + ], + "replies": [ + { + "text": "A fight it is!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "unzel_5", + "message": "Merci de m'écouter.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_10" + } + ] + }, + { + "id": "unzel_10", + "message": "Vacor et moi voyagions ensemble. Puis il est devenu obsédé par ses sortilèges.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_11" + } + ] + }, + { + "id": "unzel_11", + "message": "Il a même commencé à mettre en doute l'Ombre. Je savais que je devais faire quelque chose pour l'arrêter !", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_12" + } + ] + }, + { + "id": "unzel_12", + "message": "J'ai commencé à l'interroger sur ce qu'il comptait faire, mais il n'en faisait qu' sa tête.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_13" + } + ] + }, + { + "id": "unzel_13", + "message": "Au bout d'un moment, il est devenu obsédé par l'idée d'un sort de scission. Il disait que cela lui octroirait un pouvoir sans limite contre l'Ombre.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_14" + } + ] + }, + { + "id": "unzel_14", + "message": "Il n'y avait plus qu'une seule chose à faire. Je suis parti et j'ai cherché comment l'empêcher de créer ce sort de scission.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_15" + } + ] + }, + { + "id": "unzel_15", + "message": "J'ai envoyé des amis lui prendre le sort.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_16_select" + } + ] + }, + { + "id": "unzel_16_select", + "replies": [ + { + "nextPhraseID": "unzel_16_2", + "requires": { + "progress": "vacor:50" + } + }, + { + "nextPhraseID": "unzel_16_1" + } + ] + }, + { + "id": "unzel_16_1", + "message": "Et nous voila.", + "replies": [ + { + "text": "J'ai tué les quatre bandits que vous avez envoyé à Vacor.", + "nextPhraseID": "unzel_17" + } + ] + }, + { + "id": "unzel_16_2", + "message": "Et nous voila.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_19" + } + ] + }, + { + "id": "unzel_17", + "message": "Quoi ? Vous avez tué mes quatre amis ? Argh, je sens la rage m'étreindre.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_18" + } + ] + }, + { + "id": "unzel_18", + "message": "Mais je réalise aussi que tout ceci est la faute de Vacor. Je vais vous donner une chance maintenant, choisissez avec sagesse.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_19" + } + ] + }, + { + "id": "unzel_19", + "message": "Soit vous vous rangez du côté de Vacor et de son sort de scission, soit vous vous rangez du côté de l'Ombre et vous m'aidez à me débarasser de lui. Qui allez-vous aider ?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 50 + } + ], + "replies": [ + { + "text": "Je suis à votre côté. L'Ombre ne doit pas être perturbée.", + "nextPhraseID": "unzel_20" + }, + { + "text": "Je suis avec Vacor.", + "nextPhraseID": "unzel_fight" + } + ] + }, + { + "id": "unzel_20", + "message": "Merci mon ami. Nous allons sauver l'Ombre des agissements de Vacor.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 51 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_21" + } + ] + }, + { + "id": "unzel_21", + "message": "Vous devriez aller lui parler de l'Ombre." + }, + { + "id": "unzel_return_1", + "message": "Bienvenue. Avez-vous parlé à Vacor ?", + "replies": [ + { + "text": "Oui, je me suis occupé de lui.", + "nextPhraseID": "unzel_30", + "requires": { + "item": { + "itemID": "ring_vacor", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Non, pas encore.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "unzel_30", + "message": "Vous l'avez tué ? Je vous remercie mon ami. Maintenant nous sommes à l'abri du sort de scission de Vacor. Tenez, prenez ces pièces pour votre aide.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 61 + }, + { + "rewardType": 1, + "rewardID": "gold200" + } + ], + "replies": [ + { + "text": "Que l'Ombre soit avec vous.", + "nextPhraseID": "X" + }, + { + "text": "Merci.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "unzel_40", + "message": "Merci pour votre aide. Maintenant, nous sommes à l'abri du sort de scission de Vacor.", + "replies": [ + { + "text": "I have a message for you from Kaverin in Remgard", + "nextPhraseID": "unzel_msg1", + "requires": { + "progress": "kaverin:25", + "item": { + "itemID": "kaverin_message", + "quantity": 1, + "requireType": 1 + } + } + } + ] + }, + { + "id": "unzel", + "replies": [ + { + "nextPhraseID": "unzel_msg_r0", + "requires": { + "progress": "kaverin:30" + } + }, + { + "nextPhraseID": "unzel_40", + "requires": { + "progress": "vacor:61" + } + }, + { + "nextPhraseID": "unzel_return_1", + "requires": { + "progress": "vacor:51" + } + }, + { + "nextPhraseID": "unzel_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw-fr/conversationlist_fallhaven_vacor.json b/AndorsTrail/res/raw-fr/conversationlist_fallhaven_vacor.json new file mode 100644 index 000000000..fc452c53c --- /dev/null +++ b/AndorsTrail/res/raw-fr/conversationlist_fallhaven_vacor.json @@ -0,0 +1,604 @@ +[ + { + "id": "vacor", + "replies": [ + { + "nextPhraseID": "vacor_return_complete0", + "requires": { + "progress": "vacor:60" + } + }, + { + "nextPhraseID": "vacor_return2", + "requires": { + "progress": "vacor:40" + } + }, + { + "nextPhraseID": "vacor_42", + "requires": { + "progress": "vacor:30" + } + }, + { + "nextPhraseID": "vacor_select1" + } + ] + }, + { + "id": "vacor_select1", + "replies": [ + { + "nextPhraseID": "vacor_return1", + "requires": { + "progress": "vacor:20" + } + }, + { + "nextPhraseID": "vacor_begin" + } + ] + }, + { + "id": "vacor_begin", + "message": "Bonjour.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_2" + } + ] + }, + { + "id": "vacor_2", + "message": "Qui es-tu ? Le genre aventurier ? Hmm. Tu pourrais peut-être m'être utile.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_3" + } + ] + }, + { + "id": "vacor_3", + "message": "Veux-tu m'aider ?", + "replies": [ + { + "text": "Bien sûr, que puis-je faire pour vous ?", + "nextPhraseID": "vacor_4" + }, + { + "text": "Non, pourquoi vous aiderais-je ?", + "nextPhraseID": "vacor_bah" + } + ] + }, + { + "id": "vacor_bah", + "message": "Bah, vile créature. Je savais bien que je n'aurais pas dû te demander. Laisse-moi maintenant." + }, + { + "id": "vacor_4", + "message": "Il y a quelques temps, je travaillais sur un sort de scission au sujet duquel j'avais lu quelque chose.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_5" + } + ] + }, + { + "id": "vacor_5", + "message": "Ce sort était supposé, comment dire, ouvrir de nouvelles possibilités.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_6" + } + ] + }, + { + "id": "vacor_6", + "message": "Heu, oui, c'est ça, le sort de scission ouvrira de nouvelles choses. Ahem.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_7" + } + ] + }, + { + "id": "vacor_7", + "message": "J'étais donc là à travailler dur pour assembler le nécessaire.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_8" + } + ] + }, + { + "id": "vacor_8", + "message": "Soudainement, une bande de voyoux est arrivée et a commencé à me tourmenter.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_9" + } + ] + }, + { + "id": "vacor_9", + "message": "Ils se disaient messagers de l'Ombre, et voulaient me dissuader de faire mon sort.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_10" + } + ] + }, + { + "id": "vacor_10", + "message": "C'est grotesque, n'est-ce pas ? J'étais tellement près d'obtenir le pouvoir !", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_11" + } + ] + }, + { + "id": "vacor_11", + "message": "Oh, ce pouvoir que je pourrais avoir. Mon cher sort de scission.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_12" + } + ] + }, + { + "id": "vacor_12", + "message": "Enfin, alors que j'étais en train de parachever mon sort de scission, ces bandits sont venus et me l'ont dérobé.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_13" + } + ] + }, + { + "id": "vacor_13", + "message": "Les bandits ont pris mes notes pour le sort et se sont enfuis avant que je ne puisse appeler la garde.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_14" + } + ] + }, + { + "id": "vacor_14", + "message": "Après des années de travail, je ne puis me souvenir des derniers éléments du sort.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_15" + } + ] + }, + { + "id": "vacor_15", + "message": "Penses-tu que tu pourrais m'aider à le récupérer ? Alors je pourrais enfin avoir le pouvoir !", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_16" + } + ] + }, + { + "id": "vacor_16", + "message": "Bien entendu, tu serais largement récompensé pour ta participation à ma conquête de ce pouvoir.", + "replies": [ + { + "text": "Une récompense ? J'en suis !", + "nextPhraseID": "vacor_17" + }, + { + "text": "Très bien, je vais vous aider.", + "nextPhraseID": "vacor_17" + }, + { + "text": "Non merci, j'ai l'impression qu'il vaudrait mieux que je ne me mêle pas de cela.", + "nextPhraseID": "vacor_bah" + } + ] + }, + { + "id": "vacor_17", + "message": "Je savais que je ne pouvais faire confiance ... Attends, quoi ? Tu as vraiment dit oui ? Ah, très bien alors.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_18" + } + ] + }, + { + "id": "vacor_18", + "message": "Bon, trouve les quatre parties de mon sort de scission que ces bandits m'ont prises et ramène-les moi.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_19" + } + ] + }, + { + "id": "vacor_19", + "message": "Il y avait quatre bandits et ils sont partis vers le Sud de Fallhaven après m'avoir attaqué.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_20" + } + ] + }, + { + "id": "vacor_20", + "message": "Tu devrais rechercher ces quatre bandits dans la zone au Sud de Fallhaven.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_21" + } + ] + }, + { + "id": "vacor_21", + "message": "Dépêche-toi s'il te plaît ! Je suis tellement pressé d'ouvrir la faille ... Heu, de finir mon sort. Il n'y a aucun mal à cela, non ?" + }, + { + "id": "vacor_return1", + "message": "Re-bonjour. Comment avance la recherche des parties manquantes de mon sort de scission ?", + "replies": [ + { + "text": "Je les ai toutes trouvées.", + "nextPhraseID": "vacor_40", + "requires": { + "item": { + "itemID": "vacor_spell", + "quantity": 4, + "requireType": 0 + } + } + }, + { + "text": "Qu'est-ce que j'étais censé faire déjà ?", + "nextPhraseID": "vacor_18" + }, + { + "text": "Pourriez-vous me répéter toute l'histoire ?", + "nextPhraseID": "vacor_4" + } + ] + }, + { + "id": "vacor_40", + "message": "Oh, tu as trouvé les quatre parties ? Dépêche-toi, donne-les moi.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_41" + } + ] + }, + { + "id": "vacor_41", + "message": "Oui, ce sont bien les quatre parties que ces bandits m'ont prises.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_42" + } + ] + }, + { + "id": "vacor_42", + "message": "Maintenant je vais pouvoir finir le sort de scission et ouvrir la faille de l'Ombre ... Heu, je veux dire ouvrir les nouvelles possibilités. Oui, c'est ce que je voulais dire.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_43" + } + ] + }, + { + "id": "vacor_43", + "message": "Le seul obstacle qui m'empêche encore de continuer mes recherches sur le sort de scission est ce stupide étudiant Unzel.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_44" + } + ] + }, + { + "id": "vacor_44", + "message": "Unzel était mon apprenti il y a quelques temps. Mais il a commencé à m'ennuyer avec ses questions et ses discours sur la moralité.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_45" + } + ] + }, + { + "id": "vacor_45", + "message": "Il disait que mon sort allait à l'encontre de la volonté de l'Ombre.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_46" + } + ] + }, + { + "id": "vacor_46", + "message": "Bah, l'Ombre. Qu'a-t-elle jamais fait pour MOI ?!", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_47" + } + ] + }, + { + "id": "vacor_47", + "message": "Il faut qu'un jour je puisse lancer mon sort et me débarasser de l'Ombre.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_48" + } + ] + }, + { + "id": "vacor_48", + "message": "Qu'importe. Je suis sûr que c'est Unzel qui m'a envoyé ces bandits, et si je ne l'arrête pas, il m'en enverra probablement d'autres.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_49" + } + ] + }, + { + "id": "vacor_49", + "message": "Il faut que tu me trouves Unzel et que tu le tues pour moi. Tu le trouveras probablement au Sud-Ouest de Fallhaven.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_50" + } + ] + }, + { + "id": "vacor_50", + "message": "Rapporte-moi sa chevalière comme preuve que tu l'as tué.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_51" + } + ] + }, + { + "id": "vacor_51", + "message": "Dépêche-toi maintenant, je ne peux plus attendre. La pouvoir doit être à MOI !" + }, + { + "id": "vacor_return2", + "message": "Re-bonjour. As-tu progressé ?", + "replies": [ + { + "text": "À propos d'Unzel...", + "nextPhraseID": "vacor_return2_2" + }, + { + "text": "Pourriez-vous me répéter l'histoire ?", + "nextPhraseID": "vacor_43" + } + ] + }, + { + "id": "vacor_return2_2", + "message": "As-tu déjà tué Unzel pour moi ? Ramène-moi sa chevalière lorsque tu l'auras tué.", + "replies": [ + { + "text": "Je me suis occupé de lui. Voici sa chevalière.", + "nextPhraseID": "vacor_60", + "requires": { + "item": { + "itemID": "ring_unzel", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "J'ai écouté la version d'Unzel et décidé de me ranger à ses côtés. L'Ombre doit être préservée.", + "nextPhraseID": "vacor_70", + "requires": { + "progress": "vacor:51" + } + } + ] + }, + { + "id": "vacor_60", + "message": "Ha ha, Unzel est mort ! Cette créature pathétique est partie !", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 60 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_61" + } + ] + }, + { + "id": "vacor_61", + "message": "Je vois le sang sur tes bottes. Et j'ai même pû te faire tuer ses subalternes auparavant.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_62" + } + ] + }, + { + "id": "vacor_62", + "message": "C'est vraiment un grand jour. J'aurais bientôt le pouvoir !", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_63" + } + ] + }, + { + "id": "vacor_63", + "message": "Allez, prends ces pièces pour ton aide.", + "rewards": [ + { + "rewardType": 1, + "rewardID": "gold200" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_64" + } + ] + }, + { + "id": "vacor_64", + "message": "Maintenant, laisse-moi, j'ai du travail à faire avant de pouvoir lancer le sort de scission." + }, + { + "id": "vacor_return_complete0", + "replies": [ + { + "nextPhraseID": "vacor_msg_16", + "requires": { + "progress": "kaverin:90" + } + }, + { + "nextPhraseID": "vacor_msg_9", + "requires": { + "progress": "kaverin:75" + } + }, + { + "nextPhraseID": "vacor_msg1", + "requires": { + "progress": "kaverin:60", + "item": { + "itemID": "kaverin_message", + "quantity": 1, + "requireType": 1 + } + } + }, + { + "nextPhraseID": "vacor_return_complete" + } + ] + }, + { + "id": "vacor_return_complete", + "message": "Re-bonjour, mon ami assassin. Bientôt, mon sort de scission sera prêt." + }, + { + "id": "vacor_70", + "message": "Quoi ? Il t'a raconté son histoire ? Et tu l'as cru ?", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_71" + } + ] + }, + { + "id": "vacor_71", + "message": "Je te donne encore une chance. Soit tu tues Unzel pour moi, auquel cas je te récompenserais avec largesse, soit tu devras me combattre.", + "replies": [ + { + "text": "Non. Vous devez être arrêté.", + "nextPhraseID": "vacor_72" + }, + { + "text": "D'accord, je vais y réfléchir.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "vacor_72", + "message": "Bah, vile créature. Je savais que je ne pouvais pas te faire confiance. Maintenant tu vas mourir aux côtés de ta précieuse Ombre.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 54 + } + ], + "replies": [ + { + "text": "Pour l'Ombre !", + "nextPhraseID": "F" + }, + { + "text": "Vous devez être arrêté.", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-fr/conversationlist_jan.json b/AndorsTrail/res/raw-fr/conversationlist_jan.json new file mode 100644 index 000000000..2fa2731cc --- /dev/null +++ b/AndorsTrail/res/raw-fr/conversationlist_jan.json @@ -0,0 +1,350 @@ +[ + { + "id": "jan_start_select", + "replies": [ + { + "nextPhraseID": "jan_complete2", + "requires": { + "progress": "jan:100" + } + }, + { + "nextPhraseID": "jan_return", + "requires": { + "progress": "jan:10" + } + }, + { + "nextPhraseID": "jan_default" + } + ] + }, + { + "id": "jan_default", + "message": "Bonjour petit. Laisse moi à mes lamentations.", + "replies": [ + { + "text": "Que ce passe-t-il ?", + "nextPhraseID": "jan_default2" + }, + { + "text": "Désirez-vous en parler ?", + "nextPhraseID": "jan_default2" + }, + { + "text": "Entendu, au revoir.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_default2", + "message": "Oh, c'est tellement triste. Je ne veux vraiment pas en parler.", + "replies": [ + { + "text": "Si, faites-le s'il vous plaît.", + "nextPhraseID": "jan_default3" + }, + { + "text": "D'accord, au revoir.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_default3", + "message": "Très bien, je pense que je peux t'en parler. Tu me paraît être un brave petit.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default4" + } + ] + }, + { + "id": "jan_default4", + "message": "Mon ami Gandir, son ami Irogotu et moi même sommes venu ici creuser cette fosse. Nous avions entendu dire qu'il y avait un trésor caché là-dessous.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default5" + } + ] + }, + { + "id": "jan_default5", + "message": "Nous avons creusé et avons finalement débouché sur un dédale sous-terrain. C'est à ce moment que nous les avons trouvés. Les créatures et les bestioles.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default6" + } + ] + }, + { + "id": "jan_default6", + "message": "Ah ces créatures. Satané bâtards. Ils m'ont quasiment tué.\n\nGandir et moi avons dit à Irogotu que nous devions arrêter de creuser et partir pendant que nous le pouvions encore.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default7" + } + ] + }, + { + "id": "jan_default7", + "message": "Mais Irogotu voulait continuer plus profondément dans ces oubliettes. Lui et Gandir se sont disputés et ont commencés à se battre.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default8" + } + ] + }, + { + "id": "jan_default8", + "message": "C'est à ce moment là que c'est arrivé.\n\n*snif*\n\nOh, qu'avons nous fait ?", + "replies": [ + { + "text": "Continuez s'il vous plaît", + "nextPhraseID": "jan_default9" + } + ] + }, + { + "id": "jan_default9", + "message": "Irogotu a tué Gandir de ses mains nues. On pouvait voir la fureur dans ses yeux. Il semblait presque y prendre plaisir.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default10" + } + ] + }, + { + "id": "jan_default10", + "message": "Je me suis enfui et n'ai pas osé redescendre à cause des créatures et à cause d'Irogotu lui-même.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default11" + } + ] + }, + { + "id": "jan_default11", + "message": "Ah ce satané Irogotu. Si seulement je pouvais l'atteindre. Je lui montrerais de quel bois je me chauffe.", + "replies": [ + { + "text": "Penses-tu que tu pourrais m'aider ?", + "nextPhraseID": "jan_default11_1" + } + ] + }, + { + "id": "jan_default11_1", + "message": "Penses-tu que tu pourrais m'aider ?", + "replies": [ + { + "text": "Bien sûr, s'il y a un trésor sur lequel je puisse mettre la main.", + "nextPhraseID": "jan_default12" + }, + { + "text": "Bien sûr. Irogotu doit payer pour ce qu'il a fait.", + "nextPhraseID": "jan_default12" + }, + { + "text": "Non, merci, je préfère ne pas me mêler à cela. Cela paraît dangereux.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_default12", + "message": "Vraiment ? Tu penses que tu peux m'aider ? Hmm, oui, tu pourrais peut-être y arriver. Méfies-toi de ces bestioles cependant, ce sont vraiment des bâtards coriaces.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "jan", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default13" + } + ] + }, + { + "id": "jan_default13", + "message": "Si tu veux vraiment m'aider, descends chercher Irogotu dans ce dédale et ramène-moi l'anneau de Gandir.", + "replies": [ + { + "text": "Entendu.", + "nextPhraseID": "jan_default14" + }, + { + "text": "Background", + "nextPhraseID": "jan_background" + }, + { + "text": "Au revoir.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_default14", + "message": "Reviens me voir lorsque tu auras terminé. Ramène-moi l'anneau de Gandir qu'a Irogotu dans ce dédale.", + "replies": [ + { + "text": "Ok, bye", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_return", + "message": "Re-bonjour petit. As-tu trouvé Irogotu dans ce dédale ?", + "replies": [ + { + "text": "Non, pas encore.", + "nextPhraseID": "jan_default14" + }, + { + "text": "Pouvez-vous me raconter une nouvelle fois votre histoire ?", + "nextPhraseID": "jan_background" + }, + { + "text": "Oui, j'ai tué Irogotu.", + "nextPhraseID": "jan_complete", + "requires": { + "item": { + "itemID": "ring_gandir", + "quantity": 1, + "requireType": 0 + } + } + } + ] + }, + { + "id": "jan_background", + "message": "N'as tu pas écouté la première fois que je te l'ai racontée ? Dois-je vraiment te la répéter une nouvelle fois ?", + "replies": [ + { + "text": "Oui, s'il vous plaît, racontez moi à nouveau ce qui s'est passé.", + "nextPhraseID": "jan_default3" + }, + { + "text": "Je n'ai pas vraiment écouté la première fois que vous me l'avez racontée. C'est quoi cette histoire de trésor ?", + "nextPhraseID": "jan_default4" + }, + { + "text": "Non, c'est bon, je m'en souviens maintenant.", + "nextPhraseID": "jan_default14" + } + ] + }, + { + "id": "jan_complete2", + "message": "Merci de t'être occupé d'Irogotu plus tôt ! Je suis à jamais ton débiteur.", + "replies": [ + { + "text": "Au revoir.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_complete", + "message": "Attends, quoi ? Tu es vraiment descendu et tu reviens vivant ? Comment as-tu réussi à faire cela ? Mince, je suis quasiment mort dans ces grottes.\n\nOh merci de tout cœur de m'avoir rapporté l'anneau de Gandir ! Maintenant, j'ai un souvenir de lui.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "jan", + "value": 100 + } + ], + "replies": [ + { + "text": "Je suis heureux d'avoir pu vous aider. Au revoir.", + "nextPhraseID": "X" + }, + { + "text": "Que l'Ombre soit avec vous. au revoir.", + "nextPhraseID": "X" + }, + { + "text": "Qu'importe. Je ne l'ai fait que pour le butin.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "irogotu", + "message": "Bien, qui voilà donc. Voici un nouvel aventurier qui vient pour me voler mon butin. C'est MA CAVERNE. Ce trésor restera À MOI !", + "replies": [ + { + "text": "Avez-vous tué Gandir ?", + "nextPhraseID": "irogotu1", + "requires": { + "progress": "jan:10" + } + } + ] + }, + { + "id": "irogotu1", + "message": "Ce roquet de Gandir ? Il me gênait. Je me suis servi de lui pour pouvoir descendre plus profondément dans ces grottes.", + "replies": [ + { + "text": "N", + "nextPhraseID": "irogotu2" + } + ] + }, + { + "id": "irogotu2", + "message": "De toute façon, je ne l'aimais pas beaucoup.", + "replies": [ + { + "text": "Il méritait probablement de mourir. Portait-il un anneau ?", + "nextPhraseID": "irogotu3" + }, + { + "text": "Jan m'a parlé d'un anneau.", + "nextPhraseID": "irogotu3" + } + ] + }, + { + "id": "irogotu3", + "message": "NON ! Tu ne l'auras pas. Il est à moi ! Qui es-tu donc gamin, à venir me déranger ainsi ?", + "replies": [ + { + "text": "Je ne suis plus un gamin ! Maintenant, donnez-moi cet anneau !", + "nextPhraseID": "irogotu4" + }, + { + "text": "Donnez-moi cet anneau et nous pourrions bien sortir tous les deux vivants de cet endroit.", + "nextPhraseID": "irogotu4" + } + ] + }, + { + "id": "irogotu4", + "message": "Non. Si tu le veux, il faudra me le prendre de force, et je dois te prévenir que mes pouvoirs sont grands. De toute façon, tu n'oseras probablement pas t'attaquer à moi.", + "replies": [ + { + "text": "Très bien, voyons de nous deux qui mourra.", + "nextPhraseID": "F" + }, + { + "text": "Par l'Ombre, Gandir sera vengé.", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-fr/conversationlist_mikhail.json b/AndorsTrail/res/raw-fr/conversationlist_mikhail.json new file mode 100644 index 000000000..392be4437 --- /dev/null +++ b/AndorsTrail/res/raw-fr/conversationlist_mikhail.json @@ -0,0 +1,350 @@ +[ + { + "id": "mikhail_start_select", + "replies": [ + { + "nextPhraseID": "mikhail_start_select2", + "requires": { + "progress": "mikhail_bread:100" + } + }, + { + "nextPhraseID": "mikhail_bread_continue", + "requires": { + "progress": "mikhail_bread:10" + } + }, + { + "nextPhraseID": "mikhail_start_select2" + } + ] + }, + { + "id": "mikhail_start_select2", + "replies": [ + { + "nextPhraseID": "mikhail_start_select_default", + "requires": { + "progress": "mikhail_rats:100" + } + }, + { + "nextPhraseID": "mikhail_rats_continue", + "requires": { + "progress": "mikhail_rats:10" + } + }, + { + "nextPhraseID": "mikhail_start_select_default" + } + ] + }, + { + "id": "mikhail_start_select_default", + "replies": [ + { + "nextPhraseID": "mikhail_visited", + "requires": { + "progress": "andor:1" + } + }, + { + "nextPhraseID": "mikhail_gamestart" + } + ] + }, + { + "id": "mikhail_gamestart", + "message": "Ah, parfait, tu es réveillé.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_visited" + } + ] + }, + { + "id": "mikhail_visited", + "message": "Je ne trouve nulle part ton frère Andor. Il n'est pas rentré depuis son départ d'hier.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 1 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail3" + } + ] + }, + { + "id": "mikhail3", + "message": "Cela n'est pas grave, il sera probablement bientôt de retour.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_default", + "message": "Puis-je faire quelque chose d'autre pour t'aider ?", + "replies": [ + { + "text": "As-tu d'autres tâches à me confier ?", + "nextPhraseID": "mikhail_tasks" + }, + { + "text": "Pourrais-tu m'en dire plus au sujet d'Andor ?", + "nextPhraseID": "mikhail_andor1" + } + ] + }, + { + "id": "mikhail_tasks", + "message": "Ah oui, tu pourrais m'aider à faire deux-trois choses. Le pain et les rats. Par quoi veux-tu commencer ?", + "replies": [ + { + "text": "Que veux-tu dire au sujet du pain ?", + "nextPhraseID": "mikhail_bread_select" + }, + { + "text": "Que veux-tu dire au sujet des rats ?", + "nextPhraseID": "mikhail_rats_select" + }, + { + "text": "Qu'importe, parlons d'autre chose.", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_andor1", + "message": "Comme je te le disais, Andor est sorti hier et n'est pas revenu depuis lors. Je commence à m'inquiéter à son sujet. S'il te plaît, part à sa recherche, il a dit qu'il n'en aurait pas pour très longtemps.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_andor2" + } + ] + }, + { + "id": "mikhail_andor2", + "message": "Peut-être est-il allé dans la caverne qui sert de réserve et est resté coincé. Il peut aussi être allé s'entrainer encore avec son épée en bois dans la maison de Leta. S'il te plaît, pars à sa recherche au village.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_bread_select", + "replies": [ + { + "nextPhraseID": "mikhail_bread_complete2", + "requires": { + "progress": "mikhail_bread:100" + } + }, + { + "nextPhraseID": "mikhail_bread_continue", + "requires": { + "progress": "mikhail_bread:10" + } + }, + { + "nextPhraseID": "mikhail_bread_start" + } + ] + }, + { + "id": "mikhail_bread_start", + "message": "Ah, j'ai failli oublier. Si tu as le temps, pourrais-tu aller chez Mara à la halle du village pour m'acheter un peu de pain.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "mikhail_bread", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_bread_continue", + "message": "M'as tu trouvé du pain chez Mara à la halle du village ?", + "replies": [ + { + "text": "Oui, le voilà.", + "nextPhraseID": "mikhail_bread_complete", + "requires": { + "item": { + "itemID": "bread", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Non, pas encore.", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_bread_complete", + "message": "Merci beaucoup, je vais pouvoir prendre mon petit déjeuner. Voici quelques pièces pour ton aide.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "mikhail_bread", + "value": 100 + }, + { + "rewardType": 1, + "rewardID": "gold20" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_bread_complete2", + "message": "Merci de m'avoir rapporté le pain tout à l'heure.", + "replies": [ + { + "text": "De rien.", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_rats_select", + "replies": [ + { + "nextPhraseID": "mikhail_rats_complete2", + "requires": { + "progress": "mikhail_rats:100" + } + }, + { + "nextPhraseID": "mikhail_rats_continue", + "requires": { + "progress": "mikhail_rats:10" + } + }, + { + "nextPhraseID": "mikhail_rats_start" + } + ] + }, + { + "id": "mikhail_rats_start", + "message": "J'ai vu quelques rats dans le jardin tout à l'heure. Pourrais-tu nous débarasser de tous ceux que tu trouves ?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "mikhail_rats", + "value": 10 + } + ], + "replies": [ + { + "text": "Je me suis déjà occupé des rats.", + "nextPhraseID": "mikhail_rats_complete", + "requires": { + "item": { + "itemID": "tail_trainingrat", + "quantity": 2, + "requireType": 0 + } + } + }, + { + "text": "D'accord, je vais aller voir au jardin.", + "nextPhraseID": "mikhail_rats_start2" + } + ] + }, + { + "id": "mikhail_rats_start2", + "message": "Si les rats te blessent, reviens ici et repose toi dans le lit. Tu pourras ainsi recouvrer toutes tes forces.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_rats_start3" + } + ] + }, + { + "id": "mikhail_rats_start3", + "message": "Au fait n'oublie pas de faire l'inventaire de ton équipement. Tu as probablement toujours le vieil anneau que je t'avais donné. N'oublie pas de le porter.", + "replies": [ + { + "text": "Très bien, je comprends. Je peux me reposer ici si je suis blessé, et je dois vérifier mon inventaire pour tous les objets utiles que je peux avoir.", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_rats_continue", + "message": "As-tu tué les deux rats du jardin ?", + "replies": [ + { + "text": "Oui, je m'en suis occupé.", + "nextPhraseID": "mikhail_rats_complete", + "requires": { + "item": { + "itemID": "tail_trainingrat", + "quantity": 2, + "requireType": 0 + } + } + }, + { + "text": "Non, pas encore.", + "nextPhraseID": "mikhail_rats_start2" + } + ] + }, + { + "id": "mikhail_rats_complete", + "message": "Ah tu l'as fait ? Bravo, merci pour ton aide !\n\nSi tu es blessé, reviens à ton lit ici pour te reposer et reprendre des forces.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "mikhail_rats", + "value": 100 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_rats_complete2", + "message": "Merci de m'avoir débarassé des rats tout à l'heure.\n\nSi tu es blessé, reviens à ton lit ici pour te reposer et reprendre des forces.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + } +] diff --git a/AndorsTrail/res/raw-fr/itemlist_animal.json b/AndorsTrail/res/raw-fr/itemlist_animal.json new file mode 100644 index 000000000..ce873275f --- /dev/null +++ b/AndorsTrail/res/raw-fr/itemlist_animal.json @@ -0,0 +1,58 @@ +[ + { + "id": "hair", + "iconID": "items_misc:48", + "name": "Pelage d'animal", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "insectwing", + "iconID": "items_misc:52", + "name": "Aile d'insecte", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 3 + }, + { + "id": "bone", + "iconID": "items_misc:44", + "name": "Os", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "claws", + "iconID": "items_misc:47", + "name": "Griffe", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "shell", + "iconID": "items_misc:54", + "name": "Carapace d'animal", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "gland", + "iconID": "actorconditions_1:60", + "name": "Glande à venin", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 15 + }, + { + "id": "rat_tail", + "iconID": "items_misc:38", + "name": "Queue de rat", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 2 + } +] diff --git a/AndorsTrail/res/raw-fr/itemlist_armour.json b/AndorsTrail/res/raw-fr/itemlist_armour.json new file mode 100644 index 000000000..9c6629053 --- /dev/null +++ b/AndorsTrail/res/raw-fr/itemlist_armour.json @@ -0,0 +1,260 @@ +[ + { + "id": "shirt1", + "iconID": "items_armours:14", + "name": "Chemise", + "category": "bdy_clth", + "baseMarketCost": 16, + "equipEffect": { + "increaseBlockChance": 2 + } + }, + { + "id": "shirt2", + "iconID": "items_armours:14", + "name": "Chemise de bonne facture", + "category": "bdy_clth", + "baseMarketCost": 72, + "equipEffect": { + "increaseBlockChance": 5 + } + }, + { + "id": "shirt_dmgresist", + "iconID": "items_armours:15", + "name": "Chemise de cuir durci", + "category": "bdy_lthr", + "displaytype": 4, + "baseMarketCost": 1633, + "equipEffect": { + "increaseBlockChance": 5, + "increaseDamageResistance": 1 + } + }, + { + "id": "armor1", + "iconID": "items_armours:15", + "name": "Armure de cuir", + "category": "bdy_lthr", + "baseMarketCost": 464, + "equipEffect": { + "increaseBlockChance": 8 + } + }, + { + "id": "armor2", + "iconID": "items_armours:15", + "name": "Armure de cuir supérieure", + "category": "bdy_lthr", + "baseMarketCost": 624, + "equipEffect": { + "increaseBlockChance": 9 + } + }, + { + "id": "armor3", + "iconID": "items_armours:16", + "name": "Armure de cuir dur", + "category": "bdy_lthr", + "baseMarketCost": 2407, + "equipEffect": { + "increaseBlockChance": 13 + } + }, + { + "id": "armor4", + "iconID": "items_armours:16", + "name": "Armure de cuir dur supérieure", + "category": "bdy_lthr", + "baseMarketCost": 3866, + "equipEffect": { + "increaseBlockChance": 15 + } + }, + { + "id": "hat1", + "iconID": "items_armours:21", + "name": "Chapeau vert", + "category": "hd_cloth", + "baseMarketCost": 13, + "equipEffect": { + "increaseBlockChance": 1 + } + }, + { + "id": "hat2", + "iconID": "items_armours:21", + "name": "Chapeau vert de bonne facture", + "category": "hd_cloth", + "baseMarketCost": 25, + "equipEffect": { + "increaseBlockChance": 2 + } + }, + { + "id": "hat3", + "iconID": "items_armours:24", + "name": "Casquette en cuir de mauvaise facture", + "category": "hd_lthr", + "baseMarketCost": 72, + "equipEffect": { + "increaseBlockChance": 5 + } + }, + { + "id": "hat4", + "iconID": "items_armours:24", + "name": "Casquette en cuir", + "category": "hd_lthr", + "baseMarketCost": 146, + "equipEffect": { + "increaseBlockChance": 6 + } + }, + { + "id": "gloves1", + "iconID": "items_armours:35", + "name": "Gants en cuir", + "category": "hnd_lthr", + "baseMarketCost": 23, + "equipEffect": { + "increaseBlockChance": 3 + } + }, + { + "id": "gloves2", + "iconID": "items_armours:35", + "name": "Gants en cuir de bonne facture", + "category": "hnd_lthr", + "baseMarketCost": 38, + "equipEffect": { + "increaseBlockChance": 4 + } + }, + { + "id": "gloves3", + "iconID": "items_armours:36", + "name": "Gants en peau de serpent", + "category": "hnd_cloth", + "baseMarketCost": 72, + "equipEffect": { + "increaseBlockChance": 5 + } + }, + { + "id": "gloves4", + "iconID": "items_armours:36", + "name": "Gants en peau de serpent de bonne facture", + "category": "hnd_cloth", + "baseMarketCost": 146, + "equipEffect": { + "increaseBlockChance": 6 + } + }, + { + "id": "shield1", + "iconID": "items_armours:0", + "name": "Petit bouclier en bois", + "category": "buckler", + "baseMarketCost": 72, + "equipEffect": { + "increaseAttackChance": -2, + "increaseBlockChance": 5 + } + }, + { + "id": "shield3", + "iconID": "items_armours:1", + "name": "Petit bouclier en bois renforcé", + "category": "buckler", + "baseMarketCost": 226, + "equipEffect": { + "increaseAttackChance": -5, + "increaseBlockChance": 7 + } + }, + { + "id": "shield4", + "iconID": "items_armours:2", + "name": "Bouclier en bois", + "category": "shld_wd_li", + "baseMarketCost": 464, + "equipEffect": { + "increaseAttackChance": -5, + "increaseBlockChance": 8 + } + }, + { + "id": "shield5", + "iconID": "items_armours:2", + "name": "Bouclier en bois supérieur", + "category": "shld_wd_li", + "baseMarketCost": 624, + "equipEffect": { + "increaseAttackChance": -4, + "increaseBlockChance": 9 + } + }, + { + "id": "boots1", + "iconID": "items_armours:28", + "name": "Bottes en cuir", + "category": "feet_lthr", + "baseMarketCost": 23, + "equipEffect": { + "increaseBlockChance": 3 + } + }, + { + "id": "boots2", + "iconID": "items_armours:28", + "name": "Bottes en cuir supérieures", + "category": "feet_lthr", + "baseMarketCost": 38, + "equipEffect": { + "increaseBlockChance": 4 + } + }, + { + "id": "boots3", + "iconID": "items_armours:29", + "name": "Bottes en peau de serpent", + "category": "feet_lthr", + "baseMarketCost": 146, + "equipEffect": { + "increaseBlockChance": 6 + } + }, + { + "id": "boots5", + "iconID": "items_armours:30", + "name": "Bottes renforcées", + "category": "feet_mtl_hv", + "baseMarketCost": 226, + "equipEffect": { + "increaseBlockChance": 7 + } + }, + { + "id": "gloves_attack1", + "iconID": "items_armours:35", + "name": "Gants d'attaque rapide", + "category": "hnd_lthr", + "baseMarketCost": 150, + "equipEffect": { + "increaseAttackChance": 15, + "increaseBlockChance": -9 + } + }, + { + "id": "gloves_attack2", + "iconID": "items_armours:35", + "name": "Gants d'attaque rapide de bonne facture", + "category": "hnd_lthr", + "baseMarketCost": 221, + "equipEffect": { + "increaseAttackChance": 17, + "increaseBlockChance": -9 + } + } +] diff --git a/AndorsTrail/res/raw-fr/itemlist_food.json b/AndorsTrail/res/raw-fr/itemlist_food.json new file mode 100644 index 000000000..824d3cc5d --- /dev/null +++ b/AndorsTrail/res/raw-fr/itemlist_food.json @@ -0,0 +1,206 @@ +[ + { + "id": "apple_green", + "iconID": "items_consumables:2", + "name": "Pomme verte", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 14, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 8, + "chance": 100 + } + ] + } + }, + { + "id": "apple_red", + "iconID": "items_consumables:3", + "name": "Pomme rouge", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 22, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 12, + "chance": 100 + } + ] + } + }, + { + "id": "meat", + "iconID": "items_consumables:25", + "name": "Viande", + "category": "animal_e", + "hasManualPrice": 1, + "baseMarketCost": 29, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 2, + "duration": 12, + "chance": 100 + }, + { + "condition": "foodp", + "magnitude": 3, + "duration": 10, + "chance": 10 + } + ] + } + }, + { + "id": "meat_cooked", + "iconID": "items_consumables:27", + "name": "Viande préparée", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 78, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 3, + "duration": 11, + "chance": 100 + } + ] + } + }, + { + "id": "strawberry", + "iconID": "items_consumables:8", + "name": "Fraise", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 3, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 2, + "chance": 100 + } + ] + } + }, + { + "id": "carrot", + "iconID": "items_consumables:15", + "name": "Carotte", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 14, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 8, + "chance": 100 + } + ] + } + }, + { + "id": "bread", + "iconID": "items_consumables:21", + "name": "Pain", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 6, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 10, + "chance": 100 + } + ] + } + }, + { + "id": "mushroom", + "iconID": "items_consumables:19", + "name": "Champignon", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 3, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 2, + "chance": 100 + } + ] + } + }, + { + "id": "pear", + "iconID": "items_consumables:9", + "name": "Poire", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 14, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 8, + "chance": 100 + } + ] + } + }, + { + "id": "eggs", + "iconID": "items_consumables:20", + "name": "Œufs", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 10, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 6, + "chance": 100 + } + ] + } + }, + { + "id": "radish", + "iconID": "items_consumables:14", + "name": "Radis", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 6, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 4, + "chance": 100 + } + ] + } + } +] diff --git a/AndorsTrail/res/raw-fr/itemlist_junk.json b/AndorsTrail/res/raw-fr/itemlist_junk.json new file mode 100644 index 000000000..b4388bba9 --- /dev/null +++ b/AndorsTrail/res/raw-fr/itemlist_junk.json @@ -0,0 +1,50 @@ +[ + { + "id": "rock", + "iconID": "items_misc:28", + "name": "Petit caillou", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 1 + }, + { + "id": "gem1", + "iconID": "items_misc:0", + "name": "Gemme en verre", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "gem2", + "iconID": "items_misc:1", + "name": "Gemme en rubis", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 6 + }, + { + "id": "gem3", + "iconID": "items_misc:2", + "name": "Gemme polie", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 8 + }, + { + "id": "gem4", + "iconID": "items_misc:3", + "name": "Gemme taillée", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 13 + }, + { + "id": "gem5", + "iconID": "items_misc:5", + "name": "Joyau poli étincelant", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 15 + } +] diff --git a/AndorsTrail/res/raw-fr/itemlist_money.json b/AndorsTrail/res/raw-fr/itemlist_money.json new file mode 100644 index 000000000..a185b7c73 --- /dev/null +++ b/AndorsTrail/res/raw-fr/itemlist_money.json @@ -0,0 +1,10 @@ +[ + { + "id": "gold", + "iconID": "items_misc:10", + "name": "Pièces d'or", + "category": "money", + "hasManualPrice": 1, + "baseMarketCost": 1 + } +] diff --git a/AndorsTrail/res/raw-fr/itemlist_necklaces.json b/AndorsTrail/res/raw-fr/itemlist_necklaces.json new file mode 100644 index 000000000..d79d9b63b --- /dev/null +++ b/AndorsTrail/res/raw-fr/itemlist_necklaces.json @@ -0,0 +1,35 @@ +[ + { + "id": "jewel_fallhaven", + "iconID": "items_jewelry:6", + "name": "Joyau de Fallhaven", + "category": "neck", + "displaytype": 4, + "baseMarketCost": 3125, + "equipEffect": { + "increaseAttackCost": -1 + } + }, + { + "id": "necklace_shield1", + "iconID": "items_jewelry:7", + "name": "Collier du gardien", + "category": "neck", + "displaytype": 4, + "baseMarketCost": 935, + "equipEffect": { + "increaseBlockChance": 9 + } + }, + { + "id": "necklace_shield2", + "iconID": "items_jewelry:7", + "name": "Collier de protection", + "category": "neck", + "displaytype": 4, + "baseMarketCost": 1255, + "equipEffect": { + "increaseBlockChance": 12 + } + } +] diff --git a/AndorsTrail/res/raw-fr/itemlist_potions.json b/AndorsTrail/res/raw-fr/itemlist_potions.json new file mode 100644 index 000000000..ba534ba1a --- /dev/null +++ b/AndorsTrail/res/raw-fr/itemlist_potions.json @@ -0,0 +1,141 @@ +[ + { + "id": "vial_empty1", + "iconID": "items_consumables:56", + "name": "Petit flacon vide", + "category": "flask", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "vial_empty2", + "iconID": "items_consumables:57", + "name": "Flacon vide", + "category": "flask", + "hasManualPrice": 1, + "baseMarketCost": 4 + }, + { + "id": "vial_empty3", + "iconID": "items_consumables:59", + "name": "Fiole vide", + "category": "flask", + "hasManualPrice": 1, + "baseMarketCost": 6 + }, + { + "id": "vial_empty4", + "iconID": "items_consumables:58", + "name": "Potion vide", + "category": "flask", + "hasManualPrice": 1, + "baseMarketCost": 11 + }, + { + "id": "health_minor", + "iconID": "items_consumables:35", + "name": "Petit flacon de santé", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 5, + "useEffect": { + "increaseCurrentHP": { + "min": 5, + "max": 5 + } + } + }, + { + "id": "health_minor2", + "iconID": "items_consumables:35", + "name": "Petite potion de santé", + "category": "pot", + "baseMarketCost": 18, + "useEffect": { + "increaseCurrentHP": { + "min": 5, + "max": 5 + } + } + }, + { + "id": "health", + "iconID": "items_consumables:49", + "name": "Potion de santé", + "category": "pot", + "baseMarketCost": 40, + "useEffect": { + "increaseCurrentHP": { + "min": 10, + "max": 10 + } + } + }, + { + "id": "health_major", + "iconID": "items_consumables:28", + "name": "Grande fiole de santé", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 210, + "useEffect": { + "increaseCurrentHP": { + "min": 40, + "max": 40 + } + } + }, + { + "id": "health_major2", + "iconID": "items_consumables:28", + "name": "Grande potion de santé", + "category": "pot", + "baseMarketCost": 280, + "useEffect": { + "increaseCurrentHP": { + "min": 40, + "max": 40 + } + } + }, + { + "id": "mead", + "iconID": "items_consumables:51", + "name": "Hydromel", + "category": "drink", + "baseMarketCost": 15, + "useEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "milk", + "iconID": "items_consumables:55", + "name": "Lait", + "category": "drink", + "baseMarketCost": 21, + "useEffect": { + "increaseCurrentHP": { + "min": 2, + "max": 2 + } + } + }, + { + "id": "bonemeal_potion", + "iconID": "items_consumables:34", + "name": "Potion d'os", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 45, + "useEffect": { + "increaseCurrentHP": { + "min": 40, + "max": 40 + } + } + } +] diff --git a/AndorsTrail/res/raw-fr/itemlist_pre0610_unused.json b/AndorsTrail/res/raw-fr/itemlist_pre0610_unused.json new file mode 100644 index 000000000..32628c80d --- /dev/null +++ b/AndorsTrail/res/raw-fr/itemlist_pre0610_unused.json @@ -0,0 +1,58 @@ +[ + { + "id": "eye", + "iconID": "items_misc:45", + "name": "Yeux", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 6 + }, + { + "id": "bat_wing", + "iconID": "items_misc:46", + "name": "Aile de chauve-souris", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "feather", + "iconID": "items_misc:16", + "name": "Plume", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 6 + }, + { + "id": "red_feather", + "iconID": "items_misc:15", + "name": "Plume rouge", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 11 + }, + { + "id": "clay", + "iconID": "actorconditions_1:9", + "name": "Motte d'argile", + "category": "other", + "hasManualPrice": 1, + "baseMarketCost": 1 + }, + { + "id": "gem6", + "iconID": "items_misc:4", + "name": "Gemme chatoyante", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 26 + }, + { + "id": "gem8", + "iconID": "actorconditions_1:50", + "name": "Gemme brillante", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 68 + } +] diff --git a/AndorsTrail/res/raw-fr/itemlist_quest.json b/AndorsTrail/res/raw-fr/itemlist_quest.json new file mode 100644 index 000000000..cdd6579aa --- /dev/null +++ b/AndorsTrail/res/raw-fr/itemlist_quest.json @@ -0,0 +1,188 @@ +[ + { + "id": "tail_caverat", + "iconID": "items_misc:38", + "name": "Queue de rat des caves", + "category": "animal", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "tail_trainingrat", + "iconID": "items_misc:38", + "name": "Queue de petit rat", + "category": "animal", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "ring_mikhail", + "iconID": "items_jewelry:0", + "name": "Anneau de Mikhail", + "category": "ring", + "baseMarketCost": 15, + "equipEffect": { + "increaseAttackChance": 10 + } + }, + { + "id": "neck_irogotu", + "iconID": "items_jewelry:7", + "name": "Collier d'Irogotu", + "category": "neck", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 30, + "equipEffect": { + "increaseBlockChance": 5, + "increaseDamageResistance": 1 + } + }, + { + "id": "ring_gandir", + "iconID": "items_jewelry:0", + "name": "Anneau de Gandir", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "dagger_venom", + "iconID": "items_weapons:17", + "name": "Dague empoisonnée", + "category": "dagger", + "displaytype": 3, + "baseMarketCost": 15, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 10, + "increaseCriticalSkill": 5, + "setCriticalMultiplier": 2, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "key_luthor", + "iconID": "items_misc:21", + "name": "Clef de Luthor", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "calomyran_secrets", + "iconID": "items_books:0", + "name": "Les secrets de Calomyran", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "heartstone", + "iconID": "items_misc:6", + "name": "Pierre de vie", + "category": "gem", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "vacor_spell", + "iconID": "items_books:7", + "name": "Morceau du sort de Vacor", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "ring_unzel", + "iconID": "items_jewelry:0", + "name": "Anneau d'Unzel", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "ring_vacor", + "iconID": "items_jewelry:0", + "name": "Anneau de Vacor", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "boots_unzel", + "iconID": "items_armours:29", + "name": "Bottes défensive d'Unzel", + "category": "feet_lthr", + "displaytype": 3, + "baseMarketCost": 185, + "equipEffect": { + "increaseBlockChance": 8 + } + }, + { + "id": "boots_vacor", + "iconID": "items_armours:29", + "name": "Bottes d'attaque de Vacor", + "category": "feet_lthr", + "displaytype": 3, + "baseMarketCost": 185, + "equipEffect": { + "increaseAttackChance": 9, + "increaseBlockChance": 2 + } + }, + { + "id": "necklace_flagstone", + "iconID": "items_jewelry:6", + "name": "Collier du garde de Flagstone", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "packhide", + "iconID": "items_armours:15", + "name": "Peau de Wolfpack", + "category": "bdy_hide", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 121, + "equipEffect": { + "increaseAttackChance": -15, + "increaseBlockChance": 2, + "increaseDamageResistance": 1 + } + }, + { + "id": "sword_flagstone", + "iconID": "items_weapons:7", + "name": "Fierté de Flagstone", + "category": "lsword", + "displaytype": 3, + "baseMarketCost": 169, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 21, + "increaseCriticalSkill": 10, + "setCriticalMultiplier": 2, + "increaseAttackDamage": { + "min": 1, + "max": 6 + } + } + } +] diff --git a/AndorsTrail/res/raw-fr/itemlist_rings.json b/AndorsTrail/res/raw-fr/itemlist_rings.json new file mode 100644 index 000000000..a68607445 --- /dev/null +++ b/AndorsTrail/res/raw-fr/itemlist_rings.json @@ -0,0 +1,124 @@ +[ + { + "id": "ring_dmg1", + "iconID": "items_jewelry:0", + "name": "Anneau de dégât +1", + "category": "ring", + "baseMarketCost": 215, + "equipEffect": { + "increaseAttackDamage": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "ring_dmg2", + "iconID": "items_jewelry:1", + "name": "Anneau de dégât +2", + "category": "ring", + "baseMarketCost": 398, + "equipEffect": { + "increaseAttackDamage": { + "min": 2, + "max": 2 + } + } + }, + { + "id": "ring_dmg5", + "iconID": "items_jewelry:2", + "name": "Anneau de dégât +5", + "category": "ring", + "displaytype": 4, + "baseMarketCost": 2014, + "equipEffect": { + "increaseAttackDamage": { + "min": 5, + "max": 5 + } + } + }, + { + "id": "ring_dmg6", + "iconID": "items_jewelry:3", + "name": "Anneau de dégât +6", + "category": "ring", + "displaytype": 4, + "baseMarketCost": 3186, + "equipEffect": { + "increaseAttackDamage": { + "min": 6, + "max": 6 + } + } + }, + { + "id": "ring_block1", + "iconID": "items_jewelry:0", + "name": "Anneau de blocage", + "category": "ring", + "displaytype": 4, + "baseMarketCost": 1239, + "equipEffect": { + "increaseBlockChance": 10 + } + }, + { + "id": "ring_block2", + "iconID": "items_jewelry:0", + "name": "Anneau de blocage", + "category": "ring", + "displaytype": 4, + "baseMarketCost": 3866, + "equipEffect": { + "increaseBlockChance": 15 + } + }, + { + "id": "ring_atkch1", + "iconID": "items_jewelry:0", + "name": "Anneau du coup sûr", + "category": "ring", + "baseMarketCost": 215, + "equipEffect": { + "increaseAttackChance": 15 + } + }, + { + "id": "ring1", + "iconID": "items_jewelry:0", + "name": "Anneau ordinaire", + "category": "ring", + "hasManualPrice": 1, + "baseMarketCost": 13, + "equipEffect": { + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "ring2", + "iconID": "items_jewelry:0", + "name": "Anneau poli", + "category": "ring", + "hasManualPrice": 1, + "baseMarketCost": 21, + "equipEffect": { + "increaseBlockChance": 1 + } + }, + { + "id": "ring_jinxed1", + "iconID": "items_jewelry:2", + "name": "Anneau ensorcelé de résistance aux dégâts", + "category": "ring", + "baseMarketCost": 229, + "equipEffect": { + "increaseBlockChance": -9, + "increaseDamageResistance": 1 + } + } +] diff --git a/AndorsTrail/res/raw-fr/itemlist_v0610_1.json b/AndorsTrail/res/raw-fr/itemlist_v0610_1.json new file mode 100644 index 000000000..501006ee8 --- /dev/null +++ b/AndorsTrail/res/raw-fr/itemlist_v0610_1.json @@ -0,0 +1,1021 @@ +[ + { + "id": "dagger_shadow_priests", + "iconID": "items_weapons:17", + "name": "Dague des prêtres de l'Ombre", + "category": "dagger", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 15, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 20, + "increaseCriticalSkill": 20, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "sword_hard_iron", + "iconID": "items_weapons:0", + "name": "Épée en fer renforcée", + "category": "lsword", + "hasManualPrice": 0, + "baseMarketCost": 369, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 15, + "increaseAttackDamage": { + "min": 2, + "max": 4 + } + } + }, + { + "id": "club_fine_wooden", + "iconID": "items_weapons:42", + "name": "Bâton en bois de bonne facture", + "category": "club", + "hasManualPrice": 0, + "baseMarketCost": 245, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 12, + "increaseAttackDamage": { + "min": 0, + "max": 7 + } + } + }, + { + "id": "axe_fine_iron", + "iconID": "items_weapons:56", + "name": "Hache en fer de bonne facture", + "category": "axe", + "hasManualPrice": 0, + "baseMarketCost": 365, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 9, + "increaseAttackDamage": { + "min": 4, + "max": 6 + } + } + }, + { + "id": "longsword_hard_iron", + "iconID": "items_weapons:1", + "name": "Épée longue en fer renforcée", + "category": "lsword", + "hasManualPrice": 0, + "baseMarketCost": 362, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 14, + "increaseAttackDamage": { + "min": 2, + "max": 6 + } + } + }, + { + "id": "broadsword_fine_iron", + "iconID": "items_weapons:5", + "name": "Épée large en fer de bonne facture", + "category": "bsword", + "hasManualPrice": 0, + "baseMarketCost": 422, + "equipEffect": { + "increaseAttackCost": 7, + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 4, + "max": 10 + } + } + }, + { + "id": "dagger_sharp_steel", + "iconID": "items_weapons:14", + "name": "Dague en acier aiguisée", + "category": "dagger", + "hasManualPrice": 0, + "baseMarketCost": 1428, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 24, + "increaseAttackDamage": { + "min": 2, + "max": 4 + } + } + }, + { + "id": "sword_balanced_steel", + "iconID": "items_weapons:7", + "name": "Épée équilibrée en acier ", + "category": "lsword", + "hasManualPrice": 0, + "baseMarketCost": 2797, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 32, + "increaseAttackDamage": { + "min": 3, + "max": 7 + } + } + }, + { + "id": "broadsword_fine_steel", + "iconID": "items_weapons:6", + "name": "Épée large en acier de bonne facture", + "category": "bsword", + "hasManualPrice": 0, + "baseMarketCost": 1206, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 20, + "increaseAttackDamage": { + "min": 4, + "max": 11 + } + } + }, + { + "id": "sword_defenders", + "iconID": "items_weapons:2", + "name": "Lame du défenseur", + "category": "lsword", + "hasManualPrice": 0, + "baseMarketCost": 1711, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 26, + "increaseAttackDamage": { + "min": 3, + "max": 7 + }, + "increaseBlockChance": 3 + } + }, + { + "id": "sword_villains", + "iconID": "items_weapons:16", + "name": "Lame du traître", + "category": "ssword", + "hasManualPrice": 0, + "baseMarketCost": 1665, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 20, + "increaseCriticalSkill": 5, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "sword_challengers", + "iconID": "items_weapons:1", + "name": "Épée en fer du provocateur", + "category": "lsword", + "hasManualPrice": 0, + "baseMarketCost": 785, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 20, + "increaseAttackDamage": { + "min": 2, + "max": 6 + } + } + }, + { + "id": "sword_fencing", + "iconID": "items_weapons:13", + "name": "Lame d'escrime", + "category": "rapier", + "hasManualPrice": 0, + "baseMarketCost": 922, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 14, + "increaseAttackDamage": { + "min": 2, + "max": 5 + }, + "increaseBlockChance": 5 + } + }, + { + "id": "club_brutal", + "iconID": "items_weapons:44", + "name": "Bâton offensif", + "category": "mace", + "hasManualPrice": 0, + "baseMarketCost": 2522, + "equipEffect": { + "increaseAttackCost": 7, + "increaseAttackChance": 20, + "increaseCriticalSkill": 5, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 2, + "max": 21 + } + } + }, + { + "id": "axe_gutsplitter", + "iconID": "items_weapons:58", + "name": "Répandeur d'entrailles", + "category": "axe2h", + "hasManualPrice": 0, + "baseMarketCost": 2733, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 21, + "increaseAttackDamage": { + "min": 7, + "max": 17 + } + } + }, + { + "id": "hammer_skullcrusher", + "iconID": "items_weapons:45", + "name": "Écraseur de crâne", + "category": "hammer2h", + "hasManualPrice": 0, + "baseMarketCost": 3142, + "equipEffect": { + "increaseAttackCost": 7, + "increaseAttackChance": 20, + "increaseCriticalSkill": 5, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 0, + "max": 26 + } + } + }, + { + "id": "shield_crude_wooden", + "iconID": "items_armours:0", + "name": "Petit bouclier en bois de mauvaise facture", + "category": "buckler", + "hasManualPrice": 0, + "baseMarketCost": 31, + "equipEffect": { + "increaseBlockChance": 1 + } + }, + { + "id": "shield_cracked_wooden", + "iconID": "items_armours:0", + "name": "Petit bouclier en bois fendu", + "category": "buckler", + "hasManualPrice": 0, + "baseMarketCost": 34, + "equipEffect": { + "increaseAttackChance": -2, + "increaseBlockChance": 2 + } + }, + { + "id": "shield_wooden_buckler", + "iconID": "items_armours:0", + "name": "Petit bouclier en bois d'occasion", + "category": "buckler", + "hasManualPrice": 0, + "baseMarketCost": 92, + "equipEffect": { + "increaseAttackChance": -2, + "increaseBlockChance": 3 + } + }, + { + "id": "shield_wooden", + "iconID": "items_armours:2", + "name": "Bouclier en bois", + "category": "shld_wd_li", + "hasManualPrice": 0, + "baseMarketCost": 514, + "equipEffect": { + "increaseAttackChance": -4, + "increaseBlockChance": 8 + } + }, + { + "id": "shield_wooden_defender", + "iconID": "items_armours:2", + "name": "Grand bouclier en bois", + "category": "shld_wd_li", + "hasManualPrice": 0, + "baseMarketCost": 1996, + "equipEffect": { + "increaseAttackChance": -8, + "increaseCriticalSkill": -5, + "increaseBlockChance": 14, + "increaseDamageResistance": 1 + } + }, + { + "id": "hat_hard_leather", + "iconID": "items_armours:24", + "name": "Casquette en cuir durci", + "category": "hd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 648, + "equipEffect": { + "increaseAttackChance": -3, + "increaseCriticalSkill": -1, + "increaseBlockChance": 8 + } + }, + { + "id": "hat_fine_leather", + "iconID": "items_armours:24", + "name": "Casquette en cuir de bonne facture", + "category": "hd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 846, + "equipEffect": { + "increaseAttackChance": -3, + "increaseCriticalSkill": -2, + "increaseBlockChance": 9 + } + }, + { + "id": "hat_leather_vision", + "iconID": "items_armours:24", + "name": "Casquette en cuir de vision réduite", + "category": "hd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 971, + "equipEffect": { + "increaseAttackChance": -3, + "increaseCriticalSkill": -4, + "increaseBlockChance": 10 + } + }, + { + "id": "helm_crude_iron", + "iconID": "items_armours:25", + "name": "Casque en fer de mauvaise facture", + "category": "hd_mtl_hv", + "hasManualPrice": 0, + "baseMarketCost": 1120, + "equipEffect": { + "increaseAttackChance": -3, + "increaseCriticalSkill": -5, + "increaseBlockChance": 11 + } + }, + { + "id": "shirt_torn", + "iconID": "items_armours:14", + "name": "Chemise déchirée", + "category": "bdy_clth", + "hasManualPrice": 0, + "baseMarketCost": 92, + "equipEffect": { + "increaseAttackChance": -2, + "increaseBlockChance": 3 + } + }, + { + "id": "shirt_weathered", + "iconID": "items_armours:14", + "name": "Chemise délavée", + "category": "bdy_clth", + "hasManualPrice": 0, + "baseMarketCost": 125, + "equipEffect": { + "increaseAttackChance": -1, + "increaseBlockChance": 3 + } + }, + { + "id": "shirt_patched_cloth", + "iconID": "items_armours:14", + "name": "Chemise rapiécée", + "category": "bdy_clth", + "hasManualPrice": 0, + "baseMarketCost": 208, + "equipEffect": { + "increaseBlockChance": 4 + } + }, + { + "id": "armour_crude_leather", + "iconID": "items_armours:16", + "name": "Armure de cuir de mauvaise facture", + "category": "bdy_lthr", + "hasManualPrice": 0, + "baseMarketCost": 514, + "equipEffect": { + "increaseAttackChance": -4, + "increaseBlockChance": 8 + } + }, + { + "id": "armour_firm_leather", + "iconID": "items_armours:16", + "name": "Armure de cuir solide", + "category": "bdy_lthr", + "hasManualPrice": 0, + "baseMarketCost": 417, + "equipEffect": { + "increaseMoveCost": 1, + "increaseBlockChance": 8 + } + }, + { + "id": "armour_rigid_leather", + "iconID": "items_armours:16", + "name": "Armure de cuir rigide", + "category": "bdy_lthr", + "hasManualPrice": 0, + "baseMarketCost": 625, + "equipEffect": { + "increaseMoveCost": 1, + "increaseAttackChance": -1, + "increaseBlockChance": 9 + } + }, + { + "id": "armour_rigid_chain", + "iconID": "items_armours:17", + "name": "Cotte de mailles rigide", + "category": "chmail", + "hasManualPrice": 0, + "baseMarketCost": 4667, + "equipEffect": { + "increaseAttackCost": 1, + "increaseAttackChance": -5, + "increaseBlockChance": 23 + } + }, + { + "id": "armour_superior_chain", + "iconID": "items_armours:17", + "name": "Cotte de mailles supérieure", + "category": "chmail", + "hasManualPrice": 0, + "baseMarketCost": 5992, + "equipEffect": { + "increaseAttackChance": -9, + "increaseBlockChance": 23 + } + }, + { + "id": "armour_chain_champ", + "iconID": "items_armours:17", + "name": "Cotte de mailles du Champion", + "category": "chmail", + "hasManualPrice": 0, + "baseMarketCost": 6808, + "equipEffect": { + "increaseMaxHP": 2, + "increaseAttackChance": -9, + "increaseCriticalSkill": -5, + "increaseBlockChance": 24 + } + }, + { + "id": "armour_leather_villain", + "iconID": "items_armours:16", + "name": "Armure de cuir du Traître", + "category": "bdy_lthr", + "hasManualPrice": 0, + "baseMarketCost": 3700, + "equipEffect": { + "increaseMoveCost": -1, + "increaseAttackChance": -4, + "increaseCriticalSkill": 3, + "increaseBlockChance": 15 + } + }, + { + "id": "armour_misfortune", + "iconID": "items_armours:15", + "name": "Chemise en cuir de malchance", + "category": "bdy_lthr", + "hasManualPrice": 0, + "baseMarketCost": 2459, + "equipEffect": { + "increaseAttackChance": -5, + "increaseAttackDamage": { + "min": -1, + "max": -1 + }, + "increaseBlockChance": 15 + } + }, + { + "id": "gloves_barbrawler", + "iconID": "items_armours:35", + "name": "Gants de bagarreur de bistrot", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 95, + "equipEffect": { + "increaseAttackChance": 5, + "increaseBlockChance": 2 + } + }, + { + "id": "gloves_fumbling", + "iconID": "items_armours:35", + "name": "Gants de fouille", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": -432, + "equipEffect": { + "increaseAttackChance": -5, + "increaseBlockChance": 1 + } + }, + { + "id": "gloves_crude_cloth", + "iconID": "items_armours:35", + "name": "Gants en tissu de mauvaise facture", + "category": "hnd_cloth", + "hasManualPrice": 0, + "baseMarketCost": 31, + "equipEffect": { + "increaseBlockChance": 1 + } + }, + { + "id": "gloves_crude_leather", + "iconID": "items_armours:35", + "name": "Gants en cuir de mauvaise facture", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 180, + "equipEffect": { + "increaseAttackChance": -4, + "increaseBlockChance": 6 + } + }, + { + "id": "gloves_troublemaker", + "iconID": "items_armours:36", + "name": "Gants du Fauteur de troubles", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 501, + "equipEffect": { + "increaseMaxHP": 1, + "increaseAttackChance": 7, + "increaseCriticalSkill": 4, + "increaseBlockChance": 4 + } + }, + { + "id": "gloves_guards", + "iconID": "items_armours:37", + "name": "Gants de garde", + "category": "hnd_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 636, + "equipEffect": { + "increaseMaxHP": 3, + "increaseAttackChance": 3, + "increaseBlockChance": 5 + } + }, + { + "id": "gloves_leather_attack", + "iconID": "items_armours:35", + "name": "Gants d'attaque en cuir", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 510, + "equipEffect": { + "increaseMaxHP": 3, + "increaseAttackChance": 13, + "increaseBlockChance": -2 + } + }, + { + "id": "gloves_woodcutter", + "iconID": "items_armours:35", + "name": "Gants de bûcheron", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 426, + "equipEffect": { + "increaseMaxHP": 3, + "increaseAttackChance": 8, + "increaseBlockChance": 1 + } + }, + { + "id": "boots_crude_leather", + "iconID": "items_armours:28", + "name": "Bottes en cuir de mauvaise facture", + "category": "feet_lthr", + "hasManualPrice": 0, + "baseMarketCost": 31, + "equipEffect": { + "increaseBlockChance": 1 + } + }, + { + "id": "boots_sewn", + "iconID": "items_armours:28", + "name": "Chaussures cousues", + "category": "feet_clth", + "hasManualPrice": 0, + "baseMarketCost": 73, + "equipEffect": { + "increaseBlockChance": 2 + } + }, + { + "id": "boots_coward", + "iconID": "items_armours:28", + "name": "Bottes du Froussard", + "category": "feet_lthr", + "hasManualPrice": 0, + "baseMarketCost": 933, + "equipEffect": { + "increaseMoveCost": -1, + "increaseBlockChance": 2 + } + }, + { + "id": "boots_hard_leather", + "iconID": "items_armours:30", + "name": "Bottes en cuir durci", + "category": "feet_lthr", + "hasManualPrice": 0, + "baseMarketCost": 626, + "equipEffect": { + "increaseMoveCost": 1, + "increaseAttackChance": -4, + "increaseBlockChance": 10 + } + }, + { + "id": "boots_defender", + "iconID": "items_armours:30", + "name": "Bottes du Défenseur", + "category": "feet_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 1190, + "equipEffect": { + "increaseMaxHP": 2, + "increaseBlockChance": 9 + } + }, + { + "id": "necklace_shield_0", + "iconID": "items_jewelry:7", + "name": "Collier de protection mineure", + "category": "neck", + "hasManualPrice": 0, + "baseMarketCost": 131, + "equipEffect": { + "increaseBlockChance": 3 + } + }, + { + "id": "necklace_strike", + "iconID": "items_jewelry:6", + "name": "Collier d'attaque", + "category": "neck", + "hasManualPrice": 0, + "baseMarketCost": 832, + "equipEffect": { + "increaseMaxHP": 5, + "increaseCriticalSkill": 5 + } + }, + { + "id": "necklace_defender_stone", + "iconID": "items_jewelry:7", + "name": "Pierre du Défenseur", + "category": "neck", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 1325, + "equipEffect": { + "increaseDamageResistance": 1 + } + }, + { + "id": "necklace_protector", + "iconID": "items_jewelry:7", + "name": "Collier du protecteur", + "category": "neck", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 3207, + "equipEffect": { + "increaseMaxHP": 5, + "increaseDamageResistance": 2 + } + }, + { + "id": "ring_crude_combat", + "iconID": "items_jewelry:0", + "name": "Anneau de combat de mauvaise facture", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 44, + "equipEffect": { + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "ring_crude_surehit", + "iconID": "items_jewelry:0", + "name": "Anneau du coup sûr de mauvaise facture", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 52, + "equipEffect": { + "increaseAttackChance": 7 + } + }, + { + "id": "ring_crude_block", + "iconID": "items_jewelry:0", + "name": "Anneau de blocage de mauvaise facture", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 73, + "equipEffect": { + "increaseBlockChance": 2 + } + }, + { + "id": "ring_rough_life", + "iconID": "items_jewelry:0", + "name": "Anneau grossier de force vive", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 100, + "equipEffect": { + "increaseMaxHP": 1 + } + }, + { + "id": "ring_fumbling", + "iconID": "items_jewelry:0", + "name": "Anneau de fouille", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": -463, + "equipEffect": { + "increaseAttackChance": -5 + } + }, + { + "id": "ring_rough_damage", + "iconID": "items_jewelry:0", + "name": "Anneau grossier de dégâts", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 56, + "equipEffect": { + "increaseAttackDamage": { + "min": 0, + "max": 2 + } + } + }, + { + "id": "ring_barbrawler", + "iconID": "items_jewelry:0", + "name": "Anneau du bagarreur de bistrot", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 222, + "equipEffect": { + "increaseAttackChance": 12, + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "ring_dmg_3", + "iconID": "items_jewelry:0", + "name": "Anneau de dégât +3", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 624, + "equipEffect": { + "increaseAttackDamage": { + "min": 3, + "max": 3 + } + } + }, + { + "id": "ring_life", + "iconID": "items_jewelry:0", + "name": "Anneau de force vive", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 557, + "equipEffect": { + "increaseMaxHP": 5 + } + }, + { + "id": "ring_taverbrawler", + "iconID": "items_jewelry:0", + "name": "Anneau du bagarreur de taverne", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 314, + "equipEffect": { + "increaseAttackChance": 12, + "increaseAttackDamage": { + "min": 0, + "max": 3 + } + } + }, + { + "id": "ring_defender", + "iconID": "items_jewelry:0", + "name": "Anneau du Défenseur", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 755, + "equipEffect": { + "increaseAttackChance": -6, + "increaseBlockChance": 11 + } + }, + { + "id": "ring_challenger", + "iconID": "items_jewelry:0", + "name": "Anneau du Provocateur", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 408, + "equipEffect": { + "increaseAttackChance": 12, + "increaseBlockChance": 4 + } + }, + { + "id": "ring_dmg_4", + "iconID": "items_jewelry:2", + "name": "Anneau de dégât +4", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 1168, + "equipEffect": { + "increaseAttackDamage": { + "min": 4, + "max": 4 + } + } + }, + { + "id": "ring_troublemaker", + "iconID": "items_jewelry:2", + "name": "Anneau du Fauteur de trouble", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 797, + "equipEffect": { + "increaseAttackChance": 15, + "increaseAttackDamage": { + "min": 2, + "max": 4 + } + } + }, + { + "id": "ring_guardian", + "iconID": "items_jewelry:2", + "name": "Anneau du Gardien", + "category": "ring", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 1489, + "equipEffect": { + "increaseAttackChance": 19, + "increaseAttackDamage": { + "min": 3, + "max": 5 + } + } + }, + { + "id": "ring_block", + "iconID": "items_jewelry:2", + "name": "Anneau de blocage", + "category": "ring", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 2192, + "equipEffect": { + "increaseBlockChance": 13 + } + }, + { + "id": "ring_backstab", + "iconID": "items_jewelry:2", + "name": "Anneau de poignardage", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 1363, + "equipEffect": { + "increaseAttackChance": 17, + "increaseCriticalSkill": 7, + "increaseBlockChance": 3 + } + }, + { + "id": "ring_polished_combat", + "iconID": "items_jewelry:2", + "name": "Anneau de combat poli", + "category": "ring", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 1346, + "equipEffect": { + "increaseMaxHP": 5, + "increaseAttackChance": 15, + "increaseAttackDamage": { + "min": 1, + "max": 5 + } + } + }, + { + "id": "ring_villain", + "iconID": "items_jewelry:2", + "name": "Anneau du Traître", + "category": "ring", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 2750, + "equipEffect": { + "increaseMaxHP": 4, + "increaseAttackChance": 25, + "increaseAttackDamage": { + "min": 3, + "max": 6 + } + } + }, + { + "id": "ring_polished_backstab", + "iconID": "items_jewelry:2", + "name": "Anneau de poignardage poli", + "category": "ring", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 2731, + "equipEffect": { + "increaseAttackChance": 21, + "increaseCriticalSkill": 7, + "increaseAttackDamage": { + "min": 4, + "max": 4 + } + } + }, + { + "id": "ring_protector", + "iconID": "items_jewelry:4", + "name": "Anneau du Protecteur", + "category": "ring", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 3744, + "equipEffect": { + "increaseMaxHP": 3, + "increaseAttackChance": 20, + "increaseAttackDamage": { + "min": 0, + "max": 3 + }, + "increaseBlockChance": 14 + } + } +] diff --git a/AndorsTrail/res/raw-fr/itemlist_v0610_2.json b/AndorsTrail/res/raw-fr/itemlist_v0610_2.json new file mode 100644 index 000000000..a581f61ab --- /dev/null +++ b/AndorsTrail/res/raw-fr/itemlist_v0610_2.json @@ -0,0 +1,190 @@ +[ + { + "id": "erinith_book", + "iconID": "items_books:0", + "name": "Livre d'Erinith", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "hadracor_waspwing", + "iconID": "items_misc:52", + "name": "Aile de guêpe géante", + "category": "animal", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "tinlyn_bells", + "iconID": "items_necklaces_1:10", + "name": "Cloche à mouton de Tinlyn", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "tinlyn_sheep_meat", + "iconID": "items_consumables:25", + "name": "Viande de mouton de Tinlyn", + "category": "animal", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "rogorn_qitem", + "iconID": "items_books:7", + "name": "Morceaux de peinture", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "fg_ironsword", + "iconID": "items_weapons:0", + "name": "Épée en fer deFeygard", + "category": "lsword", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 1, + "max": 5 + } + } + }, + { + "id": "fg_ironsword_d", + "iconID": "items_weapons:0", + "name": "Épée en fer de Feygard dégradée", + "category": "lsword", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": -50 + } + }, + { + "id": "buceth_vial", + "iconID": "items_consumables:47", + "name": "Flacon de Buceth rempli de liquide vert", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "chaosreaper", + "iconID": "items_weapons:49", + "name": "Rapière du Chaos", + "category": "scepter", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 339, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": -30, + "increaseAttackDamage": { + "min": 0, + "max": 2 + } + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 5, + "duration": 3, + "chance": 50 + } + ] + } + }, + { + "id": "izthiel_claw", + "iconID": "items_misc:47", + "name": "Griffe d'Izthiel", + "category": "animal_e", + "hasManualPrice": 1, + "baseMarketCost": 1, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 3, + "duration": 6, + "chance": 100 + }, + { + "condition": "foodp", + "magnitude": 3, + "duration": 10, + "chance": 20 + } + ] + } + }, + { + "id": "iqhan_pendant", + "iconID": "items_necklaces_1:2", + "name": "Pendentif d'Iqhan", + "category": "neck", + "hasManualPrice": 1, + "baseMarketCost": 10, + "equipEffect": { + "increaseAttackChance": 6 + } + }, + { + "id": "shadowfang", + "iconID": "items_weapons_3:41", + "name": "Croc de l'Ombre", + "category": "ssword", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 512, + "equipEffect": { + "increaseMaxHP": -20, + "increaseAttackCost": 4, + "increaseAttackChance": 40, + "increaseAttackDamage": { + "min": 2, + "max": 5 + } + }, + "hitEffect": { + "conditionsSource": [ + { + "condition": "fatigue_minor", + "magnitude": 1, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "gloves_life", + "iconID": "items_armours_2:1", + "name": "Gants de force vive", + "category": "hnd_lthr", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 390, + "equipEffect": { + "increaseMaxHP": 9, + "increaseAttackChance": 5, + "increaseBlockChance": 3 + } + } +] diff --git a/AndorsTrail/res/raw-fr/itemlist_v0611_1.json b/AndorsTrail/res/raw-fr/itemlist_v0611_1.json new file mode 100644 index 000000000..abf55e632 --- /dev/null +++ b/AndorsTrail/res/raw-fr/itemlist_v0611_1.json @@ -0,0 +1,477 @@ +[ + { + "id": "pot_focus_dmg", + "iconID": "items_consumables:39", + "name": "Potion de concentration des dégâts", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 272, + "useEffect": { + "conditionsSource": [ + { + "condition": "focus_dmg", + "magnitude": 1, + "duration": 4, + "chance": 100 + } + ] + } + }, + { + "id": "pot_focus_dmg2", + "iconID": "items_consumables:39", + "name": "Grande potion de concentration des dégâts", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 630, + "useEffect": { + "conditionsSource": [ + { + "condition": "focus_dmg", + "magnitude": 2, + "duration": 4, + "chance": 100 + } + ] + } + }, + { + "id": "pot_focus_ac", + "iconID": "items_consumables:37", + "name": "Potion de concentration en précision", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 210, + "useEffect": { + "conditionsSource": [ + { + "condition": "focus_ac", + "magnitude": 1, + "duration": 4, + "chance": 100 + } + ] + } + }, + { + "id": "pot_focus_ac2", + "iconID": "items_consumables:37", + "name": "Grande potion de concentration en précision", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 618, + "useEffect": { + "conditionsSource": [ + { + "condition": "focus_ac", + "magnitude": 2, + "duration": 4, + "chance": 100 + } + ] + } + }, + { + "id": "pot_scaradon", + "iconID": "items_consumables:48", + "name": "Extrait de Scaradon", + "category": "pot", + "hasManualPrice": 0, + "baseMarketCost": 28, + "useEffect": { + "increaseCurrentHP": { + "min": 5, + "max": 10 + } + } + }, + { + "id": "remgard_shield_1", + "iconID": "items_armours_3:24", + "name": "Bouclier de Remgard", + "category": "shld_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 2189, + "equipEffect": { + "increaseAttackChance": -3, + "increaseBlockChance": 9, + "increaseDamageResistance": 1 + } + }, + { + "id": "remgard_shield_2", + "iconID": "items_armours_3:24", + "name": "Bouclier de combat de Remgard", + "category": "shld_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 2720, + "equipEffect": { + "increaseAttackChance": -3, + "increaseBlockChance": 11, + "increaseDamageResistance": 1 + } + }, + { + "id": "helm_combat1", + "iconID": "items_armours:25", + "name": "Casque de combat", + "category": "hd_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 455, + "equipEffect": { + "increaseAttackChance": 5, + "increaseBlockChance": 6 + } + }, + { + "id": "helm_combat2", + "iconID": "items_armours:25", + "name": "Casque de combat amélioré", + "category": "hd_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 485, + "equipEffect": { + "increaseAttackChance": 7, + "increaseBlockChance": 6 + } + }, + { + "id": "helm_combat3", + "iconID": "items_armours:26", + "name": "Casque de combat de Remgard", + "category": "hd_mtl_hv", + "hasManualPrice": 0, + "baseMarketCost": 1540, + "equipEffect": { + "increaseMaxHP": 1, + "increaseAttackChance": -3, + "increaseCriticalSkill": -5, + "increaseBlockChance": 12 + } + }, + { + "id": "helm_redeye1", + "iconID": "items_armours:24", + "name": "Chapeau des yeux rouges", + "category": "hd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 1, + "equipEffect": { + "increaseMaxHP": -5, + "increaseBlockChance": 8 + } + }, + { + "id": "helm_redeye2", + "iconID": "items_armours:24", + "name": "Chapeau des yeux de sang", + "category": "hd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 1, + "equipEffect": { + "increaseMaxHP": -5, + "increaseAttackDamage": { + "min": 0, + "max": 1 + }, + "increaseBlockChance": 8 + } + }, + { + "id": "helm_defend1", + "iconID": "items_armours_3:31", + "name": "Casque du Défenseur", + "category": "hd_mtl_hv", + "hasManualPrice": 0, + "baseMarketCost": 1975, + "equipEffect": { + "increaseAttackChance": -3, + "increaseBlockChance": 8, + "increaseDamageResistance": 1 + } + }, + { + "id": "helm_protector0", + "iconID": "items_armours_3:31", + "name": "Casque d'allure étrange", + "category": "hd_mtl_li", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxHP": -9, + "increaseAttackDamage": { + "min": 0, + "max": 1 + }, + "increaseBlockChance": 5 + } + }, + { + "id": "helm_protector", + "iconID": "items_armours_3:31", + "name": "Protecteur sombre", + "category": "hd_mtl_li", + "displaytype": 3, + "hasManualPrice": 0, + "baseMarketCost": 3119, + "equipEffect": { + "increaseMaxHP": -6, + "increaseAttackDamage": { + "min": 0, + "max": 1 + }, + "increaseBlockChance": 13, + "increaseDamageResistance": 1 + } + }, + { + "id": "armour_chain_remg", + "iconID": "items_armours_3:13", + "name": "Cotte de mailles de Remgard", + "category": "chmail", + "hasManualPrice": 0, + "baseMarketCost": 8927, + "equipEffect": { + "increaseAttackChance": -7, + "increaseBlockChance": 25 + } + }, + { + "id": "armour_cvest1", + "iconID": "items_armours_3:5", + "name": "Veste de combat", + "category": "bdy_lt", + "hasManualPrice": 0, + "baseMarketCost": 1116, + "equipEffect": { + "increaseAttackChance": 15, + "increaseBlockChance": 8 + } + }, + { + "id": "armour_cvest2", + "iconID": "items_armours_3:5", + "name": "Veste de combat de Remgard", + "category": "bdy_lt", + "hasManualPrice": 0, + "baseMarketCost": 1244, + "equipEffect": { + "increaseAttackChance": 17, + "increaseBlockChance": 8 + } + }, + { + "id": "gloves_leather1", + "iconID": "items_armours:38", + "name": "Gants en cuir durci", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 757, + "equipEffect": { + "increaseMaxHP": 3, + "increaseAttackChance": 2, + "increaseBlockChance": 6 + } + }, + { + "id": "gloves_arulir", + "iconID": "items_armours_2:1", + "name": "Gants en peau d'Arulir", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 1793, + "equipEffect": { + "increaseAttackChance": -3, + "increaseBlockChance": 7, + "increaseDamageResistance": 1 + } + }, + { + "id": "gloves_combat1", + "iconID": "items_armours:36", + "name": "Gants de combat", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 956, + "equipEffect": { + "increaseMaxHP": 4, + "increaseAttackChance": -5, + "increaseBlockChance": 9 + } + }, + { + "id": "gloves_combat2", + "iconID": "items_armours:36", + "name": "Gants de combat améliorés", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 1204, + "equipEffect": { + "increaseMaxHP": 4, + "increaseAttackChance": -5, + "increaseBlockChance": 10 + } + }, + { + "id": "gloves_remgard1", + "iconID": "items_armours:37", + "name": "Gants de combat de Remgard", + "category": "hnd_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 1205, + "equipEffect": { + "increaseMaxHP": 4, + "increaseBlockChance": 8 + } + }, + { + "id": "gloves_remgard2", + "iconID": "items_armours:37", + "name": "Gants enchantés de Remgard", + "category": "hnd_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 1326, + "equipEffect": { + "increaseMaxHP": 5, + "increaseAttackChance": 2, + "increaseBlockChance": 8 + } + }, + { + "id": "gloves_guard1", + "iconID": "items_armours:38", + "name": "Gants du Gardien", + "category": "hnd_lthr", + "hasManualPrice": 1, + "baseMarketCost": 601, + "equipEffect": { + "increaseAttackChance": -9, + "increaseCriticalSkill": -5, + "increaseBlockChance": 14 + } + }, + { + "id": "boots_combat1", + "iconID": "items_armours:30", + "name": "Bottes de combat", + "category": "feet_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackChance": 7, + "increaseBlockChance": 7 + } + }, + { + "id": "boots_combat2", + "iconID": "items_armours:30", + "name": "Bottes de combat améliorées", + "category": "feet_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackChance": 7, + "increaseBlockChance": 11 + } + }, + { + "id": "boots_remgard1", + "iconID": "items_armours:31", + "name": "Bottes de Remgard", + "category": "feet_mtl_hv", + "hasManualPrice": 0, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxHP": 4, + "increaseBlockChance": 12 + } + }, + { + "id": "boots_guard1", + "iconID": "items_armours:31", + "name": "Bottes du Gardien", + "category": "feet_mtl_hv", + "hasManualPrice": 0, + "baseMarketCost": 0, + "equipEffect": { + "increaseBlockChance": 7, + "increaseDamageResistance": 1 + } + }, + { + "id": "boots_brawler", + "iconID": "items_armours_3:38", + "name": "Bottes du bagarreur de bistrot", + "category": "feet_lthr", + "hasManualPrice": 0, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxHP": 2, + "increaseCriticalSkill": 4, + "increaseBlockChance": 7 + } + }, + { + "id": "marrowtaint", + "iconID": "items_necklaces_1:9", + "name": "Souillure intérieure", + "category": "neck", + "displaytype": 3, + "hasManualPrice": 0, + "baseMarketCost": 4760, + "equipEffect": { + "increaseMaxHP": 5, + "increaseAttackCost": -1, + "increaseAttackChance": 9, + "increaseBlockChance": 9 + } + }, + { + "id": "valugha_gown", + "iconID": "items_armours_3:2", + "name": "Robe en soie de Valugha", + "category": "bdy_clth", + "displaytype": 3, + "hasManualPrice": 0, + "baseMarketCost": 3109, + "equipEffect": { + "increaseMaxHP": 5, + "increaseMoveCost": -1, + "increaseAttackChance": 30, + "increaseBlockChance": -10 + } + }, + { + "id": "valugha_hat", + "iconID": "items_armours_3:1", + "name": "Chapeau chatoyant de Valugha", + "category": "hd_cloth", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 648, + "equipEffect": { + "increaseMaxHP": 3, + "increaseMoveCost": -1, + "increaseAttackChance": 15, + "increaseAttackDamage": { + "min": -2, + "max": -2 + }, + "increaseBlockChance": -5 + } + }, + { + "id": "hat_crit", + "iconID": "items_armours_3:0", + "name": "Chapeau à plume de bûcheron", + "category": "hd_cloth", + "displaytype": 3, + "hasManualPrice": 0, + "baseMarketCost": 1, + "equipEffect": { + "increaseCriticalSkill": 4, + "increaseBlockChance": -5 + } + } +] diff --git a/AndorsTrail/res/raw-fr/itemlist_v0611_2.json b/AndorsTrail/res/raw-fr/itemlist_v0611_2.json new file mode 100644 index 000000000..83c6e41fe --- /dev/null +++ b/AndorsTrail/res/raw-fr/itemlist_v0611_2.json @@ -0,0 +1,71 @@ +[ + { + "id": "thorin_bone", + "iconID": "items_misc:44", + "name": "Os mâché", + "category": "animal", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "spider", + "iconID": "items_misc:40", + "name": "Araignée morte", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 1 + }, + { + "id": "irdegh", + "iconID": "items_misc:49", + "name": "Glande à poison d'Irdegh", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 5 + }, + { + "id": "arulir_skin", + "iconID": "items_misc:39", + "name": "Peau d'Arulir", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 4 + }, + { + "id": "algangror_rat", + "iconID": "items_misc:38", + "name": "Queue de rat d'allure étrange", + "category": "animal", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "oegyth", + "iconID": "items_misc:35", + "name": "Cristal d'Oegyth", + "category": "gem", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "toszylae_heart", + "iconID": "items_misc:6", + "name": "Cœur de démon", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "potion_rotworm", + "iconID": "items_consumables:63", + "name": "Ver pourri de Kazaul", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + } +] diff --git a/AndorsTrail/res/raw-fr/itemlist_v068.json b/AndorsTrail/res/raw-fr/itemlist_v068.json new file mode 100644 index 000000000..b51ca1e5d --- /dev/null +++ b/AndorsTrail/res/raw-fr/itemlist_v068.json @@ -0,0 +1,190 @@ +[ + { + "id": "armor_chain1", + "iconID": "items_armours:17", + "name": "Cotte de mailles rouillée", + "category": "chmail", + "baseMarketCost": 3629, + "equipEffect": { + "increaseAttackChance": -9, + "increaseBlockChance": 20 + } + }, + { + "id": "armor_chain2", + "iconID": "items_armours:17", + "name": "Cotte de mailles ordinaire", + "category": "chmail", + "baseMarketCost": 4191, + "equipEffect": { + "increaseAttackChance": -10, + "increaseBlockChance": 22 + } + }, + { + "id": "hat_leather1", + "iconID": "items_armours:24", + "name": "Casquette de cuir ordinaire", + "category": "hd_lthr", + "baseMarketCost": 261, + "equipEffect": { + "increaseAttackChance": -2, + "increaseBlockChance": 7 + } + }, + { + "id": "sleepingmead", + "iconID": "items_consumables:51", + "name": "Hydromel somnifère", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "ffguard_qitem", + "iconID": "items_jewelry:0", + "name": "Bague de la patrouille de Feygard", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "shield6", + "iconID": "items_armours:3", + "name": "Pavois en bois", + "category": "shld_twr", + "baseMarketCost": 952, + "equipEffect": { + "increaseAttackChance": -6, + "increaseBlockChance": 12 + } + }, + { + "id": "shield7", + "iconID": "items_armours:3", + "name": "Pavois en bois épais", + "category": "shld_twr", + "baseMarketCost": 1538, + "equipEffect": { + "increaseAttackChance": -6, + "increaseBlockChance": 14 + } + }, + { + "id": "club_wood1", + "iconID": "items_weapons:44", + "name": "Bâton lourd en acier", + "category": "mace", + "baseMarketCost": 950, + "equipEffect": { + "increaseAttackCost": 8, + "increaseAttackChance": 15, + "increaseCriticalSkill": 5, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 2, + "max": 11 + } + } + }, + { + "id": "club_wood2", + "iconID": "items_weapons:44", + "name": "Bâton lourd équilibré en acier", + "category": "mace", + "baseMarketCost": 2194, + "equipEffect": { + "increaseAttackCost": 7, + "increaseAttackChance": 10, + "increaseCriticalSkill": 10, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 2, + "max": 11 + } + } + }, + { + "id": "gloves_grip", + "iconID": "items_armours:35", + "name": "Gant de prise assurée", + "category": "hnd_lthr", + "baseMarketCost": 471, + "equipEffect": { + "increaseAttackChance": 9, + "increaseBlockChance": 1 + } + }, + { + "id": "gloves_fancy", + "iconID": "items_armours:35", + "name": "Gants fantaisistes", + "category": "hnd_cloth", + "baseMarketCost": 78, + "equipEffect": { + "increaseAttackChance": 5 + } + }, + { + "id": "ring_crit1", + "iconID": "items_jewelry:0", + "name": "Anneau d'attaque", + "category": "ring", + "displaytype": 4, + "baseMarketCost": 2921, + "equipEffect": { + "increaseCriticalSkill": 5 + } + }, + { + "id": "ring_crit2", + "iconID": "items_jewelry:0", + "name": "Anneau d'attaque vicieuse", + "category": "ring", + "displaytype": 4, + "baseMarketCost": 3455, + "equipEffect": { + "increaseAttackChance": -3, + "increaseCriticalSkill": 7 + } + }, + { + "id": "armor_stone", + "iconID": "items_armours:17", + "name": "Cuirasse de pierre", + "category": "bdy_hv", + "displaytype": 3, + "baseMarketCost": 52, + "equipEffect": { + "increaseAttackCost": 2, + "increaseBlockChance": 22, + "increaseDamageResistance": 1 + } + }, + { + "id": "ring_shadow0", + "iconID": "items_jewelry:2", + "name": "Anneau de l'Ombre Mineure", + "category": "ring", + "displaytype": 2, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackChance": 25, + "increaseCriticalSkill": 6, + "increaseAttackDamage": { + "min": 4, + "max": 7 + }, + "increaseBlockChance": 5, + "addedConditions": [ + { + "condition": "regen", + "magnitude": 1 + } + ] + } + } +] diff --git a/AndorsTrail/res/raw-fr/itemlist_v069.json b/AndorsTrail/res/raw-fr/itemlist_v069.json new file mode 100644 index 000000000..20481e0d8 --- /dev/null +++ b/AndorsTrail/res/raw-fr/itemlist_v069.json @@ -0,0 +1,464 @@ +[ + { + "id": "rapier_lifesteal", + "iconID": "items_weapons:71", + "name": "Rapière du drain de vie", + "category": "rapier", + "displaytype": 2, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxHP": 5, + "increaseAttackCost": 5, + "increaseAttackChance": 21, + "increaseAttackDamage": { + "min": 1, + "max": 6 + } + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 0, + "max": 3 + } + }, + "killEffect": { + "increaseCurrentHP": { + "min": 3, + "max": 3 + } + } + }, + { + "id": "dagger_barbed", + "iconID": "items_weapons:17", + "name": "Dague dentelée", + "category": "dagger", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 15, + "increaseBlockChance": 5 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "bleeding_wound", + "magnitude": 1, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "elytharan_redeemer", + "iconID": "items_weapons:70", + "name": "Rédempteur d'Elytharan", + "category": "2hsword", + "displaytype": 2, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxAP": 2, + "increaseAttackCost": 5, + "increaseAttackChance": 25, + "increaseAttackDamage": { + "min": 3, + "max": 8 + }, + "increaseBlockChance": 5, + "addedConditions": [ + { + "condition": "bless", + "magnitude": 1 + } + ] + } + }, + { + "id": "clouded_rage", + "iconID": "items_weapons:71", + "name": "Épée de la rage de l'Ombre", + "category": "rapier", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 21, + "increaseAttackDamage": { + "min": 3, + "max": 6 + }, + "increaseBlockChance": 5 + }, + "killEffect": { + "conditionsSource": [ + { + "condition": "rage_minor", + "magnitude": 1, + "duration": 1, + "chance": 50 + } + ] + } + }, + { + "id": "shadow_slayer", + "iconID": "items_weapons:60", + "name": "Ombre du tueur", + "category": "axe2h", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxAP": 2, + "increaseAttackCost": 7, + "increaseAttackChance": 25, + "increaseCriticalSkill": 10, + "setCriticalMultiplier": 2, + "increaseAttackDamage": { + "min": 5, + "max": 9 + } + }, + "killEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "ring_shadow_embrace", + "iconID": "items_jewelry:0", + "name": "Anneau de l'étreinte de l'Ombre", + "category": "ring", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxHP": 20, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 2, + "max": 2 + } + } + }, + { + "id": "bwm_dagger", + "iconID": "items_weapons:19", + "name": "Dague de Blackwater", + "category": "dagger", + "displaytype": 4, + "hasManualPrice": 1, + "baseMarketCost": 539, + "equipEffect": { + "increaseAttackCost": 3, + "increaseAttackChance": 40, + "increaseAttackDamage": { + "min": 1, + "max": 1 + }, + "increaseBlockChance": 5, + "addedConditions": [ + { + "condition": "blackwater_misery", + "magnitude": 1 + } + ] + } + }, + { + "id": "bwm_dagger_venom", + "iconID": "items_weapons:19", + "name": "Dague empoisonnée de Blackwater", + "category": "dagger", + "displaytype": 4, + "hasManualPrice": 1, + "baseMarketCost": 1552, + "equipEffect": { + "increaseAttackCost": 3, + "increaseAttackChance": 45, + "increaseAttackDamage": { + "min": 1, + "max": 1 + }, + "addedConditions": [ + { + "condition": "blackwater_misery", + "magnitude": 1 + } + ] + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_weak", + "magnitude": 1, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "bwm_ironsword", + "iconID": "items_weapons:0", + "name": "Épée en fer de Blackwater", + "category": "lsword", + "displaytype": 4, + "hasManualPrice": 1, + "baseMarketCost": 1224, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 50, + "increaseAttackDamage": { + "min": 3, + "max": 7 + }, + "increaseBlockChance": 5, + "addedConditions": [ + { + "condition": "blackwater_misery", + "magnitude": 1 + } + ] + } + }, + { + "id": "bwm_leather_armour", + "iconID": "items_armours:15", + "name": "Armure en cuir de Blackwater", + "category": "bdy_lthr", + "displaytype": 4, + "hasManualPrice": 1, + "baseMarketCost": 2551, + "equipEffect": { + "increaseBlockChance": 25, + "increaseDamageResistance": 1, + "addedConditions": [ + { + "condition": "blackwater_misery", + "magnitude": 1 + } + ] + } + }, + { + "id": "bwm_leather_cap", + "iconID": "items_armours:24", + "name": "Casquette en cuir de Blackwater", + "category": "hd_lthr", + "displaytype": 4, + "hasManualPrice": 1, + "baseMarketCost": 722, + "equipEffect": { + "increaseMaxHP": 5, + "increaseBlockChance": 21, + "addedConditions": [ + { + "condition": "blackwater_misery", + "magnitude": 1 + } + ] + } + }, + { + "id": "bwm_combat_ring", + "iconID": "items_jewelry:2", + "name": "Anneau de combat de Blackwater", + "category": "ring", + "displaytype": 4, + "hasManualPrice": 1, + "baseMarketCost": 595, + "equipEffect": { + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 0, + "max": 7 + }, + "addedConditions": [ + { + "condition": "blackwater_misery", + "magnitude": 1 + } + ] + } + }, + { + "id": "bwm_brew", + "iconID": "items_consumables:51", + "name": "Infusion de Blackwater", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 57, + "useEffect": { + "increaseCurrentHP": { + "min": 15, + "max": 15 + }, + "conditionsSource": [ + { + "condition": "intoxicated", + "magnitude": 1, + "duration": 10, + "chance": 100 + } + ] + } + }, + { + "id": "woodcutter_hatchet", + "iconID": "items_weapons:57", + "name": "Hachette du bûcheron", + "category": "axe", + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 9, + "increaseAttackDamage": { + "min": 6, + "max": 12 + } + } + }, + { + "id": "woodcutter_boots", + "iconID": "items_armours:30", + "name": "Bottes du bûcheron", + "category": "feet_lthr", + "baseMarketCost": 873, + "equipEffect": { + "increaseMaxHP": 1, + "increaseAttackChance": 3, + "increaseBlockChance": 8 + } + }, + { + "id": "heavy_club", + "iconID": "items_weapons:44", + "name": "Bâton lourd", + "category": "mace", + "baseMarketCost": 1229, + "equipEffect": { + "increaseAttackCost": 7, + "increaseAttackChance": 15, + "increaseCriticalSkill": 5, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 2, + "max": 15 + } + } + }, + { + "id": "pot_speed_1", + "iconID": "items_consumables:41", + "name": "Petite potion de rapidité", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 261, + "useEffect": { + "conditionsSource": [ + { + "condition": "speed_minor", + "magnitude": 1, + "duration": 5, + "chance": 100 + } + ] + } + }, + { + "id": "pot_poison_weak", + "iconID": "items_consumables:40", + "name": "Poison faible", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 125, + "useEffect": { + "conditionsSource": [ + { + "condition": "poison_weak", + "magnitude": 1, + "duration": 5, + "chance": 100 + } + ] + } + }, + { + "id": "pot_poison_weak_antidote", + "iconID": "items_consumables:54", + "name": "Antidote de poison faible", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 337, + "useEffect": { + "conditionsSource": [ + { + "condition": "poison_weak", + "magnitude": -99, + "chance": 100 + } + ] + } + }, + { + "id": "pot_bleeding_ointment", + "iconID": "items_consumables:35", + "name": "Pommade cicatrisante", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 310, + "useEffect": { + "conditionsSource": [ + { + "condition": "bleeding_wound", + "magnitude": -99, + "chance": 100 + } + ] + } + }, + { + "id": "pot_fatigue_restore", + "iconID": "items_consumables:41", + "name": "Soulagement de fatigue", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 210, + "useEffect": { + "conditionsSource": [ + { + "condition": "fatigue_minor", + "magnitude": -99, + "chance": 100 + } + ] + } + }, + { + "id": "pot_blind_rage", + "iconID": "items_consumables:63", + "name": "Potion de rage aveugle", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 495, + "useEffect": { + "conditionsSource": [ + { + "condition": "rage_minor", + "magnitude": 1, + "duration": 5, + "chance": 100 + } + ] + } + } +] diff --git a/AndorsTrail/res/raw-fr/itemlist_v069_2.json b/AndorsTrail/res/raw-fr/itemlist_v069_2.json new file mode 100644 index 000000000..b837cd7a0 --- /dev/null +++ b/AndorsTrail/res/raw-fr/itemlist_v069_2.json @@ -0,0 +1,38 @@ +[ + { + "id": "rusted_iron_sword", + "iconID": "items_weapons:0", + "name": "Épée en fer rouillée", + "category": "lsword", + "baseMarketCost": 52, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "broken_buckler", + "iconID": "items_armours:0", + "name": "Bouclier en bois brisé", + "category": "buckler", + "baseMarketCost": 120, + "equipEffect": { + "increaseAttackChance": -5, + "increaseBlockChance": 1 + } + }, + { + "id": "used_gloves", + "iconID": "items_armours:35", + "name": "Gants tâchés de sang", + "category": "hnd_lthr", + "baseMarketCost": 56, + "equipEffect": { + "increaseBlockChance": 1 + } + } +] diff --git a/AndorsTrail/res/raw-fr/itemlist_v069_questitems.json b/AndorsTrail/res/raw-fr/itemlist_v069_questitems.json new file mode 100644 index 000000000..c2ca6bf55 --- /dev/null +++ b/AndorsTrail/res/raw-fr/itemlist_v069_questitems.json @@ -0,0 +1,58 @@ +[ + { + "id": "bwm_claws", + "iconID": "items_misc:47", + "name": "Griffe de wyrm blanche", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 35 + }, + { + "id": "bwm_permit", + "iconID": "items_books:8", + "name": "Laissez-passer falsifié pour Blackwater", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "bjorgur_dagger", + "iconID": "items_weapons:14", + "name": "Dague de famille de Bjorgur", + "category": "dagger", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackCost": 5 + } + }, + { + "id": "q_kazaul_vial", + "iconID": "items_consumables:57", + "name": "Fiole d'élixir purificateur", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "guthbered_id", + "iconID": "items_jewelry:0", + "name": "Anneau de Guthbered", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "harlenn_id", + "iconID": "items_jewelry:0", + "name": "Anneau d'Harlenn", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + } +] diff --git a/AndorsTrail/res/raw-fr/itemlist_weapons.json b/AndorsTrail/res/raw-fr/itemlist_weapons.json new file mode 100644 index 000000000..f8089a33c --- /dev/null +++ b/AndorsTrail/res/raw-fr/itemlist_weapons.json @@ -0,0 +1,255 @@ +[ + { + "id": "club1", + "iconID": "items_weapons:42", + "name": "Massue en bois", + "category": "club", + "baseMarketCost": 7, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "club3", + "iconID": "items_weapons:44", + "name": "Bâton en fer", + "category": "mace", + "baseMarketCost": 253, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 2, + "max": 7 + } + } + }, + { + "id": "ironsword0", + "iconID": "items_weapons:0", + "name": "Épée en fer", + "category": "lsword", + "baseMarketCost": 12, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "hammer0", + "iconID": "items_weapons:45", + "name": "Marteau en fer", + "category": "hammer", + "baseMarketCost": 12, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "hammer1", + "iconID": "items_weapons:45", + "name": "Marteau géant", + "category": "hammer2h", + "baseMarketCost": 121, + "equipEffect": { + "increaseAttackCost": 10, + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 4, + "max": 7 + } + } + }, + { + "id": "dagger0", + "iconID": "items_weapons:14", + "name": "Dague en fer", + "category": "dagger", + "baseMarketCost": 12, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "dagger1", + "iconID": "items_weapons:14", + "name": "Dague en fer effilé", + "category": "dagger", + "baseMarketCost": 53, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 20, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "dagger2", + "iconID": "items_weapons:14", + "name": "Dague en fer supérieure", + "category": "dagger", + "baseMarketCost": 70, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 25, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "shortsword1", + "iconID": "items_weapons:15", + "name": "Épée courte en fer", + "category": "ssword", + "baseMarketCost": 78, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 15, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "ironsword1", + "iconID": "items_weapons:0", + "name": "Épée en fer", + "category": "lsword", + "baseMarketCost": 78, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 1, + "max": 3 + } + } + }, + { + "id": "ironsword2", + "iconID": "items_weapons:1", + "name": "Épée longue en fer", + "category": "lsword", + "baseMarketCost": 121, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 1, + "max": 4 + } + } + }, + { + "id": "broadsword1", + "iconID": "items_weapons:5", + "name": "Glaive en fer", + "category": "bsword", + "baseMarketCost": 251, + "equipEffect": { + "increaseAttackCost": 7, + "increaseAttackChance": 2, + "increaseAttackDamage": { + "min": 1, + "max": 10 + } + } + }, + { + "id": "broadsword2", + "iconID": "items_weapons:6", + "name": "Glaive en acier", + "category": "bsword", + "baseMarketCost": 582, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 15, + "increaseAttackDamage": { + "min": 3, + "max": 10 + } + } + }, + { + "id": "steelsword1", + "iconID": "items_weapons:7", + "name": "Épée en acier", + "category": "lsword", + "baseMarketCost": 874, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 24, + "increaseAttackDamage": { + "min": 3, + "max": 7 + } + } + }, + { + "id": "axe1", + "iconID": "items_weapons:56", + "name": "Hache de bûcheron", + "category": "axe", + "baseMarketCost": 24, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 1, + "max": 3 + } + } + }, + { + "id": "axe2", + "iconID": "items_weapons:56", + "name": "Hache en fer", + "category": "axe", + "baseMarketCost": 312, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 2, + "max": 5 + } + } + }, + { + "id": "quickdagger1", + "iconID": "items_weapons:14", + "name": "Poignard d'attaque rapide", + "category": "dagger", + "displaytype": 4, + "baseMarketCost": 512, + "equipEffect": { + "increaseAttackCost": 3, + "increaseAttackChance": 20, + "increaseBlockChance": -20 + } + } +] diff --git a/AndorsTrail/res/raw-fr/monsterlist_crossglen_animals.json b/AndorsTrail/res/raw-fr/monsterlist_crossglen_animals.json new file mode 100644 index 000000000..5b749a711 --- /dev/null +++ b/AndorsTrail/res/raw-fr/monsterlist_crossglen_animals.json @@ -0,0 +1,469 @@ +[ + { + "id": "tiny_rat", + "iconID": "monsters_rats:0", + "name": "Petit rat", + "spawnGroup": "trainingrat", + "monsterClass": 4, + "unique": 1, + "maxHP": 2, + "attackCost": 10, + "attackChance": 50, + "droplistID": "trainingrat", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "cave_rat", + "iconID": "monsters_rats:1", + "name": "Rat troglodyte", + "spawnGroup": "crossglen_caverat", + "monsterClass": 4, + "maxHP": 5, + "attackCost": 10, + "attackChance": 90, + "droplistID": "rat", + "attackDamage": { + "min": 2, + "max": 2 + } + }, + { + "id": "tough_cave_rat", + "iconID": "monsters_rats:1", + "name": "Rat troglodyte résistant", + "spawnGroup": "crossglen_caverat2", + "monsterClass": 4, + "maxHP": 5, + "attackCost": 5, + "attackChance": 90, + "droplistID": "rat", + "attackDamage": { + "min": 3, + "max": 3 + } + }, + { + "id": "strong_cave_rat", + "iconID": "monsters_rats:3", + "name": "Gros rat troglodyte", + "spawnGroup": "crossglen_caveboss", + "monsterClass": 4, + "unique": 1, + "maxHP": 20, + "attackCost": 5, + "attackChance": 100, + "blockChance": 10, + "droplistID": "caveratboss", + "attackDamage": { + "min": 2, + "max": 4 + } + }, + { + "id": "black_ant", + "iconID": "monsters_insects:0", + "name": "Fourmi noire", + "spawnGroup": "crossglen_ant", + "monsterClass": 1, + "maxHP": 3, + "attackCost": 10, + "attackChance": 70, + "droplistID": "insect", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "small_wasp", + "iconID": "monsters_insects:1", + "name": "Petite guêpe", + "spawnGroup": "crossglen_wasp", + "monsterClass": 1, + "maxHP": 4, + "attackCost": 10, + "attackChance": 70, + "droplistID": "wasp", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "beetle", + "iconID": "monsters_insects:4", + "name": "Scarabée", + "spawnGroup": "crossglen_beetle", + "monsterClass": 1, + "maxHP": 4, + "attackCost": 10, + "attackChance": 70, + "droplistID": "insect", + "attackDamage": { + "min": 3, + "max": 3 + } + }, + { + "id": "forest_wasp", + "iconID": "monsters_insects:1", + "name": "Guêpe sylvestre", + "spawnGroup": "forestwasp", + "monsterClass": 1, + "maxHP": 6, + "attackCost": 10, + "attackChance": 70, + "droplistID": "wasp", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "forest_ant", + "iconID": "monsters_insects:0", + "name": "Fourmi sylvestre", + "spawnGroup": "forestant", + "monsterClass": 1, + "maxHP": 4, + "attackCost": 10, + "attackChance": 90, + "blockChance": 10, + "droplistID": "insect", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "yellow_forest_ant", + "iconID": "monsters_insects:2", + "name": "Fourmi sylvestre jaune", + "spawnGroup": "forestant", + "monsterClass": 1, + "maxHP": 5, + "attackCost": 10, + "attackChance": 100, + "blockChance": 15, + "droplistID": "insect", + "attackDamage": { + "min": 2, + "max": 2 + } + }, + { + "id": "small_rabid_dog", + "iconID": "monsters_dogs:1", + "name": "Petit chien enragé", + "spawnGroup": "forestdog", + "monsterClass": 4, + "maxHP": 6, + "attackCost": 10, + "attackChance": 90, + "droplistID": "canine", + "attackDamage": { + "min": 2, + "max": 2 + } + }, + { + "id": "forest_snake", + "iconID": "monsters_snakes:1", + "name": "Serpent sylvestre", + "spawnGroup": "forestsnake", + "monsterClass": 7, + "maxHP": 7, + "attackCost": 10, + "attackChance": 110, + "blockChance": 10, + "droplistID": "snake", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "young_cave_snake", + "iconID": "monsters_snakes:3", + "name": "Jeune serpent troglodyte", + "spawnGroup": "cavesnake1", + "monsterClass": 7, + "maxHP": 8, + "attackCost": 5, + "attackChance": 110, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 10, + "droplistID": "snake", + "attackDamage": { + "min": 2, + "max": 2 + } + }, + { + "id": "cave_snake", + "iconID": "monsters_snakes:3", + "name": "Serpent troglodyte", + "spawnGroup": "cavesnake1", + "monsterClass": 7, + "maxHP": 12, + "attackCost": 5, + "attackChance": 110, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 15, + "droplistID": "snake", + "attackDamage": { + "min": 2, + "max": 2 + } + }, + { + "id": "venomous_cave_snake", + "iconID": "monsters_snakes:3", + "name": "Serpent troglodyte venimeux", + "spawnGroup": "cavesnake2", + "monsterClass": 7, + "maxHP": 15, + "maxAP": 10, + "attackCost": 5, + "attackChance": 110, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 10, + "droplistID": "snake", + "attackDamage": { + "min": 2, + "max": 2 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_weak", + "magnitude": 1, + "duration": 1, + "chance": 10 + } + ] + } + }, + { + "id": "tough_cave_snake", + "iconID": "monsters_snakes:3", + "name": "Serpent troglodyte résistant", + "spawnGroup": "cavesnake2", + "monsterClass": 7, + "maxHP": 21, + "attackCost": 5, + "attackChance": 110, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 15, + "droplistID": "snake", + "attackDamage": { + "min": 2, + "max": 2 + } + }, + { + "id": "basilisk", + "iconID": "monsters_rats:4", + "name": "Basilic", + "spawnGroup": "cavesnake2_boss", + "monsterClass": 7, + "maxHP": 40, + "attackCost": 7, + "attackChance": 40, + "blockChance": 50, + "damageResistance": 2, + "droplistID": "cavecritter", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "snake_servant", + "iconID": "monsters_liches:0", + "name": "Serpent acolyte", + "spawnGroup": "cavesnake3", + "monsterClass": 6, + "maxHP": 35, + "attackCost": 5, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 3, + "blockChance": 10, + "damageResistance": 1, + "droplistID": "lich1", + "attackDamage": { + "min": 2, + "max": 3 + } + }, + { + "id": "snake_master", + "iconID": "monsters_liches:1", + "name": "Maître serpent", + "spawnGroup": "cavesnake3_boss", + "monsterClass": 6, + "unique": 1, + "maxHP": 55, + "attackCost": 5, + "attackChance": 60, + "criticalSkill": 200, + "criticalMultiplier": 3, + "blockChance": 10, + "damageResistance": 4, + "droplistID": "snakemaster", + "phraseID": "snakemaster", + "attackDamage": { + "min": 1, + "max": 4 + } + }, + { + "id": "rabid_boar", + "iconID": "monsters_dogs:6", + "name": "Sanglier enragé", + "spawnGroup": "forestboar", + "monsterClass": 4, + "maxHP": 20, + "attackCost": 5, + "attackChance": 110, + "blockChance": 30, + "droplistID": "canineboss", + "attackDamage": { + "min": 3, + "max": 3 + } + }, + { + "id": "rabid_fox", + "iconID": "monsters_dogs:3", + "name": "Renard enragé", + "spawnGroup": "fox1", + "monsterClass": 4, + "maxHP": 25, + "attackCost": 5, + "attackChance": 100, + "blockChance": 50, + "droplistID": "canine", + "attackDamage": { + "min": 3, + "max": 3 + } + }, + { + "id": "yellow_cave_ant", + "iconID": "monsters_insects:2", + "name": "Fourmi troglodyte jaune", + "spawnGroup": "pitcave1", + "monsterClass": 1, + "maxHP": 20, + "attackCost": 3, + "attackChance": 30, + "blockChance": 80, + "droplistID": "insect", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "young_teeth_critter", + "iconID": "monsters_misc:0", + "name": "Jeune bestiole à dents", + "spawnGroup": "pitcave2", + "monsterClass": 7, + "maxHP": 15, + "attackCost": 2, + "attackChance": 50, + "blockChance": 70, + "droplistID": "cavecritter", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "teeth_critter", + "iconID": "monsters_misc:0", + "name": "Bestiole à dents", + "spawnGroup": "pitcave2", + "monsterClass": 7, + "maxHP": 25, + "attackCost": 2, + "attackChance": 60, + "criticalSkill": 10, + "criticalMultiplier": 3, + "blockChance": 70, + "droplistID": "cavecritter", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "young_minotaur", + "iconID": "monsters_misc:5", + "name": "Jeune minotaure", + "spawnGroup": "pitcave2", + "monsterClass": 5, + "maxHP": 45, + "attackCost": 6, + "attackChance": 20, + "criticalSkill": 40, + "criticalMultiplier": 3, + "blockChance": 50, + "damageResistance": 2, + "droplistID": "cavemonster", + "attackDamage": { + "min": 4, + "max": 4 + } + }, + { + "id": "strong_minotaur", + "iconID": "monsters_misc:5", + "name": "Gros minotaure", + "spawnGroup": "pitcave2_boss", + "monsterClass": 5, + "maxHP": 53, + "attackCost": 6, + "attackChance": 40, + "criticalSkill": 50, + "criticalMultiplier": 3, + "blockChance": 50, + "damageResistance": 2, + "droplistID": "cavemonster", + "attackDamage": { + "min": 5, + "max": 5 + } + }, + { + "id": "irogotu", + "iconID": "monsters_liches:0", + "name": "Irogotu", + "spawnGroup": "pitcave_boss", + "monsterClass": 6, + "unique": 1, + "maxHP": 61, + "attackCost": 3, + "attackChance": 50, + "criticalSkill": 40, + "criticalMultiplier": 3, + "blockChance": 70, + "damageResistance": 4, + "droplistID": "irogotu", + "phraseID": "irogotu", + "attackDamage": { + "min": 2, + "max": 5 + } + } +] diff --git a/AndorsTrail/res/raw-fr/monsterlist_crossglen_npcs.json b/AndorsTrail/res/raw-fr/monsterlist_crossglen_npcs.json new file mode 100644 index 000000000..a8d84e370 --- /dev/null +++ b/AndorsTrail/res/raw-fr/monsterlist_crossglen_npcs.json @@ -0,0 +1,119 @@ +[ + { + "id": "mikhail", + "iconID": "monsters_mage2:0", + "name": "Mikhail", + "spawnGroup": "mikhail", + "monsterClass": 0, + "phraseID": "mikhail_start_select" + }, + { + "id": "leta", + "iconID": "monsters_men:2", + "name": "Leta", + "spawnGroup": "leta", + "monsterClass": 0, + "phraseID": "leta1" + }, + { + "id": "audir", + "iconID": "monsters_men:0", + "name": "Audir", + "spawnGroup": "audir", + "monsterClass": 0, + "droplistID": "shop_audir", + "phraseID": "audir1" + }, + { + "id": "arambold", + "iconID": "monsters_men:3", + "name": "Arambold", + "spawnGroup": "arambold", + "monsterClass": 0, + "droplistID": "shop_arambold", + "phraseID": "arambold1" + }, + { + "id": "tharal", + "iconID": "monsters_men:4", + "name": "Tharal", + "spawnGroup": "tharal", + "monsterClass": 0, + "droplistID": "shop_tharal", + "phraseID": "tharal1" + }, + { + "id": "drunk", + "iconID": "monsters_rltiles3:14", + "name": "Ivrogne", + "spawnGroup": "drunk", + "monsterClass": 0, + "phraseID": "drunk1" + }, + { + "id": "mara", + "iconID": "monsters_men:7", + "name": "Mara", + "spawnGroup": "mara", + "monsterClass": 0, + "droplistID": "shop_mara", + "phraseID": "mara1" + }, + { + "id": "gruil", + "iconID": "monsters_rogue1:0", + "name": "Gruil", + "spawnGroup": "gruil", + "monsterClass": 0, + "droplistID": "shop_gruil", + "phraseID": "gruil1" + }, + { + "id": "leonid", + "iconID": "monsters_men:3", + "name": "Leonid", + "spawnGroup": "leonid", + "monsterClass": 0, + "phraseID": "leonid1" + }, + { + "id": "farmer", + "iconID": "monsters_man1:0", + "name": "Fermier", + "spawnGroup": "crossglen_farmer1", + "monsterClass": 0, + "phraseID": "farm1" + }, + { + "id": "tired_farmer", + "iconID": "monsters_man1:0", + "name": "Fermier épuisé", + "spawnGroup": "crossglen_farmer2", + "monsterClass": 0, + "phraseID": "farm2" + }, + { + "id": "oromir", + "iconID": "monsters_man1:0", + "name": "Oromir", + "spawnGroup": "oromir", + "monsterClass": 0, + "phraseID": "oromir1" + }, + { + "id": "odair", + "iconID": "monsters_men:8", + "name": "Odair", + "spawnGroup": "odair", + "monsterClass": 0, + "phraseID": "odair1" + }, + { + "id": "jan", + "iconID": "monsters_rltiles3:14", + "name": "Jan", + "spawnGroup": "jan", + "monsterClass": 0, + "phraseID": "jan_start_select" + } +] diff --git a/AndorsTrail/res/raw-fr/monsterlist_fallhaven_animals.json b/AndorsTrail/res/raw-fr/monsterlist_fallhaven_animals.json new file mode 100644 index 000000000..777c1832a --- /dev/null +++ b/AndorsTrail/res/raw-fr/monsterlist_fallhaven_animals.json @@ -0,0 +1,292 @@ +[ + { + "id": "lost_spirit", + "iconID": "monsters_rltiles2:45", + "name": "Esprit errant", + "spawnGroup": "minorhaunt1", + "monsterClass": 8, + "maxHP": 15, + "attackCost": 10, + "attackChance": 50, + "blockChance": 10, + "damageResistance": 3, + "droplistID": "haunt", + "phraseID": "haunt", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "lost_soul", + "iconID": "monsters_rltiles2:45", + "name": "Âme errante", + "spawnGroup": "minorhaunt2", + "monsterClass": 8, + "maxHP": 15, + "attackCost": 10, + "attackChance": 50, + "blockChance": 10, + "damageResistance": 4, + "droplistID": "haunt", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "haunting", + "iconID": "monsters_ghost1:0", + "name": "Fantôme", + "spawnGroup": "haunt3", + "monsterClass": 8, + "maxHP": 31, + "maxAP": 10, + "moveCost": 10, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 30, + "damageResistance": 1, + "droplistID": "haunt", + "attackDamage": { + "min": 1, + "max": 5 + } + }, + { + "id": "skeletal_warrior", + "iconID": "monsters_skeleton1:0", + "name": "Guerrier squelette", + "spawnGroup": "skeleton1", + "monsterClass": 3, + "maxHP": 52, + "maxAP": 10, + "moveCost": 10, + "attackCost": 5, + "attackChance": 60, + "blockChance": 40, + "damageResistance": 1, + "droplistID": "skeleton", + "attackDamage": { + "min": 1, + "max": 3 + } + }, + { + "id": "skeletal_master", + "iconID": "monsters_skeleton2:0", + "name": "Maître squelette", + "spawnGroup": "skeletonmaster", + "monsterClass": 3, + "maxHP": 52, + "maxAP": 10, + "moveCost": 10, + "attackCost": 5, + "attackChance": 70, + "blockChance": 30, + "damageResistance": 2, + "droplistID": "skeleton", + "attackDamage": { + "min": 1, + "max": 3 + } + }, + { + "id": "skeleton", + "iconID": "monsters_skeleton1:0", + "name": "Squelette", + "spawnGroup": "skeleton1", + "monsterClass": 3, + "maxHP": 35, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 60, + "blockChance": 40, + "droplistID": "skeleton", + "attackDamage": { + "min": 1, + "max": 4 + } + }, + { + "id": "guardian_of_the_catacombs", + "iconID": "monsters_rltiles2:45", + "name": "Gardien des catacombes", + "spawnGroup": "catacombguard1", + "monsterClass": 8, + "unique": 1, + "maxHP": 6, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 10, + "blockChance": 10, + "damageResistance": 3, + "droplistID": "catacombguard", + "phraseID": "catacombguard", + "attackDamage": { + "min": 1, + "max": 6 + } + }, + { + "id": "catacomb_rat", + "iconID": "monsters_rats:0", + "name": "Rat des catacombes", + "spawnGroup": "catacombrat1", + "monsterClass": 4, + "maxHP": 15, + "maxAP": 10, + "moveCost": 10, + "attackCost": 3, + "attackChance": 60, + "blockChance": 40, + "droplistID": "catacombrat", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "large_catacomb_rat", + "iconID": "monsters_rats:3", + "name": "Gros rat des catacombes", + "spawnGroup": "catacombrat1", + "monsterClass": 4, + "maxHP": 21, + "maxAP": 10, + "moveCost": 10, + "attackCost": 3, + "attackChance": 60, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 40, + "droplistID": "catacombrat", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "ghostly_visage", + "iconID": "monsters_ghost1:0", + "name": "Figure fantomatique", + "spawnGroup": "catacombguard2", + "monsterClass": 8, + "maxHP": 16, + "maxAP": 10, + "moveCost": 10, + "attackCost": 5, + "attackChance": 20, + "blockChance": 20, + "damageResistance": 2, + "droplistID": "catacombguard", + "attackDamage": { + "min": 1, + "max": 4 + } + }, + { + "id": "spectre", + "iconID": "monsters_rltiles2:45", + "name": "Spectre", + "spawnGroup": "catacombguard2", + "monsterClass": 8, + "maxHP": 15, + "maxAP": 10, + "moveCost": 10, + "attackCost": 3, + "attackChance": 50, + "blockChance": 60, + "damageResistance": 2, + "droplistID": "catacombguard", + "attackDamage": { + "min": 1, + "max": 5 + } + }, + { + "id": "apparition", + "iconID": "monsters_rltiles2:45", + "name": "Apparition", + "spawnGroup": "catacombguard3", + "monsterClass": 8, + "maxHP": 17, + "maxAP": 10, + "moveCost": 10, + "attackCost": 3, + "blockChance": 70, + "damageResistance": 2, + "droplistID": "catacombguard", + "attackDamage": { + "min": 1, + "max": 5 + } + }, + { + "id": "shade", + "iconID": "monsters_ghost1:0", + "name": "Ombre", + "spawnGroup": "catacombguard3", + "monsterClass": 8, + "maxHP": 16, + "maxAP": 10, + "moveCost": 10, + "attackCost": 5, + "attackChance": 20, + "blockChance": 20, + "damageResistance": 3, + "droplistID": "catacombguard", + "attackDamage": { + "min": 1, + "max": 4 + } + }, + { + "id": "young_gargoyle", + "iconID": "monsters_misc:2", + "name": "Jeune gargouille", + "spawnGroup": "catacombguard3", + "monsterClass": 3, + "maxHP": 35, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 110, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 70, + "damageResistance": 1, + "droplistID": "catacombguard", + "attackDamage": { + "min": 2, + "max": 5 + } + }, + { + "id": "ghost_of_luthor", + "iconID": "monsters_liches:2", + "name": "Fantôme de Luthor", + "spawnGroup": "luthor", + "monsterClass": 6, + "unique": 1, + "maxHP": 86, + "maxAP": 10, + "moveCost": 10, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 15, + "criticalMultiplier": 2, + "blockChance": 50, + "damageResistance": 3, + "droplistID": "luthor", + "phraseID": "luthor", + "attackDamage": { + "min": 2, + "max": 5 + } + } +] diff --git a/AndorsTrail/res/raw-fr/monsterlist_fallhaven_npcs.json b/AndorsTrail/res/raw-fr/monsterlist_fallhaven_npcs.json new file mode 100644 index 000000000..abedd3662 --- /dev/null +++ b/AndorsTrail/res/raw-fr/monsterlist_fallhaven_npcs.json @@ -0,0 +1,333 @@ +[ + { + "id": "warden", + "iconID": "monsters_men:3", + "name": "Sentinelle", + "spawnGroup": "fallhaven_warden", + "monsterClass": 0, + "phraseID": "fallhaven_warden_select_1" + }, + { + "id": "guard", + "iconID": "monsters_rltiles3:14", + "name": "Garde", + "spawnGroup": "fallhaven_guard", + "monsterClass": 0, + "phraseID": "fallhaven_guard" + }, + { + "id": "acolyte", + "iconID": "monsters_men:4", + "name": "Acolyte", + "spawnGroup": "fallhaven_priest", + "monsterClass": 0, + "phraseID": "fallhaven_priest" + }, + { + "id": "bearded_citizen", + "iconID": "monsters_man1:0", + "name": "Homme barbu", + "spawnGroup": "fallhaven_citizen1", + "monsterClass": 0, + "phraseID": "fallhaven_citizen1" + }, + { + "id": "old_citizen", + "iconID": "monsters_men:2", + "name": "Habitant âgé", + "spawnGroup": "fallhaven_citizen2", + "monsterClass": 0, + "phraseID": "fallhaven_citizen2" + }, + { + "id": "tired_citizen", + "iconID": "monsters_men:7", + "name": "Habitant fatigué", + "spawnGroup": "fallhaven_citizen4", + "monsterClass": 0, + "phraseID": "fallhaven_citizen4" + }, + { + "id": "citizen", + "iconID": "monsters_man1:0", + "name": "Habitant", + "spawnGroup": "fallhaven_citizen3", + "monsterClass": 0, + "phraseID": "fallhaven_citizen3" + }, + { + "id": "grumpy_citizen", + "iconID": "monsters_men:2", + "name": "Habitant maussade", + "spawnGroup": "fallhaven_citizen5", + "monsterClass": 0, + "phraseID": "fallhaven_citizen5" + }, + { + "id": "blond_citizen", + "iconID": "monsters_men:7", + "name": "Habitant blond", + "spawnGroup": "fallhaven_citizen6", + "monsterClass": 0, + "phraseID": "fallhaven_citizen6" + }, + { + "id": "bucus", + "iconID": "monsters_rogue1:0", + "name": "Bucus", + "spawnGroup": "bucus", + "monsterClass": 0, + "phraseID": "bucus_welcome" + }, + { + "id": "drunkard", + "iconID": "monsters_men:0", + "name": "Ivrogne", + "spawnGroup": "fallhaven_drunk", + "monsterClass": 0, + "phraseID": "fallhaven_drunk" + }, + { + "id": "old_man", + "iconID": "monsters_men:5", + "name": "Vieil homme", + "spawnGroup": "fallhaven_oldman", + "monsterClass": 0, + "phraseID": "fallhaven_oldman" + }, + { + "id": "nocmar", + "iconID": "monsters_men:8", + "name": "Nocmar", + "spawnGroup": "nocmar", + "monsterClass": 0, + "droplistID": "nocmar", + "phraseID": "nocmar" + }, + { + "id": "prisoner", + "iconID": "monsters_rogue1:0", + "name": "Prisonnier", + "spawnGroup": "fallhaven_prisoner", + "monsterClass": 0, + "maxHP": 1, + "maxAP": 1, + "moveCost": 1, + "attackCost": 1, + "attackChance": 0 + }, + { + "id": "ganos", + "iconID": "monsters_rogue1:0", + "name": "Ganos", + "spawnGroup": "ganos", + "monsterClass": 0, + "droplistID": "shop_ganos", + "phraseID": "ganos" + }, + { + "id": "arcir", + "iconID": "monsters_mage2:0", + "name": "Arcir", + "spawnGroup": "arcir", + "monsterClass": 0, + "phraseID": "arcir_start" + }, + { + "id": "athamyr", + "iconID": "monsters_men:4", + "name": "Athamyr", + "spawnGroup": "athamyr", + "monsterClass": 0, + "phraseID": "athamyr" + }, + { + "id": "thoronir", + "iconID": "monsters_men2:8", + "name": "Thoronir", + "spawnGroup": "thoronir", + "monsterClass": 0, + "droplistID": "shop_thoronir", + "phraseID": "thoronir_default" + }, + { + "id": "chapelgoer", + "iconID": "monsters_men:6", + "name": "Fidèle", + "spawnGroup": "chapelgoer", + "monsterClass": 0, + "phraseID": "chapelgoer" + }, + { + "id": "potion_merchant", + "iconID": "monsters_mage2:0", + "name": "Marchand de potions", + "spawnGroup": "fallhaven_potions", + "monsterClass": 0, + "droplistID": "shop_fallhaven_potions", + "phraseID": "fallhaven_potions" + }, + { + "id": "tailor", + "iconID": "monsters_men2:0", + "name": "Tailleur", + "spawnGroup": "fallhaven_clothes", + "monsterClass": 0, + "droplistID": "shop_fallhaven_clothes", + "phraseID": "fallhaven_clothes" + }, + { + "id": "bela", + "iconID": "monsters_men:7", + "name": "Bela", + "spawnGroup": "bela", + "monsterClass": 0, + "droplistID": "shop_bela", + "phraseID": "bela" + }, + { + "id": "larcal", + "iconID": "monsters_men2:2", + "name": "Larcal", + "spawnGroup": "larcal", + "monsterClass": 0, + "unique": 1, + "maxHP": 51, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 25, + "blockChance": 50, + "droplistID": "larcal", + "phraseID": "larcal", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "gaela", + "iconID": "monsters_men2:9", + "name": "Gaela", + "spawnGroup": "gaela", + "monsterClass": 0, + "phraseID": "gaela" + }, + { + "id": "unnmir", + "iconID": "monsters_mage2:0", + "name": "Unnmir", + "spawnGroup": "unnmir", + "monsterClass": 0, + "phraseID": "unnmir" + }, + { + "id": "rigmor", + "iconID": "monsters_men:1", + "name": "Rigmor", + "spawnGroup": "rigmor", + "monsterClass": 0, + "phraseID": "rigmor" + }, + { + "id": "jakrar", + "iconID": "monsters_men2:2", + "name": "Jakrar", + "spawnGroup": "fallhaven_lumberjack", + "monsterClass": 0, + "phraseID": "fallhaven_lumberjack" + }, + { + "id": "alaun", + "iconID": "monsters_mage2:0", + "name": "Alaun", + "spawnGroup": "alaun", + "monsterClass": 0, + "phraseID": "alaun" + }, + { + "id": "busy_farmer", + "iconID": "monsters_man1:0", + "name": "Fermier affairé", + "spawnGroup": "fallhaven_farmer1", + "monsterClass": 0, + "phraseID": "fallhaven_farmer1" + }, + { + "id": "old_farmer", + "iconID": "monsters_mage2:0", + "name": "Vieux fermier", + "spawnGroup": "fallhaven_farmer2", + "monsterClass": 0, + "phraseID": "fallhaven_farmer2" + }, + { + "id": "khorand", + "iconID": "monsters_men:3", + "name": "Khorand", + "spawnGroup": "khorand", + "monsterClass": 0, + "phraseID": "khorand" + }, + { + "id": "vacor", + "iconID": "monsters_mage:0", + "name": "Vacor", + "spawnGroup": "vacor", + "monsterClass": 0, + "unique": 1, + "maxHP": 72, + "attackCost": 5, + "attackChance": 110, + "blockChance": 40, + "damageResistance": 2, + "droplistID": "vacor", + "phraseID": "vacor", + "attackDamage": { + "min": 4, + "max": 8 + } + }, + { + "id": "unzel", + "iconID": "monsters_men:8", + "name": "Unzel", + "spawnGroup": "unzel", + "monsterClass": 0, + "unique": 1, + "maxHP": 59, + "attackCost": 10, + "attackChance": 80, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 40, + "damageResistance": 2, + "droplistID": "unzel", + "phraseID": "unzel", + "attackDamage": { + "min": 5, + "max": 9 + } + }, + { + "id": "shady_bandit", + "iconID": "monsters_men2:9", + "name": "Bandit louche", + "spawnGroup": "fallhaven_bandit", + "monsterClass": 0, + "unique": 1, + "maxHP": 45, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 50, + "damageResistance": 2, + "droplistID": "fallhaven_bandit", + "phraseID": "fallhaven_bandit", + "attackDamage": { + "min": 3, + "max": 9 + } + } +] diff --git a/AndorsTrail/res/raw-fr/monsterlist_v0610_monsters1.json b/AndorsTrail/res/raw-fr/monsterlist_v0610_monsters1.json new file mode 100644 index 000000000..4f9c3e886 --- /dev/null +++ b/AndorsTrail/res/raw-fr/monsterlist_v0610_monsters1.json @@ -0,0 +1,494 @@ +[ + { + "id": "young_larval_burrower", + "iconID": "monsters_rltiles2:164", + "name": "Young larval burrower", + "spawnGroup": "larva_1", + "monsterClass": 1, + "maxHP": 30, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 35, + "criticalMultiplier": 3, + "blockChance": 25, + "droplistID": "larva_1", + "attackDamage": { + "min": 1, + "max": 6 + } + }, + { + "id": "larval_burrower", + "iconID": "monsters_rltiles2:164", + "name": "Larval burrower", + "spawnGroup": "larva_2", + "monsterClass": 1, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 35, + "criticalMultiplier": 3, + "blockChance": 25, + "droplistID": "larva_2", + "attackDamage": { + "min": 1, + "max": 6 + } + }, + { + "id": "larval_boss", + "iconID": "monsters_rltiles2:164", + "name": "Strong larval burrower", + "spawnGroup": "larva_boss", + "monsterClass": 1, + "unique": 1, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 35, + "criticalMultiplier": 3, + "blockChance": 25, + "droplistID": "larva_boss", + "attackDamage": { + "min": 1, + "max": 6 + } + }, + { + "id": "rivertroll", + "iconID": "monsters_rltiles1:104", + "name": "River troll", + "spawnGroup": "rivertroll", + "monsterClass": 5, + "unique": 1, + "maxHP": 210, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 30, + "criticalMultiplier": 4, + "blockChance": 65, + "damageResistance": 7, + "droplistID": "rivertroll", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "grass_ant", + "iconID": "monsters_insects:0", + "name": "Grasslands ant", + "spawnGroup": "fieldcritter_0", + "monsterClass": 1, + "maxHP": 29, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 80, + "droplistID": "fieldcritter_0", + "attackDamage": { + "min": 0, + "max": 4 + } + }, + { + "id": "grass_ant2", + "iconID": "monsters_insects:2", + "name": "Tough grasslands ant", + "spawnGroup": "fieldcritter_0", + "monsterClass": 1, + "maxHP": 29, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "droplistID": "fieldcritter_0", + "attackDamage": { + "min": 1, + "max": 5 + } + }, + { + "id": "grass_beetle", + "iconID": "monsters_insects:4", + "name": "Grasslands beetle", + "spawnGroup": "fieldcritter_1", + "monsterClass": 1, + "maxHP": 34, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 120, + "blockChance": 80, + "damageResistance": 3, + "droplistID": "fieldcritter_1", + "attackDamage": { + "min": 0, + "max": 5 + } + }, + { + "id": "grass_beetle2", + "iconID": "monsters_insects:4", + "name": "Tough grasslands beetle", + "spawnGroup": "fieldcritter_1", + "monsterClass": 1, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 125, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "fieldcritter_1", + "attackDamage": { + "min": 1, + "max": 6 + } + }, + { + "id": "grass_snake", + "iconID": "monsters_rltiles2:25", + "name": "Grasslands snake", + "spawnGroup": "fieldcritter_2", + "monsterClass": 7, + "maxHP": 36, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 80, + "droplistID": "fieldcritter_2", + "attackDamage": { + "min": 0, + "max": 6 + } + }, + { + "id": "grass_snake2", + "iconID": "monsters_rltiles2:25", + "name": "Tough grasslands snake", + "spawnGroup": "fieldcritter_2", + "monsterClass": 7, + "maxHP": 38, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "droplistID": "fieldcritter_2", + "attackDamage": { + "min": 1, + "max": 7 + } + }, + { + "id": "grass_lizard", + "iconID": "monsters_rltiles2:114", + "name": "Grasslands lizard", + "spawnGroup": "fieldcritter_3", + "monsterClass": 7, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 80, + "damageResistance": 3, + "droplistID": "fieldcritter_3", + "attackDamage": { + "min": 0, + "max": 8 + } + }, + { + "id": "grass_lizard2", + "iconID": "monsters_rltiles2:117", + "name": "Black grasslands lizard", + "spawnGroup": "fieldcritter_3", + "monsterClass": 7, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "fieldcritter_3", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "keknazar", + "iconID": "monsters_misc:9", + "name": "Keknazar", + "spawnGroup": "keknazar", + "monsterClass": 7, + "unique": 1, + "maxHP": 90, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 50, + "criticalSkill": 20, + "criticalMultiplier": 3, + "blockChance": 70, + "damageResistance": 8, + "droplistID": "keknazar", + "phraseID": "keknazar", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "crossroads_rat", + "iconID": "monsters_rats:0", + "name": "Rat", + "spawnGroup": "crossroads_rat", + "monsterClass": 4, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 50, + "blockChance": 30, + "droplistID": "rat", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "fieldwasp_0", + "iconID": "monsters_insects:1", + "name": "Frantic forest wasp", + "spawnGroup": "fieldwasp_0", + "monsterClass": 1, + "maxHP": 29, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 95, + "droplistID": "fieldwasp", + "attackDamage": { + "min": 2, + "max": 6 + } + }, + { + "id": "fieldwasp_1", + "iconID": "monsters_insects:1", + "name": "Frantic forest wasp", + "spawnGroup": "fieldwasp_1", + "monsterClass": 1, + "maxHP": 32, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 70, + "criticalMultiplier": 3, + "blockChance": 125, + "droplistID": "fieldwasp", + "attackDamage": { + "min": 2, + "max": 6 + } + }, + { + "id": "fieldwasp_2", + "iconID": "monsters_insects:1", + "name": "Frantic forest wasp", + "spawnGroup": "fieldwasp_2", + "monsterClass": 1, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 75, + "criticalMultiplier": 3, + "blockChance": 130, + "droplistID": "fieldwasp", + "attackDamage": { + "min": 2, + "max": 6 + } + }, + { + "id": "izthiel_1", + "iconID": "monsters_rltiles2:51", + "name": "Young Izthiel", + "spawnGroup": "izthiel_1", + "monsterClass": 7, + "maxHP": 40, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "blockChance": 57, + "damageResistance": 5, + "droplistID": "izthiel", + "attackDamage": { + "min": 2, + "max": 7 + } + }, + { + "id": "izthiel_2", + "iconID": "monsters_rltiles2:49", + "name": "Izthiel", + "spawnGroup": "izthiel_2", + "monsterClass": 7, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "blockChance": 58, + "damageResistance": 6, + "droplistID": "izthiel", + "attackDamage": { + "min": 2, + "max": 7 + } + }, + { + "id": "izthiel_3", + "iconID": "monsters_rltiles2:48", + "name": "Strong Izthiel", + "spawnGroup": "izthiel_3", + "monsterClass": 7, + "maxHP": 52, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "blockChance": 60, + "damageResistance": 8, + "droplistID": "izthiel", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "bleeding_wound", + "magnitude": 2, + "duration": 4, + "chance": 40 + } + ] + } + }, + { + "id": "izthiel_4", + "iconID": "monsters_rltiles2:52", + "name": "Izthiel Guardian", + "spawnGroup": "izthiel_4", + "monsterClass": 7, + "maxHP": 54, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 60, + "damageResistance": 11, + "droplistID": "izthiel_4", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "bleeding_wound", + "magnitude": 3, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "frog_1", + "iconID": "monsters_rltiles1:131", + "name": "River frog", + "spawnGroup": "frog_1", + "monsterClass": 7, + "maxHP": 15, + "maxAP": 10, + "moveCost": 5, + "attackCost": 2, + "attackChance": 150, + "blockChance": 45, + "droplistID": "frog", + "attackDamage": { + "min": 0, + "max": 5 + } + }, + { + "id": "frog_2", + "iconID": "monsters_rltiles1:131", + "name": "Tough river frog", + "spawnGroup": "frog_2", + "monsterClass": 7, + "maxHP": 17, + "maxAP": 10, + "moveCost": 5, + "attackCost": 2, + "attackChance": 160, + "blockChance": 49, + "droplistID": "frog", + "attackDamage": { + "min": 0, + "max": 5 + } + }, + { + "id": "frog_3", + "iconID": "monsters_rltiles1:130", + "name": "Poisonous river frog", + "spawnGroup": "frog_3", + "monsterClass": 7, + "maxHP": 21, + "maxAP": 10, + "moveCost": 5, + "attackCost": 2, + "attackChance": 165, + "blockChance": 55, + "droplistID": "frog_3", + "attackDamage": { + "min": 0, + "max": 5 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_weak", + "magnitude": 2, + "duration": 5, + "chance": 30 + } + ] + } + } +] diff --git a/AndorsTrail/res/raw-fr/monsterlist_v0610_monsters2.json b/AndorsTrail/res/raw-fr/monsterlist_v0610_monsters2.json new file mode 100644 index 000000000..fe36441b0 --- /dev/null +++ b/AndorsTrail/res/raw-fr/monsterlist_v0610_monsters2.json @@ -0,0 +1,450 @@ +[ + { + "id": "iqhan_1a", + "iconID": "monsters_rltiles2:96", + "name": "Iqhan worker thrall", + "spawnGroup": "iqhan_1", + "monsterClass": 0, + "maxHP": 55, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 110, + "blockChance": 70, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "iqhan_1b", + "iconID": "monsters_rltiles2:96", + "name": "Iqhan thrall servant", + "spawnGroup": "iqhan_1", + "monsterClass": 0, + "maxHP": 57, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "criticalSkill": 15, + "criticalMultiplier": 2, + "blockChance": 70, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "iqhan_2a", + "iconID": "monsters_rltiles2:97", + "name": "Iqhan guard thrall", + "spawnGroup": "iqhan_2", + "monsterClass": 0, + "maxHP": 59, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 130, + "criticalSkill": 15, + "criticalMultiplier": 2, + "blockChance": 70, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "iqhan_2b", + "iconID": "monsters_rltiles2:97", + "name": "Iqhan thrall", + "spawnGroup": "iqhan_2", + "monsterClass": 0, + "maxHP": 62, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 130, + "criticalSkill": 15, + "criticalMultiplier": 2, + "blockChance": 70, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 10 + } + }, + { + "id": "iqhan_3a", + "iconID": "monsters_rltiles2:128", + "name": "Iqhan warrior thrall", + "spawnGroup": "iqhan_3", + "monsterClass": 0, + "maxHP": 65, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 140, + "criticalSkill": 15, + "criticalMultiplier": 2, + "blockChance": 70, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 11 + } + }, + { + "id": "iqhan_3b", + "iconID": "monsters_rltiles2:129", + "name": "Iqhan master", + "spawnGroup": "iqhan_3", + "monsterClass": 0, + "maxHP": 67, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 140, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 12 + } + }, + { + "id": "iqhan_4a", + "iconID": "monsters_rltiles2:129", + "name": "Iqhan master", + "spawnGroup": "iqhan_4", + "monsterClass": 0, + "maxHP": 69, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 140, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 13 + } + }, + { + "id": "iqhan_4b", + "iconID": "monsters_rltiles2:133", + "name": "Iqhan master", + "spawnGroup": "iqhan_4", + "monsterClass": 0, + "maxHP": 71, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 140, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "iqhan", + "attackDamage": { + "min": 2, + "max": 15 + } + }, + { + "id": "iqhan_ch_1a", + "iconID": "monsters_rltiles2:135", + "name": "Iqhan chaos evoker", + "spawnGroup": "iqhan_ch_1", + "monsterClass": 0, + "maxHP": 73, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 140, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "iqhan", + "attackDamage": { + "min": 2, + "max": 15 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 2, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "iqhan_ch_1b", + "iconID": "monsters_rltiles2:135", + "name": "Iqhan chaos evoker", + "spawnGroup": "iqhan_ch_1", + "monsterClass": 0, + "maxHP": 75, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "iqhan", + "attackDamage": { + "min": 2, + "max": 14 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 2, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "iqhan_ch_2a", + "iconID": "monsters_rltiles2:134", + "name": "Iqhan chaos servant", + "spawnGroup": "iqhan_ch_2", + "monsterClass": 0, + "maxHP": 78, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "iqhan", + "attackDamage": { + "min": 2, + "max": 14 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 4, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "iqhan_ch_2b", + "iconID": "monsters_rltiles2:134", + "name": "Iqhan chaos servant", + "spawnGroup": "iqhan_ch_2", + "monsterClass": 0, + "maxHP": 79, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "criticalSkill": 25, + "criticalMultiplier": 2, + "blockChance": 75, + "droplistID": "iqhan", + "attackDamage": { + "min": 2, + "max": 13 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 4, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "iqhan_ch_3a", + "iconID": "monsters_rltiles2:136", + "name": "Iqhan chaos master", + "spawnGroup": "iqhan_ch_3", + "monsterClass": 0, + "maxHP": 83, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 170, + "criticalSkill": 25, + "criticalMultiplier": 2, + "blockChance": 75, + "droplistID": "iqhan_master", + "attackDamage": { + "min": 2, + "max": 13 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 4, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "iqhan_ch_3b", + "iconID": "monsters_rltiles2:137", + "name": "Iqhan chaos master", + "spawnGroup": "iqhan_ch_3", + "monsterClass": 0, + "maxHP": 85, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 170, + "criticalSkill": 25, + "criticalMultiplier": 2, + "blockChance": 75, + "droplistID": "iqhan_master", + "attackDamage": { + "min": 2, + "max": 13 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 4, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "iqhan_chb_1a", + "iconID": "monsters_rltiles1:19", + "name": "Iqhan chaos beast", + "spawnGroup": "iqhan_chb_1", + "monsterClass": 3, + "maxHP": 122, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 150, + "criticalSkill": 10, + "criticalMultiplier": 3, + "blockChance": 45, + "damageResistance": 9, + "droplistID": "iqhan_beast", + "attackDamage": { + "min": 0, + "max": 15 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 5, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "iqhan_chb_1b", + "iconID": "monsters_rltiles1:19", + "name": "Iqhan chaos beast", + "spawnGroup": "iqhan_chb_1", + "monsterClass": 3, + "maxHP": 140, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 150, + "criticalSkill": 10, + "criticalMultiplier": 3, + "blockChance": 45, + "damageResistance": 9, + "droplistID": "iqhan_beast", + "attackDamage": { + "min": 0, + "max": 15 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 5, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "iqhan_greeter", + "iconID": "monsters_men:8", + "name": "Rancent", + "spawnGroup": "iqhan_greeter", + "monsterClass": 0, + "unique": 1, + "phraseID": "iqhan_greeter" + }, + { + "id": "iqhan_boss", + "iconID": "monsters_rltiles1:5", + "name": "Iqhan chaos enslaver", + "spawnGroup": "iqhan_boss", + "monsterClass": 6, + "unique": 1, + "maxHP": 120, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 170, + "criticalSkill": 30, + "criticalMultiplier": 2, + "blockChance": 75, + "damageResistance": 2, + "droplistID": "iqhan_boss", + "phraseID": "iqhan_boss", + "attackDamage": { + "min": 2, + "max": 13 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 7, + "duration": 5, + "chance": 50 + }, + { + "condition": "chaotic_curse", + "magnitude": 3, + "duration": 5, + "chance": 50 + } + ] + } + } +] diff --git a/AndorsTrail/res/raw-fr/monsterlist_v0610_npcs1.json b/AndorsTrail/res/raw-fr/monsterlist_v0610_npcs1.json new file mode 100644 index 000000000..c737c041e --- /dev/null +++ b/AndorsTrail/res/raw-fr/monsterlist_v0610_npcs1.json @@ -0,0 +1,582 @@ +[ + { + "id": "lostsheep1", + "iconID": "monsters_karvis2:8", + "name": "Sheep", + "spawnGroup": "tinlyn_lostsheep1", + "monsterClass": 4, + "unique": 1, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 10, + "blockChance": 5, + "droplistID": "tinlyn_sheep", + "phraseID": "tinlyn_lostsheep1", + "attackDamage": { + "min": 0, + "max": 1 + } + }, + { + "id": "lostsheep2", + "iconID": "monsters_karvis2:8", + "name": "Sheep", + "spawnGroup": "tinlyn_lostsheep2", + "monsterClass": 4, + "unique": 1, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 10, + "blockChance": 5, + "droplistID": "tinlyn_sheep", + "phraseID": "tinlyn_lostsheep2", + "attackDamage": { + "min": 0, + "max": 1 + } + }, + { + "id": "lostsheep3", + "iconID": "monsters_karvis2:8", + "name": "Sheep", + "spawnGroup": "tinlyn_lostsheep3", + "monsterClass": 4, + "unique": 1, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 10, + "blockChance": 5, + "droplistID": "tinlyn_sheep", + "phraseID": "tinlyn_lostsheep3", + "attackDamage": { + "min": 0, + "max": 1 + } + }, + { + "id": "lostsheep4", + "iconID": "monsters_karvis2:8", + "name": "Sheep", + "spawnGroup": "tinlyn_lostsheep4", + "monsterClass": 4, + "unique": 1, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 10, + "blockChance": 5, + "droplistID": "tinlyn_sheep", + "phraseID": "tinlyn_lostsheep4", + "attackDamage": { + "min": 0, + "max": 1 + } + }, + { + "id": "sheep1", + "iconID": "monsters_karvis2:8", + "name": "Sheep", + "spawnGroup": "tinlyn_sheep", + "monsterClass": 4, + "unique": 1, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 10, + "blockChance": 5, + "droplistID": "tinlyn_sheep", + "phraseID": "tinlyn_sheep", + "attackDamage": { + "min": 0, + "max": 1 + } + }, + { + "id": "ailshara", + "iconID": "monsters_men:8", + "name": "Ailshara", + "spawnGroup": "ailshara", + "monsterClass": 0, + "droplistID": "shop_ailshara", + "phraseID": "ailshara" + }, + { + "id": "arngyr", + "iconID": "monsters_rltiles1:65", + "name": "Arngyr", + "spawnGroup": "arngyr", + "monsterClass": 0, + "phraseID": "arngyr" + }, + { + "id": "benbyr", + "iconID": "monsters_rltiles1:74", + "name": "Benbyr", + "spawnGroup": "benbyr", + "monsterClass": 0, + "phraseID": "benbyr" + }, + { + "id": "celdar", + "iconID": "monsters_rltiles1:94", + "name": "Celdar", + "spawnGroup": "celdar", + "monsterClass": 0, + "phraseID": "celdar" + }, + { + "id": "conren", + "iconID": "monsters_karvis2:5", + "name": "Conren", + "spawnGroup": "conren", + "monsterClass": 0, + "phraseID": "conren" + }, + { + "id": "crossroads_backguard", + "iconID": "monsters_rltiles1:76", + "name": "Guard", + "spawnGroup": "crossroads_backguard", + "monsterClass": 0, + "unique": 1, + "phraseID": "crossroads_backguard" + }, + { + "id": "crossroads_guard", + "iconID": "monsters_rltiles1:76", + "name": "Guard", + "spawnGroup": "crossroads_guard", + "monsterClass": 0, + "phraseID": "crossroads_guard" + }, + { + "id": "crossroads_sleepguard", + "iconID": "monsters_rltiles1:76", + "name": "Guard", + "spawnGroup": "crossroads_sleepguard", + "monsterClass": 0, + "phraseID": "crossroads_sleepguard" + }, + { + "id": "crossroads_guest", + "iconID": "monsters_rltiles1:83", + "name": "Visitor", + "spawnGroup": "crossroads_guest", + "monsterClass": 0, + "phraseID": "crossroads_guest" + }, + { + "id": "erinith", + "iconID": "monsters_rltiles1:82", + "name": "Erinith", + "spawnGroup": "erinith", + "monsterClass": 0, + "phraseID": "erinith" + }, + { + "id": "fanamor", + "iconID": "monsters_men:7", + "name": "Fanamor", + "spawnGroup": "fanamor", + "monsterClass": 0, + "phraseID": "fanamor" + }, + { + "id": "feygard_bridgeguard", + "iconID": "monsters_men2:4", + "name": "Feygard bridge guard", + "spawnGroup": "feygard_bridgeguard", + "monsterClass": 0, + "phraseID": "feygard_bridgeguard" + }, + { + "id": "fieldwasp_unique", + "iconID": "monsters_insects:1", + "name": "Frantic forest wasp", + "spawnGroup": "fieldwasp_unique", + "monsterClass": 1, + "unique": 1, + "maxHP": 70, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 200, + "criticalMultiplier": 3, + "blockChance": 150, + "droplistID": "fieldwasp_unique", + "attackDamage": { + "min": 2, + "max": 6 + } + }, + { + "id": "gallain", + "iconID": "monsters_man1:0", + "name": "Gallain", + "spawnGroup": "gallain", + "monsterClass": 0, + "droplistID": "shop_gallain", + "phraseID": "gallain" + }, + { + "id": "gandoren", + "iconID": "monsters_rltiles1:69", + "name": "Gandoren", + "spawnGroup": "gandoren", + "monsterClass": 0, + "phraseID": "gandoren" + }, + { + "id": "grimion", + "iconID": "monsters_men2:2", + "name": "Grimion", + "spawnGroup": "grimion", + "monsterClass": 0, + "droplistID": "shop_grimion", + "phraseID": "grimion" + }, + { + "id": "hadracor", + "iconID": "monsters_men2:2", + "name": "Hadracor", + "spawnGroup": "hadracor", + "monsterClass": 0, + "droplistID": "shop_hadracor", + "phraseID": "hadracor" + }, + { + "id": "kuldan", + "iconID": "monsters_rltiles1:85", + "name": "Kuldan", + "spawnGroup": "kuldan", + "monsterClass": 0, + "phraseID": "kuldan" + }, + { + "id": "kuldan_guard", + "iconID": "monsters_rltiles3:14", + "name": "Kuldan's Guard", + "spawnGroup": "kuldan_guard", + "monsterClass": 0, + "phraseID": "kuldan_guard" + }, + { + "id": "landa", + "iconID": "monsters_men:0", + "name": "Landa", + "spawnGroup": "landa", + "monsterClass": 0, + "phraseID": "landa" + }, + { + "id": "loneford_chapelguard", + "iconID": "monsters_rltiles1:78", + "name": "Chapel guard", + "spawnGroup": "loneford_chapelguard", + "monsterClass": 0, + "phraseID": "loneford_chapelguard" + }, + { + "id": "loneford_farmer0", + "iconID": "monsters_karvis2:1", + "name": "Farmer", + "spawnGroup": "loneford_farmer0", + "monsterClass": 0, + "phraseID": "loneford_farmer0" + }, + { + "id": "loneford_guard0", + "iconID": "monsters_rltiles3:14", + "name": "Guard", + "spawnGroup": "loneford_guard0", + "monsterClass": 0, + "phraseID": "loneford_guard0" + }, + { + "id": "loneford_tavern_patron", + "iconID": "monsters_karvis2:2", + "name": "Tavern owner", + "spawnGroup": "loneford_tavern_patron", + "monsterClass": 0, + "phraseID": "loneford_tavern_patron" + }, + { + "id": "loneford_villager0", + "iconID": "monsters_karvis2:0", + "name": "Villager", + "spawnGroup": "loneford_villager0", + "monsterClass": 0, + "phraseID": "loneford_villager0" + }, + { + "id": "loneford_villager1", + "iconID": "monsters_karvis2:1", + "name": "Villager", + "spawnGroup": "loneford_villager1", + "monsterClass": 0, + "phraseID": "loneford_villager1" + }, + { + "id": "loneford_villager2", + "iconID": "monsters_karvis2:3", + "name": "Villager", + "spawnGroup": "loneford_villager2", + "monsterClass": 0, + "phraseID": "loneford_villager2" + }, + { + "id": "loneford_villager3", + "iconID": "monsters_karvis2:5", + "name": "Villager", + "spawnGroup": "loneford_villager3", + "monsterClass": 0, + "phraseID": "loneford_villager3" + }, + { + "id": "loneford_villager4", + "iconID": "monsters_men:2", + "name": "Villager", + "spawnGroup": "loneford_villager4", + "monsterClass": 0, + "phraseID": "loneford_villager4" + }, + { + "id": "loneford_wellguard", + "iconID": "monsters_rltiles1:72", + "name": "Guard", + "spawnGroup": "loneford_wellguard", + "monsterClass": 0, + "phraseID": "loneford_wellguard" + }, + { + "id": "mienn", + "iconID": "monsters_rltiles1:87", + "name": "Mienn", + "spawnGroup": "mienn", + "monsterClass": 0, + "phraseID": "mienn" + }, + { + "id": "minarra", + "iconID": "monsters_rltiles1:86", + "name": "Minarra", + "spawnGroup": "minarra", + "monsterClass": 0, + "droplistID": "shop_minarra", + "phraseID": "minarra" + }, + { + "id": "puny_warehouserat", + "iconID": "monsters_rats:1", + "name": "Warehouse rat", + "spawnGroup": "puny_warehouserat", + "monsterClass": 4, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 50, + "blockChance": 30, + "droplistID": "rat", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "rolwynn", + "iconID": "monsters_rltiles1:77", + "name": "Rolwynn", + "spawnGroup": "rolwynn", + "monsterClass": 0, + "phraseID": "rolwynn" + }, + { + "id": "sienn", + "iconID": "monsters_rltiles1:66", + "name": "Sienn", + "spawnGroup": "sienn", + "monsterClass": 0, + "phraseID": "sienn" + }, + { + "id": "sienn_pet", + "iconID": "monsters_misc:0", + "name": "Sienn's pet", + "spawnGroup": "sienn_pet", + "monsterClass": 7, + "phraseID": "sienn_pet" + }, + { + "id": "siola", + "iconID": "monsters_rltiles1:90", + "name": "Siola", + "spawnGroup": "siola", + "monsterClass": 0, + "droplistID": "shop_siola", + "phraseID": "siola" + }, + { + "id": "taevinn", + "iconID": "monsters_karvis2:5", + "name": "Taevinn", + "spawnGroup": "taevinn", + "monsterClass": 0, + "phraseID": "taevinn" + }, + { + "id": "talion", + "iconID": "monsters_men2:8", + "name": "Talion", + "spawnGroup": "talion", + "monsterClass": 0, + "droplistID": "shop_talion", + "phraseID": "talion" + }, + { + "id": "telund", + "iconID": "monsters_rltiles1:74", + "name": "Telund", + "spawnGroup": "telund", + "monsterClass": 0, + "phraseID": "telund" + }, + { + "id": "tinlyn", + "iconID": "monsters_karvis2:7", + "name": "Tinlyn", + "spawnGroup": "tinlyn", + "monsterClass": 0, + "phraseID": "tinlyn" + }, + { + "id": "wallach", + "iconID": "monsters_rltiles1:75", + "name": "Wallach", + "spawnGroup": "wallach", + "monsterClass": 0, + "phraseID": "wallach" + }, + { + "id": "woodcutter_0", + "iconID": "monsters_men:0", + "name": "Woodcutter", + "spawnGroup": "woodcutter_0", + "monsterClass": 0, + "phraseID": "woodcutter_0" + }, + { + "id": "woodcutter_2", + "iconID": "monsters_men:0", + "name": "Woodcutter", + "spawnGroup": "woodcutter_2", + "monsterClass": 0, + "phraseID": "woodcutter_2" + }, + { + "id": "woodcutter_3", + "iconID": "monsters_men2:2", + "name": "Woodcutter", + "spawnGroup": "woodcutter_3", + "monsterClass": 0, + "phraseID": "woodcutter_3" + }, + { + "id": "woodcutter_4", + "iconID": "monsters_rltiles1:93", + "name": "Woodcutter", + "spawnGroup": "woodcutter_4", + "monsterClass": 0, + "phraseID": "woodcutter_4" + }, + { + "id": "woodcutter_5", + "iconID": "monsters_men2:2", + "name": "Woodcutter", + "spawnGroup": "woodcutter_5", + "monsterClass": 0, + "phraseID": "woodcutter_5" + }, + { + "id": "rogorn", + "iconID": "monsters_rltiles1:63", + "name": "Rogorn", + "spawnGroup": "rogorn", + "monsterClass": 0, + "unique": 1, + "maxHP": 145, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "blockChance": 120, + "damageResistance": 5, + "droplistID": "rogorn", + "phraseID": "rogorn", + "attackDamage": { + "min": 5, + "max": 9 + } + }, + { + "id": "rogorn_henchman", + "iconID": "monsters_rogue1:0", + "name": "Rogorn's henchman", + "spawnGroup": "rogorn_henchman", + "monsterClass": 0, + "unique": 1, + "maxHP": 130, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "blockChance": 120, + "damageResistance": 4, + "droplistID": "rogorn_henchman", + "phraseID": "rogorn_henchman", + "attackDamage": { + "min": 5, + "max": 8 + } + }, + { + "id": "buceth", + "iconID": "monsters_men2:7", + "name": "Buceth", + "spawnGroup": "buceth", + "monsterClass": 0, + "unique": 1, + "maxHP": 75, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 200, + "criticalMultiplier": 2, + "blockChance": 120, + "damageResistance": 4, + "droplistID": "buceth", + "phraseID": "buceth", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "gauward", + "iconID": "monsters_mage2:0", + "name": "Gauward", + "spawnGroup": "gauward", + "monsterClass": 0, + "phraseID": "gauward" + } +] diff --git a/AndorsTrail/res/raw-fr/monsterlist_v0611_monsters1.json b/AndorsTrail/res/raw-fr/monsterlist_v0611_monsters1.json new file mode 100644 index 000000000..c6c4905cf --- /dev/null +++ b/AndorsTrail/res/raw-fr/monsterlist_v0611_monsters1.json @@ -0,0 +1,1862 @@ +[ + { + "id": "cbeetle_1", + "iconID": "monsters_rltiles2:63", + "name": "Young carrion beetle", + "spawnGroup": "scaradon_1", + "monsterClass": 1, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "blockChance": 30, + "damageResistance": 9, + "droplistID": "scaradon", + "attackDamage": { + "min": 0, + "max": 5 + } + }, + { + "id": "cbeetle_2", + "iconID": "monsters_rltiles2:63", + "name": "Carrion beetle", + "spawnGroup": "scaradon_1", + "monsterClass": 1, + "maxHP": 51, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 75, + "blockChance": 30, + "damageResistance": 9, + "droplistID": "scaradon", + "attackDamage": { + "min": 0, + "max": 5 + } + }, + { + "id": "scaradon_1", + "iconID": "monsters_rltiles1:98", + "name": "Young Scaradon", + "spawnGroup": "scaradon_1", + "monsterClass": 1, + "maxHP": 32, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 50, + "blockChance": 30, + "damageResistance": 15, + "droplistID": "scaradon", + "attackDamage": { + "min": 0, + "max": 4 + } + }, + { + "id": "scaradon_2", + "iconID": "monsters_rltiles1:98", + "name": "Small Scaradon", + "spawnGroup": "scaradon_2", + "monsterClass": 1, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 50, + "blockChance": 30, + "damageResistance": 15, + "droplistID": "scaradon", + "attackDamage": { + "min": 1, + "max": 4 + } + }, + { + "id": "scaradon_3", + "iconID": "monsters_rltiles1:97", + "name": "Scaradon", + "spawnGroup": "scaradon_2", + "monsterClass": 1, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 50, + "blockChance": 30, + "damageResistance": 17, + "droplistID": "scaradon", + "attackDamage": { + "min": 0, + "max": 4 + } + }, + { + "id": "scaradon_4", + "iconID": "monsters_rltiles1:97", + "name": "Tough Scaradon", + "spawnGroup": "scaradon_2", + "monsterClass": 1, + "maxHP": 37, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 50, + "blockChance": 30, + "damageResistance": 17, + "droplistID": "scaradon", + "attackDamage": { + "min": 1, + "max": 4 + } + }, + { + "id": "scaradon_5", + "iconID": "monsters_rltiles1:97", + "name": "Hardshell Scaradon", + "spawnGroup": "scaradon_3", + "monsterClass": 1, + "maxHP": 38, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 50, + "blockChance": 30, + "damageResistance": 18, + "droplistID": "scaradon_b", + "attackDamage": { + "min": 1, + "max": 5 + } + }, + { + "id": "mwolf_1", + "iconID": "monsters_dogs:3", + "name": "Mountain wolf pup", + "spawnGroup": "mwolf_1", + "monsterClass": 4, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 80, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 40, + "damageResistance": 3, + "droplistID": "mwolf", + "attackDamage": { + "min": 2, + "max": 7 + } + }, + { + "id": "mwolf_2", + "iconID": "monsters_dogs:3", + "name": "Young mountain wolf", + "spawnGroup": "mwolf_1", + "monsterClass": 4, + "maxHP": 52, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 80, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 44, + "damageResistance": 3, + "droplistID": "mwolf", + "attackDamage": { + "min": 3, + "max": 7 + } + }, + { + "id": "mwolf_3", + "iconID": "monsters_dogs:2", + "name": "Young mountain fox", + "spawnGroup": "mwolf_1", + "monsterClass": 4, + "maxHP": 56, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 80, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 48, + "damageResistance": 4, + "droplistID": "mwolf", + "attackDamage": { + "min": 3, + "max": 7 + } + }, + { + "id": "mwolf_4", + "iconID": "monsters_dogs:2", + "name": "Mountain fox", + "spawnGroup": "mwolf_2", + "monsterClass": 4, + "maxHP": 60, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 85, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 52, + "damageResistance": 4, + "droplistID": "mwolf", + "attackDamage": { + "min": 3, + "max": 8 + } + }, + { + "id": "mwolf_5", + "iconID": "monsters_dogs:2", + "name": "Ferocious mountain fox", + "spawnGroup": "mwolf_2", + "monsterClass": 4, + "maxHP": 64, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 85, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 54, + "damageResistance": 5, + "droplistID": "mwolf", + "attackDamage": { + "min": 3, + "max": 8 + } + }, + { + "id": "mwolf_6", + "iconID": "monsters_dogs:4", + "name": "Rabid mountain wolf", + "spawnGroup": "mwolf_2", + "monsterClass": 4, + "maxHP": 67, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 56, + "damageResistance": 5, + "droplistID": "mwolf", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "mwolf_7", + "iconID": "monsters_dogs:4", + "name": "Strong mountain wolf", + "spawnGroup": "mwolf_3", + "monsterClass": 4, + "maxHP": 73, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 57, + "damageResistance": 6, + "droplistID": "mwolf", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "mwolf_8", + "iconID": "monsters_dogs:4", + "name": "Ferocious mountain wolf", + "spawnGroup": "mwolf_3", + "monsterClass": 4, + "maxHP": 78, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 59, + "damageResistance": 6, + "droplistID": "mwolf_b", + "attackDamage": { + "min": 3, + "max": 10 + } + }, + { + "id": "mbrute_1", + "iconID": "monsters_rltiles2:35", + "name": "Young mountain brute", + "spawnGroup": "mbrute_1", + "monsterClass": 5, + "maxHP": 148, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 0, + "max": 14 + } + }, + { + "id": "mbrute_2", + "iconID": "monsters_rltiles2:35", + "name": "Weak mountain brute", + "spawnGroup": "mbrute_1", + "monsterClass": 5, + "maxHP": 157, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 0, + "max": 14 + } + }, + { + "id": "mbrute_3", + "iconID": "monsters_rltiles2:36", + "name": "Whitefur mountain brute", + "spawnGroup": "mbrute_1", + "monsterClass": 5, + "maxHP": 166, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 0, + "max": 14 + } + }, + { + "id": "mbrute_4", + "iconID": "monsters_rltiles2:35", + "name": "Mountain brute", + "spawnGroup": "mbrute_2", + "monsterClass": 5, + "maxHP": 175, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 0, + "max": 14 + } + }, + { + "id": "mbrute_5", + "iconID": "monsters_rltiles2:36", + "name": "Large mountain brute", + "spawnGroup": "mbrute_2", + "monsterClass": 5, + "maxHP": 184, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 0, + "max": 14 + } + }, + { + "id": "mbrute_6", + "iconID": "monsters_rltiles2:34", + "name": "Fast mountain brute", + "spawnGroup": "mbrute_2", + "monsterClass": 5, + "maxHP": 82, + "maxAP": 12, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 0, + "max": 14 + } + }, + { + "id": "mbrute_7", + "iconID": "monsters_rltiles2:34", + "name": "Quick mountain brute", + "spawnGroup": "mbrute_3", + "monsterClass": 5, + "maxHP": 93, + "maxAP": 12, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 0, + "max": 15 + } + }, + { + "id": "mbrute_8", + "iconID": "monsters_rltiles2:34", + "name": "Aggressive mountain brute", + "spawnGroup": "mbrute_3", + "monsterClass": 5, + "maxHP": 104, + "maxAP": 12, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 1, + "max": 15 + } + }, + { + "id": "mbrute_9", + "iconID": "monsters_rltiles2:33", + "name": "Strong mountain brute", + "spawnGroup": "mbrute_3", + "monsterClass": 5, + "maxHP": 115, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 1, + "max": 15 + } + }, + { + "id": "mbrute_10", + "iconID": "monsters_rltiles2:33", + "name": "Tough mountain brute", + "spawnGroup": "mbrute_4", + "monsterClass": 5, + "maxHP": 126, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 2, + "max": 15 + } + }, + { + "id": "mbrute_11", + "iconID": "monsters_rltiles2:33", + "name": "Fearless mountain brute", + "spawnGroup": "mbrute_4", + "monsterClass": 5, + "maxHP": 137, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute_b", + "attackDamage": { + "min": 2, + "max": 15 + } + }, + { + "id": "mbrute_12", + "iconID": "monsters_rltiles2:33", + "name": "Enraged mountain brute", + "spawnGroup": "mbrute_4", + "monsterClass": 5, + "maxHP": 148, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 3, + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute_b", + "attackDamage": { + "min": 2, + "max": 16 + } + }, + { + "id": "erumen_1", + "iconID": "monsters_rltiles2:114", + "name": "Young Erumem Lizard", + "spawnGroup": "erumen_1", + "monsterClass": 7, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "erumen", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "erumen_2", + "iconID": "monsters_rltiles2:114", + "name": "Spotted Erumem Lizard", + "spawnGroup": "erumen_1", + "monsterClass": 7, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "erumen", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "erumen_3", + "iconID": "monsters_rltiles2:114", + "name": "Erumem Lizard", + "spawnGroup": "erumen_2", + "monsterClass": 7, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "erumen", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "erumen_4", + "iconID": "monsters_rltiles2:115", + "name": "Strong Erumen Lizard", + "spawnGroup": "erumen_2", + "monsterClass": 7, + "maxHP": 79, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "erumen", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "erumen_5", + "iconID": "monsters_rltiles2:115", + "name": "Vile Erumen Lizard", + "spawnGroup": "erumen_3", + "monsterClass": 7, + "maxHP": 89, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "erumen", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "erumen_6", + "iconID": "monsters_rltiles2:117", + "name": "Tough Erumen Lizard", + "spawnGroup": "erumen_3", + "monsterClass": 7, + "maxHP": 91, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 90, + "damageResistance": 8, + "droplistID": "erumen", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "erumen_7", + "iconID": "monsters_rltiles2:117", + "name": "Hardened Erumen Lizard", + "spawnGroup": "erumen_4", + "monsterClass": 7, + "maxHP": 93, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 90, + "damageResistance": 12, + "droplistID": "erumen_b", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "plaguesp_1", + "iconID": "monsters_rltiles2:61", + "name": "Puny Plaguecrawler", + "spawnGroup": "plaguespider_1", + "monsterClass": 1, + "maxHP": 55, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 140, + "droplistID": "plaguespider", + "attackDamage": { + "min": 1, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 1, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 1, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_2", + "iconID": "monsters_rltiles2:61", + "name": "Plaguecrawler", + "spawnGroup": "plaguespider_1", + "monsterClass": 1, + "maxHP": 57, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 140, + "droplistID": "plaguespider", + "attackDamage": { + "min": 1, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 3, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 2, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_3", + "iconID": "monsters_rltiles2:61", + "name": "Tough Plaguecrawler", + "spawnGroup": "plaguespider_1", + "monsterClass": 1, + "maxHP": 59, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 140, + "droplistID": "plaguespider", + "attackDamage": { + "min": 1, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 3, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 2, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_4", + "iconID": "monsters_rltiles2:61", + "name": "Black Plaguecrawler", + "spawnGroup": "plaguespider_2", + "monsterClass": 1, + "maxHP": 61, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 150, + "droplistID": "plaguespider", + "attackDamage": { + "min": 1, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 4, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 3, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_5", + "iconID": "monsters_rltiles2:151", + "name": "Plaguestrider", + "spawnGroup": "plaguespider_2", + "monsterClass": 1, + "maxHP": 62, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 150, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 4, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 3, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_6", + "iconID": "monsters_rltiles2:151", + "name": "Hardshell Plaguestrider", + "spawnGroup": "plaguespider_2", + "monsterClass": 1, + "maxHP": 63, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 150, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 5, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 4, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_7", + "iconID": "monsters_rltiles2:151", + "name": "Tough Plaguestrider", + "spawnGroup": "plaguespider_3", + "monsterClass": 1, + "maxHP": 64, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 70, + "criticalMultiplier": 3, + "blockChance": 155, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 5, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 4, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_8", + "iconID": "monsters_rltiles2:153", + "name": "Wooly Plaguestrider", + "spawnGroup": "plaguespider_3", + "monsterClass": 1, + "maxHP": 65, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 70, + "criticalMultiplier": 3, + "blockChance": 155, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 6, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 5, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "plaguesp_9", + "iconID": "monsters_rltiles2:153", + "name": "Tough wooly Plaguestrider", + "spawnGroup": "plaguespider_3", + "monsterClass": 1, + "maxHP": 66, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 70, + "criticalMultiplier": 3, + "blockChance": 160, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 6, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 5, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "plaguesp_10", + "iconID": "monsters_rltiles2:151", + "name": "Vile Plaguestrider", + "spawnGroup": "plaguespider_4", + "monsterClass": 1, + "maxHP": 67, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 85, + "criticalSkill": 70, + "criticalMultiplier": 3, + "blockChance": 160, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 6, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 5, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "plaguesp_11", + "iconID": "monsters_rltiles2:153", + "name": "Nesting Plaguestrider", + "spawnGroup": "plaguespider_4", + "monsterClass": 1, + "maxHP": 68, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 85, + "criticalSkill": 70, + "criticalMultiplier": 3, + "blockChance": 165, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 6, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 5, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "plaguesp_12", + "iconID": "monsters_rltiles2:38", + "name": "Plaguestrider servant", + "spawnGroup": "plaguespider_5", + "monsterClass": 6, + "maxHP": 65, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 85, + "criticalSkill": 120, + "criticalMultiplier": 3, + "blockChance": 165, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 7, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 6, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "plaguesp_13", + "iconID": "monsters_rltiles2:38", + "name": "Plaguestrider master", + "spawnGroup": "plaguespider_6", + "monsterClass": 6, + "maxHP": 65, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 85, + "criticalSkill": 120, + "criticalMultiplier": 3, + "blockChance": 175, + "damageResistance": 2, + "droplistID": "plaguespider_b", + "attackDamage": { + "min": 2, + "max": 8 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 7, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 6, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "allaceph_1", + "iconID": "monsters_rltiles2:101", + "name": "Young Allaceph", + "spawnGroup": "allaceph_1", + "monsterClass": 2, + "maxHP": 90, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 105, + "damageResistance": 1, + "droplistID": "allaceph", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 4, + "max": 4 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 2, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "allaceph_2", + "iconID": "monsters_rltiles2:101", + "name": "Allaceph", + "spawnGroup": "allaceph_1", + "monsterClass": 2, + "maxHP": 94, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 105, + "damageResistance": 1, + "droplistID": "allaceph", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 4, + "max": 4 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 2, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "allaceph_3", + "iconID": "monsters_rltiles2:102", + "name": "Strong Allaceph", + "spawnGroup": "allaceph_2", + "monsterClass": 2, + "maxHP": 101, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 105, + "damageResistance": 2, + "droplistID": "allaceph", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 4, + "max": 4 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 2, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "allaceph_4", + "iconID": "monsters_rltiles2:102", + "name": "Tough Allaceph", + "spawnGroup": "allaceph_2", + "monsterClass": 2, + "maxHP": 111, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 110, + "damageResistance": 2, + "droplistID": "allaceph", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 4, + "max": 4 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 3, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "allaceph_5", + "iconID": "monsters_rltiles2:103", + "name": "Radiant Allaceph", + "spawnGroup": "allaceph_3", + "monsterClass": 2, + "maxHP": 124, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 110, + "damageResistance": 3, + "droplistID": "allaceph_b", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 6, + "max": 6 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 3, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "allaceph_6", + "iconID": "monsters_rltiles2:103", + "name": "Ancient Allaceph", + "spawnGroup": "allaceph_3", + "monsterClass": 2, + "maxHP": 133, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 115, + "damageResistance": 3, + "droplistID": "allaceph_b", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 7, + "max": 7 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 3, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "vaeregh_1", + "iconID": "monsters_rltiles1:42", + "name": "Vaeregh", + "spawnGroup": "allaceph_4", + "monsterClass": 2, + "maxHP": 149, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 120, + "damageResistance": 4, + "droplistID": "allaceph", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 10, + "max": 10 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 4, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "irdegh_sp_1", + "iconID": "monsters_rltiles2:26", + "name": "Irdegh spawn", + "spawnGroup": "irdegh_spawn", + "monsterClass": 7, + "maxHP": 57, + "maxAP": 12, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 80, + "droplistID": "irdegh_spawn", + "attackDamage": { + "min": 0, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_irdegh", + "magnitude": 2, + "duration": 3, + "chance": 10 + } + ] + } + }, + { + "id": "irdegh_sp_2", + "iconID": "monsters_rltiles2:26", + "name": "Irdegh spawn", + "spawnGroup": "irdegh_spawn", + "monsterClass": 7, + "maxHP": 68, + "maxAP": 12, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 80, + "droplistID": "irdegh_spawn", + "attackDamage": { + "min": 0, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_irdegh", + "magnitude": 2, + "duration": 3, + "chance": 10 + } + ] + } + }, + { + "id": "irdegh_1", + "iconID": "monsters_rltiles2:15", + "name": "Irdegh", + "spawnGroup": "irdegh_1", + "monsterClass": 7, + "maxHP": 115, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 60, + "damageResistance": 10, + "droplistID": "irdegh", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_irdegh", + "magnitude": 3, + "duration": 4, + "chance": 50 + } + ] + } + }, + { + "id": "irdegh_2", + "iconID": "monsters_rltiles2:15", + "name": "Venomous Irdegh", + "spawnGroup": "irdegh_2", + "monsterClass": 7, + "maxHP": 120, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 60, + "damageResistance": 11, + "droplistID": "irdegh", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_irdegh", + "magnitude": 3, + "duration": 4, + "chance": 50 + } + ] + } + }, + { + "id": "irdegh_3", + "iconID": "monsters_rltiles2:14", + "name": "Piercing Irdegh", + "spawnGroup": "irdegh_3", + "monsterClass": 7, + "maxHP": 125, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 60, + "damageResistance": 11, + "droplistID": "irdegh", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_irdegh", + "magnitude": 3, + "duration": 4, + "chance": 50 + } + ] + } + }, + { + "id": "irdegh_4", + "iconID": "monsters_rltiles2:14", + "name": "Ancient piercing Irdegh", + "spawnGroup": "irdegh_4", + "monsterClass": 7, + "maxHP": 130, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "criticalSkill": 30, + "criticalMultiplier": 2, + "blockChance": 60, + "damageResistance": 14, + "droplistID": "irdegh_b", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_irdegh", + "magnitude": 3, + "duration": 4, + "chance": 70 + } + ] + } + }, + { + "id": "maonit_1", + "iconID": "monsters_rltiles1:104", + "name": "Maonit troll", + "spawnGroup": "maonit_1", + "monsterClass": 5, + "maxHP": 255, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 10, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 4, + "droplistID": "maonit", + "attackDamage": { + "min": 1, + "max": 20 + } + }, + { + "id": "maonit_2", + "iconID": "monsters_rltiles1:104", + "name": "Giant Maonit troll", + "spawnGroup": "maonit_1", + "monsterClass": 5, + "maxHP": 270, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 10, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 4, + "droplistID": "maonit", + "attackDamage": { + "min": 1, + "max": 20 + } + }, + { + "id": "maonit_3", + "iconID": "monsters_rltiles1:104", + "name": "Strong Maonit troll", + "spawnGroup": "maonit_2", + "monsterClass": 5, + "maxHP": 285, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 20, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 5, + "droplistID": "maonit", + "attackDamage": { + "min": 1, + "max": 20 + } + }, + { + "id": "maonit_4", + "iconID": "monsters_rltiles1:107", + "name": "Maonit brute", + "spawnGroup": "maonit_2", + "monsterClass": 5, + "maxHP": 290, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 20, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 5, + "droplistID": "maonit", + "attackDamage": { + "min": 1, + "max": 20 + } + }, + { + "id": "maonit_5", + "iconID": "monsters_rltiles1:107", + "name": "Tough Maonit brute", + "spawnGroup": "maonit_3", + "monsterClass": 5, + "maxHP": 310, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 6, + "droplistID": "maonit", + "attackDamage": { + "min": 1, + "max": 20 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "stunned", + "magnitude": 1, + "duration": 3, + "chance": 10 + } + ] + } + }, + { + "id": "maonit_6", + "iconID": "monsters_rltiles1:107", + "name": "Strong Maonit brute", + "spawnGroup": "maonit_3", + "monsterClass": 5, + "maxHP": 320, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 6, + "droplistID": "maonit", + "attackDamage": { + "min": 1, + "max": 20 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "stunned", + "magnitude": 1, + "duration": 3, + "chance": 10 + } + ] + } + }, + { + "id": "arulir_1", + "iconID": "monsters_rltiles1:13", + "name": "Arulir", + "spawnGroup": "arulir_1", + "monsterClass": 5, + "maxHP": 325, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 8, + "droplistID": "arulir", + "attackDamage": { + "min": 1, + "max": 20 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "stunned", + "magnitude": 1, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "arulir_2", + "iconID": "monsters_rltiles1:13", + "name": "Giant Arulir", + "spawnGroup": "arulir_1", + "monsterClass": 5, + "maxHP": 330, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 8, + "droplistID": "arulir", + "attackDamage": { + "min": 1, + "max": 20 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "stunned", + "magnitude": 1, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "burrower_1", + "iconID": "monsters_rltiles2:164", + "name": "Larval cave burrower", + "spawnGroup": "burrower_1", + "monsterClass": 1, + "maxHP": 30, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 95, + "blockChance": 80, + "damageResistance": 2, + "droplistID": "burrower", + "attackDamage": { + "min": 1, + "max": 25 + } + }, + { + "id": "burrower_2", + "iconID": "monsters_rltiles2:164", + "name": "Cave burrower", + "spawnGroup": "burrower_1", + "monsterClass": 1, + "maxHP": 37, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 95, + "blockChance": 80, + "damageResistance": 2, + "droplistID": "burrower", + "attackDamage": { + "min": 1, + "max": 25 + } + }, + { + "id": "burrower_3", + "iconID": "monsters_rltiles2:165", + "name": "Strong larval burrower", + "spawnGroup": "burrower_2", + "monsterClass": 1, + "maxHP": 44, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 95, + "blockChance": 80, + "damageResistance": 2, + "droplistID": "burrower", + "attackDamage": { + "min": 1, + "max": 25 + } + }, + { + "id": "burrower_4", + "iconID": "monsters_rltiles2:165", + "name": "Giant larval burrower", + "spawnGroup": "burrower_3", + "monsterClass": 1, + "maxHP": 75, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 95, + "blockChance": 80, + "damageResistance": 2, + "droplistID": "burrower", + "attackDamage": { + "min": 1, + "max": 25 + } + } +] diff --git a/AndorsTrail/res/raw-fr/monsterlist_v0611_npcs1.json b/AndorsTrail/res/raw-fr/monsterlist_v0611_npcs1.json new file mode 100644 index 000000000..205d13cc1 --- /dev/null +++ b/AndorsTrail/res/raw-fr/monsterlist_v0611_npcs1.json @@ -0,0 +1,176 @@ +[ + { + "id": "ulirfendor", + "iconID": "monsters_rltiles1:84", + "name": "Ulirfendor", + "spawnGroup": "ulirfendor", + "monsterClass": 0, + "unique": 1, + "maxHP": 288, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 30, + "criticalMultiplier": 2, + "blockChance": 60, + "damageResistance": 6, + "droplistID": "ulirfendor", + "phraseID": "ulirfendor", + "attackDamage": { + "min": 1, + "max": 16 + } + }, + { + "id": "gylew", + "iconID": "monsters_mage2:0", + "name": "Gylew", + "spawnGroup": "gylew", + "monsterClass": 0, + "phraseID": "gylew" + }, + { + "id": "gylew_henchman", + "iconID": "monsters_men:8", + "name": "Gylew's henchman", + "spawnGroup": "gylew_henchman", + "monsterClass": 0, + "phraseID": "gylew_henchman" + }, + { + "id": "toszylae", + "iconID": "monsters_liches:1", + "name": "Toszylae", + "spawnGroup": "toszylae", + "monsterClass": 6, + "unique": 1, + "maxHP": 207, + "maxAP": 8, + "moveCost": 5, + "attackCost": 2, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 120, + "damageResistance": 4, + "droplistID": "toszylae", + "phraseID": "toszylae", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 6, + "max": 6 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 3, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "toszylae_guard", + "iconID": "monsters_rltiles1:20", + "name": "Radiant guardian", + "spawnGroup": "toszylae_guard", + "monsterClass": 2, + "unique": 1, + "maxHP": 320, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 120, + "damageResistance": 4, + "droplistID": "toszylae_guard", + "phraseID": "toszylae_guard", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 5, + "max": 5 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 2, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "thorin", + "iconID": "monsters_rltiles1:66", + "name": "Thorin", + "spawnGroup": "thorin", + "monsterClass": 0, + "droplistID": "shop_thorin", + "phraseID": "thorin" + }, + { + "id": "lonelyhouse_sp", + "iconID": "monsters_rats:1", + "name": "Basement rat", + "spawnGroup": "lonelyhouse_sp", + "monsterClass": 4, + "unique": 1, + "maxHP": 79, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 180, + "damageResistance": 4, + "droplistID": "lonelyhouse_sp", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "algangror", + "iconID": "monsters_rltiles1:68", + "name": "Algangror", + "spawnGroup": "algangror", + "monsterClass": 0, + "unique": 1, + "maxHP": 241, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 200, + "criticalMultiplier": 2, + "blockChance": 120, + "damageResistance": 4, + "droplistID": "algangror", + "phraseID": "algangror", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "remgard_bridge", + "iconID": "monsters_men2:4", + "name": "Bridge lookout", + "spawnGroup": "remgard_bridge", + "monsterClass": 0, + "unique": 1, + "phraseID": "remgard_bridge" + } +] diff --git a/AndorsTrail/res/raw-fr/monsterlist_v068_npcs.json b/AndorsTrail/res/raw-fr/monsterlist_v068_npcs.json new file mode 100644 index 000000000..f70a6eff9 --- /dev/null +++ b/AndorsTrail/res/raw-fr/monsterlist_v068_npcs.json @@ -0,0 +1,423 @@ +[ + { + "id": "smug_looking_thief", + "iconID": "monsters_men2:9", + "name": "Voleur visiblement content de lui", + "spawnGroup": "tg_thief", + "monsterClass": 0, + "phraseID": "thievesguild_thief_1" + }, + { + "id": "thieves_guild_cook", + "iconID": "monsters_men:0", + "name": "Cuisinier de la guilde des voleurs", + "spawnGroup": "tg_cook", + "monsterClass": 0, + "droplistID": "shop_thieves_guild_cook", + "phraseID": "thievesguild_cook_1" + }, + { + "id": "pickpocket", + "iconID": "monsters_men:7", + "name": "Pickpocket", + "spawnGroup": "pickpocket", + "monsterClass": 0, + "phraseID": "thievesguild_pickpocket_1" + }, + { + "id": "troublemaker", + "iconID": "monsters_men:8", + "name": "Fauteur de troubles", + "spawnGroup": "troublemaker", + "monsterClass": 0, + "droplistID": "shop_troublemaker", + "phraseID": "thievesguild_troublemaker_1" + }, + { + "id": "farrik", + "iconID": "monsters_rogue1:0", + "name": "Farrik", + "spawnGroup": "farrik", + "monsterClass": 0, + "phraseID": "farrik_select_1" + }, + { + "id": "umar", + "iconID": "monsters_man1:0", + "name": "Umar", + "spawnGroup": "umar", + "monsterClass": 0, + "phraseID": "umar_select_1" + }, + { + "id": "kaori", + "iconID": "monsters_men:7", + "name": "Kaori", + "spawnGroup": "kaori", + "monsterClass": 0, + "phraseID": "kaori_start" + }, + { + "id": "old_vilegard_villager", + "iconID": "monsters_men:0", + "name": "Vieux villageois de Vilegard", + "spawnGroup": "vilegard_villager_1", + "monsterClass": 0, + "phraseID": "vilegard_villager_1" + }, + { + "id": "grumpy_vilegard_villager", + "iconID": "monsters_men:5", + "name": "Villageois de Vilegard grognon", + "spawnGroup": "vilegard_villager_2", + "monsterClass": 0, + "phraseID": "vilegard_villager_2" + }, + { + "id": "vilegard_citizen", + "iconID": "monsters_men:1", + "name": "Citoyen de Vilegard", + "spawnGroup": "vilegard_villager_3", + "monsterClass": 0, + "phraseID": "vilegard_villager_3" + }, + { + "id": "vilegard_resident", + "iconID": "monsters_men2:0", + "name": "Habitant de Vilegard", + "spawnGroup": "vilegard_villager_4", + "monsterClass": 0, + "phraseID": "vilegard_villager_4" + }, + { + "id": "vilegard_woman", + "iconID": "monsters_men:6", + "name": "Femme de Vilegard", + "spawnGroup": "vilegard_villager_5", + "monsterClass": 0, + "phraseID": "vilegard_villager_5" + }, + { + "id": "erttu", + "iconID": "monsters_mage2:0", + "name": "Erttu", + "spawnGroup": "erttu", + "monsterClass": 0, + "phraseID": "erttu_1" + }, + { + "id": "dunla", + "iconID": "monsters_rogue1:0", + "name": "Dunla", + "spawnGroup": "dunla", + "monsterClass": 0, + "droplistID": "shop_dunla", + "phraseID": "dunla_default" + }, + { + "id": "tharwyn", + "iconID": "monsters_men:7", + "name": "Tharwyn", + "spawnGroup": "tharwyn", + "monsterClass": 0, + "droplistID": "shop_tharwyn", + "phraseID": "tharwyn_select" + }, + { + "id": "tavern_guest", + "iconID": "monsters_men:0", + "name": "Invité de la taverne", + "spawnGroup": "vg_tavern_drunk", + "monsterClass": 0, + "phraseID": "vilegard_tavern_drunk_1" + }, + { + "id": "jolnor", + "iconID": "monsters_men2:8", + "name": "Jolnor", + "spawnGroup": "jolnor", + "monsterClass": 0, + "droplistID": "shop_jolnor", + "phraseID": "jolnor_select_1" + }, + { + "id": "alynndir", + "iconID": "monsters_mage2:0", + "name": "Alynndir", + "spawnGroup": "alynndir", + "monsterClass": 0, + "droplistID": "shop_alynndir", + "phraseID": "alynndir_1" + }, + { + "id": "vilegard_armorer", + "iconID": "monsters_mage2:0", + "name": "Armurier de Vilegard", + "spawnGroup": "vg_armorer", + "monsterClass": 0, + "droplistID": "shop_vg_armorer", + "phraseID": "vilegard_armorer_select" + }, + { + "id": "vilegard_smith", + "iconID": "monsters_mage2:0", + "name": "Forgeron de Vilegard", + "spawnGroup": "vg_smith", + "monsterClass": 0, + "droplistID": "shop_vg_smith", + "phraseID": "vilegard_smith_select" + }, + { + "id": "ogam", + "iconID": "monsters_men:0", + "name": "Ogam", + "spawnGroup": "ogam", + "monsterClass": 0, + "phraseID": "ogam_1" + }, + { + "id": "foaming_flask_cook", + "iconID": "monsters_men:0", + "name": "Cuisinier de Foaming Flask", + "spawnGroup": "ff_cook", + "monsterClass": 0, + "phraseID": "ff_cook_1" + }, + { + "id": "torilo", + "iconID": "monsters_men2:9", + "name": "Torilo", + "spawnGroup": "torilo", + "monsterClass": 0, + "droplistID": "shop_torilo", + "phraseID": "torilo_1" + }, + { + "id": "ambelie", + "iconID": "monsters_men:6", + "name": "Ambelie", + "spawnGroup": "ambelie", + "monsterClass": 0, + "phraseID": "ambelie_1" + }, + { + "id": "feygard_patrol", + "iconID": "monsters_rltiles3:14", + "name": "Patrouilleur de Feygard", + "spawnGroup": "ff_guard", + "monsterClass": 0, + "phraseID": "ff_guard_1" + }, + { + "id": "feygard_patrol_captain", + "iconID": "monsters_men:3", + "name": "Capitaine de la patrouille de Feygard", + "spawnGroup": "ff_captain", + "monsterClass": 0, + "phraseID": "ff_captain_1" + }, + { + "id": "feygard_patrol_watch", + "iconID": "monsters_rltiles3:14", + "name": "Sentinelle de la patrouille de Feygard", + "spawnGroup": "ff_outsideguard", + "monsterClass": 0, + "unique": 1, + "maxHP": 80, + "attackCost": 5, + "attackChance": 70, + "blockChance": 80, + "damageResistance": 3, + "droplistID": "ff_outsideguard", + "phraseID": "ff_outsideguard_select", + "attackDamage": { + "min": 2, + "max": 7 + } + }, + { + "id": "wrye", + "iconID": "monsters_men:6", + "name": "Wrye", + "spawnGroup": "wrye", + "monsterClass": 0, + "phraseID": "wrye_select_1" + }, + { + "id": "oluag", + "iconID": "monsters_men:8", + "name": "Oluag", + "spawnGroup": "oluag", + "monsterClass": 0, + "phraseID": "oluag_1" + }, + { + "id": "cave_dwelling_boar", + "iconID": "monsters_dogs:6", + "name": "Sanglier troglodyte", + "spawnGroup": "caveboar1", + "monsterClass": 4, + "maxHP": 35, + "attackCost": 5, + "attackChance": 70, + "blockChance": 60, + "damageResistance": 3, + "droplistID": "canine2", + "attackDamage": { + "min": 3, + "max": 8 + } + }, + { + "id": "hardshell_beetle", + "iconID": "monsters_insects:4", + "name": "Scarabée à carapace épaisse", + "spawnGroup": "beetle2", + "monsterClass": 1, + "maxHP": 25, + "attackCost": 5, + "attackChance": 50, + "blockChance": 40, + "damageResistance": 9, + "droplistID": "beetle2", + "attackDamage": { + "min": 0, + "max": 5 + } + }, + { + "id": "young_shadow_gargoyle", + "iconID": "monsters_misc:1", + "name": "Jeune gargouille fantôme", + "spawnGroup": "shadowgarg1", + "monsterClass": 3, + "maxHP": 35, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 8, + "criticalMultiplier": 3, + "blockChance": 75, + "damageResistance": 3, + "droplistID": "shadowgarg1", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "fledgling_shadow_gargoyle", + "iconID": "monsters_misc:1", + "name": "Gargouille fantôme naissante", + "spawnGroup": "shadowgarg1", + "monsterClass": 3, + "maxHP": 36, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 8, + "criticalMultiplier": 3, + "blockChance": 75, + "damageResistance": 3, + "droplistID": "shadowgarg1", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "shadow_gargoyle", + "iconID": "monsters_misc:2", + "name": "Gargouille fantôme", + "spawnGroup": "shadowgarg2", + "monsterClass": 3, + "maxHP": 37, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 8, + "criticalMultiplier": 3, + "blockChance": 85, + "damageResistance": 3, + "droplistID": "shadowgarg1", + "attackDamage": { + "min": 4, + "max": 10 + } + }, + { + "id": "tough_shadow_gargoyle", + "iconID": "monsters_misc:2", + "name": "Gargouille fantôme résistante", + "spawnGroup": "shadowgarg2", + "monsterClass": 3, + "maxHP": 37, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 8, + "criticalMultiplier": 3, + "blockChance": 85, + "damageResistance": 4, + "droplistID": "shadowgarg2", + "attackDamage": { + "min": 4, + "max": 10 + } + }, + { + "id": "shadow_gargoyle_trainer", + "iconID": "monsters_liches:0", + "name": "Dresseur de gargouille fantôme", + "spawnGroup": "shadowgarg3", + "monsterClass": 6, + "maxHP": 35, + "attackCost": 5, + "attackChance": 90, + "criticalSkill": 12, + "criticalMultiplier": 3, + "blockChance": 90, + "damageResistance": 5, + "droplistID": "shadowgarg3", + "attackDamage": { + "min": 3, + "max": 6 + } + }, + { + "id": "shadow_gargoyle_master", + "iconID": "monsters_liches:1", + "name": "Maître gargouille fantôme", + "spawnGroup": "shadowgarg4", + "monsterClass": 6, + "maxHP": 35, + "attackCost": 5, + "attackChance": 125, + "criticalSkill": 12, + "criticalMultiplier": 3, + "blockChance": 90, + "damageResistance": 5, + "droplistID": "shadowgarg3", + "attackDamage": { + "min": 3, + "max": 6 + } + }, + { + "id": "maelveon", + "iconID": "monsters_liches:2", + "name": "Maelveon", + "spawnGroup": "maelveon", + "monsterClass": 6, + "unique": 1, + "maxHP": 55, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 15, + "criticalMultiplier": 3, + "blockChance": 90, + "damageResistance": 5, + "droplistID": "maelveon", + "phraseID": "maelveon", + "attackDamage": { + "min": 0, + "max": 12 + } + } +] diff --git a/AndorsTrail/res/raw-fr/monsterlist_v069_monsters.json b/AndorsTrail/res/raw-fr/monsterlist_v069_monsters.json new file mode 100644 index 000000000..d0a8cf6da --- /dev/null +++ b/AndorsTrail/res/raw-fr/monsterlist_v069_monsters.json @@ -0,0 +1,646 @@ +[ + { + "id": "puny_caverat", + "iconID": "monsters_rats:0", + "name": "Rat troglodyte", + "spawnGroup": "puny_caverat", + "monsterClass": 4, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 50, + "blockChance": 30, + "droplistID": "rat", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "rabid_hound", + "iconID": "monsters_rltiles2:108", + "name": "Chien de chasse enragé", + "spawnGroup": "forestwolf2", + "monsterClass": 4, + "maxHP": 40, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 110, + "blockChance": 30, + "droplistID": "canine", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "vicious_hound", + "iconID": "monsters_rltiles2:110", + "name": "Méchant chien de chasse", + "spawnGroup": "forestboar4", + "monsterClass": 4, + "maxHP": 31, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 150, + "blockChance": 60, + "damageResistance": 3, + "droplistID": "canineboss", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "mountain_wolf", + "iconID": "monsters_rltiles2:109", + "name": "Loup des montagnes", + "spawnGroup": "primwolf1", + "monsterClass": 4, + "maxHP": 49, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 150, + "blockChance": 60, + "damageResistance": 3, + "droplistID": "canine", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "hatchling_white_wyrm", + "iconID": "monsters_rltiles1:118", + "name": "Wyrm blanc juste éclos", + "spawnGroup": "wyrm_1", + "monsterClass": 7, + "maxHP": 41, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 75, + "blockChance": 130, + "damageResistance": 5, + "droplistID": "wyrm_1", + "attackDamage": { + "min": 4, + "max": 10 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "fatigue_minor", + "magnitude": 1, + "duration": 5, + "chance": 10 + } + ] + } + }, + { + "id": "young_white_wyrm", + "iconID": "monsters_rltiles1:118", + "name": "Jeune wyrm blanc", + "spawnGroup": "wyrm_2", + "monsterClass": 7, + "maxHP": 47, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 75, + "blockChance": 130, + "damageResistance": 5, + "droplistID": "wyrm_2", + "attackDamage": { + "min": 4, + "max": 10 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "fatigue_minor", + "magnitude": 1, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "white_wyrm", + "iconID": "monsters_rltiles1:119", + "name": "Wyrm blanc", + "spawnGroup": "wyrm_3", + "monsterClass": 7, + "maxHP": 55, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 75, + "blockChance": 130, + "damageResistance": 5, + "droplistID": "wyrm_3", + "attackDamage": { + "min": 4, + "max": 10 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "fatigue_minor", + "magnitude": 1, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "young_aulaeth", + "iconID": "monsters_rltiles2:176", + "name": "Jeune aulaeth", + "spawnGroup": "wyrm_1", + "monsterClass": 5, + "maxHP": 105, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 40, + "blockChance": 30, + "damageResistance": 5, + "droplistID": "aulaeth", + "attackDamage": { + "min": 0, + "max": 4 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "aulaeth", + "iconID": "monsters_rltiles2:58", + "name": "Aulaeth", + "spawnGroup": "wyrm_2", + "monsterClass": 5, + "maxHP": 120, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 40, + "blockChance": 40, + "damageResistance": 6, + "droplistID": "aulaeth", + "attackDamage": { + "min": 0, + "max": 5 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "strong_aulaeth", + "iconID": "monsters_rltiles2:58", + "name": "Gros aulaeth", + "spawnGroup": "wyrm_3", + "monsterClass": 5, + "maxHP": 135, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 40, + "blockChance": 35, + "damageResistance": 6, + "droplistID": "aulaeth", + "attackDamage": { + "min": 0, + "max": 5 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "wyrm_trainer", + "iconID": "monsters_rltiles2:0", + "name": "Dresseur de wyrm", + "spawnGroup": "wyrm_4", + "monsterClass": 6, + "maxHP": 69, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "blockChance": 90, + "damageResistance": 4, + "droplistID": "wyrm_4", + "attackDamage": { + "min": 2, + "max": 9 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + }, + "conditionsTarget": [ + { + "condition": "fatigue_minor", + "magnitude": 1, + "duration": 10, + "chance": 70 + } + ] + } + }, + { + "id": "wyrm_apprentice", + "iconID": "monsters_rltiles2:0", + "name": "Apprenti wyrm", + "spawnGroup": "wyrm_4", + "monsterClass": 6, + "maxHP": 69, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 140, + "blockChance": 90, + "damageResistance": 4, + "droplistID": "wyrm_4", + "attackDamage": { + "min": 2, + "max": 9 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + }, + "conditionsTarget": [ + { + "condition": "fatigue_minor", + "magnitude": 1, + "duration": 10, + "chance": 70 + } + ] + } + }, + { + "id": "young_gornaud", + "iconID": "monsters_rltiles2:29", + "name": "Jeune gornaud", + "spawnGroup": "gornaud_1", + "monsterClass": 5, + "maxHP": 70, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "blockChance": 50, + "droplistID": "gornaud_1", + "attackDamage": { + "min": 0, + "max": 15 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "dazed", + "magnitude": 1, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "gornaud", + "iconID": "monsters_rltiles2:29", + "name": "Gornaud", + "spawnGroup": "gornaud_2", + "monsterClass": 5, + "maxHP": 95, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "blockChance": 50, + "damageResistance": 4, + "droplistID": "gornaud_2", + "attackDamage": { + "min": 0, + "max": 15 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "dazed", + "magnitude": 1, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "strong_gornaud", + "iconID": "monsters_rltiles2:30", + "name": "Gros Gornaud", + "spawnGroup": "gornaud_3", + "monsterClass": 5, + "maxHP": 95, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "blockChance": 50, + "damageResistance": 5, + "droplistID": "gornaud_3", + "attackDamage": { + "min": 0, + "max": 15 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "dazed", + "magnitude": 1, + "duration": 5, + "chance": 70 + } + ] + } + }, + { + "id": "slithering_venomfang", + "iconID": "monsters_snakes:2", + "name": "Croc de venin frétillant", + "spawnGroup": "gornaud_1", + "monsterClass": 7, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 90, + "damageResistance": 2, + "droplistID": "cave_serpent", + "attackDamage": { + "min": 1, + "max": 2 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_weak", + "magnitude": 1, + "duration": 2, + "chance": 20 + } + ] + } + }, + { + "id": "scaled_venomfang", + "iconID": "monsters_snakes:3", + "name": "Croc de venin géant", + "spawnGroup": "gornaud_2", + "monsterClass": 7, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "blockChance": 90, + "damageResistance": 2, + "droplistID": "cave_serpent", + "attackDamage": { + "min": 2, + "max": 4 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_weak", + "magnitude": 1, + "duration": 2, + "chance": 50 + } + ] + } + }, + { + "id": "tough_venomfang", + "iconID": "monsters_snakes:3", + "name": "Croc de venin résistant", + "spawnGroup": "gornaud_3", + "monsterClass": 7, + "maxHP": 41, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "blockChance": 90, + "damageResistance": 2, + "droplistID": "cave_serpent", + "attackDamage": { + "min": 2, + "max": 5 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_weak", + "magnitude": 1, + "duration": 2, + "chance": 50 + } + ] + } + }, + { + "id": "restless_dead", + "iconID": "monsters_rltiles1:47", + "name": "Mort tourmenté", + "spawnGroup": "restless_dead_1", + "monsterClass": 8, + "maxHP": 25, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 50, + "criticalSkill": 80, + "criticalMultiplier": 2, + "blockChance": 140, + "damageResistance": 3, + "droplistID": "restless_dead_1", + "attackDamage": { + "min": 0, + "max": 3 + } + }, + { + "id": "grave_spawn", + "iconID": "monsters_rltiles1:49", + "name": "Grave spawn", + "spawnGroup": "restless_dead_1", + "monsterClass": 2, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 110, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 35, + "damageResistance": 3, + "droplistID": "restless_dead_1", + "attackDamage": { + "min": 2, + "max": 5 + } + }, + { + "id": "restless_apparition", + "iconID": "monsters_rltiles1:47", + "name": "Restless apparition", + "spawnGroup": "restless_dead_2", + "monsterClass": 8, + "maxHP": 29, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 10, + "damageResistance": 1, + "droplistID": "restless_dead_2", + "attackDamage": { + "min": 2, + "max": 6 + } + }, + { + "id": "skeletal_reaper", + "iconID": "monsters_rltiles1:27", + "name": "Skeletal reaper", + "spawnGroup": "restless_dead_2", + "monsterClass": 3, + "maxHP": 15, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 150, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 110, + "droplistID": "restless_dead_2", + "attackDamage": { + "min": 0, + "max": 9 + } + }, + { + "id": "kazaul_spawn", + "iconID": "monsters_rltiles1:41", + "name": "Kazaul spawn", + "spawnGroup": "kazaul_1", + "monsterClass": 2, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 50, + "criticalMultiplier": 2, + "blockChance": 90, + "damageResistance": 1, + "droplistID": "kazaul_1", + "attackDamage": { + "min": 3, + "max": 5 + } + }, + { + "id": "kazaul_imp", + "iconID": "monsters_rltiles1:45", + "name": "Kazaul imp", + "spawnGroup": "kazaul_2", + "monsterClass": 2, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 105, + "damageResistance": 1, + "droplistID": "kazaul_2", + "attackDamage": { + "min": 3, + "max": 7 + } + }, + { + "id": "kazaul_guardian", + "iconID": "monsters_rltiles1:42", + "name": "Kazaul guardian", + "spawnGroup": "kazaul_guardian", + "monsterClass": 2, + "unique": 1, + "maxHP": 95, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 90, + "damageResistance": 3, + "droplistID": "kazaul_guardian", + "phraseID": "kazaul_guardian", + "attackDamage": { + "min": 3, + "max": 8 + } + }, + { + "id": "graverobber", + "iconID": "monsters_karvis2:3", + "name": "Graverobber", + "spawnGroup": "bjorgur_bandit", + "monsterClass": 0, + "unique": 1, + "maxHP": 62, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 120, + "blockChance": 72, + "damageResistance": 1, + "droplistID": "bjorgur_bandit", + "phraseID": "bjorgur_bandit", + "attackDamage": { + "min": 2, + "max": 6 + } + } +] diff --git a/AndorsTrail/res/raw-fr/monsterlist_v069_npcs.json b/AndorsTrail/res/raw-fr/monsterlist_v069_npcs.json new file mode 100644 index 000000000..9590f69c2 --- /dev/null +++ b/AndorsTrail/res/raw-fr/monsterlist_v069_npcs.json @@ -0,0 +1,536 @@ +[ + { + "id": "agent1", + "iconID": "monsters_men:4", + "name": "Agent", + "spawnGroup": "bwm_agent_1", + "monsterClass": 0, + "unique": 1, + "phraseID": "bwm_agent_1_start" + }, + { + "id": "agent2", + "iconID": "monsters_men:4", + "name": "Agent", + "spawnGroup": "bwm_agent_2", + "monsterClass": 0, + "unique": 1, + "phraseID": "bwm_agent_2_start" + }, + { + "id": "agent3", + "iconID": "monsters_men:4", + "name": "Agent", + "spawnGroup": "bwm_agent_3", + "monsterClass": 0, + "unique": 1, + "phraseID": "bwm_agent_3_start" + }, + { + "id": "agent4", + "iconID": "monsters_men:4", + "name": "Agent", + "spawnGroup": "bwm_agent_4", + "monsterClass": 0, + "unique": 1, + "phraseID": "bwm_agent_4_start" + }, + { + "id": "agent5", + "iconID": "monsters_men:4", + "name": "Agent", + "spawnGroup": "bwm_agent_5", + "monsterClass": 0, + "unique": 1, + "phraseID": "bwm_agent_5_start" + }, + { + "id": "agent6", + "iconID": "monsters_men:4", + "name": "Agent", + "spawnGroup": "bwm_agent_6", + "monsterClass": 0, + "unique": 1, + "phraseID": "bwm_agent_6_start" + }, + { + "id": "arghest", + "iconID": "monsters_rltiles2:81", + "name": "Arghest", + "spawnGroup": "arghest", + "monsterClass": 0, + "phraseID": "arghest_start" + }, + { + "id": "tonis", + "iconID": "monsters_rltiles1:67", + "name": "Tonis", + "spawnGroup": "tonis", + "monsterClass": 0, + "phraseID": "tonis_start" + }, + { + "id": "moyra", + "iconID": "monsters_rltiles1:74", + "name": "Moyra", + "spawnGroup": "moyra", + "monsterClass": 0, + "phraseID": "moyra_1" + }, + { + "id": "prim_citizen", + "iconID": "monsters_karvis2:6", + "name": "Prim citizen", + "spawnGroup": "prim_commoner1", + "monsterClass": 0, + "phraseID": "prim_commoner1" + }, + { + "id": "prim_commoner", + "iconID": "monsters_rltiles1:68", + "name": "Prim commoner", + "spawnGroup": "prim_commoner2", + "monsterClass": 0, + "phraseID": "prim_commoner2" + }, + { + "id": "prim_resident", + "iconID": "monsters_karvis2:2", + "name": "Prim resident", + "spawnGroup": "prim_commoner3", + "monsterClass": 0, + "phraseID": "prim_commoner3" + }, + { + "id": "prim_evoker", + "iconID": "monsters_rltiles1:84", + "name": "Prim evoker", + "spawnGroup": "prim_commoner4", + "monsterClass": 0, + "phraseID": "prim_commoner4" + }, + { + "id": "laecca", + "iconID": "monsters_rltiles1:72", + "name": "Laecca", + "spawnGroup": "laecca", + "monsterClass": 0, + "phraseID": "laecca_1" + }, + { + "id": "prim_cook", + "iconID": "monsters_karvis2:0", + "name": "Prim cook", + "spawnGroup": "prim_cook", + "monsterClass": 0, + "phraseID": "prim_cook_start" + }, + { + "id": "prim_visitor", + "iconID": "monsters_rltiles1:63", + "name": "Prim visitor", + "spawnGroup": "prim_innguest", + "monsterClass": 0, + "phraseID": "prim_innguest" + }, + { + "id": "birgil", + "iconID": "monsters_rltiles2:81", + "name": "Birgil", + "spawnGroup": "birgil", + "monsterClass": 0, + "droplistID": "shop_birgil", + "phraseID": "birgil_1" + }, + { + "id": "prim_tavern_guest", + "iconID": "monsters_rltiles1:106", + "name": "Prim tavern guest", + "spawnGroup": "prim_tavern_guest1", + "monsterClass": 0, + "phraseID": "prim_tavern_guest1" + }, + { + "id": "prim_tavern_regular", + "iconID": "monsters_rltiles1:106", + "name": "Prim tavern regular", + "spawnGroup": "prim_tavern_guest2", + "monsterClass": 0, + "phraseID": "prim_tavern_guest2" + }, + { + "id": "prim_bar_guest", + "iconID": "monsters_rltiles1:106", + "name": "Prim bar guest", + "spawnGroup": "prim_tavern_guest3", + "monsterClass": 0, + "phraseID": "prim_tavern_guest3" + }, + { + "id": "prim_bar_regular", + "iconID": "monsters_rltiles1:106", + "name": "Prim bar regular", + "spawnGroup": "prim_tavern_guest4", + "monsterClass": 0, + "phraseID": "prim_tavern_guest4" + }, + { + "id": "prim_armorer", + "iconID": "monsters_rltiles1:88", + "name": "Prim armorer", + "spawnGroup": "prim_armorer", + "monsterClass": 0, + "droplistID": "shop_prim_armorer", + "phraseID": "prim_armorer" + }, + { + "id": "jueth", + "iconID": "monsters_men2:0", + "name": "Jueth", + "spawnGroup": "prim_tailor", + "monsterClass": 0, + "phraseID": "prim_tailor" + }, + { + "id": "bjorgur", + "iconID": "monsters_karvis2:7", + "name": "Bjorgur", + "spawnGroup": "bjorgur", + "monsterClass": 0, + "phraseID": "bjorgur_start" + }, + { + "id": "prim_prisoner", + "iconID": "monsters_rltiles2:81", + "name": "Prim prisoner", + "spawnGroup": "prim_prisoner", + "monsterClass": 0, + "phraseID": "prim_guard1" + }, + { + "id": "fulus", + "iconID": "monsters_karvis2:3", + "name": "Fulus", + "spawnGroup": "fulus", + "monsterClass": 0, + "phraseID": "fulus_start" + }, + { + "id": "guthbered", + "iconID": "monsters_rltiles1:92", + "name": "Guthbered", + "spawnGroup": "guthbered", + "monsterClass": 0, + "unique": 1, + "maxHP": 80, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "guthbered", + "phraseID": "guthbered_start", + "attackDamage": { + "min": 4, + "max": 9 + } + }, + { + "id": "guthbereds_bodyguard", + "iconID": "monsters_rltiles1:76", + "name": "Guthbered's bodyguard", + "spawnGroup": "guthbered_guard", + "monsterClass": 0, + "phraseID": "guthbered_guard" + }, + { + "id": "prim_weapon_guard", + "iconID": "monsters_rltiles1:65", + "name": "Prim weapon guard", + "spawnGroup": "prim_guard1", + "monsterClass": 0, + "phraseID": "prim_guard1" + }, + { + "id": "prim_sentry", + "iconID": "monsters_rltiles3:14", + "name": "Prim sentry", + "spawnGroup": "prim_guard2", + "monsterClass": 0, + "phraseID": "prim_guard2" + }, + { + "id": "prim_guard", + "iconID": "monsters_rltiles1:65", + "name": "Prim guard", + "spawnGroup": "prim_guard4", + "monsterClass": 0, + "phraseID": "prim_guard4" + }, + { + "id": "tired_prim_guard", + "iconID": "monsters_rltiles1:76", + "name": "Tired Prim guard", + "spawnGroup": "prim_guard3", + "monsterClass": 0, + "phraseID": "prim_guard3" + }, + { + "id": "prim_treasury_guard", + "iconID": "monsters_rltiles1:69", + "name": "Prim treasury guard", + "spawnGroup": "prim_treasury_guard", + "monsterClass": 0, + "phraseID": "prim_treasury_guard" + }, + { + "id": "samar", + "iconID": "monsters_rltiles2:93", + "name": "Samar", + "spawnGroup": "prim_priest", + "monsterClass": 0, + "droplistID": "shop_samar", + "phraseID": "prim_priest" + }, + { + "id": "prim_priestly_acolyte", + "iconID": "monsters_rltiles1:83", + "name": "Prim priestly acolyte", + "spawnGroup": "prim_acolyte", + "monsterClass": 0, + "phraseID": "prim_acolyte" + }, + { + "id": "studying_prim_pupil", + "iconID": "monsters_rltiles1:74", + "name": "Studying Prim pupil", + "spawnGroup": "prim_pupil1", + "monsterClass": 0, + "phraseID": "prim_pupil1" + }, + { + "id": "reading_prim_pupil", + "iconID": "monsters_rltiles1:74", + "name": "Reading Prim pupil", + "spawnGroup": "prim_pupil2", + "monsterClass": 0, + "phraseID": "prim_pupil2" + }, + { + "id": "prim_pupil", + "iconID": "monsters_rltiles1:74", + "name": "Prim pupil", + "spawnGroup": "prim_pupil3", + "monsterClass": 0, + "phraseID": "prim_pupil3" + }, + { + "id": "blackwater_entrance_guard", + "iconID": "monsters_rltiles3:14", + "name": "Blackwater entrance guard", + "spawnGroup": "blackwater_entranceguard", + "monsterClass": 0, + "maxHP": 30, + "maxAP": 10, + "phraseID": "blackwater_entranceguard" + }, + { + "id": "blackwater_dinner_guest", + "iconID": "monsters_karvis2:2", + "name": "Blackwater dinner guest", + "spawnGroup": "blackwater_guest1", + "monsterClass": 0, + "maxHP": 20, + "maxAP": 10, + "phraseID": "blackwater_guest1" + }, + { + "id": "blackwater_inhabitant", + "iconID": "monsters_man1:0", + "name": "Blackwater inhabitant", + "spawnGroup": "blackwater_guest2", + "monsterClass": 0, + "maxHP": 10, + "maxAP": 10, + "phraseID": "blackwater_guest2" + }, + { + "id": "blackwater_cook", + "iconID": "monsters_karvis2:0", + "name": "Blackwater cook", + "spawnGroup": "blackwater_cook", + "monsterClass": 0, + "phraseID": "blackwater_cook" + }, + { + "id": "keneg", + "iconID": "monsters_rltiles1:86", + "name": "Keneg", + "spawnGroup": "keneg", + "monsterClass": 0, + "phraseID": "keneg" + }, + { + "id": "mazeg", + "iconID": "monsters_rltiles1:85", + "name": "Mazeg", + "spawnGroup": "mazeg", + "monsterClass": 0, + "droplistID": "shop_mazeg", + "phraseID": "mazeg" + }, + { + "id": "waeges", + "iconID": "monsters_rltiles1:88", + "name": "Waeges", + "spawnGroup": "waeges", + "monsterClass": 0, + "droplistID": "shop_waeges", + "phraseID": "waeges" + }, + { + "id": "blackwater_fighter", + "iconID": "monsters_rltiles1:66", + "name": "Blackwater fighter", + "spawnGroup": "blackwater_fighter", + "monsterClass": 0, + "phraseID": "blackwater_fighter" + }, + { + "id": "ungorm", + "iconID": "monsters_rltiles1:83", + "name": "Ungorm", + "spawnGroup": "ungorm", + "monsterClass": 0, + "phraseID": "ungorm" + }, + { + "id": "blackwater_pupil", + "iconID": "monsters_rltiles1:74", + "name": "Blackwater pupil", + "spawnGroup": "blackwater_pupil", + "monsterClass": 0, + "phraseID": "blackwater_pupil" + }, + { + "id": "laede", + "iconID": "monsters_rltiles1:81", + "name": "Laede", + "spawnGroup": "blackwater_sleephall", + "monsterClass": 0, + "phraseID": "laede" + }, + { + "id": "herec", + "iconID": "monsters_men2:9", + "name": "Herec", + "spawnGroup": "herec", + "monsterClass": 0, + "droplistID": "shop_herec", + "phraseID": "herec_start" + }, + { + "id": "iducus", + "iconID": "monsters_rltiles1:87", + "name": "Iducus", + "spawnGroup": "iducus", + "monsterClass": 0, + "droplistID": "shop_iducus", + "phraseID": "iducus" + }, + { + "id": "blackwater_priest", + "iconID": "monsters_rltiles1:80", + "name": "Blackwater priest", + "spawnGroup": "blackwater_priest", + "monsterClass": 0, + "phraseID": "blackwater_priest" + }, + { + "id": "studying_blackwater_priest", + "iconID": "monsters_rltiles1:84", + "name": "Studying Blackwater priest", + "spawnGroup": "blackwater_pupil", + "monsterClass": 0, + "phraseID": "blackwater_pupil" + }, + { + "id": "blackwater_guard", + "iconID": "monsters_rltiles1:76", + "name": "Blackwater guard", + "spawnGroup": "blackwater_guard1", + "monsterClass": 0, + "phraseID": "blackwater_guard1" + }, + { + "id": "blackwater_border_patrol", + "iconID": "monsters_rltiles1:76", + "name": "Blackwater border patrol", + "spawnGroup": "blackwater_guard2", + "monsterClass": 0, + "phraseID": "blackwater_guard2" + }, + { + "id": "harlenns_bodyguard", + "iconID": "monsters_rltiles1:76", + "name": "Harlenn's bodyguard", + "spawnGroup": "blackwater_bossguard", + "monsterClass": 0, + "phraseID": "blackwater_bossguard" + }, + { + "id": "blackwater_chamber_guard", + "iconID": "monsters_men:3", + "name": "Blackwater chamber guard", + "spawnGroup": "blackwater_throneguard", + "monsterClass": 0, + "unique": 1, + "phraseID": "blackwater_throneguard" + }, + { + "id": "harlenn", + "iconID": "monsters_men2:6", + "name": "Harlenn", + "spawnGroup": "harlenn", + "monsterClass": 0, + "unique": 1, + "maxHP": 80, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "harlenn", + "phraseID": "harlenn_start", + "attackDamage": { + "min": 4, + "max": 9 + } + }, + { + "id": "throdna", + "iconID": "monsters_men2:4", + "name": "Throdna", + "spawnGroup": "throdna", + "monsterClass": 0, + "phraseID": "throdna_start" + }, + { + "id": "throdnas_guard", + "iconID": "monsters_rltiles1:85", + "name": "Throdna's guard", + "spawnGroup": "throdna_guard", + "monsterClass": 0, + "phraseID": "throdna_guard" + }, + { + "id": "blackwater_mage", + "iconID": "monsters_rltiles1:80", + "name": "Blackwater mage", + "spawnGroup": "blackwater_acolyte", + "monsterClass": 0, + "phraseID": "blackwater_acolyte" + } +] diff --git a/AndorsTrail/res/raw-fr/monsterlist_wilderness.json b/AndorsTrail/res/raw-fr/monsterlist_wilderness.json new file mode 100644 index 000000000..8d3f35914 --- /dev/null +++ b/AndorsTrail/res/raw-fr/monsterlist_wilderness.json @@ -0,0 +1,513 @@ +[ + { + "id": "wild_fox", + "iconID": "monsters_dogs:3", + "name": "Renard sauvage", + "spawnGroup": "fox2", + "monsterClass": 4, + "maxHP": 25, + "attackCost": 5, + "attackChance": 100, + "blockChance": 40, + "droplistID": "canine", + "attackDamage": { + "min": 4, + "max": 5 + } + }, + { + "id": "stinging_wasp", + "iconID": "monsters_insects:1", + "name": "Guêpe agressive", + "spawnGroup": "forestwasp2", + "monsterClass": 1, + "maxHP": 15, + "attackCost": 10, + "attackChance": 150, + "blockChance": 60, + "droplistID": "wasp", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "wild_boar", + "iconID": "monsters_dogs:6", + "name": "Sanglier sauvage", + "spawnGroup": "forestboar2", + "monsterClass": 4, + "maxHP": 20, + "attackCost": 5, + "attackChance": 110, + "blockChance": 30, + "droplistID": "canineboss", + "attackDamage": { + "min": 3, + "max": 3 + } + }, + { + "id": "forest_beetle", + "iconID": "monsters_insects:4", + "name": "Scarabée sylvestre", + "spawnGroup": "forestbeetle", + "monsterClass": 1, + "maxHP": 14, + "attackCost": 10, + "attackChance": 150, + "blockChance": 60, + "damageResistance": 2, + "droplistID": "insect", + "attackDamage": { + "min": 2, + "max": 4 + } + }, + { + "id": "wolf", + "iconID": "monsters_dogs:4", + "name": "Loup", + "spawnGroup": "forestwolf1", + "monsterClass": 4, + "maxHP": 30, + "maxAP": 10, + "moveCost": 3, + "attackCost": 5, + "attackChance": 110, + "blockChance": 30, + "droplistID": "canine", + "attackDamage": { + "min": 3, + "max": 6 + } + }, + { + "id": "forest_serpent", + "iconID": "monsters_snakes:4", + "name": "Serpent sylvestre", + "spawnGroup": "forestserpent1", + "monsterClass": 7, + "maxHP": 20, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "criticalSkill": 30, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "snake2", + "attackDamage": { + "min": 2, + "max": 3 + } + }, + { + "id": "vicious_forest_serpent", + "iconID": "monsters_snakes:4", + "name": "Serpent sylvestre vicieux", + "spawnGroup": "forestserpent2", + "monsterClass": 7, + "maxHP": 27, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "criticalSkill": 30, + "criticalMultiplier": 2, + "blockChance": 50, + "droplistID": "snake2", + "attackDamage": { + "min": 3, + "max": 4 + } + }, + { + "id": "anklebiter", + "iconID": "monsters_dogs:6", + "name": "Anklebiter", + "spawnGroup": "forestboar3", + "monsterClass": 4, + "maxHP": 31, + "attackCost": 5, + "attackChance": 150, + "blockChance": 60, + "damageResistance": 3, + "droplistID": "canine2", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "flagstone_sentry", + "iconID": "monsters_men:3", + "name": "Sentinelle de Flagstone", + "spawnGroup": "flagstone_sentry", + "monsterClass": 0, + "phraseID": "flagstone_sentry" + }, + { + "id": "escaped_prisoner", + "iconID": "monsters_men:0", + "name": "Prisonnier en fuite", + "spawnGroup": "prisoner1", + "monsterClass": 0, + "unique": 1, + "maxHP": 15, + "attackCost": 10, + "attackChance": 50, + "blockChance": 20, + "droplistID": "prisoner", + "phraseID": "prisoner1", + "attackDamage": { + "min": 3, + "max": 7 + } + }, + { + "id": "starving_prisoner", + "iconID": "monsters_misc:11", + "name": "Prisonnier affamé", + "spawnGroup": "prisoner2", + "monsterClass": 0, + "unique": 1, + "maxHP": 10, + "attackCost": 3, + "attackChance": 60, + "blockChance": 60, + "droplistID": "prisoner", + "phraseID": "prisoner2", + "attackDamage": { + "min": 3, + "max": 5 + } + }, + { + "id": "bone_warrior", + "iconID": "monsters_skeleton1:0", + "name": "Guerrier d'os", + "spawnGroup": "skeleton2", + "monsterClass": 3, + "maxHP": 32, + "attackCost": 5, + "attackChance": 120, + "blockChance": 60, + "damageResistance": 2, + "droplistID": "skeleton2", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "bone_champion", + "iconID": "monsters_skeleton1:0", + "name": "Champion d'os", + "spawnGroup": "skeleton3", + "monsterClass": 3, + "maxHP": 49, + "attackCost": 5, + "attackChance": 130, + "blockChance": 60, + "damageResistance": 2, + "droplistID": "skeleton3", + "attackDamage": { + "min": 4, + "max": 9 + } + }, + { + "id": "undead_warden", + "iconID": "monsters_liches:0", + "name": "Surveillant de prison mort-vivant", + "spawnGroup": "flagstone_guard0", + "monsterClass": 6, + "unique": 1, + "maxHP": 57, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "damageResistance": 1, + "droplistID": "flagstone_guard0", + "phraseID": "flagstone_guard0", + "attackDamage": { + "min": 4, + "max": 8 + } + }, + { + "id": "cave_guardian", + "iconID": "monsters_rltiles1:16", + "name": "Gardien de la cave", + "spawnGroup": "flagstone_guard1", + "monsterClass": 2, + "unique": 1, + "maxHP": 61, + "attackCost": 5, + "attackChance": 150, + "criticalSkill": 10, + "criticalMultiplier": 3, + "blockChance": 90, + "damageResistance": 2, + "droplistID": "flagstone_guard1", + "phraseID": "flagstone_guard1", + "attackDamage": { + "min": 4, + "max": 10 + } + }, + { + "id": "winged_demon", + "iconID": "monsters_demon1:0", + "name": "Démon ailé", + "spawnGroup": "flagstone_guard2", + "size": "2x2", + "monsterClass": 2, + "unique": 1, + "maxHP": 82, + "attackCost": 5, + "attackChance": 90, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 70, + "damageResistance": 5, + "droplistID": "flagstone_guard2", + "phraseID": "flagstone_guard2", + "attackDamage": { + "min": 4, + "max": 12 + } + }, + { + "id": "narael", + "iconID": "monsters_man1:0", + "name": "Narael", + "spawnGroup": "narael", + "monsterClass": 0, + "phraseID": "narael" + }, + { + "id": "rotting_corpse", + "iconID": "monsters_zombie1:0", + "name": "Corps putréfié", + "spawnGroup": "undead1", + "monsterClass": 6, + "maxHP": 71, + "attackCost": 10, + "attackChance": 30, + "criticalSkill": 50, + "criticalMultiplier": 2, + "blockChance": 30, + "damageResistance": 2, + "droplistID": "undead1", + "phraseID": "zombie1", + "attackDamage": { + "min": 2, + "max": 5 + } + }, + { + "id": "walking_corpse", + "iconID": "monsters_zombie1:0", + "name": "Corps animé", + "spawnGroup": "undead1", + "monsterClass": 6, + "maxHP": 90, + "attackCost": 10, + "attackChance": 30, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 30, + "damageResistance": 2, + "droplistID": "undead1", + "attackDamage": { + "min": 2, + "max": 4 + } + }, + { + "id": "gargoyle", + "iconID": "monsters_misc:2", + "name": "Gargouille", + "spawnGroup": "undead1", + "monsterClass": 3, + "maxHP": 47, + "attackCost": 10, + "attackChance": 110, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 70, + "damageResistance": 2, + "droplistID": "undead1", + "attackDamage": { + "min": 3, + "max": 7 + } + }, + { + "id": "fledgling_gargoyle", + "iconID": "monsters_misc:1", + "name": "Gargouille naissante", + "spawnGroup": "undead1", + "monsterClass": 3, + "maxHP": 35, + "attackCost": 10, + "attackChance": 110, + "blockChance": 60, + "damageResistance": 2, + "droplistID": "undead1", + "attackDamage": { + "min": 3, + "max": 6 + } + }, + { + "id": "large_cave_rat", + "iconID": "monsters_rats:3", + "name": "Gros rat troglodyte", + "spawnGroup": "undeadrat1", + "monsterClass": 4, + "maxHP": 21, + "maxAP": 10, + "moveCost": 10, + "attackCost": 3, + "attackChance": 60, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 40, + "droplistID": "catacombrat", + "attackDamage": { + "min": 3, + "max": 4 + } + }, + { + "id": "pack_leader", + "iconID": "monsters_dogs:5", + "name": "Meneur de la meute", + "spawnGroup": "pack_boss", + "monsterClass": 4, + "unique": 1, + "maxHP": 65, + "attackCost": 5, + "attackChance": 90, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 40, + "damageResistance": 4, + "droplistID": "pack_boss", + "attackDamage": { + "min": 2, + "max": 10 + } + }, + { + "id": "pack_hunter", + "iconID": "monsters_dogs:4", + "name": "Loup de la meute", + "spawnGroup": "pack3", + "monsterClass": 4, + "maxHP": 45, + "attackCost": 5, + "attackChance": 90, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 40, + "damageResistance": 3, + "droplistID": "pack3", + "attackDamage": { + "min": 2, + "max": 7 + } + }, + { + "id": "rabid_wolf", + "iconID": "monsters_dogs:4", + "name": "Loup enragé", + "spawnGroup": "pack2", + "monsterClass": 4, + "maxHP": 42, + "attackCost": 5, + "attackChance": 90, + "blockChance": 50, + "damageResistance": 3, + "droplistID": "pack2", + "attackDamage": { + "min": 2, + "max": 6 + } + }, + { + "id": "fledgling_wolf", + "iconID": "monsters_dogs:3", + "name": "Louveteau", + "spawnGroup": "pack2", + "monsterClass": 4, + "maxHP": 42, + "attackCost": 3, + "attackChance": 70, + "blockChance": 50, + "damageResistance": 3, + "droplistID": "pack2", + "attackDamage": { + "min": 2, + "max": 5 + } + }, + { + "id": "young_wolf", + "iconID": "monsters_dogs:4", + "name": "Jeune loup", + "spawnGroup": "pack1", + "monsterClass": 4, + "maxHP": 35, + "attackCost": 3, + "attackChance": 60, + "blockChance": 30, + "damageResistance": 2, + "droplistID": "pack1", + "attackDamage": { + "min": 2, + "max": 5 + } + }, + { + "id": "hunting_dog", + "iconID": "monsters_dogs:2", + "name": "Chien de chasse", + "spawnGroup": "pack1", + "monsterClass": 4, + "maxHP": 25, + "attackCost": 5, + "attackChance": 60, + "blockChance": 50, + "droplistID": "pack1", + "attackDamage": { + "min": 2, + "max": 5 + } + }, + { + "id": "highwayman", + "iconID": "monsters_men:8", + "name": "Bandit de grands chemins", + "spawnGroup": "bandit1", + "monsterClass": 0, + "maxHP": 54, + "attackCost": 5, + "attackChance": 90, + "criticalSkill": 50, + "criticalMultiplier": 2, + "blockChance": 30, + "damageResistance": 2, + "droplistID": "bandit1", + "phraseID": "bandit1", + "attackDamage": { + "min": 2, + "max": 4 + } + } +] diff --git a/AndorsTrail/res/raw-fr/questlist.json b/AndorsTrail/res/raw-fr/questlist.json new file mode 100644 index 000000000..333fa9f9d --- /dev/null +++ b/AndorsTrail/res/raw-fr/questlist.json @@ -0,0 +1,387 @@ +[ + { + "id": "andor", + "name": "À la recherche d'Andor", + "showInLog": 1, + "stages": [ + { + "progress": 1, + "logText": "Mon père Mikhail m'a dit qu'Andor n'était pas revenu à la maison depuis hier. Je dois aller le rechercher dans le village.", + "finishesQuest": 0 + }, + { + "progress": 10, + "logText": "Leonid dit qu'il a vu Andor parler avec Gruil. Je dois aller demander ce qu'il sait à Gruil.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Gruil veut que je lui rapporte une glande à venin. Après, il pourrait m'en dire un peu plus. Il m'a dit que certains serpents venimeux avaient de telles glandes.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Gruil dit qu'Andor recherchait quelqu'un du nom de Umar. Je dois interroger son ami Gaela à Fallhaven à l'Est.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "J'ai discuté avec Gaela à Fallhaven. Il me conseille d'aller voir Bucus et de lui demander des informations à propos de la guilde des voleurs.", + "finishesQuest": 0 + }, + { + "progress": 50, + "logText": "Bucus m'a autorisé à passer par la trappe dans la maison en ruines de Fallhaven. Il faut que je parle à Umar.", + "finishesQuest": 0 + }, + { + "progress": 51, + "logText": "Umar de la guilde des voleurs de Fallhaven a cru me reconnaître, mais il a dû me confondre avec Andor. Apparemment, Andor l'a déjà rencontré.", + "finishesQuest": 0 + }, + { + "progress": 55, + "logText": "Umar dit qu'Andor est allé voir un concocteur de potions dénommé Lodar. Je dois rechercher sa retraite.", + "finishesQuest": 0 + }, + { + "progress": 61, + "logText": "I heard a story in Loneford, where it seemed like Andor had been in Loneford, and that he might have had something to do with the illness that the people are suffering from there. I am not sure if it actually was Andor. If it was Andor, why would he have made the people of Loneford ill?", + "finishesQuest": 0 + } + ] + }, + { + "id": "mikhail_bread", + "name": "Pain du petit déjeuner", + "showInLog": 1, + "stages": [ + { + "progress": 100, + "logText": "J'ai rapporté du pain à Mikhail.", + "finishesQuest": 1 + }, + { + "progress": 10, + "logText": "Mikhail veut que j'aille lui acheter du pain chez Mara à la halle du village.", + "finishesQuest": 0 + } + ] + }, + { + "id": "mikhail_rats", + "name": "Les rats !", + "showInLog": 1, + "stages": [ + { + "progress": 100, + "logText": "J'ai tué les deux rats de notre jardin.", + "rewardExperience": 20, + "finishesQuest": 1 + }, + { + "progress": 10, + "logText": "Mikhail me demande de voir s'il n'y aurait pas des rats dans le jardin. Je dois tuer les rats de notre jardin et revenir voir Mikhail. Si je suis blessé, je peux revenir et me reposer dans le lit pour reprendre mes forces.", + "finishesQuest": 0 + } + ] + }, + { + "id": "leta", + "name": "Époux manquant", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Leta du village de Crossglen veut que je recherche son époux Oromir.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "J'ai retrouvé Oromir dans le village de Crossglen, se cachant de son épouse Leta.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "J'ai dit à Leta qu'Oromir se cachait dans le village de Crossglen.", + "rewardExperience": 50, + "finishesQuest": 1 + } + ] + }, + { + "id": "odair", + "name": "Invasion de rats", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Odair veut que je purge la réserve du village de Crossglen des rats qui l'ont envahie. Je dois en particulier tuer le gros rat et revenir voir Odair.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "J'ai aidé Odair à se débarasser des rats qui avaient envahi la réserve du village de Crossglen.", + "rewardExperience": 300, + "finishesQuest": 1 + } + ] + }, + { + "id": "bonemeal", + "name": "Produit interdit", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Leonid dans la halle de Crossglen m' dit qu'il y avait eu des désordres dans le village il y a quelques semaines. Apparemment, le seigneur Geomyr a banni toute utilisation des potions d'os comme soin.\n\nTharal, le prêtre du village devrait en savoir plus.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Tharal ne veut pas parler des potions d'os. Je pourrais peut-être le persuader si je lui ramène 5 ailes d'insectes.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Tharal m'a dit que la potion d'os était un médicament très efficace, et il est embêté qu'elle soit désormais interdite. Je devrais aller voir Thoronir à Fallhaven si je désire en apprendre davantage. Je dois lui dire le mot de passe « lueur de l'Ombre ».", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "J'ai parlé à Thoronir à Fallhaven. Il pourrait être capable de me concocter une potion d'os si je lui ramenais 5 os de squelettes. Il doit y avoir quelques squelettes dans une maison abandonnée au nord de Fallhaven.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "J'ai ramené les os à Thoronir. Désormais, il peut me fournir en potions d'os.\nJe dois cependant être prudent en les utilisant, car le seigneur Geomyr a interdit leur consommation.", + "rewardExperience": 900, + "finishesQuest": 1 + } + ] + }, + { + "id": "jan", + "name": "Ami tombé", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Jan m'a raconté son histoire, au cours de laquelle lui et ses deux amis Gandir et Irogotu sont descendus dans ce gouffre pour creuser à la recherche d'un trésor caché, puis se sont battus, Irogotu tuant Gandir dans sa fureur.\nJe dois récupérer l'anneau de Gandir's auprès d'Irogotu, et revenir voir Jan lorsque je l'aurais.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "Irogotu est mort. J'ai ramené l'anneau de Gandir à Jan, et vengé son ami.", + "rewardExperience": 1500, + "finishesQuest": 1 + } + ] + }, + { + "id": "bucus", + "name": "La clef de Luthor", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Bucus à Fallhaven sait peut-être quelque chose à propos d'Andor. Il veut que je lui ramène la clef de Luthor des catacombes sous l'église de Fallhaven.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Les catacombes sous l'église sont fermées. Athamyr est la seule personne ayant le droit et le courage d'y entrer. Je dois aller le trouver dans sa maison au Sud-Ouest de l'église.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Athamyr veut que je lui ramène de la viande préparée, il pourra alors m'en dire plus.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "J'ai ramené de la viande préparée à Athamyr.", + "rewardExperience": 700, + "finishesQuest": 0 + }, + { + "progress": 50, + "logText": "Athamyr m'a donné la permission d'entrer dans les catacombes sous l'église de Fallhaven.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "J'ai apporté la clef de Luthor à Bucus.", + "rewardExperience": 2150, + "finishesQuest": 1 + } + ] + }, + { + "id": "fallhavendrunk", + "name": "Histoire d'ivrogne", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Un ivrogne à l'extérieur de la taverne de Fallhaven à commencé à me raconter son histoire, mais il voudrait que je lui ramène de l'hydromel. Je ne sais cependant pas si cette histoire va me conduire quelque part.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "L'ivrogne m'a dit qu'il avait l'habiture de voyager avec Unnmir. Je dois parler à Unnmir.", + "finishesQuest": 1 + } + ] + }, + { + "id": "calomyran", + "name": "Les secrets de Calomyran", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Un vieil homme dans les rues de Fallhaven a perdu son livre « les secrets de Calomyran ». Je devrais partir à sa recherche. Peut-être dans la maison d'Arcir vers le Sud ?", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "J'ai trouvé une page déchirée d'un livre intitulé « les secrets de Calomyran » sur laquelle était inscrit le nom « Larcal ».", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "J'ai rendu son livre au vieil homme.", + "rewardExperience": 600, + "finishesQuest": 1 + } + ] + }, + { + "id": "nocmar", + "name": "Trésors perdus", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Unnmir m'a dit qu'il était un ancien aventurier, et m'a laissé sous-entendre que je devrais voir Nocmar. Sa maison est juste au Sud-Ouest de la taverne de Fallhaven.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Nocmar m'a dit qu'il était un ancien forgeron. Mais le seigneur Geomyr a interdit l'utilisation de l'acier-cœur, et il ne peut plus forger ses armes.\nSi je pouvais trouver une pierre-cœur et la ramener à Nocmar, il pourrait à nouveau forger de l'acier-cœur.", + "finishesQuest": 0 + }, + { + "progress": 200, + "logText": "J'ai ramené une pierre-cœur à Nocmar. Il devrait disposer d'articles en acier-cœur désormais.", + "rewardExperience": 1200, + "finishesQuest": 1 + } + ] + }, + { + "id": "flagstone", + "name": "Ancients secrets", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "J'ai rencontré un garde en faction à l'extérieur d'une forteresse appelée Flagstone. Le garde m'a dit que Flagstone était un acien camp de prisonniers pour les travailleurs fugitifs du Mont Galmore. Il y a eu récemment une augmentation du nombre de monstres morts-vivants déferlant de Flagstone. Je devrais aller rechercher l'origine des ces monstres mort-vivants. Le garde m'a dit de revenir le voir si j'avais besoin d'aide.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "J'ai trouvé un tunnel creusé sous Flagstone, qui a l'air de mener à une caverne plus importante. La caverne est gardée par un démon dont je ne suis même pas capable de m'approcher. Peut-être le garde en faction devant Flagstone en sait-il plus ?", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Le garde m'a dit que l'ancien gardien portait toujours un collier. Le collier avait probablement l'incantation nécessaire pour approcher le démon. Je devrais revenir demander au garde de m'aider à déchiffrer tout message que je pourrais trouver sur le collier une fois que je l'aurais récupéré.", + "finishesQuest": 0 + }, + { + "progress": 31, + "logText": "J'ai trouvé l'ancien gardien de Flagstone à l'étage supérieur. Je dois retourner voir le garde désormais.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "J'ai appris l'incantation requise pour pouvoir approcher le démon dans les souterrains de Flagstone. « Ombre du jour ».", + "rewardExperience": 1600, + "finishesQuest": 0 + }, + { + "progress": 50, + "logText": "Dans les profondeurs sous Flagstone, j'ai trouvé l'origine de l'invasion des morts-vivants. Une créature née des griefs des anciens prisonniers de Flagstone.", + "finishesQuest": 0 + }, + { + "progress": 60, + "logText": "J'ai trouvé un prisonnier, Narael, encore en vie sous Flagstone. Narael est un ancien citoyen de la ville de Nor. Il est trop faible pour marcher seul, mais si je peux trouver son épouse à la ville de Nor, je recevrais une généreuse récompense.", + "rewardExperience": 2100, + "finishesQuest": 1 + } + ] + }, + { + "id": "vacor", + "name": "Articles manquants", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Un mage dénommé Vacor, au Sud-Ouest de Fallhaven a essayé de lancer un sort de scission.\nIl semblait troublé et était particulièrement obsédé par son sort. Quelque chose concernant un grand pouvoir qu'il pourrait en tirer.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Vacor veut que je lui ramène les quatre articles de son sort de scission dont il affirme qu'ils lui ont été dérobés. Les quatre bandits doivent être quelque part au Sud de Fallhaven.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "J'ai ramené les quatre articles du sort de scission à Vacor.", + "rewardExperience": 1200, + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Vacor m'a parlé de son ancien apprenti Unzel, qui commençait à douter de lui. Vacor veut désormais que je tue Unzel. Je devrais être capable de le trouver au Sud-Ouest de Fallhaven. Je doit ramener sa chevalière à Vacor une fois que je l'aurais tué.", + "finishesQuest": 0 + }, + { + "progress": 50, + "logText": "Unzel me donne le choix de m'allier à Vacor ou à lui-même.", + "finishesQuest": 0 + }, + { + "progress": 51, + "logText": "J'ai choisi de m'allier avec Unzel. Je dois aller au Sud-Ouest de Fallhaven pour parler à Vacor d'Unzel et de l'Ombre.", + "finishesQuest": 0 + }, + { + "progress": 53, + "logText": "J'ai commencé à combattre Unzel. Je dois ramener sa chevalière à Vacor une fois qu'il sera mort.", + "finishesQuest": 0 + }, + { + "progress": 54, + "logText": "J'ai commencé à combattre Vacor. Je dois ramener son anneau à Unzel une fois qu'il sera mort.", + "finishesQuest": 0 + }, + { + "progress": 60, + "logText": "J'ai tué Unzel et rapporté mon acte à Vacor.", + "rewardExperience": 1600, + "finishesQuest": 1 + }, + { + "progress": 61, + "logText": "J'ai tué Vacor et rapporté mon acte à Unzel.", + "rewardExperience": 1600, + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw-fr/questlist_v068.json b/AndorsTrail/res/raw-fr/questlist_v068.json new file mode 100644 index 000000000..861b06702 --- /dev/null +++ b/AndorsTrail/res/raw-fr/questlist_v068.json @@ -0,0 +1,211 @@ +[ + { + "id": "farrik", + "name": "Visite nocturne", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Farrik de la guilde des voleurs de Fallhaven m'a parlé d'un plan pour aider un confrère voleur à s'évader de la prison de Fallhaven.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Farrik de la guilde des voleurs de Fallhaven m'a donné les détails du plan, et j'ai accepté de l'aider. Le capitaine des gardes a apparemment tendance à boire. Le plan consiste à lui fournir de l'hydromel somnifère préparé par le cuistot de la guilde des voleurs, de façon à l'endormir. Je serais peut-être amené à corrompre le capitaine des gardes.", + "finishesQuest": 0 + }, + { + "progress": 25, + "logText": "J'ai obtenu l'hydromel somnifère du cuistot de la guilde des voleurs.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "J'ai dit à Farrik que je n'adhérais pas totalement à leur plan. Je devrais peut-être prévenir le capitaine des gardes de leur plan louche.", + "finishesQuest": 0 + }, + { + "progress": 32, + "logText": "J'ai donné l'hydromel somnifère au capitaine des gardes.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "J'ai prévenu le capitaine des gardes du plan des voleurs pour faire évader leur ami.", + "finishesQuest": 0 + }, + { + "progress": 50, + "logText": "Le capitaine des gardes m'a dit de dire aux voleurs que la garde serait réduite cette nuit. Nous pourrions peut-être attraper quelques voleurs.", + "finishesQuest": 0 + }, + { + "progress": 60, + "logText": "J'ai réussi à convaincre le capitaine des gardes de boire l'hydromel somnifère ce soir. Il devrait être dans l'incapacité d'agir cette nuit, permettant aux voleurs de faire évader leur ami.", + "finishesQuest": 0 + }, + { + "progress": 70, + "logText": "Farrik m'a remercié d'avoir aidé la guilde des voleurs.", + "rewardExperience": 1500, + "finishesQuest": 1 + }, + { + "progress": 80, + "logText": "J'ai dit à Farrik que la garde serait réduite cette nuit.", + "finishesQuest": 0 + }, + { + "progress": 90, + "logText": "Le capitaine des gardes m'a remercié de l'avor aidé à mettre au point un plan pour attraper les voleurs. Il m'a dit qu'il préviendrait d'autres gardes que je l'avais aidé.", + "rewardExperience": 1700, + "finishesQuest": 1 + } + ] + }, + { + "id": "lodar", + "name": "La potion perdue", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Je dois trouver un concocteur de potions dénommé Lodar. Umar de la guilde des voleurs de Fallhaven m'a dit que je devais connaître les mots qui me permettraient de passer le gardien et rejoindre la retraite de Lodar.", + "finishesQuest": 0 + }, + { + "progress": 15, + "logText": "Umar m'a dit que je devais voir quelqu'un du nom de Ogam à Vilegard. Ogam peut me donner les bons mots pour atteindre la retraite de Lodar.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "J'ai rendu visite à Ogam au Sud-Ouest de Vilegard. Il semblait parler par énigmes. J'ai à peine pu comprendre les détails lorsque je lui ai parlé de la retraite de Lodar. Parmi les phrases qu'il a prononcées, j'ai retenu « À mi-chemin de l'Ombre et de la Lumière. Des Formations rocheuses », ainsi que les mots « Lueur de l'Ombre ». Je ne suis pas sûr de ce que cela signifie.", + "finishesQuest": 0 + } + ] + }, + { + "id": "vilegard", + "name": "Faire confiance à un étranger", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Les gens de Vilegard sont très suspicieux vis à vis des étrangers. On m'a dit d'aller voir Jolnor à la chapelle de Vilegard si je voulais gagner leur confiance.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "J'ai parlé à Jolnor de la chapelle de Vilegard. Il m'a suggéré d'aider trois personnes ayant une certaine influence dans le village pour gagner la confiance des gens de Vilegard. Je dois aider Kaori, Wrye et Jolnor de Vilegard.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "J'ai aidé les trois personnes de Vilegard ainsi que Jolnor me le suggérait. Maintenant, j'ai gagné la confiance des gens de Vilegard.", + "rewardExperience": 2100, + "finishesQuest": 1 + } + ] + }, + { + "id": "kaori", + "name": "Coursier de Kaori", + "showInLog": 1, + "stages": [ + { + "progress": 5, + "logText": "Jolnor de la chapelle de Vilegard veut que je parle à Kaori, au Nord du village de Vilegard, afin de voir s'il a besoin d'aide.", + "finishesQuest": 0 + }, + { + "progress": 10, + "logText": "Kaori au Nord du village de vilegard veut que je lui ramène 10 potions d'os.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "J'ai ramené 10 potions d'os à Kaori.", + "rewardExperience": 520, + "finishesQuest": 1 + } + ] + }, + { + "id": "wrye", + "name": "Cause d'inquiétude", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Jolnor de la chapelle de Vilegard veut que je parle à Wrye, au Nord du village de Vilegard. Elle a apparemment perdu son fils récemment.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Wrye au Nord du village de Vilegard m'a dit que son fils Rincel était porté disparu. Elle pense qu'il est mort ou qu'il a été mortellement blessé.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Wrye m'a dit qu'elle pensait que la garde royale de Feygard était impliquée dans sa disparition, et qu'ils l'avaient recruté.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Wrye veut que je recherche ce qui est arrivé à son fils.", + "finishesQuest": 0 + }, + { + "progress": 41, + "logText": "Je devrais aller voir dans la taverne de Vilegard et dans la taverne du Cruchon Écumeux au nord de Vilegard.", + "rewardExperience": 200, + "finishesQuest": 0 + }, + { + "progress": 42, + "logText": "J'ai entendu parler d'un garçon qui serait passé par la taverne du Cruchon Écumeux il y a quelques temps. Apparemment, il serait parti vers l'Ouest de la taverne quelque part.", + "finishesQuest": 0 + }, + { + "progress": 80, + "logText": "Au Nord-Ouest de Vilegard j'ai rencontré un homme qui a trouvé Rincel combattant quelques monstres. Rincel aurait apparemment quitté Vilegard de son propre chef pour voir la ville de Feygard. Je dois revenir raconter à Wrye au Nord du village de Vilegard ce qui est arrivé à son fils.", + "finishesQuest": 0 + }, + { + "progress": 90, + "logText": "J'ai raconté à Wrye la vérité sur la disparition de son fils.", + "rewardExperience": 520, + "finishesQuest": 1 + } + ] + }, + { + "id": "jolnor", + "name": "Espions dans l'écume", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Jolnor de la chapelle de Vilegard m'a parlé d'un garde à l'extérieur de la taverne du Cruchon Écumeux, dont il pensait qu'il était un espion à la solde de la garde royale de Feygard. Il me demande de faire disparaître le garde, de n'importe quelle manière. La taverne devrait être juste au Nord de Vilegard.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "J'ai convaincu le garde à l'extérieur de la taverne du Cruchon Écumeux de partir après son tour de garde.", + "finishesQuest": 0 + }, + { + "progress": 21, + "logText": "Je me suis battu avec le garde à l'extérieur de la taverne du Cruchon Écumeux. Je dois ramener son anneau de la garde royale à Jolnor une fois qu'il sera mort pour prouver sa disparition.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "J'ai dit à Jolnor que le garde était maintenant parti.", + "rewardExperience": 630, + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw-fr/questlist_v069.json b/AndorsTrail/res/raw-fr/questlist_v069.json new file mode 100644 index 000000000..d0679a82c --- /dev/null +++ b/AndorsTrail/res/raw-fr/questlist_v069.json @@ -0,0 +1,368 @@ +[ + { + "id": "bwm_agent", + "name": "L'agent et la bête", + "showInLog": 1, + "stages": [ + { + "progress": 1, + "logText": "J'ai rencontré un homme recherchant de l'aide pour sa colonie, le « Mont Blackwater ». Il semblerait que la colonie soit attaquée par des monstres et des bandits, et ils ont besoin d'une aide exérieure." + }, + { + "progress": 5, + "logText": "J'ai accepté d'aider l'homme et la colonie du Mont Blackwater à résoudre son problème." + }, + { + "progress": 10, + "logText": "L'homme m'a demandé de le retrouver de l'autre côté de la mine effondrée. Il va passer en rampant à travers les éboulis pendant que je descendrai dans la nuit noire du puits de la mine abandonnée." + }, + { + "progress": 20, + "logText": "J'ai parcouru l'obscurité de la mine abandonnée et retrouvé l'homme de l'autre côté. Il insistait pour me convaincre de me diriger plein Est une fois que je serais sorti de la mine. Je dois retrouver cet homme au pied de la montagne à l'Est." + }, + { + "progress": 25, + "logText": "J'ai entendu une histoire au sujet des habitants de Prim et de la colonie du Mont Blackwater se combattant les uns les autres." + }, + { + "progress": 30, + "logText": "Je dois suivre le chemin qui monte dans la montagne vers la colonie de Blackwater." + }, + { + "progress": 40, + "logText": "J'ai retrouvé l'homme en gravissant le Mont Blackwater. Je dois continuer mon ascension." + }, + { + "progress": 50, + "logText": "Je suis arrivé aux pentes enneigées du Mont Blackwater. L'homme m'a dit de continuer à grimper dans la montagne. Apparemment, la colonie du Mont Blackwater est proche." + }, + { + "progress": 60, + "logText": "Je suis arrivé à la colonie du Mont Blackwater. Je dois trouver le chef de guerre Harlenn." + }, + { + "progress": 65, + "logText": "J'ai discuté avec Harlenn dans la colonie du Mont Blackwater. Apparemment, la colonie est soumise à des attaques par de nombreux monstres, les Aulaeth et des wyrms blanches. Pour couronner le tout, ils sont aussi attaqués par les gens de Prim." + }, + { + "progress": 66, + "logText": "Harlenn pense que les gens de Prim sont d'une manière ou d'une autre derrière les attaques de monstres." + }, + { + "progress": 70, + "logText": "Harlenn veut que je transmette un message à Guthbered de Prim. Les gens de Prim doivent cesser leurs attaques contre la colonie du Mont Blackwater, ou alors ils en supporteront les conséquences. Je dois aller parler à Guthbered à Prim." + }, + { + "progress": 80, + "logText": "Guthbered dément le fait que les gens de Prim aient la moindre responsabilité dans les attaques de monstres contre la colonie du Mont Blackwater. Je dois aller parler à Harlenn" + }, + { + "progress": 90, + "logText": "Harlenn est certain que les gens de Prim sont mêlés à ces attaques." + }, + { + "progress": 95, + "logText": "Harlenn veut que j'aille à Prim et que j'y recherche des preuves qu'ils se préparent à attaquer la colonie. Je dois rechercher des indices à proximité de l'endroit où Guthbered se tient." + }, + { + "progress": 100, + "logText": "J'ai trouvé des plans à Prim pour recruter des mercenaires et attaquer la colonie du Mont Blackwater. Je dois aller en parler à Harlenn immédiatement." + }, + { + "progress": 110, + "logText": "Harlenn m'a remercié d'avoir enquêté sur ces plans d'attaque.", + "rewardExperience": 1150 + }, + { + "progress": 120, + "logText": "Afin de faire cesser les attaques contre la colonie du Mont Blackwater, Harlenn veut que j'assassine Guthbered à Prim." + }, + { + "progress": 130, + "logText": "J'ai commencé à me battre avec Guthbered." + }, + { + "progress": 131, + "logText": "J'ai dit à Guthbered que j'avais été envoyé pour le tuer, mais l'ai laissé vivre. Il m'a remercié avec profusion et a quitté Prim.", + "rewardExperience": 2100 + }, + { + "progress": 149, + "logText": "I have told Harlenn that Guthbered is gone." + }, + { + "progress": 150, + "logText": "Harlenn m'a remercié pour l'aide que je lui ai fournie. Désormais, les attaques contre la colonie du Mont Blackwater devraient cesser.", + "rewardExperience": 5000 + }, + { + "progress": 240, + "logText": "J'ai maintenant gagné la confiance de la colonie du Mont Blackwater, et devrais avoir accès à tous les services.", + "finishesQuest": 1 + }, + { + "progress": 250, + "logText": "J'ai décidé de ne pas aider les gens de la colonie du Mont Blackwater.", + "finishesQuest": 1 + }, + { + "progress": 251, + "logText": "Comme j'aide Prim, Harlenn ne veut plus me parler.", + "finishesQuest": 1 + } + ] + }, + { + "id": "prim_innquest", + "name": "Bien reposé", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "J'ai discuté avec le cuisinier de Prim, au pied du Mont Blackwater. Il y a une chambre à louer, mais elle est déjà louée par Arghest. Je dois aller parler à Arghest pour voir s'il a toujours besoin de louer cette chambre. Le cuisinier m'a indiqué une direction au Sud-Ouest de Prim." + }, + { + "progress": 20, + "logText": "J'ai parlé avec Arghest au sujet de la chambre dans l'auberge. Il souhaite toujours pouvoir en disposer pour s'y reposer. Il m'a cependant déclaré que je pourrais le persuader de me laisser l'utiliser si je lui offrais une compensation suffisante." + }, + { + "progress": 30, + "logText": "Arghest veut que je lui rapporte 5 bouteilles de lait. Je devrais pouvoir trouver un peu de lait dans un des plus gros villages." + }, + { + "progress": 40, + "logText": "J'ai rapporté du lait à Arghest. Il est d'accord pour me laisser utiliser la chambre de l'auberge de Prim. Je devrais pouvoir m'y reposer désormais. Je dois aller le dire au cuisinier de l'auberge.", + "rewardExperience": 500 + }, + { + "progress": 50, + "logText": "J'ai expliqué au cuisinier que j'avais la permission d'Arghest d'utiliser la chambre.", + "finishesQuest": 1 + } + ] + }, + { + "id": "prim_hunt", + "name": "Intentions brumeuses", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Juste à l'extérieur de la mine effondrée sur le chemin du Mont blackwater, j'ai rencontré un homme du village de Prim. Il m'a supplié de les aider." + }, + { + "progress": 11, + "logText": "Le village de Prim a besoin d'une aide extérieure pour se défendre contre des attaques de monstres. Je devrais aller parler avec Guthbered à Prim si je désire les aider." + }, + { + "progress": 15, + "logText": "On peut trouver Guthbered dans la grande halle de Prim. Je dois rechercher une maison en pierres au centre du village." + }, + { + "progress": 20, + "logText": "J'ai parlé avec Guthbered au sujet de l'histoire de Prim. Prim est depuis quelques temps soumis à des attaques permanentes de la colonie du Mont Blackwater." + }, + { + "progress": 25, + "logText": "Guthbered veut que je monte jusqu'à la colonie et que je demande à leur chef de guerre Harlenn pourquoi (ou si) ils ont invoqué les monstres de Gornaud contre Prim." + }, + { + "progress": 30, + "logText": "J'ai parlé avec Harlenn des attaques contre Prim. Il dément le fait que les gens de la colonie du Mont Blackwater aient quoi que ce soit à voir avec ces attaques. Je dois retourner parler avec Guthbered à Prim." + }, + { + "progress": 40, + "logText": "Guthbered continue de croire que les gens de la colonie de Blackwater sont mêlés à ces attaques." + }, + { + "progress": 50, + "logText": "Guthbered veut que je recherche des preuves que les gens de la colonie du Mont Blackwater se préparent à lancer une attaque d'envergure contre Prim. Je dois aller rechercher des indices près des quartiers privés d'Harlenn, mais doit prendre garde ne me pas me faire voir." + }, + { + "progress": 60, + "logText": "J'ai trouvé des papiers du côté des quartiers privés d'Harlenn brossant un plan d'attaque contre Prim. Je dois aller en parler à Guthbered immédiatement." + }, + { + "progress": 70, + "logText": "Guthbered m'a remercié de l'avoir aidé à trouver des preuves du plan d'attaque.", + "rewardExperience": 1150 + }, + { + "progress": 80, + "logText": "Afin de faire cesser les attaques contre Prim, Guthbered veut que j'aille tuer Harlenn en haut dans la colonie du Mont Blackwater." + }, + { + "progress": 90, + "logText": "J'ai commencé à me battre avec Harlenn." + }, + { + "progress": 91, + "logText": "J'ai dit à Harlenn que j'avais été envoyé pour le tuer, mais l'ai laissé vivre. Il m'a remercié avec profusion et a quitté la colonie.", + "rewardExperience": 2100 + }, + { + "progress": 99, + "logText": "I have told Guthbered that Harlenn is gone." + }, + { + "progress": 100, + "logText": "Guthbered m'a remercié pour l'aide que je lui ai fournie. Désormais, les attaques contre Prim devraient cesser. En remerciement, Guthbered m'a donné quelques objets et un laisser-passer falsifié afin que je puisse entrer dans les quartiers confidentiels de la colonie du Mont Blackwater.", + "rewardExperience": 5000 + }, + { + "progress": 140, + "logText": "J'ai montré le laisser-passer falsifié au garde et ai pu entrer dans les quartiers confidentiels." + }, + { + "progress": 240, + "logText": "J'ai maintenant gagné la confiance de Prim, et devrais avoir accès à tous les services.", + "finishesQuest": 1 + }, + { + "progress": 250, + "logText": "J'ai décidé de ne pas aider les gens de Prim.", + "finishesQuest": 1 + }, + { + "progress": 251, + "logText": "Comme j'aide la colonie du Mont Blackwater, Guthbered ne veut plus me parler.", + "finishesQuest": 1 + } + ] + }, + { + "id": "kazaul", + "name": "Lumières dans le noir", + "showInLog": 1, + "stages": [ + { + "progress": 8, + "logText": "J'ai trouvé mon chemin dans les quartiers confidentiels de la colonie du Mont Blackwater et découvert un groupe de mages dirigés par un homme dénommé Throdna." + }, + { + "progress": 9, + "logText": "Throdna semblait très intéressé par quelqu'un (ou quelque chose) appelé Kazaul, et en particulier par un rituel célébré en son nom." + }, + { + "progress": 10, + "logText": "J'ai accepté d'aider Throdna à en savoir plus au sujet du rituel proprement dit, en recherchant les pièces qui semblent avoir été dispersées à travers la montagne. Je dois rechercher les éléments du rituel de Kazaul sur le chemin en descendant du Mont Blackwater vers Prim." + }, + { + "progress": 11, + "logText": "Je dois trouver les deux couplets du chant et les trois stances décrivant le rituel proprement dit, et revenir voir Throdna lorsque j'aurais tout trouvé." + }, + { + "progress": 21, + "logText": "J'ai trouvé le premier couplet du chant du rituel de Kazaul." + }, + { + "progress": 22, + "logText": "J'ai trouvé le second couplet du chant du rituel de Kazaul." + }, + { + "progress": 25, + "logText": "J'ai trouvé la première stance du rituel de Kazaul." + }, + { + "progress": 26, + "logText": "J'ai trouvé la seconde stance du rituel de Kazaul." + }, + { + "progress": 27, + "logText": "J'ai trouvé la troisième stance du rituel de Kazaul." + }, + { + "progress": 30, + "logText": "Throdna m'a remercié d'avoir trouvé tous les éléments du rituel.", + "rewardExperience": 3600 + }, + { + "progress": 40, + "logText": "Throdna veut que je mette un terme aux réapparitions de l'engeance de Kazaul qui se produisent près du Mont Blackwater. Il y a un mausolée au pied de la montagne que je devrais inspecter." + }, + { + "progress": 41, + "logText": "On m'a donné une fiole d'élixir purificateur que Throdna me demande de verser sur le mausolée de Kazaul. Je dois revenir voir Throdna lorsque j'aurais trouvé et purifié le mausolée." + }, + { + "progress": 50, + "logText": "Au mausolée du pied du Mont Blackwater, j'ai rencontré le gardien de Kazaul. En récitant les couplets du chant du rituel, j'ai réussi à déclencher son attaque." + }, + { + "progress": 60, + "logText": "J'ai purifié le mausolée de Kazaul.", + "rewardExperience": 3200 + }, + { + "progress": 100, + "logText": "J'espérais quelque signe d'appréciation de Throdna pour l'avoir aidé à en apprendre plus sur le rituel et pour avoir purifié le mausolée. Mais il semblait plus occupé par ses divagations concernant Kazaul. Je n'ai rien compris à ses élucubrations.", + "finishesQuest": 1 + } + ] + }, + { + "id": "bwm_wyrms", + "name": "Sans faiblesse", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Herec au second niveau de la colonie du Mont Blackwater fait des recherches au sujet des wyrms blanches à l'extérieur de la colonie. Il veut que je lui rapporte 5 griffes de wyrms blanches afin qu'il puisse continuer ses recherches. Apparemment, seules certaines des wyrms blanches ont ces griffes. Il va falloir que j'en tue un certain nombre pour m'en procurer." + }, + { + "progress": 20, + "logText": "J'ai donné les 5 griffes de wyrms blanches à Herec." + }, + { + "progress": 30, + "logText": "Herec a achevé la création d'une potion soulageant la fatigue qui sera très utile pour combattre les wyrms dans le futur.", + "rewardExperience": 1500, + "finishesQuest": 1 + } + ] + }, + { + "id": "bjorgur_grave", + "name": "Éveillés du repos", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Bjorgur à Prim à la base du Mont Blackwater pense que quelque chose a dérangé la tombe de ses parents, au Sud-Ouest de Prim, juste à l'extérieur de la mine de Elm." + }, + { + "progress": 15, + "logText": "Bjorgur veut que j'aille vérifier la tombe et que je m'assure que la dague de sa famille est toujours en sécurité dans la tombe." + }, + { + "progress": 20, + "logText": "Fulus à Prim aimerait obtenir la dague de famille de Bjorgur que possédait le grand-père de Bjorgur." + }, + { + "progress": 30, + "logText": "J'ai rencontré un homme qui portait une dague étrange au fond d'un caveau au Sud-Ouest de Prim. Il a du piller la tombe pour voler la dague." + }, + { + "progress": 40, + "logText": "J'ai remis la dague à sa place dans la tombe. Étonnamment, les morts sans repos semblent plus apaisés désormais.", + "rewardExperience": 200 + }, + { + "progress": 50, + "logText": "Bjorgur m'a remercié pour mon aide. Il m'a dit que je devrais aussi aller trouver ses parents à Feygard.", + "rewardExperience": 1100, + "finishesQuest": 1 + }, + { + "progress": 51, + "logText": "J'ai dit à Fulus que j'avais aidé Bjorgur à remettre la dague de sa famille à sa place d'origine." + }, + { + "progress": 60, + "logText": "J'ai donné la dague de famille de Bjorgur à Fulus. Il m'a remercié de la lui avoir apportée, et m'a remercié avec largesse.", + "rewardExperience": 1700, + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/actorconditions_v069.json b/AndorsTrail/res/raw-it/actorconditions_v069.json new file mode 100644 index 000000000..e3b1552e5 --- /dev/null +++ b/AndorsTrail/res/raw-it/actorconditions_v069.json @@ -0,0 +1,52 @@ +[ + { + "id": "bless", + "iconID": "actorconditions_1:41", + "name": "Benedizione", + "category": 0, + "isPositive": 1, + "abilityEffect": { + "increaseAttackChance": 5 + } + }, + { + "id": "poison_weak", + "iconID": "actorconditions_1:60", + "name": "Veleno leggero", + "category": 3, + "roundEffect": { + "visualEffectID": 2, + "increaseCurrentHP": { + "min": -1, + "max": -1 + } + } + }, + { + "id": "str", + "iconID": "actorconditions_1:70", + "name": "Forza", + "category": 2, + "isPositive": 1, + "abilityEffect": { + "increaseAttackDamage": { + "min": 2, + "max": 2 + } + } + }, + { + "id": "regen", + "iconID": "actorconditions_1:35", + "name": "Rigenerazione dell'Ombra", + "category": 0, + "isPositive": 1, + "roundEffect": { + "visualEffectID": 1, + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + } +] diff --git a/AndorsTrail/res/raw-it/actorconditions_v069_bwm.json b/AndorsTrail/res/raw-it/actorconditions_v069_bwm.json new file mode 100644 index 000000000..d1fe7fdfb --- /dev/null +++ b/AndorsTrail/res/raw-it/actorconditions_v069_bwm.json @@ -0,0 +1,101 @@ +[ + { + "id": "speed_minor", + "iconID": "actorconditions_1:87", + "name": "Velocità lieve", + "category": 2, + "isPositive": 1, + "abilityEffect": { + "increaseMaxAP": 2 + } + }, + { + "id": "fatigue_minor", + "iconID": "actorconditions_1:14", + "name": "Fatica lieve", + "category": 2, + "abilityEffect": { + "increaseMoveCost": 2, + "increaseAttackCost": 2, + "increaseAttackDamage": { + "min": -1, + "max": -1 + } + } + }, + { + "id": "feebleness_minor", + "iconID": "actorconditions_1:74", + "name": "Debolezza dell'arma lieve", + "category": 1, + "abilityEffect": { + "increaseAttackDamage": { + "min": -3, + "max": -3 + } + } + }, + { + "id": "bleeding_wound", + "iconID": "actorconditions_2:0", + "name": "Ferite sanguinanti", + "category": 3, + "isStacking": 1, + "roundEffect": { + "visualEffectID": 0, + "increaseCurrentHP": { + "min": -1, + "max": -1 + } + } + }, + { + "id": "rage_minor", + "iconID": "actorconditions_1:90", + "name": "Rabbia berserker lieve", + "category": 1, + "isPositive": 1, + "abilityEffect": { + "increaseMaxHP": 35, + "increaseAttackChance": 60, + "increaseBlockChance": -90, + "increaseDamageResistance": -1 + } + }, + { + "id": "blackwater_misery", + "iconID": "actorconditions_1:58", + "name": "Sofferenza di Blackwater", + "category": 3, + "abilityEffect": { + "increaseAttackCost": 1, + "increaseAttackChance": -50, + "increaseCriticalSkill": -50 + } + }, + { + "id": "intoxicated", + "iconID": "actorconditions_2:1", + "name": "Intossicato", + "category": 1, + "isPositive": 1, + "abilityEffect": { + "increaseMaxHP": 15, + "increaseAttackCost": 1, + "increaseAttackChance": -30, + "increaseAttackDamage": { + "min": 4, + "max": 4 + } + } + }, + { + "id": "dazed", + "iconID": "actorconditions_1:65", + "name": "Stordito", + "category": 1, + "abilityEffect": { + "increaseBlockChance": -40 + } + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_alynndir.json b/AndorsTrail/res/raw-it/conversationlist_alynndir.json new file mode 100644 index 000000000..634b0556c --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_alynndir.json @@ -0,0 +1,70 @@ +[ + { + "id": "alynndir_1", + "message": "Ciao ragazzo, benvenuto nella mia baracca.", + "replies": [ + { + "text": "Cosa fai qui?", + "nextPhraseID": "alynndir_2" + }, + { + "text": "Puoi darmi qualche informazione sui dintorni?", + "nextPhraseID": "alynndir_3" + } + ] + }, + { + "id": "alynndir_2", + "message": "Principalmente io commercio con i viaggiatori sulla strada principale per Nor City.", + "replies": [ + { + "text": "Hai qualcosa da vendere?", + "nextPhraseID": "S" + }, + { + "text": "Puoi darmi informazioni sulle zone qui intorno?", + "nextPhraseID": "alynndir_3" + } + ] + }, + { + "id": "alynndir_3", + "message": "Oh, non c'è molto da dire. A ovest c'è Vilegard e ad est Brightport.", + "replies": [ + { + "text": "N", + "nextPhraseID": "alynndir_4" + } + ] + }, + { + "id": "alynndir_4", + "message": "A nord c'è solo foresta, però qui accadono cose strane ultimamente.", + "replies": [ + { + "text": "N", + "nextPhraseID": "alynndir_5" + } + ] + }, + { + "id": "alynndir_5", + "message": "Ho sentito urla terribili provenire dalla foresta a nord-ovest.", + "replies": [ + { + "text": "N", + "nextPhraseID": "alynndir_6" + } + ] + }, + { + "id": "alynndir_6", + "message": "Mi chiedo cosa ci sia lassù.", + "replies": [ + { + "text": "Ciao.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_ambelie.json b/AndorsTrail/res/raw-it/conversationlist_ambelie.json new file mode 100644 index 000000000..7a420596a --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_ambelie.json @@ -0,0 +1,128 @@ +[ + { + "id": "ambelie_1", + "message": "Oh cielo, un plebeo. Stai lontano da me. Potresti attaccarmi qualcosa.", + "replies": [ + { + "text": "Chi sei tu?", + "nextPhraseID": "ambelie_2" + }, + { + "text": "Cosa fa una nobildonna come te in un posto come questo?", + "nextPhraseID": "ambelie_5" + }, + { + "text": "Sarei ben felice di allontanarmi da una snob come te.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "ambelie_2", + "message": "Sono Ambelie della casata di Laumwill di Feygard. Sono sicura che avrai sentito parlare di me e della mia casata.", + "replies": [ + { + "text": "Oh, sì...uhm...Casata di Laumwill di Feygard. Naturalmente.", + "nextPhraseID": "ambelie_3" + }, + { + "text": "Non ho mai sentito parlare di te nè della tua casata.", + "nextPhraseID": "ambelie_4" + }, + { + "text": "Dov'è Feygard?", + "nextPhraseID": "ambelie_3" + } + ] + }, + { + "id": "ambelie_3", + "message": "Feygard, la grande città della pace. Sicuramente la conosci. A Nord-Ovest del nostro grande paese.", + "replies": [ + { + "text": "Cosa fa una nobildonna come te in un posto come questo?", + "nextPhraseID": "ambelie_5" + }, + { + "text": "No, non ne ho mai sentito parlare.", + "nextPhraseID": "ambelie_4" + } + ] + }, + { + "id": "ambelie_4", + "message": "Pfft. Questo dimostra che tutto ciò che ho sentito su di voi selvaggi del sud è vero, così ignoranti..." + }, + { + "id": "ambelie_5", + "message": "Io, Ambelie della casata di Laumwill di Feygard, sono in gita verso Nor City, la città a Sud.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ambelie_6" + } + ] + }, + { + "id": "ambelie_6", + "message": "Sono in gita per constatare se è vero tutto quello di cui ho sentito parlare. Se veramente Nor City può essere paragonata al fascino della grande città di Feygard.", + "replies": [ + { + "text": "Nor City, e dov'è?", + "nextPhraseID": "ambelie_7" + }, + { + "text": "Se vi piace così tanto Feygard, perché ve ne siete andata?", + "nextPhraseID": "ambelie_9" + } + ] + }, + { + "id": "ambelie_7", + "message": "Non sai nemmeno di Nor City? Terrò conto che i selvaggi di qui non hanno nemmeno mai sentito parlare della città.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ambelie_8" + } + ] + }, + { + "id": "ambelie_8", + "message": "Sto cominciando a essere sempre più convinta che Nor City non sarà mai, nemmeno nei miei sogni più azzardati, paragonabile alla grandiosa Feygard.", + "replies": [ + { + "text": "Buona fortuna con la tua escursione.", + "nextPhraseID": "ambelie_10" + } + ] + }, + { + "id": "ambelie_9", + "message": "Tutte le nobildonne di Feygard continuano a parlare della misteriosa Ombra di Nor City. Voglio vederla di persona.", + "replies": [ + { + "text": "Nor City, e dov'è?", + "nextPhraseID": "ambelie_7" + }, + { + "text": "Buona fortuna con la tua escursione.", + "nextPhraseID": "ambelie_10" + } + ] + }, + { + "id": "ambelie_10", + "message": "Grazie, ora però lasciami sola, prima che qualcuno mi veda a parlare con un plebeo.", + "replies": [ + { + "text": "Plebeo? Stai cercando di insultarmi? Addio.", + "nextPhraseID": "X" + }, + { + "text": "Probabilmente non riusciresti nemmeno a sopravvivere a una vespa della foresta.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_blackwater_harlenn.json b/AndorsTrail/res/raw-it/conversationlist_blackwater_harlenn.json new file mode 100644 index 000000000..cc80acc40 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_blackwater_harlenn.json @@ -0,0 +1,1042 @@ +[ + { + "id": "harlenn_start", + "replies": [ + { + "nextPhraseID": "harlenn_sentbyprim_8", + "requires": { + "progress": "prim_hunt:91" + } + }, + { + "nextPhraseID": "harlenn_sentbyprim_2", + "requires": { + "progress": "prim_hunt:90" + } + }, + { + "nextPhraseID": "harlenn_sentbyprim_1", + "requires": { + "progress": "prim_hunt:80" + } + }, + { + "nextPhraseID": "harlenn_return_1", + "requires": { + "progress": "bwm_agent:251" + } + }, + { + "nextPhraseID": "harlenn_return_1", + "requires": { + "progress": "bwm_agent:250" + } + }, + { + "nextPhraseID": "harlenn_completed", + "requires": { + "progress": "bwm_agent:150" + } + }, + { + "nextPhraseID": "harlenn_killguth_3", + "requires": { + "progress": "bwm_agent:149" + } + }, + { + "nextPhraseID": "harlenn_workingforprim_1", + "requires": { + "progress": "prim_hunt:50" + } + }, + { + "nextPhraseID": "harlenn_killguth_1", + "requires": { + "progress": "bwm_agent:120" + } + }, + { + "nextPhraseID": "harlenn_lookforsigns_1", + "requires": { + "progress": "bwm_agent:95" + } + }, + { + "nextPhraseID": "harlenn_return_3", + "requires": { + "progress": "bwm_agent:70" + } + }, + { + "nextPhraseID": "harlenn_return_2", + "requires": { + "progress": "bwm_agent:65" + } + }, + { + "nextPhraseID": "harlenn_1" + } + ] + }, + { + "id": "harlenn_1", + "message": "Benvenuto viandante.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_2" + } + ] + }, + { + "id": "harlenn_2", + "message": "Devi essere il ragazzo di cui ho sentito parlare, quello che è salito dal fianco della montagna.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_3" + } + ] + }, + { + "id": "harlenn_3", + "message": "Abbiamo bisogno del tuo aiuto per risolvere alcuni...problemi.", + "replies": [ + { + "text": "Chi sei tu?", + "nextPhraseID": "harlenn_4" + } + ] + }, + { + "id": "harlenn_4", + "message": "Oh scusa, non mi sono presentato correttamente: sono Harlenn il maestro d'armi dell'insediamento di Blackwater.", + "replies": [ + { + "text": "Mi è stato detto di cercarti dalla guida che mi ha portato sulla montagna.", + "nextPhraseID": "harlenn_5" + } + ] + }, + { + "id": "harlenn_5", + "message": "Oh bene, che fortuna che ti ha trovato! Raramente scendiamo dalla montagna.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_6" + } + ] + }, + { + "id": "harlenn_6", + "message": "La maggior parte del tempo la passiamo quassù nell'insediamento.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_7" + } + ] + }, + { + "id": "harlenn_7", + "message": "Tuttavia, gli ultimi avvenimenti ci hanno costretto a scendere per chiedere aiuto. E siamo stati fortunati ad incontrare te.", + "replies": [ + { + "text": "A quali problemi ti riferisci?", + "nextPhraseID": "harlenn_8" + }, + { + "text": "Cosa sta succedendo qui?", + "nextPhraseID": "harlenn_8" + } + ] + }, + { + "id": "harlenn_8", + "message": "Sono sicuro che hai notato il problema venendo qui. I mostri ovviamente.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_9" + } + ] + }, + { + "id": "harlenn_9", + "message": "Quelle bestie maledette, fuori dal nostro insediamento. I dragoni bianchi e gli Aulaeth. E i loro addestratori sono ancora più letali.", + "replies": [ + { + "text": "Quelli? Non mi hanno creato fastidi!", + "nextPhraseID": "harlenn_11" + }, + { + "text": "Intuisco dove vuoi arrivare. Credo che tu abbia bisogno di me per affrontarli, o no?", + "nextPhraseID": "harlenn_10" + }, + { + "text": "Perlomeno non sono niente a confronto di quelle bestie, i Gornaud, ai piedi della montagna.", + "nextPhraseID": "harlenn_12" + } + ] + }, + { + "id": "harlenn_10", + "message": "Beh sì, ma ucciderli non serve a molto. Abbiamo provato, ma continuano a tornare.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_13" + } + ] + }, + { + "id": "harlenn_11", + "message": "Sembri il tipo che fa al caso mio!", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_13" + } + ] + }, + { + "id": "harlenn_12", + "message": "Gornaud? Non ho mai sentito parlare di loro, ma sono sicuro che non possono essere peggio delle bestie che ci sono qui!", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_13" + } + ] + }, + { + "id": "harlenn_13", + "message": "In ogni caso, le bestie ci stanno decimando. Ma non sono la nostra unica preoccupazione.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_14" + } + ] + }, + { + "id": "harlenn_14", + "message": "Oltre questo, subiamo continui attacchi da parte di quei bastardi del villaggio di Prim alla base della montagna.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 65 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_15" + } + ] + }, + { + "id": "harlenn_15", + "message": "Oh quei traditori, falsi e bastardi!", + "replies": [ + { + "text": "Che cosa hanno fatto?", + "nextPhraseID": "harlenn_16" + }, + { + "text": "Ho parlato con Guthbered a Prim. Dice che siete voi ad attaccare loro e che siete sempre voi dietro gli attacchi dei Gornaud a Prim. ", + "nextPhraseID": "harlenn_prim_1", + "requires": { + "progress": "prim_hunt:25" + } + }, + { + "text": "Posso fare qualcosa per aiutarti?", + "nextPhraseID": "harlenn_18" + } + ] + }, + { + "id": "harlenn_16", + "message": "Vengono di notte a sabotare i nostri rifornimenti.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_17" + } + ] + }, + { + "id": "harlenn_17", + "message": "Siamo certi che ci siano loro dietro quei mostri.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 66 + } + ], + "replies": [ + { + "text": "Ho parlato con Guthbered a Prim. Dice che siete voi ad attaccare loro e che siete sempre voi dietro gli attacchi dei Gornaud a Prim.", + "nextPhraseID": "harlenn_prim_1", + "requires": { + "progress": "prim_hunt:25" + } + }, + { + "text": "Posso fare qualcosa per aiutarti?", + "nextPhraseID": "harlenn_18" + } + ] + }, + { + "id": "harlenn_18", + "message": "Certo, se ti senti all'altezza.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_19" + } + ] + }, + { + "id": "harlenn_19", + "message": "Considerando che sei arrivato fino a qui vivo, sono piuttosto sicuro che tu sia in grado di cavartela.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_20" + } + ] + }, + { + "id": "harlenn_prim_1", + "message": "Noi!? Hah! È questo che ti hanno detto? Sono sempre pronti a mentire per ottenere quello che vogliono, sicuramente non siamo noi ad attaccare loro.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_prim_2" + } + ] + }, + { + "id": "harlenn_prim_2", + "message": "E ovviamente sono loro che causano tutti i problemi.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_prim_3" + } + ] + }, + { + "id": "harlenn_prim_3", + "message": "Hanno addirittura catturato uno dei nostri esploratori! Chissà cosa ne hanno fatto.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_prim_3_1" + } + ] + }, + { + "id": "harlenn_prim_3_1", + "replies": [ + { + "nextPhraseID": "X", + "requires": { + "progress": "bwm_agent:90" + } + }, + { + "nextPhraseID": "X", + "requires": { + "progress": "bwm_agent:251" + } + }, + { + "nextPhraseID": "X", + "requires": { + "progress": "bwm_agent:250" + } + }, + { + "nextPhraseID": "harlenn_prim_4" + } + ] + }, + { + "id": "harlenn_prim_4", + "message": "Ti avviso, sono dei traditori e bugiardi.", + "replies": [ + { + "text": "Certo, ti credo. Cosa ti serve da me?", + "nextPhraseID": "harlenn_prim_6" + }, + { + "text": "Cosa ne guadagnerei aiutando voi anziché loro? ", + "nextPhraseID": "harlenn_prim_5" + }, + { + "text": "Non la bevo. Penso che aiuterò il popolo di Prim e non voi.", + "nextPhraseID": "harlenn_prim_7" + } + ] + }, + { + "id": "harlenn_prim_5", + "message": "Guadagno? La nostra fiducia, è ovvio! Inoltre saresti sempre il benvenuto nel nostro accampamento. I nostri commercianti hanno delle attrezzature veramente buone.", + "replies": [ + { + "text": "Ok, vi aiuterò a trattare con loro.", + "nextPhraseID": "harlenn_prim_6" + }, + { + "text": "Non sono ancora pienamente convinto, ma per ora ti aiuterò.", + "nextPhraseID": "harlenn_prim_6" + } + ] + }, + { + "id": "harlenn_prim_6", + "message": "Bene, ci serve un guerriero in grado di fronteggiare i mostri e i banditi di Prim.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_19" + } + ] + }, + { + "id": "harlenn_prim_7", + "message": "Bah, sei inutile per me. Perché sei venuto qui a farmi perdere tempo? Sparisci.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 250 + } + ] + }, + { + "id": "harlenn_20", + "message": "Ok, questo è il piano: voglio che tu vada a parlare con Guthbered a Prim per dargli il nostro ultimatum:", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_21" + } + ] + }, + { + "id": "harlenn_21", + "message": "O fermano i loro attacchi, o li sistemeremo noi.", + "replies": [ + { + "text": "Certo, porterò loro il vostro ultimatum.", + "nextPhraseID": "harlenn_22" + }, + { + "text": "No. A dire il vero credo che dovrei aiutare le persone di Prim.", + "nextPhraseID": "harlenn_prim_7" + } + ] + }, + { + "id": "harlenn_22", + "message": "Bene, ora affrettati. Non sappiamo fra quanto tempo attaccheranno nuovamente.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 70 + } + ] + }, + { + "id": "harlenn_return_1", + "message": "Ancora tu? Non voglio aver nulla a che fare con te. Non seccarmi.", + "replies": [ + { + "text": "Perché il tuo popolo sta attaccando il villaggio di Prim?", + "nextPhraseID": "harlenn_prim_1", + "requires": { + "progress": "prim_hunt:25" + } + } + ] + }, + { + "id": "harlenn_return_2", + "message": "Bentornato viaggiatore, a cosa stai pensando?", + "replies": [ + { + "text": "Ho parlato con Guthbered a Prim. Dice che siete voi ad attaccarli e che ci siete sempre voi dietro gli attacchi dei Gornaud a Prim.", + "nextPhraseID": "harlenn_prim_1", + "requires": { + "progress": "prim_hunt:25" + } + }, + { + "text": "Cosa hai detto prima a proposito dei mostri che stanno attaccando il vostro insediamento?", + "nextPhraseID": "harlenn_9" + } + ] + }, + { + "id": "harlenn_return_3", + "message": "Bentornato viaggiatore. Hai parlato con quel bugiardo di Guthbered laggiù a Prim?", + "replies": [ + { + "text": "Cosa dovrei fare di nuovo?", + "nextPhraseID": "harlenn_20" + }, + { + "text": "No, non ancora.", + "nextPhraseID": "harlenn_22" + }, + { + "text": "Si, ho parlato con lui. Egli nega di essere dietro a qualsiasi attacco.", + "nextPhraseID": "harlenn_talkedto_guth_1", + "requires": { + "progress": "bwm_agent:80" + } + }, + { + "text": "Ho parlato a Guthbered a Prim. Dice che siete voi ad attaccarli e che ci siete sempre voi dietro gli attacchi dei Gornaud a Prim.", + "nextPhraseID": "harlenn_prim_1", + "requires": { + "progress": "prim_hunt:25" + } + } + ] + }, + { + "id": "harlenn_workingforprim_1", + "message": "I miei informatori mi hanno dato una notizia mooolto interessante, dicono che stai lavorando per Prim.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_workingforprim_2" + } + ] + }, + { + "id": "harlenn_workingforprim_2", + "message": "Non è accettabile che tu stia qui, non possiamo avere una spia nell'insediamento. Ti consiglio di andartene mentre sei ancora in tempo, traditore.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 251 + } + ] + }, + { + "id": "harlenn_completed", + "message": "Grazie, amico. Il tuo aiuto è molto apprezzato, ora tutti nell'insediamento parleranno con te molto volentieri.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 240 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_completed_1" + } + ] + }, + { + "id": "harlenn_completed_1", + "message": "Sono sicuro, ora che abbiamo ucciso le ultime bestie fuori dall'insediamento, che gli attacchi dei mostri si fermeranno.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 250 + } + ] + }, + { + "id": "harlenn_talkedto_guth_1", + "message": "Lui nega?! Bah, quello sciocco traditore. Avrei dovuto saperlo che non avrebbe osato dire la verità.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_talkedto_guth_2" + } + ] + }, + { + "id": "harlenn_talkedto_guth_2", + "message": "Sono ancora sicuro che in qualche modo siano loro dietro questi attacchi contro di noi. Chi altro potrebbe esserci? Non ci sono altri insediamenti da queste parti.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_talkedto_guth_3" + } + ] + }, + { + "id": "harlenn_talkedto_guth_3", + "message": "Inoltre, sono sempre stati dei traditori. No, ci sono per forza loro dietro gli attacchi.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 90 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_talkedto_guth_4" + } + ] + }, + { + "id": "harlenn_talkedto_guth_4", + "message": "Ok, questo non ci lascia altra scelta, dobbiamo portare questa storia ad un altro livello.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_talkedto_guth_5" + } + ] + }, + { + "id": "harlenn_talkedto_guth_5", + "message": "Sei sicuro di essere pronto? Non sei una di quelle spie vero? Se per caso stai lavorando per conto loro, sappi che sono persone di cui non ci si può fidare.", + "replies": [ + { + "text": "Sono pronto a tutto. Aiuterò il vostro insediamento.", + "nextPhraseID": "harlenn_talkedto_guth_7" + }, + { + "text": "In realtà ora che me lo dici...", + "nextPhraseID": "harlenn_talkedto_guth_6", + "requires": { + "progress": "prim_hunt:25" + } + }, + { + "text": "Si, sto lavorando per Prim! Sembrano delle brave persone.", + "nextPhraseID": "harlenn_prim_7", + "requires": { + "progress": "prim_hunt:25" + } + } + ] + }, + { + "id": "harlenn_talkedto_guth_6", + "message": "Cosa? Stai lavorando per loro o no?", + "replies": [ + { + "text": "No, non importa. Sono pronto ad aiutare il vostro insediamento.", + "nextPhraseID": "harlenn_talkedto_guth_7" + }, + { + "text": "Stavo lavorando per loro, ma poi ho deciso di aiutare voi!", + "nextPhraseID": "harlenn_talkedto_guth_7" + }, + { + "text": "Sì, li sto aiutando a liberarsi di voi.", + "nextPhraseID": "harlenn_prim_7" + } + ] + }, + { + "id": "harlenn_talkedto_guth_7", + "message": "Bene.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_talkedto_guth_8" + } + ] + }, + { + "id": "harlenn_talkedto_guth_8", + "message": "Crediamo che si stiano preparando ad attaccarci da un momento all'altro, ma non abbiamo prove per dimostrarlo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_talkedto_guth_9" + } + ] + }, + { + "id": "harlenn_talkedto_guth_9", + "message": "Per questo penso che solo un forestiero come te possa aiutarci.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_talkedto_guth_10" + } + ] + }, + { + "id": "harlenn_talkedto_guth_10", + "message": "Voglio che tu vada a Prim a cercare qualsiasi indizio che porti ad un piano per attaccarci.", + "replies": [ + { + "text": "Certo, sembra facile.", + "nextPhraseID": "harlenn_talkedto_guth_11" + } + ] + }, + { + "id": "harlenn_talkedto_guth_11", + "message": "Bene, cerca di non essere scoperto! Dovresti cercare indizi dove staziona quel bugiardo di Guthbered.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 95 + } + ] + }, + { + "id": "harlenn_lookforsigns_1", + "message": "Ciao, hai trovato qualche prova sul piano di attacco di Prim?", + "replies": [ + { + "text": "No, non ancora.", + "nextPhraseID": "harlenn_lookforsigns_2" + }, + { + "text": "Si, ho trovato dei piani che parlano di reclutare mercenari per attaccarvi.", + "nextPhraseID": "harlenn_lookforsigns_3", + "requires": { + "progress": "bwm_agent:100" + } + }, + { + "text": "Cosa dovrei fare ancora?", + "nextPhraseID": "harlenn_talkedto_guth_8" + } + ] + }, + { + "id": "harlenn_lookforsigns_2", + "message": "Continua a cercare, sono certo che stanno tramando qualcosa." + }, + { + "id": "harlenn_lookforsigns_3", + "message": "Lo sapevo! Sapevo che stavano architettando qualcosa.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_lookforsigns_4" + } + ] + }, + { + "id": "harlenn_lookforsigns_4", + "message": "Oh, quel maiale bugiardo di Guthbered.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_lookforsigns_5" + } + ] + }, + { + "id": "harlenn_lookforsigns_5", + "message": "Comunque, grazie per l'aiuto nel cercare queste prove.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 110 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_lookforsigns_6" + } + ] + }, + { + "id": "harlenn_lookforsigns_6", + "message": "Prenderemo misure drastiche. Dobbiamo agire prima che riescano ad attuare il loro piano.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_lookforsigns_7" + } + ] + }, + { + "id": "harlenn_lookforsigns_7", + "message": "Un vecchio mito narra di come 'l'unico modo per uccidere Medusa è tagliarle la testa', in questo caso la testa di Prim è Guthbered.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_lookforsigns_8" + } + ] + }, + { + "id": "harlenn_lookforsigns_8", + "message": "Dovremmo sistemarlo in qualche modo. Hai dimostrato il tuo valore finora, questo sarà il tuo compito finale.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_lookforsigns_9" + } + ] + }, + { + "id": "harlenn_lookforsigns_9", + "message": "Voglio che tu vada ad affrontare Guthbered. Preferibilmente nel modo più doloroso e atroce che conosci.", + "replies": [ + { + "text": "Nessun problema.", + "nextPhraseID": "harlenn_lookforsigns_11" + }, + { + "text": "Sei sicuro che la via della violenza sia quella giusta per risolvere questo conflitto?", + "nextPhraseID": "harlenn_lookforsigns_10" + }, + { + "text": "Consideralo già morto!", + "nextPhraseID": "harlenn_lookforsigns_11" + } + ] + }, + { + "id": "harlenn_lookforsigns_10", + "message": "Hai visto i loro piani tu stesso. Se non facciamo qualcosa presto ci attaccheranno. È ovvio che dobbiamo ucciderlo!", + "replies": [ + { + "text": "Ve lo toglierò di torno, ma cercherò una soluzione pacifica per farlo.", + "nextPhraseID": "harlenn_lookforsigns_12" + }, + { + "text": "Molto bene, consideralo già morto.", + "nextPhraseID": "harlenn_lookforsigns_11" + } + ] + }, + { + "id": "harlenn_lookforsigns_11", + "message": "Eccellente, ritorna da me quando l'impresa sarà compiuta.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 120 + } + ] + }, + { + "id": "harlenn_lookforsigns_12", + "message": "Bene. Toglilo di mezzo come meglio credi, l'importante è che questi attacchi terminino.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 120 + } + ] + }, + { + "id": "harlenn_sentbyprim_1", + "message": "La tua espressione mi dice che la sete di sangue anima le tue gesta.", + "replies": [ + { + "text": "Sono stato mandato dal popolo di Prim per fermarti.", + "nextPhraseID": "harlenn_sentbyprim_2" + }, + { + "text": "Sono stato mandato dal popolo di Prim per fermarti. Nonostante ciò, ho deciso di lasciarti in vita.", + "nextPhraseID": "harlenn_sentbyprim_3" + } + ] + }, + { + "id": "harlenn_sentbyprim_2", + "message": "Fermare me? Ha ha. Molto bene, vediamo chi sarà ad essere fermato fra noi!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 90 + } + ], + "replies": [ + { + "text": "Per l'Ombra!", + "nextPhraseID": "F" + }, + { + "text": "Combatti!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "harlenn_sentbyprim_3", + "message": "Interessante... continua per favore.", + "replies": [ + { + "text": "E' ovvio che questo conflitto porterà solamente altri spargimenti di sangue. Dovrebbe fermarsi adesso.", + "nextPhraseID": "harlenn_sentbyprim_4" + } + ] + }, + { + "id": "harlenn_sentbyprim_4", + "message": "Cosa proponi?", + "replies": [ + { + "text": "Ti propongo di lasciare l'insediamento e trovarti una casa altrove.", + "nextPhraseID": "harlenn_sentbyprim_5" + } + ] + }, + { + "id": "harlenn_sentbyprim_5", + "message": "Perché dovrei farlo?", + "replies": [ + { + "text": "Questi due villaggi saranno sempre in conflitto ma se tu partissi, penserebbero di aver vinto e cesserebbero i loro attacchi.", + "nextPhraseID": "harlenn_sentbyprim_6" + } + ] + }, + { + "id": "harlenn_sentbyprim_6", + "message": "Hm, potresti avere ragione.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_sentbyprim_7" + } + ] + }, + { + "id": "harlenn_sentbyprim_7", + "message": "Ok, mi hai convinto. Lascerò questo insediamento. La sopravvivenza della mia gente è più importante di me.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_sentbyprim_8" + } + ] + }, + { + "id": "harlenn_sentbyprim_8", + "message": "Grazie amico, le tue parole mi hanno fatto capire.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 91 + } + ], + "replies": [ + { + "text": "Prego.", + "nextPhraseID": "R" + } + ] + }, + { + "id": "harlenn_killguth_1", + "message": "Ciao, sei riuscito a sbarazzarti di quel bugiardo di Guthbered giù a Prim?", + "replies": [ + { + "text": "Non ancora, ma ci sto lavorando.", + "nextPhraseID": "harlenn_lookforsigns_11" + }, + { + "text": "Cosa dovrei fare di nuovo?", + "nextPhraseID": "harlenn_lookforsigns_7" + }, + { + "text": "Sì, è morto.", + "nextPhraseID": "harlenn_killguth_2", + "requires": { + "item": { + "itemID": "guthbered_id", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Sì, se n'è andato.", + "nextPhraseID": "harlenn_killguth_2", + "requires": { + "progress": "bwm_agent:131" + } + } + ] + }, + { + "id": "harlenn_killguth_2", + "message": "Ha ha! Finalmente è sparito! Ora possiamo stare tranquilli nell'insediamento.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 149 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_killguth_3" + } + ] + }, + { + "id": "harlenn_killguth_3", + "message": "Non ci attaccheranno più ora che il loro leader non c'è più!", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_killguth_4" + } + ] + }, + { + "id": "harlenn_killguth_4", + "message": "Grazie amico, questi oggetti sono il segno della nostra riconoscenza.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 150 + }, + { + "rewardType": 1, + "rewardID": "harlenn_reward" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_completed" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_blackwater_herec.json b/AndorsTrail/res/raw-it/conversationlist_blackwater_herec.json new file mode 100644 index 000000000..d8109fe36 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_blackwater_herec.json @@ -0,0 +1,232 @@ +[ + { + "id": "herec_start", + "replies": [ + { + "nextPhraseID": "herec_q5", + "requires": { + "progress": "bwm_wyrms:30" + } + }, + { + "nextPhraseID": "herec_q3", + "requires": { + "progress": "bwm_wyrms:20" + } + }, + { + "nextPhraseID": "herec_q1", + "requires": { + "progress": "bwm_wyrms:10" + } + }, + { + "nextPhraseID": "herec_1" + } + ] + }, + { + "id": "herec_1", + "message": "Benvenuto viaggiatore. Devi essere quello di cui ho sentito parlare, quello che è salito sulla montagna.", + "replies": [ + { + "text": "N", + "nextPhraseID": "herec_2" + } + ] + }, + { + "id": "herec_2", + "message": "Saresti disposto ad aiutarmi con un compito?", + "replies": [ + { + "text": "Dipende, quale compito?", + "nextPhraseID": "herec_4" + }, + { + "text": "Perché dovrei aiutarti?", + "nextPhraseID": "herec_3" + } + ] + }, + { + "id": "herec_3", + "message": "Ah, un negoziatore. Mi piaci. Se mi aiuti, dividerò i frutti del mio lavoro con te. Dovrebbero valere molto per te.", + "replies": [ + { + "text": "Bene, di cosa hai bisogno?", + "nextPhraseID": "herec_4" + }, + { + "text": "No, come posso accettare qualcosa se non so di cosa si tratta?", + "nextPhraseID": "herec_11" + } + ] + }, + { + "id": "herec_4", + "message": "E' davvero semplice. Sto studiando questi dragoni che stanno in agguato qui fuori dall'insediamento. Sto cercando di trovare i loro punti di forza per usarli a mio vantaggio.", + "replies": [ + { + "text": "N", + "nextPhraseID": "herec_5" + } + ] + }, + { + "id": "herec_5", + "message": "Ma la mia bravura sta nell'analisi e non nel trovarmi faccia a faccia con quelle creature.", + "replies": [ + { + "text": "N", + "nextPhraseID": "herec_6" + } + ] + }, + { + "id": "herec_6", + "message": "Ed è qui che entri in gioco tu.", + "replies": [ + { + "text": "N", + "nextPhraseID": "herec_7" + } + ] + }, + { + "id": "herec_7", + "message": "Ho bisogno che tu raccolga alcuni campioni per me. Ho sentito che alcuni dragoni bianchi hanno artigli più affilati che possono essere estratti al momento della loro morte.", + "replies": [ + { + "text": "N", + "nextPhraseID": "herec_8" + } + ] + }, + { + "id": "herec_8", + "message": "Se tu riuscissi a portarmi qualche artiglio di dragone bianco, potrei veramente velocizzare la mia ricerca. ", + "replies": [ + { + "text": "N", + "nextPhraseID": "herec_9" + } + ] + }, + { + "id": "herec_9", + "message": "Diciamo che 5 artigli dovrebbero essere sufficienti.", + "replies": [ + { + "text": "Ok si può fare, ti farò avere 5 artigli di dragone bianco.", + "nextPhraseID": "herec_10" + }, + { + "text": "Certo, quelle bestie non sono un problema per me.", + "nextPhraseID": "herec_10" + }, + { + "text": "Non mi avvicinerò mai più a quelle bestie, per nessun motivo al mondo.", + "nextPhraseID": "herec_11" + } + ] + }, + { + "id": "herec_10", + "message": "Ottimo, fai più in fretta possibile in modo che io possa continuare i miei esperimenti.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_wyrms", + "value": 10 + } + ] + }, + { + "id": "herec_11", + "message": "Ti assicuro che la mia ricerca è veramente importante, ma la scelta è tua e anche la perdita." + }, + { + "id": "herec_q1", + "message": "Bentornato, come sta andando la ricerca?", + "replies": [ + { + "text": "Cosa dovrei fare di nuovo?", + "nextPhraseID": "herec_4" + }, + { + "text": "Non ho ancora trovato tutto, ma ci sto lavorando.", + "nextPhraseID": "herec_10" + }, + { + "text": "Ho trovato quello che hai chiesto.", + "nextPhraseID": "herec_q2", + "requires": { + "item": { + "itemID": "bwm_claws", + "quantity": 5, + "requireType": 0 + } + } + } + ] + }, + { + "id": "herec_q2", + "message": "Ben fatto amico mio! Questi saranno molto importanti per la mia ricerca.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_wyrms", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "herec_q2_2" + } + ] + }, + { + "id": "herec_q2_2", + "message": "Torna fra pochi minuti e avrò qualcosa per te." + }, + { + "id": "herec_q3", + "message": "Bentornato amico mio! Ho buone notizie. Ho distillato con successo i frammenti degli artigli che mi hai portato.", + "replies": [ + { + "text": "N", + "nextPhraseID": "herec_q4" + } + ] + }, + { + "id": "herec_q4", + "message": "Ora sono in grado di creare pozioni che contengono l'essenza dei dragoni bianchi. Queste pozioni saranno molto utili negli scontri futuri con questi mostri.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_wyrms", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "herec_q5" + } + ] + }, + { + "id": "herec_q5", + "message": "Vorresti comprare delle pozioni?", + "replies": [ + { + "text": "Certo, fammi vedere che cos'hai.", + "nextPhraseID": "S" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_blackwater_kazaul.json b/AndorsTrail/res/raw-it/conversationlist_blackwater_kazaul.json new file mode 100644 index 000000000..40b4be03c --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_blackwater_kazaul.json @@ -0,0 +1,158 @@ +[ + { + "id": "kazaul_guardian", + "message": "Kazaul..", + "replies": [ + { + "text": "Cosa ?", + "nextPhraseID": "kazaul_guardian_1" + }, + { + "text": "Kazaul, distruttore di sogni luminosi.", + "nextPhraseID": "kazaul_guardian_2", + "requires": { + "progress": "kazaul:40" + } + } + ] + }, + { + "id": "kazaul_guardian_1", + "message": "(Il guardiano sembra completamente ignaro della tua presenza.)" + }, + { + "id": "kazaul_guardian_2", + "message": "(Il guardiano guarda verso di te con i suoi occhi ardenti.)", + "replies": [ + { + "text": "Kazaul, profanatore del tempio di Elytharan.", + "nextPhraseID": "kazaul_guardian_3" + } + ] + }, + { + "id": "kazaul_guardian_3", + "message": "(Vedi gli occhi in fiamme del guardiano trasformarsi istantaneamente in una foschia rossa.)", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 50 + } + ], + "replies": [ + { + "text": "Un combattimento, aspettavo questo momento!", + "nextPhraseID": "F" + }, + { + "text": "Ti prego, non uccidermi!", + "nextPhraseID": "F" + }, + { + "text": "Per l'Ombra!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "sign_kazaul", + "replies": [ + { + "nextPhraseID": "sign_kazaul_1", + "requires": { + "progress": "kazaul:60" + } + }, + { + "nextPhraseID": "sign_kazaul_3" + } + ] + }, + { + "id": "sign_kazaul_1", + "message": "Vedi il santuario di Kazaul su cui hai versato la pozione di purificazione contenuta nella fiala.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_kazaul_2" + } + ] + }, + { + "id": "sign_kazaul_2", + "message": "La roccia che prima era incandescente ora è fredda come tutte le altre." + }, + { + "id": "sign_kazaul_3", + "message": "Davanti a te sta una grande apertura nella roccia dalla forma di un santuario.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_kazaul_4" + } + ] + }, + { + "id": "sign_kazaul_4", + "message": "Puoi sentire un fortissimo calore provenire dalla roccia, sembra un fuoco che brucia.", + "replies": [ + { + "text": "Lascia la roccia così com'è.", + "nextPhraseID": "X" + }, + { + "text": "Applica la pozione di purificazione nella fiala alla roccia.", + "nextPhraseID": "sign_kazaul_5", + "requires": { + "item": { + "itemID": "q_kazaul_vial", + "quantity": 1, + "requireType": 0 + } + } + } + ] + }, + { + "id": "sign_kazaul_5", + "message": "Versi delicatamente il contenuto della fiala sulle rocce.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 60 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_kazaul_6" + } + ] + }, + { + "id": "sign_kazaul_6", + "message": "Senti un rumore scoppiettante dal fondo del santuario, in un primo momento non succede nulla, ma poi noti un leggero calo del bagliore delle rocce.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_kazaul_7" + } + ] + }, + { + "id": "sign_kazaul_7", + "message": "Il processo accelera, riducendo il calore generato dalle rocce.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_kazaul_8" + } + ] + }, + { + "id": "sign_kazaul_8", + "message": "Questo deve essere il processo di purificazione del santuario di Kazaul." + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_blackwater_lower.json b/AndorsTrail/res/raw-it/conversationlist_blackwater_lower.json new file mode 100644 index 000000000..e85c985cc --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_blackwater_lower.json @@ -0,0 +1,263 @@ +[ + { + "id": "laede", + "replies": [ + { + "nextPhraseID": "laede_1", + "requires": { + "progress": "bwm_agent:240" + } + }, + { + "nextPhraseID": "laede_3" + } + ] + }, + { + "id": "laede_1", + "message": "Puoi riposare qui se vuoi, scegli il letto che desideri.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nondisplay", + "value": 16 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "laede_2" + } + ] + }, + { + "id": "laede_2", + "message": "Ti avverto però che quello laggiù nell'angolo ha un puzzo di marcio allucinante, qualcuno deve averci rovesciato sopra qualcosa." + }, + { + "id": "laede_3", + "message": "Benvenuto viaggiatore, questi letti sono solo per i residenti della montagna Blackwater." + }, + { + "id": "iducus", + "replies": [ + { + "nextPhraseID": "iducus_1", + "requires": { + "progress": "bwm_agent:240" + } + }, + { + "nextPhraseID": "iducus_2" + } + ] + }, + { + "id": "iducus_1", + "message": "Benvenuto amico, come posso aiutarti?", + "replies": [ + { + "text": "Che cosa hai da vendere?", + "nextPhraseID": "S" + } + ] + }, + { + "id": "iducus_2", + "message": "Benvenuto viaggiatore. Vedo che state osservando la mia vasta mercanzia.", + "replies": [ + { + "text": "N", + "nextPhraseID": "blackwater_notrust" + } + ] + }, + { + "id": "blackwater_priest", + "message": "...Kazaul, distruttore di speranze sprecate...\nNo, non faceva così.", + "replies": [ + { + "text": "N", + "nextPhraseID": "blackwater_priest_1" + } + ] + }, + { + "id": "blackwater_priest_1", + "message": "tormenti..sprecati?\nNo, non è nemmeno questo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "blackwater_priest_2" + } + ] + }, + { + "id": "blackwater_priest_2", + "message": "Argh, non riesco proprio a ricordare.", + "replies": [ + { + "text": "Cosa stai facendo?", + "nextPhraseID": "blackwater_priest_3" + } + ] + }, + { + "id": "blackwater_priest_3", + "message": "Oh non importa, niente. Sto solo cercando di ricordare una cosa. Non preoccuparti per questo." + }, + { + "id": "blackwater_guard2", + "message": "Alt! Ti consiglio di non andare oltre.", + "replies": [ + { + "text": "N", + "nextPhraseID": "blackwater_guard2_1" + } + ] + }, + { + "id": "blackwater_guard2_1", + "message": "C'è qualcosa laggiù, lo vedi?", + "replies": [ + { + "text": "N", + "nextPhraseID": "blackwater_guard2_2" + } + ] + }, + { + "id": "blackwater_guard2_2", + "message": "Nebbia? Ombra? Sono sicuro di aver visto qualcosa muoversi.", + "replies": [ + { + "text": "N", + "nextPhraseID": "blackwater_guard2_3" + } + ] + }, + { + "id": "blackwater_guard2_3", + "message": "Al diavolo 'sta cosa del turno di guardia. Io me ne sto qui dietro.", + "replies": [ + { + "text": "N", + "nextPhraseID": "blackwater_guard2_4" + } + ] + }, + { + "id": "blackwater_guard2_4", + "message": "È una buona cosa che almeno abbiamo bloccato l'entrata da quella vecchia baracca." + }, + { + "id": "blackwater_bossguard", + "replies": [ + { + "nextPhraseID": "blackwater_bossguard_2", + "requires": { + "progress": "prim_hunt:90" + } + }, + { + "nextPhraseID": "blackwater_bossguard_1" + } + ] + }, + { + "id": "blackwater_bossguard_1", + "message": "(La guardia ti dà uno sguardo accondiscendente, ma non dice nulla.)" + }, + { + "id": "blackwater_bossguard_2", + "message": "Hey, io voglio restare fuori dalla tua lotta con il capo! Non coinvolgermi!" + }, + { + "id": "blackwater_throneguard", + "replies": [ + { + "nextPhraseID": "blackwater_throneguard_5", + "requires": { + "progress": "bwm_agent:240" + } + }, + { + "nextPhraseID": "blackwater_throneguard_5", + "requires": { + "progress": "prim_hunt:140" + } + }, + { + "nextPhraseID": "blackwater_throneguard_1" + } + ] + }, + { + "id": "blackwater_throneguard_1", + "message": "Solo gli abitanti della montagna Blackwater possono entrare!", + "replies": [ + { + "text": "Ecco, ho un permesso scritto per poter entrare.", + "nextPhraseID": "blackwater_throneguard_3", + "requires": { + "item": { + "itemID": "bwm_permit", + "quantity": 1, + "requireType": 0 + } + } + } + ] + }, + { + "id": "blackwater_throneguard_2", + "message": "Ok, ti farò passare. Procedi sempre dritto, prego.", + "replies": [ + { + "text": "Grazie.", + "nextPhraseID": "R" + }, + { + "text": "Sì, togliti di mezzo.", + "nextPhraseID": "R" + } + ] + }, + { + "id": "blackwater_throneguard_3", + "message": "Un permesso dici? Fammi vedere.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 140 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "blackwater_throneguard_4" + } + ] + }, + { + "id": "blackwater_throneguard_4", + "message": "Beh, ha la firma e tutto il resto. Credo che sia tutto in ordine.", + "replies": [ + { + "text": "N", + "nextPhraseID": "blackwater_throneguard_2" + } + ] + }, + { + "id": "blackwater_throneguard_5", + "message": "Oh, sei tu.", + "replies": [ + { + "text": "N", + "nextPhraseID": "blackwater_throneguard_2" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_blackwater_signs.json b/AndorsTrail/res/raw-it/conversationlist_blackwater_signs.json new file mode 100644 index 000000000..af2c5018c --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_blackwater_signs.json @@ -0,0 +1,281 @@ +[ + { + "id": "sign_blackwater10", + "message": "NORD: Prim\nOVEST: Miniera di Elm\nEST: (Il testo è illeggibile a causa di profondi solchi nel legno.)\nSUD: Stoutford" + }, + { + "id": "keyarea_bwm_agent_1", + "message": "L'uomo ti grida : Hei tu, per favore, aiutaci!" + }, + { + "id": "sign_blackwater0", + "message": "EST: Fallhaven\nSUD-OVEST: Stoutford\nNORD-EST: Montagna Blackwater" + }, + { + "id": "sign_prim_n", + "message": "Avviso a tutti i cittadini: A nessuno è permesso entrare nella miniera di notte! Inoltre, scalare il fianco della montagna è severamente vietato dopo l'incidente con Lorn." + }, + { + "id": "sign_prim_s", + "message": "Persone scomparse:\n-Duala\n-Lorn\n-Kamelio" + }, + { + "id": "sign_blackwater13", + "message": "Vietato entrare.\nFirmato Guthbered di Prim." + }, + { + "id": "sign_blackwater30", + "replies": [ + { + "nextPhraseID": "sign_blackwater30_qstarted", + "requires": { + "progress": "kazaul:10" + } + }, + { + "nextPhraseID": "sign_blackwater30_notstarted" + } + ] + }, + { + "id": "sign_blackwater30_qstarted", + "message": "Trovi un pezzo di carta parzialmente congelato nella neve. Riesci a malapena a decifrare la frase 'Kazaul, profanatore del tempio di Elytharan' dalla carta fradicia.\nQuesta deve essere la prima metà del canto per il rituale di Kazaul.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 21 + } + ] + }, + { + "id": "sign_blackwater30_notstarted", + "message": "Trovi un pezzo di carta parzialmente congelato nella neve. Riesci a malapena a decifrare la frase 'Kazaul, profanatore del tempio di Elytharan' dalla carta fradicia." + }, + { + "id": "sign_blackwater32", + "message": "Il cartello è gravemente danneggiato da quelli che appaiono i morsi di una creatura con denti veramente affilati. Non riesci a distinguere cosa vi è scritto sopra." + }, + { + "id": "sign_blackwater38_1", + "replies": [ + { + "nextPhraseID": "sign_blackwater38_1_qstarted", + "requires": { + "progress": "kazaul:10" + } + }, + { + "nextPhraseID": "sign_blackwater38_notstarted" + } + ] + }, + { + "id": "sign_blackwater38_notstarted", + "message": "Trovi un pezzo di carta che descrive un qualche tipo di rituale." + }, + { + "id": "sign_blackwater38_1_qstarted", + "message": "Trovi un pezzo di carta che descrive l'inizio di un qualche tipo di rituale.\nDeve trattarsi della prima parte del rituale di Kazaul.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 25 + } + ] + }, + { + "id": "sign_blackwater38_2", + "replies": [ + { + "nextPhraseID": "sign_blackwater38_2_qstarted", + "requires": { + "progress": "kazaul:10" + } + }, + { + "nextPhraseID": "sign_blackwater38_notstarted" + } + ] + }, + { + "id": "sign_blackwater38_2_qstarted", + "message": "Trovi un pezzo di carta che descrive l'inizio di un qualche tipo di rituale.\nQuesta deve essere la seconda parte del rituale di Kazaul.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 26 + } + ] + }, + { + "id": "sign_blackwater38_3", + "replies": [ + { + "nextPhraseID": "sign_blackwater38_3_qstarted", + "requires": { + "progress": "kazaul:10" + } + }, + { + "nextPhraseID": "sign_blackwater38_notstarted" + } + ] + }, + { + "id": "sign_blackwater38_3_qstarted", + "message": "Trovi un pezzo di carta che descrive l'inizio di un qualche tipo di rituale.\nQuesta deve essere la terza parte del rituale di Kazaul.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 27 + } + ] + }, + { + "id": "sign_blackwater16", + "replies": [ + { + "nextPhraseID": "sign_blackwater16_qstarted", + "requires": { + "progress": "kazaul:10" + } + }, + { + "nextPhraseID": "sign_blackwater16_notstarted" + } + ] + }, + { + "id": "sign_blackwater16_qstarted", + "message": "Trovi un pezzo di carta strappato incastrato nei cespugli. Sulla carta si riesce a malapena a distinguere la frase 'Kazaul, distruttore di sogni luminosi'.\nQuesta deve essere la seconda metà del canto per il rituale di Kazaul.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 22 + } + ] + }, + { + "id": "sign_blackwater16_notstarted", + "message": "Trovi un pezzo di carta strappato incastrato nei cespugli. Sulla carta si riesce a malapena a distinguere la frase 'Kazaul, distruttore di sogni luminosi'." + }, + { + "id": "bwm_sleephall_1", + "message": "Non puoi riposare qui, solo ai residenti o agli alleati fidati di Blackwater è permesso riposare qui." + }, + { + "id": "keyarea_bwm_agent_60", + "message": "Devi parlare con quell'uomo per poter andare oltre." + }, + { + "id": "sign_blackwater50_left", + "message": "Questo portale conduce alla foresta davanti a Prim." + }, + { + "id": "sign_blackwater50_right", + "message": "Questo portale riconduce all'insediamento di Blackwater." + }, + { + "id": "sign_blackwater29", + "replies": [ + { + "nextPhraseID": "sign_blackwater29_qstarted", + "requires": { + "progress": "bwm_agent:95" + } + }, + { + "nextPhraseID": "sign_blackwater29_notstarted" + } + ] + }, + { + "id": "sign_blackwater29_qstarted", + "message": "Cerchi di farti notare il meno possibile per passare inosservato dalle guardie mentre cerchi fra la pila di documenti.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_blackwater29_qstarted_1" + } + ] + }, + { + "id": "sign_blackwater29_notstarted", + "message": "La guardia davanti a te grida:\n\nHey tu, vattene di lì!!" + }, + { + "id": "sign_blackwater29_qstarted_1", + "message": "Tra le carte, scopri i piani per il reclutamento di combattenti mercenari per Prim e per l'addestramento volto ad un grande attacco all'insediamento sulla montagna Blackwater.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 100 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_blackwater29_qstarted_2" + } + ] + }, + { + "id": "sign_blackwater29_qstarted_2", + "message": "Questa deve essere l'informazione che Harlenn sta cercando." + }, + { + "id": "sign_blackwater45", + "replies": [ + { + "nextPhraseID": "sign_blackwater45_qstarted", + "requires": { + "progress": "prim_hunt:50" + } + }, + { + "nextPhraseID": "sign_blackwater45_notstarted" + } + ] + }, + { + "id": "sign_blackwater45_qstarted", + "message": "Cerchi di farti notare il meno possibile per passare inosservato dalle guardie mentre cerchi fra la pila di documenti.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_blackwater45_qstarted_1" + } + ] + }, + { + "id": "sign_blackwater45_notstarted", + "message": "Non appena passi vicino al tavolo la guardia davanti a te grida:\n\nHey tu, vattene di lì!" + }, + { + "id": "sign_blackwater45_qstarted_1", + "message": "Tra le carte scopri quelli che sembrano piani di addestramento di guerrieri e piani per un futuro attacco a Prim.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 60 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_blackwater45_qstarted_2" + } + ] + }, + { + "id": "sign_blackwater45_qstarted_2", + "message": "Questa sembra l'informazione che Guthbered sta voleva." + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_blackwater_throdna.json b/AndorsTrail/res/raw-it/conversationlist_blackwater_throdna.json new file mode 100644 index 000000000..8817b6f80 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_blackwater_throdna.json @@ -0,0 +1,640 @@ +[ + { + "id": "throdna_start", + "replies": [ + { + "nextPhraseID": "throdna_purify_4", + "requires": { + "progress": "kazaul:100" + } + }, + { + "nextPhraseID": "throdna_purify_1", + "requires": { + "progress": "kazaul:41" + } + }, + { + "nextPhraseID": "throdna_return_3", + "requires": { + "progress": "kazaul:30" + } + }, + { + "nextPhraseID": "throdna_return_1", + "requires": { + "progress": "kazaul:10" + } + }, + { + "nextPhraseID": "throdna_1" + } + ] + }, + { + "id": "throdna_1", + "message": "Kazaul.. Ombra.. Com'è che faceva??", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_2" + } + ] + }, + { + "id": "throdna_2", + "message": "Oh, un visitatore. Salve. Non ti ho mai visto da queste parti. Ti hanno lasciato entrare?", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_3" + } + ] + }, + { + "id": "throdna_3", + "message": "Naturalmente ti hanno lasciato entrare. Di cosa vado cianciando? Harlenn e la sua banda tengono sempre i loro doveri terreni sotto controllo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_4" + } + ] + }, + { + "id": "throdna_4", + "message": "Allora, chi saresti? Probabilmente sei qui anche tu a lamentarti che all'accampamento servono più risorse o che il freddo della montagna di dà noia?", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_loop_1" + } + ] + }, + { + "id": "throdna_loop_1", + "message": "Che cosa vuoi?", + "replies": [ + { + "text": "Che cos'è questo posto?", + "nextPhraseID": "throdna_6" + }, + { + "text": "Chi sei tu?", + "nextPhraseID": "throdna_7" + }, + { + "text": "Di cosa stavi parlando quando sono arrivato, Kazaul?", + "nextPhraseID": "throdna_8" + }, + { + "text": "Sei al corrente dell'aspra rivalità tra questo insediamento e Prim?", + "nextPhraseID": "throdna_5" + } + ] + }, + { + "id": "throdna_5", + "message": "Ecco ci risiamo con i tuoi problemi mondani. Ti dirò una cosa, i vostri affanni terreni non potrebbero interessarmi di meno!", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_6" + } + ] + }, + { + "id": "throdna_6", + "message": "Questo è la camera dei maghi della montagna di Blackwater. Qui dedichiamo il nostro tempo per studiare l'Ombra e i suoi discendenti.", + "replies": [ + { + "text": "Discendenti?", + "nextPhraseID": "throdna_8" + }, + { + "text": "Torniamo alle mie domande.", + "nextPhraseID": "throdna_loop_1" + } + ] + }, + { + "id": "throdna_7", + "message": "Io sono Throdna. Una delle persone più sagge qui in giro, se proprio lo devo dire.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_loop_1" + } + ] + }, + { + "id": "throdna_8", + "message": "Kazaul, la stirpe dell'Ombra del midollo rosso.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 8 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_9" + } + ] + }, + { + "id": "throdna_9", + "message": "Abbiamo letto tutto quello che abbiamo trovato su Kazaul e sul rituale. Ma sembra che potremmo essere arrivati tardi.", + "replies": [ + { + "text": "Cosa vuoi dire?", + "nextPhraseID": "throdna_10" + } + ] + }, + { + "id": "throdna_10", + "message": "Il rituale. Crediamo che Kazaul si manifesterà a noi molto presto.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_11" + } + ] + }, + { + "id": "throdna_11", + "message": "Dobbiamo imparare il più possibile sul rituale di Kazaul, per poter controllare al meglio il suo potere e volgerlo ai nostri scopi.", + "replies": [ + { + "text": "Posso aiutarvi in qualche modo ?", + "nextPhraseID": "throdna_12" + }, + { + "text": "Cosa pensavi di fare?", + "nextPhraseID": "throdna_12" + } + ] + }, + { + "id": "throdna_12", + "message": "Come ti dicevo, vogliamo saperne il più possibile sul rituale di Kazaul.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 9 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_13" + } + ] + }, + { + "id": "throdna_13", + "message": "Qualche tempo fa eravamo sul punto di mettere le mani sull'intero rituale, ma il messaggero è stato ucciso in circostanze molto misteriose mentre si stava recando qui.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_14" + } + ] + }, + { + "id": "throdna_14", + "message": "Sappiamo che aveva con sè tutte le parti del rituale, ma da quando è stato ucciso, per causa dei mostri non siamo mai riusciti ad avvicinarci a lui e i suoi appunti sono andati persi.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_15" + } + ] + }, + { + "id": "throdna_15", + "message": "Secondo le nostre fonti, ci dovrebbero essere cinque parti del rituale sparse per la montagna. Tre descrivono il rituale e due descrivono il canto di Kazaul per evocare il guardiano.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_15_1" + } + ] + }, + { + "id": "throdna_16", + "message": "Hm, forse potresti esserci utile...", + "replies": [ + { + "text": "Sarei felice di aiutarvi.", + "nextPhraseID": "throdna_18" + }, + { + "text": "Sembra pericoloso, ma lo farò.", + "nextPhraseID": "throdna_18" + }, + { + "text": "Tenetevi il vostro rituale per voi, non voglio immischiarmi.", + "nextPhraseID": "throdna_17" + } + ] + }, + { + "id": "throdna_17", + "message": "Bene, dovremo solamente trovare qualcun altro allora." + }, + { + "id": "throdna_18", + "message": "Si, potresti essere in grado di aiutarci. Non che tu abbia molte altre scelte.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_19" + } + ] + }, + { + "id": "throdna_19", + "message": "Ok. Trovami i pezzi del rituale che il messaggero doveva portarci. Dovresti trovarli lungo la strada che sale verso la montagna Blackwater.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 10 + } + ], + "replies": [ + { + "text": "Tornerò con le parti del vostro rituale.", + "nextPhraseID": "throdna_20" + } + ] + }, + { + "id": "throdna_20", + "message": "Si, devi farcela.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 11 + } + ] + }, + { + "id": "throdna_return_1", + "message": "Ciao, spero tu sia venuto qui per dirmi che hai trovato le 5 parti del rituale.", + "replies": [ + { + "text": "Le sto ancora cercando.", + "nextPhraseID": "throdna_return_2" + }, + { + "text": "Quante parti devo trovare?", + "nextPhraseID": "throdna_15" + }, + { + "text": "Cosa dovrei fare di nuovo?", + "nextPhraseID": "throdna_12" + }, + { + "text": "Sì, penso di averli trovati tutti.", + "nextPhraseID": "throdna_check_1", + "requires": { + "progress": "kazaul:21" + } + } + ] + }, + { + "id": "throdna_return_2", + "message": "Allora sbrigati e corri a cercarli! Cosa stai a fare ancora qui?" + }, + { + "id": "throdna_return_3", + "message": "Hai davvero trovato tutti e 5 i pezzi? Allora suppongo di doverti ringraziare. Bene allora. Grazie.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_return_4" + } + ] + }, + { + "id": "throdna_15_1", + "replies": [ + { + "nextPhraseID": "X", + "requires": { + "progress": "kazaul:10" + } + }, + { + "nextPhraseID": "throdna_16" + } + ] + }, + { + "id": "throdna_check_1", + "replies": [ + { + "nextPhraseID": "throdna_check_2", + "requires": { + "progress": "kazaul:22" + } + }, + { + "nextPhraseID": "throdna_check_fail" + } + ] + }, + { + "id": "throdna_check_2", + "replies": [ + { + "nextPhraseID": "throdna_check_3", + "requires": { + "progress": "kazaul:25" + } + }, + { + "nextPhraseID": "throdna_check_fail" + } + ] + }, + { + "id": "throdna_check_3", + "replies": [ + { + "nextPhraseID": "throdna_check_4", + "requires": { + "progress": "kazaul:26" + } + }, + { + "nextPhraseID": "throdna_check_fail" + } + ] + }, + { + "id": "throdna_check_4", + "replies": [ + { + "nextPhraseID": "throdna_return_3", + "requires": { + "progress": "kazaul:27" + } + }, + { + "nextPhraseID": "throdna_check_fail" + } + ] + }, + { + "id": "throdna_check_fail", + "message": "Sembra che tu non abbia trovato ancora tutti e 5 i pezzi.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_15" + } + ] + }, + { + "id": "throdna_return_4", + "message": "Abbiamo questioni più importanti su cui concentrarci. Come ti ho già detto prima, crediamo che Kazaul molto presto si manifesterà a noi.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_return_5" + } + ] + }, + { + "id": "throdna_return_5", + "message": "Se ciò dovesse accadere prima che le nostre ricerche sul rituale siano concluse, tutti i nostri sforzi sarebbero stati vani.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_return_6" + } + ] + }, + { + "id": "throdna_return_6", + "message": "Per questo motivo abbiamo intenzione di ritardare il processo il più possibile, almeno finché non abbiamo capito i suoi poteri.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_return_7" + } + ] + }, + { + "id": "throdna_return_7", + "message": "Potresti esserci di nuovo utile.", + "replies": [ + { + "text": "Sono pronto a tutto.", + "nextPhraseID": "throdna_return_8" + }, + { + "text": "Cosa vi serve da me?", + "nextPhraseID": "throdna_return_8" + }, + { + "text": "Spero proprio che questo comporti nuovi massacri e saccheggi.", + "nextPhraseID": "throdna_return_8" + } + ] + }, + { + "id": "throdna_return_8", + "message": "Abbiamo bisogno di due cose da te. Innanzi tutto devi trovare il tempio di Kazaul. I nostri esploratori dicono che sia da qualche parte ai piedi della montagna Blackwater.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_return_9" + } + ] + }, + { + "id": "throdna_return_9", + "message": "Tuttavia tutti i passaggi per il santuario, secondo gli esploratori, sono 'offuscati nell'Ombra', ma non so questo cosa significhi esattamente.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_return_10" + } + ] + }, + { + "id": "throdna_return_10", + "message": "In secondo luogo abbiamo bisogno che tu prenda questa fiala e la usi sul santuario.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_return_11_select" + } + ] + }, + { + "id": "throdna_return_11_select", + "replies": [ + { + "nextPhraseID": "throdna_return_13", + "requires": { + "progress": "kazaul:41" + } + }, + { + "nextPhraseID": "throdna_return_11" + } + ] + }, + { + "id": "throdna_return_11", + "message": "Questa fiala è una pozione di purificazione dello spirito. Dovrebbe ritardare l'apparizione dello spirito abbastanza da permetterci di completare gli studi.", + "replies": [ + { + "text": "Sembra facile, lo farò.", + "nextPhraseID": "throdna_return_12" + }, + { + "text": "Sembra difficile, ma lo farò lo stesso.", + "nextPhraseID": "throdna_return_12" + }, + { + "text": "Sembra una trappola, non farò il lavoro sporco per voi.", + "nextPhraseID": "throdna_17" + } + ] + }, + { + "id": "throdna_return_12", + "message": "Bene, ecco la fiala. Torna da me non appena avrai fatto.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 41 + }, + { + "rewardType": 1, + "rewardID": "throdna_items" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_return_13" + } + ] + }, + { + "id": "throdna_return_13", + "message": "Return to me as soon as you have completed your task." + }, + { + "id": "throdna_purify_1", + "message": "Ciao, spero che tu sia qui per dirmi che hai purificato il santuario di Kazaul?", + "replies": [ + { + "text": "Si, ho fatto.", + "nextPhraseID": "throdna_purify_3", + "requires": { + "progress": "kazaul:60" + } + }, + { + "text": "No, non ancora.", + "nextPhraseID": "throdna_purify_2" + }, + { + "text": "Cosa dovrei fare di nuovo?", + "nextPhraseID": "throdna_return_8" + } + ] + }, + { + "id": "throdna_purify_2", + "message": "Allora muoviti e corri a purificare il santuario con la fiala che ti ho dato. Cosa ci fai ancora qui?" + }, + { + "id": "throdna_purify_3", + "message": "Bene, dobbiamo sbrigarci a terminare la nostra ricerca su Kazaul.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 100 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_purify_4" + } + ] + }, + { + "id": "throdna_purify_4", + "message": "Dovresti andartene da qui e lasciarci concentrare sul nostro lavoro.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_purify_5" + } + ] + }, + { + "id": "throdna_purify_5", + "message": ".. Kazaul, distruttore di sogni luminosi ..", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_purify_6" + } + ] + }, + { + "id": "throdna_purify_6", + "message": ".. Kazaul .. Ombra ..", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_purify_7" + } + ] + }, + { + "id": "throdna_purify_7", + "message": "(Throdna continua a borbottare parole su Kazaul, ma non riesci a capirne altre.)" + }, + { + "id": "throdna_guard", + "message": "Abbassa la voce mentre sei nella camera interna." + }, + { + "id": "blackwater_acolyte", + "message": "Stai anche tu cercando di diventare un tutt'uno con l'Ombra?" + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_blackwater_upper.json b/AndorsTrail/res/raw-it/conversationlist_blackwater_upper.json new file mode 100644 index 000000000..dfced195d --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_blackwater_upper.json @@ -0,0 +1,122 @@ +[ + { + "id": "blackwater_entranceguard", + "message": "Oh, un nuovo arrivato. Stupendo. Spero che tu sia qui per aiutarci.", + "replies": [ + { + "text": "N", + "nextPhraseID": "blackwater_guard1" + } + ] + }, + { + "id": "blackwater_guard1", + "message": "Stai lontano dai guai e i guai staranno lontani da te." + }, + { + "id": "blackwater_guest1", + "message": "Grandioso questo posto, non è vero?" + }, + { + "id": "blackwater_guest2", + "message": "Genteee. Le pozioni di Mazeg ti fanno sentire frizzante e buffo!" + }, + { + "id": "blackwater_cook", + "message": "Fuori dalla mia cucina! Prendi un posto e verrò a servirti tra poco." + }, + { + "id": "keneg", + "message": "Picchiano. Ansimano.", + "replies": [ + { + "text": "N", + "nextPhraseID": "keneg_1" + } + ] + }, + { + "id": "keneg_1", + "message": "Devo andarmene!", + "replies": [ + { + "text": "N", + "nextPhraseID": "keneg_2" + } + ] + }, + { + "id": "keneg_2", + "message": "I mostri, vengono di notte.", + "replies": [ + { + "text": "N", + "nextPhraseID": "keneg_3" + } + ] + }, + { + "id": "keneg_3", + "message": "*visibilmente nervoso*\nDevo nascondermi." + }, + { + "id": "blackwater_notrust", + "message": "Ad ogni modo non posso aiutarti. I miei servizi sono riservati solamente agli abitanti della montagna Blackwater, non mi fido ancora abbastanza di te." + }, + { + "id": "waeges", + "replies": [ + { + "nextPhraseID": "waeges_1", + "requires": { + "progress": "bwm_agent:240" + } + }, + { + "nextPhraseID": "waeges_2" + } + ] + }, + { + "id": "waeges_1", + "message": "Ciao amico, cosa posso fare per te?", + "replies": [ + { + "text": "Quali armi hai in vendita?", + "nextPhraseID": "S" + } + ] + }, + { + "id": "waeges_2", + "message": "Benvenuto viaggiatore, vedo che stai osservando la mia fornitura di armi.", + "replies": [ + { + "text": "N", + "nextPhraseID": "blackwater_notrust" + } + ] + }, + { + "id": "blackwater_fighter", + "message": "Non ho tempo per te ragazzo, devo allenarmi." + }, + { + "id": "ungorm", + "message": "...ma mentre le forze si ritiravano, la maggior parte di...", + "replies": [ + { + "text": "N", + "nextPhraseID": "ungorm_1" + } + ] + }, + { + "id": "ungorm_1", + "message": "Oh. Un ragazzo. Ciao. Cerca di non disturbare i miei studenti durante le lezioni." + }, + { + "id": "blackwater_pupil", + "message": "Mi dispiace, non posso parlare ora." + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_bwm_agent_1.json b/AndorsTrail/res/raw-it/conversationlist_bwm_agent_1.json new file mode 100644 index 000000000..59ee04646 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_bwm_agent_1.json @@ -0,0 +1,187 @@ +[ + { + "id": "bwm_agent_1_start", + "message": "Oh, finalmente un forestiero! Per favore signore, dovete aiutarci!", + "replies": [ + { + "text": "Qual è il problema?", + "nextPhraseID": "bwm_agent_1_2" + }, + { + "text": "'Aiutarci'? Vedo solamente te qui.", + "nextPhraseID": "bwm_agent_1_3" + } + ] + }, + { + "id": "bwm_agent_1_2", + "message": "Abbiamo urgente bisogno di aiuto da qualcuno di fuori!", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_1_4" + } + ] + }, + { + "id": "bwm_agent_1_3", + "message": "Molto divertente. Sono stato mandato dal mio insediamento per chiedere un aiuto esterno.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_1_4" + } + ] + }, + { + "id": "bwm_agent_1_4", + "message": "La gente del mio insediamento, la montagna Blackwater, viene lentamente decimata da mostri e banditi.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 1 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_1_5" + } + ] + }, + { + "id": "bwm_agent_1_5", + "message": "I mostri si stanno accanendo su di noi, abbiamo un disperato bisogno di guerrieri in grado di sconfiggerli.", + "replies": [ + { + "text": "Credo di potervi aiutare, ho ucciso qualche mostro qua e là.", + "nextPhraseID": "bwm_agent_1_7" + }, + { + "text": "Un combattimento, grandioso! Contate su di me!", + "nextPhraseID": "bwm_agent_1_7" + }, + { + "text": "Ci sarà una ricompensa?", + "nextPhraseID": "bwm_agent_1_6" + }, + { + "text": "Hm, no. Meglio non farsi coinvolgere.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bwm_agent_1_6", + "message": "Ricompensa? Hm, speravo che ci aiutaste per nobili intenzioni. Ma credo che il mio padrone saprà ricompensarvi adeguatamente.", + "replies": [ + { + "text": "Ok, lo farò.", + "nextPhraseID": "bwm_agent_1_7" + } + ] + }, + { + "id": "bwm_agent_1_7", + "message": "Eccellente. L'insediamento Blackwater è un po' distante, francamente mi stupisco di essere arrivato fin qui vivo.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 5 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_1_8" + } + ] + }, + { + "id": "bwm_agent_1_8", + "message": "Devo avvertirvi, ci sono dei mostri veramente pericolosi sulla strada!", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_1_9" + } + ] + }, + { + "id": "bwm_agent_1_9", + "message": "Ma credo che siate abbastanza forte.", + "replies": [ + { + "text": "Si, me la so cavare.", + "nextPhraseID": "bwm_agent_1_10" + }, + { + "text": "Nessun problema.", + "nextPhraseID": "bwm_agent_1_10" + } + ] + }, + { + "id": "bwm_agent_1_10", + "message": "Bene, prima però dobbiamo attraversare la miniera fino al lato opposto.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_1_11" + } + ] + }, + { + "id": "bwm_agent_1_11", + "message": "*indica* Il pozzo della miniera laggiù è crollato, quindi non credo che riuscirete a passare.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_1_12" + } + ] + }, + { + "id": "bwm_agent_1_12", + "message": "Dovrete passare attraverso la miniera abbandonata, è nera come la pece, non avrete nessuna illuminazione per attraversarla.", + "replies": [ + { + "text": "E tu?", + "nextPhraseID": "bwm_agent_1_13" + }, + { + "text": "Ok, Attraverserò la miniera al buio.", + "nextPhraseID": "bwm_agent_1_14" + } + ] + }, + { + "id": "bwm_agent_1_13", + "message": "Io proverò a strisciare indietro per il pozzo che ho utilizzato per arrivare fino a qui!", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_1_14" + } + ] + }, + { + "id": "bwm_agent_1_14", + "message": "Ci vediamo dall'altra parte della miniera.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 10 + } + ], + "replies": [ + { + "text": "Ok, tu striscia pure dal pozzo, io scenderò in profondità. Ci vediamo dall'altra parte.", + "nextPhraseID": "R" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_bwm_agent_2.json b/AndorsTrail/res/raw-it/conversationlist_bwm_agent_2.json new file mode 100644 index 000000000..aab58ff50 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_bwm_agent_2.json @@ -0,0 +1,161 @@ +[ + { + "id": "bwm_agent_2_start", + "replies": [ + { + "nextPhraseID": "bwm_agent_2_7", + "requires": { + "progress": "bwm_agent:20" + } + }, + { + "nextPhraseID": "bwm_agent_2_1" + } + ] + }, + { + "id": "bwm_agent_2_1", + "message": "Ciao, sei riuscito ad attraversarla vivo, ben fatto!", + "replies": [ + { + "text": "Questi mostri, cosa sono?", + "nextPhraseID": "bwm_agent_2_2" + }, + { + "text": "Non mi avevi detto che sarebbe stato buio pesto laggiù, sono stato quasi ucciso.", + "nextPhraseID": "bwm_agent_2_12" + }, + { + "text": "Sì, è stato un gioco da ragazzi.", + "nextPhraseID": "bwm_agent_2_5" + } + ] + }, + { + "id": "bwm_agent_2_2", + "message": "I Gornaud? Non ho idea da dove vengano, un giorno sono apparsi qui nei pressi della montagna.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_2_3" + } + ] + }, + { + "id": "bwm_agent_2_3", + "message": "Bestie schifose quelle.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_2_4" + } + ] + }, + { + "id": "bwm_agent_2_4", + "message": "Comunque ora andiamo, siamo vicini all'accampamento della montagna Blackwater.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_2_5" + } + ] + }, + { + "id": "bwm_agent_2_5", + "message": "Dovremmo muoverci ora.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_2_6" + } + ] + }, + { + "id": "bwm_agent_2_6", + "message": "Una volta che sarete uscito da questa miniera, è molto importante che vi dirigiate verso est. Non andate in direzioni diverse da est!", + "replies": [ + { + "text": "Ok, Vado verso est una volta uscito dalla miniera. Ho capito.", + "nextPhraseID": "bwm_agent_2_7" + }, + { + "text": "Perché est? Che altro c'è qui?", + "nextPhraseID": "bwm_agent_2_8" + } + ] + }, + { + "id": "bwm_agent_2_7", + "message": "Aspetterò che abbiate passato il valico, ci vediamo lì!\n\nRicordate di andare ad est una volta uscito!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 20 + } + ], + "replies": [ + { + "text": "Ok, ci vediamo lì!", + "nextPhraseID": "R" + } + ] + }, + { + "id": "bwm_agent_2_8", + "message": "Oh, niente. Ci sono posti pericolosi qui. E meglio non pensarci nemmeno ad andare in una direzione diversa da est.", + "replies": [ + { + "text": "Certo, punterò verso est.", + "nextPhraseID": "bwm_agent_2_7" + }, + { + "text": "Pericoloso? Mmh, il mio posto ideale.", + "nextPhraseID": "bwm_agent_2_10" + }, + { + "text": "Mi stai nascondendo qualcosa?", + "nextPhraseID": "bwm_agent_2_11" + } + ] + }, + { + "id": "bwm_agent_2_10", + "message": "Sarebbe morte sicura, non dite poi che non vi avevo avvertito. La via più sicura è quella ad EST.", + "replies": [ + { + "text": "Certo, andrò verso est.", + "nextPhraseID": "bwm_agent_2_7" + }, + { + "text": "Mi stai nascondendo qualcosa?", + "nextPhraseID": "bwm_agent_2_11" + } + ] + }, + { + "id": "bwm_agent_2_11", + "message": "No no, voi pensate solo ad andare verso EST, vi spiegherò tutto una volta arrivati all'accampamento. ", + "replies": [ + { + "text": "Ok, prometto di andare verso est appena uscito dalla miniera.", + "nextPhraseID": "bwm_agent_2_7" + }, + { + "text": "(Menzogna) Ok, prometto di andare verso est appena uscito dalla miniera.", + "nextPhraseID": "bwm_agent_2_7" + } + ] + }, + { + "id": "bwm_agent_2_12", + "message": "In realtà vi avevo avvertito che sarebbe stato buio pesto laggiù. Bel lavoro ad esservi districato là sotto!", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_2_4" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_bwm_agent_3.json b/AndorsTrail/res/raw-it/conversationlist_bwm_agent_3.json new file mode 100644 index 000000000..cb0e6a9dc --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_bwm_agent_3.json @@ -0,0 +1,112 @@ +[ + { + "id": "bwm_agent_3_start", + "replies": [ + { + "nextPhraseID": "bwm_agent_3_4", + "requires": { + "progress": "bwm_agent:30" + } + }, + { + "nextPhraseID": "bwm_agent_3_1" + } + ] + }, + { + "id": "bwm_agent_3_1", + "message": "Salve, siete arrivato fin qui, bene.", + "replies": [ + { + "text": "Ho parlato con alcune persone nel villaggio di Prim. Mi hanno detto cose interessanti sulla montagna di Blackwater.", + "nextPhraseID": "bwm_agent_3_5", + "requires": { + "progress": "bwm_agent:25" + } + }, + { + "text": "Sono andato ad est, come hai detto.", + "nextPhraseID": "bwm_agent_3_2" + } + ] + }, + { + "id": "bwm_agent_3_2", + "message": "Bene, Ora saliamo questa montagna, ci incontreremo a metà strada lassù.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_3_3" + } + ] + }, + { + "id": "bwm_agent_3_3", + "message": "Questo sentiero porta all'insediamento della montagna Blackwater, seguitelo e discuteremo più tardi.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_3_4" + } + ] + }, + { + "id": "bwm_agent_3_4", + "message": "Fate attenzione ai mostri, possono essere veramente pericolosi.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 30 + } + ], + "replies": [ + { + "text": "Ok, seguirò il sentiero su per la montagna.", + "nextPhraseID": "R" + }, + { + "text": "Grande, mostri pericolosi. Proprio quello di cui avevo bisogno.", + "nextPhraseID": "R" + } + ] + }, + { + "id": "bwm_agent_3_5", + "message": "Non ascoltate le loro parole, avvelenano i vostri pensieri e non esiterebbero a pugnalarvi alle spalle se ne avessero l'occasione.", + "replies": [ + { + "text": "Cosa hanno fatto?", + "nextPhraseID": "bwm_agent_3_6" + }, + { + "text": "Si, mi sono sembrati un poco loschi effettivamente.", + "nextPhraseID": "bwm_agent_3_7" + } + ] + }, + { + "id": "bwm_agent_3_6", + "message": "Non parlerò di loro adesso. Seguitemi fino all'insediamento , parleremo meglio lì.", + "replies": [ + { + "text": "Certo.", + "nextPhraseID": "bwm_agent_3_2" + }, + { + "text": "Terrò gli occhi su di te, per adesso accetto le tue condizioni.", + "nextPhraseID": "bwm_agent_3_2" + } + ] + }, + { + "id": "bwm_agent_3_7", + "message": "Appunto.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_3_6" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_bwm_agent_4.json b/AndorsTrail/res/raw-it/conversationlist_bwm_agent_4.json new file mode 100644 index 000000000..c9f397f49 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_bwm_agent_4.json @@ -0,0 +1,105 @@ +[ + { + "id": "bwm_agent_4_start", + "replies": [ + { + "nextPhraseID": "bwm_agent_4_5", + "requires": { + "progress": "bwm_agent:40" + } + }, + { + "nextPhraseID": "bwm_agent_4_1" + } + ] + }, + { + "id": "bwm_agent_4_1", + "message": "Bentrovato. Bel lavoro nell'aver sconfitto i Gornaud.", + "replies": [ + { + "text": "I loro attacchi sono potenti, ma cosa sono queste bestie?", + "nextPhraseID": "bwm_agent_4_6" + }, + { + "text": "Come mai non attaccano te?", + "nextPhraseID": "bwm_agent_4_3" + }, + { + "text": "Certo, nessun problema. Solo un'altra scia di cadaveri dietro di me!", + "nextPhraseID": "bwm_agent_4_2" + } + ] + }, + { + "id": "bwm_agent_4_2", + "message": "Attenzione a quello che desiderate, potrebbe diventare realtà.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_4_4" + } + ] + }, + { + "id": "bwm_agent_4_3", + "message": "Io? Dev'esserci qualcosa che li spaventa, non ho idea di cosa sia, forse qualche odore che ho addosso.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_4_4" + } + ] + }, + { + "id": "bwm_agent_4_4", + "message": "In ogni caso dobbiamo andare avanti, vi precederò lungo la strada.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_4_5" + } + ] + }, + { + "id": "bwm_agent_4_5", + "message": "Ci incontreremo nuovamente più in alto sulla montagna e parleremo ancora.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 40 + } + ], + "replies": [ + { + "text": "Ok, ci vediamo li.", + "nextPhraseID": "R" + } + ] + }, + { + "id": "bwm_agent_4_6", + "message": "Non so da dove vengano. Un giorno sono apparsi, bloccando la strada per la montagna.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_4_7" + } + ] + }, + { + "id": "bwm_agent_4_7", + "message": "E i loro attacchi sono potenti. Quando uno di loro inizia a puntarvi, anche gli altri sembrano molto interessati a colpirvi.", + "replies": [ + { + "text": "Nulla che non si possa gestire.", + "nextPhraseID": "bwm_agent_4_4" + }, + { + "text": "Come mai non ti attaccano?", + "nextPhraseID": "bwm_agent_4_3" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_bwm_agent_5.json b/AndorsTrail/res/raw-it/conversationlist_bwm_agent_5.json new file mode 100644 index 000000000..ff0115cfc --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_bwm_agent_5.json @@ -0,0 +1,83 @@ +[ + { + "id": "bwm_agent_5_start", + "replies": [ + { + "nextPhraseID": "bwm_agent_5_6", + "requires": { + "progress": "bwm_agent:50" + } + }, + { + "nextPhraseID": "bwm_agent_5_1" + } + ] + }, + { + "id": "bwm_agent_5_1", + "message": "E' un piacere rivedervi. Bel lavoro con quei mostri.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_5_2" + } + ] + }, + { + "id": "bwm_agent_5_2", + "message": "Siamo quasi arrivati, manca ancora un poco.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_5_3" + } + ] + }, + { + "id": "bwm_agent_5_3", + "message": "Dovremmo affrettarci in questo ultimo pezzo di strada, l'insediamento è vicino.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_5_4" + } + ] + }, + { + "id": "bwm_agent_5_4", + "message": "Spero che riusciate a sopportare il freddo della montagna.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_5_5" + } + ] + }, + { + "id": "bwm_agent_5_5", + "message": "Inoltre vi consiglio di stare alla larga dai dragoni, il loro morso può essere veramente pericoloso.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_5_6" + } + ] + }, + { + "id": "bwm_agent_5_6", + "message": "Affrettiamoci, ci siamo quasi. Seguite il sentiero innevato a nord e dovreste riuscire a raggiungere l'insediamento in un batter d'occhio.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 50 + } + ], + "replies": [ + { + "text": "Ok, in cima alla montagna seguirò il percorso a nord.", + "nextPhraseID": "R" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_bwm_agent_6.json b/AndorsTrail/res/raw-it/conversationlist_bwm_agent_6.json new file mode 100644 index 000000000..68e360d40 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_bwm_agent_6.json @@ -0,0 +1,111 @@ +[ + { + "id": "bwm_agent_6_start", + "replies": [ + { + "nextPhraseID": "bwm_agent_6_3", + "requires": { + "progress": "bwm_agent:60" + } + }, + { + "nextPhraseID": "bwm_agent_6_0" + } + ] + }, + { + "id": "bwm_agent_6_1", + "message": "Sono contento che mi abbiate seguito fin qui per aiutarci.", + "replies": [ + { + "text": "Come sei arrivato qui così in fretta?", + "nextPhraseID": "bwm_agent_6_6" + }, + { + "text": "Alcuni scontri sono stati davvero duri, ma posso resistere.", + "nextPhraseID": "bwm_agent_6_5" + }, + { + "text": "Non siamo ancora arrivati?", + "nextPhraseID": "bwm_agent_6_2" + } + ] + }, + { + "id": "bwm_agent_6_2", + "message": "Oh sì, il nostro insediamento è proprio in fondo a queste scale.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_6_4" + } + ] + }, + { + "id": "bwm_agent_6_3", + "message": "Procedete pure. Ci vediamo dentro.", + "replies": [ + { + "text": "Ok, ci vediamo dentro.", + "nextPhraseID": "R" + } + ] + }, + { + "id": "bwm_agent_6_0", + "message": "Ci incontriamo ancora. Bel lavoro nell'essersi fatto strada fin quassù!", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_6_1" + } + ] + }, + { + "id": "bwm_agent_6_4", + "message": "Dovreste scendere queste scale e parlare col nostro maestro d'armi Harlenn. Di solito si trova al terzo piano interrato.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 60 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_6_3" + } + ] + }, + { + "id": "bwm_agent_6_5", + "message": "Si, sembrate un buon combattente.", + "replies": [ + { + "text": "Non siamo ancora arrivati?", + "nextPhraseID": "bwm_agent_6_2" + } + ] + }, + { + "id": "bwm_agent_6_6", + "message": "Ho imparato alcune scorciatoie facendo su e giù dalla montagna. Niente di strano vero?", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_6_7" + } + ] + }, + { + "id": "bwm_agent_6_7", + "message": "In ogni caso siamo arrivati, il nostro insediamento è proprio ai piedi di queste scale.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_6_4" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_crossglen.json b/AndorsTrail/res/raw-it/conversationlist_crossglen.json new file mode 100644 index 000000000..4050c8a81 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_crossglen.json @@ -0,0 +1,140 @@ +[ + { + "id": "audir1", + "message": "Benvenuto nel mio negozio! Vi prego di consultare i miei articoli d'occasione.", + "replies": [ + { + "text": "Negozio", + "nextPhraseID": "S" + } + ] + }, + { + "id": "arambold1", + "message": "Oh cielo, riuscirò mai a dormire con questi ubriachi che cantano ? Qualcuno dovrebbe far qualcosa per loro.", + "replies": [ + { + "text": "Riposa", + "nextPhraseID": "arambold2" + }, + { + "text": "Compra", + "nextPhraseID": "S" + } + ] + }, + { + "id": "arambold2", + "message": "Certo ragazzo, puoi riposare qui. Scegli il letto che preferisci.", + "replies": [ + { + "text": "Grazie, ciao", + "nextPhraseID": "X" + } + ] + }, + { + "id": "drunk1", + "message": "Bevi bevi bevi, bevi ancora un po'. Bevi bevi bevi, bevi sul pavimento. Hei ragazzo, vuoi unirti a noi nel nostro gioco?", + "replies": [ + { + "text": "No grazie", + "nextPhraseID": "X" + }, + { + "text": "Magari un'altra volta.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "mara_default", + "message": "Lascia perdere quei ragazzi ubriachi, Provocano sempre problemi. Vuoi qualcosa da mangiare?", + "replies": [ + { + "text": "Compra", + "nextPhraseID": "S" + } + ] + }, + { + "id": "mara1", + "replies": [ + { + "nextPhraseID": "mara_thanks", + "requires": { + "progress": "odair:100" + } + }, + { + "nextPhraseID": "mara_default" + } + ] + }, + { + "id": "mara_thanks", + "message": "Ho sentito che hai aiutato Odair a pulire il suo magazzino. Grazie mille, ora possiamo usarlo.", + "replies": [ + { + "text": "Il piacere è mio", + "nextPhraseID": "mara_default" + } + ] + }, + { + "id": "farm1", + "message": "Per favore non disturbarmi, ho del lavoro da fare", + "replies": [ + { + "text": "Fratello", + "nextPhraseID": "farm_andor" + } + ] + }, + { + "id": "farm2", + "message": "Cosa?! Non vedi che ho da fare? Vai ad infastidire qualcun altro.", + "replies": [ + { + "text": "Fratello", + "nextPhraseID": "farm_andor" + } + ] + }, + { + "id": "farm_andor", + "message": "Andor? No, io non l'ho visto in giro recentemente." + }, + { + "id": "snakemaster", + "message": "Bene bene, cosa abbiamo qua? Un visitatore, che bello. Sono impressionato, sei arrivato a questo punto sconfiggendo i miei servitori. Ora preparati a morire, piccola creatura.", + "replies": [ + { + "text": "Ottimo, stavo proprio aspettando un combattimento!", + "nextPhraseID": "F" + }, + { + "text": "Indovina chi sarà a morire.", + "nextPhraseID": "F" + }, + { + "text": "Ti prego non farmi del male!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "haunt", + "message": "Oh mortale, mi libererai da questo mondo crudele?!", + "replies": [ + { + "text": "Esci", + "nextPhraseID": "F" + }, + { + "text": "Vuoi intendere, uccidendoti?", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_crossglen_gruil.json b/AndorsTrail/res/raw-it/conversationlist_crossglen_gruil.json new file mode 100644 index 000000000..cd0c115da --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_crossglen_gruil.json @@ -0,0 +1,118 @@ +[ + { + "id": "gruil1", + "message": "Psst, hey,\n\nvuoi comprare?", + "replies": [ + { + "text": "Compra", + "nextPhraseID": "S" + }, + { + "text": "Fratello", + "nextPhraseID": "gruil_select", + "requires": { + "progress": "andor:10" + } + } + ] + }, + { + "id": "gruil_select", + "replies": [ + { + "nextPhraseID": "gruil_return", + "requires": { + "progress": "andor:30" + } + }, + { + "nextPhraseID": "gruil2" + } + ] + }, + { + "id": "gruil2", + "message": "Tuo fratello? Oh intendi Andor? Potrei sapere qualcosa, ma questa informazione ti costerà qualcosa. Portami una ghiandola del veleno di uno di quei serpenti velenosi là fuori e forse potrei raccontarti di tuo fratello. ", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 20 + } + ], + "replies": [ + { + "text": "Ecco, ho la ghiandola del veleno per te.", + "nextPhraseID": "gruil_complete", + "requires": { + "item": { + "itemID": "gland", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Ok, te ne porterò una.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "gruil_complete", + "message": "Grazie molte ragazzo. Questo andrà bene.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "gruil_andor1" + } + ] + }, + { + "id": "gruil_return", + "message": "Guarda ragazzo, te l'ho già detto.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gruil_andor1" + } + ] + }, + { + "id": "gruil_andor1", + "message": "Ho parlato con lui ieri. Mi ha chiesto se conoscevo qualcuno di nome Umar o qualcosa di simile. Non ho idea di chi stesse parlando.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gruil_andor2" + } + ] + }, + { + "id": "gruil_andor2", + "message": "Sembrava molto arrabbiato per qualcosa e se n'é andato in fretta. Qualcosa riguardo la Gilda dei Ladri a Fallhaven.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gruil_andor3" + } + ] + }, + { + "id": "gruil_andor3", + "message": "Questo è tutto quello che so. Forse dovresti chiedere in giro a Fallhaven. Se vuoi, il mio amico Gaela sa sicuramente qualcosa.", + "replies": [ + { + "text": "Ciao", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_crossglen_leonid.json b/AndorsTrail/res/raw-it/conversationlist_crossglen_leonid.json new file mode 100644 index 000000000..d299a8da3 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_crossglen_leonid.json @@ -0,0 +1,201 @@ +[ + { + "id": "leonid1", + "message": "Ciao ragazzo. Tu sei figlio di Mikhail non è vero? E tuo fratello?\n\nIo sono Leonid, amministratore del villaggio Crossglen.", + "replies": [ + { + "text": "Fratello", + "nextPhraseID": "leonid_andor" + }, + { + "text": "Crossglen", + "nextPhraseID": "leonid_crossglen" + }, + { + "text": "Ciao", + "nextPhraseID": "leonid_bye" + } + ] + }, + { + "id": "leonid_andor", + "message": "Tuo fratello? No, non l'ho visto oggi. Credo che ieri stesse parlando con Gruil. Forse lui ne sa di più", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 10 + } + ], + "replies": [ + { + "text": "Grazie", + "nextPhraseID": "leonid_continue" + }, + { + "text": "Ciao", + "nextPhraseID": "leonid_bye" + } + ] + }, + { + "id": "leonid_continue", + "message": "Posso aiutarti in qualche altro modo?", + "replies": [ + { + "text": "fratello", + "nextPhraseID": "leonid_andor" + }, + { + "text": "Crossglen", + "nextPhraseID": "leonid_crossglen" + }, + { + "text": "Ciao", + "nextPhraseID": "leonid_bye" + } + ] + }, + { + "id": "leonid_crossglen", + "message": "Come sai, questo è il villaggio di Crossglen. Per lo più una comunità agricola. ", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen1" + } + ] + }, + { + "id": "leonid_crossglen1", + "message": " Abbiamo la fucina di Audir a sud-ovest, Leta e la casa del marito a ovest, il palazzo municipale e la casa di tuo padre, a nord-ovest.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen2" + } + ] + }, + { + "id": "leonid_crossglen2", + "message": "Questo è tutto, cerchiamo di vivere una vita pacifica", + "replies": [ + { + "text": "Recent activity", + "nextPhraseID": "leonid_crossglen3" + }, + { + "text": "Indietro", + "nextPhraseID": "leonid_continue" + } + ] + }, + { + "id": "leonid_crossglen3", + "message": "Avrai sentito di alcuni disordini successi qualche settimana fa. Alcuni abitanti del villaggio hanno esposto delle lamentele sul nuovo decreto di Lord Geomyr.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen4" + } + ] + }, + { + "id": "leonid_crossglen4", + "message": "Lord Geomyr ha rilasciato una dichiarazione riguardo l'uso illecito di farina d'ossa come sostanza di guarigione. Alcuni abitanti sostengono che dovremmo opporci a Lord Geomyr e continuare ad usare la polvere d'ossa", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen4_1" + } + ] + }, + { + "id": "leonid_crossglen4_1", + "message": "Tharal, il nostro sacerdote, è rimasto particolarmente turbato e ci ha suggerito di fare qualcosa riguardo Lord Geomyr.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen5" + } + ] + }, + { + "id": "leonid_crossglen5", + "message": "Altri abitanti del villaggio vogliono seguire Lord Geomyr.\n\nPersonalmente non ho ancora deciso cosa fare.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen6" + } + ] + }, + { + "id": "leonid_crossglen6", + "message": "Da un lato Lord Geomyr supporta Crossglen con molta protezione. *indica i soldati in sala*", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen7" + } + ] + }, + { + "id": "leonid_crossglen7", + "message": "D'altra parte le tasse e le regole su ciò che non è permesso sono molto severe a Crossglen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen8" + } + ] + }, + { + "id": "leonid_crossglen8", + "message": "Qualcuno dovrebbe andare nel castello di Geomyr e parlare con l'amministratore della nostra situazione qui a Crossglen.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "crossglen", + "value": 1 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen9" + } + ] + }, + { + "id": "leonid_crossglen9", + "message": "Nel frattempo ci ha vietato l'uso di qualsiasi farina d'ossa come sostanza di guarigione.", + "replies": [ + { + "text": "Indietro", + "nextPhraseID": "leonid_continue" + }, + { + "text": "Ciao", + "nextPhraseID": "leonid_bye" + } + ] + }, + { + "id": "leonid_bye", + "message": "Che l'Ombra sia con te", + "replies": [ + { + "text": "Exit", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_crossglen_leta.json b/AndorsTrail/res/raw-it/conversationlist_crossglen_leta.json new file mode 100644 index 000000000..0f3a60c87 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_crossglen_leta.json @@ -0,0 +1,110 @@ +[ + { + "id": "leta1", + "message": "Hey, questa è casa mia, fuori di qui!", + "replies": [ + { + "text": "Ma io ero solo...", + "nextPhraseID": "leta2" + }, + { + "text": "Oromir", + "nextPhraseID": "leta_oromir_select" + } + ] + }, + { + "id": "leta2", + "message": "Vattene ragazzo, fuori da casa mia!", + "replies": [ + { + "text": "Oromir", + "nextPhraseID": "leta_oromir_select" + } + ] + }, + { + "id": "leta_oromir_select", + "replies": [ + { + "nextPhraseID": "leta_oromir_complete2", + "requires": { + "progress": "leta:100" + } + }, + { + "nextPhraseID": "leta_oromir1" + } + ] + }, + { + "id": "leta_oromir1", + "message": "Sai qualcosa di mio marito? dDovrebbe essere al lavoro oggi, ma manca come al solito.\nSigh.", + "replies": [ + { + "text": "Non so nulla.", + "nextPhraseID": "leta_oromir2" + }, + { + "text": "L'ho trovato, si nasconde tra degli alberi poco ad est da qui.", + "nextPhraseID": "leta_oromir_complete", + "requires": { + "progress": "leta:20" + } + } + ] + }, + { + "id": "leta_oromir2", + "message": "Se lo vedi, digli di venire ad aiutarmi con le faccende domestiche. Ora esci di qui!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "leta", + "value": 10 + } + ] + }, + { + "id": "leta_oromir_complete", + "message": "Si nasconde qui? Non è cosi che si fa. Vado a fargli capire chi comanda qui. Grazie per avermi messo al corrente.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "leta", + "value": 100 + } + ] + }, + { + "id": "leta_oromir_complete2", + "message": "Grazie per avermi informato di Oromir prima. Andrò a prenderlo tra poco." + }, + { + "id": "oromir1", + "message": "Oh, mi hai spaventato. Ciao.", + "replies": [ + { + "text": "Ciao", + "nextPhraseID": "oromir2" + } + ] + }, + { + "id": "oromir2", + "message": "Mi nascondo qui da mia moglie Leta. E' sempre arrabbiata con me perché non vado a lavorare. Per favore non dirle che sono qui.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "leta", + "value": 20 + } + ], + "replies": [ + { + "text": "Certo", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_crossglen_odair.json b/AndorsTrail/res/raw-it/conversationlist_crossglen_odair.json new file mode 100644 index 000000000..71d6eae80 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_crossglen_odair.json @@ -0,0 +1,161 @@ +[ + { + "id": "odair1", + "message": "Oh, sei tu. Con questa storia di tuo fratello sei sempre ad infastidire", + "replies": [ + { + "text": "N", + "nextPhraseID": "odair_select" + } + ] + }, + { + "id": "odair_select", + "replies": [ + { + "nextPhraseID": "odair_complete2", + "requires": { + "progress": "odair:100" + } + }, + { + "nextPhraseID": "odair_continue", + "requires": { + "progress": "odair:10" + } + }, + { + "nextPhraseID": "odair2" + } + ] + }, + { + "id": "odair2", + "message": "Hm, forse potresti essermi utile. Potresti aiutarmi con un piccolo compito, che ne pensi?", + "replies": [ + { + "text": "Compito", + "nextPhraseID": "odair3" + }, + { + "text": "Ciao", + "nextPhraseID": "odair3" + } + ] + }, + { + "id": "odair3", + "message": "Di recente sono stato nella grotta *indica ad ovest* a controllare le nostre provviste. Ma sembra che sia infestata di topi.", + "replies": [ + { + "text": "N", + "nextPhraseID": "odair4" + } + ] + }, + { + "id": "odair4", + "message": "In particolare ho visto un topo che era più grande degli altri. Pensi di riuscire ad aiutarmi?", + "replies": [ + { + "text": "Certo, così la caverna potrà essere ancora a disposizione dei cittadini di Crossglen", + "nextPhraseID": "odair5" + }, + { + "text": "Va bene ti aiuterò, ma solo se ci sarà una ricompensa per me", + "nextPhraseID": "odair5" + }, + { + "text": "No grazie", + "nextPhraseID": "odair_cowards" + } + ] + }, + { + "id": "odair5", + "message": "Ho bisogno che tu entri in quella grotta e uccida il topo più grande, in questo modo forse si può fermare l'infestazione e ricominciare ad usare la grotta come magazzino", + "rewards": [ + { + "rewardType": 0, + "rewardID": "odair", + "value": 10 + } + ], + "replies": [ + { + "text": "Ok", + "nextPhraseID": "X" + }, + { + "text": "No grazie", + "nextPhraseID": "odair_cowards" + } + ] + }, + { + "id": "odair_cowards", + "message": "Non pensavo che fossi così, tu e tuo fratello siete sempre stati dei vigliacchi", + "replies": [ + { + "text": "Ciao", + "nextPhraseID": "X" + } + ] + }, + { + "id": "odair_continue", + "message": "Hai ucciso il grande topo che sta nella grotta?", + "replies": [ + { + "text": "Si", + "nextPhraseID": "odair_complete", + "requires": { + "item": { + "itemID": "tail_caverat", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Cosa?", + "nextPhraseID": "odair5" + }, + { + "text": "Non ancora", + "nextPhraseID": "odair_cowards" + } + ] + }, + { + "id": "odair_complete", + "message": "Grazie mille per l'aiuto ragazzo! Forse tu e tuo fratello non siete così codardi come pensavo. Ecco, prendi queste monete come ringraziamento", + "rewards": [ + { + "rewardType": 0, + "rewardID": "odair", + "value": 100 + }, + { + "rewardType": 1, + "rewardID": "gold20" + } + ], + "replies": [ + { + "text": "Grazie", + "nextPhraseID": "X" + } + ] + }, + { + "id": "odair_complete2", + "message": "Grazie per l'aiuto, ora possiamo utilizzare la grotta come magazzino.", + "replies": [ + { + "text": "Ciao", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_crossglen_tharal.json b/AndorsTrail/res/raw-it/conversationlist_crossglen_tharal.json new file mode 100644 index 000000000..db00389d2 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_crossglen_tharal.json @@ -0,0 +1,138 @@ +[ + { + "id": "tharal1", + "message": "Cammina nel bagliore dell'Ombra, figlio mio.", + "replies": [ + { + "text": "Compra", + "nextPhraseID": "S" + }, + { + "text": "Farina d'ossa", + "nextPhraseID": "tharal_bonemeal_select", + "requires": { + "progress": "bonemeal:10" + } + } + ] + }, + { + "id": "tharal_bonemeal_select", + "replies": [ + { + "nextPhraseID": "tharal_bonemeal4", + "requires": { + "progress": "bonemeal:30" + } + }, + { + "nextPhraseID": "tharal_bonemeal1" + } + ] + }, + { + "id": "tharal_bonemeal1", + "message": "Farina d'ossa? Non possiamo parlare di questo. E' stato vietato da Lord Geomyr.", + "replies": [ + { + "text": "Scusa?", + "nextPhraseID": "tharal_bonemeal2_1" + } + ] + }, + { + "id": "tharal_bonemeal2_1", + "message": "No, effettivamente non dovremmo parlarne.", + "replies": [ + { + "text": "Oh andiamo", + "nextPhraseID": "tharal_bonemeal2" + } + ] + }, + { + "id": "tharal_bonemeal2", + "message": "Se sei così insistente, portami 5 ali di insetto che io possa usare per preparare la pozione, poi possiamo parlarne.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 20 + } + ], + "replies": [ + { + "text": "ce l'ho", + "nextPhraseID": "tharal_bonemeal3", + "requires": { + "item": { + "itemID": "insectwing", + "quantity": 5, + "requireType": 0 + } + } + }, + { + "text": "Ok", + "nextPhraseID": "X" + } + ] + }, + { + "id": "tharal_bonemeal3", + "message": "Grazie ragazzo. Sapevo di poter contare su di te.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "tharal_bonemeal4" + } + ] + }, + { + "id": "tharal_bonemeal4", + "message": "Oh si, farina d'ossa. unita con i giusti componenti può essere uno degli agenti di guarigione migliori.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tharal_bonemeal5" + } + ] + }, + { + "id": "tharal_bonemeal5", + "message": "Eravamo abituati a utilizzarla ampiamente prima. Ma ora quel lurido Lord Geomyr ne ha vietato qualsiasi uso...", + "replies": [ + { + "text": "N", + "nextPhraseID": "tharal_bonemeal6" + } + ] + }, + { + "id": "tharal_bonemeal6", + "message": "Come faccio a guarire la gente ora? Utilizzo pozioni di guarigione tradizionali! Bah, sono così inefficaci.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tharal_bonemeal7" + } + ] + }, + { + "id": "tharal_bonemeal7", + "message": "Conosco qualcuno che ha ancora un po' di farina d'ossa, se ti interessa. Vai a parlare con Thoronir, un confratello in Fallhaven. Digli che la mia password è bagliore dell'Ombra.", + "replies": [ + { + "text": "Grazie, ciao", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_fallhaven.json b/AndorsTrail/res/raw-it/conversationlist_fallhaven.json new file mode 100644 index 000000000..72680f2dc --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_fallhaven.json @@ -0,0 +1,206 @@ +[ + { + "id": "fallhaven_citizen1", + "message": "Ciao. Bel tempo no?", + "replies": [ + { + "text": "Hai visto mio fratello Andor?", + "nextPhraseID": "fallhaven_andor_1" + } + ] + }, + { + "id": "fallhaven_citizen2", + "message": "Ciao. Cosa posso fare per te?", + "replies": [ + { + "text": "Hai visto mio fratello Andor?", + "nextPhraseID": "fallhaven_andor_2" + } + ] + }, + { + "id": "fallhaven_citizen3", + "message": "Ciao, come posso aiutarti?", + "replies": [ + { + "text": "Hai visto mio fratello Andor?", + "nextPhraseID": "fallhaven_andor_3" + } + ] + }, + { + "id": "fallhaven_citizen4", + "message": "Tu sei quel ragazzo del villaggio di Crossglen?", + "replies": [ + { + "text": "Hai visto mio fratello Andor?", + "nextPhraseID": "fallhaven_andor_4" + } + ] + }, + { + "id": "fallhaven_citizen5", + "message": "Fuori dai piedi, contadino." + }, + { + "id": "fallhaven_citizen6", + "message": "Buon giorno a te.", + "replies": [ + { + "text": "Hai visto mio fratello Andor?", + "nextPhraseID": "fallhaven_andor_6" + } + ] + }, + { + "id": "fallhaven_andor_1", + "message": "No mi spiace. Non ho visto nessuno di tale descrizione." + }, + { + "id": "fallhaven_andor_2", + "message": "Un ragazzo dici? Hm, fammi pensare.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_andor_1" + } + ] + }, + { + "id": "fallhaven_andor_3", + "message": "Hm, ho visto qualcuno che corrisponde alla tua descrizione. Ma non riesco a ricordare dove." + }, + { + "id": "fallhaven_andor_4", + "message": "Oh si, c'era un altro ragazzo del villaggio di Crossglen qui, un paio di giorni fa. Non sono sicuro ma corrisponde alla tua descrizione.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_andor_4_1" + } + ] + }, + { + "id": "fallhaven_andor_4_1", + "message": "Alcune persone lo seguivano ,cercando l'Ombra. Non so dirti nulla di più." + }, + { + "id": "fallhaven_andor_6", + "message": "No. Non l'ho mai visto." + }, + { + "id": "fallhaven_guard", + "message": "Tieniti fuori dai guai." + }, + { + "id": "fallhaven_priest", + "message": "Che l'Ombra sia con te.", + "replies": [ + { + "text": "Ombra", + "nextPhraseID": "priest_shadow_1" + } + ] + }, + { + "id": "priest_shadow_1", + "message": "L'Ombra ci protegge. L'Ombra ci tiene al sicuro e ci conforta nel sonno.", + "replies": [ + { + "text": "N", + "nextPhraseID": "priest_shadow_2" + } + ] + }, + { + "id": "priest_shadow_2", + "message": "Essa ci segue ovunque andiamo. Vai con l'Ombra mio figlio.", + "replies": [ + { + "text": "L'Ombra sia con te", + "nextPhraseID": "X" + }, + { + "text": "Come vuoi, ciao.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "rigmor", + "message": "Hey ciao! Sei proprio un ragazzo carino.", + "replies": [ + { + "text": "Hai visto mio fratello Andor?", + "nextPhraseID": "rigmor_1" + }, + { + "text": "Devo andare", + "nextPhraseID": "rigmor_leave_select" + } + ] + }, + { + "id": "rigmor_1", + "message": "Tuo fratello dici? si chiama Andor? No. Non posso ricordarmi di tutte le persone che incontro.", + "replies": [ + { + "text": "Ciao", + "nextPhraseID": "rigmor_leave_select" + } + ] + }, + { + "id": "rigmor_leave_select", + "replies": [ + { + "nextPhraseID": "rigmor_thanks", + "requires": { + "progress": "calomyran:100" + } + }, + { + "nextPhraseID": "X" + } + ] + }, + { + "id": "rigmor_thanks", + "message": "Ho sentito che hai aiutato il mio vecchio a trovare il suo libro, grazie. Ha parlato di quel libro per settimane. Poverino, tende a dimenticare le cose.", + "replies": [ + { + "text": "E' stato un piacere. Ciao.", + "nextPhraseID": "X" + }, + { + "text": "Dovresti tenerlo d'occhio o potrebbe accadergli qualcosa di brutto.", + "nextPhraseID": "X" + }, + { + "text": "Come no, l'ho fatto solo per i soldi.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_clothes", + "message": "Benvenuto nel mio negozio. Vi prego di guardare il mio assortimento di abiti e gioielli.", + "replies": [ + { + "text": "Compra", + "nextPhraseID": "S" + } + ] + }, + { + "id": "fallhaven_potions", + "message": "Benvenuto nel mio negozio. Vi prego di guardare il mio assortimento di pozioni per tutti i giorni.", + "replies": [ + { + "text": "Compra", + "nextPhraseID": "S" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_fallhaven_arcir.json b/AndorsTrail/res/raw-it/conversationlist_fallhaven_arcir.json new file mode 100644 index 000000000..83f0ca474 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_fallhaven_arcir.json @@ -0,0 +1,153 @@ +[ + { + "id": "arcir_start", + "message": "Ciao, io sono Arcir.", + "replies": [ + { + "text": "Ho notato la tua statua di Elythara al piano di sotto.", + "nextPhraseID": "arcir_elythara_1", + "requires": { + "progress": "arcir:10" + } + }, + { + "text": "Sembra proprio che ami i tuoi libri.", + "nextPhraseID": "arcir_books_1" + } + ] + }, + { + "id": "arcir_anythingelse", + "message": "Volevi chiedermi qualcosa?", + "replies": [ + { + "text": "Ho notato la tua statua di Elythara al piano di sotto.", + "nextPhraseID": "arcir_elythara_1", + "requires": { + "progress": "arcir:10" + } + }, + { + "text": "Sembra proprio che ami i tuoi libri.", + "nextPhraseID": "arcir_books_1" + } + ] + }, + { + "id": "arcir_elythara_1", + "message": "Hai trovato la mia statua nel seminterrato?\n\nSi, Elythara è il mio protettore.", + "replies": [ + { + "text": "Okay.", + "nextPhraseID": "arcir_anythingelse" + } + ] + }, + { + "id": "arcir_books_1", + "message": "Ho una grande riconoscenza verso i miei libri. Contengono le conoscenze accumulate dalle generazioni passate", + "replies": [ + { + "text": "Hai un libro intitolato 'Calomyran secrets'?", + "nextPhraseID": "arcir_calomyran_select", + "requires": { + "progress": "calomyran:10" + } + }, + { + "text": "Okay.", + "nextPhraseID": "arcir_anythingelse" + } + ] + }, + { + "id": "arcir_calomyran_1", + "message": "'Calomyran secrets'? Hm, Si penso di averne una copia nella cantina.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_calomyran_2" + } + ] + }, + { + "id": "arcir_calomyran_2", + "message": "Il vecchio Benradas venne da me la settimana scorsa, per vendermi quel libro. Ma non è proprio il mio genere e quindi ho rifiutato", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_calomyran_3" + } + ] + }, + { + "id": "arcir_calomyran_3", + "message": "Sembrava sconvolto dal fatto che non mi piaceva il suo libro, lo ha lanciato verso di me mentre usciva di casa.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_calomyran_4" + } + ] + }, + { + "id": "arcir_calomyran_4", + "message": "Benradas, povero vecchio, probabilmente ha dimenticato che l'ha lasciato qui. Tende a dimenticarsi le cose.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_anythingelse" + } + ] + }, + { + "id": "arcir_calomyran_5", + "message": "Hai guardato già ma non lo trovi? C'è un biglietto? Credo che qualcuno sia venuto a visitarmi .", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_calomyran_6" + } + ] + }, + { + "id": "arcir_calomyran_select", + "replies": [ + { + "nextPhraseID": "arcir_calomyran_complete", + "requires": { + "progress": "calomyran:100" + } + }, + { + "nextPhraseID": "arcir_calomyran_5", + "requires": { + "progress": "calomyran:20" + } + }, + { + "nextPhraseID": "arcir_calomyran_1" + } + ] + }, + { + "id": "arcir_calomyran_complete", + "message": "Ho sentito che l'hai trovato e l'hai ridato al vecchio Benradas. Grazie. Tende a dimenticarsi le cose.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_anythingelse" + } + ] + }, + { + "id": "arcir_calomyran_6", + "message": "Cosa diceva il biglietto?\n\nLarcal.. Lo conosco, sempre a creare problemi. Di solito sta nel fienile ad est di qui.", + "replies": [ + { + "text": "Grazie, Ciao.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_fallhaven_athamyr.json b/AndorsTrail/res/raw-it/conversationlist_fallhaven_athamyr.json new file mode 100644 index 000000000..695467a4a --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_fallhaven_athamyr.json @@ -0,0 +1,115 @@ +[ + { + "id": "athamyr", + "message": "Cammina con l'Ombra.", + "replies": [ + { + "text": "Catacombe", + "nextPhraseID": "athamyr_select", + "requires": { + "progress": "bucus:20" + } + } + ] + }, + { + "id": "athamyr_1", + "message": "Si, sono già stato nelle catacombe della chiesa di Fallhaven. ", + "replies": [ + { + "text": "N", + "nextPhraseID": "athamyr_2" + } + ] + }, + { + "id": "athamyr_2", + "message": "Ma io sono l'unico che ha il permesso e il coraggio di andare laggiù.", + "replies": [ + { + "text": "Permesso", + "nextPhraseID": "athamyr_3" + } + ] + }, + { + "id": "athamyr_3", + "message": "Vuoi scendere nelle catacombe? Hm, forse possiamo fare un accordo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "athamyr_4" + } + ] + }, + { + "id": "athamyr_4", + "message": "Portami po' di quella carne cotta dalla taverna e puoi avere il permesso di scendere nelle catacombe.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 30 + } + ], + "replies": [ + { + "text": "Ecco, ho la carne che mi hai chiesto.", + "nextPhraseID": "athamyr_complete", + "requires": { + "item": { + "itemID": "meat_cooked", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Bene, andrò a prenderne un po'.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "athamyr_complete_2", + "message": "Grazie per avermi aiutato. Ora hai il permesso di scendere nelle catacombe della Chiesa di Fallhaven .", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 50 + } + ] + }, + { + "id": "athamyr_select", + "replies": [ + { + "nextPhraseID": "athamyr_complete_2", + "requires": { + "progress": "bucus:40" + } + }, + { + "nextPhraseID": "athamyr_1" + } + ] + }, + { + "id": "athamyr_complete", + "message": "Grazie, ci voleva.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "athamyr_complete_2" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_fallhaven_bucus.json b/AndorsTrail/res/raw-it/conversationlist_fallhaven_bucus.json new file mode 100644 index 000000000..a4bbd2546 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_fallhaven_bucus.json @@ -0,0 +1,236 @@ +[ + { + "id": "bucus_welcome", + "message": "Ciao di nuovo, benvenuto alla.. Oh aspetta, pensavo che fosse qualcun altro.", + "replies": [ + { + "text": "Hai visto mio fratello Andor?", + "nextPhraseID": "bucus_andor_select" + }, + { + "text": "Thieves Guild", + "nextPhraseID": "bucus_thieves_select" + } + ] + }, + { + "id": "bucus_andor_select", + "replies": [ + { + "nextPhraseID": "bucus_umar_1", + "requires": { + "progress": "bucus:100" + } + }, + { + "nextPhraseID": "bucus_andor_no_1" + } + ] + }, + { + "id": "bucus_andor_no_1", + "message": "Che interessante che tu me lo chieda. E se l'avessi visto? Perché dovrei dirtelo?", + "replies": [ + { + "text": "N", + "nextPhraseID": "bucus_andor_no_2" + } + ] + }, + { + "id": "bucus_andor_no_2", + "message": "No, non posso dirtelo. Ora sei pregato di andartene" + }, + { + "id": "bucus_thieves_select", + "replies": [ + { + "nextPhraseID": "bucus_thieves_complete_3", + "requires": { + "progress": "bucus:100" + } + }, + { + "nextPhraseID": "bucus_thieves_continue", + "requires": { + "progress": "bucus:10" + } + }, + { + "nextPhraseID": "bucus_thieves_select2" + } + ] + }, + { + "id": "bucus_thieves_select2", + "replies": [ + { + "nextPhraseID": "bucus_thieves_1", + "requires": { + "progress": "andor:40" + } + }, + { + "nextPhraseID": "bucus_thieves_no" + } + ] + }, + { + "id": "bucus_thieves_no", + "message": "Ch--che cosa? No io non so niente di quello." + }, + { + "id": "bucus_umar_1", + "message": "Ok ragazzo. Ti sei dimostrato degno. Sì, ho visto un ragazzo che corrisponde alla descrizione girare da queste parti qualche giorno fa.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bucus_umar_2" + } + ] + }, + { + "id": "bucus_umar_2", + "message": "Non so cosa stesse facendo. Continuava a fare un sacco di domande!! Un po' come stai facendo adesso tu. *hihihihihi*", + "replies": [ + { + "text": "N", + "nextPhraseID": "bucus_umar_3" + } + ] + }, + { + "id": "bucus_umar_3", + "message": "Comunque, questo è tutto quello che so. Dovresti andare a parlare con Umar, ne sa probabilmente di più.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 50 + } + ], + "replies": [ + { + "text": "Ok, Ciao.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bucus_thieves_1", + "message": "Chi te l'ha detto? Argh. \n\nOk in che modo ci avete trovati? E adesso?", + "replies": [ + { + "text": "Posso entrare nella gilda?", + "nextPhraseID": "bucus_thieves_2" + } + ] + }, + { + "id": "bucus_thieves_2", + "message": "Hah! Vuoi unirti alla gilda dei ladri?! Tu?!\n\nSei proprio un ragazzino divertente.", + "replies": [ + { + "text": "Sono serio.", + "nextPhraseID": "bucus_thieves_3" + }, + { + "text": "Già, proprio divertente eh?", + "nextPhraseID": "bucus_thieves_3" + } + ] + }, + { + "id": "bucus_thieves_3", + "message": "Ok, ti dirò una cosa ragazzino. Svolgi un compito per me e forse posso considerare di darti qualche altra informazione.", + "replies": [ + { + "text": "Di che compito stiamo parlando?", + "nextPhraseID": "bucus_thieves_4" + }, + { + "text": "Finchè ho da guadagnarci, ci sto!", + "nextPhraseID": "bucus_thieves_4" + } + ] + }, + { + "id": "bucus_thieves_4", + "message": "Portami la chiave di Luthor e poi potremo parlare. Io non so nulla della chiave, ma si dice che si trovi da qualche parte nelle catacombe sotto la Chiesa di Fallhaven.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 10 + } + ], + "replies": [ + { + "text": "Ok", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bucus_thieves_continue", + "message": "Come va la ricerca della chiave di Luthor?", + "replies": [ + { + "text": "Ripeti.", + "nextPhraseID": "bucus_thieves_4" + }, + { + "text": "Ce l'ho.", + "nextPhraseID": "bucus_thieves_complete_1", + "requires": { + "item": { + "itemID": "key_luthor", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "La sto ancora cercando. Ciao.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bucus_thieves_complete_1", + "message": "Wow, sei riuscito a prendere la chiave di Luthor? Non pensavo che tu ci riuscissi.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 100 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "bucus_thieves_complete_2" + } + ] + }, + { + "id": "bucus_thieves_complete_2", + "message": "Ben fatto ragazzo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bucus_thieves_complete_3" + } + ] + }, + { + "id": "bucus_thieves_complete_3", + "message": "Ok, ora possiamo parlare, cosa vuoi sapere?", + "replies": [ + { + "text": "Che cosa sai riguardo mio fratello Andor?", + "nextPhraseID": "bucus_umar_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_fallhaven_church.json b/AndorsTrail/res/raw-it/conversationlist_fallhaven_church.json new file mode 100644 index 000000000..47c7e07fa --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_fallhaven_church.json @@ -0,0 +1,265 @@ +[ + { + "id": "chapelgoer", + "message": "Ombra, abbracciami." + }, + { + "id": "thoronir_default", + "message": "Crogiolati nell'Ombra, figlo mio.", + "replies": [ + { + "text": "Parlami dell'Ombra.", + "nextPhraseID": "thoronir_shadow_1" + }, + { + "text": "Cosa sai dirmi di questa chiesa?", + "nextPhraseID": "thoronir_church_1" + }, + { + "text": "Compra", + "nextPhraseID": "thoronir_trade_bonemeal", + "requires": { + "progress": "bonemeal:100" + } + } + ] + }, + { + "id": "thoronir_shadow_1", + "message": "L'Ombra ci protegge dai pericoli della notte. Ci tiene al sicuro e ci consola mentre dormiamo.", + "replies": [ + { + "text": "Bagliore dell'Ombra", + "nextPhraseID": "thoronir_tharal_select", + "requires": { + "progress": "bonemeal:30" + } + }, + { + "text": "Indietro", + "nextPhraseID": "thoronir_default" + }, + { + "text": "Ciao", + "nextPhraseID": "thoronir_default" + } + ] + }, + { + "id": "thoronir_church_1", + "message": "Questa è la nostra cappella di culto a Fallhaven. La nostra comunità si rivolge a noi per il sostegno.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thoronir_church_2" + } + ] + }, + { + "id": "thoronir_church_2", + "message": "Questa chiesa ha resistito per centinaia di anni ed è stata tenuta al sicuro dai tombaroli.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thoronir_church_3" + } + ] + }, + { + "id": "thoronir_tharal_select", + "replies": [ + { + "nextPhraseID": "thoronir_trade_bonemeal", + "requires": { + "progress": "bonemeal:100" + } + }, + { + "nextPhraseID": "thoronir_tharal_1" + } + ] + }, + { + "id": "thoronir_tharal_1", + "message": "Bagliore dell'Ombra figlio mio. Quindi il mio vecchio amico Tharal ti ha inviato dal villaggio di Crossglen?", + "replies": [ + { + "text": "Potrebbe raccontarmi qualcosa riguardo la farina d'ossa?", + "nextPhraseID": "thoronir_tharal_2" + } + ] + }, + { + "id": "thoronir_church_3", + "message": "Le catacombe sotto la chiesa ospitano i grandi capi del passato. Si dice che anche il grande Luthor sia sepolto là .", + "replies": [ + { + "text": "Nessuno è mai entrato là sotto?", + "nextPhraseID": "thoronir_church_4", + "requires": { + "progress": "bucus:10" + } + }, + { + "text": "Indietro", + "nextPhraseID": "thoronir_default" + } + ] + }, + { + "id": "thoronir_church_4", + "message": "A nessuno è permesso scendere, fatta eccezione per Athamyr, il mio apprendista. E' l'unico che è sceso laggiù in questi anni.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 20 + } + ], + "replies": [ + { + "text": "Indietro", + "nextPhraseID": "thoronir_default" + } + ] + }, + { + "id": "thoronir_tharal_2", + "message": "Shhh, non si dovrebbe parlare dell'utilizzo di farina d'ossa. Come sapete, Lord Geomyr ha emesso un divieto su tutti gli usi della farina d'ossa.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thoronir_tharal_3" + } + ] + }, + { + "id": "thoronir_tharal_3", + "message": "Quando il divieto è arrivato, non ho osato tenerne, cosi ho buttato via la mia intera fornitura. Molto sciocco da parte mia...", + "replies": [ + { + "text": "N", + "nextPhraseID": "thoronir_tharal_4" + } + ] + }, + { + "id": "thoronir_tharal_4", + "message": "Pensi di potermi trovare 5 ossa di scheletro che possa utilizzare per preparare una pozione d'ossa? La farina d'ossa è molto potente nella guarigione delle ferite.", + "replies": [ + { + "text": "Certo, non dovrebbe essere un problema.", + "nextPhraseID": "thoronir_tharal_5" + }, + { + "text": "Ho le ossa che mi hai chiesto.", + "nextPhraseID": "thoronir_tharal_complete", + "requires": { + "item": { + "itemID": "bone", + "quantity": 5, + "requireType": 0 + } + } + } + ] + }, + { + "id": "thoronir_tharal_5", + "message": "Grazie, fai in fretta. Ho sentito che c'erano dei non-morti vicino ad una vecchia casa a nord di Fallhaven. Forse puoi provare a vedere là?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 40 + } + ], + "replies": [ + { + "text": "Ok, darò un'occhiata.", + "nextPhraseID": "thoronir_default" + } + ] + }, + { + "id": "thoronir_tharal_complete", + "message": "Grazie, queste ossa vanno bene. Ora posso iniziare a creare una pozione di guarigione per te.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 100 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "thoronir_complete_2" + } + ] + }, + { + "id": "thoronir_complete_2", + "message": "Dammi il tempo di preparare la pozione di farina d'ossa. Si tratta di una pozione di guarigione molto potente." + }, + { + "id": "thoronir_trade_bonemeal", + "message": "La pozione d'ossa è pronta, utilizzala con cura e non farti vedere dalle guardie. Non siamo autorizzati ad usarla!.", + "replies": [ + { + "text": "Compra", + "nextPhraseID": "S" + }, + { + "text": "Indietro", + "nextPhraseID": "thoronir_default" + } + ] + }, + { + "id": "catacombguard", + "message": "Torna indietro finché sei in tempo, mortale! Questo posto non è per te. Solo la morte ti aspetta qui.", + "replies": [ + { + "text": "Va bene, tornerò indietro.", + "nextPhraseID": "X" + }, + { + "text": "Spostati, devo procedere la mia discesa nelle catacombe!", + "nextPhraseID": "catacombguard1" + }, + { + "text": "Per l'Ombra, non mi fermerai.", + "nextPhraseID": "catacombguard1" + } + ] + }, + { + "id": "catacombguard1", + "message": "Nooo, non passerai!", + "replies": [ + { + "text": "Combatti!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "luthor", + "message": "*hissss* Un mortale osa disturbare il mio sonno?", + "replies": [ + { + "text": "Per l'Ombra! Chi sei tu?", + "nextPhraseID": "F" + }, + { + "text": "Finalmente, un degno combattimento! Ho aspettato a lungo per questo.", + "nextPhraseID": "F" + }, + { + "text": "Come vuoi, facciamola finita.", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_fallhaven_drunk.json b/AndorsTrail/res/raw-it/conversationlist_fallhaven_drunk.json new file mode 100644 index 000000000..b58abc5b6 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_fallhaven_drunk.json @@ -0,0 +1,219 @@ +[ + { + "id": "fallhaven_drunk", + "message": "Non ci sono problemi. No sireee! Non causerò più problemi adesso. Me ne sto seduto qua fuori.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_2" + } + ] + }, + { + "id": "fallhaven_drunk_2", + "message": "Aspetta, chi sei tu? Sei quella guardia?", + "replies": [ + { + "text": "Sì.", + "nextPhraseID": "fallhaven_drunk_3_1" + }, + { + "text": "No.", + "nextPhraseID": "fallhaven_drunk_3_2" + } + ] + }, + { + "id": "fallhaven_drunk_3_1", + "message": "Oh, Signore. Non sto più causando problemi vede? Me ne sto fuori adesso, come avevate detto Voi, va bene?", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_4" + } + ] + }, + { + "id": "fallhaven_drunk_3_2", + "message": "Oh, bene. La guardia mi ha sbattuto fuori dalla taverna. Se lo rivedo glie ne dico due.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_4" + } + ] + }, + { + "id": "fallhaven_drunk_4", + "message": "Bere, bere, bere, bere ancora un po. Bere, bere .. oh, come continuava dopo?", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_5" + } + ] + }, + { + "id": "fallhaven_drunk_5", + "message": "Stavi dicendo qualcosa? Dove ero rimasto? Si, allora eravamo in questa prigione sotterranea.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_6" + } + ] + }, + { + "id": "fallhaven_drunk_6", + "message": "O era una casa? Non ricordo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_7" + } + ] + }, + { + "id": "fallhaven_drunk_7", + "message": "No no, era all'aperto! Ora mi ricordo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_7_select" + } + ] + }, + { + "id": "fallhaven_drunk_7_select", + "replies": [ + { + "nextPhraseID": "fallhaven_drunk_11", + "requires": { + "progress": "fallhavendrunk:100" + } + }, + { + "nextPhraseID": "fallhaven_drunk_8" + } + ] + }, + { + "id": "fallhaven_drunk_8", + "message": "E' lì che abbiamo..\n\nHey, dov'è andato il mio idromele? L'hai preso tu? ", + "replies": [ + { + "text": "Si", + "nextPhraseID": "fallhaven_drunk_9_1" + }, + { + "text": "No", + "nextPhraseID": "fallhaven_drunk_9_2" + } + ] + }, + { + "id": "fallhaven_drunk_9_1", + "message": "Beh allora ridammelo, oppure compramene un'altro.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fallhavendrunk", + "value": 10 + } + ], + "replies": [ + { + "text": "Ecco, prendi un po' di idromele.", + "nextPhraseID": "fallhaven_drunk_10", + "requires": { + "item": { + "itemID": "mead", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Ok, andrò a comprarti un po' di idromele.", + "nextPhraseID": "X" + }, + { + "text": "No. non credo che dovrei aiutarti. Addio.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_drunk_9_2", + "message": "Devo averlo bevuto allora. Potresti portarmi un altro idromele? Che ne pensi?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fallhavendrunk", + "value": 10 + } + ], + "replies": [ + { + "text": "Ecco, prendi un po' di idromele.", + "nextPhraseID": "fallhaven_drunk_10", + "requires": { + "item": { + "itemID": "mead", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Ok, andrò a comprarti un po' di idromele.", + "nextPhraseID": "X" + }, + { + "text": "No. non credo che dovrei aiutarti. Addio.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_drunk_10", + "message": "Oh dolce bevanda della felicità . Possa l'Ommbrrrra essere con te ragazzo. *spalanca gli occhi*", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_11" + } + ] + }, + { + "id": "fallhaven_drunk_11", + "message": "*Beve un sorso di idromele*\n\nQuesta roba è buoooonaaa!", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_12" + } + ] + }, + { + "id": "fallhaven_drunk_12", + "message": "Già, io e Unnmir abbiamo passato dei momenti felici. Vaglielo a chiedere di persona! Di solito sta nel fienile a est di quì. Mi chiedo *rutta* che fine abbia fatto il tesoro.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fallhavendrunk", + "value": 100 + } + ], + "replies": [ + { + "text": "Tesoro? Ci sto! Vado subito a cercare Unmir.", + "nextPhraseID": "X" + }, + { + "text": "Grazie per il racconto. Ciao.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_fallhaven_gaela.json b/AndorsTrail/res/raw-it/conversationlist_fallhaven_gaela.json new file mode 100644 index 000000000..6a5cc36ab --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_fallhaven_gaela.json @@ -0,0 +1,84 @@ +[ + { + "id": "gaela", + "replies": [ + { + "nextPhraseID": "gaela_r", + "requires": { + "progress": "andor:40" + } + }, + { + "nextPhraseID": "gaela_0" + } + ] + }, + { + "id": "gaela_r", + "message": "Hello again. I hope you will find what you are looking for." + }, + { + "id": "gaela_0", + "message": "Veloce è la mia lama. Velenosa la mia lingua. O era il contrario?", + "replies": [ + { + "text": "Sembra ci siano un sacco di ladri qui a Fallhaven.", + "nextPhraseID": "gaela_1" + } + ] + }, + { + "id": "gaela_1", + "message": "Si, noi ladri abbiamo una forte presenza a Fallhaven.", + "replies": [ + { + "text": "Qualcos'altro?", + "nextPhraseID": "gaela_2", + "requires": { + "progress": "andor:30" + } + } + ] + }, + { + "id": "gaela_2", + "message": "Ho sentito che hai aiutato Gruil, un compagno ladro del villaggio di Crossglen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gaela_3" + } + ] + }, + { + "id": "gaela_3", + "message": "Voci dicono che stai cercando qualcuno. Potrei essere in grado di aiutarti.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gaela_4" + } + ] + }, + { + "id": "gaela_4", + "message": "Dovresti andare a parlare con Bucus nella casa abbandonata a sud-ovest. Digli che vuoi sapere di più sulla gilda dei ladri.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 40 + } + ], + "replies": [ + { + "text": "Grazie, andrò a parlare con lui.", + "nextPhraseID": "gaela_5" + } + ] + }, + { + "id": "gaela_5", + "message": "Consideralo un favore, in cambio del tuo aiuto a Gruil." + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_fallhaven_larcal.json b/AndorsTrail/res/raw-it/conversationlist_fallhaven_larcal.json new file mode 100644 index 000000000..4b86e8547 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_fallhaven_larcal.json @@ -0,0 +1,85 @@ +[ + { + "id": "larcal", + "message": "Non ho tempo per te ragazzino. Sparisci.", + "replies": [ + { + "text": "Calomyran Secrets", + "nextPhraseID": "larcal_1", + "requires": { + "progress": "calomyran:20" + } + } + ] + }, + { + "id": "larcal_1", + "message": "Orsù, cosa abbiamo qua? Dunque mi accusi di essere stato nel seminterrato di Arcir?", + "replies": [ + { + "text": "N", + "nextPhraseID": "larcal_2" + } + ] + }, + { + "id": "larcal_2", + "message": "Forse è vero. Comunque il libro è mio.", + "replies": [ + { + "text": "N", + "nextPhraseID": "larcal_3" + } + ] + }, + { + "id": "larcal_3", + "message": "Cerchiamo di risolvere la cosa pacificamente. Ora te ne vai e ti dimentichi di quel libro, e magari resterai vivo.", + "replies": [ + { + "text": "Va bene, tieniti il libro.", + "nextPhraseID": "larcal_4" + }, + { + "text": "No, mi darai quel libro.", + "nextPhraseID": "larcal_5" + } + ] + }, + { + "id": "larcal_4", + "message": "Bravo ragazzo, scappa scappa." + }, + { + "id": "larcal_5", + "message": "OK, ora stai cominciando ad infastidirmi. Vattene finché sei in tempo.", + "replies": [ + { + "text": "Va bene, me ne vado.", + "nextPhraseID": "X" + }, + { + "text": "No! Quel libro non ti appartiene!", + "nextPhraseID": "larcal_6" + } + ] + }, + { + "id": "larcal_6", + "message": "Sei ancora qui? OK, se vuoi avere quel libro...vieni a prendertelo!", + "replies": [ + { + "text": "Finalmente, un degno combattimento! Ho aspettato a lungo per questo.", + "nextPhraseID": "F" + }, + { + "text": "Speravo di non dover arrivare a questo.", + "nextPhraseID": "F" + }, + { + "text": "Molto bene, andrò via.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_fallhaven_nocmar.json b/AndorsTrail/res/raw-it/conversationlist_fallhaven_nocmar.json new file mode 100644 index 000000000..3b62b5b3f --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_fallhaven_nocmar.json @@ -0,0 +1,258 @@ +[ + { + "id": "nocmar", + "message": "Ciao. Io sono Nocmar.", + "replies": [ + { + "text": "Questo posto sembra una fucina. Hai qualcosa da vendere?", + "nextPhraseID": "nocmar_trade_select" + }, + { + "text": "Unnmir", + "nextPhraseID": "nocmar_quest_select", + "requires": { + "progress": "nocmar:10" + } + }, + { + "text": "Ciao", + "nextPhraseID": "X" + } + ] + }, + { + "id": "nocmar_quest_select", + "replies": [ + { + "nextPhraseID": "nocmar_complete_5", + "requires": { + "progress": "nocmar:200" + } + }, + { + "nextPhraseID": "nocmar_continue", + "requires": { + "progress": "nocmar:20" + } + }, + { + "nextPhraseID": "nocmar_quest" + } + ] + }, + { + "id": "nocmar_trade_select", + "replies": [ + { + "nextPhraseID": "S", + "requires": { + "progress": "nocmar:200" + } + }, + { + "nextPhraseID": "nocmar_trade_1" + } + ] + }, + { + "id": "nocmar_trade_1", + "message": "Non ho oggetti in vendita. Ero solito avere un sacco di oggetti in vendita ma oggi non sono autorizzato a vendere nulla .", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_trade_2" + } + ] + }, + { + "id": "nocmar_trade_2", + "message": "Una volta ero uno dei più grandi fabbri in Fallhaven. Poi quel bastardo di Lord Geomyr mi ha vietato l'uso dell'Acciaio puro.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_trade_3" + } + ] + }, + { + "id": "nocmar_trade_3", + "message": "Con il decreto di Lord Geomyr, nessuno in Fallhaven è autorizzato ad utilizzare nemmeno le armi Acciaio puro. Vendo molto meno ora.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_trade_4" + } + ] + }, + { + "id": "nocmar_trade_4", + "message": "Così ora devo nascondere le ultime armi che mi rimangono. Non oso venderle a nessuno.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_trade_4_1" + } + ] + }, + { + "id": "nocmar_trade_4_1", + "message": "Non vedo il bagliore di armi in Acciaio puro da quando Lord Geomyr le ha vietate.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_trade_5" + } + ] + }, + { + "id": "nocmar_trade_5", + "message": "Così, purtroppo non posso vendere nessuna delle mie armi." + }, + { + "id": "nocmar_quest", + "message": "Unnmir ti ha mandato?Immagino che debba essere importante.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nocmar", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_quest_1" + } + ] + }, + { + "id": "nocmar_quest_1", + "message": "Ok, queste vecchie armi hanno perso la loro luce interiore, è da molto che non vengono utilizzate.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_quest_2" + } + ] + }, + { + "id": "nocmar_quest_2", + "message": "Per ridare la luce alle armi avremo bisogno di un cuore di pietra. ", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_quest_3" + } + ] + }, + { + "id": "nocmar_quest_3", + "message": "Anni fa, l'abbiamo usato per combattere i lich di Undertell. Non ho idea se ancora infestino quel luogo.", + "replies": [ + { + "text": "Undertell, cos'è?", + "nextPhraseID": "nocmar_quest_4" + } + ] + }, + { + "id": "nocmar_quest_4", + "message": "Undertell, i pozzi delle anime perdute. Viaggia a sud ed entra nelle caverne dei Nani. Segui l'odore orribile.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_quest_5" + } + ] + }, + { + "id": "nocmar_quest_5", + "message": "Attento ai lich di Undertell, se ancora ce ne sono in giro. Quelle cose possono ucciderti solo con lo sguardo." + }, + { + "id": "nocmar_continue", + "message": "Hai già trovato un cuore di pietra?", + "replies": [ + { + "text": "Sì, alla fine l'ho trovato.", + "nextPhraseID": "nocmar_complete", + "requires": { + "item": { + "itemID": "heartstone", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Ripeti.", + "nextPhraseID": "nocmar_quest_1" + }, + { + "text": "No, non ancora.", + "nextPhraseID": "nocmar_continue_2" + } + ] + }, + { + "id": "nocmar_continue_2", + "message": "Per favore continua a cercare. Unnmir deve avere qualcosa di importante in programma per te." + }, + { + "id": "nocmar_complete", + "message": "Per l'Ombra. Hai realmente trovato un cuore di pietra. Ho sempre pensato di non riuscire a vivere abbastanza per vedere questo giorno", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nocmar", + "value": 200 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_complete_2" + } + ] + }, + { + "id": "nocmar_complete_2", + "message": "Riesci a vedere la luce? E' letteralmente pulsante.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_complete_3" + } + ] + }, + { + "id": "nocmar_complete_3", + "message": "Veloce. Lasciamo riprendere il vecchio bagliore a queste armi.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_complete_4" + } + ] + }, + { + "id": "nocmar_complete_4", + "message": "*Nocmar pone il cuore di pietra fra le armi in Acciaio puro*", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_complete_5" + } + ] + }, + { + "id": "nocmar_complete_5", + "message": "Riesci a sentirlo? L'Acciaio puro è di nuovo incandescente.", + "replies": [ + { + "text": "Compra", + "nextPhraseID": "S" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_fallhaven_oldman.json b/AndorsTrail/res/raw-it/conversationlist_fallhaven_oldman.json new file mode 100644 index 000000000..4176c8859 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_fallhaven_oldman.json @@ -0,0 +1,151 @@ +[ + { + "id": "fallhaven_oldman", + "replies": [ + { + "nextPhraseID": "fallhaven_oldman_complete_2", + "requires": { + "progress": "calomyran:100" + } + }, + { + "nextPhraseID": "fallhaven_oldman_continue", + "requires": { + "progress": "calomyran:10" + } + }, + { + "nextPhraseID": "fallhaven_oldman_1" + } + ] + }, + { + "id": "fallhaven_oldman_1", + "message": "Vuoi fare un favore ad un vecchio?", + "replies": [ + { + "text": "Certo, di cosa hai bisogno?", + "nextPhraseID": "fallhaven_oldman_2" + }, + { + "text": "Potrei. C'è in ballo qualche ricompensa per me?", + "nextPhraseID": "fallhaven_oldman_2" + }, + { + "text": "No, non voglio aiutare un vecchiaccio come te. Ciao.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_oldman_2", + "message": "Di recente ho perso un libro molto prezioso in miniera.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_oldman_3" + } + ] + }, + { + "id": "fallhaven_oldman_3", + "message": "So che l'avevo con me ieri. Ora non riesco a trovarlo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_oldman_4" + } + ] + }, + { + "id": "fallhaven_oldman_4", + "message": "Non perdo mai nulla! Credo che qualcuno lo abbia rubato.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_oldman_5" + } + ] + }, + { + "id": "fallhaven_oldman_5", + "message": "Andresti per favore a cercare il mio libro? Si intitola 'Calomyran secrets'.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_oldman_6" + } + ] + }, + { + "id": "fallhaven_oldman_6", + "message": "Non ho idea di dove possa essere. Potresti chiedere ad Arcir, sembra molto affezionato ai suoi libri. *indica la casa a sud*", + "rewards": [ + { + "rewardType": 0, + "rewardID": "calomyran", + "value": 10 + } + ], + "replies": [ + { + "text": "Ok, andrò a chiedere ad Arcir. Ciao.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_oldman_continue", + "message": " Come va la ricerca del mio libro? Si chiama Calomyran secrets. L'hai trovato?", + "replies": [ + { + "text": "Si", + "nextPhraseID": "fallhaven_oldman_complete", + "requires": { + "item": { + "itemID": "calomyran_secrets", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "No", + "nextPhraseID": "fallhaven_oldman_6" + }, + { + "text": "Ripeti", + "nextPhraseID": "fallhaven_oldman_2" + } + ] + }, + { + "id": "fallhaven_oldman_complete", + "message": "Il mio libro! Grazie, grazie! Dov'era? No, non dirmelo. Ecco, prendi queste monete per l'aiuto e per il disturbo.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "calomyran", + "value": 100 + }, + { + "rewardType": 1, + "rewardID": "gold51" + } + ], + "replies": [ + { + "text": "Grazie. Ciao.", + "nextPhraseID": "X" + }, + { + "text": "Finalmente, un po' d'oro. Ciao.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_oldman_complete_2", + "message": "Grazie mille per aver ritrovato il mio libro!" + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_fallhaven_south.json b/AndorsTrail/res/raw-it/conversationlist_fallhaven_south.json new file mode 100644 index 000000000..f0297e0f2 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_fallhaven_south.json @@ -0,0 +1,52 @@ +[ + { + "id": "fallhaven_lumberjack", + "message": "Ciao io sono Jakrar.", + "replies": [ + { + "text": "Sei un taglialegna?", + "nextPhraseID": "fallhaven_lumberjack_2" + } + ] + }, + { + "id": "fallhaven_lumberjack_2", + "message": "Si, sono il taglialegna de Fallhaven. Hai bisogno di qualche lavoretto ben fatto col legno? Lo posso fare tranquillamente." + }, + { + "id": "alaun", + "message": "Ciao, io sono Alaun. Come posso aiutarti?", + "replies": [ + { + "text": "Hai visto mio fratello Andor? Mi somiglia molto.", + "nextPhraseID": "alaun_2" + } + ] + }, + { + "id": "alaun_2", + "message": "Stai cercando tuo fratello hai detto? Ti somiglia, hm.", + "replies": [ + { + "text": "N", + "nextPhraseID": "alaun_3" + } + ] + }, + { + "id": "alaun_3", + "message": "No, non ricordo nessuno che ti somiglia. Prova al villaggio di Crossglen a ovest di qui." + }, + { + "id": "fallhaven_farmer1", + "message": "Buongiorno. Per favore non disturbatemi, ho del lavoro da fare." + }, + { + "id": "fallhaven_farmer2", + "message": "Ciao, potresti toglierti di torno? Sto cercando di lavorare qui." + }, + { + "id": "khorand", + "message": "Ehi tu, non pensare nemmeno di toccare quelle casse. Ti sto guardando!" + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_fallhaven_tavern.json b/AndorsTrail/res/raw-it/conversationlist_fallhaven_tavern.json new file mode 100644 index 000000000..038466667 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_fallhaven_tavern.json @@ -0,0 +1,107 @@ +[ + { + "id": "bela", + "message": "Benvenuto nella taverna di Fallhaven. Siediti dove vuoi.", + "replies": [ + { + "text": "Compra", + "nextPhraseID": "S" + }, + { + "text": "Ci sono stanze libere?", + "nextPhraseID": "bela_room_select" + } + ] + }, + { + "id": "bela_room_1", + "message": "Una stanza per la notte vi costerà solo 10 monete.", + "replies": [ + { + "text": "Compra [10 gold]", + "nextPhraseID": "bela_room_2", + "requires": { + "item": { + "itemID": "gold", + "quantity": 10, + "requireType": 0 + } + } + }, + { + "text": "No grazie.", + "nextPhraseID": "bela" + } + ] + }, + { + "id": "bela_room_2", + "message": "Grazie. Prendete l'ultima stanza già in fondo al corridoio.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fallhaventavern", + "value": 10 + } + ], + "replies": [ + { + "text": "Grazie, c'era qualcos'altro che volevo chiederti.", + "nextPhraseID": "bela" + }, + { + "text": "Grazie, ciao.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bela_room_3", + "message": "Mi auguro che la stanza sa di vostro gradimento. E' l'ultima sala giù in fondo al corridoio.", + "replies": [ + { + "text": "Grazie, c'era qualcos'altro che volevo chiederti.", + "nextPhraseID": "bela" + }, + { + "text": "Grazie, ciao.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bela_room_select", + "replies": [ + { + "nextPhraseID": "bela_room_3", + "requires": { + "progress": "fallhaventavern:10" + } + }, + { + "nextPhraseID": "bela_room_1" + } + ] + }, + { + "id": "ganos", + "message": "Tu mi sei familiare.", + "replies": [ + { + "text": "Compra", + "nextPhraseID": "S" + }, + { + "text": "Sai nulla riguardo la gilda dei ladri?", + "nextPhraseID": "ganos_1", + "requires": { + "progress": "andor:30" + } + } + ] + }, + { + "id": "ganos_1", + "message": "Gilda dei ladri? Come faccio a saperlo? Ti sembro un ladro?! Hrmpf." + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_fallhaven_unnmir.json b/AndorsTrail/res/raw-it/conversationlist_fallhaven_unnmir.json new file mode 100644 index 000000000..ef67c14fa --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_fallhaven_unnmir.json @@ -0,0 +1,174 @@ +[ + { + "id": "unnmir", + "replies": [ + { + "nextPhraseID": "unnmir_r", + "requires": { + "progress": "nocmar:10" + } + }, + { + "nextPhraseID": "unnmir_0" + } + ] + }, + { + "id": "unnmir_r", + "message": "Hello again. You should go talk to Nocmar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_13" + } + ] + }, + { + "id": "unnmir_0", + "message": "Salve!", + "replies": [ + { + "text": "Un ubriacone fuori dalla taverna mi ha raccontato la storia di voi due.", + "nextPhraseID": "unnmir_1", + "requires": { + "progress": "fallhavendrunk:100" + } + } + ] + }, + { + "id": "unnmir_1", + "message": "Quel vecchio ubriacone alla taverna ti ha raccontato la sua storia?", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_2" + } + ] + }, + { + "id": "unnmir_2", + "message": "La stessa vecchia storia. Eravamo abituati a viaggiare insieme qualche anno fa.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_3" + } + ] + }, + { + "id": "unnmir_3", + "message": "Avventure vere...sai, spade e incantesimi.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_4" + } + ] + }, + { + "id": "unnmir_4", + "message": "Ma poi ci siamo fermati, non so dirti il perché, forse eravamo stanchi di viaggiare. Ci siamo fermati qui a Fallhaven.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_5" + } + ] + }, + { + "id": "unnmir_5", + "message": "E' una bella cittadina. Molti ladri in giro, però non mi preoccupo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_6" + } + ] + }, + { + "id": "unnmir_6", + "message": "Allora, qual è la tua storia ragazzo? Come hai fatto a finire qui a Fallhaven?", + "replies": [ + { + "text": "Sto cercando mio fratello.", + "nextPhraseID": "unnmir_7" + } + ] + }, + { + "id": "unnmir_7", + "message": "Si, si, ho capito. Tuo Fratello è probabilmente scappato in qualche miniera per fare l'avventuriero *rotea gli occhi*.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_8" + } + ] + }, + { + "id": "unnmir_8", + "message": "O forse si è recato in una delle città più a nord.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_9" + } + ] + }, + { + "id": "unnmir_9", + "message": "Non posso dargli nessun torto per voler vedere il mondo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_10" + } + ] + }, + { + "id": "unnmir_10", + "message": "Hey, stai cercando anche tu di fare l'avventuriero?", + "replies": [ + { + "text": "Si", + "nextPhraseID": "unnmir_11" + }, + { + "text": "Non proprio", + "nextPhraseID": "unnmir_12" + } + ] + }, + { + "id": "unnmir_11", + "message": "Bene. Ti do un piccolo suggerimento. *sghignazzando*. Vai a trovare Nocmar oltre il lato ovest della città. Digli che ti ho mandato io.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nocmar", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_13" + } + ] + }, + { + "id": "unnmir_12", + "message": "Mossa intelligente. L'avventura porta un sacco di cicatrici. Se capisci cosa intendo." + }, + { + "id": "unnmir_13", + "message": "La sua casa è a sud-ovest della taverna.", + "replies": [ + { + "text": "Grazie, andrò a cercarlo.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_fallhaven_unzel.json b/AndorsTrail/res/raw-it/conversationlist_fallhaven_unzel.json new file mode 100644 index 000000000..af7e94f37 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_fallhaven_unzel.json @@ -0,0 +1,326 @@ +[ + { + "id": "unzel_1", + "message": "Ciao. Io sono Unzel.", + "replies": [ + { + "text": "Questo è il tuo accampamento?", + "nextPhraseID": "unzel_2" + }, + { + "text": "Vacor mi ha mandato qui per ucciderti.", + "nextPhraseID": "unzel_3", + "requires": { + "progress": "vacor:40" + } + } + ] + }, + { + "id": "unzel_2", + "message": "Si, questo è il mio accampamento, ti piace?", + "replies": [ + { + "text": "Ciao", + "nextPhraseID": "X" + } + ] + }, + { + "id": "unzel_3", + "message": "Vacor ti ha inviato eh? Sapevo che avrebbero mandato qualcuno prima o poi.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_4" + } + ] + }, + { + "id": "unzel_4", + "message": "Benissimo, uccidimi se devi oppure permettimi di raccontarti la mia versione dei fatti.", + "replies": [ + { + "text": "Sarà un vero piacere ucciderti.", + "nextPhraseID": "unzel_fight" + }, + { + "text": "Raccontami la tua storia.", + "nextPhraseID": "unzel_5" + } + ] + }, + { + "id": "unzel_fight", + "message": "Molto bene, mano alle armi.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 53 + } + ], + "replies": [ + { + "text": "Combatti", + "nextPhraseID": "F" + } + ] + }, + { + "id": "unzel_5", + "message": "Grazie per aver ascoltato.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_10" + } + ] + }, + { + "id": "unzel_10", + "message": "Vacor ed io abbiamo sempre viaggiato insieme. Ma ad un tratto ha iniziato ad essere ossessionato da questi incantesimi.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_11" + } + ] + }, + { + "id": "unzel_11", + "message": "Ha iniziato ad interrogarsi sull'Ombra. Sapevo che dovevo fare qualcosa per fermarlo...", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_12" + } + ] + }, + { + "id": "unzel_12", + "message": "Ho iniziato a chiedergli che stava facendo, ma voleva solo andare avanti.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_13" + } + ] + }, + { + "id": "unzel_13", + "message": "Dopo un po', divenne ossessionato dal pensiero di un incantesimo che gli avrebbe concesso poteri illimitati contro l'Ombra.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_14" + } + ] + }, + { + "id": "unzel_14", + "message": "Allora c'era una sola cosa che potevo fare. L'ho lasciato e ho tentato di impedirgli di completare l'incantesimo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_15" + } + ] + }, + { + "id": "unzel_15", + "message": "Così ho mandato alcuni amici da lui a prendere l'incantesimo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_16_select" + } + ] + }, + { + "id": "unzel_16_select", + "replies": [ + { + "nextPhraseID": "unzel_16_2", + "requires": { + "progress": "vacor:50" + } + }, + { + "nextPhraseID": "unzel_16_1" + } + ] + }, + { + "id": "unzel_16_1", + "message": "Il resto è storia.", + "replies": [ + { + "text": "Banditi", + "nextPhraseID": "unzel_17" + } + ] + }, + { + "id": "unzel_16_2", + "message": "Il resto è storia.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_19" + } + ] + }, + { + "id": "unzel_17", + "message": "Cosa? Hai ucciso i miei 4 amici? Argh, sento la rabbia salire!", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_18" + } + ] + }, + { + "id": "unzel_18", + "message": "Ma mi rendo anche conto che tutto questo è il piano di Vacor. Ora ti darò l'opportunità di decidere. Scegli saggiamente.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_19" + } + ] + }, + { + "id": "unzel_19", + "message": "Puoi schierarti con Vacor e aiutarlo a completare il suo incantesimo, oppure mi aiuti a sbarazzarmi di lui. Chi aiuterai?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 50 + } + ], + "replies": [ + { + "text": "Sono con te. L'Ombra non deve essere disturbata.", + "nextPhraseID": "unzel_20" + }, + { + "text": "Mi schiererò con Vacor.", + "nextPhraseID": "unzel_fight" + } + ] + }, + { + "id": "unzel_20", + "message": "Grazie amico mio, manterremo l'Ombra al sicuro da Vacor.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 51 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_21" + } + ] + }, + { + "id": "unzel_21", + "message": "Dovresti andare a parlare con lui dell'Ombra." + }, + { + "id": "unzel_return_1", + "message": "bentornato. Hai parlato con Vacor?", + "replies": [ + { + "text": "Sì.", + "nextPhraseID": "unzel_30", + "requires": { + "item": { + "itemID": "ring_vacor", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "No, non ancora.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "unzel_30", + "message": "L'hai ucciso? Sei un amico, grazie. Ora siamo al sicuro dall'incantesimo di Vacor. Ecco, prendi queste monete per il tuo aiuto.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 61 + }, + { + "rewardType": 1, + "rewardID": "gold200" + } + ], + "replies": [ + { + "text": "L'Ombra sia con te.", + "nextPhraseID": "X" + }, + { + "text": "Grazie.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "unzel_40", + "message": "Grazie per il tuo aiuto, ora siamo al sicuro dall'incantesimo di Vacor.", + "replies": [ + { + "text": "I have a message for you from Kaverin in Remgard.", + "nextPhraseID": "unzel_msg1", + "requires": { + "progress": "kaverin:25", + "item": { + "itemID": "kaverin_message", + "quantity": 1, + "requireType": 1 + } + } + } + ] + }, + { + "id": "unzel", + "replies": [ + { + "nextPhraseID": "unzel_msg_r0", + "requires": { + "progress": "kaverin:30" + } + }, + { + "nextPhraseID": "unzel_40", + "requires": { + "progress": "vacor:61" + } + }, + { + "nextPhraseID": "unzel_return_1", + "requires": { + "progress": "vacor:51" + } + }, + { + "nextPhraseID": "unzel_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_fallhaven_vacor.json b/AndorsTrail/res/raw-it/conversationlist_fallhaven_vacor.json new file mode 100644 index 000000000..2baee9f40 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_fallhaven_vacor.json @@ -0,0 +1,604 @@ +[ + { + "id": "vacor", + "replies": [ + { + "nextPhraseID": "vacor_return_complete0", + "requires": { + "progress": "vacor:60" + } + }, + { + "nextPhraseID": "vacor_return2", + "requires": { + "progress": "vacor:40" + } + }, + { + "nextPhraseID": "vacor_42", + "requires": { + "progress": "vacor:30" + } + }, + { + "nextPhraseID": "vacor_select1" + } + ] + }, + { + "id": "vacor_select1", + "replies": [ + { + "nextPhraseID": "vacor_return1", + "requires": { + "progress": "vacor:20" + } + }, + { + "nextPhraseID": "vacor_begin" + } + ] + }, + { + "id": "vacor_begin", + "message": "Ciao.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_2" + } + ] + }, + { + "id": "vacor_2", + "message": "Cosa sei, una specie di avventuriero? Hm. Forse puoi essermi utile.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_3" + } + ] + }, + { + "id": "vacor_3", + "message": "Sei disposto ad aiutarmi?", + "replies": [ + { + "text": "Certo", + "nextPhraseID": "vacor_4" + }, + { + "text": "No", + "nextPhraseID": "vacor_bah" + } + ] + }, + { + "id": "vacor_bah", + "message": "Bah, umile creatura. Sapevo che non dovevo chiedere a te. Ora vattene." + }, + { + "id": "vacor_4", + "message": "Qualche tempo fa, stavo lavorando su un incantesimo di apertura che avevo letto.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_5" + } + ] + }, + { + "id": "vacor_5", + "message": "L'incantesimo ha lo scopo, diciamo, di aprire nuove possibilità, ecco.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_6" + } + ] + }, + { + "id": "vacor_6", + "message": "Ehm, si, quando l'incantesimo di apertura sarà pronto le cose andranno meglio. Ahem.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_7" + } + ] + }, + { + "id": "vacor_7", + "message": "Ho lavorato duramente per mettere insieme tutti gli ingredienti.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_8" + } + ] + }, + { + "id": "vacor_8", + "message": "Poi una banda di teppisti è venuta e ha combinato un disastro.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_9" + } + ] + }, + { + "id": "vacor_9", + "message": "Hanno dichiarato di essere messaggeri dell'Ombra e insistito sul fatto che io dovessi lasciar perdere il mio incantesimo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_10" + } + ] + }, + { + "id": "vacor_10", + "message": "Assurdo, non è vero? Ero così vicino ad avere il potere!", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_11" + } + ] + }, + { + "id": "vacor_11", + "message": "Oh, il potere che avrebbe potuto avere il mio incantesimo...", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_12" + } + ] + }, + { + "id": "vacor_12", + "message": "Comunque, stavo per completare l'ultimo passaggio... quando i banditi sono arrivati e mi hanno derubato.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_13" + } + ] + }, + { + "id": "vacor_13", + "message": "I banditi hanno preso i fogli con l'incantesimo e sono scappati prima che arrivassero le guardie.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_14" + } + ] + }, + { + "id": "vacor_14", + "message": "Ora non riesco a ricordare gli ultimi passaggi per completarlo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_15" + } + ] + }, + { + "id": "vacor_15", + "message": "Pensi che potresti aiutarmi a ritrovarlo? Poi potrò avere il potere...finalmente!", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_16" + } + ] + }, + { + "id": "vacor_16", + "message": "Naturalmente verrai lautamente ricompensato.", + "replies": [ + { + "text": "Una ricompensa? Ci sto!", + "nextPhraseID": "vacor_17" + }, + { + "text": "Molto bene, ti aiuterò.", + "nextPhraseID": "vacor_17" + }, + { + "text": "No grazie, preferirei non essere coinvolto in questa faccenda.", + "nextPhraseID": "vacor_bah" + } + ] + }, + { + "id": "vacor_17", + "message": "Sapevo che non potevo fidarmi...Aspetta, cosa? Hai veramente detto di sì? Ah beh, bene allora.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_18" + } + ] + }, + { + "id": "vacor_18", + "message": "Ok, trova le 4 parti del mio incantesimo che i banditi hanno rubato, poi portamele!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_19" + } + ] + }, + { + "id": "vacor_19", + "message": "I banditi erano quattro, dopo avermi attaccato si sono diretti a sud di Fallhaven.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_20" + } + ] + }, + { + "id": "vacor_20", + "message": "Dovresti cercare nella parte meridionale di Fallhaven.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_21" + } + ] + }, + { + "id": "vacor_21", + "message": "Per favore, fai in fretta! Sono così ansioso di aprire il varco...Ehm, voglio dire... di finire l'incantesimo." + }, + { + "id": "vacor_return1", + "message": "Bentornato, come va la ricerca dei fogli per il mio incantesimo?", + "replies": [ + { + "text": "Fatto, ho tutti i quattro pezzi.", + "nextPhraseID": "vacor_40", + "requires": { + "item": { + "itemID": "vacor_spell", + "quantity": 4, + "requireType": 0 + } + } + }, + { + "text": "Cosa dovevo fare?", + "nextPhraseID": "vacor_18" + }, + { + "text": "Mi ripeteresti l'intera storia?", + "nextPhraseID": "vacor_4" + } + ] + }, + { + "id": "vacor_40", + "message": "Oh, hai trovato i 4 pezzi?? sbrigati, dalli a me!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_41" + } + ] + }, + { + "id": "vacor_41", + "message": "Si, questi sono i fogli che i banditi hanno rubato.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_42" + } + ] + }, + { + "id": "vacor_42", + "message": "Ora dovrei essere in grado di aprire il varco dell'Ombra... ehm intendo aprire nuove possibilità. Si, è questo che intendevo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_43" + } + ] + }, + { + "id": "vacor_43", + "message": "L'ultimo ostacolo rimasto, per completare l'incantesimo di apertura è quello stupido di Unzel.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_44" + } + ] + }, + { + "id": "vacor_44", + "message": "Unzel era il mio apprendista qualche tempo fa. Poi ha cominciato a darmi fastidio con le sue domande e i sui discorsi sulla moralità .", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_45" + } + ] + }, + { + "id": "vacor_45", + "message": "Sostiene che la mia magia interromperà il volere dell'Ombra.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_46" + } + ] + }, + { + "id": "vacor_46", + "message": "Bah, l'Ombra. Cosa ha mai fatto l'Ombra per ME?", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_47" + } + ] + }, + { + "id": "vacor_47", + "message": "Un giorno riuscirò a scagliare il mio incantesimo di apertura e allora ci libereremo dell'Ombra.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_48" + } + ] + }, + { + "id": "vacor_48", + "message": "Ad ogni modo, sono convinto che Unzel abbia mandato quei banditi da me. E se non lo fermo, li rimanderà.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_49" + } + ] + }, + { + "id": "vacor_49", + "message": "Ho bisogno che tu scovi Unzel e lo uccida. Lo puoi probabilmente trovare da qualche parte a sud-est di Fallhaven.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_50" + } + ] + }, + { + "id": "vacor_50", + "message": "Portami il suo anello con sigillo come prova della sua morte.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_51" + } + ] + }, + { + "id": "vacor_51", + "message": "Ora sbrigati! Non posso aspettare ancora a lungo...! Il potere sarà mio!" + }, + { + "id": "vacor_return2", + "message": "Bentornato, qualche progresso?", + "replies": [ + { + "text": "Riguardo Unzel...", + "nextPhraseID": "vacor_return2_2" + }, + { + "text": "Mi ripeti cosa dovrei fare?", + "nextPhraseID": "vacor_43" + } + ] + }, + { + "id": "vacor_return2_2", + "message": "Hai ucciso Unzel per me? Portami il suo anello con sigillo quando l'avrai ucciso.", + "replies": [ + { + "text": "Ho sistemato la faccenda. Eccoti l'anello.", + "nextPhraseID": "vacor_60", + "requires": { + "item": { + "itemID": "ring_unzel", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Ho ascoltato la storia di Unzel e ho deciso di schierarmi con lui. L'Ombra deve essere protetta.", + "nextPhraseID": "vacor_70", + "requires": { + "progress": "vacor:51" + } + } + ] + }, + { + "id": "vacor_60", + "message": "Haha, Unzel è morto! Quella creatura patetica se n'é andata!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 60 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_61" + } + ] + }, + { + "id": "vacor_61", + "message": "Riesco a vedere il suo sangue sui tuoi stivali. E sono persino riuscito a farti uccidere i suoi servi in anticipo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_62" + } + ] + }, + { + "id": "vacor_62", + "message": "Oggi è un grande giorno. Avrò presto il potere!", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_63" + } + ] + }, + { + "id": "vacor_63", + "message": "Ecco, queste monete sono per il tuo aiuto.", + "rewards": [ + { + "rewardType": 1, + "rewardID": "gold200" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_64" + } + ] + }, + { + "id": "vacor_64", + "message": "Ora lasciami, ho del lavoro da fare prima di poter lanciare l'incantesimo." + }, + { + "id": "vacor_return_complete0", + "replies": [ + { + "nextPhraseID": "vacor_msg_16", + "requires": { + "progress": "kaverin:90" + } + }, + { + "nextPhraseID": "vacor_msg_9", + "requires": { + "progress": "kaverin:75" + } + }, + { + "nextPhraseID": "vacor_msg1", + "requires": { + "progress": "kaverin:60", + "item": { + "itemID": "kaverin_message", + "quantity": 1, + "requireType": 1 + } + } + }, + { + "nextPhraseID": "vacor_return_complete" + } + ] + }, + { + "id": "vacor_return_complete", + "message": "Bentornato, mio amico assassino. Presto avremo l'incantesimo per il varco." + }, + { + "id": "vacor_70", + "message": "Cosa? Ti ha raccontato la sua storia? E tu ci hai creduto?", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_71" + } + ] + }, + { + "id": "vacor_71", + "message": "Ti darò un'altra possibilità. O ucciderai Unzel per me e io ti ricompenserò generosamente, oppure dovrai combattere contro di me.", + "replies": [ + { + "text": "No, devi essere fermato.", + "nextPhraseID": "vacor_72" + }, + { + "text": "Bene, ci penserò ancora un po' su.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "vacor_72", + "message": "Bah, piccola creatura. Sapevo che non dovevo darti fiducia. Ora morirai con la tua preziosa Ombra.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 54 + } + ], + "replies": [ + { + "text": "Per l'Ombra!", + "nextPhraseID": "F" + }, + { + "text": "Devi essere fermato.", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_fallhaven_warden.json b/AndorsTrail/res/raw-it/conversationlist_fallhaven_warden.json new file mode 100644 index 000000000..c2ad2f892 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_fallhaven_warden.json @@ -0,0 +1,405 @@ +[ + { + "id": "fallhaven_warden", + "message": "Dichiari il motivo della sua presenza", + "replies": [ + { + "text": "Chi è quel prigioniero?", + "nextPhraseID": "warden_prisoner_1" + }, + { + "text": "Ho sentito che siete un appassionato di idromele!", + "nextPhraseID": "fallhaven_warden_1", + "requires": { + "progress": "farrik:20" + } + }, + { + "text": "I ladri sanno progettando di far evadere il loro amico.", + "nextPhraseID": "fallhaven_warden_20", + "requires": { + "progress": "farrik:30" + } + } + ] + }, + { + "id": "warden_prisoner_1", + "message": "Quel ladro? E' stato colto sul fatto. Violazione di proprietà. Cercava di scendere nelle catacombe della chiesa di Fallhaven.", + "replies": [ + { + "text": "N", + "nextPhraseID": "warden_prisoner_2" + } + ] + }, + { + "id": "warden_prisoner_2", + "message": "Per fortuna lo abbiamo preso prima che potesse arrivare laggiù. Ora sarà d'esempio a tutti gli altri ladri.", + "replies": [ + { + "text": "N", + "nextPhraseID": "warden_prisoner_3" + } + ] + }, + { + "id": "warden_prisoner_3", + "message": "Maledetti ladri. Ci dev'essere un loro covo qui da qualche parte. Se solo potessi scoprire dove si nascondono." + }, + { + "id": "fallhaven_warden_1", + "message": "Idromele? oh .. no, non lo faccio più. Chi te l'ha detto?", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_2" + } + ] + }, + { + "id": "fallhaven_warden_2", + "message": "Ho smesso di bere anni fa!", + "replies": [ + { + "text": "Sembra un buon inizio, buona fortuna con questo vostro proposito.", + "nextPhraseID": "X" + }, + { + "text": "Nemmeno un pochino?", + "nextPhraseID": "fallhaven_warden_3" + } + ] + }, + { + "id": "fallhaven_warden_3", + "message": "Uhm. *si schiarisce la gola* non dovrei.", + "replies": [ + { + "text": "Ne ho un po' con me, se ne volete un sorso non fate complimenti.", + "nextPhraseID": "fallhaven_warden_4", + "requires": { + "progress": "farrik:25", + "item": { + "itemID": "sleepingmead", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Va bene, arrivederci.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_warden_4", + "message": "Oh, dolce e fantastica bevanda. In realtà non dovrei bere in servizio.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 32 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_5" + } + ] + }, + { + "id": "fallhaven_warden_5", + "message": "Potrei prendere una multa per aver bevuto in servizio. Non credo di volerlo fare...", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_6" + } + ] + }, + { + "id": "fallhaven_warden_6", + "message": "Grazie per l'idromele comunque, me lo godrò quando tornerò a casa più tardi.", + "replies": [ + { + "text": "Prego. Arrivederci.", + "nextPhraseID": "X" + }, + { + "text": "E se qualcuno pagasse l'ammontare dell'ammenda?", + "nextPhraseID": "fallhaven_warden_7" + } + ] + }, + { + "id": "fallhaven_warden_7", + "message": "Oh, suona un po'...strano. Inoltre dubito che qualcuno possa permettersi 450 monete d'oro qui intorno. Comunque vorrei più denaro solo per il rischio.", + "replies": [ + { + "text": "Ho 500 monete proprio qui.", + "nextPhraseID": "fallhaven_warden_9", + "requires": { + "item": { + "itemID": "gold", + "quantity": 500, + "requireType": 0 + } + } + }, + { + "text": "Ma voi sapete di desiderare l'idromele, non è vero?", + "nextPhraseID": "fallhaven_warden_8" + }, + { + "text": "Sì, sono d'accordo. Questa cosa inizia a sembrare troppo sporca. Addio.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_warden_8", + "message": "Oh, certo. Ora che me lo dici, di certo sarebbe buono.", + "replies": [ + { + "text": "Allora, se io le dessi 400 monete d'oro, coprirebbero di certo l'ansia di farsi un goccetto vero?", + "nextPhraseID": "fallhaven_warden_9", + "requires": { + "item": { + "itemID": "gold", + "quantity": 400, + "requireType": 0 + } + } + }, + { + "text": "La cosa sta iniziando a diventare troppo rischiosa per me, vi lascio al vostro dovere.", + "nextPhraseID": "X" + }, + { + "text": "Vado a prendere quei soldi per voi. Arrivederci.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_warden_9", + "message": "Wow, tutti questi soldi? Sono sicuro che potrei pure cavarmela senza essere multato. A questo punto, avrei ottenuto sia i soldi che una bella bevuta di idromele allo stesso tempo.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 60 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_10" + } + ] + }, + { + "id": "fallhaven_warden_10", + "message": "Grazie ragazzo, sei davvero simpatico. Ora lasciami godere la mia bevanda." + }, + { + "id": "fallhaven_warden_select_1", + "replies": [ + { + "nextPhraseID": "fallhaven_warden_11", + "requires": { + "progress": "farrik:60" + } + }, + { + "nextPhraseID": "fallhaven_warden_35", + "requires": { + "progress": "farrik:90" + } + }, + { + "nextPhraseID": "fallhaven_warden_select_2" + } + ] + }, + { + "id": "fallhaven_warden_select_2", + "replies": [ + { + "nextPhraseID": "fallhaven_warden_30", + "requires": { + "progress": "farrik:50" + } + }, + { + "nextPhraseID": "fallhaven_warden_12", + "requires": { + "progress": "farrik:32" + } + }, + { + "nextPhraseID": "fallhaven_warden" + } + ] + }, + { + "id": "fallhaven_warden_11", + "message": "Ciao ragazzo. Grazie per la bevuta! L'ho bevuto tutto in una volta. Il sapore era un po' diverso da come lo ricordavo ma sarà sicuramente dovuto al fatto che non ci sono più abituato.", + "replies": [ + { + "text": "Chi è quel prigioniero?", + "nextPhraseID": "warden_prisoner_1" + } + ] + }, + { + "id": "fallhaven_warden_12", + "message": "Ciao ragazzo, grazie per l'idromele, non ho ancora avuto il piacere di berlo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_5" + } + ] + }, + { + "id": "fallhaven_warden_20", + "message": "Veramente, avrebbero il coraggio di andare contro la guardia di Fallhaven? Hai qualche dettaglio sul loro piano?", + "replies": [ + { + "text": "Ho sentito che stanno progettando la sua fuga stasera.", + "nextPhraseID": "fallhaven_warden_21" + }, + { + "text": "No, vi stavo prendendo in giro. Non importa.", + "nextPhraseID": "X" + }, + { + "text": "A pensarci bene, meglio non disturbare i ladri della gilda. Fate finta che io non abbia detto nulla.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_warden_21", + "message": "Stasera? Grazie per l'informazione. Faremo in modo di aumentare la sicurezza, ma in modo tale che non se ne accorgano.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_22" + } + ] + }, + { + "id": "fallhaven_warden_22", + "message": "Quando decideranno di farlo evadere saremo preparati. E forse riusciremo ad arrestare molti di quegli sporchi ladri.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_23" + } + ] + }, + { + "id": "fallhaven_warden_23", + "message": "Grazie ancora per le informazioni. Anche se non sono sicuro di come tu ne sia venuto a conoscenza, apprezzo molto quello che mi stai dicendo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_24" + } + ] + }, + { + "id": "fallhaven_warden_24", + "message": "Voglio che tu faccia un'ulteriore mossa e dica loro che avremo meno sicurezza per stasera, mentre di fatto l'aumenteremo. In questo modo possiamo veramente essere pronti.", + "replies": [ + { + "text": "Certo, posso farlo.", + "nextPhraseID": "fallhaven_warden_25" + } + ] + }, + { + "id": "fallhaven_warden_25", + "message": "Bene, torna da me quando hai riferito loro il messaggio!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 50 + } + ], + "replies": [ + { + "text": "ok.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_warden_30", + "message": "Ciao amico mio. Hai detto a quei ladri che stasera abbasseremo il livello di sicurezza?", + "replies": [ + { + "text": "Sì l'ho detto, non si aspetteranno una cosa del genere.", + "nextPhraseID": "fallhaven_warden_31" + }, + { + "text": "No non ancora, ci sto lavorando.", + "nextPhraseID": "fallhaven_warden_25" + } + ] + }, + { + "id": "fallhaven_warden_31", + "message": "Grande. Grazie per l'aiuto. Queste monete sono un segno dell'apprezzamento mio e delle altre guardie.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 90 + }, + { + "rewardType": 1, + "rewardID": "gold200" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_36" + } + ] + }, + { + "id": "fallhaven_warden_35", + "message": "Bentornato amico mio. Grazie per il tuo aiuto per aver trattato con i ladri.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_36" + } + ] + }, + { + "id": "fallhaven_warden_36", + "message": "Farò in modo di dire alle altre guardie come ci hai aiutato qui a Fallhaven", + "replies": [ + { + "text": "Vi ringrazio. Arrivederci.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_farrik.json b/AndorsTrail/res/raw-it/conversationlist_farrik.json new file mode 100644 index 000000000..5b87a8e61 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_farrik.json @@ -0,0 +1,401 @@ +[ + { + "id": "farrik_1", + "message": "Ciao. Ho sentito che ci hai aiutati a trovare la chiave di Luthor. Ottimo lavoro, è stato veramente utile.", + "replies": [ + { + "text": "Chi sei tu?", + "nextPhraseID": "farrik_2" + }, + { + "text": "Cosa mi puoi dire della gilda dei ladri?", + "nextPhraseID": "farrik_4" + } + ] + }, + { + "id": "farrik_2", + "message": "Sono Farrik, il fratello di Umar.", + "replies": [ + { + "text": "Cosa ci fai qua in giro?", + "nextPhraseID": "farrik_3" + }, + { + "text": "Cosa mi puoi dire della gilda dei ladri?", + "nextPhraseID": "farrik_4" + } + ] + }, + { + "id": "farrik_3", + "message": "Principalmente mi occupo degli scambi con altre gilde e tengo in ordine quello che serve ai ladri per essere cosi efficienti.", + "replies": [ + { + "text": "Cosa mi puoi dire della gilda dei ladri?", + "nextPhraseID": "farrik_4" + } + ] + }, + { + "id": "farrik_4", + "message": "Cerchiamo di stare per conto nostro il più possibile e aiutiamo gli altri compagni ladri più che possiamo.", + "replies": [ + { + "text": "E' successo qualcosa recentemente?", + "nextPhraseID": "farrik_5" + } + ] + }, + { + "id": "farrik_5", + "message": "A dire il vero c'è stato qualcosa poche settimane fa. Uno dei membri della gilda è stato arrestato per violazione della proprietà.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_6" + } + ] + }, + { + "id": "farrik_6", + "message": "La guardia di pattuglia di Fallhaven ha iniziato ad essere veramente arrabbiata con noi ultimamente. Probabilmente perché siamo stati molto efficaci nelle nostre ultime missioni.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_7" + } + ] + }, + { + "id": "farrik_7", + "message": "La guardia di pattuglia quindi ha incrementato la sicurezza ultimamente arrivando ad arrestare uno dei nostri membri.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_8" + } + ] + }, + { + "id": "farrik_8", + "message": "E' attualmente rinchiuso nella prigione qui a Fallhaven, in attesa del trasferimento a Feygard.", + "replies": [ + { + "text": "Che cosa ha fatto?", + "nextPhraseID": "farrik_9" + } + ] + }, + { + "id": "farrik_9", + "message": "Oh, niente di grave. Stava cercando di entrare nelle catacombe al di sotto della chiesa di Fallhaven.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_10" + } + ] + }, + { + "id": "farrik_10", + "message": "Ma ora che ci hai aiutato con questa missione, suppongo che non avremo più la necessità di andare là sotto.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_11" + } + ] + }, + { + "id": "farrik_11", + "message": "Penso di potermi fidare di te su questo segreto. Stiamo organizzando una missione stanotte per farlo evadere dalla prigione.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 10 + } + ], + "replies": [ + { + "text": "Quelle guardie sembrano veramente irritanti.", + "nextPhraseID": "farrik_13" + }, + { + "text": "Dopo tutto, se lui non aveva il permesso di scendere là sotto, le guardie erano nel giusto ad arrestarlo.", + "nextPhraseID": "farrik_12" + } + ] + }, + { + "id": "farrik_12", + "message": "Certo, lo immagino. Ma per l'interesse della gilda, noi vorremmo avere un nostro amico libero piuttosto che imprigionato.", + "replies": [ + { + "text": "Forse potrei raccontare alle guardie che state organizzando l'evasione?", + "nextPhraseID": "farrik_15" + }, + { + "text": "Non preoccuparti, il tuo segreto per la sua liberazione è al sicuro.", + "nextPhraseID": "farrik_14" + }, + { + "text": "[Bugia] Non preoccuparti, il tuo segreto per la sua liberazione è al sicuro.", + "nextPhraseID": "farrik_14" + } + ] + }, + { + "id": "farrik_13", + "message": "Oh si, lo sono. Alla gente di solito non piacciono, non solo a noi della gilda.", + "replies": [ + { + "text": "C'è qualcosa che posso fare per aiutarti con le guardie?", + "nextPhraseID": "farrik_16" + } + ] + }, + { + "id": "farrik_14", + "message": "Grazie. Adesso per favore lasciami da solo." + }, + { + "id": "farrik_15", + "message": "Fai come vuoi, non ti crederebbero comunque.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 30 + } + ] + }, + { + "id": "farrik_16", + "message": "Sei sicuro di voler importunare le guardie? Se arriva loro la voce che sei coinvolto, potresti passare un sacco di guai.", + "replies": [ + { + "text": "Nessun problema, so badare a me stesso!", + "nextPhraseID": "farrik_18" + }, + { + "text": "Potrebbe esserci una ricompensa per questo in futuro. Ci sto.", + "nextPhraseID": "farrik_18" + }, + { + "text": "Mah, ripensandoci, forse dovrei rimanere fuori da questa faccenda.", + "nextPhraseID": "farrik_17" + } + ] + }, + { + "id": "farrik_17", + "message": "Certo, sta a te decidere.", + "replies": [ + { + "text": "Buona fortuna con la vostra missione.", + "nextPhraseID": "farrik_14" + }, + { + "text": "Forse potrei raccontare alle guardie che state organizzando l'evasione?", + "nextPhraseID": "farrik_15" + } + ] + }, + { + "id": "farrik_18", + "message": "Bene.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_19" + } + ] + }, + { + "id": "farrik_19", + "message": "Ok, questo è il piano. Il capitano delle guardie ha un piccolo problema col bere.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_20" + } + ] + }, + { + "id": "farrik_20", + "message": "Se noi riuscissimo a fornirgli un po' dell'idromele che prepariamo, dovremmo essere in grado di far uscire di nascosto il nostro amico di notte, quando il capitano sarà collassato per la sbronza.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_20a" + } + ] + }, + { + "id": "farrik_20a", + "message": "Il nostro cuoco ci aiuterà a preparare un'idromele speciale che lo metterà fuori uso per un po'.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_21" + } + ] + }, + { + "id": "farrik_21", + "message": "Probabilmente avrà bisogno di un'incoraggiamento a bere durante il servizio. Se questo dovesse fallire, potremmo provare a corromperlo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_22" + } + ] + }, + { + "id": "farrik_22", + "message": "Come ti sembra l'idea? Pensi di potercela fare?", + "replies": [ + { + "text": "Sicuro, sembra facile!", + "nextPhraseID": "farrik_23" + }, + { + "text": "Suona un po' pericoloso, penso di poter provare.", + "nextPhraseID": "farrik_23" + }, + { + "text": "No, mi sembra proprio una pessima idea, siete pazzi.", + "nextPhraseID": "farrik_17" + } + ] + }, + { + "id": "farrik_23", + "message": "Bene. Riferiscimi quando sarai riuscito a far bere al capitano l'idromele speciale preparato dal nostro cuoco.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 20 + } + ], + "replies": [ + { + "text": "Lo farò", + "nextPhraseID": "farrik_14" + } + ] + }, + { + "id": "farrik_return_1", + "message": "Sono contento di rivederti amico mio. Come procede la tua missione per ubriacare il capitano delle guardie?", + "replies": [ + { + "text": "Non l'ho ancora fatto, ma ci sto lavorando.", + "nextPhraseID": "farrik_23" + }, + { + "text": "[Bugia] E' fatto. Non dovrebbero esserci problemi per tutta la notte.", + "nextPhraseID": "farrik_26", + "requires": { + "progress": "farrik:50" + } + }, + { + "text": "E' fatto. Non dovrebbero esserci problemi per tutta la notte.", + "nextPhraseID": "farrik_24", + "requires": { + "progress": "farrik:60" + } + } + ] + }, + { + "id": "farrik_select_1", + "replies": [ + { + "nextPhraseID": "farrik_return_2", + "requires": { + "progress": "farrik:70" + } + }, + { + "nextPhraseID": "farrik_return_2", + "requires": { + "progress": "farrik:80" + } + }, + { + "nextPhraseID": "farrik_select_2" + } + ] + }, + { + "id": "farrik_select_2", + "replies": [ + { + "nextPhraseID": "farrik_return_1", + "requires": { + "progress": "farrik:20" + } + }, + { + "nextPhraseID": "farrik_1" + } + ] + }, + { + "id": "farrik_24", + "message": "Queste sono buone notizie! Ora dovremo essere in grado di far evadere il nostro amico dalla prigione stanotte. ", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 70 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_25" + } + ] + }, + { + "id": "farrik_25", + "message": "Grazie molte per il tuo aiuto amico. Prendi queste monete come segno di riconoscimento.", + "rewards": [ + { + "rewardType": 1, + "rewardID": "gold200" + } + ], + "replies": [ + { + "text": "Grazie. Arrivederci.", + "nextPhraseID": "X" + }, + { + "text": "Finalmente un po' d'oro.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "farrik_return_2", + "message": "Grazie per il tuo aiuto con il capitano delle guardie." + }, + { + "id": "farrik_26", + "message": "Come ci sei riuscito? Ben fatto. Hai tutta la mia riconoscenza, amico.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 80 + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_flagstone.json b/AndorsTrail/res/raw-it/conversationlist_flagstone.json new file mode 100644 index 000000000..a1ec48080 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_flagstone.json @@ -0,0 +1,586 @@ +[ + { + "id": "zombie1", + "message": "Cane freeescaaa!", + "replies": [ + { + "text": "Per l'Ombra, ti ucciderò!", + "nextPhraseID": "F" + }, + { + "text": "Bleah, chi sei tu? E cos'è questo odore?", + "nextPhraseID": "F" + } + ] + }, + { + "id": "prisoner1", + "message": "Nooo, non sarò imprigionato di nuovo!", + "replies": [ + { + "text": "Ma io non...", + "nextPhraseID": "F" + } + ] + }, + { + "id": "prisoner2", + "message": "Aaaa! Chi è là? Non voglio essere schiavo di nuovo!", + "replies": [ + { + "text": "Calmati, stavo solo...", + "nextPhraseID": "F" + } + ] + }, + { + "id": "flagstone_guard0", + "message": "Ah, un altro mortale. Preparati a diventare parte del mio esercito di non morti!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "flagstone", + "value": 31 + } + ], + "replies": [ + { + "text": "Che l'Ombra ti colga.", + "nextPhraseID": "F" + }, + { + "text": "Preparati a morire un'altra volta.", + "nextPhraseID": "F" + } + ] + }, + { + "id": "flagstone_guard1", + "message": "Muori mortale!", + "replies": [ + { + "text": "Che l'Ombra ti colga.", + "nextPhraseID": "F" + }, + { + "text": "Preparati ad incontrare la mia lama.", + "nextPhraseID": "F" + } + ] + }, + { + "id": "flagstone_guard2", + "message": "Come? Un mortale qui dentro che non è stato marchiato dal mio tocco?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "flagstone", + "value": 50 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_guard2_2" + } + ] + }, + { + "id": "flagstone_guard2_2", + "message": "Mmmmh..sembri morbido e delizioso, prenderai parte alla festa?", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_guard2_3" + } + ] + }, + { + "id": "flagstone_guard2_3", + "message": "Penso proprio di sì. Una volta che avrò finito con te, il mio esercito si riverserà fuori da Flagstone.", + "replies": [ + { + "text": "Per l'Ombra, devi essere fermato!", + "nextPhraseID": "F" + }, + { + "text": "No! Questa terra deve essere protetta dai non-morti!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "flagstone_sentry", + "replies": [ + { + "nextPhraseID": "flagstone_sentry_return4", + "requires": { + "progress": "flagstone:60" + } + }, + { + "nextPhraseID": "flagstone_sentry_return3", + "requires": { + "progress": "flagstone:40" + } + }, + { + "nextPhraseID": "flagstone_sentry_select0" + } + ] + }, + { + "id": "flagstone_sentry_select0", + "replies": [ + { + "nextPhraseID": "flagstone_sentry_return2", + "requires": { + "progress": "flagstone:30" + } + }, + { + "nextPhraseID": "flagstone_sentry_return1", + "requires": { + "progress": "flagstone:10" + } + }, + { + "nextPhraseID": "flagstone_sentry_1" + } + ] + }, + { + "id": "flagstone_sentry_1", + "message": "Alt! Chi va là? A nessuno è permesso di avvicinarsi a Flagstone.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_2" + } + ] + }, + { + "id": "flagstone_sentry_2", + "message": "Dovresti tornare indietro finchè puoi farlo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_3" + } + ] + }, + { + "id": "flagstone_sentry_3", + "message": "Flagstone è stata invasa da non-morti ed io sono di guardia per assicurare che non fuggano.", + "replies": [ + { + "text": "Potresti raccontarmi la storia di Flagstone?", + "nextPhraseID": "flagstone_sentry_4" + } + ] + }, + { + "id": "flagstone_sentry_4", + "message": "Flagstone è stata usata come prigione per i lavoratori in fuga da quando si è iniziato a scavare il monte Galmore.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_5" + } + ] + }, + { + "id": "flagstone_sentry_5", + "message": "Ma una volta che gli scavi sono terminati, il campo di prigionia ha perso il suo scopo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_6" + } + ] + }, + { + "id": "flagstone_sentry_6", + "message": "Al Lord che governava a quel tempo non importava molto dei detenuti che erano a Flagstone, così li ha lasciati là.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_7" + } + ] + }, + { + "id": "flagstone_sentry_7", + "message": "Il guardiano del carcere che controllava Flagstone ha preso il suo lavoro molto seriamente tanto da continuare ad amministrare la prigione come quando gli scavi erano in attività.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_8" + } + ] + }, + { + "id": "flagstone_sentry_8", + "message": "Per anni non si hanno avuto notizie di Flagstone. Eccetto da alcuni viaggiatori che sentivano terribili urla e lamenti passando da queste strade.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_9" + } + ] + }, + { + "id": "flagstone_sentry_9", + "message": "Recentemente, ci sono stati dei cambiamenti di attività a Flagstone! Da allora i non-morti sono apparsi in gran numero.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_10" + } + ] + }, + { + "id": "flagstone_sentry_10", + "message": "Questa è la storia. Devo stare di guardia e fare in modo che i non morti non escano da Flagstone", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_11" + } + ] + }, + { + "id": "flagstone_sentry_11", + "message": "Quindi ti consiglio di andartene se non vuoi essere sopraffatto dai non morti.", + "replies": [ + { + "text": "Posso esplorare le rovine di Flagstone?", + "nextPhraseID": "flagstone_sentry_12" + }, + { + "text": "Ok, è meglio che me ne vada.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "flagstone_sentry_12", + "message": "Sei davvero sicuro di voler andare là? Beh ok, per me va bene.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_13" + } + ] + }, + { + "id": "flagstone_sentry_13", + "message": "Non ti fermerò ma non sentirò la tua mancanza se non tornerai.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_14" + } + ] + }, + { + "id": "flagstone_sentry_14", + "message": "Continua. Fammi sapere se c'è qualcosa che posso dirti per aiutarti.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_15" + } + ] + }, + { + "id": "flagstone_sentry_15", + "message": "Ritorna qui se hai bisogno di consigli.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "flagstone", + "value": 10 + } + ], + "replies": [ + { + "text": "Va bene, in caso di problemi tornerò da te.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "flagstone_sentry_return1", + "message": "Bentornato! sei stato a Flagstone? sono sorpreso che tu sia riuscito ad uscirne.", + "replies": [ + { + "text": "Ripeti", + "nextPhraseID": "flagstone_sentry_4" + }, + { + "text": "C'è un guardiano nei livelli inferiori di Flagstone al quale non ci si può avvicinare.", + "nextPhraseID": "flagstone_sentry_20", + "requires": { + "progress": "flagstone:20" + } + } + ] + }, + { + "id": "flagstone_sentry_20", + "message": "Un guardiano dici? Questa è una notizia preoccupante, significa che c'è una forza più grande dietro a tutto questo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_21" + } + ] + }, + { + "id": "flagstone_sentry_21", + "message": "Hai trovato il vecchio guardiano di Flagstone? Egli era solito portare sempre una collana con sè.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_22" + } + ] + }, + { + "id": "flagstone_sentry_22", + "message": "Era molto geloso con essa, forse la collana era una sorta di chiave.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_23" + } + ] + }, + { + "id": "flagstone_sentry_23", + "message": "Se riesci a recuperare la collana del guardiano, torna qui e ti aiuterò a decifrare i messaggi che potrebbero esserci sopra.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "flagstone", + "value": 30 + } + ], + "replies": [ + { + "text": "L'ho trovata, ecco.", + "nextPhraseID": "flagstone_sentry_40", + "requires": { + "item": { + "itemID": "necklace_flagstone", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Mi ripeti la storia del guardiano?", + "nextPhraseID": "flagstone_sentry_20" + }, + { + "text": "Ok, andrò a cercare il guardiano.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "flagstone_sentry_return2", + "message": "Chi si rivede. Hai trovato l'ex guardiano di Flagstone?", + "replies": [ + { + "text": "A proposito del guardiano...", + "nextPhraseID": "flagstone_sentry_23" + }, + { + "text": "Ripetimi ancora la storia.", + "nextPhraseID": "flagstone_sentry_3" + } + ] + }, + { + "id": "flagstone_sentry_40", + "message": "Hai trovato la collana?? Bene, portamela.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "flagstone", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_41" + } + ] + }, + { + "id": "flagstone_sentry_41", + "message": "Ora, vediamo qui. Ah sì, è come pensavo. La collana contiene una parola d'ordine.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_42" + } + ] + }, + { + "id": "flagstone_sentry_42", + "message": "'Ombra del sole', è questa la parola. Dovresti avvicinarti al guardiano con questa frase.", + "replies": [ + { + "text": "Lascia", + "nextPhraseID": "X" + } + ] + }, + { + "id": "flagstone_sentry_return3", + "message": "Bentornato. Come va la ricerca della fonte dei non morti?", + "replies": [ + { + "text": "Nessun progresso ancora.", + "nextPhraseID": "flagstone_sentry_43" + } + ] + }, + { + "id": "flagstone_sentry_43", + "message": "Beh, continua a cercare. Ritorna da me se hai bisogno di consigli." + }, + { + "id": "flagstone_sentry_return4", + "message": "Chi si rivede. Sembra che qualcosa sia accaduto dentro Flagstone che ha reso i non morti più deboli. Sono sicuro che devo ringraziare te per questo." + }, + { + "id": "narael", + "message": "Grazie per avermi liberato da questo mostro.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_select" + } + ] + }, + { + "id": "narael_select", + "replies": [ + { + "nextPhraseID": "narael_9", + "requires": { + "progress": "flagstone:60" + } + }, + { + "nextPhraseID": "narael_1" + } + ] + }, + { + "id": "narael_1", + "message": "Sono prigioniero qui da quasi un'eternità.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_2" + } + ] + }, + { + "id": "narael_2", + "message": "Oh, le cose che mi hanno fatto...Grazie mille per avermi liberato.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_3" + } + ] + }, + { + "id": "narael_3", + "message": "Una volta ero un cittadino di Nor City e lavoravo agli scavi di Monte Galmore.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_4" + } + ] + }, + { + "id": "narael_4", + "message": "Ma un giorno volli lasciare l'incarico per tornare da mia moglie.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_5" + } + ] + }, + { + "id": "narael_5", + "message": "L'ufficiale in carica non me lo permise, così mi inviarono prigioniero a Flagstone per aver disertato i lavori.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_6" + } + ] + }, + { + "id": "narael_6", + "message": "Se solo potessi vedere mia moglie ancora una volta. Ma non c'è più vita in me...Non ho nemmeno le forze di lasciare questo posto.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_7" + } + ] + }, + { + "id": "narael_7", + "message": "Credo che il mio destino sia di morire qui. Ma ora come un uomo libero, almeno.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_8" + } + ] + }, + { + "id": "narael_8", + "message": "Ora lasciami al mio destino, non ho la forza di andarmene.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "flagstone", + "value": 60 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_9" + } + ] + }, + { + "id": "narael_9", + "message": "Se cerchi mia moglie Taurum a Nor City, per favore dille che sto bene e che non l'ho dimenticata .", + "replies": [ + { + "text": "Lo farò, addio.", + "nextPhraseID": "X" + }, + { + "text": "Lo farò. Che l'Ombra sia con te.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_foamingflask.json b/AndorsTrail/res/raw-it/conversationlist_foamingflask.json new file mode 100644 index 000000000..59d794f87 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_foamingflask.json @@ -0,0 +1,247 @@ +[ + { + "id": "ff_cook_1", + "message": "Ciao, Hai bisogno di aiuto dalla cucina?", + "replies": [ + { + "text": "Certo, fammi vedere il cibo che hai in vendita.", + "nextPhraseID": "ff_cook_3" + }, + { + "text": "Che odore orribile, ma cosa stai cucinando?", + "nextPhraseID": "ff_cook_2" + }, + { + "text": "Questo odore è sublime, cosa stai cucinando?", + "nextPhraseID": "ff_cook_2" + } + ] + }, + { + "id": "ff_cook_2", + "message": "Oh, questo? Dovrebbe essere uno stufato di cane rabbioso. Credo abbia bisogno di cuocere ancora un po'.", + "replies": [ + { + "text": "Sono curioso di assaggiarlo quando è pronto, per ora buon lavoro.", + "nextPhraseID": "X" + }, + { + "text": "Che schifo, sembra terribile. Si può veramente mangiare una cosa del genere? Ciao.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "ff_cook_3", + "message": "No, purtroppo non ho alcun cibo da vendere. Vai a parlare con Torilo di là se vuoi qualche bevanda o cibo già pronto." + }, + { + "id": "torilo_1", + "message": "Benvenuto nella taverna Fiasco Schiumoso, accogliamo tutti i viaggiatori qui.", + "replies": [ + { + "text": "Grazie, sei il capo di questo posto?", + "nextPhraseID": "torilo_2" + }, + { + "text": "Hai visto un ragazzo chiamato Rincel qui intorno ultimamente?", + "nextPhraseID": "torilo_rincel_1", + "requires": { + "progress": "wrye:41" + } + } + ] + }, + { + "id": "torilo_2", + "message": "Io sono Torilo, il titolare di questa struttura. Puoi sederti nel posto che preferisci.", + "replies": [ + { + "text": "Posso vedere che cibi e bevande hai a disposizione?", + "nextPhraseID": "torilo_shop_1" + }, + { + "text": "Posso riposare da qualche parte?", + "nextPhraseID": "torilo_rest_select" + }, + { + "text": "Ma quelle guardie che urlano e gridano così tanto, fanno sempre così?", + "nextPhraseID": "torilo_guards_1" + } + ] + }, + { + "id": "torilo_default", + "message": "Desideri qualcos'altro?", + "replies": [ + { + "text": "Posso vedere che cibi e bevande hai a disposizione?", + "nextPhraseID": "torilo_shop_1" + }, + { + "text": "Ma quelle guardie che urlano e gridano così tanto, fanno sempre così?", + "nextPhraseID": "torilo_guards_1" + }, + { + "text": "Hai visto un ragazzo chiamato Rincel qui intorno ultimamente?", + "nextPhraseID": "torilo_rincel_1", + "requires": { + "progress": "wrye:41" + } + } + ] + }, + { + "id": "torilo_shop_1", + "message": "Certamente, abbiamo una vasta scelta fra cibi e bevande!", + "replies": [ + { + "text": "N", + "nextPhraseID": "S" + } + ] + }, + { + "id": "torilo_rest_select", + "replies": [ + { + "nextPhraseID": "torilo_rest_1", + "requires": { + "progress": "nondisplay:10" + } + }, + { + "nextPhraseID": "torilo_rest_3" + } + ] + }, + { + "id": "torilo_rest_1", + "message": "Certo, hai già affittato la stanza sul retro.", + "replies": [ + { + "text": "N", + "nextPhraseID": "torilo_rest_2" + } + ] + }, + { + "id": "torilo_rest_2", + "message": "Ti prego, sentiti libero di usarla come più ti aggrada. Spero solo tu riesca a dormire con tutte queste guardie che cantano a squarciagola le loro canzoni.", + "replies": [ + { + "text": "Grazie.", + "nextPhraseID": "torilo_default" + } + ] + }, + { + "id": "torilo_rest_3", + "message": "Oh, certo. Abbiamo una stanza molto confortevole sul retro, qui alla taverna Fiasco Schiumoso.", + "replies": [ + { + "text": "N", + "nextPhraseID": "torilo_rest_4" + } + ] + }, + { + "id": "torilo_rest_4", + "message": "Disponibile per sole 250 monete d'oro. Poi puoi restare quanto vuoi!", + "replies": [ + { + "text": "250 monete d'oro? Certo, non sono niente per me, ecco, tieni.", + "nextPhraseID": "torilo_rest_6", + "requires": { + "item": { + "itemID": "gold", + "quantity": 250, + "requireType": 0 + } + } + }, + { + "text": "250 monete d'oro sono molte, ma credo che ne valga la pena. Ecco, tieni.", + "nextPhraseID": "torilo_rest_6", + "requires": { + "item": { + "itemID": "gold", + "quantity": 250, + "requireType": 0 + } + } + }, + { + "text": "Acc... è un po troppo per me.", + "nextPhraseID": "torilo_rest_5" + } + ] + }, + { + "id": "torilo_rest_5", + "message": "Oh come vuoi, sei tu che ci perdi.", + "replies": [ + { + "text": "N", + "nextPhraseID": "torilo_default" + } + ] + }, + { + "id": "torilo_rest_6", + "message": "Grazie, la stanza ora è affittata per te.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nondisplay", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "torilo_rest_2" + } + ] + }, + { + "id": "torilo_rincel_1", + "message": "Rincel? No, non che io ricordi. In realtà, non vengono molti bambini qui. *risatina*.", + "replies": [ + { + "text": "N", + "nextPhraseID": "torilo_default" + } + ] + }, + { + "id": "torilo_guards_1", + "message": "Sigh, sì. Quelle guardie sono qua da parecchio tempo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "torilo_guards_2" + } + ] + }, + { + "id": "torilo_guards_2", + "message": "Sembrano essere alla ricerca di qualcosa o qualcuno, ma non so chi o cosa.", + "replies": [ + { + "text": "N", + "nextPhraseID": "torilo_guards_3" + } + ] + }, + { + "id": "torilo_guards_3", + "message": "Spero che l'Ombra vegli su di noi, in modo che non succeda nulla di male alla taverna Fiasco Schiumoso a causa loro.", + "replies": [ + { + "text": "N", + "nextPhraseID": "torilo_default" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_foamingflask_guards.json b/AndorsTrail/res/raw-it/conversationlist_foamingflask_guards.json new file mode 100644 index 000000000..6988babbd --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_foamingflask_guards.json @@ -0,0 +1,215 @@ +[ + { + "id": "ff_guard_1", + "message": "Ha ha, diglielo tu Garl!\n\n*rutta*", + "replies": [ + { + "text": "N", + "nextPhraseID": "ff_guard_2" + } + ] + }, + { + "id": "ff_guard_2", + "message": "Cantare, bere, combattere! Tutti coloro che si opporranno a Feygard cadranno!", + "replies": [ + { + "text": "N", + "nextPhraseID": "ff_guard_3" + } + ] + }, + { + "id": "ff_guard_3", + "message": "Noi rimarremo in piedi. Feygard, città della pace!", + "replies": [ + { + "text": "Farei meglio ad andarmene!", + "nextPhraseID": "X" + }, + { + "text": "Feygard, dove si trova?", + "nextPhraseID": "ff_guard_4" + }, + { + "text": "Hai visto un ragazzo di nome Rincel qui intorno di recente?", + "nextPhraseID": "ff_guard_rincel_1", + "requires": { + "progress": "wrye:41" + } + } + ] + }, + { + "id": "ff_guard_4", + "message": "Cosa, non hai mai sentito parlare di Feygard, ragazzo? Basta seguire la strada verso nord-ovest e vedrai la grande città di Feygard innalzarsi sopra le cime degli alberi.", + "replies": [ + { + "text": "Grazie, ciao.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "ff_guard_rincel_1", + "message": "Un ragazzo? A parte te non ho visto altri ragazzi qua in giro!", + "replies": [ + { + "text": "N", + "nextPhraseID": "ff_guard_rincel_2" + } + ] + }, + { + "id": "ff_guard_rincel_2", + "message": "Prova a chiedere al capitano, laggiù! E' qui da più tempo di noi!", + "replies": [ + { + "text": "Grazie, ciao.", + "nextPhraseID": "X" + }, + { + "text": "Grazie, che l'Ombra sia con te.", + "nextPhraseID": "ff_guard_shadow_1" + } + ] + }, + { + "id": "ff_guard_shadow_1", + "message": "Non nominare quella maledetta ombra qua dentro, ragazzo. Non vogliamo nulla di tutto questo. Ora vattene." + }, + { + "id": "ff_captain_1", + "message": "Ti sei perso, figliolo? Questo non è posto per un ragazzo come te.", + "replies": [ + { + "text": "Chi sei tu?", + "nextPhraseID": "ff_captain_vg_items_1", + "requires": { + "progress": "feygard_shipment:56", + "item": { + "itemID": "fg_ironsword_d", + "quantity": 10, + "requireType": 0 + } + } + }, + { + "text": "Hai visto un ragazzo di nome Rincel qui intorno di recente?", + "nextPhraseID": "ff_captain_fg_items_1", + "requires": { + "progress": "feygard_shipment:25", + "item": { + "itemID": "fg_ironsword", + "quantity": 10, + "requireType": 0 + } + } + }, + { + "text": "Who are you?", + "nextPhraseID": "ff_captain_2" + }, + { + "text": "Have you seen a boy called Rincel around here recently?", + "nextPhraseID": "ff_captain_rincel_1", + "requires": { + "progress": "wrye:41" + } + } + ] + }, + { + "id": "ff_captain_2", + "message": "Io sono il capitano di questa pattuglia di guardia. Veniamo dalla grande città di Feygard.", + "replies": [ + { + "text": "Feygard? E dov'è?", + "nextPhraseID": "ff_captain_4" + }, + { + "text": "Cosa fate da queste parti?", + "nextPhraseID": "ff_captain_3" + } + ] + }, + { + "id": "ff_captain_3", + "message": "Stiamo percorrendo la strada principale per assicurarsi che i mercanti e i viaggiatori siano al sicuro. E manteniamo la pace qui intorno.", + "replies": [ + { + "text": "Hai menzionato Feygard. Dov'è?", + "nextPhraseID": "ff_captain_4" + } + ] + }, + { + "id": "ff_captain_4", + "message": "La grandiosa città di Feygard è il più grande spettacolo che potrai mai vedere. Segui la strada a nord-ovest.", + "replies": [ + { + "text": "Grazie, che l'Ombra sia con te.", + "nextPhraseID": "ff_captain_shadow_1" + }, + { + "text": "Grazie, ciao.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "ff_captain_rincel_1", + "message": "C'era un ragazzo in giro qualche tempo fa.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ff_captain_rincel_2" + } + ] + }, + { + "id": "ff_captain_rincel_2", + "message": "Non ho mai parlato con lui, non so se è quello che stai cercando.", + "replies": [ + { + "text": "Ok, potrebbe essere una traccia che vale la pena verificare.", + "nextPhraseID": "ff_captain_rincel_3" + } + ] + }, + { + "id": "ff_captain_rincel_3", + "message": "Ho notato che andava verso Ovest, era appena uscito dalla taverna Fiasco Schiumoso.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "wrye", + "value": 42 + } + ], + "replies": [ + { + "text": "Ovest. Capito. Grazie per le informazioni.", + "nextPhraseID": "ff_captain_rincel_4" + } + ] + }, + { + "id": "ff_captain_rincel_4", + "message": "Sempre felice di aiutare. Qualsiasi cosa per la gloria di Feygard.", + "replies": [ + { + "text": "Che l'Ombra sia con te.", + "nextPhraseID": "ff_captain_shadow_1" + }, + { + "text": "Ciao.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "ff_captain_shadow_1", + "message": "L'Ombra? Non dirmi che credi in quella roba. Per la mia esperienza, solo i piantagrane parlano dell'Ombra." + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_foamingflask_outsideguard.json b/AndorsTrail/res/raw-it/conversationlist_foamingflask_outsideguard.json new file mode 100644 index 000000000..b1fe4a4a3 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_foamingflask_outsideguard.json @@ -0,0 +1,333 @@ +[ + { + "id": "ff_outsideguard_select", + "replies": [ + { + "nextPhraseID": "ff_outsideguard_trouble_24", + "requires": { + "progress": "jolnor:20" + } + }, + { + "nextPhraseID": "ff_outsideguard_1" + } + ] + }, + { + "id": "ff_outsideguard_1", + "message": "Ciao. Sei sicuro di dover venire qui? Questa è una taverna, sai. Il 'Fiasco Schiumoso' per essere precisi.", + "replies": [ + { + "text": "Chi sei tu?", + "nextPhraseID": "ff_outsideguard_2" + } + ] + }, + { + "id": "ff_outsideguard_2", + "message": "Sono un membro della pattuglia di guardie di Feygard.", + "replies": [ + { + "text": "Feygard, dov'è?", + "nextPhraseID": "ff_outsideguard_3" + }, + { + "text": "Cosa ci fai da queste parti?", + "nextPhraseID": "ff_outsideguard_3" + } + ] + }, + { + "id": "ff_outsideguard_3", + "message": "Vai a parlare con il capitano, io devo stare di guardia qui!", + "replies": [ + { + "text": "Ok. Ciao.", + "nextPhraseID": "X" + }, + { + "text": "Perché devi stare di guardia fuori di una taverna?", + "nextPhraseID": "ff_outsideguard_trouble_1", + "requires": { + "progress": "jolnor:10" + } + } + ] + }, + { + "id": "ff_outsideguard_trouble_1", + "message": "Davvero, non posso parlare con te, potrei finire nei guai.", + "replies": [ + { + "text": "Ok. Non ti disturberò più, che l'Ombra sia con te!", + "nextPhraseID": "ff_outsideguard_shadow_1" + }, + { + "text": "Ok. non ti disturberò più, ciao.", + "nextPhraseID": "X" + }, + { + "text": "Quali guai?", + "nextPhraseID": "ff_outsideguard_trouble_2" + } + ] + }, + { + "id": "ff_outsideguard_trouble_2", + "message": "No davvero, il capitano potrebbe vedermi. Devo essere vigile sul mio posto in ogni momento *sigh*", + "replies": [ + { + "text": "Ok. Non ti disturberò più, che l'Ombra sia con te.", + "nextPhraseID": "ff_outsideguard_shadow_1" + }, + { + "text": "Ok. Non ti disturberò ulteriormente, Ciao.", + "nextPhraseID": "X" + }, + { + "text": "Ti piace il tuo lavoro qui?", + "nextPhraseID": "ff_outsideguard_trouble_3" + } + ] + }, + { + "id": "ff_outsideguard_trouble_3", + "message": "Il mio lavoro? Credo che la guardia reale sia valida, voglio dire...Feygard è un posto molto bello in cui vivere.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ff_outsideguard_trouble_4" + } + ] + }, + { + "id": "ff_outsideguard_trouble_4", + "message": "Diciamo che fare la guardia qua in mezzo al nulla non è proprio quello che intendevo fare...", + "replies": [ + { + "text": "Ci credo. Questo posto è davvero noioso.", + "nextPhraseID": "ff_outsideguard_trouble_5" + }, + { + "text": "Ti stancherai molto a stare qui sempre in piedi.", + "nextPhraseID": "ff_outsideguard_trouble_5" + } + ] + }, + { + "id": "ff_outsideguard_trouble_5", + "message": "Si, molto. Preferirei essere dentro alla taverna a bere con gli altri e il capitano. Ma perché devo stare qui?", + "replies": [ + { + "text": "Almeno l'Ombra veglia su di te.", + "nextPhraseID": "ff_outsideguard_shadow_1" + }, + { + "text": "Perché non te ne vai se non è quello che vuoi fare?", + "nextPhraseID": "ff_outsideguard_trouble_7" + }, + { + "text": "La grande causa della guardia reale, ovvero mantenere la pace, sarà ben ricompensata a lungo termine.", + "nextPhraseID": "ff_outsideguard_trouble_6" + } + ] + }, + { + "id": "ff_outsideguard_trouble_6", + "message": "Sì, hai ragione, naturalmente. Il nostro dovere è quello di mantenere la pace.", + "replies": [ + { + "text": "Si, l'Ombra non guarda con favore chi disturba la pace.", + "nextPhraseID": "ff_outsideguard_shadow_1" + }, + { + "text": "Sì. I piantagrane dovrebbero essere puniti.", + "nextPhraseID": "ff_outsideguard_trouble_8" + } + ] + }, + { + "id": "ff_outsideguard_trouble_7", + "message": "No, io sono fedele alla causa di Feygard. Se me ne andassi, dovrei anche tradire la mia fedeltà.", + "replies": [ + { + "text": "Cosa significa questo se non sei soddisfatto di ciò che fai ?", + "nextPhraseID": "ff_outsideguard_trouble_9" + }, + { + "text": "Sì, mi sembra giusto. Feygard sembra un bel posto da quello che ho sentito.", + "nextPhraseID": "ff_outsideguard_trouble_6" + } + ] + }, + { + "id": "ff_outsideguard_trouble_8", + "message": "Bene. Mi piaci ragazzo. Potrei mettere una buona parola per te in caserma quando torneremo a Feygard, se vuoi.", + "replies": [ + { + "text": "Certo, mi sembra una buona idea.", + "nextPhraseID": "ff_outsideguard_trouble_20" + }, + { + "text": "No grazie, ho già tanto da fare...", + "nextPhraseID": "ff_outsideguard_trouble_20" + } + ] + }, + { + "id": "ff_outsideguard_trouble_9", + "message": "Beh, io sono convinto che si debbano seguire le leggi stabilite dai nostri governanti. Se non obbediamo alle leggi, che cosa ci rimane?", + "replies": [ + { + "text": "N", + "nextPhraseID": "ff_outsideguard_trouble_10" + } + ] + }, + { + "id": "ff_outsideguard_trouble_10", + "message": "Caos. Nessun ordine.\n\nNo, io preferisco il modo lecito di Feygard. La mia fedeltà è salda.", + "replies": [ + { + "text": "Si, ha senso quello che dici, le leggi sono fatte per essere rispettate.", + "nextPhraseID": "ff_outsideguard_trouble_8" + }, + { + "text": "Non sono d'accordo. Dobbiamo seguire il nostro cuore, anche se questo va contro le regole.", + "nextPhraseID": "ff_outsideguard_trouble_12" + } + ] + }, + { + "id": "ff_outsideguard_trouble_20", + "message": "C'era qualcos'altro che volevi?", + "replies": [ + { + "text": "Mi stavo chiedendo il motivo per cui fai la guardia qui.", + "nextPhraseID": "ff_outsideguard_trouble_21" + } + ] + }, + { + "id": "ff_outsideguard_trouble_12", + "message": "Questo mi disturba. Forse ci vedremo di nuovo in futuro. Ma la nostra prossima discussione potrebbe non essere piacevole." + }, + { + "id": "ff_outsideguard_trouble_21", + "message": "Giusto, stavamo divagando. Come ho detto, avrei preferito essere dentro seduto accanto al fuoco.", + "replies": [ + { + "text": "Potrei prendere il tuo posto se vuoi entrare.", + "nextPhraseID": "ff_outsideguard_trouble_23" + }, + { + "text": "Che sfortuna, pensare che tu sia qui mentre i tuoi compagni e il capitano sono dentro.", + "nextPhraseID": "ff_outsideguard_trouble_22" + } + ] + }, + { + "id": "ff_outsideguard_trouble_22", + "message": "Si, è la mia solita fortuna." + }, + { + "id": "ff_outsideguard_trouble_23", + "message": "Davvero? Sarebbe fantastico, almeno potrei prendere qualcosa da bere e scaldarmi un po' vicino al fuoco.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ff_outsideguard_trouble_24" + } + ] + }, + { + "id": "ff_outsideguard_trouble_24", + "message": "OK, allora entro un attimo. Stai qui a fare la guardia al posto mio finché non torno?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "jolnor", + "value": 20 + } + ], + "replies": [ + { + "text": "Certo, lo farò.", + "nextPhraseID": "ff_outsideguard_trouble_25" + }, + { + "text": "[Bugia] Certo, lo farò.", + "nextPhraseID": "ff_outsideguard_trouble_25" + } + ] + }, + { + "id": "ff_outsideguard_trouble_25", + "message": "Grazie mille, sei un amico." + }, + { + "id": "ff_outsideguard_shadow_1", + "message": "L'Ombra? Curioso che tu l'abbia menzionata. Spiegati!", + "replies": [ + { + "text": "Non volevo dire niente. Anzi, non ho detto niente.", + "nextPhraseID": "ff_outsideguard_shadow_2" + }, + { + "text": "L'Ombra veglia su di noi quando dormiamo.", + "nextPhraseID": "ff_outsideguard_shadow_3" + } + ] + }, + { + "id": "ff_outsideguard_shadow_2", + "message": "Bene, ora vattene prima di costringermi a fare i conti con te." + }, + { + "id": "ff_outsideguard_shadow_3", + "message": "Cosa? Sei uno di quei piantagrane mandati qui per sabotare la nostra missione?", + "replies": [ + { + "text": "L'Ombra ci protegge.", + "nextPhraseID": "ff_outsideguard_shadow_4" + }, + { + "text": "Bene. Meglio non iniziare una lotta con la guardia reale.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "ff_outsideguard_shadow_4", + "message": "Questo è troppo, è meglio che scappi ora oppure dovrai combattere.", + "replies": [ + { + "text": "Bene, aspettavo proprio un combattimento.", + "nextPhraseID": "ff_outsideguard_shadow_5" + }, + { + "text": "Per l'Ombra!", + "nextPhraseID": "ff_outsideguard_shadow_5" + }, + { + "text": "Non farci caso, stavo solo scherzando.", + "nextPhraseID": "ff_outsideguard_shadow_2" + } + ] + }, + { + "id": "ff_outsideguard_shadow_5", + "rewards": [ + { + "rewardType": 0, + "rewardID": "jolnor", + "value": 21 + } + ], + "replies": [ + { + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_jan.json b/AndorsTrail/res/raw-it/conversationlist_jan.json new file mode 100644 index 000000000..e0d4a831d --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_jan.json @@ -0,0 +1,350 @@ +[ + { + "id": "jan_start_select", + "replies": [ + { + "nextPhraseID": "jan_complete2", + "requires": { + "progress": "jan:100" + } + }, + { + "nextPhraseID": "jan_return", + "requires": { + "progress": "jan:10" + } + }, + { + "nextPhraseID": "jan_default" + } + ] + }, + { + "id": "jan_default", + "message": "Ciao ragazzo, ti prego di lasciarmi al mio lutto.", + "replies": [ + { + "text": "Che problema c'è?", + "nextPhraseID": "jan_default2" + }, + { + "text": "Te la senti di parlarne?", + "nextPhraseID": "jan_default2" + }, + { + "text": "Ok, ciao", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_default2", + "message": "Oh, è una cosa triste. Io davvero non voglio parlarne.", + "replies": [ + { + "text": "Per favore", + "nextPhraseID": "jan_default3" + }, + { + "text": "Ok, Ciao", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_default3", + "message": "Beh, forse posso parlartene. Mi sembri un bravo ragazzo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default4" + } + ] + }, + { + "id": "jan_default4", + "message": "Io, il mio amico Gandir e il suo amico Irogotu eravamo qui a scavare un buco. Avevamo sentito che c'era un tesoro nascosto quaggiù¹.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default5" + } + ] + }, + { + "id": "jan_default5", + "message": "Abbiamo iniziato a scavare, fino a raggiungere tutto il sistema di grotte sottostante. Solo allora abbiamo scoperto tutte quelle creature ed insetti.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default6" + } + ] + }, + { + "id": "jan_default6", + "message": "Oh, quelle creature, maledette. Mi hanno quasi ucciso.\n\nAbbiamo deciso di interrompere gli scavi mentre eravamo ancora in tempo", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default7" + } + ] + }, + { + "id": "jan_default7", + "message": "Ma Irogotu ha voluto continuare a scavare. Lui e Gandir dopo una discussione hanno cominciato a combattere.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default8" + } + ] + }, + { + "id": "jan_default8", + "message": "Questo è quanto è successo.\n\n*sob*\n\nOh, ma cosa abbiamo fatto???", + "replies": [ + { + "text": "Ti prego vai avanti", + "nextPhraseID": "jan_default9" + } + ] + }, + { + "id": "jan_default9", + "message": "Irogotu ha ucciso Gandir a mani nude. Si poteva vedere il fuoco nei suoi occhi. Sembrava quasi godere.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default10" + } + ] + }, + { + "id": "jan_default10", + "message": "Sono fuggito e non ho più osato andare laggiù¹ a causa di quelle creature e di Irogotu stesso.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default11" + } + ] + }, + { + "id": "jan_default11", + "message": "Oh maledetto Irogotu. Se solo potessi arrivare a lui. Mi piacerebbe fargliela pagare.", + "replies": [ + { + "text": "Pensi che ti possa aiutare in qualche modo?", + "nextPhraseID": "jan_default11_1" + } + ] + }, + { + "id": "jan_default11_1", + "message": "Pensi di potermi aiutare?", + "replies": [ + { + "text": "Ok, potrei guadagnarci qualcosa", + "nextPhraseID": "jan_default12" + }, + { + "text": "Si, Irogotu deve pagare per ciò che ha fatto", + "nextPhraseID": "jan_default12" + }, + { + "text": "No grazie, preferirei non essere coinvolto in questa faccenda. Suona pericolosa.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_default12", + "message": "Davvero? Pensi di potermi aiutare? Hm, forse si potresti. Fai attenzione però, questi animali sono veramente tosti.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "jan", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default13" + } + ] + }, + { + "id": "jan_default13", + "message": "Se mi vuoi veramente aiutare, vai a cercare Irogotu giù nella grotta e fammi riavere l'anello di Gandir.", + "replies": [ + { + "text": "Certo", + "nextPhraseID": "jan_default14" + }, + { + "text": "Ripeti", + "nextPhraseID": "jan_background" + }, + { + "text": "Ciao", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_default14", + "message": "Ritorna da me quando hai fatto. Portami l'anello di Gandir.", + "replies": [ + { + "text": "Ok, ciao", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_return", + "message": "Ciao ragazzo. Hai già trovato Irogotu nella grotta?", + "replies": [ + { + "text": "Non ancora", + "nextPhraseID": "jan_default14" + }, + { + "text": "Ripeti", + "nextPhraseID": "jan_background" + }, + { + "text": "Si", + "nextPhraseID": "jan_complete", + "requires": { + "item": { + "itemID": "ring_gandir", + "quantity": 1, + "requireType": 0 + } + } + } + ] + }, + { + "id": "jan_background", + "message": "Non hai ascoltato la prima volta che ti ho raccontato la storia? Devo veramente ripeterla dall'inizio?", + "replies": [ + { + "text": "Si", + "nextPhraseID": "jan_default3" + }, + { + "text": "No", + "nextPhraseID": "jan_default4" + }, + { + "text": "No, non importa, ora la ricordo.", + "nextPhraseID": "jan_default14" + } + ] + }, + { + "id": "jan_complete2", + "message": "Grazie per aver affrontato Irogotu! Ti sarò sempre riconoscente.", + "replies": [ + { + "text": "Ciao", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_complete", + "message": "A-a-aspetta...cooosa? Sei andato là sotto e sei tornato vivo? Come ci sei riuscito? Wow, sono quasi morto scendendo laggiù.\n\nOh ti ringrazio tanto per avermi riportato l'anello di Gandir! Ora ho qualcosa per ricordarmi di lui.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "jan", + "value": 100 + } + ], + "replies": [ + { + "text": "Felice di averti aiutato, addio.", + "nextPhraseID": "X" + }, + { + "text": "L'Ombra sia con te, addio.", + "nextPhraseID": "X" + }, + { + "text": "Sì sì certo, l'ho fatto solo per la ricompensa.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "irogotu", + "message": "Ecco un altro avventuriero. Questa è la mia caverna, il tesoro sarà mio!", + "replies": [ + { + "text": "Hai ucciso tu Gandir?", + "nextPhraseID": "irogotu1", + "requires": { + "progress": "jan:10" + } + } + ] + }, + { + "id": "irogotu1", + "message": "Quel marmoccchio di Gandir? Si è messo sulla mia strada. L'ho semplicemente usato per scavare più a fondo nella grotta.", + "replies": [ + { + "text": "N", + "nextPhraseID": "irogotu2" + } + ] + }, + { + "id": "irogotu2", + "message": "Inoltre, non mi era mai piaciuto.", + "replies": [ + { + "text": "Anello", + "nextPhraseID": "irogotu3" + }, + { + "text": "Jan ha detto qualcosa riguardo ad un anello?", + "nextPhraseID": "irogotu3" + } + ] + }, + { + "id": "irogotu3", + "message": "No, non puoi averlo. E' mio!! E chi sei, ragazzo, per scendere quaggiù a disturbarmi?!", + "replies": [ + { + "text": "Non sono più un ragazzo! Dammi quell'anello.", + "nextPhraseID": "irogotu4" + }, + { + "text": "Dammi quell'anello e potremo uscire di qui entrambi vivi.", + "nextPhraseID": "irogotu4" + } + ] + }, + { + "id": "irogotu4", + "message": "No, se lo vuoi devi prenderlo con la forza. E devo dirti che i miei poteri sono grandi. Inoltre, probabilmente non avresti osato combattere contro di me.", + "replies": [ + { + "text": "Molto bene, ora vedremo chi ci lascerà la pelle!", + "nextPhraseID": "F" + }, + { + "text": "Per l'Ombra! Gandir sarà vendicato.", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_jolnor.json b/AndorsTrail/res/raw-it/conversationlist_jolnor.json new file mode 100644 index 000000000..6160dee0b --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_jolnor.json @@ -0,0 +1,598 @@ +[ + { + "id": "jolnor_select_1", + "replies": [ + { + "nextPhraseID": "jolnor_default_3", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "jolnor_default_2", + "requires": { + "progress": "vilegard:20" + } + }, + { + "nextPhraseID": "jolnor_default" + } + ] + }, + { + "id": "jolnor_default", + "message": "Cammina con l'Ombra figlio mio.", + "replies": [ + { + "text": "Cos'è questo posto?", + "nextPhraseID": "jolnor_chapel_1" + }, + { + "text": "Mi è stato detto di parlare con te e chiederti perché tutti a Vilegard sono così sospettosi verso i forestieri.", + "nextPhraseID": "jolnor_suspicious_1", + "requires": { + "progress": "vilegard:10" + } + } + ] + }, + { + "id": "jolnor_default_2", + "message": "Cammina con l'Ombra figlio mio.", + "replies": [ + { + "text": "Puoi spiegarmi di nuovo che cos'è questo luogo?", + "nextPhraseID": "jolnor_chapel_1" + }, + { + "text": "Parliamo delle missioni che devo compiere per guadagnarmi la vostra fiducia.", + "nextPhraseID": "jolnor_quests_1" + }, + { + "text": "Ho bisogno di pozioni di guarigione, posso vedere cosa hai a disposizione?", + "nextPhraseID": "jolnor_shop_1" + } + ] + }, + { + "id": "jolnor_default_3", + "message": "Cammina con l'Ombra amico mio.", + "replies": [ + { + "text": "Puoi spiegarmi di nuovo che cos'è questo luogo?", + "nextPhraseID": "jolnor_chapel_1" + }, + { + "text": "Ho bisogno di pozioni di guarigione, posso vedere cosa hai a disposizione?", + "nextPhraseID": "jolnor_shop_1" + } + ] + }, + { + "id": "jolnor_chapel_1", + "message": "Questo è il nostro luogo di culto per l'Ombra. Lodiamo l'Ombra in tutta la sua potenza e gloria.", + "replies": [ + { + "text": "Cosa puoi dirmi riguardo l'Ombra?", + "nextPhraseID": "jolnor_shadow_1" + }, + { + "text": "Ho bisogno di pozioni di guarigione, posso vedere cosa hai a disposizione?", + "nextPhraseID": "jolnor_shop_1" + }, + { + "text": "Oh, come vuoi...basta che mi mostri la tua merce.", + "nextPhraseID": "jolnor_shop_1" + } + ] + }, + { + "id": "jolnor_shadow_1", + "message": "L'Ombra ci protegge dai pericoli della notte. Ci mantiene al sicuro e ci protegge quando dormiamo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_select_1" + } + ] + }, + { + "id": "jolnor_shop_1", + "replies": [ + { + "nextPhraseID": "S", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "jolnor_shop_2" + } + ] + }, + { + "id": "jolnor_shop_2", + "message": "Non mi fido ancora abbastanza per mercanteggiare con te.", + "replies": [ + { + "text": "Perché sei ancora sospettoso?", + "nextPhraseID": "jolnor_suspicious_1" + }, + { + "text": "Molto bene.", + "nextPhraseID": "jolnor_select_1" + } + ] + }, + { + "id": "jolnor_suspicious_1", + "message": "Sospetto? No, non lo definirei sospetto. Preferisco chiamarlo 'Cautela', facciamo molta attenzione al giorno d'oggi.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_suspicious_2" + } + ] + }, + { + "id": "jolnor_suspicious_2", + "message": "Per ottenere la nostra fiducia, un forestiero deve dimostrarci di non essere qui per creare problemi.", + "replies": [ + { + "text": "Sembra una buona idea. Ci sono un sacco di persone egoiste là fuori.", + "nextPhraseID": "jolnor_suspicious_3" + }, + { + "text": "Sembra una cosa inutile. Perché non fidarsi delle persone a prescindere?", + "nextPhraseID": "jolnor_suspicious_4" + } + ] + }, + { + "id": "jolnor_suspicious_3", + "message": "Si, giusto. Vedo che hai colto nel segno, mi piace.", + "replies": [ + { + "text": "C'è qualcosa che posso fare per guadagnare la vostra fiducia?", + "nextPhraseID": "jolnor_gaintrust_select" + } + ] + }, + { + "id": "jolnor_suspicious_4", + "message": "La storia ci insegna a diffidare dei forestieri. Perché dovremmo fidarci di te?", + "replies": [ + { + "text": "Che cosa posso fare per guadagnare la vostra fiducia?", + "nextPhraseID": "jolnor_gaintrust_select" + }, + { + "text": "Forse hai ragione, probabilmente fai bene a non fidarti di me.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jolnor_gaintrust_select", + "replies": [ + { + "nextPhraseID": "jolnor_gaintrust_return_2", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "jolnor_gaintrust_return", + "requires": { + "progress": "vilegard:20" + } + }, + { + "nextPhraseID": "jolnor_gaintrust_1" + } + ] + }, + { + "id": "jolnor_gaintrust_return_2", + "message": "Con il tuo aiuto, ti sei già guadagnato la nostra fiducia.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_default_3" + } + ] + }, + { + "id": "jolnor_gaintrust_return", + "message": "Come ho detto prima, bisogna guadagnarsi la nostra fiducia.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_quests_1" + } + ] + }, + { + "id": "jolnor_gaintrust_1", + "message": "In cambio di un piccolo favore potremmo pensare di fidarci di te. Ci sono tre persone importanti a Vilegard che ritengo tu debba aiutare.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_gaintrust_2" + } + ] + }, + { + "id": "jolnor_gaintrust_2", + "message": "In primo luogo, vi è Kaori. Vive nella parte settentrionale di Vilegard. Chiedi a lei se ha bisogno di aiuto.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kaori", + "value": 5 + } + ], + "replies": [ + { + "text": "Ok, parlerò con Kaori, ci vado subito.", + "nextPhraseID": "jolnor_gaintrust_3" + } + ] + }, + { + "id": "jolnor_gaintrust_3", + "message": "Poi c'è Wrye. Anche lei vive nella parte settentrionale di Vilegard. Molte persone chiedono la sua consulenza.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_gaintrust_4" + } + ] + }, + { + "id": "jolnor_gaintrust_4", + "message": "Recentemente ha perso suo figlio in modo tragico. Se riesci a guadagnare la sua fiducia, avrai un forte alleato.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "wrye", + "value": 10 + } + ], + "replies": [ + { + "text": "Parlerò con Wrye.", + "nextPhraseID": "jolnor_gaintrust_5" + } + ] + }, + { + "id": "jolnor_gaintrust_5", + "message": "E ultimo ma non meno importante, anch'io ho un favore da chiederti.", + "replies": [ + { + "text": "Che genere di favore?", + "nextPhraseID": "jolnor_gaintrust_6" + } + ] + }, + { + "id": "jolnor_gaintrust_6", + "message": "A nord di Vilegard c'è una taverna chiamata Fiasco Schiumoso. Questa taverna è a mio parere una stazione di guardia di Feygard.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_gaintrust_7" + } + ] + }, + { + "id": "jolnor_gaintrust_7", + "message": "La taverna è quasi sempre visitata dalla guardia reale di Lord Geomyr di Feygard.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_gaintrust_8" + } + ] + }, + { + "id": "jolnor_gaintrust_8", + "message": "Probabilmente stanno lì per spiarci, dato che siamo seguaci dell'Ombra. Lord Geomyr cerca sempre di renderci la vita difficile.", + "replies": [ + { + "text": "Sì, sembrano dei fomentatori di disordini.", + "nextPhraseID": "jolnor_gaintrust_9" + }, + { + "text": "Sono sicuro che hanno i loro motivi per fare quello che fanno.", + "nextPhraseID": "jolnor_gaintrust_10" + } + ] + }, + { + "id": "jolnor_gaintrust_9", + "message": "Infatti. Sono proprio dei seccatori.", + "replies": [ + { + "text": "Che cosa vuoi che faccia?", + "nextPhraseID": "jolnor_gaintrust_11" + } + ] + }, + { + "id": "jolnor_gaintrust_10", + "message": "Sì, le loro ragioni sono quelle di renderci la vita difficile.", + "replies": [ + { + "text": "Che cosa vuoi che faccia?", + "nextPhraseID": "jolnor_gaintrust_11" + } + ] + }, + { + "id": "jolnor_gaintrust_11", + "message": "I miei informatori dicono che c'è una guardia di stanza all'esterno della taverna per controllare eventuali pericoli.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_gaintrust_12" + } + ] + }, + { + "id": "jolnor_gaintrust_12", + "message": "Voglio che la guardia scompaia. Fai come meglio credi.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "jolnor", + "value": 10 + } + ], + "replies": [ + { + "text": "Non sono sicuro che dare fastidio alle guardie di pattuglia sia una buona idea. Questo potrebbe davvero mettermi nei guai.", + "nextPhraseID": "jolnor_gaintrust_13" + }, + { + "text": "Per l'Ombra, farò ciò che mi hai chiesto.", + "nextPhraseID": "jolnor_gaintrust_14" + }, + { + "text": "Ok, spero che questo sia vantaggioso per me.", + "nextPhraseID": "jolnor_gaintrust_14" + } + ] + }, + { + "id": "jolnor_gaintrust_13", + "message": "A te la scelta. Puoi almeno andare a vedere alla taverna se trovi nulla di sospetto?", + "replies": [ + { + "text": "Forse....", + "nextPhraseID": "jolnor_gaintrust_15" + } + ] + }, + { + "id": "jolnor_gaintrust_14", + "message": "Bene. Torna da me quando hai finito.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_gaintrust_15" + } + ] + }, + { + "id": "jolnor_gaintrust_15", + "message": "Quindi, per acquistare la nostra fiducia, ti suggerisco di aiutare Kaori, Wrye e me.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vilegard", + "value": 20 + } + ], + "replies": [ + { + "text": "Grazie per le informazioni. Tornerò quando avrò qualcosa da riferire.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jolnor_quests_1", + "message": "Ti suggerirei di aiutare Kaori, Wrye e me per guadagnarti la nostra fiducia.", + "replies": [ + { + "text": "Riguardo la guardia appostata fuori dalla taverna...", + "nextPhraseID": "jolnor_guard_select" + }, + { + "text": "A proposito di questi compiti...", + "nextPhraseID": "jolnor_quests_2" + }, + { + "text": "Non importa, torniamo agli altri argomenti!", + "nextPhraseID": "jolnor_select_1" + } + ] + }, + { + "id": "jolnor_quests_2", + "message": "Sì, qualcosa su di loro?", + "replies": [ + { + "text": "Mi ripeteresti cosa dovrei fare?", + "nextPhraseID": "jolnor_suspicious_2" + }, + { + "text": "Ho svolto tutti i compiti che mi hai chiesto di fare.", + "nextPhraseID": "jolnor_quests_select_1", + "requires": { + "progress": "jolnor:30" + } + }, + { + "text": "Non importa, torniamo agli altri argomenti!", + "nextPhraseID": "jolnor_select_1" + } + ] + }, + { + "id": "jolnor_guard_select", + "replies": [ + { + "nextPhraseID": "jolnor_guard_completed", + "requires": { + "progress": "jolnor:30" + } + }, + { + "nextPhraseID": "jolnor_guard_1" + } + ] + }, + { + "id": "jolnor_guard_1", + "message": "Si, riguardo a lui, hai trovato il modo di farlo sparire?", + "replies": [ + { + "text": "Si, lascerà il suo posto alla fine del turno di lavoro.", + "nextPhraseID": "jolnor_guard_2", + "requires": { + "progress": "jolnor:20" + } + }, + { + "text": "Si, se n'è andato.", + "nextPhraseID": "jolnor_guard_2", + "requires": { + "item": { + "itemID": "ffguard_qitem", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "No, ci sto ancora lavorando.", + "nextPhraseID": "jolnor_gaintrust_14" + } + ] + }, + { + "id": "jolnor_guard_completed", + "message": "Si, l'hai fatto sparire prima, grazie per l'aiuto.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_quests_1" + } + ] + }, + { + "id": "jolnor_guard_2", + "message": "Molto bene. Grazie per il tuo aiuto.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "jolnor", + "value": 30 + } + ], + "replies": [ + { + "text": "Nessun problema. Torniamo alle altre attività di cui abbiamo parlato.", + "nextPhraseID": "jolnor_quests_2" + } + ] + }, + { + "id": "jolnor_quests_select_1", + "replies": [ + { + "nextPhraseID": "jolnor_quests_select_2", + "requires": { + "progress": "kaori:20" + } + }, + { + "nextPhraseID": "jolnor_quests_kaori_1" + } + ] + }, + { + "id": "jolnor_quests_kaori_1", + "message": "Hai bisogno di aiuto per completare la missione di Kaori?", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_select_1" + } + ] + }, + { + "id": "jolnor_quests_select_2", + "replies": [ + { + "nextPhraseID": "jolnor_quests_completed", + "requires": { + "progress": "wrye:90" + } + }, + { + "nextPhraseID": "jolnor_quests_wrye_1" + } + ] + }, + { + "id": "jolnor_quests_wrye_1", + "message": "Hai bisogno di aiuto per completare la missione di Wrye?", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_select_1" + } + ] + }, + { + "id": "jolnor_quests_completed", + "message": "Bene, ci hai aiutati tutti e tre.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vilegard", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_quests_completed_2" + } + ] + }, + { + "id": "jolnor_quests_completed_2", + "message": "Ho testato la tua lealtà, ora siamo pronti a fidarci di te.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_quests_completed_3" + } + ] + }, + { + "id": "jolnor_quests_completed_3", + "message": "Hai la nostra gratitudine, amico. Troverai sempre rifugio qui a Vilegard. Ti diamo il benvenuto nel nostro paese.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_select_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_kaori.json b/AndorsTrail/res/raw-it/conversationlist_kaori.json new file mode 100644 index 000000000..6db41b85a --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_kaori.json @@ -0,0 +1,296 @@ +[ + { + "id": "kaori_start", + "replies": [ + { + "nextPhraseID": "kaori_default_1", + "requires": { + "progress": "kaori:20" + } + }, + { + "nextPhraseID": "kaori_return_1", + "requires": { + "progress": "kaori:10" + } + }, + { + "nextPhraseID": "kaori_1" + } + ] + }, + { + "id": "kaori_1", + "message": "Non sei benvenuto qui, sei pregato di andartene.", + "replies": [ + { + "text": "Perché qui a Vilegard siete così diffidenti verso i forestieri?", + "nextPhraseID": "kaori_2" + }, + { + "text": "Jolnor mi ha chiesto di parlare con te.", + "nextPhraseID": "kaori_3", + "requires": { + "progress": "kaori:5" + } + } + ] + }, + { + "id": "kaori_2", + "message": "Non voglio parlare con te. Vai a parlare con Jolnor nella cappella se vuoi aiutarci.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vilegard", + "value": 10 + } + ], + "replies": [ + { + "text": "Ok, ciao.", + "nextPhraseID": "X" + }, + { + "text": "Ok, non dirlo a me.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "kaori_3", + "message": "Hai fatto? Forse non sei così male come pensavo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaori_4" + } + ] + }, + { + "id": "kaori_4", + "message": "Non sono ancora convinta che tu non sia una spia mandata da Feygard per provocare guai.", + "replies": [ + { + "text": "Cosa mi puoi raccontare su Vilegard?", + "nextPhraseID": "kaori_trust_1" + }, + { + "text": "Ti posso assicurare che non sono una spia.", + "nextPhraseID": "kaori_5" + }, + { + "text": "Feygard? Dove o che cosa è?", + "nextPhraseID": "kaori_trust_1" + } + ] + }, + { + "id": "kaori_5", + "message": "Hm. Forse no. Però potresti esserlo. No, non sono ancora sicura.", + "replies": [ + { + "text": "C'è qualcosa che possa fare per guadagnare la tua fiducia?", + "nextPhraseID": "kaori_10" + }, + { + "text": "[corrompi] Che ne diresti di 100 monete d'oro? Potrebbero aiutarti a fidarti di me?", + "nextPhraseID": "kaori_bribe" + } + ] + }, + { + "id": "kaori_trust_1", + "message": "Non sono sicura di voler parlare di questo.", + "replies": [ + { + "text": "C'è qualcosa che possa fare per guadagnare la tua fiducia?", + "nextPhraseID": "kaori_10" + }, + { + "text": "[corrompi] Che ne diresti di 100 monete d'oro? Potrebbero aiutarti a fidarti di me?", + "nextPhraseID": "kaori_bribe" + } + ] + }, + { + "id": "kaori_bribe", + "message": "Stai cercando di corrompermi ragazzo? Non funziona con me. A che servirebbe avere il denaro se in realtà tu fossi una spia?", + "replies": [ + { + "text": "C'è qualcosa che possa fare per guadagnare la tua fiducia?", + "nextPhraseID": "kaori_10" + } + ] + }, + { + "id": "kaori_10", + "message": "Se davvero vuoi dimostrarmi di non essere una spia di Feygard, c'è qualcosa che potresti fare per me.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaori_11" + } + ] + }, + { + "id": "kaori_11", + "message": "Fino a poco tempo fa, usavamo una speciale pozione di ossa per la guarigione. Questa è una pozione di guarigione molto potente e può essere utilizzata per molti scopi.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaori_12" + } + ] + }, + { + "id": "kaori_12", + "message": "Ma adesso la pozione è stata bandita da Lord Geomyr e non se ne trova quasi più.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaori_13" + } + ] + }, + { + "id": "kaori_13", + "message": "Mi piacerebbe averne un po' di scorta. Se riesci a portarmi 10 pozioni di ossa potrei prendere in considerazione di iniziare a fidarmi di te.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kaori", + "value": 10 + } + ], + "replies": [ + { + "text": "Ok, troverò la pozione per te.", + "nextPhraseID": "kaori_14" + }, + { + "text": "No, se è vietata, molto probabilmente c'è una buona ragione. Forse è meglio non usarla.", + "nextPhraseID": "kaori_15" + }, + { + "text": "Ho già alcune pozioni d'ossa con me, puoi averle.", + "nextPhraseID": "kaori_20", + "requires": { + "item": { + "itemID": "bonemeal_potion", + "quantity": 10, + "requireType": 0 + } + } + } + ] + }, + { + "id": "kaori_return_1", + "message": "Bentornato, hai trovato le 10 pozioni d'ossa che ho chiesto?", + "replies": [ + { + "text": "No, le sto ancora cercando!", + "nextPhraseID": "kaori_14" + }, + { + "text": "Sì, ti ho portato le pozioni!", + "nextPhraseID": "kaori_20", + "requires": { + "item": { + "itemID": "bonemeal_potion", + "quantity": 10, + "requireType": 0 + } + } + }, + { + "text": "No, se è vietata, molto probabilmente c'è una buona ragione. Forse è meglio non usarla.", + "nextPhraseID": "kaori_15" + } + ] + }, + { + "id": "kaori_14", + "message": "Beh, sbrigati, mi servono veramente e al più presto!" + }, + { + "id": "kaori_15", + "message": "Bene, ora però vattene!" + }, + { + "id": "kaori_20", + "message": "Bene, dammele!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kaori", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "kaori_21" + } + ] + }, + { + "id": "kaori_21", + "message": "Sì, sembra la pozione giusta. Grazie molte ragazzo. Mmmh, forse, sì. Forse sei un bravo ragazzo, che l'Ombra vegli su di te.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaori_default_1" + } + ] + }, + { + "id": "kaori_default_1", + "message": "C'è qualcosa di cui vuoi parlarmi?", + "replies": [ + { + "text": "Cosa sai dirmi su Vilegard?", + "nextPhraseID": "kaori_vilegard_1" + }, + { + "text": "Perché a Vilegard tutti diffidano dei forestieri?", + "nextPhraseID": "kaori_vilegard_2" + } + ] + }, + { + "id": "kaori_vilegard_1", + "message": "Dovresti parlare con Erttu se vuoi sapere la storia di Vilegard. Vive da queste parti da più tempo di me.", + "replies": [ + { + "text": "Ok, lo farò.", + "nextPhraseID": "kaori_default_1" + } + ] + }, + { + "id": "kaori_vilegard_2", + "message": "In tutta la nostra storia ci sono persone arrivate qui a causare guai. Nel corso del tempo abbiamo imparato che tenere a noi stessi è la cosa migliore.", + "replies": [ + { + "text": "Mmh, sembra una buona idea.", + "nextPhraseID": "kaori_vilegard_3" + }, + { + "text": "Non mi convince molto.", + "nextPhraseID": "kaori_vilegard_3" + } + ] + }, + { + "id": "kaori_vilegard_3", + "message": "In ogni caso, è per questo che siamo così sospettosi verso i forestieri.", + "replies": [ + { + "text": "Me ne sono accorto!", + "nextPhraseID": "kaori_default_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_maelveon.json b/AndorsTrail/res/raw-it/conversationlist_maelveon.json new file mode 100644 index 000000000..f0dd15f57 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_maelveon.json @@ -0,0 +1,78 @@ +[ + { + "id": "maelveon", + "message": "[Percepisci una sensazione di formicolio lungo tutto il corpo non appena la spaventosa figura inizia a parlare.]", + "replies": [ + { + "text": "N", + "nextPhraseID": "maelveon_1" + } + ] + }, + { + "id": "maelveon_1", + "message": "L'Ombrrrrra ti prendeeeee.", + "replies": [ + { + "text": "N", + "nextPhraseID": "maelveon_2" + } + ] + }, + { + "id": "maelveon_2", + "message": "G.. argoyle Ombra.", + "replies": [ + { + "text": "N", + "nextPhraseID": "maelveon_3" + } + ] + }, + { + "id": "maelveon_3", + "message": "A.. bbandonati all'Ombrrrrra.", + "replies": [ + { + "text": "L'Ombra, cosa vuoi dire?", + "nextPhraseID": "maelveon_4" + }, + { + "text": "Muori, creatura malvagia!", + "nextPhraseID": "maelveon_4" + }, + { + "text": "Non soarò colpito da queste tue assurdità!", + "nextPhraseID": "maelveon_4" + } + ] + }, + { + "id": "maelveon_4", + "message": "[La figura solleva la mano e la punta verso di te]", + "replies": [ + { + "text": "N", + "nextPhraseID": "maelveon_5" + } + ] + }, + { + "id": "maelveon_5", + "message": "L'Ombrrrrra sia con te.", + "replies": [ + { + "text": "L'Ombra, cosa?", + "nextPhraseID": "F" + }, + { + "text": "Muori, creatura malvagia!", + "nextPhraseID": "F" + }, + { + "text": "Ti prego non farmi del male!", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_mikhail.json b/AndorsTrail/res/raw-it/conversationlist_mikhail.json new file mode 100644 index 000000000..e6e503511 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_mikhail.json @@ -0,0 +1,350 @@ +[ + { + "id": "mikhail_start_select", + "replies": [ + { + "nextPhraseID": "mikhail_start_select2", + "requires": { + "progress": "mikhail_bread:100" + } + }, + { + "nextPhraseID": "mikhail_bread_continue", + "requires": { + "progress": "mikhail_bread:10" + } + }, + { + "nextPhraseID": "mikhail_start_select2" + } + ] + }, + { + "id": "mikhail_start_select2", + "replies": [ + { + "nextPhraseID": "mikhail_start_select_default", + "requires": { + "progress": "mikhail_rats:100" + } + }, + { + "nextPhraseID": "mikhail_rats_continue", + "requires": { + "progress": "mikhail_rats:10" + } + }, + { + "nextPhraseID": "mikhail_start_select_default" + } + ] + }, + { + "id": "mikhail_start_select_default", + "replies": [ + { + "nextPhraseID": "mikhail_visited", + "requires": { + "progress": "andor:1" + } + }, + { + "nextPhraseID": "mikhail_gamestart" + } + ] + }, + { + "id": "mikhail_gamestart", + "message": "Oh bene, sei sveglio.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_visited" + } + ] + }, + { + "id": "mikhail_visited", + "message": "Non riesco a trovare tuo fratello da nessuna parte. Da quando ieri è uscito non è più tornato.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 1 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail3" + } + ] + }, + { + "id": "mikhail3", + "message": "Non preoccuparti, sarà sicuramente di ritorno presto.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_default", + "message": "Nient'altro? Come posso aiutarti?", + "replies": [ + { + "text": "Domande", + "nextPhraseID": "mikhail_tasks" + }, + { + "text": "Fratello", + "nextPhraseID": "mikhail_andor1" + } + ] + }, + { + "id": "mikhail_tasks", + "message": "Oh sì, ci sono alcune cose per cui ho bisogno di aiuto:", + "replies": [ + { + "text": "Pane", + "nextPhraseID": "mikhail_bread_select" + }, + { + "text": "Topo", + "nextPhraseID": "mikhail_rats_select" + }, + { + "text": "Indietro", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_andor1", + "message": "Come ho detto, Andor è uscito ieri e non è tornato. Sto iniziando a preoccuparmi per lui. Vorrei che tu andassi a cercare tuo fratello, mi ha detto che sarebbe stato via poco.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_andor2" + } + ] + }, + { + "id": "mikhail_andor2", + "message": "Forse è andato al magazzino ed è di nuovo rimasto bloccato. O forse si sta allenando nel seminterrato di Leta con quella nuova spada di legno. Per favore, vai a cercarlo in città .", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_bread_select", + "replies": [ + { + "nextPhraseID": "mikhail_bread_complete2", + "requires": { + "progress": "mikhail_bread:100" + } + }, + { + "nextPhraseID": "mikhail_bread_continue", + "requires": { + "progress": "mikhail_bread:10" + } + }, + { + "nextPhraseID": "mikhail_bread_start" + } + ] + }, + { + "id": "mikhail_bread_start", + "message": "Oh, quasi dimenticavo. Se hai tempo, fermati da Mara in municipio e comprami un pezzo di pane.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "mikhail_bread", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_bread_continue", + "message": "Hai preso il pane da Mara al municipio come ti avevo chiesto?", + "replies": [ + { + "text": "Fatto", + "nextPhraseID": "mikhail_bread_complete", + "requires": { + "item": { + "itemID": "bread", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Non ancora", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_bread_complete", + "message": "Grazie mille, ora posso fare colazione. Tieni, prendi queste monete per il tuo aiuto.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "mikhail_bread", + "value": 100 + }, + { + "rewardType": 1, + "rewardID": "gold20" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_bread_complete2", + "message": "Grazie per il pane.", + "replies": [ + { + "text": "Prego, è stato un piacere", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_rats_select", + "replies": [ + { + "nextPhraseID": "mikhail_rats_complete2", + "requires": { + "progress": "mikhail_rats:100" + } + }, + { + "nextPhraseID": "mikhail_rats_continue", + "requires": { + "progress": "mikhail_rats:10" + } + }, + { + "nextPhraseID": "mikhail_rats_start" + } + ] + }, + { + "id": "mikhail_rats_start", + "message": "Ho visto di nuovo dei topi fuori, nel giardino. Puoi andare in giardino a controllare? Se puoi uccidi tutti i topi che trovi.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "mikhail_rats", + "value": 10 + } + ], + "replies": [ + { + "text": "Fatto", + "nextPhraseID": "mikhail_rats_complete", + "requires": { + "item": { + "itemID": "tail_trainingrat", + "quantity": 2, + "requireType": 0 + } + } + }, + { + "text": "Certo", + "nextPhraseID": "mikhail_rats_start2" + } + ] + }, + { + "id": "mikhail_rats_start2", + "message": "Se i topi dovessero ferirti puoi tornare qui nel tuo letto. Questo ti consente di recuperare le forze.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_rats_start3" + } + ] + }, + { + "id": "mikhail_rats_start3", + "message": "Non dimenticare di controllare nel tuo inventario. Sicuramente hai ancora quell'anello che ti ho dato. Assicurati di indossarlo.", + "replies": [ + { + "text": "Ok", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_rats_continue", + "message": "Hai ucciso quei ratti nel nostro giardino?", + "replies": [ + { + "text": "Sì.", + "nextPhraseID": "mikhail_rats_complete", + "requires": { + "item": { + "itemID": "tail_trainingrat", + "quantity": 2, + "requireType": 0 + } + } + }, + { + "text": "Non ancora.", + "nextPhraseID": "mikhail_rats_start2" + } + ] + }, + { + "id": "mikhail_rats_complete", + "message": "Oh, l'hai fatto?! Se ti sei ferito, usa il tuo letto per riposare. Questo è un modo per recuperare le forze.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "mikhail_rats", + "value": 100 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_rats_complete2", + "message": "Grazie per il tuo aiuto con i topi. Se sei ferito, usa il letto per riposare. In questo modo potrai recuperare le forze.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_ogam.json b/AndorsTrail/res/raw-it/conversationlist_ogam.json new file mode 100644 index 000000000..df80bb35f --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_ogam.json @@ -0,0 +1,170 @@ +[ + { + "id": "ogam_1", + "message": "Fede. Potere. Sforzo.", + "replies": [ + { + "text": "Cosa?", + "nextPhraseID": "ogam_2" + }, + { + "text": "Mi hanno detto di parlare con te.", + "nextPhraseID": "ogam_2", + "requires": { + "progress": "lodar:15" + } + } + ] + }, + { + "id": "ogam_2", + "message": "Indietro è il fardello alto e basso", + "replies": [ + { + "text": "Cosa?", + "nextPhraseID": "ogam_3" + }, + { + "text": "Continua, ti prego.", + "nextPhraseID": "ogam_3" + }, + { + "text": "Sveglia? Umar della Gilda dei ladri di Fallhaven mi ha mandato a parlare con te.", + "nextPhraseID": "ogam_3", + "requires": { + "progress": "lodar:15" + } + } + ] + }, + { + "id": "ogam_3", + "message": "Nascondersi nell'Ombra.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ogam_4" + } + ] + }, + { + "id": "ogam_4", + "message": "Allo stesso modo, nel corpo e nella mente.", + "replies": [ + { + "text": "Hai intenzione di dire qualcosa di sensato?", + "nextPhraseID": "ogam_5" + }, + { + "text": "Cosa vuoi dire?", + "nextPhraseID": "ogam_5" + } + ] + }, + { + "id": "ogam_5", + "message": "L'ordinato e il caotico.", + "replies": [ + { + "text": "Ci sei? Sai come posso raggiungere il rifugio di Lodar?", + "nextPhraseID": "ogam_lodar_1", + "requires": { + "progress": "lodar:15" + } + }, + { + "text": "Non capisco.", + "nextPhraseID": "ogam_6" + } + ] + }, + { + "id": "ogam_lodar_1", + "message": "Lodar? Chiaro, fremente, ferito.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ogam_6" + } + ] + }, + { + "id": "ogam_6", + "message": "Si, la vera forma. Osserva.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ogam_7" + } + ] + }, + { + "id": "ogam_7", + "message": "Nascondersi nell'Ombra.", + "replies": [ + { + "text": "L'Ombra ?", + "nextPhraseID": "ogam_4" + }, + { + "text": "Ma ascolti quello che dico?", + "nextPhraseID": "ogam_4" + }, + { + "text": "Sveglia? Sai come posso raggiungere il rifugio di Lodar?", + "nextPhraseID": "ogam_lodar_2", + "requires": { + "progress": "lodar:15" + } + } + ] + }, + { + "id": "ogam_lodar_2", + "message": "Lodar, a metà strada fra l'Ombra e la luce. Formazioni rocciose.", + "replies": [ + { + "text": "OK, a metà strada tra due luoghi. Ci sono delle rocce?", + "nextPhraseID": "ogam_lodar_3" + }, + { + "text": "Uh. Potresti ripetere?", + "nextPhraseID": "ogam_lodar_3" + } + ] + }, + { + "id": "ogam_lodar_3", + "message": "Guardiano. Bagliore dell'Ombra.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "lodar", + "value": 20 + } + ], + "replies": [ + { + "text": "Bagliore dell'Ombra? Sono queste le parole da dire al guardiano?", + "nextPhraseID": "ogam_lodar_4" + }, + { + "text": "'Bagliore dell'Ombra'? Ho già sentito queste parole da qualche parte...", + "nextPhraseID": "ogam_lodar_4", + "requires": { + "progress": "bonemeal:30" + } + } + ] + }, + { + "id": "ogam_lodar_4", + "message": "Rovesciarsi, contorcersi, cancellare la forma.", + "replies": [ + { + "text": "Cosa significa?", + "nextPhraseID": "ogam_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_oluag.json b/AndorsTrail/res/raw-it/conversationlist_oluag.json new file mode 100644 index 000000000..dc26d68f1 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_oluag.json @@ -0,0 +1,272 @@ +[ + { + "id": "oluag_1", + "replies": [ + { + "nextPhraseID": "oluag_grave_16", + "requires": { + "progress": "wrye:80" + } + }, + { + "nextPhraseID": "oluag_1_1" + } + ] + }, + { + "id": "oluag_1_1", + "message": "Ciao. Io sono Oluag.", + "replies": [ + { + "text": "Cosa stai facendo vicino a queste casse?", + "nextPhraseID": "oluag_2" + } + ] + }, + { + "id": "oluag_2", + "message": "Oh queste. Non sono nulla. Dimenticale. E la tomba laggiùèe un'altra cosa di cui non ti devi preoccupare.", + "replies": [ + { + "text": "Quale tomba?", + "nextPhraseID": "oluag_grave_select" + }, + { + "text": "Niente, sul serio? Suona alquanto sospetto.", + "nextPhraseID": "oluag_boxes_1" + } + ] + }, + { + "id": "oluag_boxes_1", + "message": "No no, niente di sospetto sicuro. Non sono quel tipo di casse che contiene roba di contrabbando o cose simili, hah!", + "replies": [ + { + "text": "E allora riguardo a quella tomba?", + "nextPhraseID": "oluag_grave_select" + }, + { + "text": "Ok allora. Suppongo di non aver visto nulla.", + "nextPhraseID": "oluag_goodbye" + } + ] + }, + { + "id": "oluag_goodbye", + "message": "Giusto. Addio." + }, + { + "id": "oluag_grave_select", + "replies": [ + { + "nextPhraseID": "oluag_grave_return", + "requires": { + "progress": "wrye:80" + } + }, + { + "nextPhraseID": "oluag_grave_1" + } + ] + }, + { + "id": "oluag_grave_return", + "message": "Guarda, ti ho già raccontato la storia.", + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_5" + } + ] + }, + { + "id": "oluag_grave_1", + "message": "Sì. Allora c'è una tomba proprio laggiù. Giuro di non aver nulla a che fare con quella.", + "replies": [ + { + "text": "Niente? Davvero?", + "nextPhraseID": "oluag_grave_2" + }, + { + "text": "Ok allora. Suppongo che tu non abbia nulla a che fare con la tomba.", + "nextPhraseID": "oluag_goodbye" + } + ] + }, + { + "id": "oluag_grave_2", + "message": "Bene, quando dico 'niente', voglio dire niente. O al massimo solo un pochino.", + "replies": [ + { + "text": "Un pochino?", + "nextPhraseID": "oluag_grave_3" + } + ] + }, + { + "id": "oluag_grave_3", + "message": "Ok, allora forse ci ho avuto a che fare solo un pochino.", + "replies": [ + { + "text": "Ti conviene iniziare a parlare.", + "nextPhraseID": "oluag_grave_5" + }, + { + "text": "Cosa hai fatto?", + "nextPhraseID": "oluag_grave_5" + }, + { + "text": "Devo prenderti a calci nel sedere?", + "nextPhraseID": "oluag_grave_4" + } + ] + }, + { + "id": "oluag_grave_4", + "message": "Calma, calma. Non voglio altri combattimenti.", + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_5" + } + ] + }, + { + "id": "oluag_grave_5", + "message": "C'era questo ragazzo che ho scoperto. Era quasi morto dissanguato.", + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_6" + } + ] + }, + { + "id": "oluag_grave_6", + "message": "Sono riuscito a capire poche frasi prima che morisse.", + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_7" + } + ] + }, + { + "id": "oluag_grave_7", + "message": "Così l'ho sepolto laggiù in quella tomba.", + "replies": [ + { + "text": "Quali sono le ultime parole che gli hai sentito dire prima che morisse?", + "nextPhraseID": "oluag_grave_8" + } + ] + }, + { + "id": "oluag_grave_8", + "message": "Qualcosa riguardo Vilegard e Rincel può darsi? Non ho fatto molta attenzione, ero più interessato a quale bottino potesse avere con sè.", + "replies": [ + { + "text": "Dovrei andare a controllare quella tomba. Arrivederci.", + "nextPhraseID": "X" + }, + { + "text": "Rincel, era quel tipo? Da Vilegard? Il figlio smarrito di Wrye.", + "nextPhraseID": "oluag_grave_9", + "requires": { + "progress": "wrye:40" + } + } + ] + }, + { + "id": "oluag_grave_9", + "message": "Sì, potrebbe essere. Comunque, disse qualcosa a proposito di realizzare il sogno di vedere la fantastica città di Feygard.", + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_10" + } + ] + }, + { + "id": "oluag_grave_10", + "message": "E mi disse qualcosa sul fatto che non osava svelare il suo sogno a nessuno.", + "replies": [ + { + "text": "Forse non osava raccontarlo a Wrye?", + "nextPhraseID": "oluag_grave_11" + } + ] + }, + { + "id": "oluag_grave_11", + "message": "Sì esatto, probabilmente. Aveva preparato qui il suo campo per la notte, ma è stato attaccato da qualche mostro.", + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_12" + } + ] + }, + { + "id": "oluag_grave_12", + "message": "Apparentemente non era un buon combattente, per esempio, come me. Così i mostri erano troppo forti per lui e l'hanno ferito a morte la scorsa notte.", + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_13" + } + ] + }, + { + "id": "oluag_grave_13", + "message": "Sfortunatamente, devono aver preso anche tutto ciò che possedeva dal momento che non gli ho trovato nulla addosso.", + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_14" + } + ] + }, + { + "id": "oluag_grave_14", + "message": "Ho sentito il combattimento e sono riuscito ad arrivare da lui solo dopo che i mostri erano già fuggiti.", + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_15" + } + ] + }, + { + "id": "oluag_grave_15", + "message": "Così, pazienza. Adesso è sepolto laggiù. Possa riposare in pace.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "wrye", + "value": 80 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_16" + } + ] + }, + { + "id": "oluag_grave_16", + "message": "Ragazzo pidocchioso. Avrebbe potuto avere almeno qualche moneta, giusto per il disturbo.", + "replies": [ + { + "text": "Grazie per il racconto. Addio.", + "nextPhraseID": "oluag_goodbye" + }, + { + "text": "Grazie per il racconto. Che l'Ombra sia con te.", + "nextPhraseID": "oluag_goodbye" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_prim_arghest.json b/AndorsTrail/res/raw-it/conversationlist_prim_arghest.json new file mode 100644 index 000000000..1cb24862e --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_prim_arghest.json @@ -0,0 +1,308 @@ +[ + { + "id": "arghest_start", + "replies": [ + { + "nextPhraseID": "arghest_return_1", + "requires": { + "progress": "prim_innquest:40" + } + }, + { + "nextPhraseID": "arghest_return_2", + "requires": { + "progress": "prim_innquest:30" + } + }, + { + "nextPhraseID": "arghest_1" + } + ] + }, + { + "id": "arghest_1", + "message": "Ciao.", + "replies": [ + { + "text": "Cos'è questo posto?", + "nextPhraseID": "arghest_2" + }, + { + "text": "Chi sei tu?", + "nextPhraseID": "arghest_5" + }, + { + "text": "Hai affittato la stanza sul retro della locanda di Prim?", + "nextPhraseID": "arghest_8", + "requires": { + "progress": "prim_innquest:10" + } + } + ] + }, + { + "id": "arghest_2", + "message": "Questa è l'entrata della vecchia miniera di Prim.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arghest_3" + } + ] + }, + { + "id": "arghest_3", + "message": "Eravamo soliti scavare molto qui. Ma questo accadeva prima che cominciassero gli attacchi.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arghest_4" + } + ] + }, + { + "id": "arghest_4", + "message": "Gli attacchi contro Prim da parte delle bestie e dei banditi ci hanno ridotto di numero, ora non riusciamo più a mantenere attiva l'attività in miniera.", + "replies": [ + { + "text": "Chi sei tu?", + "nextPhraseID": "arghest_5" + } + ] + }, + { + "id": "arghest_5", + "message": "Io sono Arghest. Sorveglio l'entrata in modo che nessuno abbia accesso alla vecchia miniera.", + "replies": [ + { + "text": "Che cos'è questo posto?", + "nextPhraseID": "arghest_2" + }, + { + "text": "Posso entrare nella miniera?", + "nextPhraseID": "arghest_6" + } + ] + }, + { + "id": "arghest_6", + "message": "No, la miniera è chiusa.", + "replies": [ + { + "text": "OK, ciao.", + "nextPhraseID": "X" + }, + { + "text": "Per favore?", + "nextPhraseID": "arghest_7" + } + ] + }, + { + "id": "arghest_7", + "message": "Ho detto di no, I visitatori non sono ammessi.", + "replies": [ + { + "text": "Per piacere?", + "nextPhraseID": "arghest_6" + }, + { + "text": "Nemmeno una rapida occhiata?", + "nextPhraseID": "arghest_6" + } + ] + }, + { + "id": "arghest_return_1", + "message": "Bentornato, grazie per il tuo aiuto. Spero che il posto alla locanda ti sia utile.", + "replies": [ + { + "text": "Prego, ciao.", + "nextPhraseID": "X" + }, + { + "text": "Posso entrare nella miniera?", + "nextPhraseID": "arghest_6" + } + ] + }, + { + "id": "arghest_return_2", + "message": "Bentornato, hai portato le 5 bottiglie di latte che ti avevo chiesto?", + "replies": [ + { + "text": "No non ancora, ci sto lavorando.", + "nextPhraseID": "arghest_return_3" + }, + { + "text": "Sì, eccole, buon appetito!", + "nextPhraseID": "arghest_return_4", + "requires": { + "item": { + "itemID": "milk", + "quantity": 5, + "requireType": 0 + } + } + }, + { + "text": "Si, anche se mi sono costate una fortuna.", + "nextPhraseID": "arghest_return_4", + "requires": { + "item": { + "itemID": "milk", + "quantity": 5, + "requireType": 0 + } + } + } + ] + }, + { + "id": "arghest_return_3", + "message": "Va bene allora. Ritorna da me quando le avrai.", + "replies": [ + { + "text": "Lo farò. Ciao.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "arghest_return_4", + "message": "Grazie amico! Ora posso rifornire la mia scorta.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_innquest", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "arghest_return_5" + } + ] + }, + { + "id": "arghest_return_5", + "message": "Queste bottiglie hanno un ottimo aspetto. Ora sarò in grado di resistere ancora un po' qui dentro.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arghest_return_6" + } + ] + }, + { + "id": "arghest_return_6", + "message": "Oh, e per la stanza nella locanda - sei libero di usarla in qualsiasi momento. E' un posto veramente confortevole, se vuoi la mia opinione.", + "replies": [ + { + "text": "Grazie Arghest. Ciao.", + "nextPhraseID": "X" + }, + { + "text": "Finalmente, pensavo che non avrei mai potuto riposare qui!", + "nextPhraseID": "X" + } + ] + }, + { + "id": "arghest_8", + "message": "'Taverna di Prim' - sei buffo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arghest_9" + } + ] + }, + { + "id": "arghest_9", + "message": "Si, l'ho presa io in affitto, rimango lì a riposare a fine turno.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arghest_10" + } + ] + }, + { + "id": "arghest_10", + "message": "Tuttavia ora che noi guardie non siamo più così numerose come un tempo, è ormai un bel po' che non riposo alla taverna.", + "replies": [ + { + "text": "Pensi che io possa utilizzare la stanza alla locanda per riposare?", + "nextPhraseID": "arghest_11" + }, + { + "text": "Pensi di utilizzare ancora la stanza?", + "nextPhraseID": "arghest_11" + } + ] + }, + { + "id": "arghest_11", + "message": "Bene, vorrei avere ancora la possibilità di utilizzarla, ma credo sia giusto che anche altri possano riposare lì ora che non la sto utilizzando!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_innquest", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "arghest_12" + } + ] + }, + { + "id": "arghest_12", + "message": "Ti dico una cosa, se mi porti un po' di rifornimenti ti darò il permesso di utilizzare la stanza sebbene sia affittata a mio nome.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arghest_13" + } + ] + }, + { + "id": "arghest_13", + "message": "Ho un sacco di carne ma ho finito il latte alcune settimane fa. Pensi di potermene procurare un po'?", + "replies": [ + { + "text": "Certo, nessun problema. Ti farò avere delle bottiglie di latte. Quante ne vuoi?", + "nextPhraseID": "arghest_14" + }, + { + "text": "Certo, se poi mi permetterai di riposare qui. Vado subito.", + "nextPhraseID": "arghest_14" + } + ] + }, + { + "id": "arghest_14", + "message": "Portami 5 bottiglie di latte, dovrebbero bastare.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_innquest", + "value": 30 + } + ], + "replies": [ + { + "text": "Vado a comprarle.", + "nextPhraseID": "X" + }, + { + "text": "OK, vado e torno.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_prim_bjorgur.json b/AndorsTrail/res/raw-it/conversationlist_prim_bjorgur.json new file mode 100644 index 000000000..af70768eb --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_prim_bjorgur.json @@ -0,0 +1,209 @@ +[ + { + "id": "bjorgur_start", + "replies": [ + { + "nextPhraseID": "bjorgur_return_1", + "requires": { + "progress": "bjorgur_grave:50" + } + }, + { + "nextPhraseID": "bjorgur_return_2", + "requires": { + "progress": "bjorgur_grave:15" + } + }, + { + "nextPhraseID": "bjorgur_1" + } + ] + }, + { + "id": "bjorgur_return_1", + "message": "Ciao, ti ringrazio ancora per avermi aiutato con la faccenda della tomba della mia famiglia." + }, + { + "id": "bjorgur_return_2", + "message": "Ciao, hai scoperto se è successo qualcosa alla tomba della mia famiglia?", + "replies": [ + { + "text": "No, non ancora.", + "nextPhraseID": "bjorgur_9" + }, + { + "text": "(Menzogna) Sono andato a controllare, ma alla tomba sembra tutto normale, devi esserti sbagliato.", + "nextPhraseID": "bjorgur_return_3", + "requires": { + "progress": "bjorgur_grave:60" + } + }, + { + "text": "Cosa dovrei fare di nuovo?", + "nextPhraseID": "bjorgur_3" + }, + { + "text": "Sì, ho ucciso il ladro e ho rimesso a posto il pugnale.", + "nextPhraseID": "bjorgur_complete_1", + "requires": { + "progress": "bjorgur_grave:40" + } + } + ] + }, + { + "id": "bjorgur_1", + "message": "Ciao, non sai nulla di una tomba a Sud-Ovest di Prim vero?", + "replies": [ + { + "text": "Ci sono stato, ho incontrato qualcuno nei livelli più bassi.", + "nextPhraseID": "bjorgur_2", + "requires": { + "progress": "bjorgur_grave:30" + } + }, + { + "text": "Cosa mi puoi dire a proposito?", + "nextPhraseID": "bjorgur_3" + }, + { + "text": "No, mi spiace.", + "nextPhraseID": "bjorgur_3" + } + ] + }, + { + "id": "bjorgur_2", + "message": "Tu sei stato lì?", + "replies": [ + { + "text": "N", + "nextPhraseID": "bjorgur_3" + } + ] + }, + { + "id": "bjorgur_3", + "message": "La tomba della mia famiglia si trova a sud-ovest di Prim, proprio fuori dalla miniera di Elm. Temo che sia successo qualcosa là!", + "replies": [ + { + "text": "N", + "nextPhraseID": "bjorgur_4" + } + ] + }, + { + "id": "bjorgur_4", + "message": "Vedi, mio nonno era molto affezionato a un pugnale di molto valore che la nostra famiglia possedeva. Lo portava sempre con sè.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bjorgur_5" + } + ] + }, + { + "id": "bjorgur_5", + "message": "Il pugnale attirerebbe molti cacciatori di tesori, ma fino ad ora tutto è sempre stato tranquillo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bjorgur_6" + } + ] + }, + { + "id": "bjorgur_6", + "message": "Ora ho paura che sia successo qualcosa alla tomba, sono due notti che non riesco a dormire, e questa ne deve essere la causa.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bjorgur_grave", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "bjorgur_7" + } + ] + }, + { + "id": "bjorgur_7", + "message": "Andresti alla tomba per vedere che tutto sia a posto?", + "replies": [ + { + "text": "Certo, andrò a controllare che alla tomba sia tutto a posto.", + "nextPhraseID": "bjorgur_8" + }, + { + "text": "Un tesoro dici? Mi interessa.", + "nextPhraseID": "bjorgur_8" + }, + { + "text": "Sono già stato lì e ho rimesso il pugnale al suo posto.", + "nextPhraseID": "bjorgur_complete_2", + "requires": { + "progress": "bjorgur_grave:40" + } + } + ] + }, + { + "id": "bjorgur_8", + "message": "Grazie, vai a controllare alla tomba che tutto sia a posto, quella potrebbe essere la causa delle mie ansie notturne.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bjorgur_grave", + "value": 15 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "bjorgur_9" + } + ] + }, + { + "id": "bjorgur_return_3", + "message": "Non hai visto nulla? Eppure ero convinto che laggiù stesse succedendo qualcosa, in ogni caso, grazie per essere andato a controllare al posto mio." + }, + { + "id": "bjorgur_9", + "message": "Cerca di fare in fretta, torna qui quando scopri qualcosa." + }, + { + "id": "bjorgur_complete_1", + "message": "Un intruso? Grazie per aver sistemato la cosa.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bjorgur_complete_2" + } + ] + }, + { + "id": "bjorgur_complete_2", + "message": "Hai rimesso il pugnale nel suo posto originale? Grazie, ora sicuramente riuscirò a dormire la notte.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bjorgur_complete_3" + } + ] + }, + { + "id": "bjorgur_complete_3", + "message": "Grazie ancora, purtroppo non posso ricompensarti con nulla se non con la mia gratitudine. Dovresti andare a trovare i miei parenti a Feygard se ti capitasse di viaggiare fin là.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bjorgur_grave", + "value": 50 + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_prim_fulus.json b/AndorsTrail/res/raw-it/conversationlist_prim_fulus.json new file mode 100644 index 000000000..bf0c65276 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_prim_fulus.json @@ -0,0 +1,296 @@ +[ + { + "id": "bjorgur_bandit", + "message": "Hey tu! Non dovresti essere qui, questo pugnale è mio, vattene!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bjorgur_grave", + "value": 30 + } + ], + "replies": [ + { + "text": "Ok, me ne vado.", + "nextPhraseID": "X" + }, + { + "text": "Hei, quel pugnale è veramente bello.", + "nextPhraseID": "F" + } + ] + }, + { + "id": "sign_bwm35", + "replies": [ + { + "nextPhraseID": "sign_bwm35_1", + "requires": { + "progress": "bjorgur_grave:40" + } + }, + { + "nextPhraseID": "sign_bwm35_2" + } + ] + }, + { + "id": "sign_bwm35_1", + "message": "Si vedono i resti di un equipaggiamento arrugginito e del cuoio marcio." + }, + { + "id": "sign_bwm35_2", + "message": "Si vedono i resti di un equipaggiamento arrugginito e del cuoio marcio. Qualcosa sembra essere stato recentemente rimosso da qui dato che da una parte manca completamente la polvere.\n\nLa mancanza di polvere ha generato l'esatta forma di un pugnale. Ci deve essere stato un pugnale qui prima che qualcuno lo togliesse.", + "replies": [ + { + "text": "Rimetti il pugnale nel suo posto originale.", + "nextPhraseID": "sign_bwm35_3", + "requires": { + "item": { + "itemID": "bjorgur_dagger", + "quantity": 1, + "requireType": 0 + } + } + } + ] + }, + { + "id": "sign_bwm35_3", + "message": "Rimetti il pugnale tra l'equipaggiamento, dove sembrava essere prima.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bjorgur_grave", + "value": 40 + } + ] + }, + { + "id": "fulus_start", + "replies": [ + { + "nextPhraseID": "fulus_return_1", + "requires": { + "progress": "bjorgur_grave:60" + } + }, + { + "nextPhraseID": "fulus_return_3", + "requires": { + "progress": "bjorgur_grave:51" + } + }, + { + "nextPhraseID": "fulus_return_2", + "requires": { + "progress": "bjorgur_grave:20" + } + }, + { + "nextPhraseID": "fulus_1" + } + ] + }, + { + "id": "fulus_return_1", + "message": "Ciao, grazie ancora per avermi fatto ottenere quel pugnale prima." + }, + { + "id": "fulus_return_2", + "message": "Ciao, sei riuscito a recuperare il pugnale dalla tomba della famiglia di Bjorgur?", + "replies": [ + { + "text": "No, non ancora.", + "nextPhraseID": "fulus_9" + }, + { + "text": "Ho deciso di aiutare Bjorgur.", + "nextPhraseID": "fulus_return_3", + "requires": { + "progress": "bjorgur_grave:40" + } + }, + { + "text": "Cosa dovrei fare di nuovo?", + "nextPhraseID": "fulus_3" + }, + { + "text": "Si, ce l'ho.", + "nextPhraseID": "fulus_complete_1", + "requires": { + "item": { + "itemID": "bjorgur_dagger", + "quantity": 1, + "requireType": 0 + } + } + } + ] + }, + { + "id": "fulus_return_3", + "message": "Cosa?! Sigh. Stupido ragazzino, quel pugnale vale una fortuna, saremmo potuti diventare ricchi ti dico!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bjorgur_grave", + "value": 51 + } + ] + }, + { + "id": "fulus_1", + "message": "Ciao, sembri proprio il tipo giusto per me.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fulus_2" + } + ] + }, + { + "id": "fulus_complete_1", + "message": "Oh wow, sei già riuscito a prendere il pugnale? Grazie ragazzo, vale molto, prendi queste monete come ricompensa!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bjorgur_grave", + "value": 60 + }, + { + "rewardType": 1, + "rewardID": "fulus_reward" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "fulus_complete_2" + } + ] + }, + { + "id": "fulus_complete_2", + "message": "Grazie ancora. Ora, vediamo...a quanto riusciamo a vendere questo pugnale..." + }, + { + "id": "fulus_2", + "message": "Saresti interessato a una proposta di lavoro?", + "replies": [ + { + "text": "Certo, quale proposta?", + "nextPhraseID": "fulus_3" + }, + { + "text": "Se mi porta qualche guadagno, certo che mi interessa.", + "nextPhraseID": "fulus_3" + }, + { + "text": "Non credo che tu possa avere qualcosa di buono da offrirmi, comunque sentiamo...", + "nextPhraseID": "fulus_3" + } + ] + }, + { + "id": "fulus_3", + "message": "Qualche tempo fa, ho sentito di un certo pugnale che una famiglia era solita possedere qui a Prim.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fulus_4" + } + ] + }, + { + "id": "fulus_9", + "message": "Ora sbrigati. Ho bisogno di quel pugnale al più presto." + }, + { + "id": "fulus_4", + "message": "Questo pugnale è estremamente importante per me, per motivi personali.", + "replies": [ + { + "text": "Non mi piace questa storia, non voglio essere coinvolto nei tuoi loschi affari.", + "nextPhraseID": "fulus_5" + }, + { + "text": "Mi piace quello che sto sentendo, continua.", + "nextPhraseID": "fulus_6" + }, + { + "text": "Raccontami dell'altro.", + "nextPhraseID": "fulus_6" + }, + { + "text": "I have already helped Bjorgur return the dagger to its original place.", + "nextPhraseID": "fulus_return_3", + "requires": { + "progress": "bjorgur_grave:40" + } + } + ] + }, + { + "id": "fulus_5", + "message": "Bene. Fai come ti pare, Signor Perfettino." + }, + { + "id": "fulus_6", + "message": "La famiglia in questione è la famiglia di Bjorgur.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fulus_7" + } + ] + }, + { + "id": "fulus_7", + "message": "Ora, ho saputo che questo pugnale si trova nella loro tomba di famiglia, che è già stata aperta da altri...poco tempo fa.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fulus_8" + } + ] + }, + { + "id": "fulus_8", + "message": "Quello che chiedo è semplice, devi trovare il pugnale e portarmelo, e io ti ricompenserò.", + "replies": [ + { + "text": "Sembra abbastanza facile, ok, lo farò.", + "nextPhraseID": "fulus_10" + }, + { + "text": "No, ho di meglio da fare che rimanere coinvolto nei tuoi loschi tramacci.", + "nextPhraseID": "fulus_5" + }, + { + "text": "I have already helped Bjorgur return the dagger to its original place.", + "nextPhraseID": "fulus_return_3", + "requires": { + "progress": "bjorgur_grave:40" + } + } + ] + }, + { + "id": "fulus_10", + "message": "Bene, ritorna da me con il pugnale. Forse potresti anche parlare con Bjorgur per farti dare indicazioni su come raggiungere la tomba. La sua casa è proprio qui fuori a Prim. Solo ricorda di non dirgli nulla del nostro piano!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bjorgur_grave", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "fulus_9" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_prim_guthbered.json b/AndorsTrail/res/raw-it/conversationlist_prim_guthbered.json new file mode 100644 index 000000000..49d86f3a5 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_prim_guthbered.json @@ -0,0 +1,1150 @@ +[ + { + "id": "guthbered_start", + "replies": [ + { + "nextPhraseID": "guthbered_sentbybwm_leave", + "requires": { + "progress": "bwm_agent:131" + } + }, + { + "nextPhraseID": "guthbered_sentbybwm_fight", + "requires": { + "progress": "bwm_agent:130" + } + }, + { + "nextPhraseID": "guthbered_sentbybwm_1", + "requires": { + "progress": "bwm_agent:120" + } + }, + { + "nextPhraseID": "guthbered_reject", + "requires": { + "progress": "prim_hunt:251" + } + }, + { + "nextPhraseID": "guthbered_reject", + "requires": { + "progress": "prim_hunt:250" + } + }, + { + "nextPhraseID": "guthbered_completed", + "requires": { + "progress": "prim_hunt:100" + } + }, + { + "nextPhraseID": "guthbered_killharl_2", + "requires": { + "progress": "prim_hunt:99" + } + }, + { + "nextPhraseID": "guthbered_workingforbwm_2", + "requires": { + "progress": "bwm_agent:95" + } + }, + { + "nextPhraseID": "guthbered_killharl_1", + "requires": { + "progress": "prim_hunt:80" + } + }, + { + "nextPhraseID": "guthbered_lookforsigns_1", + "requires": { + "progress": "prim_hunt:50" + } + }, + { + "nextPhraseID": "guthbered_return_1_1", + "requires": { + "progress": "prim_hunt:25" + } + }, + { + "nextPhraseID": "guthbered_1" + } + ] + }, + { + "id": "guthbered_reject", + "message": "Ancora tu? Vattene da questo posto e raggiungi i tuoi amici dell'insediamento sulla montagna Blackwater. Non vogliamo avere a che fare con te.", + "replies": [ + { + "text": "Sono qui per portarvi un messaggio dall'insediamento sulla montagna di Blackwater.", + "nextPhraseID": "guthbered_attacks", + "requires": { + "progress": "bwm_agent:70" + } + } + ] + }, + { + "id": "guthbered_attacks", + "message": "Quale messaggio?", + "replies": [ + { + "text": "Harlenn dell'insediamento di Blackwater vuole che fermiate i vostri attacchi verso di loro.", + "nextPhraseID": "guthbered_attacks_1" + } + ] + }, + { + "id": "guthbered_attacks_1", + "message": "Ma è completamente pazzo? Noi?! fermare i NOSTRI attacchi? Digli che non abbiamo nulla a che fare con quello che succede lassù, si sono cercati tutto quello che stanno subendo.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 80 + } + ] + }, + { + "id": "guthbered_return_1_1", + "message": "Bentornato viaggiatore, hai parlato con Harlenn dell'insediamento su Blackwater?", + "replies": [ + { + "text": "Puoi raccontarmi di nuovo la storia dei mostri?", + "nextPhraseID": "guthbered_13" + }, + { + "text": "Mi ripeti cosa avrei dovuto fare?", + "nextPhraseID": "guthbered_29" + }, + { + "text": "Puoi dirmi ancora la storia di Prim?", + "nextPhraseID": "guthbered_2" + }, + { + "text": "Sì, ma Harlenn nega di avere a che fare con gli attacchi.", + "nextPhraseID": "guthbered_talkedto_harl_1", + "requires": { + "progress": "prim_hunt:30" + } + }, + { + "text": "In realtà, sono qui per portarvi un messaggio dall'insediamento sulla montagna di Blackwater.", + "nextPhraseID": "guthbered_attacks", + "requires": { + "progress": "bwm_agent:70" + } + } + ] + }, + { + "id": "guthbered_1", + "message": "Benvenuto a Prim, viaggiatore.", + "replies": [ + { + "text": "Cosa puoi dirmi su Prim?", + "nextPhraseID": "guthbered_2" + }, + { + "text": "Chi sei tu?", + "nextPhraseID": "guthbered_who_1" + }, + { + "text": "Mi è stato detto di parlare con te per aiutarvi contro gli attacchi dei mostri.", + "nextPhraseID": "guthbered_20", + "requires": { + "progress": "prim_hunt:11" + } + }, + { + "text": "In realtà, sono qui per portarvi un messaggio dall'insediamento sulla montagna di Blackwater.", + "nextPhraseID": "guthbered_attacks", + "requires": { + "progress": "bwm_agent:70" + } + } + ] + }, + { + "id": "guthbered_2", + "message": "Prim era un semplice campo per i minatori che lavoravano da queste parti. In seguito è diventato un insediamento, e qualche anno fa sono pure comparse una taverna ed una locanda.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_3" + } + ] + }, + { + "id": "guthbered_3", + "message": "Questo posto era pieno di vita quando i minatori lavoravano qui.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_4" + } + ] + }, + { + "id": "guthbered_4", + "message": "I minatori attiravano anche un sacco di mercanti che passavano di qui.", + "replies": [ + { + "text": "'ERA pieno di vita'?", + "nextPhraseID": "guthbered_5" + }, + { + "text": "Cosa è successo poi?", + "nextPhraseID": "guthbered_5" + } + ] + }, + { + "id": "guthbered_5", + "message": "Fino a poco tempo fa, avevamo almeno qualche contatto con i paesi esterni, oggi sembra non ci sia più speranza.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_6" + } + ] + }, + { + "id": "guthbered_6", + "message": "Vedi, il tunnel della miniera a sud è crollato e nessuno può entrare o uscire da Prim.", + "replies": [ + { + "text": "Lo so, sono appena arrivato da lì.", + "nextPhraseID": "guthbered_7" + }, + { + "text": "Che sfortuna.", + "nextPhraseID": "guthbered_10" + }, + { + "text": "Cosa ha provocato il crollo?", + "nextPhraseID": "guthbered_11" + } + ] + }, + { + "id": "guthbered_7", + "message": "Sei arrivato da lì? Oh beh naturalmente visto che non sei di Prim. Quindi c'è un passaggio agibile attraverso la miniera dopotutto non è vero?", + "replies": [ + { + "text": "Si, ma sono dovuto passare attraverso la vecchia miniera buia.", + "nextPhraseID": "guthbered_8" + }, + { + "text": "Si, il passaggio sotto la miniera è sicuro.", + "nextPhraseID": "guthbered_8" + }, + { + "text": "No, sto scherzando,. Ho scalato il crinale della montagna per venire qua.", + "nextPhraseID": "guthbered_8" + } + ] + }, + { + "id": "guthbered_8", + "message": "Ok, indagheremo più tardi.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_9" + } + ] + }, + { + "id": "guthbered_9", + "message": "Comunque, come dicevo..", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_10" + } + ] + }, + { + "id": "guthbered_10", + "message": "Il crollo della miniera ha reso difficile ai commercianti arrivare fino a Prim. Per questo i nostri rifornimenti vanno diminuendo costantemente.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_12" + } + ] + }, + { + "id": "guthbered_11", + "message": "Non ne siamo sicuri, ma abbiamo i nostri sospetti.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_10" + } + ] + }, + { + "id": "guthbered_12", + "message": "Oltre questo, dobbiamo anche fronteggiare gli attacchi dei mostri.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 11 + } + ], + "replies": [ + { + "text": "Si, ho notato alcuni mostri fuori dal villaggio.", + "nextPhraseID": "guthbered_13" + }, + { + "text": "Quali mostri?", + "nextPhraseID": "guthbered_13" + } + ] + }, + { + "id": "guthbered_who_1", + "message": "Sono Guthbered, protettore di questo villaggio.", + "replies": [ + { + "text": "Cosa puoi dirmi di Prim?", + "nextPhraseID": "guthbered_2" + }, + { + "text": "Mi è stato chiesto di incontrarti per aiutarvi contro gli attacchi dei mostri.", + "nextPhraseID": "guthbered_20", + "requires": { + "progress": "prim_hunt:11" + } + } + ] + }, + { + "id": "guthbered_13", + "message": "Un po' di tempo fa sono apparsi i primi mostri, all'inizio non era un problema, le nostre guardie riuscivano a fronteggiarli senza problemi.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_14" + } + ] + }, + { + "id": "guthbered_14", + "message": "Dopo poco alcune guardie sono state ferite e i mostri sono aumentati.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_15" + } + ] + }, + { + "id": "guthbered_15", + "message": "Inoltre, sembra quasi che i mostri stiano diventando più intelligenti, i loro attacchi sono sempre più coordinati.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_16" + } + ] + }, + { + "id": "guthbered_16", + "message": "Ora riusciamo a malapena a respingerli, arrivano per lo più di notte.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_17" + } + ] + }, + { + "id": "guthbered_17", + "message": "Secondo la tradizione, i mostri vengono chiamati 'Gornaud'.", + "replies": [ + { + "text": "Avete idea da dove possano venire?", + "nextPhraseID": "guthbered_18" + } + ] + }, + { + "id": "guthbered_18", + "message": "Oh, si, ne siamo quasi certi.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_19" + } + ] + }, + { + "id": "guthbered_19", + "message": "Quei bastardi dell'insediamento sulla montagna di Blackwater probabilmente li hanno evocati per attaccarci. Vorrebbero vederci morti.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_22" + } + ] + }, + { + "id": "guthbered_20", + "message": "Oh, bene. Hai parlato con Tonis? Certo, sono sicuro che lo hai incontrato sulla strada venendo qui.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_21" + } + ] + }, + { + "id": "guthbered_21", + "message": "Bene, lascia che ti racconti la vecchia storia di Prim.", + "replies": [ + { + "text": "Certo.", + "nextPhraseID": "guthbered_2" + }, + { + "text": "Preferisco sentire direttamente la fine.", + "nextPhraseID": "guthbered_13" + } + ] + }, + { + "id": "guthbered_22", + "message": "Era abitudine commerciare con loro, ma poi tutto cambiò quando iniziarono a diventare avidi.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 25 + } + ], + "replies": [ + { + "text": "Ho incontrato un uomo fuori dalla miniera crollata che diceva di essere dell'insediamento della montagna di Blackwater.", + "nextPhraseID": "guthbered_26" + }, + { + "text": "Avete bisogno di aiuto con quei mostri?", + "nextPhraseID": "guthbered_23" + }, + { + "text": "Sarei felice di aiutarvi con quei mostri.", + "nextPhraseID": "guthbered_24" + } + ] + }, + { + "id": "guthbered_23", + "message": "Oh ragazzo, aiuto? Sì certo, sei il benvenuto se vuoi aiutarci.", + "replies": [ + { + "text": "Sarei felice di aiutarvi con i mostri.", + "nextPhraseID": "guthbered_24" + } + ] + }, + { + "id": "guthbered_24", + "message": "Pensi davvero di essere in grado di aiutarci?", + "replies": [ + { + "text": "Ho lasciato una scia di carcasse sanguinanti dietro di me.", + "nextPhraseID": "guthbered_25" + }, + { + "text": "Certo, sono in grado.", + "nextPhraseID": "guthbered_25" + }, + { + "text": "Se i mostri sono simili a quelli che ho incontrato all'entrata della miniera, sarà una dura lotta. Ma posso farcela.", + "nextPhraseID": "guthbered_25" + } + ] + }, + { + "id": "guthbered_25", + "message": "Grande, penso che dovremmo andare direttamente alla fonte del problema.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_29" + } + ] + }, + { + "id": "guthbered_26", + "message": "Un uomo dell'insediamento di Blackwater dici?", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_27" + } + ] + }, + { + "id": "guthbered_27", + "message": "Ti ha detto qualcosa su di noi?", + "replies": [ + { + "text": "No, ma ha insistito che io mi dirigessi ad Est uscito dalla miniera, evidentemente per non farmi arrivare qui a Prim.", + "nextPhraseID": "guthbered_28" + } + ] + }, + { + "id": "guthbered_28", + "message": "Questi personaggi, mandano le loro spie anche ora.", + "replies": [ + { + "text": "Hai bisogno di aiuto con quei mostri?", + "nextPhraseID": "guthbered_23" + } + ] + }, + { + "id": "guthbered_29", + "message": "Come dicevo, crediamo che quei bastardi dell'insediamento lassù siano in qualche modo coinvolti con l'attacco dei mostri.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_30" + } + ] + }, + { + "id": "guthbered_30", + "message": "Io voglio che tu vada nel loro insediamento a cerare il loro maestro d'armi, Harlenn, e gli chieda perché ci stanno facendo questo.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 25 + } + ], + "replies": [ + { + "text": "Ok, andrò da Harlenn nell'insediamento di Blackwater a chiedergli perché vi stanno attaccando.", + "nextPhraseID": "guthbered_31" + } + ] + }, + { + "id": "guthbered_31", + "message": "Grazie, sei un amico.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 25 + } + ] + }, + { + "id": "guthbered_talkedto_harl_1", + "message": "Cosa dovevo aspettarmi? Ero certo che avrebbe detto questo. Probabilmente lo nega perfino a se stesso. Intanto qui a Prim soffriamo per colpa dei loro attacchi.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_talkedto_harl_2" + } + ] + }, + { + "id": "guthbered_talkedto_harl_2", + "message": "Sono certo che ci sono loro dietro a questi attacchi, purtroppo non ho sufficienti prove per poter fare qualcosa.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_talkedto_harl_3" + } + ] + }, + { + "id": "guthbered_talkedto_harl_3", + "message": "Ma sono sicuro che sono loro! Come sono falsi, sempre a mentire e ingannare, causando un sacco di guai.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_talkedto_harl_4" + } + ] + }, + { + "id": "guthbered_talkedto_harl_4", + "message": "Basta sentire il nome che si sono scelti: 'Blackwater'. Già questo suona come una minaccia.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_talkedto_harl_5" + } + ] + }, + { + "id": "guthbered_talkedto_harl_5", + "message": "In ogni caso, vorrei delle prove su quello che stanno facendo, ci sarà qualcosa che può aiutarci.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_talkedto_harl_6" + } + ] + }, + { + "id": "guthbered_talkedto_harl_6", + "message": "Ma ho bisogno di essere sicuro di potermi fidare di te. Se stai lavorando per loro è meglio che tu me lo dica ora, senza aspettare che le cose si...complichino.", + "replies": [ + { + "text": "Certo, ti puoi fidare, sono qui per aiutare il popolo di Prim.", + "nextPhraseID": "guthbered_talkedto_harl_8" + }, + { + "text": "Hm, forse dovrei aiutare la gente di Blackwater.", + "nextPhraseID": "guthbered_workingforbwm_1" + }, + { + "text": "(menzogna) Puoi fidarti di me.", + "nextPhraseID": "guthbered_talkedto_harl_7", + "requires": { + "progress": "bwm_agent:70" + } + } + ] + }, + { + "id": "guthbered_talkedto_harl_7", + "message": "Eppure c'è qualcosa in te che non mi convince.", + "replies": [ + { + "text": "Stavo lavorando per loro, ma poi ho deciso di aiutare voi.", + "nextPhraseID": "guthbered_talkedto_harl_8" + }, + { + "text": "Perché mai dovrei aiutare il vostro schifoso villaggio? La gente di Blackwater merita il mio aiuto più di voi!", + "nextPhraseID": "guthbered_workingforbwm_1" + } + ] + }, + { + "id": "guthbered_talkedto_harl_8", + "message": "Bene, sono contento che tu voglia aiutarci.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_talkedto_harl_9" + } + ] + }, + { + "id": "guthbered_workingforbwm_1", + "message": "Bene, è meglio che tu te ne vada ora finchè ti è ancora possibile, traditore.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 250 + } + ] + }, + { + "id": "guthbered_talkedto_harl_9", + "message": "Voglio che tu vada nel loro insediamento a trovare indizi per capire cosa stanno tramando.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_talkedto_harl_10" + } + ] + }, + { + "id": "guthbered_talkedto_harl_10", + "message": "Crediamo che si stiano addestrando per lanciare un massiccio attacco su di noi.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_talkedto_harl_11" + } + ] + }, + { + "id": "guthbered_talkedto_harl_11", + "message": "Vai a cercare indizi e piani, ma fai in modo che nessuno se ne accorga.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_talkedto_harl_12" + } + ] + }, + { + "id": "guthbered_talkedto_harl_12", + "message": "Dovresti cominciare la tua ricerca partendo dal loro maestro d'armi, Harlenn.", + "replies": [ + { + "text": "Ok, vado a cercare indizi nel loro insediamento.", + "nextPhraseID": "guthbered_talkedto_harl_13" + } + ] + }, + { + "id": "guthbered_talkedto_harl_13", + "message": "Grazie, amico. Torna da me se scopri qualcosa.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 50 + } + ] + }, + { + "id": "guthbered_lookforsigns_1", + "message": "Ciao, hai scoperto qualcosa nell'insediamento di Blackwater ?", + "replies": [ + { + "text": "No, sto ancora cercando.", + "nextPhraseID": "guthbered_talkedto_harl_13" + }, + { + "text": "Mi ripeteresti di nuovo cosa dovrei fare?", + "nextPhraseID": "guthbered_talkedto_harl_9" + }, + { + "text": "Si, ho trovato alcune carte con un piano per attaccare Prim.", + "nextPhraseID": "guthbered_lookforsigns_2", + "requires": { + "progress": "prim_hunt:60" + } + } + ] + }, + { + "id": "guthbered_lookforsigns_2", + "message": "Allora è come sospettavo. È una notizia terribile.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_lookforsigns_3" + } + ] + }, + { + "id": "guthbered_lookforsigns_3", + "message": "Ora capisci di cosa stavo parlando, cercano sempre di creare problemi.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_lookforsigns_4" + } + ] + }, + { + "id": "guthbered_lookforsigns_4", + "message": "Grazie per aver trovato queste informazioni per noi.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 70 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_lookforsigns_5" + } + ] + }, + { + "id": "guthbered_lookforsigns_5", + "message": "Molto bene, dovremo trovare un modo per sistemare la faccenda.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_lookforsigns_6" + } + ] + }, + { + "id": "guthbered_lookforsigns_6", + "message": "Speravo che non sarebbero arrivati a questo. Non abbiamo altra scelta. Dobbiamo eliminare alla fonte il problema degli attacchi. Dobbiamo uccidere il loro maestro d'armi, Harlenn.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_lookforsigns_7" + } + ] + }, + { + "id": "guthbered_lookforsigns_7", + "message": "Questo sarebbe un buon compito per te, amico mio. Dal momento che hai accesso alle loro attrezzature, potresti entrare di nascosto e uccidere quel bastardo di Harlenn.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_lookforsigns_8" + } + ] + }, + { + "id": "guthbered_lookforsigns_8", + "message": "Uccidendolo, avremmo la certezza che i loro attacchi sarebbero diciamo...senza mordente. He he he!", + "replies": [ + { + "text": "Nessun problema, è come fosse già morto.", + "nextPhraseID": "guthbered_lookforsigns_9" + }, + { + "text": "Sei sicuro che la violenza sia la soluzione per risolvere questo conflitto?", + "nextPhraseID": "guthbered_lookforsigns_10" + } + ] + }, + { + "id": "guthbered_lookforsigns_9", + "message": "Eccellente, ritorna da me quando Harlenn è morto.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 80 + } + ] + }, + { + "id": "guthbered_lookforsigns_10", + "message": "No, non proprio. Ma per ora sembra sia l'unica soluzione possibile.", + "replies": [ + { + "text": "Lo eliminerò, ma cercherò di trovare una soluzione pacifica al problema.", + "nextPhraseID": "guthbered_lookforsigns_9" + }, + { + "text": "Molto bene, fai finta che sia già morto.", + "nextPhraseID": "guthbered_lookforsigns_9" + } + ] + }, + { + "id": "guthbered_workingforbwm_2", + "message": "Le mie fonti all'interno dell'insediamento di Blackwater mi hanno riferito che stai lavorando per loro.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_workingforbwm_3" + } + ] + }, + { + "id": "guthbered_workingforbwm_3", + "message": "Questa è una tua scelta, ma se stai lavorando per loro non sei il benvenuto a Prim. E' meglio se te ne vai in fretta finché sei in tempo.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 251 + } + ] + }, + { + "id": "guthbered_completed", + "message": "Ciao amico mio. Ancora grazie per il tuo aiuto nell'aver sistemato la faccenda con Blackwater.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_completed_1" + } + ] + }, + { + "id": "guthbered_completed_1", + "message": "Sono sicuro che ora tutti qui a Prim vorranno parlare con te.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 240 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_completed_2" + } + ] + }, + { + "id": "guthbered_completed_2", + "message": "Grazie per il tuo aiuto.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 250 + } + ] + }, + { + "id": "guthbered_sentbybwm_1", + "message": "La luce nei tuoi occhi mi spaventa.", + "replies": [ + { + "text": "Sono stato mandato dall'insediamento Blackwater per fermarti.", + "nextPhraseID": "guthbered_sentbybwm_fight" + }, + { + "text": "Sono stato mandato dall'insediamento Blackwater per fermarti. Tuttavia ho deciso di non ucciderti.", + "nextPhraseID": "guthbered_sentbybwm_3" + } + ] + }, + { + "id": "guthbered_sentbybwm_fight", + "message": "Speravo di non dover arrivare a questo punto. Non sopravviverai a questo scontro. Un'altra vita nelle mie mani.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 130 + } + ], + "replies": [ + { + "text": "Per l'Ombra!", + "nextPhraseID": "F" + }, + { + "text": "Parole coraggiose, vediamo se mantieni le promesse. ", + "nextPhraseID": "F" + }, + { + "text": "Fantastico! Non vedevo l'ora di ucciderti.", + "nextPhraseID": "F" + }, + { + "text": "Combattiamo!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "guthbered_sentbybwm_3", + "message": "Mmh, interessante....per favore, continua.", + "replies": [ + { + "text": "E' ovvio che questo conflitto può finire solo con altro spargimento di sangue, dovrebbe fermarsi ora.", + "nextPhraseID": "guthbered_sentbybwm_4" + } + ] + }, + { + "id": "guthbered_sentbybwm_4", + "message": "Qual è la tua proposta?", + "replies": [ + { + "text": "La mia proposta è di lasciare questo villaggio e trovare una nuova casa da qualche altra parte.", + "nextPhraseID": "guthbered_sentbybwm_5" + } + ] + }, + { + "id": "guthbered_sentbybwm_5", + "message": "Perché dovremmo farlo?", + "replies": [ + { + "text": "Questi due villaggi saranno sempre in conflitto. Se tu parti, penseranno di aver vinto e fermeranno i loro attacchi.", + "nextPhraseID": "guthbered_sentbybwm_6" + } + ] + }, + { + "id": "guthbered_sentbybwm_6", + "message": "Hm, potresti aver ragione.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_sentbybwm_7" + } + ] + }, + { + "id": "guthbered_sentbybwm_7", + "message": "Ok, mi hai convinto, lascerò Prim per andare in un'altra città. La sopravvivenza della mia gente è più importante di me.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_sentbybwm_leave" + } + ] + }, + { + "id": "guthbered_sentbybwm_leave", + "message": "Grazie amico per avermi fatto ragionare.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 131 + } + ], + "replies": [ + { + "text": "Figurati.", + "nextPhraseID": "R" + } + ] + }, + { + "id": "guthbered_killharl_1", + "message": "Ciao, sei riuscito ad eliminare Harlenn dall'insediamento di Blackwater?", + "replies": [ + { + "text": "Puoi rispiegarmi quello che dovrei fare?", + "nextPhraseID": "guthbered_lookforsigns_6" + }, + { + "text": "Non ancora, ci sto lavorando.", + "nextPhraseID": "guthbered_lookforsigns_9" + }, + { + "text": "Sì, è morto.", + "nextPhraseID": "guthbered_killharl_2", + "requires": { + "item": { + "itemID": "harlenn_id", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Sì, se n'è andato.", + "nextPhraseID": "guthbered_killharl_3", + "requires": { + "progress": "prim_hunt:91" + } + } + ] + }, + { + "id": "guthbered_killharl_2", + "message": "Sebbene ti sia grato per averlo ucciso, sono tuttavia dispiaciuto che si debba essere arrivati a questo.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 99 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_killharl_4" + } + ] + }, + { + "id": "guthbered_killharl_3", + "message": "Davvero? Questa è veramente un'ottima notizia.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_killharl_4" + } + ] + }, + { + "id": "guthbered_killharl_4", + "message": "Con questo si spera che i loro attacchi verso il villaggio siano finiti.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_killharl_5" + } + ] + }, + { + "id": "guthbered_killharl_5", + "message": "Non potrò mai ringraziarti abbastanza.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_killharl_6" + } + ] + }, + { + "id": "guthbered_killharl_6", + "message": "Ora, ti prego di accettare questi oggetti come segno del nostro ringraziamento e prendi queste carte, potrebbero tornarti utili.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 100 + }, + { + "rewardType": 1, + "rewardID": "guthbered_reward" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_killharl_7" + } + ] + }, + { + "id": "guthbered_killharl_7", + "message": "Si tratta di un permesso che abbiamo...creato...il quale, secondo le nostre fonti, ti permetterà di accedere alla sala interna dell'insediamento di Blackwater.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_killharl_8" + } + ] + }, + { + "id": "guthbered_killharl_8", + "message": "Ora, diciamo che il permesso non è propriamente...originale...ma siamo sicuri che la guardia non noterà la differenza.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_killharl_9" + } + ] + }, + { + "id": "guthbered_killharl_9", + "message": "In ogni caso, hai la mia più grande riconoscenza per quello che hai fatto per noi.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_completed_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_prim_inn.json b/AndorsTrail/res/raw-it/conversationlist_prim_inn.json new file mode 100644 index 000000000..c59077f0d --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_prim_inn.json @@ -0,0 +1,353 @@ +[ + { + "id": "bwm_primsleep", + "message": "Non ti è permesso entrare qui." + }, + { + "id": "laecca_1", + "message": "Ciao io sono Laecca, guida di montagna.", + "replies": [ + { + "text": "Cosa fai da queste parti?", + "nextPhraseID": "laecca_2" + }, + { + "text": "Cos'è una 'Guida di montagna'?", + "nextPhraseID": "laecca_2" + } + ] + }, + { + "id": "laecca_2", + "message": "Tengo d'occhio il passo per assicurarmi che nessuna di quelle bestie arrivino fin qui.", + "replies": [ + { + "text": "Allora cosa ci fai in casa? Non dovresti essere fuori a fare la guardia?", + "nextPhraseID": "laecca_4" + }, + { + "text": "Sembra una nobile causa.", + "nextPhraseID": "laecca_3" + }, + { + "text": "Di che bestie stai parlando?", + "nextPhraseID": "laecca_9" + } + ] + }, + { + "id": "laecca_3", + "message": "Certo, può sembrare così, ma c'è un sacco di duro lavoro.", + "replies": [ + { + "text": "N", + "nextPhraseID": "laecca_5" + } + ] + }, + { + "id": "laecca_4", + "message": "Molto divertente, ma devo anche riposare. Tenere lontano i mostri è molto faticoso.", + "replies": [ + { + "text": "N", + "nextPhraseID": "laecca_5" + } + ] + }, + { + "id": "laecca_5", + "message": "Una volta c'erano molte più guide fra noi, ma oramai non molti sono sopravvissuti agli attacchi delle bestie.", + "replies": [ + { + "text": "Sembra che tu non sia molto tagliata per fare questo lavoro come si deve.", + "nextPhraseID": "laecca_6" + }, + { + "text": "Mi dispiace sentirtelo dire.", + "nextPhraseID": "laecca_8" + }, + { + "text": "Di quali bestie stai parlando?", + "nextPhraseID": "laecca_9" + } + ] + }, + { + "id": "laecca_6", + "message": "Forse.", + "replies": [ + { + "text": "N", + "nextPhraseID": "laecca_7" + } + ] + }, + { + "id": "laecca_7", + "message": "In ogni caso, ho delle cose da fare. È stato bello parlare con te.", + "replies": [ + { + "text": "Ciao.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "laecca_8", + "message": "Grazie per l'interessamento.", + "replies": [ + { + "text": "Posso fare qualcosa per aiutarti?", + "nextPhraseID": "laecca_13" + } + ] + }, + { + "id": "laecca_9", + "message": "Pfft, 'Quali bestie?'. I Gornaud ovviamente.", + "replies": [ + { + "text": "N", + "nextPhraseID": "laecca_10" + } + ] + }, + { + "id": "laecca_10", + "message": "Affilano gli artigli contro le rocce la notte! *spallucce*", + "replies": [ + { + "text": "N", + "nextPhraseID": "laecca_11" + } + ] + }, + { + "id": "laecca_11", + "message": "All'inizio pensavo che agissero per puro istinto. Ma ora sto cominciando a credere che siano più intelligenti delle altre bestie.", + "replies": [ + { + "text": "N", + "nextPhraseID": "laecca_12" + } + ] + }, + { + "id": "laecca_12", + "message": "I loro attacchi si fanno sempre più mirati.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 11 + } + ], + "replies": [ + { + "text": "E come posso aiutarti?", + "nextPhraseID": "laecca_13" + } + ] + }, + { + "id": "laecca_13", + "message": "Dovresti parlare con Guthbered. Di solito si trova nella sala principale. Cerca la casa di pietra al centro del villaggio.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 15 + } + ] + }, + { + "id": "prim_cook_start", + "replies": [ + { + "nextPhraseID": "prim_cook_return_1", + "requires": { + "progress": "prim_innquest:50" + } + }, + { + "nextPhraseID": "prim_cook_return_2", + "requires": { + "progress": "prim_innquest:10" + } + }, + { + "nextPhraseID": "prim_cook_1" + } + ] + }, + { + "id": "prim_cook_1", + "message": "Posso aiutarti?", + "replies": [ + { + "text": "Hai del cibo da vendere?", + "nextPhraseID": "prim_cook_2" + }, + { + "text": "La stanza sul retro si può affittare?", + "nextPhraseID": "prim_cook_3" + } + ] + }, + { + "id": "prim_cook_2", + "message": "Cibo? No, mi spiace. Non ho niente da vendere.", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_cook_1" + } + ] + }, + { + "id": "prim_cook_3", + "message": "Affitto? No, non al momento.", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_cook_41" + } + ] + }, + { + "id": "prim_cook_5", + "message": "Ora che mi ci fai pensare, è un po che non si vede da queste parti, potresti sentire lui se vuole tenerla ancora in affitto.", + "replies": [ + { + "text": "Ok, andrò a parlare con lui.", + "nextPhraseID": "prim_cook_7" + }, + { + "text": "Certo, hai qualche idea su dove possa essere?", + "nextPhraseID": "prim_cook_6" + } + ] + }, + { + "id": "prim_cook_41", + "message": "È affittata ad Arghest. Non sarebbe molto felice se io la dessi a qualcun altro!", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_cook_5" + } + ] + }, + { + "id": "prim_cook_6", + "message": "Non so dove sia, ma so che lavorava sempre nelle nostre miniere a sud-ovest.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_innquest", + "value": 10 + } + ], + "replies": [ + { + "text": "Grazie, andrò a cercarlo.", + "nextPhraseID": "X" + }, + { + "text": "Andrò a cercarlo subito.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "prim_cook_7", + "message": "Grazie.", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_cook_6" + } + ] + }, + { + "id": "prim_cook_return_1", + "message": "Grazie per il tuo aiuto, spero che la stanza sul retro sia di tuo gradimento.", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_cook_return_7" + } + ] + }, + { + "id": "prim_cook_return_2", + "message": "Hai parlato ad Arghest?", + "replies": [ + { + "text": "No, non ancora.", + "nextPhraseID": "prim_cook_return_3" + }, + { + "text": "(Menzogna) Sì, mi ha detto che potevo usare la stanza sul retro quando volevo.", + "nextPhraseID": "prim_cook_return_4" + }, + { + "text": "Sì, mi ha detto che potevo usare la stanza sul retro quando volevo.", + "nextPhraseID": "prim_cook_return_6", + "requires": { + "progress": "prim_innquest:40" + } + } + ] + }, + { + "id": "prim_cook_return_3", + "message": "Ritorna da me quando hai saputo se vuole tenerla in affitto ancora.", + "replies": [ + { + "text": "Hai qualche idea su dove possa essere?", + "nextPhraseID": "prim_cook_6" + } + ] + }, + { + "id": "prim_cook_return_4", + "message": "Veramente ha detto così? Ne dubito. Non sembra una cosa da lui.", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_cook_return_5" + } + ] + }, + { + "id": "prim_cook_return_5", + "message": "Mmh, dovrai impegnarti di più per convincermi." + }, + { + "id": "prim_cook_return_6", + "message": "Veramente ti ha dato il permesso? Bene vai pure, posso solo essere contento che la stanza sul retro venga usata.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_innquest", + "value": 50 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_cook_return_7" + } + ] + }, + { + "id": "prim_cook_return_7", + "message": "Sei sempre il benvenuto, puoi riposare nella stanza sul retro tutte le volte che vuoi, fammi sapere se c'è qualcosa che posso fare per te!" + }, + { + "id": "prim_innguest", + "message": "Bel posto questo, non è vero?" + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_prim_merchants.json b/AndorsTrail/res/raw-it/conversationlist_prim_merchants.json new file mode 100644 index 000000000..343fab8ba --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_prim_merchants.json @@ -0,0 +1,156 @@ +[ + { + "id": "prim_armorer", + "replies": [ + { + "nextPhraseID": "prim_armorer_1", + "requires": { + "progress": "prim_hunt:240" + } + }, + { + "nextPhraseID": "prim_armorer_2" + } + ] + }, + { + "id": "prim_armorer_1", + "message": "Benvenuto amico, vuoi vedere quali attrezzature vendo?", + "replies": [ + { + "text": "Certo, fammi federe cosa hai.", + "nextPhraseID": "prim_armorer_3" + } + ] + }, + { + "id": "prim_armorer_2", + "message": "Benvenuto viaggiatore, sei venuto a chiedere i miei servigi e le mie attrezzature?", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_notrust" + } + ] + }, + { + "id": "prim_armorer_3", + "message": "Devo dirti che i miei rifornimenti non sono più quelli di una volta, ora che l'ingresso Sud della miniera è crollato. Sono veramente pochi i commercianti che vengono fino a qui.", + "replies": [ + { + "text": "Ok, fammi vedere la tua merce.", + "nextPhraseID": "S" + } + ] + }, + { + "id": "prim_notrust", + "message": "Ad ogni modo non posso aiutarti. I miei servizi sono solo per i residenti di Prim. Non mi fido ancora di te, potresti essere una spia dell'insediamento di Blackwater." + }, + { + "id": "prim_tailor", + "message": "Benvenuto viaggiatore, cosa posso fare per te?", + "replies": [ + { + "text": "Fammi vedere cosa hai in vendita.", + "nextPhraseID": "prim_tailor_1" + } + ] + }, + { + "id": "prim_tailor_1", + "message": "Vendere? Mi spiace ma le mie merci sono tutte esaurite. Ora che i commercianti non vengono più fino a qui, non ricevo più i miei rifornimenti abituali. Al momento non ho nulla da scambiare con te." + }, + { + "id": "guthbered_guard", + "replies": [ + { + "nextPhraseID": "guthbered_guard_2", + "requires": { + "progress": "bwm_agent:130" + } + }, + { + "nextPhraseID": "guthbered_guard_1" + } + ] + }, + { + "id": "guthbered_guard_1", + "message": "Parla col capo invece." + }, + { + "id": "guthbered_guard_2", + "message": "Per favore, non farmi del male! Sto solo facendo il mio lavoro qui." + }, + { + "id": "prim_guard1", + "message": "Cosa stai guardando? Queste armi nelle casse sono solo per noi guardie." + }, + { + "id": "prim_guard2", + "message": "(La guardia ti squadra con occhio accondiscendente.)" + }, + { + "id": "prim_guard3", + "message": "Oh, sono così stanco, chissà fra quanto potrò riposare!" + }, + { + "id": "prim_guard4", + "message": "Non posso parlare ora,, sono di guardia. Parla con Guthbered laggiù." + }, + { + "id": "prim_treasury_guard", + "message": "Le vedi queste barre? Resisteranno praticamente a tutto." + }, + { + "id": "prim_acolyte", + "message": "Quando il mio addestramento sarà terminato, sarò uno dei più grandi guaritori in circolazione." + }, + { + "id": "prim_pupil1", + "message": "Non vedi che sto cercando di leggere? Parlami tra un po' e forse ti ascolterò." + }, + { + "id": "prim_pupil2", + "message": "Non posso parlare ora, sto lavorando." + }, + { + "id": "prim_pupil3", + "message": "Sei tu quello di cui ho sentito parlare? Non può essere, ti immaginavo più alto." + }, + { + "id": "prim_priest", + "replies": [ + { + "nextPhraseID": "prim_priest_1", + "requires": { + "progress": "prim_hunt:240" + } + }, + { + "nextPhraseID": "prim_priest_2" + } + ] + }, + { + "id": "prim_priest_1", + "message": "Benvenuto amico! Vuoi dare un'occhiata alla mia fornitura di pozioni e unguenti?", + "replies": [ + { + "text": "Certo, fammi vedere che cos'hai.", + "nextPhraseID": "S" + } + ] + }, + { + "id": "prim_priest_2", + "message": "Benvenuto viaggiatore. Sei venuto a chiedere aiuto a me ed alle miei pozioni?", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_notrust" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_prim_outside.json b/AndorsTrail/res/raw-it/conversationlist_prim_outside.json new file mode 100644 index 000000000..995639396 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_prim_outside.json @@ -0,0 +1,355 @@ +[ + { + "id": "tonis_start", + "replies": [ + { + "nextPhraseID": "tonis_return_1", + "requires": { + "progress": "prim_hunt:10" + } + }, + { + "nextPhraseID": "tonis_1" + } + ] + }, + { + "id": "tonis_return_1", + "message": "Ciao. Hai parlato con Guthbered nella sala principale di Prim?", + "replies": [ + { + "text": "No, non ancora. Dove posso trovarlo?", + "nextPhraseID": "tonis_return_2" + }, + { + "text": "Sì, mi ha raccontato la storia di Prim.", + "nextPhraseID": "tonis_8", + "requires": { + "progress": "prim_hunt:20" + } + }, + { + "text": "No, e non credo che andrò a parlare con lui. Sono qui per svolgere una missione importante per aiutare l'insediamento sulla montagna Blackwater.", + "nextPhraseID": "tonis_return_3" + } + ] + }, + { + "id": "tonis_1", + "message": "Hei tu! Per favore, ci devi aiutare!", + "replies": [ + { + "text": "Qual è il problema?", + "nextPhraseID": "tonis_6" + }, + { + "text": "È questo l'insediamento della montagna Blackwater?", + "nextPhraseID": "tonis_2" + }, + { + "text": "Mi spiace, ma sono di fretta, mi è stato detto di andare rapidamente ad est!", + "nextPhraseID": "tonis_4" + } + ] + }, + { + "id": "tonis_2", + "message": "Blackwater? No no certo che no. Questo è il villaggio di Prim.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tonis_3" + } + ] + }, + { + "id": "tonis_3", + "message": "Blackwater... quei luridi bastardi.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tonis_6" + } + ] + }, + { + "id": "tonis_4", + "message": "EST? Ma conduce alla montagna di Blackwater...", + "replies": [ + { + "text": "N", + "nextPhraseID": "tonis_5" + } + ] + }, + { + "id": "tonis_5", + "message": "Non vorrai veramente andare lassù?", + "replies": [ + { + "text": "N", + "nextPhraseID": "tonis_3" + } + ] + }, + { + "id": "tonis_6", + "message": "Abbiamo bisogno di aiuto da qualcuno che non vive a Prim!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "tonis_7" + } + ] + }, + { + "id": "tonis_7", + "message": "Dovresti parlare con Guthbered nella sala principale di Prim, a nord da qui.", + "replies": [ + { + "text": "Ok, andrò a fargli visita.", + "nextPhraseID": "tonis_8" + }, + { + "text": "Mi è stato detto di dirigermi verso est.", + "nextPhraseID": "tonis_4" + } + ] + }, + { + "id": "tonis_8", + "message": "Bene, grazie. Abbiamo veramente bisogno del tuo aiuto.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 11 + } + ] + }, + { + "id": "tonis_return_2", + "message": "Il villaggio di Prim è a nord di qui. Forse riesci già a vederlo attraverso quegli alberi laggiù.", + "replies": [ + { + "text": "Ok, ci andrò!", + "nextPhraseID": "tonis_8" + } + ] + }, + { + "id": "tonis_return_3", + "message": "Non ascoltare le loro bugie!" + }, + { + "id": "moyra_1", + "message": "Stai alla larga. Questo è il mio nascondiglio.", + "replies": [ + { + "text": "Da che cosa ti stai nascondendo?", + "nextPhraseID": "moyra_2" + }, + { + "text": "Chi sei tu?", + "nextPhraseID": "moyra_3" + } + ] + }, + { + "id": "moyra_2", + "message": "Artigli, bestie, Gornaud. Qui non possono raggiungermi.", + "replies": [ + { + "text": "'Gornaud', è questo il nome dei mostri fuori dal villaggio?", + "nextPhraseID": "moyra_5" + }, + { + "text": "Si certo, resta qui e nasconditi creatura patetica.", + "nextPhraseID": "moyra_4" + } + ] + }, + { + "id": "moyra_3", + "message": "Io? Io sono Moyra.", + "replies": [ + { + "text": "Perché ti nascondi?", + "nextPhraseID": "moyra_2" + } + ] + }, + { + "id": "moyra_4", + "message": "Sei cattivo. Non voglio più parlare con te!" + }, + { + "id": "moyra_5", + "message": "Per favore, non così forte! Potrebbero sentirti.", + "replies": [ + { + "text": "N", + "nextPhraseID": "moyra_6" + } + ] + }, + { + "id": "moyra_6", + "message": "Li ho visti sul sentiero che sale la montagna, affilavano i loro artigli.", + "replies": [ + { + "text": "N", + "nextPhraseID": "moyra_7" + } + ] + }, + { + "id": "moyra_7", + "message": "Mi nascondo qui ora, così non possono trovarmi." + }, + { + "id": "prim_commoner1", + "message": "Ciao, benvenuto a Prim. Sei qui per aiutarci?", + "replies": [ + { + "text": "Sì, sono qui per aiutare il vostro villaggio!", + "nextPhraseID": "prim_commoner1_2" + }, + { + "text": "(Bugia) Sì, sono qui per aiutare il vostro villaggio!", + "nextPhraseID": "prim_commoner1_2" + } + ] + }, + { + "id": "prim_commoner1_2", + "message": "Grazie, abbiamo veramente bisogno del tuo aiuto.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 11 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_commoner1_3" + } + ] + }, + { + "id": "prim_commoner1_3", + "message": "Dovresti parlare con Guthbered, se non l'hai già fatto.", + "replies": [ + { + "text": "Lo farò, ciao.", + "nextPhraseID": "X" + }, + { + "text": "Dove posso trovarlo?", + "nextPhraseID": "prim_commoner1_4" + } + ] + }, + { + "id": "prim_commoner1_4", + "message": "È nella sala principale, proprio lì nella grande casa di pietra.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 15 + } + ] + }, + { + "id": "prim_commoner2", + "message": "Ciao, mi sembri nuovo di queste parti. Come posso aiutarti?", + "replies": [ + { + "text": "C'è qualche posto dove posso riposare da queste parti?", + "nextPhraseID": "prim_commoner2_rest1" + }, + { + "text": "Dove posso trovare un commerciante da queste parti?", + "nextPhraseID": "prim_commoner2_trade1" + } + ] + }, + { + "id": "prim_commoner2_rest1", + "message": "C'è una locanda a sud-est dove potresti riposare.", + "replies": [ + { + "text": "Grazie, ciao.", + "nextPhraseID": "X" + }, + { + "text": "Dove posso trovare un commerciante da queste parti?", + "nextPhraseID": "prim_commoner2_trade1" + } + ] + }, + { + "id": "prim_commoner2_trade1", + "message": "Il nostro armaiolo è nella casa all'angolo a sud-est, ti avverto però che non ci sono più le merci di una volta.", + "replies": [ + { + "text": "Grazie, ciao.", + "nextPhraseID": "X" + }, + { + "text": "C'è qualche posto dove posso riposare da queste parti?", + "nextPhraseID": "prim_commoner2_rest1" + } + ] + }, + { + "id": "prim_commoner3", + "message": "Ciao, benvenuto a Prim." + }, + { + "id": "prim_commoner4", + "message": "Ciao, chi sei? Sei qui per aiutarci?", + "replies": [ + { + "text": "Sto cercando mio fratello, vi è capitato di vederlo da queste parti?", + "nextPhraseID": "prim_commoner4_1" + }, + { + "text": "Si, sono venuto per aiutarvi.", + "nextPhraseID": "prim_commoner4_3" + }, + { + "text": "(Menzogna) Si, sono venuto per aiutarvi.", + "nextPhraseID": "prim_commoner4_3" + } + ] + }, + { + "id": "prim_commoner4_1", + "message": "Tuo fratello? Figliolo, devi sapere che da queste parti non passa molta gente.", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_commoner4_2" + } + ] + }, + { + "id": "prim_commoner4_2", + "message": "Quindi no, non so esserti d'aiuto." + }, + { + "id": "prim_commoner4_3", + "message": "Oh, grazie potresti veramente dare un grande aiuto al nostro villaggio." + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_prim_tavern.json b/AndorsTrail/res/raw-it/conversationlist_prim_tavern.json new file mode 100644 index 000000000..4cfeb2a40 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_prim_tavern.json @@ -0,0 +1,177 @@ +[ + { + "id": "birgil_1", + "message": "Benvenuto nella mia taverna. Prego, prendi un posto dove preferisci.", + "replies": [ + { + "text": "Cosa si beve da queste parti?", + "nextPhraseID": "birgil_2" + } + ] + }, + { + "id": "birgil_2", + "message": "Purtroppo poco, con il crollo del tunnel della miniera non possiamo commerciare molto con i paesi esterni.", + "replies": [ + { + "text": "N", + "nextPhraseID": "birgil_3" + } + ] + }, + { + "id": "birgil_3", + "message": "Tuttavia ho una marea di idromele che conservo da prima che il tunnel crollasse.", + "replies": [ + { + "text": "Idromele? Puah, troppo dolce per i miei gusti.", + "nextPhraseID": "birgil_4" + }, + { + "text": "Va bene! Proprio adatto al mio palato. Vediamo cosa hai da vendere", + "nextPhraseID": "S" + }, + { + "text": "Va bene, me lo farò piacere. Credo abbia delle proprietà rigeneranti. Vediamo.", + "nextPhraseID": "S" + } + ] + }, + { + "id": "birgil_4", + "message": "Accomodati, queste sono le uniche cose che ho.", + "replies": [ + { + "text": "Ok, facciamo questo scambio.", + "nextPhraseID": "S" + }, + { + "text": "Non importa, ciao.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "prim_tavern_guest1", + "message": "Oh, qualcuno di nuovo!", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_tavern_guest1_1" + } + ] + }, + { + "id": "prim_tavern_guest1_1", + "message": "Benvenuto ragazzo, sei qui per affogare nell'alcol i tuoi dolori come noi?", + "replies": [ + { + "text": "Non proprio, cosa si fa da queste parti di solito?", + "nextPhraseID": "prim_tavern_guest1_3" + }, + { + "text": "Sì, dammi un po' di quello che stai bevendo.", + "nextPhraseID": "prim_tavern_guest1_4" + }, + { + "text": "Smettila di urtarmi mentre cammino.", + "nextPhraseID": "prim_tavern_guest1_2" + } + ] + }, + { + "id": "prim_tavern_guest1_2", + "message": "Oh oh, qualcuno di grintoso, Ok, mi sposterò dalla tua strada." + }, + { + "id": "prim_tavern_guest1_3", + "message": "Si beve, ovviamente!", + "replies": [ + { + "text": "Avrei dovuto aspettarmelo. Ciao.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "prim_tavern_guest1_4", + "message": "Hey, questo è mio. Comprati un boccale di idromele da Birgil, è proprio lì.", + "replies": [ + { + "text": "Certo, come vuoi.", + "nextPhraseID": "X" + }, + { + "text": "Ok.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "prim_tavern_guest2", + "message": "*hic* Ciaaao ragazzo. Vuoi offrire un altro giro di idromele ad un vecchio come me?", + "replies": [ + { + "text": "Buon uomo, ma cosa le prende? Stia lontano da me!", + "nextPhraseID": "X" + }, + { + "text": "Assolutamente no. E smettila di bloccarmi la strada.", + "nextPhraseID": "X" + }, + { + "text": "Certo, eccolo.", + "nextPhraseID": "prim_tavern_guest2_1", + "requires": { + "item": { + "itemID": "mead", + "quantity": 1, + "requireType": 0 + } + } + } + ] + }, + { + "id": "prim_tavern_guest2_1", + "message": "Hey hey, Grazie, sei un bravo ragazzo! *hic*" + }, + { + "id": "prim_tavern_guest3", + "message": "*Brontola*" + }, + { + "id": "prim_tavern_guest4", + "message": "Artigli. Graffi", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_tavern_guest4_1" + } + ] + }, + { + "id": "prim_tavern_guest4_1", + "message": "Hanno fatto fare una brutta fine a Kirg.", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_tavern_guest4_2" + } + ] + }, + { + "id": "prim_tavern_guest4_2", + "message": "Dannate bestie.", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_tavern_guest4_3" + } + ] + }, + { + "id": "prim_tavern_guest4_3", + "message": "Ed è tutta colpa mia. *sob*" + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_signs_pre067.json b/AndorsTrail/res/raw-it/conversationlist_signs_pre067.json new file mode 100644 index 000000000..ff775c4b8 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_signs_pre067.json @@ -0,0 +1,103 @@ +[ + { + "id": "keyarea_andor1", + "message": "Dovresti parlare con Mikhail prima." + }, + { + "id": "note_lodars", + "message": "Sul terreno trovi un pezzo di carta con un mucchio di strani simboli. Riesci a malapena a distinguere queste parole 'incontriamoci al nascondiglio di Lodar', ma non sei sicuro di aver capito bene." + }, + { + "id": "keyarea_crossglen_smith", + "message": "Audir grida: Hey tu, vattene! Non puoi stare qui." + }, + { + "id": "sign_crossglen_cave", + "message": "Il simbolo sul muro è stato scalfito in molti punti. Non riesci a ricavare niente di comprensibile dalle scritte." + }, + { + "id": "sign_wild1", + "message": "Ovest: Crossglen\nSud: Fallhaven" + }, + { + "id": "sign_notdone", + "message": "Questa mappa non è ancora pronta. Riprova alla prossima versione del gioco." + }, + { + "id": "sign_wild3", + "message": "Ovest: Crossglen\nEst: Fallhaven" + }, + { + "id": "sign_pitcave2", + "message": "Gandir giace qui, dilaniato dalle mani del suo ex-amico Irogotu." + }, + { + "id": "sign_fallhaven1", + "message": "Benvenuti a Fallhaven. Attenzione ai borseggiatori!" + }, + { + "id": "key_fallhavenchurch", + "message": "Non ti è permesso entrare nelle catacombe della chiesa di Fallhaven senza un'autorizzazione." + }, + { + "id": "arcir_basement_tornpage", + "message": "Vedi una pagina strappata di un libro intitolato 'Calomyran Secrets'. Del sangue macchia i bordi e qualcuno ha scarabocchiato la parola 'Larcal' con il sangue.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "calomyran", + "value": 20 + } + ] + }, + { + "id": "arcir_basement_statue", + "message": "Elythara, signora della luce. Ci protegge dalla maledizione dell'Ombra.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "arcir", + "value": 10 + } + ] + }, + { + "id": "fallhaven_tavern_room", + "message": "Non hai il permesso di entrare nella stanza a meno che tu non l'abbia affittata." + }, + { + "id": "fallhaven_derelict1", + "message": "Bucus urla: Hey tu, fuori di qui!" + }, + { + "id": "sign_wild6", + "message": "Nord: Crossglen\nEst: Fallhaven\nSud: Stoutford" + }, + { + "id": "sign_wild7", + "message": "Ovest: Stoutford\nNord: Fallhaven" + }, + { + "id": "sign_wild10", + "message": "Nord: Fallhaven\nOvest: Stoutford" + }, + { + "id": "flagstone_key_demon", + "message": "Il demone irradia una forza che ti spinge indietro, rendendo impossibile avvicinarsi ad esso." + }, + { + "id": "flagstone_brokensteps", + "message": "Noti che questa galleria sembra scavata dalle fondamenta di Flagstone. E' probabilmente il lavoro di uno degli ex-prigionieri di Flagstone.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "flagstone", + "value": 20 + } + ] + }, + { + "id": "sign_wild12", + "message": "Nord: Fallhaven\nEst: Vilegard\nEst: Nor City" + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_signs_v068.json b/AndorsTrail/res/raw-it/conversationlist_signs_v068.json new file mode 100644 index 000000000..fcf91226b --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_signs_v068.json @@ -0,0 +1,30 @@ +[ + { + "id": "foaming_flask_tavern_room", + "message": "Devi affittare la camera prima di poterci entrare." + }, + { + "id": "sign_vilegard_n", + "message": "Il cartello dice:\nBenvenuti a Vilegard, la città più accogliente dei dintorni." + }, + { + "id": "sign_foamingflask", + "message": "Benvenuti alla taverna Fiasco Schiumoso!" + }, + { + "id": "sign_road1_nw", + "message": "Nord: Loneford\nEst: Nor City\nOvest: Fallhaven" + }, + { + "id": "sign_road1_s", + "message": "Nord: Loneford\nEst: Nor City\nSud: Vilegard" + }, + { + "id": "sign_oluag", + "message": "Noti gli scavi recenti di una tomba." + }, + { + "id": "sign_road2", + "message": "Est: Nor City\nOvest: Vilegard" + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_thievesguild_1.json b/AndorsTrail/res/raw-it/conversationlist_thievesguild_1.json new file mode 100644 index 000000000..7801d2b8a --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_thievesguild_1.json @@ -0,0 +1,342 @@ +[ + { + "id": "thievesguild_thief_1", + "message": "Ciao ragazzo.", + "replies": [ + { + "text": "Ciao. Sai dove posso trovare Umar?", + "nextPhraseID": "thievesguild_thief_4" + }, + { + "text": "Che posto è questo?", + "nextPhraseID": "thievesguild_thief_2" + } + ] + }, + { + "id": "thievesguild_thief_2", + "message": "Questa è il salone della nostra gilda. Qui siamo al sicuro dalle guardie di Fallhaven.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thievesguild_thief_3" + } + ] + }, + { + "id": "thievesguild_thief_3", + "message": "Possiamo fare quasi quello che vogliamo qui. Tutto quello che ci permette di fare Umar.", + "replies": [ + { + "text": "Ciao. Sai dove posso trovare Umar?", + "nextPhraseID": "thievesguild_thief_4" + }, + { + "text": "Chi è Umar?", + "nextPhraseID": "thievesguild_thief_5" + } + ] + }, + { + "id": "thievesguild_thief_4", + "message": "Probabilmente è nella sua stanza laggiù. *indica*", + "replies": [ + { + "text": "Grazie.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "thievesguild_thief_5", + "message": "Umar è il nostro capo. Lui decide le nostre regole e ci guida nelle decisioni morali.", + "replies": [ + { + "text": "Dove lo posso trovare?", + "nextPhraseID": "thievesguild_thief_4" + } + ] + }, + { + "id": "thievesguild_cook_1", + "message": "Ciao, vuoi qualcosa?", + "replies": [ + { + "text": "Hai l'aspetto di un cuoco.", + "nextPhraseID": "thievesguild_cook_2" + }, + { + "text": "Posso vedere il cibo che avete in vendita?", + "nextPhraseID": "S" + }, + { + "text": "Farrik mi ha detto che puoi preparare un buon pasto per me.", + "nextPhraseID": "thievesguild_select_1", + "requires": { + "progress": "farrik:20" + } + } + ] + }, + { + "id": "thievesguild_cook_2", + "message": "E' vero. Qualcuno deve preparare il pasto a questi mascalzoni.", + "replies": [ + { + "text": "Quello ha un ottimo profumo.", + "nextPhraseID": "thievesguild_cook_3" + }, + { + "text": "Quello stufato sembra disgustoso.", + "nextPhraseID": "thievesguild_cook_4" + }, + { + "text": "Non importa, ciao.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "thievesguild_cook_3", + "message": "Grazie. Questo stufato sta venendo bene. ", + "replies": [ + { + "text": "Vorrei comprarne un po'.", + "nextPhraseID": "S" + } + ] + }, + { + "id": "thievesguild_cook_4", + "message": "Certo, lo so. Con ingredienti scadenti cosa puoi fare? Comunque, ci sazia.", + "replies": [ + { + "text": "Posso vedere il cibo che avete in vendita?", + "nextPhraseID": "S" + } + ] + }, + { + "id": "thievesguild_cook_5", + "message": "Oh sicuro. Hai intenzione di far addormentare qualcuno?", + "replies": [ + { + "text": "N", + "nextPhraseID": "thievesguild_cook_6" + } + ] + }, + { + "id": "thievesguild_cook_6", + "message": "Non ti preoccupare, non lo dirò a nessuno. Preparare cibo 'pesante' è una delle mie specialità.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thievesguild_cook_7" + } + ] + }, + { + "id": "thievesguild_cook_7", + "message": "Dammi un minuto per mescolartelo bene.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thievesguild_cook_8" + } + ] + }, + { + "id": "thievesguild_select_1", + "replies": [ + { + "nextPhraseID": "thievesguild_cook_10", + "requires": { + "progress": "farrik:25" + } + }, + { + "nextPhraseID": "thievesguild_cook_5" + } + ] + }, + { + "id": "thievesguild_cook_8", + "message": "Ci sono. Dovrebbe funzionare. Tieni.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 25 + }, + { + "rewardType": 1, + "rewardID": "sleepingmead" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "thievesguild_cook_9" + } + ] + }, + { + "id": "thievesguild_cook_10", + "message": "Si, ti ho dato un infuso speciale.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thievesguild_cook_9" + } + ] + }, + { + "id": "thievesguild_cook_9", + "message": "Stai attento non spandertelo sulle dita, quell'intruglio è veramente forte.", + "replies": [ + { + "text": "Grazie.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "thievesguild_pickpocket_1", + "message": "Come butta?", + "replies": [ + { + "text": "Chi sei?", + "nextPhraseID": "thievesguild_pickpocket_2" + }, + { + "text": "Cos'è questo posto?", + "nextPhraseID": "thievesguild_thief_2" + } + ] + }, + { + "id": "thievesguild_pickpocket_2", + "message": "Il mio vero nome non è importante. La gente mi chiama Dita rapide.", + "replies": [ + { + "text": "E come mai?", + "nextPhraseID": "thievesguild_pickpocket_3" + } + ] + }, + { + "id": "thievesguild_pickpocket_3", + "message": "Beh, ho una certa tendenza ... come dire ... ad acquisire certe cose facilmente.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thievesguild_pickpocket_4" + } + ] + }, + { + "id": "thievesguild_pickpocket_4", + "message": "Cose in precedenza in possesso di altre persone.", + "replies": [ + { + "text": "Intendi tipo rubare?", + "nextPhraseID": "thievesguild_pickpocket_5" + } + ] + }, + { + "id": "thievesguild_pickpocket_5", + "message": "No no. Non lo chiamerei rubare. E' più come un trasferimento di proprietà. Verso di me, s'intende.", + "replies": [ + { + "text": "Questo mi suona proprio come rubare", + "nextPhraseID": "thievesguild_pickpocket_6" + }, + { + "text": "Questo suona come una buona giustificazione", + "nextPhraseID": "thievesguild_pickpocket_6" + } + ] + }, + { + "id": "thievesguild_pickpocket_6", + "message": "Dopo tutto, siamo una gilda di ladri. Cosa ti aspettavi?" + }, + { + "id": "thievesguild_troublemaker_1", + "message": "Ciao. Ci siamo già visti da qualche parte?", + "replies": [ + { + "text": "No, sono sicuro che non ci siamo mai incontrati.", + "nextPhraseID": "thievesguild_troublemaker_3" + }, + { + "text": "Cosa ci fai qua in giro?", + "nextPhraseID": "thievesguild_troublemaker_2" + }, + { + "text": "Posso dare un'occhiata alle provviste che hai disponibili?", + "nextPhraseID": "S" + } + ] + }, + { + "id": "thievesguild_troublemaker_2", + "message": "Tengo d'occhio le provviste per la gilda.", + "replies": [ + { + "text": "Posso guardare cosa hai disponibile?", + "nextPhraseID": "S" + } + ] + }, + { + "id": "thievesguild_troublemaker_3", + "message": "No no, ti riconosco davvero.", + "replies": [ + { + "text": "Devi avermi confuso con qualcun altro.", + "nextPhraseID": "thievesguild_troublemaker_4" + }, + { + "text": "Forse mi hai scambiato con mio fratello Andor.", + "nextPhraseID": "thievesguild_troublemaker_5" + } + ] + }, + { + "id": "thievesguild_troublemaker_4", + "message": "Si, potrebbe.", + "replies": [ + { + "text": "Hai visto mio fratello qui in giro? Mi assomiglia molto.", + "nextPhraseID": "thievesguild_troublemaker_5" + } + ] + }, + { + "id": "thievesguild_troublemaker_5", + "message": "Oh si, adesso mi ricordo. C'era un ragazzo che correva qua intorno facendo un sacco di domande.", + "replies": [ + { + "text": "Sai cosa stava cercando o cosa stava facendo qui?", + "nextPhraseID": "thievesguild_troublemaker_6" + } + ] + }, + { + "id": "thievesguild_troublemaker_6", + "message": "No, non lo so. Mi occupo solo delle provviste.", + "replies": [ + { + "text": "Ok, grazie lo stesso. Arrivederci.", + "nextPhraseID": "X" + }, + { + "text": "Bah, sei inutile. Addio.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_umar.json b/AndorsTrail/res/raw-it/conversationlist_umar.json new file mode 100644 index 000000000..12657f1a3 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_umar.json @@ -0,0 +1,346 @@ +[ + { + "id": "umar_select_1", + "replies": [ + { + "nextPhraseID": "umar_return_1", + "requires": { + "progress": "andor:51" + } + }, + { + "nextPhraseID": "umar_novisit_1" + } + ] + }, + { + "id": "umar_return_1", + "message": "Ben tornato amico mio.", + "replies": [ + { + "text": "Ciao.", + "nextPhraseID": "umar_return_2" + }, + { + "text": "E' stato un piacere conoscerti. Addio.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "umar_return_2", + "message": "C'è nient'altro che possa fare per te?", + "replies": [ + { + "text": "Puoi ripetere quello che mi hai detto su Andor? ", + "nextPhraseID": "umar_5" + }, + { + "text": "E' stato un piacere conoscerti. Addio.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "umar_novisit_1", + "message": "Ciao, come va la tua ricerca?", + "replies": [ + { + "text": "Quale ricerca?", + "nextPhraseID": "umar_2" + } + ] + }, + { + "id": "umar_2", + "message": "L'ultima volta che abbiamo parlato mi hai chiesto del nascondiglio di Lodar. L'hai trovato?", + "replies": [ + { + "text": "Non ci siamo mai incontrati.", + "nextPhraseID": "umar_3" + }, + { + "text": "Devi avermi confuso con mio fratello Andor, ci assomigliamo molto.", + "nextPhraseID": "umar_4" + } + ] + }, + { + "id": "umar_3", + "message": "Oh, devo averti confuso con qualcun altro.", + "replies": [ + { + "text": "Mio fratello Andor, ci assomigliamo molto.", + "nextPhraseID": "umar_4" + } + ] + }, + { + "id": "umar_4", + "message": "Davvero? Non importa, fai pure come se non avessi parlato.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 51 + } + ], + "replies": [ + { + "text": "Questo mi fa pensare che Andor è stato qui. Che cosa stava facendo?", + "nextPhraseID": "umar_5" + } + ] + }, + { + "id": "umar_5", + "message": "E' venuto qui qualche tempo fa, facendo un sacco di domande su ciò che riguarda la gilda dei ladri, l'Ombra e la guardia reale di Feygard.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_6" + } + ] + }, + { + "id": "umar_6", + "message": "Noi della gilda dei ladri non ci interessiamo per nulla all'Ombra, nè tanto meno ci preoccupiamo della guardia reale.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_7" + } + ] + }, + { + "id": "umar_7", + "message": "Cerchiamo di stare al di sopra dei loro battibecchi e delle loro differenze. Possono combattere quanto vogliono, ma la gilda dei ladri sopravviverà ad entrambe le fazioni.", + "replies": [ + { + "text": "Quali battibecchi?", + "nextPhraseID": "umar_conflict_1" + }, + { + "text": "Dimmi di più su ciò che ti ha chiesto Andor.", + "nextPhraseID": "umar_andor_1" + } + ] + }, + { + "id": "umar_conflict_1", + "message": "Dove sei stato nell'ultimo paio d'anni? Non sai nulla del conflitto sulla pozione d'ossa?", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_conflict_2" + } + ] + }, + { + "id": "umar_conflict_2", + "message": "La guardia reale, guidata da Lord Geomyr di Feygard, sta cercando di combattere il recente aumento di attività illegali e quindi impone delle restrizioni maggiori su ciò che è permesso e ciò che non lo è.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_conflict_3" + } + ] + }, + { + "id": "umar_conflict_3", + "message": "I sacerdoti dell'Ombra, per lo più situati a Nor City, si oppongono alle nuove restrizioni, dicendo che limitano le strade che portano all'Ombra.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_conflict_4" + } + ] + }, + { + "id": "umar_conflict_4", + "message": "Gira voce che i sacerdoti dell'Ombra stiano progettando di rovesciare Lord Geomyr e le sue forze.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_conflict_5" + } + ] + }, + { + "id": "umar_conflict_5", + "message": "Si dice anche che i sacerdoti dell'Ombra stiano ancora facendo i loro rituali, nonostante il divieto imposto.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_conflict_6" + } + ] + }, + { + "id": "umar_conflict_6", + "message": "Lord Geomyr e la sua guardia reale, dall'altro, stanno ancora facendo del loro meglio per governare nel modo che ritengono più giusto.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_conflict_7" + } + ] + }, + { + "id": "umar_conflict_7", + "message": "Noi della gilda dei ladri cerchiamo di non farci coinvolgere da tutto questo. I nostri affari finora non ne hanno risentito.", + "replies": [ + { + "text": "Grazie per avermi informato.", + "nextPhraseID": "umar_return_2" + }, + { + "text": "Qualunque cosa sia, non mi riguarda.", + "nextPhraseID": "umar_return_2" + } + ] + }, + { + "id": "umar_andor_1", + "message": "Ha domandato il mio aiuto e mi ha chiesto come trovare Lodar.", + "replies": [ + { + "text": "Chi è Lodar?", + "nextPhraseID": "umar_andor_2" + } + ] + }, + { + "id": "umar_andor_2", + "message": "Lodar? E' uno dei nostri preparatori di pozioni. Può preparare ogni sorta di potenti sonniferi, pozioni di guarigione e cure.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_andor_3" + } + ] + }, + { + "id": "umar_andor_3", + "message": "Ma la sua specialità sono i veleni. Il suo veleno può uccidere anche il più grande dei mostri.", + "replies": [ + { + "text": "E cosa voleva andor da lui ?", + "nextPhraseID": "umar_andor_4" + } + ] + }, + { + "id": "umar_andor_4", + "message": "Io non lo so. Forse era in cerca di qualche pozione.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 55 + } + ], + "replies": [ + { + "text": "Quindi, dove posso trovare questo Lodar?", + "nextPhraseID": "umar_lodar_1" + } + ] + }, + { + "id": "umar_lodar_1", + "message": "Non dovrei dirtelo. Come arrivare a lui è uno dei segreti della gilda. Il suo rifugio è raggiungibile solo dai nostri membri.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_lodar_2" + } + ] + }, + { + "id": "umar_lodar_2", + "message": "Tuttavia, ho sentito che ci hai aiutati a trovare la chiave di Luthor. L'abbiamo cercata per molto tempo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_lodar_3" + } + ] + }, + { + "id": "umar_lodar_3", + "message": "Ok, ti dirò come arrivare al nascondiglio di Lodar. Ma devi promettere di mantenere il segreto. Non dirlo a nessuno. Neppure a quelli che sembrano essere membri della gilda.", + "replies": [ + { + "text": "Ok, prometto di mantenere il segreto.", + "nextPhraseID": "umar_lodar_4" + }, + { + "text": "Non posso darti alcuna garanzia, ma ci proverò.", + "nextPhraseID": "umar_lodar_4" + } + ] + }, + { + "id": "umar_lodar_4", + "message": "Bene. Non solo hai bisogno di trovare il luogo in sé, ma devi anche pronunciare le parole giuste per essere ammesso dal guardiano.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_lodar_5" + } + ] + }, + { + "id": "umar_lodar_5", + "message": "L'unico che capisce la lingua del custode è il vecchio Ogam a Vilegard.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "lodar", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_lodar_6" + } + ] + }, + { + "id": "umar_lodar_6", + "message": "Dovresti andare alla città di Vilegard per trovare Ogam. Lui può aiutati ad ottenere la parola d'ordine per entrare nel nascondiglio di Lodar.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "lodar", + "value": 15 + } + ], + "replies": [ + { + "text": "Come arrivo a Vilegard?", + "nextPhraseID": "umar_vilegard_1" + }, + { + "text": "Grazie, volevo chiederti un'altra cosa.", + "nextPhraseID": "umar_return_2" + }, + { + "text": "Grazie mille, ciao.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "umar_vilegard_1", + "message": "Recati a sud-est di Fallhaven. Quando raggiungi la strada principale e la taverna fiasco schiumoso vai a sud. Non è molto lontano a sud-est di qui.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_return_2" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_vilegard_erttu.json b/AndorsTrail/res/raw-it/conversationlist_vilegard_erttu.json new file mode 100644 index 000000000..1210e8766 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_vilegard_erttu.json @@ -0,0 +1,97 @@ +[ + { + "id": "erttu_1", + "message": "Ciao straniero. Non vogliamo forestieri qui a Vilegard, ma c'è qualcosa di familiare in te.", + "replies": [ + { + "text": "N", + "nextPhraseID": "erttu_default" + } + ] + }, + { + "id": "erttu_default", + "message": "Che cosa vuoi sapere?", + "replies": [ + { + "text": "Perché siete tutti diffidenti verso i forestieri?", + "nextPhraseID": "erttu_distrust_1", + "requires": { + "progress": "vilegard:10" + } + }, + { + "text": "Puoi dirmi qualcosa su Vilegard?", + "nextPhraseID": "erttu_vilegard_1" + } + ] + }, + { + "id": "erttu_distrust_1", + "message": "La maggior parte di noi ha avuto grane fidandosi dei forestieri. Alla fine hanno sempre approfittato di noi!", + "replies": [ + { + "text": "N", + "nextPhraseID": "erttu_distrust_2" + } + ] + }, + { + "id": "erttu_distrust_2", + "message": "Ora siamo sospettosi e chiediamo agli stranieri di aiutarci prima di ottenere la nostra fiducia.", + "replies": [ + { + "text": "N", + "nextPhraseID": "erttu_distrust_3" + } + ] + }, + { + "id": "erttu_distrust_3", + "message": "Inoltre, molte persone ci guardano dall'alto in basso per qualche ragione, soprattutto quegli snob degli abitanti di Feygard e delle città del nord.", + "replies": [ + { + "text": "Cosa puoi dirmi di Vilegard?", + "nextPhraseID": "erttu_vilegard_1" + } + ] + }, + { + "id": "erttu_vilegard_1", + "message": "Abbiamo quasi tutto quello che serve qui a Vilegard. Il fulcro del paese è la cappella.", + "replies": [ + { + "text": "N", + "nextPhraseID": "erttu_vilegard_2" + } + ] + }, + { + "id": "erttu_vilegard_2", + "message": "La cappella è il nostro luogo di culto per l'Ombra, ed anche il posto per raccoglierci e parlare di grandi questioni riguardanti il villaggio.", + "replies": [ + { + "text": "N", + "nextPhraseID": "erttu_vilegard_3" + } + ] + }, + { + "id": "erttu_vilegard_3", + "message": "Oltre alla cappella abbiamo una taverna, un fabbro e un armaiolo.", + "replies": [ + { + "text": "Grazie per le informazioni. C'era qualcos'altro che volevo chiederti.", + "nextPhraseID": "erttu_default" + }, + { + "text": "Grazie per l'informazione, ciao.", + "nextPhraseID": "X" + }, + { + "text": "Wow, niente di più? Mi chiedo che cosa sto facendo in un villaggio insignificante come questo.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_vilegard_shops.json b/AndorsTrail/res/raw-it/conversationlist_vilegard_shops.json new file mode 100644 index 000000000..74cf2365a --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_vilegard_shops.json @@ -0,0 +1,99 @@ +[ + { + "id": "vilegard_armorer_select", + "replies": [ + { + "nextPhraseID": "vilegard_armorer_1", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "vilegard_shop_notrust" + } + ] + }, + { + "id": "vilegard_armorer_1", + "message": "Buongiorno, vuoi dare un'occhiata alle mie armature?.", + "replies": [ + { + "text": "OK, fammi vedere i tuoi articoli.", + "nextPhraseID": "S" + } + ] + }, + { + "id": "vilegard_smith_select", + "replies": [ + { + "nextPhraseID": "vilegard_smith_1", + "requires": { + "progress": "feygard_shipment:56" + } + }, + { + "nextPhraseID": "vilegard_smith_fg_2", + "requires": { + "progress": "feygard_shipment:55" + } + }, + { + "nextPhraseID": "vilegard_smith_1", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "vilegard_shop_notrust" + } + ] + }, + { + "id": "vilegard_smith_1", + "message": "Ciao ragazzo, ho sentito dire che ci hai dato una bella mano qui a Vilegard. Come posso aiutarti?", + "replies": [ + { + "text": "Posso vedere quali oggetti hai in vendita?", + "nextPhraseID": "S" + }, + { + "text": "I have a shipment of Feygard items for you.", + "nextPhraseID": "vilegard_smith_fg_1", + "requires": { + "progress": "feygard_shipment:35", + "item": { + "itemID": "fg_ironsword", + "quantity": 10, + "requireType": 0 + } + } + } + ] + }, + { + "id": "vilegard_shop_notrust", + "message": "Mmmm, sei un forestiero... non ci piacciono i forestieri, sei pregato di andartene.", + "replies": [ + { + "text": "Perché a Vilegard siete tutti così sospettosi verso i forestieri?", + "nextPhraseID": "vilegard_shop_notrust_2" + }, + { + "text": "Posso vedere gli oggetti che hai in vendita?", + "nextPhraseID": "vilegard_shop_notrust_2" + } + ] + }, + { + "id": "vilegard_shop_notrust_2", + "message": "Non mi fido di te, dovresti andare prima a parlare con Jolnor nella cappella, se vuoi ottenere la nostra fiducia!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vilegard", + "value": 10 + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_vilegard_tavern.json b/AndorsTrail/res/raw-it/conversationlist_vilegard_tavern.json new file mode 100644 index 000000000..0391a01a9 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_vilegard_tavern.json @@ -0,0 +1,68 @@ +[ + { + "id": "dunla_default", + "message": "Sembri un tipo furbo, hai bisogno di qualche rifornimento?", + "replies": [ + { + "text": "Certo, fammi vedere quello che hai a disposizione.", + "nextPhraseID": "S" + }, + { + "text": "Cosa puoi dirmi su di te?", + "nextPhraseID": "dunla_1" + } + ] + }, + { + "id": "dunla_1", + "message": "Io? Io non sono nessuno. Non mi hai nemmeno visto, nè tanto meno mi hai parlato." + }, + { + "id": "tharwyn_select", + "replies": [ + { + "nextPhraseID": "tharwyn_1", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "vilegard_shop_notrust" + } + ] + }, + { + "id": "tharwyn_1", + "message": "Ciao. Ho sentito che hai aiutato Jolnor nella cappella. Hai il mio rispetto, amico.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tharwyn_2" + } + ] + }, + { + "id": "tharwyn_2", + "message": "Siediti dove vuoi. Cosa posso fare per te?", + "replies": [ + { + "text": "Fammi vedere cosa hai da mangiare.", + "nextPhraseID": "S" + } + ] + }, + { + "id": "vilegard_tavern_drunk_1", + "message": "Ohh, guarda, un ragazzo sperduto! Ecco, fatti un sorso di idromele!", + "replies": [ + { + "text": "No grazie.", + "nextPhraseID": "X" + }, + { + "text": "Tieni a freno la lingua, ubriacone.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_vilegard_villagers.json b/AndorsTrail/res/raw-it/conversationlist_vilegard_villagers.json new file mode 100644 index 000000000..5e0324cee --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_vilegard_villagers.json @@ -0,0 +1,171 @@ +[ + { + "id": "vilegard_villager_1", + "replies": [ + { + "nextPhraseID": "vilegard_villager_friend", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "vilegard_villager_1_0" + } + ] + }, + { + "id": "vilegard_villager_1_0", + "message": "Ciao. Chi sei? Non sei il benvenuto qui a Vilegard.", + "replies": [ + { + "text": "Hai visto mio fratello Andor da queste parti?", + "nextPhraseID": "vilegard_villager_1_2" + } + ] + }, + { + "id": "vilegard_villager_1_2", + "message": "No non l'ho visto. E se anche fosse, perché dovrei dirlo a te?" + }, + { + "id": "vilegard_villager_2", + "replies": [ + { + "nextPhraseID": "vilegard_villager_friend", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "vilegard_villager_2_0" + } + ] + }, + { + "id": "vilegard_villager_2_0", + "message": "Per l'Ombra, sei un forestiero. Non vogliamo forestieri qui.", + "replies": [ + { + "text": "Perché avete tutti paura dei forestieri a Vilegard?", + "nextPhraseID": "vilegard_villager_5_1" + } + ] + }, + { + "id": "vilegard_villager_3", + "replies": [ + { + "nextPhraseID": "vilegard_villager_friend", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "vilegard_villager_3_0" + } + ] + }, + { + "id": "vilegard_villager_3_0", + "message": "Questa è Vilegard. Non troverai nessun conforto qui, forestiero." + }, + { + "id": "vilegard_villager_4", + "replies": [ + { + "nextPhraseID": "vilegard_villager_friend", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "vilegard_villager_4_0" + } + ] + }, + { + "id": "vilegard_villager_4_0", + "message": "Assomigli ad un ragazzo che girava da queste parti, probabilmente ha causato dei guai, come tutti i forestieri.", + "replies": [ + { + "text": "Hai visto mio fratello Andor?", + "nextPhraseID": "vilegard_villager_1_2" + }, + { + "text": "Non ho intenzione di causare guai.", + "nextPhraseID": "vilegard_villager_4_2" + }, + { + "text": "Oh certo, ho intenzione di causare un sacco di guai.", + "nextPhraseID": "vilegard_villager_4_3" + } + ] + }, + { + "id": "vilegard_villager_4_2", + "message": "No? Io sono sicuro che lo farai. Tutti i forestieri causano guai." + }, + { + "id": "vilegard_villager_4_3", + "message": "Sì, lo so. Ecco perché non ti vogliamo qua in torno. Dovresti lasciare Vilegard ora, finchè sei ancora in tempo." + }, + { + "id": "vilegard_villager_5", + "replies": [ + { + "nextPhraseID": "vilegard_villager_friend", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "vilegard_villager_5_0" + } + ] + }, + { + "id": "vilegard_villager_5_0", + "message": "Ciao straniero. Sembri perso, e ciò è cosa buona. Ora lascia Vilegard finché ti è possibile.", + "replies": [ + { + "text": "Perché a Vilegard tutti diffidano dei forestieri?", + "nextPhraseID": "vilegard_villager_5_1" + } + ] + }, + { + "id": "vilegard_villager_5_1", + "message": "Non mi fido di te. Potresti parlare con Jolnor, nella cappella, se hai bisogno di comprensione.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vilegard", + "value": 10 + } + ] + }, + { + "id": "vilegard_villager_friend", + "message": "Ciao. Ho sentito che ci hai aiutato. Puoi restare tutto il tempo che desideri.", + "replies": [ + { + "text": "Grazie. Hai visto mio fratello Andor qui intorno?", + "nextPhraseID": "vilegard_villager_friend_1" + }, + { + "text": "Grazie, arrivederci.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "vilegard_villager_friend_1", + "message": "tuo fratello? no, non ho visto nessuno che ti somiglia. ma comunque non faccio molto caso agli stranieri .", + "replies": [ + { + "text": "grazie, ciao.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_wilderness.json b/AndorsTrail/res/raw-it/conversationlist_wilderness.json new file mode 100644 index 000000000..fcd5c239d --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_wilderness.json @@ -0,0 +1,74 @@ +[ + { + "id": "fallhaven_bandit", + "message": "Vattene ragazzo, non ho tempo per te.", + "replies": [ + { + "text": "Sto cercando un pezzo dell'incantesimo", + "nextPhraseID": "fallhaven_bandit_2", + "requires": { + "progress": "vacor:20" + } + } + ] + }, + { + "id": "fallhaven_bandit_2", + "message": "No! Vacor non otterrà il potere dell'incantesimo!", + "replies": [ + { + "text": "Combatti!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "bandit1", + "message": "Cosa abbiamo qui? Un viandante perduto?", + "replies": [ + { + "text": "N", + "nextPhraseID": "bandit1_2" + } + ] + }, + { + "id": "bandit1_2", + "message": "Quanto credi che valga la tua vita?? Dammi 100 monete d'oro e ti lascerò andare.", + "replies": [ + { + "text": "Ok ok, ecco l'oro, ti prego non farmi del male!", + "nextPhraseID": "bandit1_3", + "requires": { + "item": { + "itemID": "gold", + "quantity": 100, + "requireType": 0 + } + } + }, + { + "text": "Che ne dici di combattere?", + "nextPhraseID": "bandit1_4" + }, + { + "text": "E quanto vale la tua di vita?", + "nextPhraseID": "bandit1_4" + } + ] + }, + { + "id": "bandit1_3", + "message": "Era ora! Sei libero di andartene." + }, + { + "id": "bandit1_4", + "message": "Ok, la vita è tua. Combattiamo. E' tanto che aspetto un bel combattimento!", + "replies": [ + { + "text": "Combatti!", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/conversationlist_wrye.json b/AndorsTrail/res/raw-it/conversationlist_wrye.json new file mode 100644 index 000000000..c94cbeb68 --- /dev/null +++ b/AndorsTrail/res/raw-it/conversationlist_wrye.json @@ -0,0 +1,488 @@ +[ + { + "id": "wrye_select_1", + "replies": [ + { + "nextPhraseID": "wrye_return_2", + "requires": { + "progress": "wrye:90" + } + }, + { + "nextPhraseID": "wrye_return_1", + "requires": { + "progress": "wrye:40" + } + }, + { + "nextPhraseID": "wrye_mourn_1" + } + ] + }, + { + "id": "wrye_return_1", + "message": "Bentornato. Hai avuto notizie di mio figlio Rincel?", + "replies": [ + { + "text": "Mi puoi ripetere quello che è successo?", + "nextPhraseID": "wrye_mourn_5" + }, + { + "text": "No, non ho ancora saputo nulla.", + "nextPhraseID": "wrye_story_14" + }, + { + "text": "Si, ho scoperto cosa gli è successo.", + "nextPhraseID": "wrye_resolved_1", + "requires": { + "progress": "wrye:80" + } + } + ] + }, + { + "id": "wrye_return_2", + "message": "Bentornato. Grazie per il tuo aiuto nell'aver scoperto cosa è successo a mio figlio.", + "replies": [ + { + "text": "Che l'Ombra sia con te.", + "nextPhraseID": "wrye_story_15" + }, + { + "text": "Prego.", + "nextPhraseID": "wrye_story_15" + } + ] + }, + { + "id": "wrye_mourn_1", + "message": "Che l'Ombra mi aiuti.", + "replies": [ + { + "text": "Qual è il problema?", + "nextPhraseID": "wrye_mourn_2" + } + ] + }, + { + "id": "wrye_mourn_2", + "message": "Mio figlio! Mio figlio è sparito!", + "replies": [ + { + "text": "Jolnor mi ha detto che sarei dovuto venire da te per tuo figlio.", + "nextPhraseID": "wrye_mourn_5", + "requires": { + "progress": "wrye:10" + } + }, + { + "text": "Cosa puoi dirmi di lui?", + "nextPhraseID": "wrye_mourn_3" + } + ] + }, + { + "id": "wrye_mourn_3", + "message": "Non voglio parlarne, non con un forestiero.", + "replies": [ + { + "text": "Forestiero?", + "nextPhraseID": "wrye_mourn_4" + }, + { + "text": "Jolnor mi ha consigliato di venire a sentire la storia di tuo figlio.", + "nextPhraseID": "wrye_mourn_5", + "requires": { + "progress": "wrye:10" + } + } + ] + }, + { + "id": "wrye_mourn_4", + "message": "Ti prego di andartene.\n\nOh, che l'Ombra vegli su di me!" + }, + { + "id": "wrye_mourn_5", + "message": "Mio figlio è morto, lo so! Ed è colpa di quelle maledette guardie, con il loro atteggiamento altezzoso.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_mourn_6" + } + ] + }, + { + "id": "wrye_mourn_6", + "message": "In un primo momento arrivano con promesse di protezione e potere. Ma poi si rivelano per quello che sono.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_mourn_7" + } + ] + }, + { + "id": "wrye_mourn_7", + "message": "Me lo sento, l'Ombra mi parla, lui è morto.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "wrye", + "value": 20 + } + ], + "replies": [ + { + "text": "Mi puoi dire cosa è successo?", + "nextPhraseID": "wrye_story_1" + }, + { + "text": "Di cosa stai parlando?", + "nextPhraseID": "wrye_story_1" + }, + { + "text": "Che l'Ombra sia con te.", + "nextPhraseID": "wrye_mourn_8" + } + ] + }, + { + "id": "wrye_mourn_8", + "message": "Grazie, l'Ombra vegli su di me.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_1" + } + ] + }, + { + "id": "wrye_story_1", + "message": "Tutto è iniziato con l'arrivo della guardia reale di Feygard.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_2" + } + ] + }, + { + "id": "wrye_story_2", + "message": "Hanno fatto pressione su tutti a Vilegard per reclutare nuovi soldati.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_3" + } + ] + }, + { + "id": "wrye_story_3", + "message": "Le guardie dissero di aver bisogno di maggiore supporto per sedare la rivolta e il sabotaggio che suppongono essere in atto.", + "replies": [ + { + "text": "Che relazione c'è fra questo e tuo figlio?", + "nextPhraseID": "wrye_story_4" + }, + { + "text": "Hai intenzione di arrivare al punto in fretta?", + "nextPhraseID": "wrye_story_4" + } + ] + }, + { + "id": "wrye_story_4", + "message": "Mio figlio, Rincel, non si è mai curato troppo delle storie che raccontavano.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_5" + } + ] + }, + { + "id": "wrye_story_5", + "message": "Ho anche detto a Rincel di quanto sbagliata fosse secondo me l'idea di reclutare il popolo nella guardia reale.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_6" + } + ] + }, + { + "id": "wrye_story_6", + "message": "Le guardie sono rimaste qui a Vilegrad un paio di giorni per parlare a tutti, poi credo siano andate in un altro paese.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_7" + } + ] + }, + { + "id": "wrye_story_7", + "message": "Dopo alcuni giorni, Rincel è improvvisamente partito. Sono sicura che quelle guardie siano riuscite a convincerlo ad unirsi a loro.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_8" + } + ] + }, + { + "id": "wrye_story_8", + "message": "Oh, come disprezzo quei bastardi di Feygard!", + "replies": [ + { + "text": "E ora?", + "nextPhraseID": "wrye_story_9" + } + ] + }, + { + "id": "wrye_story_9", + "message": "Questo ormai è successo diverse settimane fa. Sento un vuoto dentro di me ora. So che è successo qualcosa a Rincel.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_10" + } + ] + }, + { + "id": "wrye_story_10", + "message": "Ho paura che sia morto o ferito gravemente. Probabilmente quei bastardi lo hanno mandato incontro a morte certa.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "wrye", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_11" + } + ] + }, + { + "id": "wrye_story_11", + "message": "*sob* Che l'Ombra mi aiuti.", + "replies": [ + { + "text": "Ok, cosa posso fare per aiutarti?", + "nextPhraseID": "wrye_story_13" + }, + { + "text": "Sembra terribile. Ma sono sicuro che è solamente una tua impressione.", + "nextPhraseID": "wrye_story_13" + }, + { + "text": "Ci sono prove che la gente di Feygrad è coinvolta?", + "nextPhraseID": "wrye_story_12" + } + ] + }, + { + "id": "wrye_story_12", + "message": "No, ma me lo sento che c'entrano loro. L'Ombra mi ha parlato.", + "replies": [ + { + "text": "Ok, cosa posso fare per aiutarti?", + "nextPhraseID": "wrye_story_13" + }, + { + "text": "Sembri un po troppo *occupata* con l'Ombra. Non voglio farne parte.", + "nextPhraseID": "wrye_mourn_4" + }, + { + "text": "Non voglio essere coinvolto in questo caso, non vorrei seccare la guardia reale.", + "nextPhraseID": "wrye_mourn_4" + } + ] + }, + { + "id": "wrye_story_13", + "message": "Se vuoi aiutarmi, scopri cosa è successo a mio figlio Rincel.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "wrye", + "value": 40 + } + ], + "replies": [ + { + "text": "Hai qualche idea da dove potrei cominciare?", + "nextPhraseID": "wrye_story_16" + }, + { + "text": "Ok. Voglio andare a cercare tuo figlio, spero ci sia una ricompensa per questo.", + "nextPhraseID": "wrye_story_14" + }, + { + "text": "Per l'Ombra, tuo figlio sarà vendicato.", + "nextPhraseID": "wrye_story_14" + } + ] + }, + { + "id": "wrye_story_14", + "message": "Torna qui appena hai scoperto qualcosa.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_15" + } + ] + }, + { + "id": "wrye_story_15", + "message": "Cammina con l'Ombra." + }, + { + "id": "wrye_story_16", + "message": "Penso potresti chiedere in taverna qui a Vilegard o alla taverna Fiasco Schiumoso a nord di qui.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "wrye", + "value": 41 + } + ], + "replies": [ + { + "text": "Per l'Ombra, tuo figlio sarà vendicato.", + "nextPhraseID": "wrye_story_14" + }, + { + "text": "Ok. Andrò a cercare tuo figlio, spero ci sia una ricompensa per questo.", + "nextPhraseID": "wrye_story_14" + }, + { + "text": "Ok, andrò a cercare tuo figlio e scoprirò cosa gli è successo.", + "nextPhraseID": "wrye_story_14" + } + ] + }, + { + "id": "wrye_resolved_1", + "message": "Ti prego di dirmi cosa gli è successo!", + "replies": [ + { + "text": "Ha lasciato Vilegard per sua volontà, voleva vedere la grande città di Feygard.", + "nextPhraseID": "wrye_resolved_2" + } + ] + }, + { + "id": "wrye_resolved_2", + "message": "Non ci credo...", + "replies": [ + { + "text": "Desiderava segretamente andare a Feygard, ma non osava dirtelo.", + "nextPhraseID": "wrye_resolved_3" + } + ] + }, + { + "id": "wrye_resolved_3", + "message": "Davvero?", + "replies": [ + { + "text": "Ma non ha ottenuto molto, è stato attaccato una notte mentre dormiva.", + "nextPhraseID": "wrye_resolved_4" + } + ] + }, + { + "id": "wrye_resolved_4", + "message": "Attaccato?", + "replies": [ + { + "text": "Si, non poteva resistere ai mostri ed è stato ferito gravemente.", + "nextPhraseID": "wrye_resolved_5" + } + ] + }, + { + "id": "wrye_resolved_5", + "message": "Il mio caro ragazzo.", + "replies": [ + { + "text": "Ho parlato con un uomo che lo ha trovato ferito a morte.", + "nextPhraseID": "wrye_resolved_6" + } + ] + }, + { + "id": "wrye_resolved_6", + "message": "Era ancora vivo?", + "replies": [ + { + "text": "Sì, ma non per molto. Non è sopravvissuto alle ferite. Ora è sepolto a nord ovest di Vilegard.", + "nextPhraseID": "wrye_resolved_7" + } + ] + }, + { + "id": "wrye_resolved_7", + "message": "Oh mio povero ragazzo. Che cosa ho fatto?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "wrye", + "value": 90 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_resolved_8" + } + ] + }, + { + "id": "wrye_resolved_8", + "message": "Ho sempre creduto che la pensasse come me su quegli spocchiosi di Feygard.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_resolved_9" + } + ] + }, + { + "id": "wrye_resolved_9", + "message": "E adesso non c'è più.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_resolved_10" + } + ] + }, + { + "id": "wrye_resolved_10", + "message": "Grazie ancora per aver scoperto che cosa gli è successo ed avermi raccontato la verità.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_resolved_11" + } + ] + }, + { + "id": "wrye_resolved_11", + "message": "Oh mio povero ragazzo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_mourn_4" + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/itemlist_animal.json b/AndorsTrail/res/raw-it/itemlist_animal.json new file mode 100644 index 000000000..ad3dd329b --- /dev/null +++ b/AndorsTrail/res/raw-it/itemlist_animal.json @@ -0,0 +1,58 @@ +[ + { + "id": "hair", + "iconID": "items_misc:48", + "name": "Pelliccia", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "insectwing", + "iconID": "items_misc:52", + "name": "Ala d'insetto", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 3 + }, + { + "id": "bone", + "iconID": "items_misc:44", + "name": "Osso", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "claws", + "iconID": "items_misc:47", + "name": "Artigli", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "shell", + "iconID": "items_misc:54", + "name": "Guscio d'insetto", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "gland", + "iconID": "actorconditions_1:60", + "name": "Ghiandola del veleno", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 15 + }, + { + "id": "rat_tail", + "iconID": "items_misc:38", + "name": "Coda di ratto", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 2 + } +] diff --git a/AndorsTrail/res/raw-it/itemlist_armour.json b/AndorsTrail/res/raw-it/itemlist_armour.json new file mode 100644 index 000000000..14a87eb8f --- /dev/null +++ b/AndorsTrail/res/raw-it/itemlist_armour.json @@ -0,0 +1,260 @@ +[ + { + "id": "shirt1", + "iconID": "items_armours:14", + "name": "Camicia di stoffa", + "category": "bdy_clth", + "baseMarketCost": 16, + "equipEffect": { + "increaseBlockChance": 2 + } + }, + { + "id": "shirt2", + "iconID": "items_armours:14", + "name": "Camicia pregiata", + "category": "bdy_clth", + "baseMarketCost": 72, + "equipEffect": { + "increaseBlockChance": 5 + } + }, + { + "id": "shirt_dmgresist", + "iconID": "items_armours:15", + "name": "Camicia di pelle indurita", + "category": "bdy_lthr", + "displaytype": 4, + "baseMarketCost": 1633, + "equipEffect": { + "increaseBlockChance": 5, + "increaseDamageResistance": 1 + } + }, + { + "id": "armor1", + "iconID": "items_armours:15", + "name": "Armatura di cuoio", + "category": "bdy_lthr", + "baseMarketCost": 464, + "equipEffect": { + "increaseBlockChance": 8 + } + }, + { + "id": "armor2", + "iconID": "items_armours:15", + "name": "Armatura di cuoio migliorata", + "category": "bdy_lthr", + "baseMarketCost": 624, + "equipEffect": { + "increaseBlockChance": 9 + } + }, + { + "id": "armor3", + "iconID": "items_armours:16", + "name": "Armatura rinforzata di cuoio", + "category": "bdy_lthr", + "baseMarketCost": 2407, + "equipEffect": { + "increaseBlockChance": 13 + } + }, + { + "id": "armor4", + "iconID": "items_armours:16", + "name": "Armatura rinforzata di cuoio migliorata", + "category": "bdy_lthr", + "baseMarketCost": 3866, + "equipEffect": { + "increaseBlockChance": 15 + } + }, + { + "id": "hat1", + "iconID": "items_armours:21", + "name": "Cappello verde", + "category": "hd_cloth", + "baseMarketCost": 13, + "equipEffect": { + "increaseBlockChance": 1 + } + }, + { + "id": "hat2", + "iconID": "items_armours:21", + "name": "Cappello verde pregiato", + "category": "hd_cloth", + "baseMarketCost": 25, + "equipEffect": { + "increaseBlockChance": 2 + } + }, + { + "id": "hat3", + "iconID": "items_armours:24", + "name": "Cappello di pelle", + "category": "hd_lthr", + "baseMarketCost": 72, + "equipEffect": { + "increaseBlockChance": 5 + } + }, + { + "id": "hat4", + "iconID": "items_armours:24", + "name": "Cappello di pelle pregiato", + "category": "hd_lthr", + "baseMarketCost": 146, + "equipEffect": { + "increaseBlockChance": 6 + } + }, + { + "id": "gloves1", + "iconID": "items_armours:35", + "name": "Guanti di pelle", + "category": "hnd_lthr", + "baseMarketCost": 23, + "equipEffect": { + "increaseBlockChance": 3 + } + }, + { + "id": "gloves2", + "iconID": "items_armours:35", + "name": "Guanti di pelle pregiati", + "category": "hnd_lthr", + "baseMarketCost": 38, + "equipEffect": { + "increaseBlockChance": 4 + } + }, + { + "id": "gloves3", + "iconID": "items_armours:36", + "name": "Guanti di pitone", + "category": "hnd_cloth", + "baseMarketCost": 72, + "equipEffect": { + "increaseBlockChance": 5 + } + }, + { + "id": "gloves4", + "iconID": "items_armours:36", + "name": "Guanti di pitone pregiati", + "category": "hnd_cloth", + "baseMarketCost": 146, + "equipEffect": { + "increaseBlockChance": 6 + } + }, + { + "id": "shield1", + "iconID": "items_armours:0", + "name": "Scudo rotondo di legno", + "category": "buckler", + "baseMarketCost": 72, + "equipEffect": { + "increaseAttackChance": -2, + "increaseBlockChance": 5 + } + }, + { + "id": "shield3", + "iconID": "items_armours:1", + "name": "Scudo rotondo rinforzato di legno", + "category": "buckler", + "baseMarketCost": 226, + "equipEffect": { + "increaseAttackChance": -5, + "increaseBlockChance": 7 + } + }, + { + "id": "shield4", + "iconID": "items_armours:2", + "name": "Scudo a goccia di legno", + "category": "shld_wd_li", + "baseMarketCost": 464, + "equipEffect": { + "increaseAttackChance": -5, + "increaseBlockChance": 8 + } + }, + { + "id": "shield5", + "iconID": "items_armours:2", + "name": "Scudo a goccia di legno migliorato", + "category": "shld_wd_li", + "baseMarketCost": 624, + "equipEffect": { + "increaseAttackChance": -4, + "increaseBlockChance": 9 + } + }, + { + "id": "boots1", + "iconID": "items_armours:28", + "name": "Stivali di pelle", + "category": "feet_lthr", + "baseMarketCost": 23, + "equipEffect": { + "increaseBlockChance": 3 + } + }, + { + "id": "boots2", + "iconID": "items_armours:28", + "name": "Stivali di pelle pregiati", + "category": "feet_lthr", + "baseMarketCost": 38, + "equipEffect": { + "increaseBlockChance": 4 + } + }, + { + "id": "boots3", + "iconID": "items_armours:29", + "name": "Stivali pitonati", + "category": "feet_lthr", + "baseMarketCost": 146, + "equipEffect": { + "increaseBlockChance": 6 + } + }, + { + "id": "boots5", + "iconID": "items_armours:30", + "name": "Stivali rinforzati", + "category": "feet_mtl_hv", + "baseMarketCost": 226, + "equipEffect": { + "increaseBlockChance": 7 + } + }, + { + "id": "gloves_attack1", + "iconID": "items_armours:35", + "name": "Guanti dell'attacco rapido", + "category": "hnd_lthr", + "baseMarketCost": 150, + "equipEffect": { + "increaseAttackChance": 15, + "increaseBlockChance": -9 + } + }, + { + "id": "gloves_attack2", + "iconID": "items_armours:35", + "name": "Pregiati guanti dell'attacco rapido", + "category": "hnd_lthr", + "baseMarketCost": 221, + "equipEffect": { + "increaseAttackChance": 17, + "increaseBlockChance": -9 + } + } +] diff --git a/AndorsTrail/res/raw-it/itemlist_food.json b/AndorsTrail/res/raw-it/itemlist_food.json new file mode 100644 index 000000000..7270d8d36 --- /dev/null +++ b/AndorsTrail/res/raw-it/itemlist_food.json @@ -0,0 +1,206 @@ +[ + { + "id": "apple_green", + "iconID": "items_consumables:2", + "name": "Mela verde", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 14, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 8, + "chance": 100 + } + ] + } + }, + { + "id": "apple_red", + "iconID": "items_consumables:3", + "name": "Mela rossa", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 22, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 12, + "chance": 100 + } + ] + } + }, + { + "id": "meat", + "iconID": "items_consumables:25", + "name": "Carne", + "category": "animal_e", + "hasManualPrice": 1, + "baseMarketCost": 29, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 2, + "duration": 12, + "chance": 100 + }, + { + "condition": "foodp", + "magnitude": 3, + "duration": 10, + "chance": 10 + } + ] + } + }, + { + "id": "meat_cooked", + "iconID": "items_consumables:27", + "name": "Carne cotta", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 78, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 3, + "duration": 11, + "chance": 100 + } + ] + } + }, + { + "id": "strawberry", + "iconID": "items_consumables:8", + "name": "Fragola", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 3, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 2, + "chance": 100 + } + ] + } + }, + { + "id": "carrot", + "iconID": "items_consumables:15", + "name": "Carota", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 14, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 8, + "chance": 100 + } + ] + } + }, + { + "id": "bread", + "iconID": "items_consumables:21", + "name": "Pane", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 6, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 10, + "chance": 100 + } + ] + } + }, + { + "id": "mushroom", + "iconID": "items_consumables:19", + "name": "Fungo", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 3, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 2, + "chance": 100 + } + ] + } + }, + { + "id": "pear", + "iconID": "items_consumables:9", + "name": "Pera", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 14, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 8, + "chance": 100 + } + ] + } + }, + { + "id": "eggs", + "iconID": "items_consumables:20", + "name": "Uova", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 10, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 6, + "chance": 100 + } + ] + } + }, + { + "id": "radish", + "iconID": "items_consumables:14", + "name": "Rapanello", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 6, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 4, + "chance": 100 + } + ] + } + } +] diff --git a/AndorsTrail/res/raw-it/itemlist_junk.json b/AndorsTrail/res/raw-it/itemlist_junk.json new file mode 100644 index 000000000..9e49939d1 --- /dev/null +++ b/AndorsTrail/res/raw-it/itemlist_junk.json @@ -0,0 +1,50 @@ +[ + { + "id": "rock", + "iconID": "items_misc:28", + "name": "Piccola pietra", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 1 + }, + { + "id": "gem1", + "iconID": "items_misc:0", + "name": "Gemma di vetro", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "gem2", + "iconID": "items_misc:1", + "name": "Gemma di rubino", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 6 + }, + { + "id": "gem3", + "iconID": "items_misc:2", + "name": "Gemma raffinata", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 8 + }, + { + "id": "gem4", + "iconID": "items_misc:3", + "name": "Gemma lavorata", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 13 + }, + { + "id": "gem5", + "iconID": "items_misc:5", + "name": "Gemma raffinata scintillante", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 15 + } +] diff --git a/AndorsTrail/res/raw-it/itemlist_money.json b/AndorsTrail/res/raw-it/itemlist_money.json new file mode 100644 index 000000000..4760d3cce --- /dev/null +++ b/AndorsTrail/res/raw-it/itemlist_money.json @@ -0,0 +1,10 @@ +[ + { + "id": "gold", + "iconID": "items_misc:10", + "name": "Monete d'oro", + "category": "money", + "hasManualPrice": 1, + "baseMarketCost": 1 + } +] diff --git a/AndorsTrail/res/raw-it/itemlist_necklaces.json b/AndorsTrail/res/raw-it/itemlist_necklaces.json new file mode 100644 index 000000000..74ee35fba --- /dev/null +++ b/AndorsTrail/res/raw-it/itemlist_necklaces.json @@ -0,0 +1,35 @@ +[ + { + "id": "jewel_fallhaven", + "iconID": "items_jewelry:6", + "name": "Gemma di Fallhaven", + "category": "neck", + "displaytype": 4, + "baseMarketCost": 3125, + "equipEffect": { + "increaseAttackCost": -1 + } + }, + { + "id": "necklace_shield1", + "iconID": "items_jewelry:7", + "name": "Collana protettiva", + "category": "neck", + "displaytype": 4, + "baseMarketCost": 935, + "equipEffect": { + "increaseBlockChance": 9 + } + }, + { + "id": "necklace_shield2", + "iconID": "items_jewelry:7", + "name": "Collana protettiva", + "category": "neck", + "displaytype": 4, + "baseMarketCost": 1255, + "equipEffect": { + "increaseBlockChance": 12 + } + } +] diff --git a/AndorsTrail/res/raw-it/itemlist_potions.json b/AndorsTrail/res/raw-it/itemlist_potions.json new file mode 100644 index 000000000..87aecf69a --- /dev/null +++ b/AndorsTrail/res/raw-it/itemlist_potions.json @@ -0,0 +1,141 @@ +[ + { + "id": "vial_empty1", + "iconID": "items_consumables:56", + "name": "Piccola fiala vuota", + "category": "flask", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "vial_empty2", + "iconID": "items_consumables:57", + "name": "Fiala vuota", + "category": "flask", + "hasManualPrice": 1, + "baseMarketCost": 4 + }, + { + "id": "vial_empty3", + "iconID": "items_consumables:59", + "name": "Fiasco vuoto", + "category": "flask", + "hasManualPrice": 1, + "baseMarketCost": 6 + }, + { + "id": "vial_empty4", + "iconID": "items_consumables:58", + "name": "Pozione vuota", + "category": "flask", + "hasManualPrice": 1, + "baseMarketCost": 11 + }, + { + "id": "health_minor", + "iconID": "items_consumables:35", + "name": "Pozione curativa piccola", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 5, + "useEffect": { + "increaseCurrentHP": { + "min": 5, + "max": 5 + } + } + }, + { + "id": "health_minor2", + "iconID": "items_consumables:35", + "name": "Pozione curativa piccola", + "category": "pot", + "baseMarketCost": 18, + "useEffect": { + "increaseCurrentHP": { + "min": 5, + "max": 5 + } + } + }, + { + "id": "health", + "iconID": "items_consumables:49", + "name": "Pozione curativa normale", + "category": "pot", + "baseMarketCost": 40, + "useEffect": { + "increaseCurrentHP": { + "min": 10, + "max": 10 + } + } + }, + { + "id": "health_major", + "iconID": "items_consumables:28", + "name": "Pozione curativa grande", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 210, + "useEffect": { + "increaseCurrentHP": { + "min": 40, + "max": 40 + } + } + }, + { + "id": "health_major2", + "iconID": "items_consumables:28", + "name": "Pozione curativa grande", + "category": "pot", + "baseMarketCost": 280, + "useEffect": { + "increaseCurrentHP": { + "min": 40, + "max": 40 + } + } + }, + { + "id": "mead", + "iconID": "items_consumables:51", + "name": "Idromele", + "category": "drink", + "baseMarketCost": 15, + "useEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "milk", + "iconID": "items_consumables:55", + "name": "Latte", + "category": "drink", + "baseMarketCost": 21, + "useEffect": { + "increaseCurrentHP": { + "min": 2, + "max": 2 + } + } + }, + { + "id": "bonemeal_potion", + "iconID": "items_consumables:34", + "name": "Pozione farina d'ossa", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 45, + "useEffect": { + "increaseCurrentHP": { + "min": 40, + "max": 40 + } + } + } +] diff --git a/AndorsTrail/res/raw-it/itemlist_pre0610_unused.json b/AndorsTrail/res/raw-it/itemlist_pre0610_unused.json new file mode 100644 index 000000000..9e3d49a90 --- /dev/null +++ b/AndorsTrail/res/raw-it/itemlist_pre0610_unused.json @@ -0,0 +1,58 @@ +[ + { + "id": "eye", + "iconID": "items_misc:45", + "name": "Occhio", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 6 + }, + { + "id": "bat_wing", + "iconID": "items_misc:46", + "name": "Ala di pipistrello", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "feather", + "iconID": "items_misc:16", + "name": "Piuma", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 6 + }, + { + "id": "red_feather", + "iconID": "items_misc:15", + "name": "Piuma rossa", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 11 + }, + { + "id": "clay", + "iconID": "actorconditions_1:9", + "name": "Blocco di argilla", + "category": "other", + "hasManualPrice": 1, + "baseMarketCost": 1 + }, + { + "id": "gem6", + "iconID": "items_misc:4", + "name": "Gemma luccicante", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 26 + }, + { + "id": "gem8", + "iconID": "actorconditions_1:50", + "name": "Gemma splendente", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 68 + } +] diff --git a/AndorsTrail/res/raw-it/itemlist_quest.json b/AndorsTrail/res/raw-it/itemlist_quest.json new file mode 100644 index 000000000..b6e6df2a8 --- /dev/null +++ b/AndorsTrail/res/raw-it/itemlist_quest.json @@ -0,0 +1,188 @@ +[ + { + "id": "tail_caverat", + "iconID": "items_misc:38", + "name": "Coda di ratto delle caverne", + "category": "animal", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "tail_trainingrat", + "iconID": "items_misc:38", + "name": "Coda di ratto piccolo", + "category": "animal", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "ring_mikhail", + "iconID": "items_jewelry:0", + "name": "Anello di Mikhail", + "category": "ring", + "baseMarketCost": 15, + "equipEffect": { + "increaseAttackChance": 10 + } + }, + { + "id": "neck_irogotu", + "iconID": "items_jewelry:7", + "name": "Collana di Irogotu", + "category": "neck", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 30, + "equipEffect": { + "increaseBlockChance": 5, + "increaseDamageResistance": 1 + } + }, + { + "id": "ring_gandir", + "iconID": "items_jewelry:0", + "name": "Anello di Gandir", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "dagger_venom", + "iconID": "items_weapons:17", + "name": "Pugnale Velenoso", + "category": "dagger", + "displaytype": 3, + "baseMarketCost": 15, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 10, + "increaseCriticalSkill": 5, + "setCriticalMultiplier": 2, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "key_luthor", + "iconID": "items_misc:21", + "name": "Chiave di Luthor", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "calomyran_secrets", + "iconID": "items_books:0", + "name": "Segreti di Calomyran", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "heartstone", + "iconID": "items_misc:6", + "name": "Heartstone", + "category": "gem", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "vacor_spell", + "iconID": "items_books:7", + "name": "Pezzo di incantesimo di Vacor", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "ring_unzel", + "iconID": "items_jewelry:0", + "name": "Anello di Unzel", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "ring_vacor", + "iconID": "items_jewelry:0", + "name": "Anello di Vacor", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "boots_unzel", + "iconID": "items_armours:29", + "name": "Stivali difensivi di Unzel", + "category": "feet_lthr", + "displaytype": 3, + "baseMarketCost": 185, + "equipEffect": { + "increaseBlockChance": 8 + } + }, + { + "id": "boots_vacor", + "iconID": "items_armours:29", + "name": "Stivali dell'attacco di Vacor", + "category": "feet_lthr", + "displaytype": 3, + "baseMarketCost": 185, + "equipEffect": { + "increaseAttackChance": 9, + "increaseBlockChance": 2 + } + }, + { + "id": "necklace_flagstone", + "iconID": "items_jewelry:6", + "name": "Collana del Guardiano di Flagstone", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "packhide", + "iconID": "items_armours:15", + "name": "Wolfpack's animal hide", + "category": "bdy_hide", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 121, + "equipEffect": { + "increaseAttackChance": -15, + "increaseBlockChance": 2, + "increaseDamageResistance": 1 + } + }, + { + "id": "sword_flagstone", + "iconID": "items_weapons:7", + "name": "Flagstone's pride", + "category": "lsword", + "displaytype": 3, + "baseMarketCost": 169, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 21, + "increaseCriticalSkill": 10, + "setCriticalMultiplier": 2, + "increaseAttackDamage": { + "min": 1, + "max": 6 + } + } + } +] diff --git a/AndorsTrail/res/raw-it/itemlist_rings.json b/AndorsTrail/res/raw-it/itemlist_rings.json new file mode 100644 index 000000000..058c4bb69 --- /dev/null +++ b/AndorsTrail/res/raw-it/itemlist_rings.json @@ -0,0 +1,124 @@ +[ + { + "id": "ring_dmg1", + "iconID": "items_jewelry:0", + "name": "Anello del danno +1", + "category": "ring", + "baseMarketCost": 215, + "equipEffect": { + "increaseAttackDamage": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "ring_dmg2", + "iconID": "items_jewelry:1", + "name": "Anello del danno +2", + "category": "ring", + "baseMarketCost": 398, + "equipEffect": { + "increaseAttackDamage": { + "min": 2, + "max": 2 + } + } + }, + { + "id": "ring_dmg5", + "iconID": "items_jewelry:2", + "name": "Anello del danno +5", + "category": "ring", + "displaytype": 4, + "baseMarketCost": 2014, + "equipEffect": { + "increaseAttackDamage": { + "min": 5, + "max": 5 + } + } + }, + { + "id": "ring_dmg6", + "iconID": "items_jewelry:3", + "name": "Anello del danno +6", + "category": "ring", + "displaytype": 4, + "baseMarketCost": 3186, + "equipEffect": { + "increaseAttackDamage": { + "min": 6, + "max": 6 + } + } + }, + { + "id": "ring_block1", + "iconID": "items_jewelry:0", + "name": "Anello di difesa", + "category": "ring", + "displaytype": 4, + "baseMarketCost": 1239, + "equipEffect": { + "increaseBlockChance": 10 + } + }, + { + "id": "ring_block2", + "iconID": "items_jewelry:0", + "name": "Anello di difesa", + "category": "ring", + "displaytype": 4, + "baseMarketCost": 3866, + "equipEffect": { + "increaseBlockChance": 15 + } + }, + { + "id": "ring_atkch1", + "iconID": "items_jewelry:0", + "name": "Anello di attacco", + "category": "ring", + "baseMarketCost": 215, + "equipEffect": { + "increaseAttackChance": 15 + } + }, + { + "id": "ring1", + "iconID": "items_jewelry:0", + "name": "Anello scadente", + "category": "ring", + "hasManualPrice": 1, + "baseMarketCost": 13, + "equipEffect": { + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "ring2", + "iconID": "items_jewelry:0", + "name": "Anello lucidato", + "category": "ring", + "hasManualPrice": 1, + "baseMarketCost": 21, + "equipEffect": { + "increaseBlockChance": 1 + } + }, + { + "id": "ring_jinxed1", + "iconID": "items_jewelry:2", + "name": "Anello iellato del danno e resistenza", + "category": "ring", + "baseMarketCost": 229, + "equipEffect": { + "increaseBlockChance": -9, + "increaseDamageResistance": 1 + } + } +] diff --git a/AndorsTrail/res/raw-it/itemlist_v068.json b/AndorsTrail/res/raw-it/itemlist_v068.json new file mode 100644 index 000000000..3c6c5bdbe --- /dev/null +++ b/AndorsTrail/res/raw-it/itemlist_v068.json @@ -0,0 +1,190 @@ +[ + { + "id": "armor_chain1", + "iconID": "items_armours:17", + "name": "Corazza di maglia arrugginita", + "category": "chmail", + "baseMarketCost": 3629, + "equipEffect": { + "increaseAttackChance": -9, + "increaseBlockChance": 20 + } + }, + { + "id": "armor_chain2", + "iconID": "items_armours:17", + "name": "Corazza di maglia", + "category": "chmail", + "baseMarketCost": 4191, + "equipEffect": { + "increaseAttackChance": -10, + "increaseBlockChance": 22 + } + }, + { + "id": "hat_leather1", + "iconID": "items_armours:24", + "name": "Capello di pelle indurita", + "category": "hd_lthr", + "baseMarketCost": 261, + "equipEffect": { + "increaseAttackChance": -2, + "increaseBlockChance": 7 + } + }, + { + "id": "sleepingmead", + "iconID": "items_consumables:51", + "name": "Preparato di Idromele soporifero", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "ffguard_qitem", + "iconID": "items_jewelry:0", + "name": "Anello pattuglia di Feygard", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "shield6", + "iconID": "items_armours:3", + "name": "Scudo a torre di legno", + "category": "shld_twr", + "baseMarketCost": 952, + "equipEffect": { + "increaseAttackChance": -6, + "increaseBlockChance": 12 + } + }, + { + "id": "shield7", + "iconID": "items_armours:3", + "name": "Scudo a torre di legno rinforzato", + "category": "shld_twr", + "baseMarketCost": 1538, + "equipEffect": { + "increaseAttackChance": -6, + "increaseBlockChance": 14 + } + }, + { + "id": "club_wood1", + "iconID": "items_weapons:44", + "name": "Mazza pesante di ferro ", + "category": "mace", + "baseMarketCost": 950, + "equipEffect": { + "increaseAttackCost": 8, + "increaseAttackChance": 15, + "increaseCriticalSkill": 5, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 2, + "max": 11 + } + } + }, + { + "id": "club_wood2", + "iconID": "items_weapons:44", + "name": "Mazza pesante di ferro bilanciata", + "category": "mace", + "baseMarketCost": 2194, + "equipEffect": { + "increaseAttackCost": 7, + "increaseAttackChance": 10, + "increaseCriticalSkill": 10, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 2, + "max": 11 + } + } + }, + { + "id": "gloves_grip", + "iconID": "items_armours:35", + "name": "Guanti dalla presa migliorata", + "category": "hnd_lthr", + "baseMarketCost": 471, + "equipEffect": { + "increaseAttackChance": 9, + "increaseBlockChance": 1 + } + }, + { + "id": "gloves_fancy", + "iconID": "items_armours:35", + "name": "Guanti bizzarri", + "category": "hnd_cloth", + "baseMarketCost": 78, + "equipEffect": { + "increaseAttackChance": 5 + } + }, + { + "id": "ring_crit1", + "iconID": "items_jewelry:0", + "name": "Anello del colpo", + "category": "ring", + "displaytype": 4, + "baseMarketCost": 2921, + "equipEffect": { + "increaseCriticalSkill": 5 + } + }, + { + "id": "ring_crit2", + "iconID": "items_jewelry:0", + "name": "Anello del colpo violento", + "category": "ring", + "displaytype": 4, + "baseMarketCost": 3455, + "equipEffect": { + "increaseAttackChance": -3, + "increaseCriticalSkill": 7 + } + }, + { + "id": "armor_stone", + "iconID": "items_armours:17", + "name": "Corazza di pietra", + "category": "bdy_hv", + "displaytype": 3, + "baseMarketCost": 52, + "equipEffect": { + "increaseAttackCost": 2, + "increaseBlockChance": 22, + "increaseDamageResistance": 1 + } + }, + { + "id": "ring_shadow0", + "iconID": "items_jewelry:2", + "name": "Anello delle ombre minori", + "category": "ring", + "displaytype": 2, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackChance": 25, + "increaseCriticalSkill": 6, + "increaseAttackDamage": { + "min": 4, + "max": 7 + }, + "increaseBlockChance": 5, + "addedConditions": [ + { + "condition": "regen", + "magnitude": 1 + } + ] + } + } +] diff --git a/AndorsTrail/res/raw-it/itemlist_v069.json b/AndorsTrail/res/raw-it/itemlist_v069.json new file mode 100644 index 000000000..4c01e64ca --- /dev/null +++ b/AndorsTrail/res/raw-it/itemlist_v069.json @@ -0,0 +1,464 @@ +[ + { + "id": "rapier_lifesteal", + "iconID": "items_weapons:71", + "name": "Stocco Rubavita", + "category": "rapier", + "displaytype": 2, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxHP": 5, + "increaseAttackCost": 5, + "increaseAttackChance": 21, + "increaseAttackDamage": { + "min": 1, + "max": 6 + } + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 0, + "max": 3 + } + }, + "killEffect": { + "increaseCurrentHP": { + "min": 3, + "max": 3 + } + } + }, + { + "id": "dagger_barbed", + "iconID": "items_weapons:17", + "name": "Pugnale spinato", + "category": "dagger", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 15, + "increaseBlockChance": 5 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "bleeding_wound", + "magnitude": 1, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "elytharan_redeemer", + "iconID": "items_weapons:70", + "name": "Redentore Elytharan", + "category": "2hsword", + "displaytype": 2, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxAP": 2, + "increaseAttackCost": 5, + "increaseAttackChance": 25, + "increaseAttackDamage": { + "min": 3, + "max": 8 + }, + "increaseBlockChance": 5, + "addedConditions": [ + { + "condition": "bless", + "magnitude": 1 + } + ] + } + }, + { + "id": "clouded_rage", + "iconID": "items_weapons:71", + "name": "Spada Rabbia dell'Ombra", + "category": "rapier", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 21, + "increaseAttackDamage": { + "min": 3, + "max": 6 + }, + "increaseBlockChance": 5 + }, + "killEffect": { + "conditionsSource": [ + { + "condition": "rage_minor", + "magnitude": 1, + "duration": 1, + "chance": 50 + } + ] + } + }, + { + "id": "shadow_slayer", + "iconID": "items_weapons:60", + "name": "Ombra che uccide", + "category": "axe2h", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxAP": 2, + "increaseAttackCost": 7, + "increaseAttackChance": 25, + "increaseCriticalSkill": 10, + "setCriticalMultiplier": 2, + "increaseAttackDamage": { + "min": 5, + "max": 9 + } + }, + "killEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "ring_shadow_embrace", + "iconID": "items_jewelry:0", + "name": "Anello Abbraccio dell'Ombra", + "category": "ring", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxHP": 20, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 2, + "max": 2 + } + } + }, + { + "id": "bwm_dagger", + "iconID": "items_weapons:19", + "name": "Pugnale di Blackwater", + "category": "dagger", + "displaytype": 4, + "hasManualPrice": 1, + "baseMarketCost": 539, + "equipEffect": { + "increaseAttackCost": 3, + "increaseAttackChance": 40, + "increaseAttackDamage": { + "min": 1, + "max": 1 + }, + "increaseBlockChance": 5, + "addedConditions": [ + { + "condition": "blackwater_misery", + "magnitude": 1 + } + ] + } + }, + { + "id": "bwm_dagger_venom", + "iconID": "items_weapons:19", + "name": "Pugnale avvelenato di Blackwater", + "category": "dagger", + "displaytype": 4, + "hasManualPrice": 1, + "baseMarketCost": 1552, + "equipEffect": { + "increaseAttackCost": 3, + "increaseAttackChance": 45, + "increaseAttackDamage": { + "min": 1, + "max": 1 + }, + "addedConditions": [ + { + "condition": "blackwater_misery", + "magnitude": 1 + } + ] + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_weak", + "magnitude": 1, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "bwm_ironsword", + "iconID": "items_weapons:0", + "name": "Spada di ferro di Blackwater", + "category": "lsword", + "displaytype": 4, + "hasManualPrice": 1, + "baseMarketCost": 1224, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 50, + "increaseAttackDamage": { + "min": 3, + "max": 7 + }, + "increaseBlockChance": 5, + "addedConditions": [ + { + "condition": "blackwater_misery", + "magnitude": 1 + } + ] + } + }, + { + "id": "bwm_leather_armour", + "iconID": "items_armours:15", + "name": "Armatura in pelle di Blackwater", + "category": "bdy_lthr", + "displaytype": 4, + "hasManualPrice": 1, + "baseMarketCost": 2551, + "equipEffect": { + "increaseBlockChance": 25, + "increaseDamageResistance": 1, + "addedConditions": [ + { + "condition": "blackwater_misery", + "magnitude": 1 + } + ] + } + }, + { + "id": "bwm_leather_cap", + "iconID": "items_armours:24", + "name": "Cappuccio in pelle di Blackwater", + "category": "hd_lthr", + "displaytype": 4, + "hasManualPrice": 1, + "baseMarketCost": 722, + "equipEffect": { + "increaseMaxHP": 5, + "increaseBlockChance": 21, + "addedConditions": [ + { + "condition": "blackwater_misery", + "magnitude": 1 + } + ] + } + }, + { + "id": "bwm_combat_ring", + "iconID": "items_jewelry:2", + "name": "Anello da combattimento di Blackwater", + "category": "ring", + "displaytype": 4, + "hasManualPrice": 1, + "baseMarketCost": 595, + "equipEffect": { + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 0, + "max": 7 + }, + "addedConditions": [ + { + "condition": "blackwater_misery", + "magnitude": 1 + } + ] + } + }, + { + "id": "bwm_brew", + "iconID": "items_consumables:51", + "name": "Infuso di Blackwater", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 57, + "useEffect": { + "increaseCurrentHP": { + "min": 15, + "max": 15 + }, + "conditionsSource": [ + { + "condition": "intoxicated", + "magnitude": 1, + "duration": 10, + "chance": 100 + } + ] + } + }, + { + "id": "woodcutter_hatchet", + "iconID": "items_weapons:57", + "name": "Ascia da taglialegna", + "category": "axe", + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 9, + "increaseAttackDamage": { + "min": 6, + "max": 12 + } + } + }, + { + "id": "woodcutter_boots", + "iconID": "items_armours:30", + "name": "Stivali da taglialegna", + "category": "feet_lthr", + "baseMarketCost": 873, + "equipEffect": { + "increaseMaxHP": 1, + "increaseAttackChance": 3, + "increaseBlockChance": 8 + } + }, + { + "id": "heavy_club", + "iconID": "items_weapons:44", + "name": "Randello pesante", + "category": "mace", + "baseMarketCost": 1229, + "equipEffect": { + "increaseAttackCost": 7, + "increaseAttackChance": 15, + "increaseCriticalSkill": 5, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 2, + "max": 15 + } + } + }, + { + "id": "pot_speed_1", + "iconID": "items_consumables:41", + "name": "Pozione minore della velocità", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 261, + "useEffect": { + "conditionsSource": [ + { + "condition": "speed_minor", + "magnitude": 1, + "duration": 5, + "chance": 100 + } + ] + } + }, + { + "id": "pot_poison_weak", + "iconID": "items_consumables:40", + "name": "Veleno leggero", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 125, + "useEffect": { + "conditionsSource": [ + { + "condition": "poison_weak", + "magnitude": 1, + "duration": 5, + "chance": 100 + } + ] + } + }, + { + "id": "pot_poison_weak_antidote", + "iconID": "items_consumables:54", + "name": "Antidoto veleno leggero", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 337, + "useEffect": { + "conditionsSource": [ + { + "condition": "poison_weak", + "magnitude": -99, + "chance": 100 + } + ] + } + }, + { + "id": "pot_bleeding_ointment", + "iconID": "items_consumables:35", + "name": "Unguento per ferite sanguinanti", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 310, + "useEffect": { + "conditionsSource": [ + { + "condition": "bleeding_wound", + "magnitude": -99, + "chance": 100 + } + ] + } + }, + { + "id": "pot_fatigue_restore", + "iconID": "items_consumables:41", + "name": "Ripristino fatica", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 210, + "useEffect": { + "conditionsSource": [ + { + "condition": "fatigue_minor", + "magnitude": -99, + "chance": 100 + } + ] + } + }, + { + "id": "pot_blind_rage", + "iconID": "items_consumables:63", + "name": "Pozione di rabbia cieca", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 495, + "useEffect": { + "conditionsSource": [ + { + "condition": "rage_minor", + "magnitude": 1, + "duration": 5, + "chance": 100 + } + ] + } + } +] diff --git a/AndorsTrail/res/raw-it/itemlist_v069_2.json b/AndorsTrail/res/raw-it/itemlist_v069_2.json new file mode 100644 index 000000000..48e96cf66 --- /dev/null +++ b/AndorsTrail/res/raw-it/itemlist_v069_2.json @@ -0,0 +1,38 @@ +[ + { + "id": "rusted_iron_sword", + "iconID": "items_weapons:0", + "name": "Spada di ferro arrugginita", + "category": "lsword", + "baseMarketCost": 52, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "broken_buckler", + "iconID": "items_armours:0", + "name": "Scudo rotto di legno", + "category": "buckler", + "baseMarketCost": 120, + "equipEffect": { + "increaseAttackChance": -5, + "increaseBlockChance": 1 + } + }, + { + "id": "used_gloves", + "iconID": "items_armours:35", + "name": "Guanti macchiati di sangue", + "category": "hnd_lthr", + "baseMarketCost": 56, + "equipEffect": { + "increaseBlockChance": 1 + } + } +] diff --git a/AndorsTrail/res/raw-it/itemlist_v069_questitems.json b/AndorsTrail/res/raw-it/itemlist_v069_questitems.json new file mode 100644 index 000000000..765fc33ef --- /dev/null +++ b/AndorsTrail/res/raw-it/itemlist_v069_questitems.json @@ -0,0 +1,58 @@ +[ + { + "id": "bwm_claws", + "iconID": "items_misc:47", + "name": "Artiglio di dragone bianco", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 35 + }, + { + "id": "bwm_permit", + "iconID": "items_books:8", + "name": "Documento falso per Blackwater", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "bjorgur_dagger", + "iconID": "items_weapons:14", + "name": "Pugnale dei Bjorgur", + "category": "dagger", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackCost": 5 + } + }, + { + "id": "q_kazaul_vial", + "iconID": "items_consumables:57", + "name": "Fiala della purificazione dello spirito", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "guthbered_id", + "iconID": "items_jewelry:0", + "name": "Anello di Guthbered", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "harlenn_id", + "iconID": "items_jewelry:0", + "name": "Anello di Harlenn", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + } +] diff --git a/AndorsTrail/res/raw-it/itemlist_weapons.json b/AndorsTrail/res/raw-it/itemlist_weapons.json new file mode 100644 index 000000000..c259f0447 --- /dev/null +++ b/AndorsTrail/res/raw-it/itemlist_weapons.json @@ -0,0 +1,255 @@ +[ + { + "id": "club1", + "iconID": "items_weapons:42", + "name": "Clava", + "category": "club", + "baseMarketCost": 7, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "club3", + "iconID": "items_weapons:44", + "name": "Mazza di ferro", + "category": "mace", + "baseMarketCost": 253, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 2, + "max": 7 + } + } + }, + { + "id": "ironsword0", + "iconID": "items_weapons:0", + "name": "Spada di ferro", + "category": "lsword", + "baseMarketCost": 12, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "hammer0", + "iconID": "items_weapons:45", + "name": "Martello di ferro", + "category": "hammer", + "baseMarketCost": 12, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "hammer1", + "iconID": "items_weapons:45", + "name": "Martellone", + "category": "hammer2h", + "baseMarketCost": 121, + "equipEffect": { + "increaseAttackCost": 10, + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 4, + "max": 7 + } + } + }, + { + "id": "dagger0", + "iconID": "items_weapons:14", + "name": "Pugnale di ferro", + "category": "dagger", + "baseMarketCost": 12, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "dagger1", + "iconID": "items_weapons:14", + "name": "Puganle di ferro affilato", + "category": "dagger", + "baseMarketCost": 53, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 20, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "dagger2", + "iconID": "items_weapons:14", + "name": "Pugnale di ferro migliorato", + "category": "dagger", + "baseMarketCost": 70, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 25, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "shortsword1", + "iconID": "items_weapons:15", + "name": "Spada corta di ferro", + "category": "ssword", + "baseMarketCost": 78, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 15, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "ironsword1", + "iconID": "items_weapons:0", + "name": "Spada di ferro", + "category": "lsword", + "baseMarketCost": 78, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 1, + "max": 3 + } + } + }, + { + "id": "ironsword2", + "iconID": "items_weapons:1", + "name": "Spada lunga di ferro", + "category": "lsword", + "baseMarketCost": 121, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 1, + "max": 4 + } + } + }, + { + "id": "broadsword1", + "iconID": "items_weapons:5", + "name": "Spadone di ferro", + "category": "bsword", + "baseMarketCost": 251, + "equipEffect": { + "increaseAttackCost": 7, + "increaseAttackChance": 2, + "increaseAttackDamage": { + "min": 1, + "max": 10 + } + } + }, + { + "id": "broadsword2", + "iconID": "items_weapons:6", + "name": "Spadone di acciaio", + "category": "bsword", + "baseMarketCost": 582, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 15, + "increaseAttackDamage": { + "min": 3, + "max": 10 + } + } + }, + { + "id": "steelsword1", + "iconID": "items_weapons:7", + "name": "Spada di acciaio", + "category": "lsword", + "baseMarketCost": 874, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 24, + "increaseAttackDamage": { + "min": 3, + "max": 7 + } + } + }, + { + "id": "axe1", + "iconID": "items_weapons:56", + "name": "Accetta", + "category": "axe", + "baseMarketCost": 24, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 1, + "max": 3 + } + } + }, + { + "id": "axe2", + "iconID": "items_weapons:56", + "name": "Ascia di ferro", + "category": "axe", + "baseMarketCost": 312, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 2, + "max": 5 + } + } + }, + { + "id": "quickdagger1", + "iconID": "items_weapons:14", + "name": "Pugnale del colpo rapido", + "category": "dagger", + "displaytype": 4, + "baseMarketCost": 512, + "equipEffect": { + "increaseAttackCost": 3, + "increaseAttackChance": 20, + "increaseBlockChance": -20 + } + } +] diff --git a/AndorsTrail/res/raw-it/questlist.json b/AndorsTrail/res/raw-it/questlist.json new file mode 100644 index 000000000..7a53ccf02 --- /dev/null +++ b/AndorsTrail/res/raw-it/questlist.json @@ -0,0 +1,387 @@ +[ + { + "id": "andor", + "name": "Cerca Andor", + "showInLog": 1, + "stages": [ + { + "progress": 1, + "logText": "Mio padre Mikhail dice che Andor non è a casa da ieri. Dovrei andare a cercarlo nel villaggio.", + "finishesQuest": 0 + }, + { + "progress": 10, + "logText": "Leonid dice di aver visto Andor parlare con Gruil. Dovrei chiedere informazioni a Gruil.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Gruil vuole una ghiandola di veleno per darmi qualche informazione. Dice che alcuni serpenti velenosi la posseggono.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Gruil dice che Andor era alla ricerca di uno che si chiama Umar. Dovrei andare a chiedere al suo amico Gaela a est di Fallhaven.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Ho parlato con Gaela a Fallhaven. Mi ha detto di andare a trovare Bucus e chiedergli informazioni circa la gilda dei ladri.", + "finishesQuest": 0 + }, + { + "progress": 50, + "logText": "Bucus mi ha permesso di entrare nella botola nella casa abbandonata a Fallhaven. Dovrei andare a parlare con Umar.", + "finishesQuest": 0 + }, + { + "progress": 51, + "logText": "Umar della gilda dei ladri di Fallhaven sembrava conoscermi, deve avermi confuso con Andor. A quanto pare, Andor l'ha incontrato.", + "finishesQuest": 0 + }, + { + "progress": 55, + "logText": "Umar mi ha detto che Andor è andato a cercare Lodar, l'alchimista. Dovrei cercare il suo rifugio.", + "finishesQuest": 0 + }, + { + "progress": 61, + "logText": "I heard a story in Loneford, where it seemed like Andor had been in Loneford, and that he might have had something to do with the illness that the people are suffering from there. I am not sure if it actually was Andor. If it was Andor, why would he have made the people of Loneford ill?", + "finishesQuest": 0 + } + ] + }, + { + "id": "mikhail_bread", + "name": "Pane per la colazione", + "showInLog": 1, + "stages": [ + { + "progress": 100, + "logText": "Ho portato il pane a Mikhail.", + "finishesQuest": 1 + }, + { + "progress": 10, + "logText": "Mikhail vuole che vada a comprargli del pane da Mara al municipio.", + "finishesQuest": 0 + } + ] + }, + { + "id": "mikhail_rats", + "name": "Topi!", + "showInLog": 1, + "stages": [ + { + "progress": 100, + "logText": "Ho ucciso i due ratti nel nostro giardino.", + "rewardExperience": 20, + "finishesQuest": 1 + }, + { + "progress": 10, + "logText": "Mikhail vuole che vada a controllare il nostro giardino per alcuni ratti. Devo uccidere i ratti e tornare da Mikhail. Se mi faccio male, posso tornare a letto e riposare per ripristinare la salute.", + "finishesQuest": 0 + } + ] + }, + { + "id": "leta", + "name": "Marito scomparso", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Leta del villaggio di Crossglen vuole che cerchi suo marito Oromir.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Ho trovato Oromir nel villaggio di Crossglen, si stava nascondendo da Leta.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "Ho detto a Leta che Oromir si nasconde nel villaggio di Crossglen.", + "rewardExperience": 50, + "finishesQuest": 1 + } + ] + }, + { + "id": "odair", + "name": "Infestazione di topi", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Odair mi chiede di pulire la grotta dall'invasione dei ratti. In particolare di uccidere il topo più grosso e poi tornare da lui.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "Ho aiutato Odair ad eliminare i ratti nella grotta-magazzino al villaggio di Crossglen.", + "rewardExperience": 300, + "finishesQuest": 1 + } + ] + }, + { + "id": "bonemeal", + "name": "Sostanze vietate", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Leonid del municipio di Crossglen mi dice che c'era un problema in paese qualche settimana fa. A quanto pare, Lord Geomyr ha vietato qualsiasi uso di farine animali come sostanza di guarigione.\n\nTharal, il sacerdote della città dovrebbe saperne di più.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Tharal non vuole parlare di farina d'ossa. Potrei convincerlo portandogli 5 ali d'insetto.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Tharal dice che la farina d'ossa è molto potente come sostanza guaritrice, ed è abbastanza scocciato dal fatto che sia diventata illegale. Dovrei andare a vedere Thoronir a Fallhaven se voglio saperne di più. Dovrei dirgli la password 'Bagliore dell'Ombra'.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Ho parlato con Thoronir a Fallhaven. Egli potrebbe creare una pozione di farina d'ossa se gli porto 5 ossa. Dovrebbero esserci alcuni scheletri in una casa abbandonata a nord di Fallhaven.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "Ho portato le ossa a Thoronir. Ora è in grado di preparare la pozione.\nPerò devo fare attenzione ad usarla, Lord Geomyr ne ha vietato l'uso.", + "rewardExperience": 900, + "finishesQuest": 1 + } + ] + }, + { + "id": "jan", + "name": "Amici di Fallen", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Jan mi racconta la storia sua, di Gandir e Irogotu. I tre amici hanno scavato una miniera per cercare un tesoro, ma hanno litigato. Irogotu in preda alla rabbia ha ucciso Gandir, rubandogli un anello.\nDovrei prendere l'anello a Irogotu e riportarlo a Jan.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "Ho portato l'anello di Gandir a Jan e vendicato il suo amico. Irogotu è morto.", + "rewardExperience": 1500, + "finishesQuest": 1 + } + ] + }, + { + "id": "bucus", + "name": "Chiave di Luthor", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Bucus a Fallhaven potrebbe sapere qualcosa di Andor. Ma vuole la chiave di Luthor che è nelle catacombe sotto la chiesa di Fallhaven.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Le catacombe sotto la chiesa di Fallhaven sono chiuse. Athamyr è l'unico che ha sia il permesso che il coraggio di entrarvi. Dovrei andare a trovarlo nella sua casa a sud-ovest della chiesa.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Athamyr vuole un po' di carne cotta, e poi forse mi dirà qualcosa di più.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Ho portato la carne cotta ad Athamyr.", + "rewardExperience": 700, + "finishesQuest": 0 + }, + { + "progress": 50, + "logText": "Athamyr mi ha dato il permesso di entrare nelle catacombe sotto la chiesa Fallhaven.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "Ho portato a Bucus la chiave di Luthor.", + "rewardExperience": 2150, + "finishesQuest": 1 + } + ] + }, + { + "id": "fallhavendrunk", + "name": "Racconto dell'ubriaco", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Un ubriaco fuori dalla taverna di Fallhaven ha iniziato a raccontarmi la sua storia, ma per continuare vuole che io gli porti dell'idromele. Non so se la sua storia porterà a qualcosa.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "L'ubriaco mi ha detto che aveva l'abitudine di viaggiare con Unnmir. Dovrei andare a parlare con Unnmir.", + "finishesQuest": 1 + } + ] + }, + { + "id": "calomyran", + "name": "I segreti di Calomyran", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Un vecchio di Fallhaven ha perso il suo libro 'Calomyran Secrets'. Dovrei andare a cercarlo. Forse nella casa di Arcir a sud?", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Ho trovato una pagina strappata da un libro intitolato 'Calomyran Secrets' con il nome di 'Larcal' scritto sopra.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "Ho dato il libro al vecchio.", + "rewardExperience": 600, + "finishesQuest": 1 + } + ] + }, + { + "id": "nocmar", + "name": "Tesori perduti", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Unnmir mi ha detto che era un avventuriero, e mi ha dato il suggerimento di andare a trovare Nocmar. La sua casa è a sud-ovest della taverna di Fallhaven.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Nocmar mi dice di essere un fabbro. Ma Lord Geomyr ha vietato l'uso di Acciaio puro, così non può forgiare più le sue armi.\nSe riesco a trovare una Pietra pura e portargliela, dovrebbe essere in grado di forgiare il nuovo Acciaio puro!", + "finishesQuest": 0 + }, + { + "progress": 200, + "logText": "Ho trovato una Pietra pura per Nocmar. Ora avrà degli oggetti di Acciaio puro da vendere.", + "rewardExperience": 1200, + "finishesQuest": 1 + } + ] + }, + { + "id": "flagstone", + "name": "Antichi segreti", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Ho incontrato una guardia all'esterno di una fortezza chiamata Flagstone. La guardia mi ha parlato di Flagstone dicendomi che esso era un campo di prigionia per i lavoratori in fuga dal Monte Galmore. Recentemente c'è stato un aumento di mostri non-morti che fuoriuscivano da Flagstone. Dovrei studiare l'origine dei mostri non-morti. La guardia mi dice di tornare a lui se ho bisogno di aiuto.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Ho trovato un tunnel scavato sotto Flagstone, che sembra portare a una grotta più grande. La grotta è sorvegliata da un demone a cui non sono nemmeno in grado di avvicinarmi. Forse la guardia fuori Flagstone ne sa di più?", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "La guardia mi dice che l'ex guardiano di Flagstone portava sempre una collana con se. La collana probabilmente contiene le informazioni per avvicinarsi al demone. Dovrei tornare dalla guardia per le informazioni della collana, una volta che l'avrò trovata.", + "finishesQuest": 0 + }, + { + "progress": 31, + "logText": "Ho trovato l'ex guardiano di Flagstone, era al piano superiore.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Ho imparato la formula per avvicinarmi al demone. 'Daylight Shadow'.", + "rewardExperience": 1600, + "finishesQuest": 0 + }, + { + "progress": 50, + "logText": "Nei sotterranei di Flagstone, ho trovato la fonte di creazione dei non morti. Una creatura nata dal dolore degli ex prigionieri.", + "finishesQuest": 0 + }, + { + "progress": 60, + "logText": "Ho trovato un prigioniero vivo, Narael, nei sotterranei di Flagstone. Narael una volta era un cittadino di Nor City. E' troppo debole per camminare, ma se riesco a trovare la moglie, in città, verrei ricompensato.", + "rewardExperience": 2100, + "finishesQuest": 1 + } + ] + }, + { + "id": "vacor", + "name": "Pezzi mancanti", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Un mago chiamato Vacor nel sud-ovest di Fallhaven ha cercato di lanciare un incantesimo di fenditura.\nC'è qualcosa che non va in lui, sembrava molto ossessionato dal suo incantesimo. Sta cercando di ottenere un qualche tipo di forza da esso.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Vacor vuole che io gli porti i quattro pezzi dell'incantesimo che gli è stato rubato. I banditi dovrebbero essere da qualche parte a sud di Fallhaven.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Ho portato i quattro pezzi dell'incantesimo a Vacor.", + "rewardExperience": 1200, + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Vacor mi racconta del suo ex apprendista Unzel, che aveva iniziato a mettere in discussione Vacor. Vacor ora vuole uccidere Unzel. Dovrei essere in grado di trovarlo a sud-ovest, fuori di Fallhaven. Dovrei portare il suo anello con sigillo a Vacor una volta che l'ho ucciso.", + "finishesQuest": 0 + }, + { + "progress": 50, + "logText": "Unzel mi dà la scelta di schierarmi con lui o con Vacor.", + "finishesQuest": 0 + }, + { + "progress": 51, + "logText": "Ho scelto di schierarmi con Unzel. Dovrei andare a sud-ovest di Fallhaven a parlare con Vacor circa Unzel e l'Ombra.", + "finishesQuest": 0 + }, + { + "progress": 53, + "logText": "Ho iniziato a lottare con Unzel. Vorrei portare il suo anello a Vacor una volta ucciso.", + "finishesQuest": 0 + }, + { + "progress": 54, + "logText": "Ho iniziato a lottare con Vacor. Vorrei portare il suo anello a Unzel una volta ucciso.", + "finishesQuest": 0 + }, + { + "progress": 60, + "logText": "Ho ucciso Unzel e ho informato Vacor.", + "rewardExperience": 1600, + "finishesQuest": 1 + }, + { + "progress": 61, + "logText": "Ho ucciso Vacor e ho informato Unzel.", + "rewardExperience": 1600, + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/questlist_v068.json b/AndorsTrail/res/raw-it/questlist_v068.json new file mode 100644 index 000000000..3ffe0bf0a --- /dev/null +++ b/AndorsTrail/res/raw-it/questlist_v068.json @@ -0,0 +1,211 @@ +[ + { + "id": "farrik", + "name": "Visite notturne", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Farrik della gilda dei ladri di Fallhaven mi ha raccontato di un piano per aiutare un loro compagno a fuggire dalla prigione di Fallhaven.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Farrik della gilda dei ladri di Fallhaven mi ha raccontato i dettagli del piano e ho accettato di aiutarlo. Il capitano della guardia ha un problema con l'alcol. Il piano si prefigura così: io dovrei offrire un idromele, preparato appositamente del cuoco della gilda dei ladri, al capitano in modo che lo metta fuori combattimento. Potrebbe essere necessario corrompere il capitano.", + "finishesQuest": 0 + }, + { + "progress": 25, + "logText": "Ho avuto l'idromele preparato dal cuoco della gilda dei ladri.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Ho detto a Farrik che non sono molto d'accordo con il loro piano, potrei riferire al capitano della prigione il loro subdolo piano.", + "finishesQuest": 0 + }, + { + "progress": 32, + "logText": "Ho dato l'idromele *truccato* al capitano della prigione.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Ho detto al capitano della prigione del piano che i ladri stanno preparando per liberare il loro amico.", + "finishesQuest": 0 + }, + { + "progress": 50, + "logText": "Il capitano mi chiede di raccontare ai ladri che per la sera la prigione sarà meno protetta! Così forse riusciranno a catturare un po' di quei ladri.", + "finishesQuest": 0 + }, + { + "progress": 60, + "logText": "Sono riuscito a far bere l'idromele *truccato* al capitano! In questo modo dovrebbe essere fuori gioco durante la notte e i ladri riusciranno a liberare il loro compagno.", + "finishesQuest": 0 + }, + { + "progress": 70, + "logText": "Farrik mi ha ricompensato per aver aiutato la gilda dei ladri.", + "rewardExperience": 1500, + "finishesQuest": 1 + }, + { + "progress": 80, + "logText": "Ho detto a Farrik che stasera la prigione sarà meno protetta.", + "finishesQuest": 0 + }, + { + "progress": 90, + "logText": "Il capitano della prigione mi ha ringraziato per l'aiuto e ha detto che parlera di me a tutte le altre guardie.", + "rewardExperience": 1700, + "finishesQuest": 1 + } + ] + }, + { + "id": "lodar", + "name": "La pozione persa", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Dovrei trovare un alchimista chiamato Lodar. Umar della gilda dei ladri di Fallhaven mi ha detto che devo conoscere la parola d'ordine affinchè il guardiano mi lasci avere accesso al rifugio di Lodar.", + "finishesQuest": 0 + }, + { + "progress": 15, + "logText": "Umar mi ha detto di parlare con Ogam a Vilegard. Ogam mi può dire la parola d'ordine per accedere al rifugio di Lodar.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Sono stato da Ogam a sud-ovest di Vilegard. parlava in modo strano, sembravano indovinelli. Sono riuscito a malapena a capire alcuni indizi parlando del rifugio di Lodar. La frase 'A metà strada tra l'Ombra e la luce. Formazioni rocciose' e le parole 'Bagliore dell'Ombra' erano tra le cose che ha detto. Non sono sicuro del loro significato.", + "finishesQuest": 0 + } + ] + }, + { + "id": "vilegard", + "name": "Fidarsi di un forestiero", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "La gente di Vilegard è molto sospettosa verso i forestieri. Mi hanno detto di parlare con Jolnor nella cappella di Vilegard se voglio guadagnarmi la loro fiducia.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Ho parlato con Jolnor nella cappella di Vilegard. Egli suggerisce di aiutare tre persone importanti per ottenere la fiducia della gente di Vilegard. Dovrei aiutare Kaori, Wrye e Jolnor stesso.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Ho aiutato le tre persone di Vilegard, ora tutto il paese si fida di me.", + "rewardExperience": 2100, + "finishesQuest": 1 + } + ] + }, + { + "id": "kaori", + "name": "Commissioni per Kaori", + "showInLog": 1, + "stages": [ + { + "progress": 5, + "logText": "Jolnor della cappella di Vilegrad mi ha consigliato di parlare con Kaori a nord di Vilegard e di aiutarla.", + "finishesQuest": 0 + }, + { + "progress": 10, + "logText": "Kaori mi ha chiesto di portarle 10 pozioni di farina d'ossa.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Ho portato 10 pozioni di farina d'ossa a Kaori.", + "rewardExperience": 520, + "finishesQuest": 1 + } + ] + }, + { + "id": "wrye", + "name": "Causa incerta", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Jolnor della cappela di Vilegard mi ha detto di parlare con Wrye a Nord di Vilegard. Suo figlio è da poco sparito nel nulla.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Wrye a Nord di Vilegard mi ha detto che suo figlio Rincel è scomparso, lei pensa che sia morto o ferito gravemente.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Wrye pensa che la guardia reale di Feygard sia coinvolta nella scomparsa di suo figlio e che lo abbiano reclutato.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Wrye vole andare alla ricerca di indizi utili a capire cosa sia successo al figlio.", + "finishesQuest": 0 + }, + { + "progress": 41, + "logText": "Dovrei andare a cercare nella taverna di Vilegard e nella taverna Fiasco Schiumoso a nord di Vilegard.", + "rewardExperience": 200, + "finishesQuest": 0 + }, + { + "progress": 42, + "logText": "Ho sentito parlare di un ragazzo nella taverna del Fiasco Schiumoso. A quanto pare si è diretto a ovest della taverna.", + "finishesQuest": 0 + }, + { + "progress": 80, + "logText": "A nord-ovest di Vilegard ho trovato un uomo che ha visto Rincel combattere contro alcuni mostri. Sembra che Rincel avesse lasciato Vilegard di sua volontà per andare a vedere la città di Feygard. Dovrei raccontare a Wrye a nord di Vilegard quello che è successo al figlio.", + "finishesQuest": 0 + }, + { + "progress": 90, + "logText": "Ho detto a Wrye la verità sulla scomparsa del figlio.", + "rewardExperience": 520, + "finishesQuest": 1 + } + ] + }, + { + "id": "jolnor", + "name": "Spie nella schiuma", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Jolnor della cappella di Vilegard mi ha parlato di una guardia fuori dalla taverna Fiasco Schiumoso, che secondo lui è una spia della guardia reale di Feygard. Vorrebbe che la guardia sparisse, non gli interessa in che modo. La taverna dovrebbe essere appena a nord di Vilegard.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Ho convinto la guardia fuori dalla taverna Fiasco Schiumoso ad andarsene appena finisce il turno.", + "finishesQuest": 0 + }, + { + "progress": 21, + "logText": "Ho iniziato un combattimento con la guardia fuori dalla taverna Fiasco Schiumoso. Dovrei portare il suo anello da guardia reale a Jolnor una volta che l'ho ucciso per dimostrargli che sono riuscito a farlo fuori.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Ho detto a Jolnor che la guardia è sparita.", + "rewardExperience": 630, + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw-it/questlist_v069.json b/AndorsTrail/res/raw-it/questlist_v069.json new file mode 100644 index 000000000..f6c7a4f3c --- /dev/null +++ b/AndorsTrail/res/raw-it/questlist_v069.json @@ -0,0 +1,368 @@ +[ + { + "id": "bwm_agent", + "name": "L'agente e la bestia", + "showInLog": 1, + "stages": [ + { + "progress": 1, + "logText": "Ho incontrato un uomo in cerca di aiuto per il suo insediamento sulla Montagna Blackwater. Sembra che l'insediamento sia attaccato da mostri e banditi, hanno bisogno di un aiuto esterno." + }, + { + "progress": 5, + "logText": "Ho accettato di aiutare l'uomo dellla montagna di Blackwater." + }, + { + "progress": 10, + "logText": "L'uomo mi ha detto di incontrarlo al di là della miniera crollata. Lui striscerà attraverso la miniera crollata e io passerò dalla buia miniera abbandonata." + }, + { + "progress": 20, + "logText": "Ho attraversato la vecchia miniera e ho incontrato nuovamente l'uomo dall'altra parte. Sembrava molto preoccupato e mi ha dietto di andare verso est una volta uscito dalla miniera. Dovrei ritrovare l'uomo ai piedi della montagna." + }, + { + "progress": 25, + "logText": "Ho sentito la storia del conflitto tra Prim e l'insediamento di Blackwater. " + }, + { + "progress": 30, + "logText": "Dovrei seguire il sentiero di montagna per arrivare all'insediamento di Blackwater." + }, + { + "progress": 40, + "logText": "Ho di nuovo ritrovato l'uomo sulla mia strada, mi ha detto di continuare lungo il sentiero per arrivare all'insediamento." + }, + { + "progress": 50, + "logText": "Ho camminato fino alle pendici innevate del monte Blackwater. L'uomo mi ha detto di contunuare a salire la montagna. A quanto pare, l'insediamento è vicino." + }, + { + "progress": 60, + "logText": "Sono dentro l'insediamento. Devo trovare e parlare con il loro maestro d'armi Harlenn." + }, + { + "progress": 65, + "logText": "Ho parlato con Harlenn nell'insediamento di Blackwater. A quanto pare, l'insediamento è sotto attacco da ogni sorta di mostri: dragoni bianchi e Aulaeth. Oltre che da essi, a Blackwater sono attaccati anche dal popolo di Prim." + }, + { + "progress": 66, + "logText": "Harlenn pensa che dietro gli attacchi dei mostri ci sia il popolo di Prim." + }, + { + "progress": 70, + "logText": "Harlenn vuole che porti un messaggio a Guthbered di Prim. Vuole che Prim fermi gli attacchi contro l'insediamento di Blackwater altrimenti saranno costretti a combattere. Dovrei andare a parlare con Guthbered a Prim." + }, + { + "progress": 80, + "logText": "Guthbered dice che Prim non ha nulla a che fare con gli attacchi dei mostri all'insediamento di Blackwater. Dovrei andare a parlare con Harlenn." + }, + { + "progress": 90, + "logText": "Harlenn è sicuro che dietro gli attacchi dei mostri ci sia Prim." + }, + { + "progress": 95, + "logText": "Harlenn vuole che vada a Prim a cercare indizi su un probabile attacco all'insediamento. Dovrei trovare degli indizi vicino a Guthbered." + }, + { + "progress": 100, + "logText": "Ho trovato alcuni progetti a Prim per reclutare mercenari e attaccare l'insediamento di Blackwater. Dovrei andare immediatamente a parlarne con Harlenn." + }, + { + "progress": 110, + "logText": "Harlenn mi ha ringraziato per aver scoperto i piani di attacco.", + "rewardExperience": 1150 + }, + { + "progress": 120, + "logText": "Per fermare gli attacchi all'insediamento di Blackwater, Harlenn mi ha chiesto di assassinare Guthbered a Prim." + }, + { + "progress": 130, + "logText": "Ho iniziato un combattimento con Guthbered." + }, + { + "progress": 131, + "logText": "Ho detto a Guthbered che avrei dovuto ucciderlo, ma l'ho lasciato vivere. Mi ha ringraziato profondamente e ha lasciato Prim.", + "rewardExperience": 2100 + }, + { + "progress": 149, + "logText": "Harlenn mi ha ringraziato per l'aiuto. Speriamo che gli attacchi all'insediamento di Blackwater ora si fermino." + }, + { + "progress": 150, + "logText": "Nell'insediamento di Blackwater ora si fidano di me, adesso dovrei poter comprare in tutti i negozi.", + "rewardExperience": 5000 + }, + { + "progress": 240, + "logText": "Ho deciso di non aiutare la gente dell'insediamento di Blackwater.", + "finishesQuest": 1 + }, + { + "progress": 250, + "logText": "Dal momento che sto aiutando Prim, Harlenn non vuole più parlare con me.", + "finishesQuest": 1 + }, + { + "progress": 251, + "logText": "Dal momento che sto aiutando Prim, Harlenn non vuole più parlare con me.", + "finishesQuest": 1 + } + ] + }, + { + "id": "prim_innquest", + "name": "Ben riposati", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Ho parlato con l'oste di Prim, ai piedi della montagna Blackwater. C'è una stanza sul retro disponibile ma attualmente è affittata ad Arghest. Dovrei andare a parlare con Arghest per vedere se lui vuole tenere ancora in affitto la stanza. Il cuoco mi ha indirizzato verso sud-ovest di Prim." + }, + { + "progress": 20, + "logText": "Ho parlato con Arghest per la stanza alla locanda. Vuole tenerla ancora in affitto per poter riposare. Mi ha detto che se riesco a dargli la giusta ricompensa potrebbe farlmela usare." + }, + { + "progress": 30, + "logText": "Arghest mi ha chiesto 5 bottiglie di latte, dice che sicuramente posso trovarne in un villaggio più grande." + }, + { + "progress": 40, + "logText": "Ho portato il latte ad Arghest. Ha accettato di farmi usare la stanza sul retro della locanda a Prim. Ora potrò riposarmi lì. Dovrei andare a parlare con l'oste nella locanda.", + "rewardExperience": 500 + }, + { + "progress": 50, + "logText": "Ho spiegato all'oste che Arghest mi ha dato il permesso di utilizzare la stanza.", + "finishesQuest": 1 + } + ] + }, + { + "id": "prim_hunt", + "name": "Intenzioni offuscate", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Fuori dalla miniera crollata sulla strada per la montagna Blackwater ho incontrato un uomo del villaggio di Prim. Lui mi ha chiesto di aiutarli." + }, + { + "progress": 11, + "logText": "Il paese di Prim ha bisogno aiuto da qualcuno di esterno che sicuramente non abbia nulla a che fare con gli attacchi dei mostri. Dovrei parlare con Guthbered a Prim se voglio aiutarli." + }, + { + "progress": 15, + "logText": "Guthbered di solito sta nella sala principale di Prim. Devo cercare una casa di pietra al centro del paese." + }, + { + "progress": 20, + "logText": "Guthbered mi ha raccontato la storia di Prim, ha detto che da un po' è costantemente sotto attacco da parte dell'insediamento di Blackwater." + }, + { + "progress": 25, + "logText": "Guthbered vuole che vada all'insediamento di Blackwater a chiedere al loro maestro d'armi Harlenn, perché (o se) hanno reclutato i mostri Gornaud contro Prim." + }, + { + "progress": 30, + "logText": "Ho parlato con Harlenn circa gli attacchi a Prim. Egli nega che la gente dell'insediamento di Blackwater abbia nulla a che farci. Dovrei tornare a riferirlo a Guthbered a Prim." + }, + { + "progress": 40, + "logText": "Guthbered continua a credere che l'insediamento di Blackwater sia coinvolto negli attacchi." + }, + { + "progress": 50, + "logText": "Guthbered vuole che vada a cercare indizi sul piano di attacco che l'insediamento di Blackwater sta preparando contro Prim. Dovrei andare a cercare degli indizi vicino agli alloggi privati di Harlenn, assicurandomi di non essere visto." + }, + { + "progress": 60, + "logText": "Ho trovato alcuni giornali negli alloggi privati di Harlenn che illustrano un piano per attaccare Prim. Dovrei andare immediatamente a parlarne con Guthbered." + }, + { + "progress": 70, + "logText": "Guthbered mi ha ringraziato per averlo aiutato a trovare le prove dei piani di un attacco.", + "rewardExperience": 1150 + }, + { + "progress": 80, + "logText": "Al fine di far cessare gli attacchi a Prim, Guthbered vuole io uccida Harlenn nell'insediamento di Blackwater." + }, + { + "progress": 90, + "logText": "Ho cominciato un combattimento con Harlenn." + }, + { + "progress": 91, + "logText": "Ho detto ad Harlenn che sono stato inviato per ucciderlo, ma l'ho lasciato vivere. Mi ha profondamente ringraziato ed lasciato l'insediamento.", + "rewardExperience": 2100 + }, + { + "progress": 99, + "logText": "Guthbered mi ha ringraziato per l'aiuto che ho dato a Prim. Speriamo che gli attacchi contro Prim ora cessino. Come ringraziamento, Guthbered mi ha dato alcuni oggetti e un permesso falso che può farmi entrare nella camera interna dell'insediamento di Blackwater." + }, + { + "progress": 100, + "logText": "Ho mostrato il permesso falso alla guardia ed ho avuto accesso alla camera interna dell'insediamento.", + "rewardExperience": 5000 + }, + { + "progress": 140, + "logText": "Ora a Prim tutti si fidano di me e mi lasciano comprare in tutti negozi." + }, + { + "progress": 240, + "logText": "Ho deciso di non aiutare la gente di Prim.", + "finishesQuest": 1 + }, + { + "progress": 250, + "logText": "Dal momento che sto aiutando l'insediamento di Blackwater, Guthbered non vuole più parlare con me.", + "finishesQuest": 1 + }, + { + "progress": 251, + "logText": "Dal momento che sto aiutando l'insediamento di Blackwater, Guthbered non vuole più parlare con me.", + "finishesQuest": 1 + } + ] + }, + { + "id": "kazaul", + "name": "Luce dell'Ombra", + "showInLog": 1, + "stages": [ + { + "progress": 8, + "logText": "Sono andato nella camera interna dell'insediamento di Blackwater e ho trovato un gruppo di maghi guidati da un uomo di nome Throdna." + }, + { + "progress": 9, + "logText": "Throdna sembra molto interessato a qualcuno (o qualcosa) chiamato Kazaul, e in particolare ad un rituale eseguito in suo nome." + }, + { + "progress": 10, + "logText": "Ho accettato di aiutare Throdna a cercare informazioni sul rituale, esistono le istruzioni per il rituale su un foglio strappato sparso per la montagna. Dovrei andare a cercare le parti del rituale di Kazaul sul sentiero di Blackwater che porta a Prim." + }, + { + "progress": 11, + "logText": "Ho bisogno di trovare le due parti del canto e i tre pezzi che descrivono il rituale stesso e tornare da Throdna una volta che li ho trovato tutti." + }, + { + "progress": 21, + "logText": "Ho trovato la prima metà del canto per il rituale di Kazaul." + }, + { + "progress": 22, + "logText": "Ho trovato la seconda metà del canto per il rituale di Kazaul." + }, + { + "progress": 25, + "logText": "Ho trovato il primo pezzo del rituale di Kazaul." + }, + { + "progress": 26, + "logText": "Ho trovato il secondo pezzo del rituale di Kazaul." + }, + { + "progress": 27, + "logText": "Ho trovato il terzo pezzo del rituale di Kazaul." + }, + { + "progress": 30, + "logText": "Throdna mi ha ringraziato per aver trovato tutti i pezzi del rituale.", + "rewardExperience": 3600 + }, + { + "progress": 40, + "logText": "Throdna vuole che metta fine alla nascita delle uova di Kazaul che è cominciata sul monte Blackwater. C'è un santuario ai piedi del monte, dovrei andare a dargli un'occhiata." + }, + { + "progress": 41, + "logText": "Mi è stata data una fiala di purificazione dello spirito che Throdna vuole applichi al santuario di Kazaul. Dovrei tornare da Throdna quando ho trovato e purificato il santuario." + }, + { + "progress": 50, + "logText": "Nel santuario alla base della Montagna Blackwater ho incontrato il custode di Kazaul. Recitando i versi del canto rituale ho indotto il guardiano ad attaccarmi." + }, + { + "progress": 60, + "logText": "Ho purificato il santuario di Kazaul.", + "rewardExperience": 3200 + }, + { + "progress": 100, + "logText": "Mi aspettavo qualche riconoscimento da Throdna per averlo aiutato a conoscere il rituale e aver purificato il santuario. Ma sembrava più occupato a farneticare riguardo Kazaul. Non riuscivo a capire nulla dei suoi vaneggiamenti.", + "finishesQuest": 1 + } + ] + }, + { + "id": "bwm_wyrms", + "name": "Nessuna debolezza", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Herec al secondo livello dell'insediamento di Blackwater è in cerca di dragoni bianchi. Vuole che gli porti 5 artigli di dragone bianco in modo che possa continuare la sua ricerca. A quanto pare, solo alcuni dei dragoni hanno questi artigli. Dovrò ucciderne alcuni per trovarli." + }, + { + "progress": 20, + "logText": "Ho portato 5 artigli di dragone bianco a Herec." + }, + { + "progress": 30, + "logText": "Herec ha finito di creare una pozione curativa che sarà molto utile in futuro per affrontare i dragoni.", + "rewardExperience": 1500, + "finishesQuest": 1 + } + ] + }, + { + "id": "bjorgur_grave", + "name": "Svegliato dal sonno", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Bjorgur di Prim alla base del monte Blackwater pensa che qualcosa abbia disturbato la tomba dei suoi genitori a sud-ovest di Prim, appena fuori della miniera di Elm." + }, + { + "progress": 15, + "logText": "Bjorgur vuole che vada a controllare la tomba per assicurarmi che il pugnale della sua famiglia sia ancora al suo posto." + }, + { + "progress": 20, + "logText": "Fulus di Prim vuole avere il pugnale della famiglia di Bjorgur e che suo nonno usò per ottenere potere." + }, + { + "progress": 30, + "logText": "Ho incontrato un uomo che brandiva un pugnale strano nei pressi di una tomba a sud-ovest di Prim. Deve aver rubato il pugnale dalla tomba." + }, + { + "progress": 40, + "logText": "Ho rimesso il pugnale al suo posto nella tomba. I non-morti sembrano stranamente meno inquieti ora.", + "rewardExperience": 200 + }, + { + "progress": 50, + "logText": "Bjorgur mi ha ringraziato per l'assistenza. Mi ha detto che dovrei anche cercare i suoi parenti a Feygard per una ricompensa.", + "rewardExperience": 1100, + "finishesQuest": 1 + }, + { + "progress": 51, + "logText": "Ho portato il pugnale della famiglia di Bjorgur a Fulus. Mi ha ringraziato calorosamente e mi ha ricompensato molto bene." + }, + { + "progress": 60, + "logText": "Ho portato il pugnale della famiglia Bjorgur a Fulus. Lui mi ha ringraziato calorosamente e mi ha ricompensato molto bene.", + "rewardExperience": 1700, + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw-ja/conversationlist_crossglen.json b/AndorsTrail/res/raw-ja/conversationlist_crossglen.json new file mode 100644 index 000000000..d25625840 --- /dev/null +++ b/AndorsTrail/res/raw-ja/conversationlist_crossglen.json @@ -0,0 +1,140 @@ +[ + { + "id": "audir1", + "message": "この店へよく来てくれた!\n\n良い武具が揃ってるよ、見て行ってくれ。", + "replies": [ + { + "text": "武具を見せてください。", + "nextPhraseID": "S" + } + ] + }, + { + "id": "arambold1", + "message": "ううむ、この酔っ払いどもが歌っている中、私は眠れるんだろうか?\n誰か何とかしてほしいね。", + "replies": [ + { + "text": "ここで休憩してもいいですか?", + "nextPhraseID": "arambold2" + }, + { + "text": "何か売買できますか?", + "nextPhraseID": "S" + } + ] + }, + { + "id": "arambold2", + "message": "もちろん、君はここで休憩できる。\n\n好きなベッドを使うんだな。", + "replies": [ + { + "text": "ありがとう、それでは。", + "nextPhraseID": "X" + } + ] + }, + { + "id": "drunk1", + "message": "飲め飲め飲め飲め もうちっと飲め!\n飲め飲め飲め飲め 倒れるまでよぉ!\n\nおいボウズ、俺たちと一緒に飲まねえか?", + "replies": [ + { + "text": "遠慮します。", + "nextPhraseID": "X" + }, + { + "text": "またいつか。", + "nextPhraseID": "X" + } + ] + }, + { + "id": "mara_default", + "message": "こいつら飲んだくれは無視しな、 厄介事を起こしてばかりなんだ。\n\n何か食べるかい?", + "replies": [ + { + "text": "何か売買できますか?", + "nextPhraseID": "S" + } + ] + }, + { + "id": "mara1", + "replies": [ + { + "nextPhraseID": "mara_thanks", + "requires": { + "progress": "odair:100" + } + }, + { + "nextPhraseID": "mara_default" + } + ] + }, + { + "id": "mara_thanks", + "message": "Odairを手伝って、あの貯蔵の洞穴を掃除したって聞いたよ。 また使えるようになるんだからね、すごく感謝してる。", + "replies": [ + { + "text": "いえ、どういたしまして。", + "nextPhraseID": "mara_default" + } + ] + }, + { + "id": "farm1", + "message": "俺は仕事中だ、邪魔をするなよ。", + "replies": [ + { + "text": "僕の兄のAndorを見ませんでした?", + "nextPhraseID": "farm_andor" + } + ] + }, + { + "id": "farm2", + "message": "忙しいのが分からんか、坊主!邪魔するならよそでやってくれ。", + "replies": [ + { + "text": "僕の兄のAndorを見ませんでした?", + "nextPhraseID": "farm_andor" + } + ] + }, + { + "id": "farm_andor", + "message": "Andor? いや、俺は最近見てないよ。" + }, + { + "id": "snakemaster", + "message": "フムフム、何が来たのかな? お客さん、何て素晴らしい。 私の手下たちをすべてくぐり抜け、はるばるやって来た・・・感動しますね。\n\nちっちゃい子犬ちゃん、そろそろ死ぬ準備をしなさい?", + "replies": [ + { + "text": "いいぞ、こんな戦いを待っていたんだ!", + "nextPhraseID": "F" + }, + { + "text": "ここで死ぬのは誰か分からせてやる。", + "nextPhraseID": "F" + }, + { + "text": "やめて!痛くしないで!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "haunt", + "message": "定命の者よ、おお、我輩をこの呪われた場所から解放してくれ!", + "replies": [ + { + "text": "問題なく解放してあげますよ。", + "nextPhraseID": "F" + }, + { + "text": "つまり、殺してって事?", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-ja/conversationlist_crossglen_gruil.json b/AndorsTrail/res/raw-ja/conversationlist_crossglen_gruil.json new file mode 100644 index 000000000..a2a4e7c1b --- /dev/null +++ b/AndorsTrail/res/raw-ja/conversationlist_crossglen_gruil.json @@ -0,0 +1,118 @@ +[ + { + "id": "gruil1", + "message": "よう、そこの。\n何か買うのか?", + "replies": [ + { + "text": "もちろん。見せてくれ。", + "nextPhraseID": "S" + }, + { + "text": "少し前に僕の兄と話したと聞いたんだけど。", + "nextPhraseID": "gruil_select", + "requires": { + "progress": "andor:10" + } + } + ] + }, + { + "id": "gruil_select", + "replies": [ + { + "nextPhraseID": "gruil_return", + "requires": { + "progress": "andor:30" + } + }, + { + "nextPhraseID": "gruil2" + } + ] + }, + { + "id": "gruil2", + "message": "お前の兄さん、つまりAndorか? 知ってるかもしれないが、その情報はタダじゃないぜ。 辺りにいる毒蛇から毒腺が取れるから、1つ俺に持って来い。 そうすれば教えてやろう。", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 20 + } + ], + "replies": [ + { + "text": "毒腺なら持っている。", + "nextPhraseID": "gruil_complete", + "requires": { + "item": { + "itemID": "gland", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "これから取ってくる。", + "nextPhraseID": "X" + } + ] + }, + { + "id": "gruil_complete", + "message": "これでいいぞ。有難うな。", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "gruil_andor1" + } + ] + }, + { + "id": "gruil_return", + "message": "おいお前、それは一度聞いただろう?", + "replies": [ + { + "text": "N", + "nextPhraseID": "gruil_andor1" + } + ] + }, + { + "id": "gruil_andor1", + "message": "あいつと会ったのは昨日、Umarとかそういった名前の人を知っているかと訊いてきた。\n俺には誰のことを言っているのかさっぱりだったがな。", + "replies": [ + { + "text": "N", + "nextPhraseID": "gruil_andor2" + } + ] + }, + { + "id": "gruil_andor2", + "message": "お前の兄さんはとても冷静とは言えない感じで、何か気掛かりがあるようだった。 俺と話した後は急いで出て行ったよ。 \n行き先はFallhavenの盗賊ギルドとか言っていたな。", + "replies": [ + { + "text": "N", + "nextPhraseID": "gruil_andor3" + } + ] + }, + { + "id": "gruil_andor3", + "message": "これで全部だ。 \nFallhavenの街で聞き込みをするといいんじゃないか? 俺の友達のGaelaを探せば、そいつがもっと知っているかもな。", + "replies": [ + { + "text": "ありがとう。(礼をする)\n", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-ja/conversationlist_crossglen_leonid.json b/AndorsTrail/res/raw-ja/conversationlist_crossglen_leonid.json new file mode 100644 index 000000000..5e8c0fc49 --- /dev/null +++ b/AndorsTrail/res/raw-ja/conversationlist_crossglen_leonid.json @@ -0,0 +1,201 @@ +[ + { + "id": "leonid1", + "message": "君はMikhailの息子、兄弟の弟の方だったね。 今朝は元気かね?\n\n私はLeonid、Crossglenの村の長だ。", + "replies": [ + { + "text": "兄のAndorを見ませんでしたか?", + "nextPhraseID": "leonid_andor" + }, + { + "text": "Crossglenの村について教えて下さい。", + "nextPhraseID": "leonid_crossglen" + }, + { + "text": "何でもありません。 またお話ししましょう。", + "nextPhraseID": "leonid_bye" + } + ] + }, + { + "id": "leonid_andor", + "message": "君の兄? いいや、今日は見ておらん。 ただ、昨日ここでGruilと話をしているのを見た。 彼が知っているのではないかな?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 10 + } + ], + "replies": [ + { + "text": "ありがとう、Gruilと話をしてみます。\n他にも訊きたいことがあるのですが。", + "nextPhraseID": "leonid_continue" + }, + { + "text": "ありがとう、Gruilと話をしてみます。", + "nextPhraseID": "leonid_bye" + } + ] + }, + { + "id": "leonid_continue", + "message": "他に何かあるのかね?", + "replies": [ + { + "text": "兄のAndorを見ませんでしたか?", + "nextPhraseID": "leonid_andor" + }, + { + "text": "Crossglenの村について教えて下さい。", + "nextPhraseID": "leonid_crossglen" + }, + { + "text": "いえ、特にありません。 またお話しましょう。", + "nextPhraseID": "leonid_bye" + } + ] + }, + { + "id": "leonid_crossglen", + "message": "知っているだろうが、ここがCrossglenの村だ。 ほとんど農業の村だな。", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen1" + } + ] + }, + { + "id": "leonid_crossglen1", + "message": "この集会場から南西にはAudirの鍛冶屋が、西にはLeta夫婦の家が、そして北西には君の父Mikhailの家がある。", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen2" + } + ] + }, + { + "id": "leonid_crossglen2", + "message": "これだけだ。 我々は平和に生きることを良しとしているんだよ。", + "replies": [ + { + "text": "村では最近何が起こりましたか?", + "nextPhraseID": "leonid_crossglen3" + }, + { + "text": "やっぱり、他の話を訊きたいです。", + "nextPhraseID": "leonid_continue" + } + ] + }, + { + "id": "leonid_crossglen3", + "message": "数週ほど前に騒動があったな、君も気づいていたかね? 何人かの村人の間で、Geomyr卿の勅令のことで喧嘩が起きておる。", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen4" + } + ] + }, + { + "id": "leonid_crossglen4", + "message": "Geomyr卿が発したお触れ、あれは骨粉を治療剤として使うことを違法とするものだ。 幾人かは、Geomyr卿のこの言葉に反抗すべきだと言って、骨粉のポーションを使っておる。", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen4_1" + } + ] + }, + { + "id": "leonid_crossglen4_1", + "message": "我が村の神官Tharalなどは特に気が立っていて、Geomyr卿に対して'行動を起こす'べきだなどと言っている。", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen5" + } + ] + }, + { + "id": "leonid_crossglen5", + "message": "他の村人は、卿の勅令に歯向かってはいけないと主張している。\n私個人としては、どちらの考えを支持するかは決めきれていないがね。", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen6" + } + ] + }, + { + "id": "leonid_crossglen6", + "message": "一方では、Geomyr卿はCrossglenを守護しているとも言えるが‥・ (集会場内の兵士を指差す)", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen7" + } + ] + }, + { + "id": "leonid_crossglen7", + "message": "もう一方では、最近の法の変更は、税金ともどもCrossglenの村を本当に苦しめている。", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen8" + } + ] + }, + { + "id": "leonid_crossglen8", + "message": "Geomyr城に誰かが陳情に行かなければならないだろうな。", + "rewards": [ + { + "rewardType": 0, + "rewardID": "crossglen", + "value": 1 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen9" + } + ] + }, + { + "id": "leonid_crossglen9", + "message": "それはさて置き、まとめると、我々は治療のために骨粉を使うことを禁止されてしまったということだ。", + "replies": [ + { + "text": "情報をありがとうございます。\n他にも訊きたいことがあるのですが。", + "nextPhraseID": "leonid_continue" + }, + { + "text": "情報をありがとうございます。 じゃあ。", + "nextPhraseID": "leonid_bye" + } + ] + }, + { + "id": "leonid_bye", + "message": "シャドーがお前と共にあるように。", + "replies": [ + { + "text": "シャドーがあなたと共にありますように。", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-ja/conversationlist_crossglen_leta.json b/AndorsTrail/res/raw-ja/conversationlist_crossglen_leta.json new file mode 100644 index 000000000..a750e6dde --- /dev/null +++ b/AndorsTrail/res/raw-ja/conversationlist_crossglen_leta.json @@ -0,0 +1,110 @@ +[ + { + "id": "leta1", + "message": "おい、ここは私の家だよ!出て行きなさい。", + "replies": [ + { + "text": "でも、僕はただ...", + "nextPhraseID": "leta2" + }, + { + "text": "あなたの夫のOromirさんのことなんですが。", + "nextPhraseID": "leta_oromir_select" + } + ] + }, + { + "id": "leta2", + "message": "さっさと、出て行きなさい!", + "replies": [ + { + "text": "あなたの夫のOromirさんのことなんですが。", + "nextPhraseID": "leta_oromir_select" + } + ] + }, + { + "id": "leta_oromir_select", + "replies": [ + { + "nextPhraseID": "leta_oromir_complete2", + "requires": { + "progress": "leta:100" + } + }, + { + "nextPhraseID": "leta_oromir1" + } + ] + }, + { + "id": "leta_oromir1", + "message": "主人の事、何か知っているのかい? あの人は今日、私と畑仕事をしなきゃいけないのに、いつも通りにどこか行っちゃったのよ。\nはぁ...", + "replies": [ + { + "text": "特にわかりません。", + "nextPhraseID": "leta_oromir2" + }, + { + "text": "Oromirさんは東の方で林の中に隠れていましたよ。", + "nextPhraseID": "leta_oromir_complete", + "requires": { + "progress": "leta:20" + } + } + ] + }, + { + "id": "leta_oromir2", + "message": "あの人を見つけたら、早く帰って家事を手伝うように言ってちょうだい。\nさあ、今度こそ帰りなさい。", + "rewards": [ + { + "rewardType": 0, + "rewardID": "leta", + "value": 10 + } + ] + }, + { + "id": "leta_oromir_complete", + "message": "隠れてた? 驚くことじゃないわね。 ここのボスが誰なのか、あの人に教えておくわ。\n知らせてくれて感謝するよ。", + "rewards": [ + { + "rewardType": 0, + "rewardID": "leta", + "value": 100 + } + ] + }, + { + "id": "leta_oromir_complete2", + "message": "さっきは教えてくれてありがとうね。私はとっととあの人を捕えに行くわ。" + }, + { + "id": "oromir1", + "message": "わっ、びっくりした。\nこんにちは。", + "replies": [ + { + "text": "こんにちは。", + "nextPhraseID": "oromir2" + } + ] + }, + { + "id": "oromir2", + "message": "僕はここで、妻のLetaから隠れてるんだよ。彼女、僕が畑を手伝わないといつも怒るんだ。ここにいるってこと、どうか彼女に教えないでくれ。", + "rewards": [ + { + "rewardType": 0, + "rewardID": "leta", + "value": 20 + } + ], + "replies": [ + { + "text": "オッケー", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-ja/conversationlist_crossglen_odair.json b/AndorsTrail/res/raw-ja/conversationlist_crossglen_odair.json new file mode 100644 index 000000000..02743b3e5 --- /dev/null +++ b/AndorsTrail/res/raw-ja/conversationlist_crossglen_odair.json @@ -0,0 +1,161 @@ +[ + { + "id": "odair1", + "message": "お前か、 お前ら兄弟はまた面倒ばかり起こしてるな。", + "replies": [ + { + "text": "N", + "nextPhraseID": "odair_select" + } + ] + }, + { + "id": "odair_select", + "replies": [ + { + "nextPhraseID": "odair_complete2", + "requires": { + "progress": "odair:100" + } + }, + { + "nextPhraseID": "odair_continue", + "requires": { + "progress": "odair:10" + } + }, + { + "nextPhraseID": "odair2" + } + ] + }, + { + "id": "odair2", + "message": "いや待てよ、お前も役に立つかも。 ちょっとした仕事があるんだが手伝わねぇか?", + "replies": [ + { + "text": "どんな仕事なの?", + "nextPhraseID": "odair3" + }, + { + "text": "もちろんやる。 それで儲けがあるなら、だけど。", + "nextPhraseID": "odair3" + } + ] + }, + { + "id": "odair3", + "message": "最近、村の蓄えがどれだけ残っているか調べに、あの洞窟に入ったんだがよ。(西のほうを指差す)\n俺が見たところ、ネズミがはびこって居やがる。", + "replies": [ + { + "text": "N", + "nextPhraseID": "odair4" + } + ] + }, + { + "id": "odair4", + "message": "特に言うとだな、他のネズミよりデカい奴がいた。 お前、あれを倒してこれそうか?", + "replies": [ + { + "text": "当然、みんなが貯蔵の洞穴を使えるように、手伝うに決まっている。", + "nextPhraseID": "odair5" + }, + { + "text": "やるさ。 まあ、単にこれで稼げそうだから、なんだけど。", + "nextPhraseID": "odair5" + }, + { + "text": "悪いけどできません。", + "nextPhraseID": "odair_cowards" + } + ] + }, + { + "id": "odair5", + "message": "あの洞穴に入って、大きいネズミを殺してきてくれ。 そうすればネズミの繁殖も止められて、洞穴をまた使うことができる。", + "rewards": [ + { + "rewardType": 0, + "rewardID": "odair", + "value": 10 + } + ], + "replies": [ + { + "text": "了解。", + "nextPhraseID": "X" + }, + { + "text": "やっぱりこの仕事はしないことにする。", + "nextPhraseID": "odair_cowards" + } + ] + }, + { + "id": "odair_cowards", + "message": "予想はしてたよ。おまえら兄弟は、あんまり勇敢じゃないから。", + "replies": [ + { + "text": "じゃあね。", + "nextPhraseID": "X" + } + ] + }, + { + "id": "odair_continue", + "message": "西の洞窟にいる大きいネズミは殺してきたか?", + "replies": [ + { + "text": "うん、やって来た。", + "nextPhraseID": "odair_complete", + "requires": { + "item": { + "itemID": "tail_caverat", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "何をすればいいんだっけ?", + "nextPhraseID": "odair5" + }, + { + "text": "まだやってない。", + "nextPhraseID": "odair_cowards" + } + ] + }, + { + "id": "odair_complete", + "message": "いいね、やるじゃん! おまえら兄弟は、思ってたほど意気地無しじゃあないんだな。 \n手伝いのお礼だ、取っとけ。", + "rewards": [ + { + "rewardType": 0, + "rewardID": "odair", + "value": 100 + }, + { + "rewardType": 1, + "rewardID": "gold20" + } + ], + "replies": [ + { + "text": "ありがと。", + "nextPhraseID": "X" + } + ] + }, + { + "id": "odair_complete2", + "message": "この前のことは感謝してるよ。 おかげでまた俺たちは貯蔵の洞穴を使えるようになったからな。", + "replies": [ + { + "text": "じゃあね。", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-ja/conversationlist_crossglen_tharal.json b/AndorsTrail/res/raw-ja/conversationlist_crossglen_tharal.json new file mode 100644 index 000000000..aa7fdcaf9 --- /dev/null +++ b/AndorsTrail/res/raw-ja/conversationlist_crossglen_tharal.json @@ -0,0 +1,138 @@ +[ + { + "id": "tharal1", + "message": "我等の子よ、シャドーの灯りの中を歩きなさい。", + "replies": [ + { + "text": "何か売買できますか?", + "nextPhraseID": "S" + }, + { + "text": "骨粉についての話を聞きたい。", + "nextPhraseID": "tharal_bonemeal_select", + "requires": { + "progress": "bonemeal:10" + } + } + ] + }, + { + "id": "tharal_bonemeal_select", + "replies": [ + { + "nextPhraseID": "tharal_bonemeal4", + "requires": { + "progress": "bonemeal:30" + } + }, + { + "nextPhraseID": "tharal_bonemeal1" + } + ] + }, + { + "id": "tharal_bonemeal1", + "message": "骨粉? その話はするべきではありません。 あれは違法だという勅令が、Geomyr卿から出されたのです。", + "replies": [ + { + "text": "でも、お願いします。", + "nextPhraseID": "tharal_bonemeal2_1" + } + ] + }, + { + "id": "tharal_bonemeal2_1", + "message": "駄目です。 我々は、本当に禁じられているんですよ。", + "replies": [ + { + "text": "どうしても駄目ですか?", + "nextPhraseID": "tharal_bonemeal2" + } + ] + }, + { + "id": "tharal_bonemeal2", + "message": "はあ、君がそんなに頑固なら少し考えます。\nポーションを作るのに使うので、昆虫の翅を5つ持ってきてください。 そうしたら話しましょう。", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 20 + } + ], + "replies": [ + { + "text": "はい、これです。(昆虫の翅を渡す)", + "nextPhraseID": "tharal_bonemeal3", + "requires": { + "item": { + "itemID": "insectwing", + "quantity": 5, + "requireType": 0 + } + } + }, + { + "text": "持ってきます。", + "nextPhraseID": "X" + } + ] + }, + { + "id": "tharal_bonemeal3", + "message": "ありがとう。 君ならやってくれると思っていたよ。", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "tharal_bonemeal4" + } + ] + }, + { + "id": "tharal_bonemeal4", + "message": "骨粉は、正しく調合すれば、この辺りで手に入るいちばん強力な回復剤になるのです。", + "replies": [ + { + "text": "N", + "nextPhraseID": "tharal_bonemeal5" + } + ] + }, + { + "id": "tharal_bonemeal5", + "message": "以前はよく使っていたものですが、奴に・・・おっと、Geomyr卿に禁止されてしまったのです。", + "replies": [ + { + "text": "N", + "nextPhraseID": "tharal_bonemeal6" + } + ] + }, + { + "id": "tharal_bonemeal6", + "message": "どうやってこれから治療するというのでしょう。普通の'治癒のポーション'を使えって?あんなに効きにくい物をですか。", + "replies": [ + { + "text": "N", + "nextPhraseID": "tharal_bonemeal7" + } + ] + }, + { + "id": "tharal_bonemeal7", + "message": "さて、もし関心がおありなら、まだ骨粉のポーションを作ってくださる方を紹介しましょう。Fallhavenの神官、Thoronirを訪ねなさい。合言葉の'Glow of the Shadow'を言えばわかるでしょう。", + "replies": [ + { + "text": "ありがとう。 ではまた。", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-ja/conversationlist_fallhaven.json b/AndorsTrail/res/raw-ja/conversationlist_fallhaven.json new file mode 100644 index 000000000..dad6ad4ed --- /dev/null +++ b/AndorsTrail/res/raw-ja/conversationlist_fallhaven.json @@ -0,0 +1,206 @@ +[ + { + "id": "fallhaven_citizen1", + "message": "こんにちは。いい天気だの。", + "replies": [ + { + "text": "僕の兄のAndorを見ませんでした?", + "nextPhraseID": "fallhaven_andor_1" + } + ] + }, + { + "id": "fallhaven_citizen2", + "message": "こんにちは。お前さんどうかしたのかい?", + "replies": [ + { + "text": "僕の兄のAndorを見ませんでした?", + "nextPhraseID": "fallhaven_andor_2" + } + ] + }, + { + "id": "fallhaven_citizen3", + "message": "何か?", + "replies": [ + { + "text": "僕の兄のAndorを見ませんでした?", + "nextPhraseID": "fallhaven_andor_3" + } + ] + }, + { + "id": "fallhaven_citizen4", + "message": "君はCrossglenの村から来たあの子供か?", + "replies": [ + { + "text": "僕の兄のAndorを見ませんでした?", + "nextPhraseID": "fallhaven_andor_4" + } + ] + }, + { + "id": "fallhaven_citizen5", + "message": "田舎者のキミ、そこをどきなさい。" + }, + { + "id": "fallhaven_citizen6", + "message": "ご機嫌よう。", + "replies": [ + { + "text": "僕の兄のAndorを見ませんでした?", + "nextPhraseID": "fallhaven_andor_6" + } + ] + }, + { + "id": "fallhaven_andor_1", + "message": "すまんな。君が説明してくれたような人は見とらん。" + }, + { + "id": "fallhaven_andor_2", + "message": "別な子供と言ったかい? ふむう、ええとねえ。", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_andor_1" + } + ] + }, + { + "id": "fallhaven_andor_3", + "message": "何日か前、君が言ったことに当てはまるような人を見たかも。うん。\nでもどこでなのかはちょっと分からない。" + }, + { + "id": "fallhaven_andor_4", + "message": "なるほど。数日前にCrossglenの村から来た少年がいたよ。でもその子が君の探している人かはわからない。", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_andor_4_1" + } + ] + }, + { + "id": "fallhaven_andor_4_1", + "message": "怪しげな恰好の人が数名、彼といっしょに行動していた。見たものはこれだけだ。" + }, + { + "id": "fallhaven_andor_6", + "message": "ううん、そんな奴見てないわ。" + }, + { + "id": "fallhaven_guard", + "message": "変なことをするんじゃないぞ。" + }, + { + "id": "fallhaven_priest", + "message": "シャドー汝と共にあれ。", + "replies": [ + { + "text": "シャドーについて僕に教えてください。", + "nextPhraseID": "priest_shadow_1" + } + ] + }, + { + "id": "priest_shadow_1", + "message": "シャドーは我々を守ってくださる。我々が眠っている間、安全で快適にしていてくれる。", + "replies": [ + { + "text": "N", + "nextPhraseID": "priest_shadow_2" + } + ] + }, + { + "id": "priest_shadow_2", + "message": "我々がどこへ行こうと、離れることはない。我等の子はシャドーと共に行きなさい。", + "replies": [ + { + "text": "シャドーがあなたと共にありますように。", + "nextPhraseID": "X" + }, + { + "text": "どうでもいい。じゃあね。", + "nextPhraseID": "X" + } + ] + }, + { + "id": "rigmor", + "message": "はーいこんにちは!君カワイイわね。", + "replies": [ + { + "text": "僕の兄のAndorを見ませんでした?", + "nextPhraseID": "rigmor_1" + }, + { + "text": "ちょっと用事があるので、本当に行かないと・・・", + "nextPhraseID": "rigmor_leave_select" + } + ] + }, + { + "id": "rigmor_1", + "message": "君のお兄さんって?名前はAndor?ううん、そういう人に会った覚えはないわ。", + "replies": [ + { + "text": "ちょっと用事があるので、本当に行かないと・・・", + "nextPhraseID": "rigmor_leave_select" + } + ] + }, + { + "id": "rigmor_leave_select", + "replies": [ + { + "nextPhraseID": "rigmor_thanks", + "requires": { + "progress": "calomyran:100" + } + }, + { + "nextPhraseID": "X" + } + ] + }, + { + "id": "rigmor_thanks", + "message": "お父さんの本を探すのを手伝ってくれたって聞いたわ。ありがとう。あの本の事をもう何週間も言いつづけてたのよ。\nかわいそうに、物忘れが多くなってきちゃって。", + "replies": [ + { + "text": "どういたしまして。さようなら。", + "nextPhraseID": "X" + }, + { + "text": "ちゃんと見張っておかないと、よくない事が起きるかもしれませんよ。", + "nextPhraseID": "X" + }, + { + "text": "まあいい、お金のためにしたことだ。", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_clothes", + "message": "私の店にようこそ。私が特選した上質な衣服と宝石をどうぞご覧ください。", + "replies": [ + { + "text": "売り物を見せてください。", + "nextPhraseID": "S" + } + ] + }, + { + "id": "fallhaven_potions", + "message": "私の店にようこそ。選び抜かれた品質のポーションや常備薬を見て行ってください。", + "replies": [ + { + "text": "どんなポーションがあるか見せてください。", + "nextPhraseID": "S" + } + ] + } +] diff --git a/AndorsTrail/res/raw-ja/conversationlist_jan.json b/AndorsTrail/res/raw-ja/conversationlist_jan.json new file mode 100644 index 000000000..029644371 --- /dev/null +++ b/AndorsTrail/res/raw-ja/conversationlist_jan.json @@ -0,0 +1,350 @@ +[ + { + "id": "jan_start_select", + "replies": [ + { + "nextPhraseID": "jan_complete2", + "requires": { + "progress": "jan:100" + } + }, + { + "nextPhraseID": "jan_return", + "requires": { + "progress": "jan:10" + } + }, + { + "nextPhraseID": "jan_default" + } + ] + }, + { + "id": "jan_default", + "message": "少年よ、一人にしてくれないか。\nここに眠っているあいつのために祈っているんだ。", + "replies": [ + { + "text": "どうされたんです?", + "nextPhraseID": "jan_default2" + }, + { + "text": "何があったのか話してくれませんか?", + "nextPhraseID": "jan_default2" + }, + { + "text": "わかったよ、それじゃあ。", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_default2", + "message": "本当に悲しくて、話したくはないんだ。", + "replies": [ + { + "text": "どうぞ話してください。", + "nextPhraseID": "jan_default3" + }, + { + "text": "わかったよ、それじゃあ。", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_default3", + "message": "ああ、君は本当にいい子だ。話すとしよう。", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default4" + } + ] + }, + { + "id": "jan_default4", + "message": "私、友人のGandirと彼の友人のIrogotuの3人で、ここにある穴を掘り返していたんだ。そこに財宝があると聞いてね。", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default5" + } + ] + }, + { + "id": "jan_default5", + "message": "掘ってみた結果、私たちは洞窟を掘り当てた。そのときに、クリッターや虫だ。", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default6" + } + ] + }, + { + "id": "jan_default6", + "message": "あの忌々しいクリッター共に攻撃され、私は死にかけたよ。\nGandirと私は、掘るのを止めて今のうちに逃げるべきだとIrogotuに言ったんだ。", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default7" + } + ] + }, + { + "id": "jan_default7", + "message": "だが、Irogotuはこの迷宮の奥に進もうとした。奴はGandirと口論をはじめ、ついには殴り合いになった。", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default8" + } + ] + }, + { + "id": "jan_default8", + "message": "その時だよ、うう・・・\n(すすり泣く)\n\nああ済まない、どこまで話したんだ?", + "replies": [ + { + "text": "続けてください。", + "nextPhraseID": "jan_default9" + } + ] + }, + { + "id": "jan_default9", + "message": "IrogotuはGandirを殴り殺した。奴の目はぎらぎらと血走っていた。殺すのを楽しんでいるようにさえ見えた。", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default10" + } + ] + }, + { + "id": "jan_default10", + "message": "私は逃げ出した。Irogotuの奴とクリッターがいるから、あえて戻ろうとしなかった。", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default11" + } + ] + }, + { + "id": "jan_default11", + "message": "Irogotuの奴め、畜生め!仮に会うことがあったら、今度こそ目に物見せてやる。", + "replies": [ + { + "text": "僕がそれに協力出来ると思いません?", + "nextPhraseID": "jan_default11_1" + } + ] + }, + { + "id": "jan_default11_1", + "message": "君が協力できるだって?", + "replies": [ + { + "text": "財宝が手に入りそうな話なんだし、当前だ。", + "nextPhraseID": "jan_default12" + }, + { + "text": "Irogotuは自分のしたことの報いを受けるべきだ。", + "nextPhraseID": "jan_default12" + }, + { + "text": "遠慮する。危険そうなので、僕は関わらないほうがよさそうだ。", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_default12", + "message": "本当か?本当に協力してくれるのか?\nならば、虫にも気をつけておけ。あいつらはしぶとい。", + "rewards": [ + { + "rewardType": 0, + "rewardID": "jan", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default13" + } + ] + }, + { + "id": "jan_default13", + "message": "本当にやりたいというなら、洞窟内にいるIrogotuを探しだし、Gandirの指輪を持ってきてくれ。", + "replies": [ + { + "text": "やってやろうじゃないか。", + "nextPhraseID": "jan_default14" + }, + { + "text": "もう一度話してもらえませんか?", + "nextPhraseID": "jan_background" + }, + { + "text": "さようなら。やっぱり気にしないでください。", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_default14", + "message": "終わったら私のところに来てくれ。\nこの洞窟に居るIrogotuから、Gandirの指輪を取り返してきてほしい。", + "replies": [ + { + "text": "了解、じゃあまた。", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_return", + "message": "また会ったな、少年。Irogotuを見つけたのか?", + "replies": [ + { + "text": "いいえ、まだ。", + "nextPhraseID": "jan_default14" + }, + { + "text": "もう一度詳しい話を聞かせてください。", + "nextPhraseID": "jan_background" + }, + { + "text": "Irogotuは殺してきました。", + "nextPhraseID": "jan_complete", + "requires": { + "item": { + "itemID": "ring_gandir", + "quantity": 1, + "requireType": 0 + } + } + } + ] + }, + { + "id": "jan_background", + "message": "最初の1回で聞いていてくれなかったのか。本当に聞く必要があるかい?", + "replies": [ + { + "text": "はい、もう一度お願いします。", + "nextPhraseID": "jan_default3" + }, + { + "text": "聞いてなかったよ。お宝がどうかしたんだっけ?", + "nextPhraseID": "jan_default4" + }, + { + "text": "いえ、思い出したので気にしないでください。", + "nextPhraseID": "jan_default14" + } + ] + }, + { + "id": "jan_complete2", + "message": "Irogotuをやってくれて、本当に感謝する。これで私は君に一生分の借りがあるよ。", + "replies": [ + { + "text": "さようなら。", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_complete", + "message": "待った、洞窟に降りて行って、本当に生きて戻ってきた!? 私なんて死にかけたのに、よく出来たものだよ。\n\nGandirの指輪も持ってきてくれたか。ありがとう、彼の形見だ。", + "rewards": [ + { + "rewardType": 0, + "rewardID": "jan", + "value": 100 + } + ], + "replies": [ + { + "text": "こちらこそ協力出来てうれしく思います。さようなら。", + "nextPhraseID": "X" + }, + { + "text": "シャドーがあなたと共にありますように。", + "nextPhraseID": "X" + }, + { + "text": "何とでも。財宝をかっぱぐためににやっただけだ。", + "nextPhraseID": "X" + } + ] + }, + { + "id": "irogotu", + "message": "俺の洞窟へようこそ。冒険家がまた俺の財産を盗みにきたんだな?ここは俺の洞窟だ!ここにある財宝ははすべて俺のものだ!", + "replies": [ + { + "text": "お前がGandirを殺したのか?", + "nextPhraseID": "irogotu1", + "requires": { + "progress": "jan:10" + } + } + ] + }, + { + "id": "irogotu1", + "message": "Gandirってあのガキか?あいつは俺の邪魔をしたんだ。あいつなんか俺にとっては洞窟掘りの道具でしかないってのにな。", + "replies": [ + { + "text": "N", + "nextPhraseID": "irogotu2" + } + ] + }, + { + "id": "irogotu2", + "message": "俺があいつに情けをかけるなんて、今まで一度もなかったぜ。", + "replies": [ + { + "text": "うん、その人は死ぬような奴だったってことだね。ところでGandirは指輪を持ってなかった?", + "nextPhraseID": "irogotu3" + }, + { + "text": "Janが指輪のことについて話していたけど?", + "nextPhraseID": "irogotu3" + } + ] + }, + { + "id": "irogotu3", + "message": "お前には渡さん、これは俺のものだ!\nお前は子供のくせに、わざわざ邪魔すんのか!?", + "replies": [ + { + "text": "僕は子供じゃない!さあ指輪を渡せ!", + "nextPhraseID": "irogotu4" + }, + { + "text": "指輪を渡せ。さもなくば僕とお前のどちらかは死体でここを出ることになるぞ。", + "nextPhraseID": "irogotu4" + } + ] + }, + { + "id": "irogotu4", + "message": "欲しければ力ずくで奪えよ。まあ俺のほうが強いが、それでもやるのか?", + "replies": [ + { + "text": "上等だ、どっちが死ぬのか見てみろ。", + "nextPhraseID": "F" + }, + { + "text": "シャドーによって、あなたはGandirの復讐を受けますよ。", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-ja/conversationlist_mikhail.json b/AndorsTrail/res/raw-ja/conversationlist_mikhail.json new file mode 100644 index 000000000..4734b8bed --- /dev/null +++ b/AndorsTrail/res/raw-ja/conversationlist_mikhail.json @@ -0,0 +1,350 @@ +[ + { + "id": "mikhail_start_select", + "replies": [ + { + "nextPhraseID": "mikhail_start_select2", + "requires": { + "progress": "mikhail_bread:100" + } + }, + { + "nextPhraseID": "mikhail_bread_continue", + "requires": { + "progress": "mikhail_bread:10" + } + }, + { + "nextPhraseID": "mikhail_start_select2" + } + ] + }, + { + "id": "mikhail_start_select2", + "replies": [ + { + "nextPhraseID": "mikhail_start_select_default", + "requires": { + "progress": "mikhail_rats:100" + } + }, + { + "nextPhraseID": "mikhail_rats_continue", + "requires": { + "progress": "mikhail_rats:10" + } + }, + { + "nextPhraseID": "mikhail_start_select_default" + } + ] + }, + { + "id": "mikhail_start_select_default", + "replies": [ + { + "nextPhraseID": "mikhail_visited", + "requires": { + "progress": "andor:1" + } + }, + { + "nextPhraseID": "mikhail_gamestart" + } + ] + }, + { + "id": "mikhail_gamestart", + "message": "おはよう、目は覚めたかな。", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_visited" + } + ] + }, + { + "id": "mikhail_visited", + "message": "おまえのお兄さんのAndorが見当たらないぞ。あれは昨日出かけたきり戻ってきておらん。", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 1 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail3" + } + ] + }, + { + "id": "mikhail3", + "message": "まあ気にするな、じきに戻ってくるだろう。", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_default", + "message": "何かしてほしいことでもあるのか?", + "replies": [ + { + "text": "やって欲しい仕事でもありますか?", + "nextPhraseID": "mikhail_tasks" + }, + { + "text": "Andorの話は他にないんですか?", + "nextPhraseID": "mikhail_andor1" + } + ] + }, + { + "id": "mikhail_tasks", + "message": "ああ、いくつかやってほしいことがあったな。パンの事とネズミの事があるが、どれから聞きたいかな。", + "replies": [ + { + "text": "パンの事を聞こう。", + "nextPhraseID": "mikhail_bread_select" + }, + { + "text": "ネズミの事を聞こう。", + "nextPhraseID": "mikhail_rats_select" + }, + { + "text": "やっぱり、別な事を話しましょう。", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_andor1", + "message": "さっきも言ったが、Andorは昨日出かけてから戻ってきておらん。さて、心配になってきたな。おまえのお兄さんを探してくるのをお願いしよう。あれは、少しだけ外出するとしか言っておらんかった。", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_andor2" + } + ] + }, + { + "id": "mikhail_andor2", + "message": "またあの貯蔵の洞穴にでも入っていって、出られなくなったのでないか。 でなければ、またLetaの地下室で、木刀を担いで訓練をしているのかも知れんな。 村の中を探してみてくれ。", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_bread_select", + "replies": [ + { + "nextPhraseID": "mikhail_bread_complete2", + "requires": { + "progress": "mikhail_bread:100" + } + }, + { + "nextPhraseID": "mikhail_bread_continue", + "requires": { + "progress": "mikhail_bread:10" + } + }, + { + "nextPhraseID": "mikhail_bread_start" + } + ] + }, + { + "id": "mikhail_bread_start", + "message": "そうだ、集会場にいるMaraからパンを買ってきてくれんか? 時間があるときでいいぞ。", + "rewards": [ + { + "rewardType": 0, + "rewardID": "mikhail_bread", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_bread_continue", + "message": "集会場にいるMaraから、パンを買ってきてくれたか?", + "replies": [ + { + "text": "はい、どうぞ。", + "nextPhraseID": "mikhail_bread_complete", + "requires": { + "item": { + "itemID": "bread", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "いや、まだです。", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_bread_complete", + "message": "おお済まない、手伝いの代金をあげよう。さて、これで朝飯を作ることができるぞ。", + "rewards": [ + { + "rewardType": 0, + "rewardID": "mikhail_bread", + "value": 100 + }, + { + "rewardType": 1, + "rewardID": "gold20" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_bread_complete2", + "message": "パンは持ってきてくれていたな。ありがとう。", + "replies": [ + { + "text": "どういたしまして。", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_rats_select", + "replies": [ + { + "nextPhraseID": "mikhail_rats_complete2", + "requires": { + "progress": "mikhail_rats:100" + } + }, + { + "nextPhraseID": "mikhail_rats_continue", + "requires": { + "progress": "mikhail_rats:10" + } + }, + { + "nextPhraseID": "mikhail_rats_start" + } + ] + }, + { + "id": "mikhail_rats_start", + "message": "先日、家の裏庭にネズミが出ているのを見とるんだ。外に出て、おまえがネズミを全部殺してきてくれんか。", + "rewards": [ + { + "rewardType": 0, + "rewardID": "mikhail_rats", + "value": 10 + } + ], + "replies": [ + { + "text": "もう始末してきました。", + "nextPhraseID": "mikhail_rats_complete", + "requires": { + "item": { + "itemID": "tail_trainingrat", + "quantity": 2, + "requireType": 0 + } + } + }, + { + "text": "わかりました、庭を見てきます。", + "nextPhraseID": "mikhail_rats_start2" + } + ] + }, + { + "id": "mikhail_rats_start2", + "message": "ネズミに怪我をさせられていたら、奥にあるおまえのベッドで休みなさい。 それで強さを取り戻すことができるからな。", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_rats_start3" + } + ] + }, + { + "id": "mikhail_rats_start3", + "message": "それに、持っているアイテムを確認するのを忘れるな。 私があげた古い指輪をまだ持っているんじゃないか? それを着けるようにしなさい。", + "replies": [ + { + "text": "わかりました。怪我をしたら休憩をします。それと、持っているアイテムを確認して使えるものを探します。", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_rats_continue", + "message": "うちの庭にいるネズミを2匹とも殺したか?", + "replies": [ + { + "text": "あのネズミは、今始末してきました。", + "nextPhraseID": "mikhail_rats_complete", + "requires": { + "item": { + "itemID": "tail_trainingrat", + "quantity": 2, + "requireType": 0 + } + } + }, + { + "text": "まだです。", + "nextPhraseID": "mikhail_rats_start2" + } + ] + }, + { + "id": "mikhail_rats_complete", + "message": "やったのか? おお、本当にありがとう。\n\n怪我をしていたら、そこにあるおまえのベッドで休憩して、体力を回復しなさい。", + "rewards": [ + { + "rewardType": 0, + "rewardID": "mikhail_rats", + "value": 100 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_rats_complete2", + "message": "ネズミ退治、ご苦労様だよ。\n\n怪我をしていたら、そこにあるおまえのベッドで休憩して、体力を回復しなさい。", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pl/actorconditions_v0610.json b/AndorsTrail/res/raw-pl/actorconditions_v0610.json new file mode 100644 index 000000000..201e6abd5 --- /dev/null +++ b/AndorsTrail/res/raw-pl/actorconditions_v0610.json @@ -0,0 +1,27 @@ +[ + { + "id": "chaotic_grip", + "iconID": "actorconditions_1:96", + "name": "Chaotyczne działanie", + "category": 1, + "abilityEffect": { + "increaseBlockChance": -10, + "increaseDamageResistance": -1 + } + }, + { + "id": "chaotic_curse", + "iconID": "actorconditions_1:89", + "name": "Klątwa chaosu", + "category": 1, + "abilityEffect": { + "increaseMaxAP": -1, + "increaseAttackDamage": { + "min": -1, + "max": -1 + }, + "increaseBlockChance": -10, + "increaseDamageResistance": -1 + } + } +] diff --git a/AndorsTrail/res/raw-pl/actorconditions_v0611.json b/AndorsTrail/res/raw-pl/actorconditions_v0611.json new file mode 100644 index 000000000..faa6a787f --- /dev/null +++ b/AndorsTrail/res/raw-pl/actorconditions_v0611.json @@ -0,0 +1,78 @@ +[ + { + "id": "contagion", + "iconID": "actorconditions_1:58", + "name": "Zakażenie od robactwa", + "category": 3, + "abilityEffect": { + "increaseAttackChance": -10, + "increaseAttackDamage": { + "min": -1, + "max": -1 + } + } + }, + { + "id": "blister", + "iconID": "actorconditions_1:15", + "name": "Pęcherze na skórze", + "category": 3, + "roundEffect": { + "visualEffectID": 0, + "increaseCurrentHP": { + "min": -1, + "max": -1 + } + } + }, + { + "id": "stunned", + "iconID": "actorconditions_1:95", + "name": "Kołowaty", + "category": 2, + "abilityEffect": { + "increaseMaxAP": -2, + "increaseMoveCost": 8, + "increaseAttackCost": 5 + } + }, + { + "id": "focus_dmg", + "iconID": "actorconditions_1:70", + "name": "Skoncentrowane obrażenia", + "category": 1, + "isPositive": 1, + "abilityEffect": { + "increaseAttackCost": 1, + "increaseAttackDamage": { + "min": 3, + "max": 3 + } + } + }, + { + "id": "focus_ac", + "iconID": "actorconditions_1:98", + "name": "Skoncenctrowanie na celności", + "category": 1, + "isPositive": 1, + "abilityEffect": { + "increaseAttackCost": 1, + "increaseAttackChance": 40 + } + }, + { + "id": "poison_irdegh", + "iconID": "actorconditions_1:60", + "name": "trucizna irdegh", + "category": 3, + "isStacking": 1, + "roundEffect": { + "visualEffectID": 2, + "increaseCurrentHP": { + "min": -1, + "max": -1 + } + } + } +] diff --git a/AndorsTrail/res/raw-pl/actorconditions_v0611_2.json b/AndorsTrail/res/raw-pl/actorconditions_v0611_2.json new file mode 100644 index 000000000..1fd66885b --- /dev/null +++ b/AndorsTrail/res/raw-pl/actorconditions_v0611_2.json @@ -0,0 +1,97 @@ +[ + { + "id": "rotworm", + "iconID": "actorconditions_1:82", + "name": "Kazaul rotworm", + "category": 2, + "abilityEffect": { + "increaseMaxHP": -15, + "increaseMaxAP": -3, + "increaseDamageResistance": -1 + } + }, + { + "id": "shadowbless_str", + "iconID": "actorconditions_1:70", + "name": "Błogosławieństwo sił cieni", + "category": 0, + "isPositive": 1, + "abilityEffect": { + "increaseAttackDamage": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "shadowbless_heal", + "iconID": "actorconditions_1:35", + "name": "Błogosławieństwo regeneracji cieni", + "category": 0, + "isPositive": 1, + "roundEffect": { + "visualEffectID": 1, + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "shadowbless_acc", + "iconID": "actorconditions_1:98", + "name": "Błogosławieństwo celności cieni", + "category": 0, + "isPositive": 1, + "abilityEffect": { + "increaseAttackChance": 30 + } + }, + { + "id": "shadowbless_guard", + "iconID": "actorconditions_1:91", + "name": "Błogosławieństwo ochronne cieni", + "category": 0, + "isPositive": 1, + "abilityEffect": { + "increaseMaxHP": 30, + "increaseDamageResistance": 1 + } + }, + { + "id": "crit1", + "iconID": "actorconditions_1:89", + "name": "Krwawienie wewnętrzne", + "category": 2, + "isStacking": 1, + "abilityEffect": { + "increaseAttackCost": 1, + "increaseAttackChance": -50, + "increaseAttackDamage": { + "min": -3, + "max": -3 + } + } + }, + { + "id": "crit2", + "iconID": "actorconditions_1:89", + "name": "Złamanie", + "category": 2, + "isStacking": 1, + "abilityEffect": { + "increaseBlockChance": -50, + "increaseDamageResistance": -2 + } + }, + { + "id": "concussion", + "iconID": "actorconditions_1:80", + "name": "Kontuzja", + "category": 2, + "isStacking": 1, + "abilityEffect": { + "increaseAttackChance": -30 + } + } +] diff --git a/AndorsTrail/res/raw-pl/actorconditions_v069.json b/AndorsTrail/res/raw-pl/actorconditions_v069.json new file mode 100644 index 000000000..de3f721ab --- /dev/null +++ b/AndorsTrail/res/raw-pl/actorconditions_v069.json @@ -0,0 +1,52 @@ +[ + { + "id": "bless", + "iconID": "actorconditions_1:41", + "name": "Błogosławieństwo", + "category": 0, + "isPositive": 1, + "abilityEffect": { + "increaseAttackChance": 5 + } + }, + { + "id": "poison_weak", + "iconID": "actorconditions_1:60", + "name": "Słaba trucizna", + "category": 3, + "roundEffect": { + "visualEffectID": 2, + "increaseCurrentHP": { + "min": -1, + "max": -1 + } + } + }, + { + "id": "str", + "iconID": "actorconditions_1:70", + "name": "Siła", + "category": 2, + "isPositive": 1, + "abilityEffect": { + "increaseAttackDamage": { + "min": 2, + "max": 2 + } + } + }, + { + "id": "regen", + "iconID": "actorconditions_1:35", + "name": "Regeneracja cieni", + "category": 0, + "isPositive": 1, + "roundEffect": { + "visualEffectID": 1, + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + } +] diff --git a/AndorsTrail/res/raw-pl/actorconditions_v069_bwm.json b/AndorsTrail/res/raw-pl/actorconditions_v069_bwm.json new file mode 100644 index 000000000..9a701a2b0 --- /dev/null +++ b/AndorsTrail/res/raw-pl/actorconditions_v069_bwm.json @@ -0,0 +1,101 @@ +[ + { + "id": "speed_minor", + "iconID": "actorconditions_1:87", + "name": "Drobne przyspieszenie", + "category": 2, + "isPositive": 1, + "abilityEffect": { + "increaseMaxAP": 2 + } + }, + { + "id": "fatigue_minor", + "iconID": "actorconditions_1:14", + "name": "Drobne zmęczenie", + "category": 2, + "abilityEffect": { + "increaseMoveCost": 2, + "increaseAttackCost": 2, + "increaseAttackDamage": { + "min": -1, + "max": -1 + } + } + }, + { + "id": "feebleness_minor", + "iconID": "actorconditions_1:74", + "name": "Drobne osłabienie broni", + "category": 1, + "abilityEffect": { + "increaseAttackDamage": { + "min": -3, + "max": -3 + } + } + }, + { + "id": "bleeding_wound", + "iconID": "actorconditions_2:0", + "name": "Krwawiące rany", + "category": 3, + "isStacking": 1, + "roundEffect": { + "visualEffectID": 0, + "increaseCurrentHP": { + "min": -1, + "max": -1 + } + } + }, + { + "id": "rage_minor", + "iconID": "actorconditions_1:90", + "name": "Słaby berserk", + "category": 1, + "isPositive": 1, + "abilityEffect": { + "increaseMaxHP": 35, + "increaseAttackChance": 60, + "increaseBlockChance": -90, + "increaseDamageResistance": -1 + } + }, + { + "id": "blackwater_misery", + "iconID": "actorconditions_1:58", + "name": "Nieszczęście Blackwater", + "category": 3, + "abilityEffect": { + "increaseAttackCost": 1, + "increaseAttackChance": -50, + "increaseCriticalSkill": -50 + } + }, + { + "id": "intoxicated", + "iconID": "actorconditions_2:1", + "name": "Odurzenie", + "category": 1, + "isPositive": 1, + "abilityEffect": { + "increaseMaxHP": 15, + "increaseAttackCost": 1, + "increaseAttackChance": -30, + "increaseAttackDamage": { + "min": 4, + "max": 4 + } + } + }, + { + "id": "dazed", + "iconID": "actorconditions_1:65", + "name": "Oszołomienie", + "category": 1, + "abilityEffect": { + "increaseBlockChance": -40 + } + } +] diff --git a/AndorsTrail/res/raw-pl/conversationlist_crossglen.json b/AndorsTrail/res/raw-pl/conversationlist_crossglen.json new file mode 100644 index 000000000..98bf5a5d6 --- /dev/null +++ b/AndorsTrail/res/raw-pl/conversationlist_crossglen.json @@ -0,0 +1,140 @@ +[ + { + "id": "audir1", + "message": "Witaj w moim skromnym sklepie!\n\nNie krępuj się, wybierz sobie coś.", + "replies": [ + { + "text": "Pokaż mi swoje towary.", + "nextPhraseID": "S" + } + ] + }, + { + "id": "arambold1", + "message": "Ojej czy ja kiedykolwiek usnę, gdy ci pijani ludzie będą tak drzeć papę?\n\nKtoś powinien coś z nimi zrobić.", + "replies": [ + { + "text": "Mogę tu odpocząć?", + "nextPhraseID": "arambold2" + }, + { + "text": "Masz coś na wymianę?", + "nextPhraseID": "S" + } + ] + }, + { + "id": "arambold2", + "message": "Jasne dzieciaku możesz tu odpoczywać.\n\nWybierz sobie jakieś łóżko.", + "replies": [ + { + "text": "Dzięki, narazie", + "nextPhraseID": "X" + } + ] + }, + { + "id": "drunk1", + "message": "Pij,kur.hmpf,pić, i pić jeszcze więcej.\nWkrocz, że rychło w nasze skromne progi wypijem pare piwek nie wstaniem z podłogi.\n\nEj dzieciaku to nie żadna mara rogość się ja na ten czas roztworze browara", + "replies": [ + { + "text": "Nie, dzięki.", + "nextPhraseID": "X" + }, + { + "text": "Może kiedy indziej.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "mara_default", + "message": "Nie zwracaj uwagi na tych pijaków, zawsze stwarzają problemy.\n\nChcesz coś na ząb?", + "replies": [ + { + "text": "Masz coś na sprzedaż?", + "nextPhraseID": "S" + } + ] + }, + { + "id": "mara1", + "replies": [ + { + "nextPhraseID": "mara_thanks", + "requires": { + "progress": "odair:100" + } + }, + { + "nextPhraseID": "mara_default" + } + ] + }, + { + "id": "mara_thanks", + "message": "Słyszałem, że pomogłeś Odirowi oczyszczając tą jaskinie. Wielkie dzięki znów możemy jej używać.", + "replies": [ + { + "text": "Przyjemność po mojej stronie.", + "nextPhraseID": "mara_default" + } + ] + }, + { + "id": "farm1", + "message": "Nie przeszkadzaj mi, jestem zajęty.", + "replies": [ + { + "text": "Widziałeś może mojego brata Andora?", + "nextPhraseID": "farm_andor" + } + ] + }, + { + "id": "farm2", + "message": "Co, nie widzisz, że jestem zajęty? Idź zawracaj głowę komuś innemu.", + "replies": [ + { + "text": "Widziałeś może mojego brata Andora?", + "nextPhraseID": "farm_andor" + } + ] + }, + { + "id": "farm_andor", + "message": "Andor? Nie widziałem go już dosyć dawno." + }, + { + "id": "snakemaster", + "message": "No, no co my tu mamy? Przybysz, jak miło. Jestem pod wrażeniem tego, że tutaj dotarłeś.\n\nPrzygotuj się na śmierć mały człowieczku.", + "replies": [ + { + "text": "Świetnie, długo czekałem na jakąś walkę!", + "nextPhraseID": "F" + }, + { + "text": "Zobaczymy kto tutaj dziś umrze.", + "nextPhraseID": "F" + }, + { + "text": "Proszę nie rób mi krzywdy!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "haunt", + "message": "Śmiertelniku, uwolnij mnie z tego przeklętego świata!", + "replies": [ + { + "text": "Oczywiście, że cie uwolnie.", + "nextPhraseID": "F" + }, + { + "text": "Masz na myśli poprzez zabicie cie?", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pl/conversationlist_crossglen_gruil.json b/AndorsTrail/res/raw-pl/conversationlist_crossglen_gruil.json new file mode 100644 index 000000000..fd2e773ef --- /dev/null +++ b/AndorsTrail/res/raw-pl/conversationlist_crossglen_gruil.json @@ -0,0 +1,118 @@ +[ + { + "id": "gruil1", + "message": "Psst, hej.\n\nChcesz coś kupić?", + "replies": [ + { + "text": "Jasne, pokaż co masz.", + "nextPhraseID": "S" + }, + { + "text": "Słyszałem, że rozmawiałeś z moim bratem jakiś czas temu.", + "nextPhraseID": "gruil_select", + "requires": { + "progress": "andor:10" + } + } + ] + }, + { + "id": "gruil_select", + "replies": [ + { + "nextPhraseID": "gruil_return", + "requires": { + "progress": "andor:30" + } + }, + { + "nextPhraseID": "gruil2" + } + ] + }, + { + "id": "gruil2", + "message": "Z twoim bratem? A masz na myśli Andora? Może i coś wiem, ale ta informacja będzie kosztować. Przynieś mi trujący gruczoł jednego z tych węży, a może coś powiem.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 20 + } + ], + "replies": [ + { + "text": "Mam ten gruczoł dla ciebie.", + "nextPhraseID": "gruil_complete", + "requires": { + "item": { + "itemID": "gland", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Dobra przyniosę.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "gruil_complete", + "message": "Dzięki dzieciaku. Ten będzie w sam raz.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "gruil_andor1" + } + ] + }, + { + "id": "gruil_return", + "message": "Już ci mówiłem co wiem.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gruil_andor1" + } + ] + }, + { + "id": "gruil_andor1", + "message": "Gadałem z nim wczoraj. Pytał się czy znam jakiegoś Umara albo jakoś tak. Nie mam pojęcia o kogo mu chodziło.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gruil_andor2" + } + ] + }, + { + "id": "gruil_andor2", + "message": "Wyglądał na zdenerwowanego i odszedł w pośpiechu. Coś o gildii złodzieji w Fallheaven.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gruil_andor3" + } + ] + }, + { + "id": "gruil_andor3", + "message": "To wszystko co wiem. Może powinieneś popytać w Fallheaven. Znajdź tam mojego znajomego Gaela, możliwe, że on wie coś więcej.", + "replies": [ + { + "text": "Thanks, bye.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pl/conversationlist_crossglen_leonid.json b/AndorsTrail/res/raw-pl/conversationlist_crossglen_leonid.json new file mode 100644 index 000000000..e52be3b91 --- /dev/null +++ b/AndorsTrail/res/raw-pl/conversationlist_crossglen_leonid.json @@ -0,0 +1,201 @@ +[ + { + "id": "leonid1", + "message": "Hej dzieciaku nie jesteś czasem synem Mikhaila? Z twoim bratem.\n\nJestem Leonid zarządca Crossglen.", + "replies": [ + { + "text": "Widziałeś mojego brata Andora?", + "nextPhraseID": "leonid_andor" + }, + { + "text": "Co możesz mi powiedzieć o Crossglen?", + "nextPhraseID": "leonid_crossglen" + }, + { + "text": "Nieważne, narazie.", + "nextPhraseID": "leonid_bye" + } + ] + }, + { + "id": "leonid_andor", + "message": "Twojego brata? Nie, nie widziałem go dzisiaj. Chyba widziałem go wczoraj jak gadał z Gruilem. Może on coś wie?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 10 + } + ], + "replies": [ + { + "text": "Dzięki pójde pogadać z tym Gruilem. Jest coś jeszcze o czym chciałem z tobą porozmawiać.", + "nextPhraseID": "leonid_continue" + }, + { + "text": "Dzięki, idę pogadać z Gruilem.", + "nextPhraseID": "leonid_bye" + } + ] + }, + { + "id": "leonid_continue", + "message": "Jest coś jeszcze w czym mogę ci pomóc?", + "replies": [ + { + "text": "Widziałeś mojego brata?", + "nextPhraseID": "leonid_andor" + }, + { + "text": "Co możesz mi powiedzieć o Crossglen?", + "nextPhraseID": "leonid_crossglen" + }, + { + "text": "Nieważne, do zobaczenia.", + "nextPhraseID": "leonid_bye" + } + ] + }, + { + "id": "leonid_crossglen", + "message": "Jak już wiesz znajdujemy się w Crossglen. Większość tutaj to farmy.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen1" + } + ] + }, + { + "id": "leonid_crossglen1", + "message": "Audir to nasz kowal jest na południowy zachód, Leta i jej mąż mieszkają na zachód stąd, centrum i chata twojego ojca położone są na północny zachód stąd.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen2" + } + ] + }, + { + "id": "leonid_crossglen2", + "message": "I to w sumie wszystko. Staramy się wieść spokojne życie.", + "replies": [ + { + "text": "Działo się coś ostatnio tutaj niespotykanego?", + "nextPhraseID": "leonid_crossglen3" + }, + { + "text": "Wróćmy do moich poprzednich pytań.", + "nextPhraseID": "leonid_continue" + } + ] + }, + { + "id": "leonid_crossglen3", + "message": "Parę tygodni temu były jakieś burdy. Paru mieszkańców pobiło się o zakaz dotyczący potków bonemeal które zakazał Lord Geomyr.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen4" + } + ] + }, + { + "id": "leonid_crossglen4", + "message": "Lord Geomyr wydał oświadczenie, które mówiło, że używanie potków bonemeal jest od tej pory nielegalne. Niektórzy mieszkańcy mówili, żebyśmy i tak ich używali.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen4_1" + } + ] + }, + { + "id": "leonid_crossglen4_1", + "message": "Tharal, nasz kapłan delikatnie mówiąc zdenerwował się i powiedział, że trzeba coś zrobić z Lordem Geomyrem.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen5" + } + ] + }, + { + "id": "leonid_crossglen5", + "message": "Inni zaś stanęli murem za Lordem Geomyrem.\n\nOsobiście sam nie wiem co o tym myśleć.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen6" + } + ] + }, + { + "id": "leonid_crossglen6", + "message": "Z jednej strony Lord Geomyr chroni nasze Crossglen. *pokazuje na żołnierzy w sali*", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen7" + } + ] + }, + { + "id": "leonid_crossglen7", + "message": "Ale z drugiej strony, podatki i najnowsze zmiany naprawdę szkodzą Crossglen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen8" + } + ] + }, + { + "id": "leonid_crossglen8", + "message": "Ktoś musi udać się do zamku Geomyra i porozmawiać z zarządcą o naszej sytuacji.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "crossglen", + "value": 1 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen9" + } + ] + }, + { + "id": "leonid_crossglen9", + "message": "A do tego czasu bonemeal jest zakazany.", + "replies": [ + { + "text": "Thank you for the information. There was something more I wanted to ask you.", + "nextPhraseID": "leonid_continue" + }, + { + "text": "Thank you for the information. Bye.", + "nextPhraseID": "leonid_bye" + } + ] + }, + { + "id": "leonid_bye", + "message": "Niech cień będzie z tobą.", + "replies": [ + { + "text": "Shadow be with you.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pl/conversationlist_crossglen_leta.json b/AndorsTrail/res/raw-pl/conversationlist_crossglen_leta.json new file mode 100644 index 000000000..1c60f9c2f --- /dev/null +++ b/AndorsTrail/res/raw-pl/conversationlist_crossglen_leta.json @@ -0,0 +1,110 @@ +[ + { + "id": "leta1", + "message": "Hej, to mój dom wynocha stąd!", + "replies": [ + { + "text": "Ale ja tylko...", + "nextPhraseID": "leta2" + }, + { + "text": "O co chodzi z twoim mężem Oromirem?", + "nextPhraseID": "leta_oromir_select" + } + ] + }, + { + "id": "leta2", + "message": "Spadaj stąd mały!", + "replies": [ + { + "text": "O co chodzi z twoim mężem Oromirem?", + "nextPhraseID": "leta_oromir_select" + } + ] + }, + { + "id": "leta_oromir_select", + "replies": [ + { + "nextPhraseID": "leta_oromir_complete2", + "requires": { + "progress": "leta:100" + } + }, + { + "nextPhraseID": "leta_oromir1" + } + ] + }, + { + "id": "leta_oromir1", + "message": "Wiesz coś o moim mężu? Powinien tu teraz byc i pomagać mi na farmie, ale wygląda na to, że zniknął jak zawsze.\nSigh.", + "replies": [ + { + "text": "Niestety, nie mam pojęcia.", + "nextPhraseID": "leta_oromir2" + }, + { + "text": "Znalazłem go. Ukrywa się wśród drzew na wschód stąd.", + "nextPhraseID": "leta_oromir_complete", + "requires": { + "progress": "leta:20" + } + } + ] + }, + { + "id": "leta_oromir2", + "message": "Jak go zobaczysz, powiedz mu, żeby tu przyszedł i pomógł mi w domu.\nA teraz wynoś się!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "leta", + "value": 10 + } + ] + }, + { + "id": "leta_oromir_complete", + "message": "Ukrywa się? Nic nadzwyczajnego. Pójdę po niego i pokaże mu kto w tym domu nosi spodnie.\nDzięki za info o starym.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "leta", + "value": 100 + } + ] + }, + { + "id": "leta_oromir_complete2", + "message": "Dzięki za pomoc z Oromirem. Właśnie się po niego wybieram." + }, + { + "id": "oromir1", + "message": "Oh przestraszyłeś mnie.\nCześć.", + "replies": [ + { + "text": "Siema", + "nextPhraseID": "oromir2" + } + ] + }, + { + "id": "oromir2", + "message": "Chowam się tu przed moją żoną Letą. Zawsze ma mi za złe, że nie pomagam na farmie. Tylko proszę nie mów jej, że tu jestem.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "leta", + "value": 20 + } + ], + "replies": [ + { + "text": "Ok.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pl/conversationlist_crossglen_odair.json b/AndorsTrail/res/raw-pl/conversationlist_crossglen_odair.json new file mode 100644 index 000000000..cd4ed8d5a --- /dev/null +++ b/AndorsTrail/res/raw-pl/conversationlist_crossglen_odair.json @@ -0,0 +1,161 @@ +[ + { + "id": "odair1", + "message": "A to ty. Ty i ten twój brat. Zawsze stwarzacie problemy.", + "replies": [ + { + "text": "N", + "nextPhraseID": "odair_select" + } + ] + }, + { + "id": "odair_select", + "replies": [ + { + "nextPhraseID": "odair_complete2", + "requires": { + "progress": "odair:100" + } + }, + { + "nextPhraseID": "odair_continue", + "requires": { + "progress": "odair:10" + } + }, + { + "nextPhraseID": "odair2" + } + ] + }, + { + "id": "odair2", + "message": "Hmm, może jednak będzie z ciebie pożytek. Myślisz, że dasz radę wykonać małą robótkę?", + "replies": [ + { + "text": "Powiedz mi co to za robótka.", + "nextPhraseID": "odair3" + }, + { + "text": "Jasne, jeśli mi się to opłaci.", + "nextPhraseID": "odair3" + } + ] + }, + { + "id": "odair3", + "message": "Swojego czasu często chodziłem do tej jaskini *pokazuje na zachód*, żeby sprawdzić zapasy. Ale w tej jaskini ostatnio zaroiło się od szczurów.", + "replies": [ + { + "text": "N", + "nextPhraseID": "odair4" + } + ] + }, + { + "id": "odair4", + "message": "Właściwie to zauważyłem, że jeden z tych szczurów jest większy niż pozostałe. Myślisz, że masz co trzeba, żeby się ich pozbyć?", + "replies": [ + { + "text": "Jasnę pomogę ci żebyście znów mogli tam robić zapasy.", + "nextPhraseID": "odair5" + }, + { + "text": "Jasnę pomogę ci, ale tylko dlatego, że może tam być coś cennego dla mnie.", + "nextPhraseID": "odair5" + }, + { + "text": "Nie, dzięki", + "nextPhraseID": "odair_cowards" + } + ] + }, + { + "id": "odair5", + "message": "Musisz tam wejść i zabić tego największego, może dzięki temu reszta sobie pójdzie i znów będziemy mogli używać tej jaskini.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "odair", + "value": 10 + } + ], + "replies": [ + { + "text": "Ok", + "nextPhraseID": "X" + }, + { + "text": "On second thought, I don't think I will help you after all.", + "nextPhraseID": "odair_cowards" + } + ] + }, + { + "id": "odair_cowards", + "message": "Wiedziałem, że tak będzie. Ty i twój brat zawsze byliście tchórzami.", + "replies": [ + { + "text": "Bye", + "nextPhraseID": "X" + } + ] + }, + { + "id": "odair_continue", + "message": "Zabiłeś tego olbrzymiego szczura w jaskini na zachód stąd?", + "replies": [ + { + "text": "Tak, zabiłem go.", + "nextPhraseID": "odair_complete", + "requires": { + "item": { + "itemID": "tail_caverat", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Jeszcze raz co miałem zrobić?", + "nextPhraseID": "odair5" + }, + { + "text": "Nie, jeszcze nie.", + "nextPhraseID": "odair_cowards" + } + ] + }, + { + "id": "odair_complete", + "message": "Dzięki młody! Może ty i twój brat nie jesteście takimi tchórzami jak myślałem. Weź te monety jako moje podziękowanie.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "odair", + "value": 100 + }, + { + "rewardType": 1, + "rewardID": "gold20" + } + ], + "replies": [ + { + "text": "Dzięki", + "nextPhraseID": "X" + } + ] + }, + { + "id": "odair_complete2", + "message": "Dzięki za pomoc z tamtymi szczurami. W końcu możemy używać tej jaskini.", + "replies": [ + { + "text": "Bye", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pl/conversationlist_crossglen_tharal.json b/AndorsTrail/res/raw-pl/conversationlist_crossglen_tharal.json new file mode 100644 index 000000000..efb7504ef --- /dev/null +++ b/AndorsTrail/res/raw-pl/conversationlist_crossglen_tharal.json @@ -0,0 +1,138 @@ +[ + { + "id": "tharal1", + "message": "Krocz w blasku cieni moje dziecko.", + "replies": [ + { + "text": "Masz coś na sprzedaż?", + "nextPhraseID": "S" + }, + { + "text": "Co możesz mi powiedzieć o Bonemeal?", + "nextPhraseID": "tharal_bonemeal_select", + "requires": { + "progress": "bonemeal:10" + } + } + ] + }, + { + "id": "tharal_bonemeal_select", + "replies": [ + { + "nextPhraseID": "tharal_bonemeal4", + "requires": { + "progress": "bonemeal:30" + } + }, + { + "nextPhraseID": "tharal_bonemeal1" + } + ] + }, + { + "id": "tharal_bonemeal1", + "message": "Bonemeal? Nie powinniśmy o tym rozmawiać. Lord Geomyr zabronił. Bonemeal jest już zakazany.", + "replies": [ + { + "text": "Please?", + "nextPhraseID": "tharal_bonemeal2_1" + } + ] + }, + { + "id": "tharal_bonemeal2_1", + "message": "Nie, naprawdę nie powinniśmy o tym rozmawiać.", + "replies": [ + { + "text": "Nie bądź taki powiedz.", + "nextPhraseID": "tharal_bonemeal2" + } + ] + }, + { + "id": "tharal_bonemeal2", + "message": "Jeśli tak bardzo się upierasz. Przynieś mi 5 skrzydeł insektów, użyję ich do produkcji potków i może powiem ci co nie co.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 20 + } + ], + "replies": [ + { + "text": "Here, I have the insect wings.", + "nextPhraseID": "tharal_bonemeal3", + "requires": { + "item": { + "itemID": "insectwing", + "quantity": 5, + "requireType": 0 + } + } + }, + { + "text": "Ok, I'll bring them.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "tharal_bonemeal3", + "message": "Dzięki dzieciaku. Wiedziałem, że mogę na ciebie liczyć.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "tharal_bonemeal4" + } + ] + }, + { + "id": "tharal_bonemeal4", + "message": "O tak bonemeal. Wymieszany z odpowiednimi składnikami jest chyba jednym z najskuteczniejszych uzdrawiających potków.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tharal_bonemeal5" + } + ] + }, + { + "id": "tharal_bonemeal5", + "message": "Kiedyś był używany częściej. Ale ten burak Lord Geomyr zabronił go całkowicie.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tharal_bonemeal6" + } + ] + }, + { + "id": "tharal_bonemeal6", + "message": "Jak niby mam teraz leczyć ludzi? Mam używać te zwykłe potki? Pff one są zbyt słabe.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tharal_bonemeal7" + } + ] + }, + { + "id": "tharal_bonemeal7", + "message": "Znam kogoś kto nadal jest w posiadaniu zapasu bonemealów. Idź porozmawiaj z Thoronirem, znajomym kapłanem z Fallheaven. Hasło brzmi 'Blask Cieni'.", + "replies": [ + { + "text": "Dzięki, żegnaj", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pl/conversationlist_fallhaven.json b/AndorsTrail/res/raw-pl/conversationlist_fallhaven.json new file mode 100644 index 000000000..571b708cb --- /dev/null +++ b/AndorsTrail/res/raw-pl/conversationlist_fallhaven.json @@ -0,0 +1,206 @@ +[ + { + "id": "fallhaven_citizen1", + "message": "Hej. Ładną pogodę mamy nieprawdaż?", + "replies": [ + { + "text": "Widziałeś może mojego brata Andora?", + "nextPhraseID": "fallhaven_andor_1" + } + ] + }, + { + "id": "fallhaven_citizen2", + "message": "Cześć. Chcesz czegoś ode mnie?", + "replies": [ + { + "text": "Have you seen my brother Andor?", + "nextPhraseID": "fallhaven_andor_2" + } + ] + }, + { + "id": "fallhaven_citizen3", + "message": "Hi. Can I help you?", + "replies": [ + { + "text": "Widziałeś może mojego brata Andora?", + "nextPhraseID": "fallhaven_andor_3" + } + ] + }, + { + "id": "fallhaven_citizen4", + "message": "Ty jesteś tym dzieciakiem z Crossglen?", + "replies": [ + { + "text": "Widziałeś może mojego brata Andora??", + "nextPhraseID": "fallhaven_andor_4" + } + ] + }, + { + "id": "fallhaven_citizen5", + "message": "Z drogi, wieśniaku." + }, + { + "id": "fallhaven_citizen6", + "message": "Miłego dnia.", + "replies": [ + { + "text": "Widziałeś może mojego brata Andora??", + "nextPhraseID": "fallhaven_andor_6" + } + ] + }, + { + "id": "fallhaven_andor_1", + "message": "Nie, przepraszam, ale nikogo takiego nie widziałem." + }, + { + "id": "fallhaven_andor_2", + "message": "Mówisz, że jakiś inny dzieciak tu był? Hm, daj mi pomyśleć.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_andor_1" + } + ] + }, + { + "id": "fallhaven_andor_3", + "message": "Hm, Może i widziałem kogoś podobnego parę dni temu. Nie mogę sobie tylko przypomnieć gdzie." + }, + { + "id": "fallhaven_andor_4", + "message": "A tak, był tu jakiś inny dzieciak z Crossglen. Chociaż nie jestem pewny czy odpowiadał opisowi.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_andor_4_1" + } + ] + }, + { + "id": "fallhaven_andor_4_1", + "message": "Był z jakimiś podejrzanymi typami. To wszystko co widziałem." + }, + { + "id": "fallhaven_andor_6", + "message": "Nie. Nie widziałem." + }, + { + "id": "fallhaven_guard", + "message": "Trzymaj się z dala od problemów." + }, + { + "id": "fallhaven_priest", + "message": "Oby cień był z tobą.", + "replies": [ + { + "text": "Powiesz mi więcej o tym Cieniu?", + "nextPhraseID": "priest_shadow_1" + } + ] + }, + { + "id": "priest_shadow_1", + "message": "Cień nas chroni. Sprawia, że jesteśmy bezpieczni nawet, gdy idziemy spać.", + "replies": [ + { + "text": "N", + "nextPhraseID": "priest_shadow_2" + } + ] + }, + { + "id": "priest_shadow_2", + "message": "Śledzi nas na każdym kroku. Odejdź z Cieniem chłopcze.", + "replies": [ + { + "text": "Cień z tobą.", + "nextPhraseID": "X" + }, + { + "text": "Jak tam chcesz, narazie.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "rigmor", + "message": "No witam! Ale z ciebie mały słodki koleżka.", + "replies": [ + { + "text": "Widziałeś może mojego brata Andora?", + "nextPhraseID": "rigmor_1" + }, + { + "text": "Naprawdę muszę już iść.", + "nextPhraseID": "rigmor_leave_select" + } + ] + }, + { + "id": "rigmor_1", + "message": "Twojego brata mówisz? Na imię ma Andor? Nie. Nie przypominam sobie kogoś o takim imieniu.", + "replies": [ + { + "text": "I really need to go.", + "nextPhraseID": "rigmor_leave_select" + } + ] + }, + { + "id": "rigmor_leave_select", + "replies": [ + { + "nextPhraseID": "rigmor_thanks", + "requires": { + "progress": "calomyran:100" + } + }, + { + "nextPhraseID": "X" + } + ] + }, + { + "id": "rigmor_thanks", + "message": "Słyszałem, że pomogłeś znaleźć książke, dzięki. Mówił o tej książce przez tygodnie. Szkoda, że zapomina o tylu rzeczach.", + "replies": [ + { + "text": "Cała przyjemność po mojej stronie.", + "nextPhraseID": "X" + }, + { + "text": "Powinnaś mieć na niego oko, bo może mu się coś stać.", + "nextPhraseID": "X" + }, + { + "text": "Dobra, dobra zrobiłem to tylko dla złota.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_clothes", + "message": "Witam w moim sklepie. Proszę się rozejrzeć posiadamy ubrania i biżuterię.", + "replies": [ + { + "text": "Pokaż towary.", + "nextPhraseID": "S" + } + ] + }, + { + "id": "fallhaven_potions", + "message": "Witam w moim sklepie. Proszę się rozejrzeć mamy tutaj wyselekcjonowane napoje oraz potki.", + "replies": [ + { + "text": "Pokaż jakie masz potki.", + "nextPhraseID": "S" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pl/conversationlist_fallhaven_arcir.json b/AndorsTrail/res/raw-pl/conversationlist_fallhaven_arcir.json new file mode 100644 index 000000000..28105d63f --- /dev/null +++ b/AndorsTrail/res/raw-pl/conversationlist_fallhaven_arcir.json @@ -0,0 +1,153 @@ +[ + { + "id": "arcir_start", + "message": "Witaj. Jestem Arcir.", + "replies": [ + { + "text": "Zauważyem że masz posążek Elythara na dole.", + "nextPhraseID": "arcir_elythara_1", + "requires": { + "progress": "arcir:10" + } + }, + { + "text": "Chyba lubisz swoje książki.", + "nextPhraseID": "arcir_books_1" + } + ] + }, + { + "id": "arcir_anythingelse", + "message": "Coś jeszcze, o co chciałeś zapytać?", + "replies": [ + { + "text": "Zauważyem że masz posążek Elythara na dole.", + "nextPhraseID": "arcir_elythara_1", + "requires": { + "progress": "arcir:10" + } + }, + { + "text": "Chyba lubisz swoje książki.", + "nextPhraseID": "arcir_books_1" + } + ] + }, + { + "id": "arcir_elythara_1", + "message": "O znalazłeś ten posąg Elythary?\n\nTak, Elythatra jest moją opoką.", + "replies": [ + { + "text": "Okej.", + "nextPhraseID": "arcir_anythingelse" + } + ] + }, + { + "id": "arcir_books_1", + "message": "Przyjemnie się je czyta. Zawierają więdze poprzednich pokoleń.", + "replies": [ + { + "text": "Masz może książkę 'Sekrety Calomyrana'?", + "nextPhraseID": "arcir_calomyran_select", + "requires": { + "progress": "calomyran:10" + } + }, + { + "text": "Okay.", + "nextPhraseID": "arcir_anythingelse" + } + ] + }, + { + "id": "arcir_calomyran_1", + "message": "'Sekrety Calomyrana'? Hm, tak chyba mam ją gdzieś w piwnicy.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_calomyran_2" + } + ] + }, + { + "id": "arcir_calomyran_2", + "message": "Staruszek Benradas był tu w tamtym tygodniu, chciał mi ją sprzedać. To nie jest książka w moim stylu, więc odmówiłem.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_calomyran_3" + } + ] + }, + { + "id": "arcir_calomyran_3", + "message": "Wydawał się zdenerwowany, że nie chciałem kupić jego książki więc wyszedł jak burza i rzucił nią we mnie.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_calomyran_4" + } + ] + }, + { + "id": "arcir_calomyran_4", + "message": "Biedny staruszek Benradas, najprawdopodobniej zapomniał, że ją tu zostawił. Ma skłonności do zapominania.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_anythingelse" + } + ] + }, + { + "id": "arcir_calomyran_5", + "message": "Byłeś na dole, ale jej nie znalazłeś? tylko notatka? Chyba musi być ich więcej w moim domu.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_calomyran_6" + } + ] + }, + { + "id": "arcir_calomyran_select", + "replies": [ + { + "nextPhraseID": "arcir_calomyran_complete", + "requires": { + "progress": "calomyran:100" + } + }, + { + "nextPhraseID": "arcir_calomyran_5", + "requires": { + "progress": "calomyran:20" + } + }, + { + "nextPhraseID": "arcir_calomyran_1" + } + ] + }, + { + "id": "arcir_calomyran_complete", + "message": "Słyszałem, że ją znalazłeś i oddałeś Benradasowi. Dzięki. Ma skłonności do zapominania.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_anythingelse" + } + ] + }, + { + "id": "arcir_calomyran_6", + "message": "Co pisze na tej notatce?\n\nLarcal.. Znam go. Zawsze stwarza problemy. Zazwyczaj jest w stodole na wschód stąd.", + "replies": [ + { + "text": "Dzięki, Żegnaj", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pl/conversationlist_fallhaven_bucus.json b/AndorsTrail/res/raw-pl/conversationlist_fallhaven_bucus.json new file mode 100644 index 000000000..55322e930 --- /dev/null +++ b/AndorsTrail/res/raw-pl/conversationlist_fallhaven_bucus.json @@ -0,0 +1,236 @@ +[ + { + "id": "bucus_welcome", + "message": "Witam z powrotem w .. Oh czekaj, pomyliłem cie z kimś.", + "replies": [ + { + "text": "Widziałeś może mojego brata Andora??", + "nextPhraseID": "bucus_andor_select" + }, + { + "text": "Co wiesz o gildii złodzieji?", + "nextPhraseID": "bucus_thieves_select" + } + ] + }, + { + "id": "bucus_andor_select", + "replies": [ + { + "nextPhraseID": "bucus_umar_1", + "requires": { + "progress": "bucus:100" + } + }, + { + "nextPhraseID": "bucus_andor_no_1" + } + ] + }, + { + "id": "bucus_andor_no_1", + "message": "Interesujące pytanie. A co jeśli go widziałem? Czemu miałbym ci powiedzieć?", + "replies": [ + { + "text": "N", + "nextPhraseID": "bucus_andor_no_2" + } + ] + }, + { + "id": "bucus_andor_no_2", + "message": "Nie, nie mogę. A teraz proszę odejdź." + }, + { + "id": "bucus_thieves_select", + "replies": [ + { + "nextPhraseID": "bucus_thieves_complete_3", + "requires": { + "progress": "bucus:100" + } + }, + { + "nextPhraseID": "bucus_thieves_continue", + "requires": { + "progress": "bucus:10" + } + }, + { + "nextPhraseID": "bucus_thieves_select2" + } + ] + }, + { + "id": "bucus_thieves_select2", + "replies": [ + { + "nextPhraseID": "bucus_thieves_1", + "requires": { + "progress": "andor:40" + } + }, + { + "nextPhraseID": "bucus_thieves_no" + } + ] + }, + { + "id": "bucus_thieves_no", + "message": "Cc, CO? Nie, nic o tym nie wiem." + }, + { + "id": "bucus_umar_1", + "message": "Dobra dzieciaku. Udowodniłeś, że jesteś godny zaufania. Tak widziałem tego drugiego łaził gdzieś tu parę dni temu.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bucus_umar_2" + } + ] + }, + { + "id": "bucus_umar_2", + "message": "Ale nie wiem czego chciał. Zadawał mnóstwo pytań. Takie jak ty teraz. *chichocze*", + "replies": [ + { + "text": "N", + "nextPhraseID": "bucus_umar_3" + } + ] + }, + { + "id": "bucus_umar_3", + "message": "W każdym bądź razie to wszystko co wiem. Lepiej idź pogadaj z Umarem, on może wiedzieć więcej. Zejdź niżej tą klapą.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 50 + } + ], + "replies": [ + { + "text": "Ok, bye", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bucus_thieves_1", + "message": "Kto ci to powiedział? Argh.\n\nA więc nas znalazłeś. Co teraz?", + "replies": [ + { + "text": "Mogę dołączyć do gildii złodzieji?", + "nextPhraseID": "bucus_thieves_2" + } + ] + }, + { + "id": "bucus_thieves_2", + "message": "Hah! Dołączyć do gildii?! Ty?!\n\nZabawny jesteś dzieciaku.", + "replies": [ + { + "text": "Pytam poważnie.", + "nextPhraseID": "bucus_thieves_3" + }, + { + "text": "Taa, całkiem zabawny?", + "nextPhraseID": "bucus_thieves_3" + } + ] + }, + { + "id": "bucus_thieves_3", + "message": "Ok, powiem tak. Zrób coś dla mnie, a ja rozważe co i jak.", + "replies": [ + { + "text": "O jakim zadaniu mówimy?", + "nextPhraseID": "bucus_thieves_4" + }, + { + "text": "Tak długo jak to oznacza skarb to wchodzę w to!", + "nextPhraseID": "bucus_thieves_4" + } + ] + }, + { + "id": "bucus_thieves_4", + "message": "Przynieś mi klucz Luthora i możemy pogadać o konkretach. Nie wiem właściwie dużo o tym kluczu, ale plotka głosi, że jest w katakumbach pod kościołem w Fallhaven.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 10 + } + ], + "replies": [ + { + "text": "Ok, sounds easy enough.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bucus_thieves_continue", + "message": "Jak idą poszukiwania klucza?", + "replies": [ + { + "text": "Co ja miałem zrobić?", + "nextPhraseID": "bucus_thieves_4" + }, + { + "text": "Mam go. Klucz Luthor.", + "nextPhraseID": "bucus_thieves_complete_1", + "requires": { + "item": { + "itemID": "key_luthor", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Jeszcze szukam. Narazie.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bucus_thieves_complete_1", + "message": "Wow, naprawdę masz klucz Luthor? Nie myślałem, że stamtąd powrócisz.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 100 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "bucus_thieves_complete_2" + } + ] + }, + { + "id": "bucus_thieves_complete_2", + "message": "Nieźle, dzieciaku.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bucus_thieves_complete_3" + } + ] + }, + { + "id": "bucus_thieves_complete_3", + "message": "No to możemy pogadać, co chcesz wiedzieć?", + "replies": [ + { + "text": "Widziałeś może mojego brata Andora??", + "nextPhraseID": "bucus_umar_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pl/conversationlist_fallhaven_church.json b/AndorsTrail/res/raw-pl/conversationlist_fallhaven_church.json new file mode 100644 index 000000000..1f156c5a7 --- /dev/null +++ b/AndorsTrail/res/raw-pl/conversationlist_fallhaven_church.json @@ -0,0 +1,265 @@ +[ + { + "id": "chapelgoer", + "message": "Cień mnie ogarnia." + }, + { + "id": "thoronir_default", + "message": "Cień daje nam ciepło, moje dziecko.", + "replies": [ + { + "text": "Co możesz mi powiedzieć o Cieniu?", + "nextPhraseID": "thoronir_shadow_1" + }, + { + "text": "Możesz mi powiedzieć więcej o kościele?", + "nextPhraseID": "thoronir_church_1" + }, + { + "text": "Czy potki Bonemeal są już gotowe?", + "nextPhraseID": "thoronir_trade_bonemeal", + "requires": { + "progress": "bonemeal:100" + } + } + ] + }, + { + "id": "thoronir_shadow_1", + "message": "Cień nas ochroni przed niebezpieczeństwami nocy. I chroni nas podczas snu.", + "replies": [ + { + "text": "Tharal mnie przysyła, hasło brzmi 'Blask Cienia'.", + "nextPhraseID": "thoronir_tharal_select", + "requires": { + "progress": "bonemeal:30" + } + }, + { + "text": "Niech cień będzie z tobą.", + "nextPhraseID": "thoronir_default" + }, + { + "text": "Dla mnie ten cień to ściema.", + "nextPhraseID": "thoronir_default" + } + ] + }, + { + "id": "thoronir_church_1", + "message": "To nasza kaplica modlitwy w Fallhaven. Nasi wierni zwracają się do nas po wsparcie.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thoronir_church_2" + } + ] + }, + { + "id": "thoronir_church_2", + "message": "Ten kościół wytrzymał setki lat, i nigdy nie było tu hien cmentarnych.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thoronir_church_3" + } + ] + }, + { + "id": "thoronir_tharal_select", + "replies": [ + { + "nextPhraseID": "thoronir_trade_bonemeal", + "requires": { + "progress": "bonemeal:100" + } + }, + { + "nextPhraseID": "thoronir_tharal_1" + } + ] + }, + { + "id": "thoronir_tharal_1", + "message": "Blask cienia w rzeczy samej chłopcze. A więc mój stary przyjaciel Tharal przysłał cie?", + "replies": [ + { + "text": "Co możesz mi powiedzieć o potkach bonemeal?", + "nextPhraseID": "thoronir_tharal_2" + } + ] + }, + { + "id": "thoronir_church_3", + "message": "Katakumby pod kościołem są pozostałościami naszych poprzedników. Nasz wielki król Luthor podobno jest tutaj pochowany.", + "replies": [ + { + "text": "Czy ktoś wchodził do katakumb?", + "nextPhraseID": "thoronir_church_4", + "requires": { + "progress": "bucus:10" + } + }, + { + "text": "Jest coś jeszcze o co chciałem zapytać.", + "nextPhraseID": "thoronir_default" + } + ] + }, + { + "id": "thoronir_church_4", + "message": "Nikt nie ma pozwolenia na zejście do katakumb, z wyjątkiem Athamyra, mojego ucznia. To jedyna osoba która tam była w ciągu ostatnich paru lat.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 20 + } + ], + "replies": [ + { + "text": "Ok, może go spotkam.", + "nextPhraseID": "thoronir_default" + } + ] + }, + { + "id": "thoronir_tharal_2", + "message": "Ciiii, Nie powinniśmy tak głośno rozmawiać o używaniu bonemealów. Jak pewnie wiesz Lord Geomyr zakazał całkowicie bonemeal.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thoronir_tharal_3" + } + ] + }, + { + "id": "thoronir_tharal_3", + "message": "Kiedy pojawił się zakaz, nie odważyłem się trzymać ich więcej, więc wyrzuciłem jej do dziury na zapasy. To było dosyć głupie z mojej strony, gdy teraz na to patrze.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thoronir_tharal_4" + } + ] + }, + { + "id": "thoronir_tharal_4", + "message": "Znajdziesz dla mnie 5 kości szkieletów, które mogę użyć do miksowania potek bonemeal? Bonemeal jest potężny w leczeniu starych ran.", + "replies": [ + { + "text": "Jasne, mogę to zrobić.", + "nextPhraseID": "thoronir_tharal_5" + }, + { + "text": "Mam te kości dla ciebie.", + "nextPhraseID": "thoronir_tharal_complete", + "requires": { + "item": { + "itemID": "bone", + "quantity": 5, + "requireType": 0 + } + } + } + ] + }, + { + "id": "thoronir_tharal_5", + "message": "Dziękuje, proszę wróć niebawem. Słyszałem, że w opuszczonym domu na północy są w okolicy nieumarli. Może tam znajdziesz jakieś kości?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 40 + } + ], + "replies": [ + { + "text": "Ok, sprawdzę tam.", + "nextPhraseID": "thoronir_default" + } + ] + }, + { + "id": "thoronir_tharal_complete", + "message": "Dzięki, te kości będą w sam raz. Teraz mogę dla ciebie zrobić parę potek bonemeal.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 100 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "thoronir_complete_2" + } + ] + }, + { + "id": "thoronir_complete_2", + "message": "Daj mi trochę czasu, żeby zmieszać potke bonemeal. To bardzo potężna potka zdrowia. Wróć za jakiś czas." + }, + { + "id": "thoronir_trade_bonemeal", + "message": "Tak, potki bonemeal są już gotowe. Proszę używaj ich z rozwagą i nie pozwól, żeby cię zauważyli strażnicy. Wiesz, że nie można już ich używać.", + "replies": [ + { + "text": "Pokaż ile zrobiłeś tych potków.", + "nextPhraseID": "S" + }, + { + "text": "Chciałem zapytać o coś innego.", + "nextPhraseID": "thoronir_default" + } + ] + }, + { + "id": "catacombguard", + "message": "Turn back while you still can, mortal. This is no place for you. Only death awaits you here.", + "replies": [ + { + "text": "Very well. I will turn back.", + "nextPhraseID": "X" + }, + { + "text": "Move aside, I need to get deeper into the catacombs.", + "nextPhraseID": "catacombguard1" + }, + { + "text": "By the Shadow, you will not stop me.", + "nextPhraseID": "catacombguard1" + } + ] + }, + { + "id": "catacombguard1", + "message": "Nieee, nie możesz przejść!", + "replies": [ + { + "text": "Ok. Walczmy.", + "nextPhraseID": "F" + } + ] + }, + { + "id": "luthor", + "message": "*hissss* Co śmiertelnik przeszkadza mi we śnie?", + "replies": [ + { + "text": "Na moc cienia, kim ty jesteś?", + "nextPhraseID": "F" + }, + { + "text": "W końcu godny przeciwnik! Czekałem na to.", + "nextPhraseID": "F" + }, + { + "text": "Dobra, dobra skończmy z tym już.", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pl/conversationlist_fallhaven_drunk.json b/AndorsTrail/res/raw-pl/conversationlist_fallhaven_drunk.json new file mode 100644 index 000000000..7cc0f1f0c --- /dev/null +++ b/AndorsTrail/res/raw-pl/conversationlist_fallhaven_drunk.json @@ -0,0 +1,219 @@ +[ + { + "id": "fallhaven_drunk", + "message": "Żaden problem. Nie panieee! Nie sprawia już żadnych problemów. Usiąde na zewnątrz gdzieś.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_2" + } + ] + }, + { + "id": "fallhaven_drunk_2", + "message": "A ty to kto? Jesteś tym strażnikiem?", + "replies": [ + { + "text": "Tak", + "nextPhraseID": "fallhaven_drunk_3_1" + }, + { + "text": "Nie", + "nextPhraseID": "fallhaven_drunk_3_2" + } + ] + }, + { + "id": "fallhaven_drunk_3_1", + "message": "Oh, panie. Jak widać nie sprawiam już żadnych problemów? Usiąde tak jak mówiłeś ok?", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_4" + } + ] + }, + { + "id": "fallhaven_drunk_3_2", + "message": "Oh to dobrze. Ten strażnik wywalił mnie z tawerny. Jak go jeszcze zobaczę to się z nim policzę.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_4" + } + ] + }, + { + "id": "fallhaven_drunk_4", + "message": "A kto się w grudniu urodził, ma wstać, ma wstać, ma wstać. Uh, jak leci?", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_5" + } + ] + }, + { + "id": "fallhaven_drunk_5", + "message": "Mówiłeś coś? Że gdzie ja byłem? A tak więc weszliśmy do podziemi.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_6" + } + ] + }, + { + "id": "fallhaven_drunk_6", + "message": "Albo to był dom? Nie pamiętam.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_7" + } + ] + }, + { + "id": "fallhaven_drunk_7", + "message": "Nie,nie , to było na zewnątrz! Teraz pamiętam.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_7_select" + } + ] + }, + { + "id": "fallhaven_drunk_7_select", + "replies": [ + { + "nextPhraseID": "fallhaven_drunk_11", + "requires": { + "progress": "fallhavendrunk:100" + } + }, + { + "nextPhraseID": "fallhaven_drunk_8" + } + ] + }, + { + "id": "fallhaven_drunk_8", + "message": "That's where we..\n\nHey, where did my mead go? Did you take it from me? ", + "replies": [ + { + "text": "Yes", + "nextPhraseID": "fallhaven_drunk_9_1" + }, + { + "text": "No", + "nextPhraseID": "fallhaven_drunk_9_2" + } + ] + }, + { + "id": "fallhaven_drunk_9_1", + "message": "Cóż to oddawaj z powrotem! Albo idź kup trochę miodu.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fallhavendrunk", + "value": 10 + } + ], + "replies": [ + { + "text": "Masz trochę miodu.", + "nextPhraseID": "fallhaven_drunk_10", + "requires": { + "item": { + "itemID": "mead", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Ok, kupie trochę dla ciebie.", + "nextPhraseID": "X" + }, + { + "text": "Nie wydaje mi się, że powinienem ci pomagać.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_drunk_9_2", + "message": "Chyba się upiłem. Możesz mi załatwić więcej miodu? ", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fallhavendrunk", + "value": 10 + } + ], + "replies": [ + { + "text": "Here, have some mead.", + "nextPhraseID": "fallhaven_drunk_10", + "requires": { + "item": { + "itemID": "mead", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Ok, kupie trochę miodu.", + "nextPhraseID": "X" + }, + { + "text": "Nie wydaję mi się. Żegnaj.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_drunk_10", + "message": "Oh słodki napój bogów. Niieechhh cieeeń będziie z tobąą. *robi duże oczy*", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_11" + } + ] + }, + { + "id": "fallhaven_drunk_11", + "message": "*łyknij sobie tego miodu*\n\nDobry towar!", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_12" + } + ] + }, + { + "id": "fallhaven_drunk_12", + "message": "Taa ja i Unmir świetnie się bawimy. Sam go zapytaj, najczęściej jest w stodole na wschód stąd. Zastanawia mnie *burps* gdzie się podział ten skarb.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fallhavendrunk", + "value": 100 + } + ], + "replies": [ + { + "text": "Skarb? Wchodzę w to! Zaraz pójdę poszukać Unnmira.", + "nextPhraseID": "X" + }, + { + "text": "Dzięki za historyjkę. Żegnaj.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pl/conversationlist_fallhaven_nocmar.json b/AndorsTrail/res/raw-pl/conversationlist_fallhaven_nocmar.json new file mode 100644 index 000000000..98c65ed1e --- /dev/null +++ b/AndorsTrail/res/raw-pl/conversationlist_fallhaven_nocmar.json @@ -0,0 +1,258 @@ +[ + { + "id": "nocmar", + "message": "Witaj. Jestem Nocmar.", + "replies": [ + { + "text": "To miejsce wygląda jak kuźnia. Masz coś na sprzedaż?", + "nextPhraseID": "nocmar_trade_select" + }, + { + "text": "Unnmir mnie przysyła.", + "nextPhraseID": "nocmar_quest_select", + "requires": { + "progress": "nocmar:10" + } + }, + { + "text": "Żegnaj", + "nextPhraseID": "X" + } + ] + }, + { + "id": "nocmar_quest_select", + "replies": [ + { + "nextPhraseID": "nocmar_complete_5", + "requires": { + "progress": "nocmar:200" + } + }, + { + "nextPhraseID": "nocmar_continue", + "requires": { + "progress": "nocmar:20" + } + }, + { + "nextPhraseID": "nocmar_quest" + } + ] + }, + { + "id": "nocmar_trade_select", + "replies": [ + { + "nextPhraseID": "S", + "requires": { + "progress": "nocmar:200" + } + }, + { + "nextPhraseID": "nocmar_trade_1" + } + ] + }, + { + "id": "nocmar_trade_1", + "message": "Nie mam żadnych przedmiotów na sprzedaż. Kiedyś miałem ich od groma, ale teraz zakazono mi cokolwiek sprzedawać.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_trade_2" + } + ] + }, + { + "id": "nocmar_trade_2", + "message": "Kiedyś byłem najlepszym kowalem w Fallhaven. Później ten drań Lord Geomyr zakazał używania stali serca.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_trade_3" + } + ] + }, + { + "id": "nocmar_trade_3", + "message": "Przez to oświadczenie Geomyra nikt nie może używać broni ze stali serca w Fallhaven. Mało która się sprzedawała.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_trade_4" + } + ] + }, + { + "id": "nocmar_trade_4", + "message": "Więc musiałem schować resztki które mi zostały. Nie odważę się już sprzedać ani jednej sztuki.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_trade_4_1" + } + ] + }, + { + "id": "nocmar_trade_4_1", + "message": "Nie widziałem blasku stali serca już od ładnych paru lat odkąd Lord Geomyr ich zakazał.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_trade_5" + } + ] + }, + { + "id": "nocmar_trade_5", + "message": "Więc niestety nie mogę ci sprzedać broni." + }, + { + "id": "nocmar_quest", + "message": "Unnmir cie przysyła hę? W takim razie to musi być coś ważnego.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nocmar", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_quest_1" + } + ] + }, + { + "id": "nocmar_quest_1", + "message": "Ok, te stare bronie straciły już swój dawny blask i nie były używane już od wieków.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_quest_2" + } + ] + }, + { + "id": "nocmar_quest_2", + "message": "Żeby przywrócić dawny blask stali serca, będziemy potrzebować kamiennej stali.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_quest_3" + } + ] + }, + { + "id": "nocmar_quest_3", + "message": "Dawno temu, przywykliśmy do walki z liczami Undertella. Nie mam pojęcia czy jeszcze nawiedzają tamto miejsce.", + "replies": [ + { + "text": "Undertell? Co to jest?", + "nextPhraseID": "nocmar_quest_4" + } + ] + }, + { + "id": "nocmar_quest_4", + "message": "Undertell; otchłań zagubionych dusz. Podróżuj na południe i wejdź w kawernę prowadząca do krasnoludów. Podążaj za smrodem, który tam się unosi.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_quest_5" + } + ] + }, + { + "id": "nocmar_quest_5", + "message": "Strzeż się liczów z Undertell, jeśli jeszcze tam są. Te stworzenia mogą cie zabić samym wzrokiem." + }, + { + "id": "nocmar_continue", + "message": "Znalazłeś może już stal serca?", + "replies": [ + { + "text": "Tak, w końcu ją znalazłem.", + "nextPhraseID": "nocmar_complete", + "requires": { + "item": { + "itemID": "heartstone", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Możesz powtórzyć?", + "nextPhraseID": "nocmar_quest_1" + }, + { + "text": "Nie, jeszcze nie", + "nextPhraseID": "nocmar_continue_2" + } + ] + }, + { + "id": "nocmar_continue_2", + "message": "Proszę nie przestawaj szukać. Unnmir musi wiąząć z tobą jakieś poważne plany." + }, + { + "id": "nocmar_complete", + "message": "Niech mnie cień pochłonie. Naprawdę znalazłeś kamienne serce. Myślałem, że już nie dożyje tego dnia.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nocmar", + "value": 200 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_complete_2" + } + ] + }, + { + "id": "nocmar_complete_2", + "message": "Widzisz ten blask? Dosłownie pulsuje.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_complete_3" + } + ] + }, + { + "id": "nocmar_complete_3", + "message": "Szybko. Nadajmy dawny blask tym starym broniom.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_complete_4" + } + ] + }, + { + "id": "nocmar_complete_4", + "message": "*Nocmar kładzie kamienne serce wśród starych broni*", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_complete_5" + } + ] + }, + { + "id": "nocmar_complete_5", + "message": "Czujesz to? Stal serca znów ma swój dawny blask.", + "replies": [ + { + "text": "Pokaż mi swoje towary.", + "nextPhraseID": "S" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pl/conversationlist_fallhaven_oldman.json b/AndorsTrail/res/raw-pl/conversationlist_fallhaven_oldman.json new file mode 100644 index 000000000..3b7096037 --- /dev/null +++ b/AndorsTrail/res/raw-pl/conversationlist_fallhaven_oldman.json @@ -0,0 +1,151 @@ +[ + { + "id": "fallhaven_oldman", + "replies": [ + { + "nextPhraseID": "fallhaven_oldman_complete_2", + "requires": { + "progress": "calomyran:100" + } + }, + { + "nextPhraseID": "fallhaven_oldman_continue", + "requires": { + "progress": "calomyran:10" + } + }, + { + "nextPhraseID": "fallhaven_oldman_1" + } + ] + }, + { + "id": "fallhaven_oldman_1", + "message": "Pomożesz staruszkowi w potrzebie?", + "replies": [ + { + "text": "Jasne, w czym potrzebujesz pomocy?", + "nextPhraseID": "fallhaven_oldman_2" + }, + { + "text": "Mogę. A w grę wchodzi jakaś nagroda?", + "nextPhraseID": "fallhaven_oldman_2" + }, + { + "text": "Nie, nie pomogę takiemu staruchowi jak ty. Żegnaj.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_oldman_2", + "message": "Straciłem bardzo cenną dla mnie książke.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_oldman_3" + } + ] + }, + { + "id": "fallhaven_oldman_3", + "message": "Wiem, że miałem ją ze sobą wczoraj. A teraz nie mogę jej znaleźć.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_oldman_4" + } + ] + }, + { + "id": "fallhaven_oldman_4", + "message": "Nigdy nie gubie swoich rzeczy! Ktoś mi ją musiał ukraść.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_oldman_5" + } + ] + }, + { + "id": "fallhaven_oldman_5", + "message": "Poszukasz tej książki? Tytuł to 'Sekrety Calomryna'.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_oldman_6" + } + ] + }, + { + "id": "fallhaven_oldman_6", + "message": "Nie mam pojęcia gdzie może być. Może spytaj Arcira, jest molem książkowym. *pokazuje na domek na południu*", + "rewards": [ + { + "rewardType": 0, + "rewardID": "calomyran", + "value": 10 + } + ], + "replies": [ + { + "text": "Ok pójdę spytać Arcira. Do widzenia.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_oldman_continue", + "message": "Jak ci idą poszukiwania mojej książki? Tytuł to 'Sekrety Calomryna'. Znalazłeś książkę?", + "replies": [ + { + "text": "Tak, znalazłem ją.", + "nextPhraseID": "fallhaven_oldman_complete", + "requires": { + "item": { + "itemID": "calomyran_secrets", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Nie, jeszcze jej nie znalazłem.", + "nextPhraseID": "fallhaven_oldman_6" + }, + { + "text": "Możesz mi opowiedzieć tą historię jeszcze raz?", + "nextPhraseID": "fallhaven_oldman_2" + } + ] + }, + { + "id": "fallhaven_oldman_complete", + "message": "Moja księga! Dziękuje, dziękuje! Gdzie była? Albo nie, nie mów mi. Trzymaj, trochę złota za fatygę.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "calomyran", + "value": 100 + }, + { + "rewardType": 1, + "rewardID": "gold51" + } + ], + "replies": [ + { + "text": "Dziękuje. Żegnaj.", + "nextPhraseID": "X" + }, + { + "text": "W końcu, trochę złota. Żegnaj.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_oldman_complete_2", + "message": "Wielkie dzięki za znalezienie mojej księgi!" + } +] diff --git a/AndorsTrail/res/raw-pl/conversationlist_fallhaven_tavern.json b/AndorsTrail/res/raw-pl/conversationlist_fallhaven_tavern.json new file mode 100644 index 000000000..b20c1f46f --- /dev/null +++ b/AndorsTrail/res/raw-pl/conversationlist_fallhaven_tavern.json @@ -0,0 +1,107 @@ +[ + { + "id": "bela", + "message": "Witaj w tawernie. Usiądź sobie gdzieś.", + "replies": [ + { + "text": "Pokaż mi co masz do zjedzenia i do picia", + "nextPhraseID": "S" + }, + { + "text": "Są jakieś wolne pokoje?", + "nextPhraseID": "bela_room_select" + } + ] + }, + { + "id": "bela_room_1", + "message": "Pokój kosztuje tylko 10 złotych monet.", + "replies": [ + { + "text": "Kup [10 złota]", + "nextPhraseID": "bela_room_2", + "requires": { + "item": { + "itemID": "gold", + "quantity": 10, + "requireType": 0 + } + } + }, + { + "text": "Nie, dzięki.", + "nextPhraseID": "bela" + } + ] + }, + { + "id": "bela_room_2", + "message": "Dzięki. Weź pokój na końcu hali.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fallhaventavern", + "value": 10 + } + ], + "replies": [ + { + "text": "Dziękuje. Jest coś jeszcze o co chciałem zapytać.", + "nextPhraseID": "bela" + }, + { + "text": "Dzięki. Żegnaj.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bela_room_3", + "message": "Mam nadzieję, że pokój będzie ci odpowiadał. To ten ostatni pokój na końcu.", + "replies": [ + { + "text": "Dziękuje. Jest coś jeszcze o co chciałem zapytać.", + "nextPhraseID": "bela" + }, + { + "text": "Dzięki. Żegnaj.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bela_room_select", + "replies": [ + { + "nextPhraseID": "bela_room_3", + "requires": { + "progress": "fallhaventavern:10" + } + }, + { + "nextPhraseID": "bela_room_1" + } + ] + }, + { + "id": "ganos", + "message": "Wyglądasz znajomo.", + "replies": [ + { + "text": "Masz coś na handel?", + "nextPhraseID": "S" + }, + { + "text": "Wiesz coś o gildii złodzieji?", + "nextPhraseID": "ganos_1", + "requires": { + "progress": "andor:30" + } + } + ] + }, + { + "id": "ganos_1", + "message": "Gildii złodzieji? A skąd niby? Wyglądam ci na złodzieja?! Hrmpf." + } +] diff --git a/AndorsTrail/res/raw-pl/conversationlist_jan.json b/AndorsTrail/res/raw-pl/conversationlist_jan.json new file mode 100644 index 000000000..ccc417cdd --- /dev/null +++ b/AndorsTrail/res/raw-pl/conversationlist_jan.json @@ -0,0 +1,350 @@ +[ + { + "id": "jan_start_select", + "replies": [ + { + "nextPhraseID": "jan_complete2", + "requires": { + "progress": "jan:100" + } + }, + { + "nextPhraseID": "jan_return", + "requires": { + "progress": "jan:10" + } + }, + { + "nextPhraseID": "jan_default" + } + ] + }, + { + "id": "jan_default", + "message": "Cześć dzieciaku. Proszę zostaw mnie z moją żałobą.", + "replies": [ + { + "text": "W czym problem?", + "nextPhraseID": "jan_default2" + }, + { + "text": "Chcesz o tym porozmawiać?", + "nextPhraseID": "jan_default2" + }, + { + "text": "Ok, narazie", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_default2", + "message": "Oh to takie smutne. Naprawdę nie chce o tym rozmawiać.", + "replies": [ + { + "text": "Please do.", + "nextPhraseID": "jan_default3" + }, + { + "text": "Ok, narazie", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_default3", + "message": "Cóż no dobrze powiem ci. Wyglądasz na dość miłego dzieciaka.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default4" + } + ] + }, + { + "id": "jan_default4", + "message": "Mój przyjaciel Gandir, i jego znajomy Irogotu, i ja poszliśmy na dół kopać tą dziurę. Słyszeliśmy o ukrytym skarbie, który się tam znajduje.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default5" + } + ] + }, + { + "id": "jan_default5", + "message": "Zaczęliśmy kopać po jakimś czasie w końcu dokopaliśmy się do jakichś podziemnych jaskiń. Wtedy je odkryliśmy. Futrzaki z kłami i jakieś inne robactwo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default6" + } + ] + }, + { + "id": "jan_default6", + "message": "Oh te futrzane bestie. Cholerne bestie. Omal mnie nie zabiły.\n\nGandir i ja mówiliśmy Irogotu żebyśmy zostawili ten dół póki jeszcze możemy.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default7" + } + ] + }, + { + "id": "jan_default7", + "message": "Ale Irogotu chciał kontynuować głębiej kopanie. On i Gandir zaczęli się o to bić.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default8" + } + ] + }, + { + "id": "jan_default8", + "message": "I wtedy.\n\n*sob*\n\nO rany co myśmy zrobili?", + "replies": [ + { + "text": "Kontynuuj", + "nextPhraseID": "jan_default9" + } + ] + }, + { + "id": "jan_default9", + "message": "Irogotu zabił Gandira gołymi rękoma. Można było dostrzec nienawiść w oczach. I chyba mu się to spodobało.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default10" + } + ] + }, + { + "id": "jan_default10", + "message": "Uciekłem i nie miałem odwagi znów tam zejść, bo bałem się tych bestii i samego Irogotu .", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default11" + } + ] + }, + { + "id": "jan_default11", + "message": "Oh ten przeklęty Irogotu. Gdybym tylko go dorwał. Pokazałbym mu.", + "replies": [ + { + "text": "Uważasz, że mogę jakoś pomóc", + "nextPhraseID": "jan_default11_1" + } + ] + }, + { + "id": "jan_default11_1", + "message": "Pomógłbyś mi?", + "replies": [ + { + "text": "Jasne, może są tam jakieś skarby dla mnie.", + "nextPhraseID": "jan_default12" + }, + { + "text": "Jasne, Irogotu musi zapłacić za to co zrobił.", + "nextPhraseID": "jan_default12" + }, + { + "text": "Nie, dzięki nie chce brać w tym udziału to zbyt niebezpieczne.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_default12", + "message": "Naprawdę? Myślisz, że dasz radę? Hm, może jednak dasz. Strzeż się tych bestii tam na dole są naprawde twarde.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "jan", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default13" + } + ] + }, + { + "id": "jan_default13", + "message": "Jeśli naprawdę chcesz pomóc, zejdź na dół rozpraw się z Irogotu i zdobądź dla mnie pierścień Gandira.", + "replies": [ + { + "text": "Jasne, że pomogę.", + "nextPhraseID": "jan_default14" + }, + { + "text": "Możesz mi opowiedzieć tą historię jeszcze raz?", + "nextPhraseID": "jan_background" + }, + { + "text": "Nieważne, żegnaj.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_default14", + "message": "Wróć do mnie jak skończysz. Pamiętaj o pierścieniu Gandira dla mnie.", + "replies": [ + { + "text": "Ok, narazie", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_return", + "message": "Witaj z powrotem dzieciaku. Znalazłeś ten pierścień?", + "replies": [ + { + "text": "Nie, jeszcze nie.", + "nextPhraseID": "jan_default14" + }, + { + "text": "Możesz mi opowiedzieć tą historię jeszcze raz?", + "nextPhraseID": "jan_background" + }, + { + "text": "Tak, i zabiłem Irogotu.", + "nextPhraseID": "jan_complete", + "requires": { + "item": { + "itemID": "ring_gandir", + "quantity": 1, + "requireType": 0 + } + } + } + ] + }, + { + "id": "jan_background", + "message": "Nie słuchałeś jak ci ją opowiadałem za pierwszym razem? Naprawdę muszę jeszcze raz ją opowiedzieć?", + "replies": [ + { + "text": "Tak, opowiedz mi ją jeszcze raz.", + "nextPhraseID": "jan_default3" + }, + { + "text": "Nie słuchałem za bardzo za pierwszym razem. To mówisz, że jaki tam jest skarb?", + "nextPhraseID": "jan_default4" + }, + { + "text": "Nie, nieważne. Już sobie przypomniałem.", + "nextPhraseID": "jan_default14" + } + ] + }, + { + "id": "jan_complete2", + "message": "Dzięki za pomoc z Irogotu! Jestem na zawsze twoim dłużnikiem.", + "replies": [ + { + "text": "Bye", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_complete", + "message": "Czekaj, jak to? Zszedłeś na dół i wróciłeś żywy? Jak to zrobiłeś? Wow, ja prawie tam zginąłem.\n\nOh wielkie dzięki za ten pierścień Gandira! Teraz mam chociaż jakąś pamiątke po nim.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "jan", + "value": 100 + } + ], + "replies": [ + { + "text": "Cieszę się, że mogłem pomóc. Żegnaj.", + "nextPhraseID": "X" + }, + { + "text": "Niech cień cię nie opuszcza. Żegnaj.", + "nextPhraseID": "X" + }, + { + "text": "I tak zrobiłem to tylko dla skarbu.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "irogotu", + "message": "O co za niespodzianka. Kolejny poszukiwacz przygód, który chce mój skarb. To jest MOJA JASKINIA. Skarb będzie MÓJ!", + "replies": [ + { + "text": "Zabiłeś Gandira?", + "nextPhraseID": "irogotu1", + "requires": { + "progress": "jan:10" + } + } + ] + }, + { + "id": "irogotu1", + "message": "Tego szczeniaka Gandira? Stał mi tylko na drodze. Użyłem go tylko żeby kopał za mnie głębiej.", + "replies": [ + { + "text": "N", + "nextPhraseID": "irogotu2" + } + ] + }, + { + "id": "irogotu2", + "message": "Po za tym nigdy go nie lubiłem.", + "replies": [ + { + "text": "Wydaje mi się, że zasłużył na śmierć. Czy miał na sobie pierścień?", + "nextPhraseID": "irogotu3" + }, + { + "text": "Jan wspominał coś o pierścieniu?", + "nextPhraseID": "irogotu3" + } + ] + }, + { + "id": "irogotu3", + "message": "NIE! Nie możesz go mieć. Jest mój, a właściwie to kim ty jesteś, że przychodzisz tutaj i mi tylko przeszkadzasz?!", + "replies": [ + { + "text": "Nie jestem już dzieckiem! A teraz dawaj mi pierścień!", + "nextPhraseID": "irogotu4" + }, + { + "text": "Daj mi pierścień, a oboje ujdziemy stąd z życiem.", + "nextPhraseID": "irogotu4" + } + ] + }, + { + "id": "irogotu4", + "message": "Nie. Jeśli go chcesz musisz mi go odebrać siłą, a powinieneś wiedzieć, że mam potężną moc. A z resztą pewnie nawet się nie odważysz ze mną walczyć.", + "replies": [ + { + "text": "Jak sobie chcesz zobaczymy kto tutaj umrze.", + "nextPhraseID": "F" + }, + { + "text": "Z mocą Cienia, Gandir zostanie pomszczony.", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pl/conversationlist_mikhail.json b/AndorsTrail/res/raw-pl/conversationlist_mikhail.json new file mode 100644 index 000000000..302fd5063 --- /dev/null +++ b/AndorsTrail/res/raw-pl/conversationlist_mikhail.json @@ -0,0 +1,350 @@ +[ + { + "id": "mikhail_start_select", + "replies": [ + { + "nextPhraseID": "mikhail_start_select2", + "requires": { + "progress": "mikhail_bread:100" + } + }, + { + "nextPhraseID": "mikhail_bread_continue", + "requires": { + "progress": "mikhail_bread:10" + } + }, + { + "nextPhraseID": "mikhail_start_select2" + } + ] + }, + { + "id": "mikhail_start_select2", + "replies": [ + { + "nextPhraseID": "mikhail_start_select_default", + "requires": { + "progress": "mikhail_rats:100" + } + }, + { + "nextPhraseID": "mikhail_rats_continue", + "requires": { + "progress": "mikhail_rats:10" + } + }, + { + "nextPhraseID": "mikhail_start_select_default" + } + ] + }, + { + "id": "mikhail_start_select_default", + "replies": [ + { + "nextPhraseID": "mikhail_visited", + "requires": { + "progress": "andor:1" + } + }, + { + "nextPhraseID": "mikhail_gamestart" + } + ] + }, + { + "id": "mikhail_gamestart", + "message": "Oh jak dobrze, że się obudziłeś.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_visited" + } + ] + }, + { + "id": "mikhail_visited", + "message": "Nie mogę nigdzie znaleźć twojego brata. Nie wrócił od wczoraj.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 1 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail3" + } + ] + }, + { + "id": "mikhail3", + "message": "Nieważne, pewnie wróci niebawem pewnie wróci.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_default", + "message": "Mogę ci pomóc w czymś jeszcze?", + "replies": [ + { + "text": "Masz dla mnie jakieś zadania?", + "nextPhraseID": "mikhail_tasks" + }, + { + "text": "Czy jest coś jeszcze o czym powinienem wiedzieć jeśli chodzi o Andora?", + "nextPhraseID": "mikhail_andor1" + } + ] + }, + { + "id": "mikhail_tasks", + "message": "Oh tak jest coś w czym mógłbyś mi pomóc, chleb i szczury. O którym zadaniu chciałbyś porozmawiać?", + "replies": [ + { + "text": "O co chodzi z tym chlebem?", + "nextPhraseID": "mikhail_bread_select" + }, + { + "text": "Co z tymi szczurami?", + "nextPhraseID": "mikhail_rats_select" + }, + { + "text": "Nieważne, porozmawiajmy o czymś innym.", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_andor1", + "message": "Tak jak mówiłem wcześniej Andor nie wrócił odkąd wczoraj wyszedł. Zaczynam się o niego martwić. Proszę poszukaj swojego brata mówił, że wyjdzie tylko na chwilę.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_andor2" + } + ] + }, + { + "id": "mikhail_andor2", + "message": "Może znów wszedł do tej jaskini z zapasami i utknął. Albo jest u Lety w piwnicy i trenuje tym drewnianym mieczykiem. Proszę poszukaj go w mieście.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_bread_select", + "replies": [ + { + "nextPhraseID": "mikhail_bread_complete2", + "requires": { + "progress": "mikhail_bread:100" + } + }, + { + "nextPhraseID": "mikhail_bread_continue", + "requires": { + "progress": "mikhail_bread:10" + } + }, + { + "nextPhraseID": "mikhail_bread_start" + } + ] + }, + { + "id": "mikhail_bread_start", + "message": "Oh prawie bym zapomniał. Jeśli masz czas idź zobacz się z Marą w centrum miasta i kup trochę chleba.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "mikhail_bread", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_bread_continue", + "message": "Przyniosłeś już chleb?", + "replies": [ + { + "text": "Tak, proszę.", + "nextPhraseID": "mikhail_bread_complete", + "requires": { + "item": { + "itemID": "bread", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Nie, jeszcze nie.", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_bread_complete", + "message": "Dzięki w końcu mogę zjeść śniadanie. Masz tu trochę drobnych za fatygę.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "mikhail_bread", + "value": 100 + }, + { + "rewardType": 1, + "rewardID": "gold20" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_bread_complete2", + "message": "Jeszcze raz dzięki za chleb.", + "replies": [ + { + "text": "Nie ma za co.", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_rats_select", + "replies": [ + { + "nextPhraseID": "mikhail_rats_complete2", + "requires": { + "progress": "mikhail_rats:100" + } + }, + { + "nextPhraseID": "mikhail_rats_continue", + "requires": { + "progress": "mikhail_rats:10" + } + }, + { + "nextPhraseID": "mikhail_rats_start" + } + ] + }, + { + "id": "mikhail_rats_start", + "message": "Znów widziałem te szczury w ogrodzie. Możesz je zabić?.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "mikhail_rats", + "value": 10 + } + ], + "replies": [ + { + "text": "Już sobie z nimi poradziłem.", + "nextPhraseID": "mikhail_rats_complete", + "requires": { + "item": { + "itemID": "tail_trainingrat", + "quantity": 2, + "requireType": 0 + } + } + }, + { + "text": "Ok, sprawdzę czy już ich tam nie ma.", + "nextPhraseID": "mikhail_rats_start2" + } + ] + }, + { + "id": "mikhail_rats_start2", + "message": "Jeśli te sczury cię skrzywdzą wróć do domu i odpocznij w swoim łóżku. Dzięki temu odzyskasz siły.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_rats_start3" + } + ] + }, + { + "id": "mikhail_rats_start3", + "message": "A i nie zapomnij sprawdzić swój inwentarz. Pewnie nadal masz ten stary pierścień ode mnie. Sprawdź czy na pewno go masz na palcu.", + "replies": [ + { + "text": "Ok, rozumiem. Mogę tu odpocząć, gdy będe ranny i mam sprawdzić inwentarz.", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_rats_continue", + "message": "Zabiłeś te dwa szczury w naszym ogrodzie?", + "replies": [ + { + "text": "Tak, już się z nimi rozprawiłem.", + "nextPhraseID": "mikhail_rats_complete", + "requires": { + "item": { + "itemID": "tail_trainingrat", + "quantity": 2, + "requireType": 0 + } + } + }, + { + "text": "Nie, jeszcze nie.", + "nextPhraseID": "mikhail_rats_start2" + } + ] + }, + { + "id": "mikhail_rats_complete", + "message": "Naprawdę? Wielkie dzięki za pomoc!\n\nJak jesteś ranny odpocznij na łóżku, żeby odzyskać siły.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "mikhail_rats", + "value": 100 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_rats_complete2", + "message": "Jeszcze raz dzięki za pomoc z tymi szczurami.\n\nJak jesteś ranny odpocznij na łóżku, żeby odzyskać siły.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pl/itemcategories_1.json b/AndorsTrail/res/raw-pl/itemcategories_1.json new file mode 100644 index 000000000..3d3f79edb --- /dev/null +++ b/AndorsTrail/res/raw-pl/itemcategories_1.json @@ -0,0 +1,330 @@ +[ + { + "id": "dagger", + "name": "Sztylet", + "actionType": 2, + "inventorySlot": 0, + "size": 1 + }, + { + "id": "ssword", + "name": "Krótki Miecz", + "actionType": 2, + "inventorySlot": 0, + "size": 1 + }, + { + "id": "rapier", + "name": "Rapier", + "actionType": 2, + "inventorySlot": 0, + "size": 2 + }, + { + "id": "lsword", + "name": "Długi miecz", + "actionType": 2, + "inventorySlot": 0, + "size": 2 + }, + { + "id": "2hsword", + "name": "Oburęczny miecz", + "actionType": 2, + "inventorySlot": 0, + "size": 3 + }, + { + "id": "bsword", + "name": "Pałasz", + "actionType": 2, + "inventorySlot": 0, + "size": 2 + }, + { + "id": "axe", + "name": "Topór", + "actionType": 2, + "inventorySlot": 0, + "size": 2 + }, + { + "id": "axe2h", + "name": "Wielki Topór", + "actionType": 2, + "inventorySlot": 0, + "size": 3 + }, + { + "id": "club", + "name": "Maczuga", + "actionType": 2, + "inventorySlot": 0, + "size": 2 + }, + { + "id": "staff", + "name": "Laska", + "actionType": 2, + "inventorySlot": 0, + "size": 3 + }, + { + "id": "mace", + "name": "Buława", + "actionType": 2, + "inventorySlot": 0, + "size": 2 + }, + { + "id": "scepter", + "name": "Berło", + "actionType": 2, + "inventorySlot": 0, + "size": 2 + }, + { + "id": "hammer", + "name": "Młot Bojowy", + "actionType": 2, + "inventorySlot": 0, + "size": 2 + }, + { + "id": "hammer2h", + "name": "Olbrzymi Młot", + "actionType": 2, + "inventorySlot": 0, + "size": 3 + }, + { + "id": "buckler", + "name": "Puklerz", + "actionType": 2, + "inventorySlot": 1, + "size": 1 + }, + { + "id": "shld_wd_li", + "name": "Drewniana, Tarcza (lekka)", + "actionType": 2, + "inventorySlot": 1, + "size": 2 + }, + { + "id": "shld_mtl_li", + "name": "Metalowa, Tarcza (lekka)", + "actionType": 2, + "inventorySlot": 1, + "size": 2 + }, + { + "id": "shld_wd_hv", + "name": "Drewniana, Tarcza (ciężka)", + "actionType": 2, + "inventorySlot": 1, + "size": 3 + }, + { + "id": "shld_mtl_hv", + "name": "Metalowa, Tarcza (ciężka)", + "actionType": 2, + "inventorySlot": 1, + "size": 3 + }, + { + "id": "shld_twr", + "name": "Duża Tarcza", + "actionType": 2, + "inventorySlot": 1, + "size": 3 + }, + { + "id": "hd_cloth", + "name": "Nakrycie głowy, Ubranie", + "actionType": 2, + "inventorySlot": 2 + }, + { + "id": "hd_lthr", + "name": "Nakrycie głowy, Skórzane", + "actionType": 2, + "inventorySlot": 2, + "size": 1 + }, + { + "id": "hd_mtl_li", + "name": "Nakrycie głowy, Metalowe (lekkie)", + "actionType": 2, + "inventorySlot": 2, + "size": 2 + }, + { + "id": "hd_mtl_hv", + "name": "Nakrycie głowy, Metalowe (ciężkie)", + "actionType": 2, + "inventorySlot": 2, + "size": 3 + }, + { + "id": "bdy_clth", + "name": "Zbroja, Ubranie", + "actionType": 2, + "inventorySlot": 3 + }, + { + "id": "bdy_lthr", + "name": "Zbroja, Skórzana", + "actionType": 2, + "inventorySlot": 3, + "size": 1 + }, + { + "id": "bdy_hide", + "name": "Schowaj Zbroje", + "actionType": 2, + "inventorySlot": 3, + "size": 1 + }, + { + "id": "bdy_lt", + "name": "Zbroja (lekka)", + "actionType": 2, + "inventorySlot": 3, + "size": 2 + }, + { + "id": "bdy_hv", + "name": "Zbroja (ciężka)", + "actionType": 2, + "inventorySlot": 3, + "size": 3 + }, + { + "id": "chmail", + "name": "Kolczuga", + "actionType": 2, + "inventorySlot": 3, + "size": 3 + }, + { + "id": "spmail", + "name": "Zbroja Lamelkowa", + "actionType": 2, + "inventorySlot": 3, + "size": 3 + }, + { + "id": "plmail", + "name": "Zbroja Płytowa", + "actionType": 2, + "inventorySlot": 3, + "size": 3 + }, + { + "id": "hnd_cloth", + "name": "Rękawice, Ubranie", + "actionType": 2, + "inventorySlot": 4 + }, + { + "id": "hnd_lthr", + "name": "Rękawice, Skórzane", + "actionType": 2, + "inventorySlot": 4, + "size": 1 + }, + { + "id": "hnd_mtl_li", + "name": "Rękawice, Metalowe (lekkie)", + "actionType": 2, + "inventorySlot": 4, + "size": 2 + }, + { + "id": "hnd_mtl_hv", + "name": "Rękawice, Metalowe (ciężkie)", + "actionType": 2, + "inventorySlot": 4, + "size": 3 + }, + { + "id": "feet_clth", + "name": "Buty, Ubranie", + "actionType": 2, + "inventorySlot": 5 + }, + { + "id": "feet_lthr", + "name": "Buty, Skórzane", + "actionType": 2, + "inventorySlot": 5, + "size": 1 + }, + { + "id": "feet_mtl_li", + "name": "Buty, metalowe (lekkie)", + "actionType": 2, + "inventorySlot": 5, + "size": 2 + }, + { + "id": "feet_mtl_hv", + "name": "Buty, metalowe (ciężkie)", + "actionType": 2, + "inventorySlot": 5, + "size": 3 + }, + { + "id": "neck", + "name": "Naszyjnik", + "actionType": 2, + "inventorySlot": 6 + }, + { + "id": "ring", + "name": "Pierścień", + "actionType": 2, + "inventorySlot": 7 + }, + { + "id": "pot", + "name": "Mikstura", + "actionType": 1 + }, + { + "id": "food", + "name": "Jedzenie", + "actionType": 1 + }, + { + "id": "drink", + "name": "Napój", + "actionType": 1 + }, + { + "id": "gem", + "name": "Klejnot" + }, + { + "id": "animal", + "name": "Element Zwierzęcy" + }, + { + "id": "animal_e", + "name": "Jadalny Element Zwierzęcy", + "actionType": 1 + }, + { + "id": "flask", + "name": "Manierka" + }, + { + "id": "money", + "name": "Złoto" + }, + { + "id": "other", + "name": "Inne" + } +] diff --git a/AndorsTrail/res/raw-pl/questlist.json b/AndorsTrail/res/raw-pl/questlist.json new file mode 100644 index 000000000..cf29e84ec --- /dev/null +++ b/AndorsTrail/res/raw-pl/questlist.json @@ -0,0 +1,387 @@ +[ + { + "id": "andor", + "name": "W poszukiwaniu Andora", + "showInLog": 1, + "stages": [ + { + "progress": 1, + "logText": "Mój ojciec Mikhail mówił, że Andora nie ma w domu od wczoraj. Powinienem go poszukać we wiosce.", + "finishesQuest": 0 + }, + { + "progress": 10, + "logText": "Leonid wspomniał, że widział Andora rozmawiającego z Gruilem. Powinienem zapytać Gruila czy wie coś więcej.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Gruil chcę żebym mu przyniósł gruczoł jadowy. Wtedy może coś z niego wyciągne. Powiedział, że niektóre węże i żmije mają gruczoły jadowe.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Gruil powiedział, że Andor szukał kogoś zwanego Umarem. Powinenem pójść porozmawiać z jego przyjacielem Gaelem w Fallhaven na wschód stąd.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Rozmawiałem z Gaelem in Fallhaven. Mam pogadać z Bucusem i zapytać o gildię złodzieji.", + "finishesQuest": 0 + }, + { + "progress": 50, + "logText": "Bucus pozwolił mi wejść do piwnicy opuszczonego domu w Fallhaven. Muszę pogadać z Umarem.", + "finishesQuest": 0 + }, + { + "progress": 51, + "logText": "Umar mnie poznał, ale raczej pomylił mnie z bratem. Najwyraźniej Andor przyszedł się z nim zobaczyć.", + "finishesQuest": 0 + }, + { + "progress": 55, + "logText": "Umar zdradził mi, że Andor poszedł do Lodara tworzyciela potków. Muszę znaleźć jego kryjówkę.", + "finishesQuest": 0 + }, + { + "progress": 61, + "logText": "Słyszałem plotkę, w Loneford, według niej Andor był w Loneford i, że mógł mieć coś wspólnego z chorobą przez którą ludzie tu cierpią. Nie jestem do końca przekonany czy, aby na pewno był to Andor. Jeśli to był on, dlaczego pozwolił na to, by ludzie chorowali?", + "finishesQuest": 0 + } + ] + }, + { + "id": "mikhail_bread", + "name": "Chleb na śniadanie", + "showInLog": 1, + "stages": [ + { + "progress": 100, + "logText": "Kupiłem chleb dla Mikhaila.", + "finishesQuest": 1 + }, + { + "progress": 10, + "logText": "Mikhail chcę, żebym kupił chleb od Mary w centrum miasta.", + "finishesQuest": 0 + } + ] + }, + { + "id": "mikhail_rats", + "name": "Szczury!", + "showInLog": 1, + "stages": [ + { + "progress": 100, + "logText": "Zabiłem te dwa szczury w ogrodzie.", + "rewardExperience": 20, + "finishesQuest": 1 + }, + { + "progress": 10, + "logText": "Mikhail chce, żebym sprawdził nasz ogród. Powinienem zabić te szczury i wrócić do Mikhaila. Jeśli zostane ranny, mogę wrócić do domu i odpocząć na łóżku, by odzyskać siły.", + "finishesQuest": 0 + } + ] + }, + { + "id": "leta", + "name": "Zagubiony mąż", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Leta w Crossglen chcę, abym poszukał Oromira.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Znalazłem Oromira, chował się przed żoną.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "Powiedziałem Lecie, że Oromir chowa się przed nią.", + "rewardExperience": 50, + "finishesQuest": 1 + } + ] + }, + { + "id": "odair", + "name": "Plaga szczurów", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Odair chcę, żebym oczyścił jaskinię z zapasami. Powinienem zabić tego największego szczura i wrócić do Odaira.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "Pomogłem Odairowi oczyścić jaskinię ze szczurów we wiosce Crossglen.", + "rewardExperience": 300, + "finishesQuest": 1 + } + ] + }, + { + "id": "bonemeal", + "name": "Zakazana substancja", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Leonid w Crossglen powiedział mi, że pare tygodni temu była tu awantura. Lord Geomyr całkowicie zakazał używania napoju uzdrawiającego benomeal.\n\nTharal, miejscowy kapłan może wiedzieć więcej.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Tharal nie chce rozmawiać o bonemeal. Mogę go jednak przekonać jeśli przyniosę mu 5 skrzydeł insektów.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Tharal powiedział, że bonemeal to potężna substancja uzdrawiająca, widać strasznie go rozdrażniło, że jest zakazana. Powinienem pójść zobaczyć się z Thoronirem w Fallhaven jak chce się dowiedzieć więcej. Muszę mu powiedzieć hasło 'Blask Cieni'.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Rozmawiałem z Thoronirem w Fallhaven. Może przyrządzić napój bonemeal jeśli przyniosę mu 5 kości ze szkieletów. Powinienem znaleźć parę szkieletorów w opuszczonym domu na północ od Fallhaven.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "Przyniosłem kości Thoronirowi. Teraz będę mógł się u niego zaopatrywać w potki bonemeal.\nMuszę jednak uważać używając ich, odkąd Lord Geomyr wydał dekret są zakazane.", + "rewardExperience": 900, + "finishesQuest": 1 + } + ] + }, + { + "id": "jan", + "name": "Upadły przyjaciel", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Jan opowiedział mi historie, dwóch jego przyjaciół Gandir i Irogotu, zaczęło kopać w poszukiwaniu skarbu , ale zaczęli walczyć między sobą i Irogotu w szale zabił Gandira.\nMuszę zwrócić pierścień, który posiada Irogotu, i pogadać z Janem gdy już go odzyskam.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "Irogotu nie żyje. Zaniosłem Janowi pierścień Gandira i pomściłem jego przyjaciela.", + "rewardExperience": 1500, + "finishesQuest": 1 + } + ] + }, + { + "id": "bucus", + "name": "Klucz Luthor", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Bucus z Fallhaven może mieć informacje o Andorze. Chcę, żebym przyniósł klucz Luthor z katakumb pod kościołem w Fallhaven.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Katakumby pod kościołem są zamknięte. Athamyr to jedyna osoba, która może wejść do katakumb i jest na tyle odważna. Muszę się z nim zobaczyć w jego domu na południowy zachód od kościoła.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Athamyr chcę żebym przyniósł mu usmażony stek, wtedy może ze mną porozmawia.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Przyniosłem ten stek dla Athamyra.", + "rewardExperience": 700, + "finishesQuest": 0 + }, + { + "progress": 50, + "logText": "Athamyr dał mi pozwolenie na wejście do katakumb.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "Przyniosłem Bucusowi klucz Luthor.", + "rewardExperience": 2150, + "finishesQuest": 1 + } + ] + }, + { + "id": "fallhavendrunk", + "name": "Pijacka opowieść", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Pijak zaczął mi opowiadać jakąś historię, ale chcę, żebym mu przyniósł więcej miodu. Nie jestem pewny czy ta historia do czegoś zmierza.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "Pijak mówił, że swego czasu podróżował z Unnmirem. Powinienem porozmawiać z Unnmir.", + "finishesQuest": 1 + } + ] + }, + { + "id": "calomyran", + "name": "Sekrety Calomyrana", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Staruszek w Fallhaven zgubił księge 'Sekrety Calomyrana'. Powininem jej poszukać. Może w domu Arcira na południu?", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Znalazłem kawałek urwanej strony 'Sekrety Calomyrana' z imieniem 'Larcal' na niej napisanym.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "Oddałem staruszkowi księge.", + "rewardExperience": 600, + "finishesQuest": 1 + } + ] + }, + { + "id": "nocmar", + "name": "Zagubione skarby", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Unnmir powiedział, że kiedyś był podróżnikiem, i dał mi wskazówkę, żeby zobaczyć się z Nocmarem. Jego dom jest na południowy zachód od tawerny w Fallhaven.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Nocmar był kiedyś kowalem. Ale Lord Geomyr zakazał używania serca stali, więc nie może już tworzyć swojej broni.\nJeśli znajde kamienne serce i przyniosę je mu, znów mógłby tworzyć swoją broń.", + "finishesQuest": 0 + }, + { + "progress": 200, + "logText": "Przyniosłem kamienne serce Nocmarowi. Powinien teraz móc tworzyć przedmioty z serca stali.", + "rewardExperience": 1200, + "finishesQuest": 1 + } + ] + }, + { + "id": "flagstone", + "name": "Starożytne sekrety", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Spotkałem wartownika przed fortecą zwaną Flagstone. Wartownik powiedział mi, że Flagstone było kiedyś więzieniem dla uciekających pracowników na górze Galmore. Coraz częsciej pojawiały się tam nieumarli. Powinienem zbadać źródło pojawiania się tych nieumarłych. Strażnik powiedział, że mogę się do niego zwracać o pomoc.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Znalazłem tunel, kopany pod Flagstone, prowadzący do jakiejś większej jaskini. Jaskini pilnuje jakiś demon do którego nawet nie mogę się zbliżyć. Może ten strażnik wie coś więcej?", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Strażnik wspomniał, że były naczelnik miał naszyjnik, którego nigdy nie zdejmował. Pewnie na tym naszyjniku są słowa dzięki którym mógłbym przejść przez tego demona. Muszę wrócić do tego strażnika, żeby odczytał słowa na tym naszyjniku jak go znajde.", + "finishesQuest": 0 + }, + { + "progress": 31, + "logText": "Znalazłem byłego naczelnika Flagstone na wyższym piętrze. Powinienem był wrócić teraz do tego naczelnika.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Znam już słowa, które pomogą mi przejść przez tego demona pod Flagstone. 'Świt cieni'.", + "rewardExperience": 1600, + "finishesQuest": 0 + }, + { + "progress": 50, + "logText": "Głęboko pod Flagstone, znalazłem źródło nieumarłych. Kreature stworzoną z cierpienia więźniów Flagstone.", + "finishesQuest": 0 + }, + { + "progress": 60, + "logText": "Znalazłem więźnia, Narael, żył głęboko pod Flagstone. Narael był kiedyś mieszkańcem Nor City. Jest zbyt słaby, żeby mógł chodzić o własnych nogach, ale jeśli znajdę jego żonę w Nor City, zostanie mi to wynagrodzone.", + "rewardExperience": 2100, + "finishesQuest": 1 + } + ] + }, + { + "id": "vacor", + "name": "Brakujące elementy", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Mag zwany Vacor w połudiowo zachodnim Fallhaven próbował rozszczepić jakieś zaklęcie.\nCoś było z nim nie tak, miał obsesję na tym zaklęciu. Jakby coś od niego brało moc.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Vacor chcę, abym przyniósł mu cztery elementy zaklęcia, które jak zapewnia zostały mu ukradzione. Ci czterej bandyci powinni być gdzieś na południe od Fallhaven.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Przyniosłem mu te cztery części zaklęcia.", + "rewardExperience": 1200, + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Vacor mówił mi o jego byłym uczniu Unzel, który zadawł za dużo pytań. Vacor chce, żebym zabił Unzela. Mogę go znaleźć w południowo zachodnim Fallhaven. Mam mu przynieść jego sygnet, gdy już go zabije.", + "finishesQuest": 0 + }, + { + "progress": 50, + "logText": "Unzel dał mi wybór albo pomogę Vacorowi albo jemu.", + "finishesQuest": 0 + }, + { + "progress": 51, + "logText": "Wybrałem stronę Unzela. Powinienem pójść na południowy zachód Fallhaven, żeby porozmawiać z Vacorem o Unzelu i Cieniu.", + "finishesQuest": 0 + }, + { + "progress": 53, + "logText": "Zacząłem walczyć z Unzelem. Muszę przynieść sygnet Vacorowi skoro Unzel już jest martwy.", + "finishesQuest": 0 + }, + { + "progress": 54, + "logText": "Zacząłem walczyć z Vacorem. Muszę przynieść sygnet Unzelowi skoro Vacor już jest martwy.", + "finishesQuest": 0 + }, + { + "progress": 60, + "logText": "Zabiłem Unzel i powiedziałem Vacorowi o jego czynach.", + "rewardExperience": 1600, + "finishesQuest": 1 + }, + { + "progress": 61, + "logText": "Zabiłem Vacor i powiedziałem Unzelowi o jego czynach.", + "rewardExperience": 1600, + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw-pl/questlist_v0610.json b/AndorsTrail/res/raw-pl/questlist_v0610.json new file mode 100644 index 000000000..08bd5d1e3 --- /dev/null +++ b/AndorsTrail/res/raw-pl/questlist_v0610.json @@ -0,0 +1,352 @@ +[ + { + "id": "erinith", + "name": "Głębokie Rany", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Północny wschód od Crossglen village, poznałem Erinith w jego obozie. Najwyraźniej został zaatakowany zeszłej nocy i stracił księge." + }, + { + "progress": 20, + "logText": "Zgodziłem się pomóc Erinith. Wspomniał, że wyrzucił ją gdzieś w drzewa na północ stąd." + }, + { + "progress": 21, + "logText": "Zgodziłem się pomóc Erinith za 200 złotych monet. Wspomniał, że wyrzucił ją gdzieś w drzewa na północ stąd." + }, + { + "progress": 30, + "logText": "Zwróciłem księge Erinith.", + "rewardExperience": 2000 + }, + { + "progress": 31, + "logText": "Potrzebuje też pomocy z raną, która mu się nie goi. Albo przyniosę mu większą potke zdrowia, lub cztery normalne potki zdrowia." + }, + { + "progress": 40, + "logText": "Dałem Erinith potkę bonemeal. Był lekko przestraszony używając ją odkąd zakazali jej przez Lorda Geomyra." + }, + { + "progress": 41, + "logText": "Dałem Erinith większą potkę, żeby uleczył swoje rany." + }, + { + "progress": 42, + "logText": "Dałem Erinith cztery normalne potki, żeby uleczył swoje rany." + }, + { + "progress": 50, + "logText": "Rany się całkowicie zagoiły i Erinith mi podziękował za pomoc.", + "rewardExperience": 1500, + "finishesQuest": 1 + } + ] + }, + { + "id": "hadracor", + "name": "Zdewastowane ziemie", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Na drodze do wieży Carn, zachód od rozdroży, Spotkałem grupę drwali, którym przewodził Hadracor. Hadracor chcę, żeby mu pomóc się zemścić na osach które atakują drwali, gdy ci chcą ścinać drzewa. Żeby im pomóc w tej zemście, powinienem poszukać olbrzymich os w ich siedlisku i przynieść co najmniej 5 dużych skrzydeł." + }, + { + "progress": 20, + "logText": "Przyniosłem pięć dużych skrzydeł Hadracorowi." + }, + { + "progress": 21, + "logText": "Przyniosłem sześć dużych skrzydeł Hardcorowemu. Za pomoc, dał mi parę rękawiczek." + }, + { + "progress": 30, + "logText": "Hadracor podziękował za pomoc z resztą drwali za zemste na osach. W dowód wdzięczności pozwolił ze sobą handlować.", + "finishesQuest": 1 + } + ] + }, + { + "id": "tinlyn", + "name": "Zagubiona owieczka", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "W drodze do Feygard, koło mostku, spotkałem pasterza Tinlyna. Tinlyn powiedział mi, że zagubiły mu się cztery owieczki, ale nie zostawi reszty stada, żeby je poszukać." + }, + { + "progress": 15, + "logText": "I have agreed to help Tinlyn find his four lost sheep." + }, + { + "progress": 20, + "logText": "Znalazłem jedną z zagubionych owiec Tinlyna." + }, + { + "progress": 21, + "logText": "Znalazłem jedną z zagubionych owiec Tinlyna." + }, + { + "progress": 22, + "logText": "Znalazłem jedną z zagubionych owiec Tinlyna." + }, + { + "progress": 23, + "logText": "Znalazłem jedną z zagubionych owiec Tinlyna." + }, + { + "progress": 25, + "logText": "Znalazłem wszystkie cztery owieczki." + }, + { + "progress": 30, + "logText": "Tinlyn podziękował mi za znalezienie owieczek.", + "rewardExperience": 3500, + "finishesQuest": 1 + }, + { + "progress": 31, + "logText": "Tinlyn podziękował mi za znalezienie owieczek, ale nie ma dla mnie żadnej nagrody.", + "rewardExperience": 2000, + "finishesQuest": 1 + }, + { + "progress": 60, + "logText": "Zaatakowałem przynajmniej jedną z owieczek i nie mogę już oddać mu wszystkich czterech.", + "finishesQuest": 1 + } + ] + }, + { + "id": "benbyr", + "name": "Tanie Cięcia", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Spotkałem Benbyra przed strażnicą. Chcę się zemścić na koledze 'partnerze biznesowym' - Tinlyn. Benbyr chcę zabić wszystkie jego owieczki." + }, + { + "progress": 20, + "logText": "Zgodziłem się pomóc Benbyrowi zabić wszystkie jego osiem owieczek. Powinienem ich poszukać na północnym zachodzie stąd." + }, + { + "progress": 21, + "logText": "Zacząłem zarzynać jego owce. Wrócę do Benbyra, gdy zabije wszystkie osiem owiec." + }, + { + "progress": 30, + "logText": "Benbyr był wstrząśnięty słysząc, że wszystkie jego owce są zarżnięte.", + "rewardExperience": 5200, + "finishesQuest": 1 + }, + { + "progress": 60, + "logText": "Odmówiłem pomocy w zabiciu owiec.", + "finishesQuest": 1 + } + ] + }, + { + "id": "rogorn", + "name": "Droga czysta", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Minarra w wieży na rozdrożach Crossroads widziała bandę łotrów zmierzających na zachód. Minarra była pewna, że odpowiadali oni opisowi poszukiwanych za, których wyznaczono nagrody przez Feygardski patrol. Jeśli to są ludzie o których wspominała Minarra, ich liderem jest bezwzględny i dziki bandzior zwany Rogorn." + }, + { + "progress": 20, + "logText": "Pomagam Minarrze znaleźć bandę tych łotrów. Powinienem iść drogą na zachód od tej wieży i poszukać ich. Prawdopodobnie to oni ukradli trzy słynne obrazy i są posądzeni o inne zbrodnie." + }, + { + "progress": 21, + "logText": "Minarra wspomniała także, żeby nie ufać w ani jedno ich słowo. Właściwie wszystko powiedziane przez Rogorna powinno traktować się bardzo podejrzliwie." + }, + { + "progress": 30, + "logText": "Znalazłem bandę bandytów na zachodniej drodze, prowadzoną przez Rogorna." + }, + { + "progress": 35, + "logText": "Rogorn powiedział mi, że jest niesłusznie oskarżony o ukradnięcie obrazów oraz morderstwa, a oni wcale nawet nie byli w Feygardzie." + }, + { + "progress": 40, + "logText": "Zdecydowałem się zaatakować Rogorna i jego bandziorów. Powinienem wrócić do Minarry, gdy już się z nimi rozprawie." + }, + { + "progress": 45, + "logText": "Zdecydowałem się zaatakować Rogornai jego bandziorów, ale zamiast raportować o tym Minnarze powiem jej, że musiała się pomylić, bo to nie był Rogorn." + }, + { + "progress": 50, + "logText": "Minarra podziękowała mi za rozprawienie się z tymi złodziejami i że moje uczynki będą docenione." + }, + { + "progress": 55, + "logText": "Kiedy powiedziałem Minarrze, że musiała go pomylić z kimś innym, stała się nieco podejrzliwa, ale podziękowała za pomoc w tej sprawie." + }, + { + "progress": 60, + "logText": "Pomogłem Minnarze w jej zadaniu.", + "finishesQuest": 1 + } + ] + }, + { + "id": "feygard_shipment", + "name": "Sprawy Feygard", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Spotkałem Gandorena, kapitana straży przy strażnicy na rozdrożach. Powiedział mi o problemach w Loneford, przez które jego straże muszą się mieć bardziej na baczności niż zwykle. Przez co nie mogą zająć sie swoimi sprawami, a muszą pełnić służbę." + }, + { + "progress": 20, + "logText": "Gandoren chcę, abym mu pomógł w dostawie 10 żelaznych mieczy do innego posterunku na południu." + }, + { + "progress": 21, + "logText": "Zgodziłem się pomóc Gandorenowi w transporcie dostawy, jako przysługę dla Feygard." + }, + { + "progress": 22, + "logText": "Niechętnie, ale zgodziłem się w transportowaniu dostawy." + }, + { + "progress": 25, + "logText": "Muszę dostarczyć paczkę broni do kapitana patrolu stacjonującego w Spienionym Kuflu." + }, + { + "progress": 26, + "logText": "Gandoren powiedział, że Ailshara wyrażała zainteresowanie dostawą i kazał mi się trzymać od niej z daleka." + }, + { + "progress": 30, + "logText": "Ailshara rzeczywiście się interesuje tą dostawą, i chce, żebym jednak pomógł Nor City." + }, + { + "progress": 35, + "logText": "Jeśli chcę pomóc Ailsharze w Nor City, powinienem dostarczyć towar do kowala w Vilegard." + }, + { + "progress": 50, + "logText": "Dostarczyłem towar kapitanowi w tawernie we Feygardzie . Powinienem porozmawiać z Gandorenem, że towar został już dostarczony." + }, + { + "progress": 55, + "logText": "Dostarczyłem towar do kowala w Vilegard." + }, + { + "progress": 56, + "logText": "Kowal w Vilegard dał mi w zamian paczkę zużytej broni, którą mam zanieść kapitanowi straży w tawernie w Feygard zamiast tych normalnych." + }, + { + "progress": 60, + "logText": "Zaniosłem zużytą broń do kapitana w tawernie w Feygard. Powinienem powiedzieć Gandorenowi, że dostarczyłem towar na miejsce." + }, + { + "progress": 80, + "logText": "Gandoren podziękował mi za pomoc z dostawą.", + "rewardExperience": 4000, + "finishesQuest": 1 + }, + { + "progress": 81, + "logText": "Gandoren podziękował mi za pomoc z dostawą. Nawet nie był podejrzliwy. Muszę zameldować o dostarczeniu towaru Ailsharze." + }, + { + "progress": 82, + "logText": "Zameldowałem się u Ailshary.", + "rewardExperience": 4000, + "finishesQuest": 1 + } + ] + }, + { + "id": "loneford", + "name": "Płynie w żyłach", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Słyszałem historię o Loneford. Większość tamtejszych ludzi jest chora, a niektórzy nawet umarli. Przyczyna jest nadal nieznana." + }, + { + "progress": 11, + "logText": "Muszę przeprowadzić własne śledztwo co jest przyczyną tej dziwnej choroby. Powininenm porozmawiać z mieszkańcami Loneford i okolic, żeby dowiedzieć się więcej o sprawie." + }, + { + "progress": 21, + "logText": "Strażnicy z wartowni są pewni, że choroba w Loneford to sabotaż za który odpowiedzialni są piraci i ludzie z Nor City." + }, + { + "progress": 22, + "logText": "Niektórzy mieszkańcy Loneford wierzą, że to sprawka strażników z Loneford, w niektórych przypadkach ludzie cierpią bardziej niż wcześniej." + }, + { + "progress": 23, + "logText": "Talion, kapłan z Loneford, uważa, że to kara Cienia, za brak wiary w niego." + }, + { + "progress": 24, + "logText": "Taevinn w Loneford jest pewny, że Sienn w południowo wschodniej stodole ma coś wspólnego z tą chorobą. Najwyraźniej Sienn trzyma jakieś stworzenie, które parę razy stawało się niebezpieczne." + }, + { + "progress": 25, + "logText": "Muszę zobaczyć się z Landą w tawernie Loneford. Plotki głoszą, że boi się czegoś powiedzieć." + }, + { + "progress": 30, + "logText": "Landa mylił mnie z kimś początkowo. Widział jakiegoś chłopca niedaleko studni w nocy tuż przed pojawieniem się tej choroby. Bał mi się o tym powiedzieć na początku ponieważ myślał, że ten chłopiec go widział. Czy to mógł być Andor?" + }, + { + "progress": 31, + "logText": "Tej nocy, której ten chłopiec był przy studni, widział także Bucetha pobierającego próbki wody ze studni. Dosyć dziwne, Buceth nie zachorował jak reszta mieszkańców wioski." + }, + { + "progress": 35, + "logText": "Powinienem przesłuchać Bucetha w świątyni Loneford, co takiego robił przy studni i czy cokolwiek wie o Andorze." + }, + { + "progress": 41, + "logText": "Przekupiłem Bucetha do rozmowy." + }, + { + "progress": 42, + "logText": "Powiedziałem Bucethowi, że jestem gotów podążać ścieżką cieni." + }, + { + "progress": 45, + "logText": "Buceth mówił, że jest przysłany przez innych kapłanów z Nor City, by się upewnić, że czary cieni odzyskają blask nad Loneford. Najwyraźniej ci kapłani przysłali też chłopca do jakiejś sprawy w Loneford, Buceth miał za zadanie pobrać próbki wody ze studni." + }, + { + "progress": 50, + "logText": "Zaatakowałem Buceth. Powinienem przynieść jakiś dowód na to, że to sprawka Bucetha do Kuldana, kapitana straży w Loneford." + }, + { + "progress": 54, + "logText": "Oddałem próbki Bucetha Kuldanowi, kapitanowi straży w Loneford." + }, + { + "progress": 55, + "logText": "Kuldan był bardzo wdzięczny za rozwiązanie problemu choroby w Loneford. Zaczną przynosić wodę by pomoć Feygard zamiast pić ją ze studni. Kuldan powiedział, żebym zobaczył się z zarządcą Feygard jeśli chcę jeszcze pomóc.", + "rewardExperience": 15000, + "finishesQuest": 1 + }, + { + "progress": 60, + "logText": "Obiecałem trzymać historię Bucetha w tajemnicy. Jeśli Andor naprawdę tu był, musiał mieć bardzo ważny powód, że zrobił to co zrobił. Buceth powiedział,żebym porozmawiał z kustoszem w kaplicy Nor City jeśli chcę się nauczyć czegoś o cieniu.", + "rewardExperience": 15000, + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw-pl/questlist_v0611.json b/AndorsTrail/res/raw-pl/questlist_v0611.json new file mode 100644 index 000000000..232992e51 --- /dev/null +++ b/AndorsTrail/res/raw-pl/questlist_v0611.json @@ -0,0 +1,82 @@ +[ + { + "id": "thorin", + "name": "Resztki i Kawałki", + "showInLog": 1, + "stages": [ + { + "progress": 20, + "logText": "W jaskini na wschodzie, spotkałem Thorina, poprosił mnie o pomoc w znalezieniu jego dawnych towarzyszy. Muszę znaleźć sześć szkieletów które po nich zostały i wrócić do Thorina." + }, + { + "progress": 31, + "logText": "Znalazłem jakieś resztki szkieletu w tej samej jaskini co poznałem Thorina." + }, + { + "progress": 32, + "logText": "Znalazłem jakieś resztki szkieletu w tej samej jaskini co poznałem Thorina." + }, + { + "progress": 33, + "logText": "Znalazłem jakieś resztki szkieletu w tej samej jaskini co poznałem Thorina." + }, + { + "progress": 34, + "logText": "Znalazłem jakieś resztki szkieletu w tej samej jaskini co poznałem Thorina." + }, + { + "progress": 35, + "logText": "Znalazłem jakieś resztki szkieletu w tej samej jaskini co poznałem Thorina." + }, + { + "progress": 36, + "logText": "Znalazłem jakieś resztki szkieletu w tej samej jaskini co poznałem Thorina." + }, + { + "progress": 40, + "logText": "Thorin był wdzięczny za pomoc. Jako nagrodę pozwolił mi odpoczywać w jego łóżku, i sprzeda mi parę jego potków.", + "rewardExperience": 4000, + "finishesQuest": 1 + } + ] + }, + { + "id": "algangror", + "name": "Myszy i ludzie", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "W opuszczonym domu na półwyspie na północnym brzegu jeziora Laeroth w górach na północnym-wschodzie, poznałem kobietę Algangror." + }, + { + "progress": 11, + "logText": "Miała problem z gryzoniami i zapytała mnie o pomoc, udało jej się zamknąć je w pułapce w piwnicy." + }, + { + "progress": 15, + "logText": "Zgodziłem się pomóc Algangrori z gryzoniami. Mam do niej wrócić jak zabije wszystkie sześć gryzoni." + }, + { + "progress": 20, + "logText": "Algangror podziękowała mi za pomoc.", + "rewardExperience": 5000 + }, + { + "progress": 21, + "logText": "Powiedziała też aby nie rozmawiać z nikim w Remgard o jej miejscu pobytu. Najwyraźniej, jej poszukują, ale nie chciała powiedzieć dlaczego. Pod żadnym pozorem nie mogę nikomu powiedzieć, gdzie ona jest.", + "finishesQuest": 1 + }, + { + "progress": 100, + "logText": "Nie pomogę Algangrori w jej zadaniu.", + "finishesQuest": 1 + }, + { + "progress": 101, + "logText": "Algangrori nie chcę ze mną rozmawiać i nie będe już w stanie jej pomóc.", + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw-pl/questlist_v0611_2.json b/AndorsTrail/res/raw-pl/questlist_v0611_2.json new file mode 100644 index 000000000..b4caade7b --- /dev/null +++ b/AndorsTrail/res/raw-pl/questlist_v0611_2.json @@ -0,0 +1,257 @@ +[ + { + "id": "toszylae", + "name": "Przewoźnik Mimowoli", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Na drodze między Loneford a Brimhaven, Znalazłem wyschnięte jezioro z wielką jamą. Głęboko w jamie, natknąłem się na Ulirfendora - kapłana cieni z Brimhaven. Ulirfendor próbował przetłumaczyć inskrypcję ze świątyni Kazauli, i stwierdził, że jest tam coś o 'Mrocznym Obrońcy', ale nie jest pewny co to oznacza. Cokolwiek to oznacza, musi być powstrzymane." + }, + { + "progress": 11, + "logText": "Ulirfendor potrzebuję pomocy z brakującymi elementami inskrypcji. Na inskrypcji pisze 'Kulauil hamar urum Kazaul'te', ale następna część jest kompletnie nie czytelna." + }, + { + "progress": 15, + "logText": "Zgodziłem się pomóc Ulirfendorowi znaleźć brakujące części inskrypcji. Ulirfendor wierzy, że inskrypcjia jest o potężnej kreaturze, która żyje głęboko w podziemiach. Może to jest wskazówka gdzie mogą być pozostałe części." + }, + { + "progress": 20, + "logText": "Głęboko w podziemiach, spotkałem promiennego opiekuna, strzeżącego kogoś. Opiekun wypowiedział frazy 'Kulauil hamar urum Kazaul'te. Kazaul hamat urul'. To musi być to czego szukał Ulirfendor. Powinienem wrócić do niego najszybciej jak się da." + }, + { + "progress": 21, + "logText": "Próbowałem zaatakować opiekuna, ale nie mogłem go nawet sięgnąć. Jakaś potężna siła mnie powstrzymywała. Może Ulirfendor wie więcej." + }, + { + "progress": 30, + "logText": "Ulirfendor był bardzo zadowolony, że znalazłem brakujące części inskrypcji.", + "rewardExperience": 2000 + }, + { + "progress": 32, + "logText": "Powiedział mi także jak ona idzie dalej, ale nie wie co oznacza. Powinienem wrócić do opiekuna i powtórzyć słowa Ulirfendora." + }, + { + "progress": 42, + "logText": "Powtórzyłem to opiekunowi.", + "rewardExperience": 5000 + }, + { + "progress": 45, + "logText": "Opiekun zaśmiał się złowieszczo i zaatakował mnie." + }, + { + "progress": 50, + "logText": "Pokonałem opiekuna i udało mi się dotrzeć do licza 'Toszylae'. Licz zdołał mnie czymś zainfekować. Muszę zabić tego licza i wrócić do Ulirfendor." + }, + { + "progress": 60, + "logText": "Ulirfendor powiedział, że udało mu się przetłumaczyć części, które powiedziałem opiekunowi. Najwyraźniej to co powiedziałem brzmiało mniej więcej 'Moje ciało dla Kazaula'. Ulirfendor był bardzo zaniepokojony tym, co to oznacza dla mnie i żałował, że kazał mi powiedzieć te słowa opiekunowi." + }, + { + "progress": 70, + "logText": "Ulirfendor ucieszył się gdy dowiedział, że zabiłem licza. Kiedy licz jest już martwy, ludzie w okolicy powinni być już bezpieczni.", + "rewardExperience": 20000, + "finishesQuest": 1 + } + ] + }, + { + "id": "darkprotector", + "name": "Mroczny Obrońca", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Znalazłem dziwnie wyglądający hełm z licza 'Toszylae' którego pokonałem. Muszę zapytać Ulirfendor czy wie coś więcej." + }, + { + "progress": 15, + "logText": "Ulirfendor myśli że ten artefakt jest tym o czym mówi inskrypcja, i przyniesie nieszczęście wszystkim dookoła ktokolwiek będzie go nosił. Chcę, żebym go natychmiast zniszczył." + }, + { + "progress": 26, + "logText": "Do zniszczenia artefaktu, będe musiał dać hełm i serce licza Ulirfendorowi." + }, + { + "progress": 30, + "logText": "Oddałem hełm Ulirfendorowi." + }, + { + "progress": 31, + "logText": "Oddałem serce licza Ulirfendorowi." + }, + { + "progress": 35, + "logText": "Ulirfendor zniszczył artefakt. Wioski w okolicy powinny być już bezpieczne, przed nieszczęściami jakie ten hełm niósł ze sobą." + }, + { + "progress": 40, + "logText": "Za pomoc z liczem i hełmem, Ulirfendor dał mi mroczne błogosławieństwo cieni.", + "rewardExperience": 15000, + "finishesQuest": 1 + }, + { + "progress": 41, + "logText": "Za pomoc z liczem i hełmem, Ulirfendor chciał mi dać mroczne błogosławieństwo cieni, ale odmówiłem.", + "rewardExperience": 35000, + "finishesQuest": 1 + }, + { + "progress": 50, + "logText": "Zdecydowałem zatrzymać hełm dla siebie. Kto wie jaką moc moge z niego uzyskać." + }, + { + "progress": 51, + "logText": "Ulirfendor zaatakował mnie za zatrzymanie hełmu." + }, + { + "progress": 55, + "logText": "Znalazłem księge obok Ulirfendora. Księga mówi o rytuale, który pozwala hełmowi uzyskać jego prawdziwą moc. Muszę wykonać rytuał w świątyni jeśli chcę używać hełmu." + }, + { + "progress": 60, + "logText": "Zacząłem rytuał Kazauli." + }, + { + "progress": 65, + "logText": "Umieściłem hełm z na przedzie świątyni." + }, + { + "progress": 66, + "logText": "Umieściłem serce licza na przedzie świątyni." + }, + { + "progress": 70, + "logText": "Rytuał zakończony, przywróciłem dawną moc hełmu.", + "rewardExperience": 5000, + "finishesQuest": 1 + } + ] + }, + { + "id": "maggots", + "name": "Mam to w sobie", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Głęboko w jaskini, walczyłem z liczem Kazauli. Jakoś zdołał mnie zainfekować czymś co zaczyna mi pełzać w brzuchu! Muszę znaleźć jakiś sposób na pozbycie się tego czegoś. Muszę porozmawiać z Ulirfendorem, albo poszukać pomocy w którejś ze świątyń na zewnątrz." + }, + { + "progress": 20, + "logText": "Ulirfendor mówił mi, że czytał coś dawno temu o glizdach które żywią się na żywą tkanką. One są jak to nazwał 'niecodziennym' uczuciem dla tego kto ma go w sobie, jego jaja mogą powoli zabijać osobe od wewnątrz. Muszę znaleźć jak najszybciej pomoc zanim będzie za późno." + }, + { + "progress": 21, + "logText": "Ulirfendor mowił, że jeden z kapłanów cieni powinen być w stanie mi pomóc. Powinienem odwiedzić Taliona w świątyni w Loneford natychmiast." + }, + { + "progress": 30, + "logText": "Talion w Loneford powiedział mi, że aby się wyleczyć z mojej niedoli, Muszę znaleźć cztery części. Tymi częściami są pięć kości, dwie sierści zwierzęce, jeden gruczoł jadowy Irdegh i jedna pusta fiolka. Kości i sierść znajdę w dziczy, gruczoł jadowy powienien być w jednym z Irdeghs, które występują na wschodie." + }, + { + "progress": 40, + "logText": "Przyniosłem pięć kości Talionowi." + }, + { + "progress": 41, + "logText": "Przyniosłem zwierzęcą sierść Talionowi." + }, + { + "progress": 42, + "logText": "Przyniosłem gruczoł jadowy Talionowi." + }, + { + "progress": 43, + "logText": "Przyniosłem pustą fiolkę Talionowi." + }, + { + "progress": 45, + "logText": "Przyniosłem już wszystkie potrzebne części Talionowi potrzebne do antidotum." + }, + { + "progress": 50, + "logText": "Talion uleczył mnie z tej glizdy Kazaula. Udało mi się go złapać we fiolkę, Talion mówi, że jest bardzo cenna. Ciekawe po co to komu.", + "rewardExperience": 30000 + }, + { + "progress": 51, + "logText": "Ze względu na moją wcześniejszą przypadłość, Talion zgodził się udzielić mi błogosławieństwa cieni, gdy tylko będe chciał oczywiście za opłatą.", + "finishesQuest": 1 + } + ] + }, + { + "id": "sisterfight", + "name": "Różnica zdań", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Słyszałem historię o pewnych kłócących się siostrach w Remgard, Elwel i Elwyl. Najwyraźniej budzą wszystkich w nocy, gdy się na siebie drą. Powinienem odwiedzić ich dom na południowym brzegu miasta Remgard." + }, + { + "progress": 20, + "logText": "Rozmawiałem z Elwylją, jedną z sióstr w Remgard. Jest wściekła na swoją siostrę za zaprzeczaniu nawet najbardziej oczywistym faktom. Wygląda na to, że ich kłótnie trwać mogły nawet parę lat." + }, + { + "progress": 21, + "logText": "Elwel się do mnie nie odzywa." + }, + { + "progress": 30, + "logText": "Nie zgadzają się w jednej sprawie, co do koloru pewnego eliksiru, który Hjaldar zazwyczaj wytwarza. Elwyl twierdzi, że eliksir do poprawy celności, który tworzy Hjaldar jest niebieski, a według Elwel jest to zielona substancja." + }, + { + "progress": 31, + "logText": "Elwyl wants me to get a potion of accuracy focus from Hjaldar here in Remgard so that she can finally prove to Elwel that she is wrong." + }, + { + "progress": 40, + "logText": "Rozmawiałem z Hjaldarem w Remgard. Hjaldar nie tworzy już eliksirów od kiedy zapasy ekstraktu szpiku Lysona się skończyły." + }, + { + "progress": 41, + "logText": "Wygląda na to, że stary przyjaciel Hjaldera, Mazeg na pewno ma jakiś szpik na sprzedaż. Niestety, nie bardzo wie gdzie Mazeg aktualnie mieszka. Wie tylko, że Mazego podróżował daleko na zachód, kiedy się ostatni raz widzieli." + }, + { + "progress": 45, + "logText": "Muszę znaleźć Mazega i zdobyć trochę szpiku Lysona, żeby Hjaldar znów mógł tworzyć eliksiry." + }, + { + "progress": 50, + "logText": "Rozmawiałem z Mazegiem w Blackwater. Odkąd pomogłem ludziom z tej osady, będzie rad sprzedać mi szpik po promocyjnej cenie 400 złota." + }, + { + "progress": 51, + "logText": "Rozmawiałem z Mazegiem w Blackwater. będzie rad sprzedać mi szpik w cenie 800 złota." + }, + { + "progress": 55, + "logText": "Kupiłem szpik od Mazega. Powinienem wrócić i dać szpik Hjaldarowi." + }, + { + "progress": 60, + "logText": "Hjaldar był wdzięczny za przyniesienie szpiku.", + "rewardExperience": 15000 + }, + { + "progress": 61, + "logText": "Hjaldar znów może tworzyć eliksiry, i będzie chciał się z nimi podzielić odpłatnie. Podarował mi nawet parę z jego pierwszych eliksirów. Powinienem odwiedzić siostry Elwille w Remgard, i pokazać im eliksir celności." + }, + { + "progress": 70, + "logText": "Dałem eliksir celności Elwyl." + }, + { + "progress": 71, + "logText": "Niestety, nie pomogło to w zakończeniu ich kłótni. Przeciwinie są teraz na siebie jeszcze bardziej wściekłe , od kiedy się wydało, że obie były w błędzie.", + "rewardExperience": 9000, + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw-pl/questlist_v0611_3.json b/AndorsTrail/res/raw-pl/questlist_v0611_3.json new file mode 100644 index 000000000..f50ab24f2 --- /dev/null +++ b/AndorsTrail/res/raw-pl/questlist_v0611_3.json @@ -0,0 +1,296 @@ +[ + { + "id": "remgard", + "name": "Wszystko w porządku", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Dotarłem do miasta Remgard. Według tego co mówił strażnik mostu, miasto jest zamknięte dla przyjezdnych i nikt nie może go opuścić. Prowadzą śledztwo w sprawie zaginionych ludzi z miasta." + }, + { + "progress": 15, + "logText": "Zaoferowałem swoją pomoc ludziom z Remgard w śledztwie i w rozwikłaniu zagadki co sie stało z tymi ludźmi." + }, + { + "progress": 20, + "logText": "Strażnik na moście poprosił mnie o zbadanie opuszczonego domu na wschód wzdłuż północnego brzegu jeziora. Powinienem uważać na nieproszonych gości, których mogę tam spotkać." + }, + { + "progress": 30, + "logText": "Zdałem raport strażnikowi mostu, że poznałem Algangrora w opuszczonym domu.", + "rewardExperience": 3000 + }, + { + "progress": 31, + "logText": "Zdałem raport strażnikowi mostu, że nikogo nie było w opuszczonym domu.", + "rewardExperience": 3000 + }, + { + "progress": 35, + "logText": "Pozwolono mi wejść do Remgard. Muszę spotkać się z Jhaeldem, ze starszym miasta, aby porozmawiać o naszym kolejnym kroku. Jhaeld możliwe, że będzie w tawernie na południowym-wschodzie." + }, + { + "progress": 40, + "logText": "Jhaeld był dość arogancki, ale powiedział, że od jakiegoś czasu mają ten problem ze znikającymi ludźmi. Nie mają zielonego pojęcia kto lub co za tym stoi." + }, + { + "progress": 50, + "logText": "Muszę porozmawiać z mieszkańcami Remgard, żeby zapytać czy są może jakieś wskazówki na to dlaczego znikają ludzie." + }, + { + "progress": 51, + "logText": "Pierwszym będzie Norath, którego żona Bethir zniknęła. Norath mieszka na farmie na południowym-zachodzie." + }, + { + "progress": 52, + "logText": "Drugimi, z którymi muszę porozmawiać będą rycerze Elythom w miejscowej tawernie." + }, + { + "progress": 53, + "logText": "Trzecią, będzie starsza kobieta Duaina w swoim domu na południu." + }, + { + "progress": 54, + "logText": "Ostatnim, będzie Rothses, płatnerz. Mieszka na zachodzniej części miasta." + }, + { + "progress": 59, + "logText": "Próbowałem powiedzieć Jhaeldowi o Algangror, ale udawał, że mnie nie słyszy." + }, + { + "progress": 61, + "logText": "Rozmawiałem z Norath. On i jego żona się ostatnio pobili, ale on nie ma pojęcia gdzie ona się podziała." + }, + { + "progress": 62, + "logText": "Rycerzom Elythoma w tawernie Remgard ostatnio zaginęła jedna osoba. Nikt nic nie zauważył." + }, + { + "progress": 63, + "logText": "Duaina widziała mnie w swoich wizjach. Nie zrozumiałem wszystkiego co mówiła, ale niektóre zdania były jasne ja i Andor jesteśmy częścią czegoś większego. Ciekawe co to znaczy? Nic nie wspomniała jednak o znikających ludziach, nic przynajmniej tak nie brzmiało." + }, + { + "progress": 64, + "logText": "Rothses powiedział mi, że Bethir odwiedziła go zeszłej nocy, gdy zaginęła, żeby sprzedać mu ekwipunek. Od tamtej pory już jej nie widział." + }, + { + "progress": 70, + "logText": "Rozmawiałem już ze wszystkimi ludźmi z którymi chciał Jhaeld, ale niczego się od nich konkretnego nie dowiedziałem. Powinienem wrócić do Jhaeld i zapytać co planuje dalej." + }, + { + "progress": 75, + "logText": "Jhaeld był wyraźnie zdenerwowany tym, że nie udało mi się dowiedzieć czegokolwiek od tych ludzi.", + "rewardExperience": 15000 + }, + { + "progress": 80, + "logText": "Jeśli nadal chcę pomóc Jhaeld i mieszkańcom Remgard, powininem poszukać wskasówek gdzieś indziej.", + "finishesQuest": 1 + }, + { + "progress": 110, + "logText": "Jhaeld nie chce ze mną rozmawiać. Nie pomogę mu dowiedzieć się co się dzieje z zaginionymi ludzi w Remgard.", + "finishesQuest": 1 + } + ] + }, + { + "id": "remgard2", + "name": "Co tak cuchnie?", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Powiedziałem Jhaeld, starszemu miasteczka Remgard, o kobiecie Algangror, która żyje w opuszczonym domu na wschodzie przy północnym brzegu Remgard." + }, + { + "progress": 20, + "logText": "Jhaeld powiedział, że nie chce z nią mieć nic wspólnego, myśli, że jest niebezpieczna. W obawie o bezpieczeństwo strażników, nie zwróci się przeciw niej, boi się o to co może się stać im wszystkim." + }, + { + "progress": 21, + "logText": "Jeśli chcę pomóc Jhaeld i mieszkańcom Remgard, Muszę znaleźć sposób, aby Algangror zniknęła. Uprzedził mnie, żebym był niezwykle ostrożny." + }, + { + "progress": 30, + "logText": "Algangror przyznała się, że porwała paru mieszkańców Remgard. Jednak nie powie mi co się z nimi stało." + }, + { + "progress": 35, + "logText": "Zaatakowałem Algangror. Powinienem wrócić do Jhaeld z dowodem na to że pokonałem Algangrorę." + }, + { + "progress": 40, + "logText": "Powiedziałem Jhaeldowi, że zabiłem Algangrorę." + }, + { + "progress": 41, + "logText": "Jhaeld ucieszył się słysząc dobre wieści. Mieszkańcy Remgard powinni być teraz bezpieczni, a miasto znów zostanie otwarte dla przybyszów." + }, + { + "progress": 45, + "logText": "Za pomoc mieszkańcom Remgard w znalezieniu przyczyny znikania ludzi, Jhaeld powiedział, żebym porozmawiał z Rothses. Może będzie w stanie zaoferować lepszy ekwipunek.", + "rewardExperience": 21000, + "finishesQuest": 1 + }, + { + "progress": 46, + "logText": "Ervelyn, Remgardzki krawiec, dał mi kapelusz z piórem jako nagrode za uratowanie mieszkańców Remgard przed zaginięciami." + } + ] + }, + { + "id": "fiveidols", + "name": "Pięciu idoli", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Algangror chcę, abym pomógł jej w pewnym zadaniu. Nie chciała jednak za dużo powiedzieć i dlaczego chce to zrobić. Jeśli jej pomogę, obiecała mi dać swój zaklęty naszyjnik po wykonaniu zadania, który pewnie jest sporo wart." + }, + { + "progress": 20, + "logText": "Zgodziłem się pomóc Algangrori w jej zadaniu." + }, + { + "progress": 30, + "logText": "Algangror chcę, żebym rozstawił pięć idoli koło pięciu różnych ludzi Remgard. Idole powinny być rozstawione przy łóżkach tak, aby nie było łatwo ich znaleźć." + }, + { + "progress": 31, + "logText": "Pierwszą osobą jest Jhaeld, można go znaleźć w tawernie w Remgard." + }, + { + "progress": 32, + "logText": "Drugą osobą, jest Larni farmer, żyje w północnej chacie w Remgard." + }, + { + "progress": 33, + "logText": "Trzecią osobą jest Arnal kowal, żyje w północno-zachodnim Remgard." + }, + { + "progress": 34, + "logText": "Czwartą jest Emerei, można go spotkać w południoo-wschodnim Remgard." + }, + { + "progress": 35, + "logText": "Piątą osobą jest Carthe. Carthe jest na wschodnim wybrzeżu Remgard, koło tawerny." + }, + { + "progress": 37, + "logText": "Nie mogę powiedzieć nikomu o moim zadaniu, albo miejscu ułożenia idoli." + }, + { + "progress": 41, + "logText": "Podłożyłem idola obok łóżka Jhaelda." + }, + { + "progress": 42, + "logText": "Podłożyłem idola obok łóżka Larni." + }, + { + "progress": 43, + "logText": "Podłożyłem idola obok łóżka Arnal." + }, + { + "progress": 44, + "logText": "Podłożyłem idola obok łóżka Emerei." + }, + { + "progress": 45, + "logText": "Podłożyłem idola obok łóżka Carthe." + }, + { + "progress": 50, + "logText": "Wszystkie idole pochowane u ludzi, których kazała mi odwiedzić Algangrora. Powinienem wrócić do Algangror." + }, + { + "progress": 51, + "logText": "Algangror thanked me for helping her." + }, + { + "progress": 60, + "logText": "Opowiedziała mi jak było za czasów gdy mieszkała w miasteczku, ale była prześladowana za swoje przekonania. Według niej zupełnie niesprawiedliwie, bo nic im nie zrobiła." + }, + { + "progress": 61, + "logText": "Żeby się zemścić na mieszkańcach Remgard, zwabiła paru ludzi do chaty i zmieniła je w szczury." + }, + { + "progress": 70, + "logText": "Za pomoc w zadaniu, którego sama by nie mogła wykonać, Algangror dała mi zaklęty naszyjnik, 'Marrowtaint'.", + "rewardExperience": 21000, + "finishesQuest": 1 + }, + { + "progress": 100, + "logText": "Zdecydowałem się jej nie pomagać.", + "finishesQuest": 1 + } + ] + }, + { + "id": "kaverin", + "name": "Starzy znajomi?", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Spotkałem Kaverin w Remgard, najwyraźniej starego znajomego Unzela, który żyje w okolicach Fallhaven." + }, + { + "progress": 20, + "logText": "Kaverin chce, żebym dostarczył wiadomość do Unzela." + }, + { + "progress": 21, + "logText": "Odmówiłem Kaverinowi.", + "finishesQuest": 1 + }, + { + "progress": 22, + "logText": "Zgodziłem się dostarczyć wiadomość." + }, + { + "progress": 25, + "logText": "Kaverin dał mi list, który muszę dostarczyć Unzelowi." + }, + { + "progress": 30, + "logText": "Dostarczyłem wiadomość do Unzela. Powinienem wrócić do Kaverin w Remgard." + }, + { + "progress": 40, + "logText": "Kaverin był wdzięczny za transport.", + "rewardExperience": 10000 + }, + { + "progress": 45, + "logText": "W zamian, Kaverin dał mi starą mapę. Najwidoczniej prowadzi ona do kryjówki Vacora." + }, + { + "progress": 60, + "logText": "Kaverin był wściekły faktem że zabiłem Unzela, a pomogłem Vacorowi. Zaatakował mnie. Powinienem wrócić do Vacora, kiedy zabije Kaverina." + }, + { + "progress": 70, + "logText": "Kaverin miał przy sobie zapieczętowaną wiadomość. Vacor natychmiast rozpoznał pieczęć i bardzo się nią zainteresował." + }, + { + "progress": 75, + "logText": "Oddałem Vacorowi wiadomość Kaverina. W zamian, Vacor dał mi starą mapę do jego kryjówki.", + "rewardExperience": 10000 + }, + { + "progress": 90, + "logText": "Powinienem znaleźć kryjówkę Vacora, na drodze na zachód od byłego więzienia Flagstone, południowy zachód Fallhaven." + }, + { + "progress": 100, + "logText": "Znalazłem kryjówkę Vacora.", + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw-pl/questlist_v068.json b/AndorsTrail/res/raw-pl/questlist_v068.json new file mode 100644 index 000000000..392fe7724 --- /dev/null +++ b/AndorsTrail/res/raw-pl/questlist_v068.json @@ -0,0 +1,211 @@ +[ + { + "id": "farrik", + "name": "Nocna wizyta", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Farrik w gildii złodzieji powiedział mi o planie ucieczki jednego z ich więźniów.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Farrik w gildii złodzieji powiedział mi o szczegółach tego planu i zdecydowałem się mu pomóc. Kapitan straży ma problem z piciem. Plan jest taki, kucharz z gildii złodzieji przyrządzi specjalny miód, który powali z nóg kapitana straży. Możliwe, że będe musiał przekupić kapitana straży.", + "finishesQuest": 0 + }, + { + "progress": 25, + "logText": "Mam specjalny miód dla kapitana straży.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Powiedziałem Farrikowi, że nie do końca zgadzam się z jego planem. Mogę powiedzieć strażom o ich niecnym planie.", + "finishesQuest": 0 + }, + { + "progress": 32, + "logText": "Dałem specjalny miód kapitanowi strażników.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Powiedziałem kapitanowi o planie uwolnienia ich więźnia przez gildie złodzieji.", + "finishesQuest": 0 + }, + { + "progress": 50, + "logText": "Kapitan straży chcę, abym powiedział złodziejom, że dzisiejszej nocy strażników będzie mniej niż zwykle. Może uda nam sie złapać paru z nich.", + "finishesQuest": 0 + }, + { + "progress": 60, + "logText": "Udało mi się przekupić kapitana, żeby wypił specjalny miód. Powinien być nie przytomny, aż do rana dzięki czemu będę mógł uwolnić więźnia.", + "finishesQuest": 0 + }, + { + "progress": 70, + "logText": "Farrik wynagrodził mnie za pomoc gildii złodzieji.", + "rewardExperience": 1500, + "finishesQuest": 1 + }, + { + "progress": 80, + "logText": "Powiedziałem Farrikowi, że strażników dzisiejszej nocy będzie mniej.", + "finishesQuest": 0 + }, + { + "progress": 90, + "logText": "Kapitan strażników podziękował mi za wykonanie planu dzięki, któremu złapali złodzieji. Powie dobre słowo o mnie innym strażnikom.", + "rewardExperience": 1700, + "finishesQuest": 1 + } + ] + }, + { + "id": "lodar", + "name": "Zaginiona potka", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Powinienem znaleźć twórcę potków Lodara. Umar z gildii złodzieji powiedział mi, że będe musiał powiedzieć słowa w odpowiedniej kolejności jeśli chce dotrzeć do kryjówki Lodara.", + "finishesQuest": 0 + }, + { + "progress": 15, + "logText": "Umar mówił, że musze znaleźć Ogama w Vilegard. Ogam zna odpowiednie słowa, które pomogą mi dotrzeć do kryjówki Lodara.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Odwiedziłem Ogama w południowo zachodnim Vilegard. Mówił zagadkami. Ledwo wyłapałem jakieś szczegóły, kiedy zapytałem o kryjówkę Lodara. 'Między Cieniem, a Światłością. Skalne otoczenie.' i słowa 'Blask Cieni.' były zdaniami, które wtedy powiedział. Nie mam pojęcia co to znaczy.", + "finishesQuest": 0 + } + ] + }, + { + "id": "vilegard", + "name": "Zaufać nieznajomemu", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Mieszkańcy Vilegard są bardzo podejrzliwi do ludzi z zewnątrz. Powiedziano mi, żebym się spotkał z Jolnorem w kaplicy Vilegard, jeśli chcę zyskać zaufanie.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Rozmawiałem z Jolnor w kaplicy Vilegard. Zasugerował, bym pomógł trzem ludziom w tej wiosce, żeby zyskać zaufanie reszty. Muszę pomóc Kaori, Wrye i Jolnorowi w Vilegard.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Pomogłem wszystkim trzem. Teraz mieszkańcy Vilegard powinni mi ufać nieco bardziej.", + "rewardExperience": 2100, + "finishesQuest": 1 + } + ] + }, + { + "id": "kaori", + "name": "Sprawy Kaori", + "showInLog": 1, + "stages": [ + { + "progress": 5, + "logText": "Jolnor z kaplicy Vilegard chciał, abym porozmawiał z Kaori w północnym Vilegard, żeby sprawdzić czy nie potrzebuje pomocy.", + "finishesQuest": 0 + }, + { + "progress": 10, + "logText": "Kaori w północnym Vilegard chcę, żeby jej przynieść 10 potków bonemeal.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Przyniosłem 10 bonemeal dla Kaori.", + "rewardExperience": 520, + "finishesQuest": 1 + } + ] + }, + { + "id": "wrye", + "name": "Przyczyn może być wiele", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Jolnor z kaplicy Vilegard chce, abym porozmawiał z Wrye w północnym Vilegard. Jakiś czas tamu straciła syna.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Wrye w północnym Vilegard powiedziała, że jej syn Rincel zaginął. Domyśla się, że nie żyje, bądź jest ciężko ranny.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Wrye uważa, że królewscy strażnicy z Feygard są zamieszani w zaginięcie jej syna, możliwe, że wzięli go do wojska.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Wrye chcę, bym znalazł wskazówki co do tego co się stało z jej synem.", + "finishesQuest": 0 + }, + { + "progress": 41, + "logText": "Powinienem rozejrzeć się w tutejszej tawernie i w tawernie na północ stąd.", + "rewardExperience": 200, + "finishesQuest": 0 + }, + { + "progress": 42, + "logText": "Słyszałem o chłopcu, który jakiś czas temu był w tawernie spieniony kufel. Ale opuścił ją idąc na zachód.", + "finishesQuest": 0 + }, + { + "progress": 80, + "logText": "Na północnym zachodzie od Vilegard znalazłem człowieka, który z kolei znalazł Rincela walczącego z jakimiś potworami. Rincel opuścił Vilegard z własnej woli, żeby zobaczyć miasto Feygard. Muszę wrócić do Wrye w północnym Vilegard i powiedzieć jej co się stało z jej synem.", + "finishesQuest": 0 + }, + { + "progress": 90, + "logText": "Powiedziałem Wrye prawdę o zaginięciu jej syna.", + "rewardExperience": 520, + "finishesQuest": 1 + } + ] + }, + { + "id": "jolnor", + "name": "Szpiedzy w Spienionym", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Jolnor z kaplicy w Vilegard opowiedział o strażnikach przed tawerną spieniony kufel, według niego to królewscy szpiedzy z Feygard. Chcę, aby ten strażnik zniknął, obojętnie jakim sposobem. Ta tawerna jest na północ od Vilegard.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Udało mi się przekonać strażnika o jego odejściu, gdy skończy się jego zmiana.", + "finishesQuest": 0 + }, + { + "progress": 21, + "logText": "Zacząłem walczyć ze strażnikiem. Powinienem przynieść pierścień królewskiego gwardzisty Jolnorowi, żeby mu udowodnić, że strażnika już nie ma.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Powiedziałem Jolnorowi, że strażnika już nie ma.", + "rewardExperience": 630, + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw-pl/questlist_v069.json b/AndorsTrail/res/raw-pl/questlist_v069.json new file mode 100644 index 000000000..c74d729ec --- /dev/null +++ b/AndorsTrail/res/raw-pl/questlist_v069.json @@ -0,0 +1,368 @@ +[ + { + "id": "bwm_agent", + "name": "Agent i Bestia", + "showInLog": 1, + "stages": [ + { + "progress": 1, + "logText": "Spotkałem człowieka szukającego pomocy dla osady, 'Góry Blackwater'. Nagle jego osada została zaatakowana przez potwory i bandytów i potrzebują pomocy z zewnątrz." + }, + { + "progress": 5, + "logText": "Zgodziłem się pomóc temu człowiekowi i Górze Blackwater w rozprawieniu się z ich problemem." + }, + { + "progress": 10, + "logText": "Ten człowiek powiedział, żebym spotkał się z nim po drugiej stronie zawalonej kopalni. On będzie się czołgać szybem, a ja zejdę w dół do ciemnej opuszconej kopalni." + }, + { + "progress": 20, + "logText": "Udało mi się przejść przez tą ciemną opuszczoną kopalnie i spotkać tego człowieka po drugiej stronie. Wydawał się bardzo zaniepokojony, jak mówił mi, że gdy opuszczę kopalnie mam iść prosto na wschód. Powinenem spotkać tego człowieka u podnóży góry na wschodzie." + }, + { + "progress": 25, + "logText": "Usłyszałem opowieść o Prim i Górze Blackwater osadach, które walczą przeciwko sobie." + }, + { + "progress": 30, + "logText": "Powinienem podążać scieżką, która prowadzi do osady Blackwater." + }, + { + "progress": 40, + "logText": "Znów spotkałem tego człowieka w drodze na szczyt. Powinienem kontynuuować moją wędrówkę w górę." + }, + { + "progress": 50, + "logText": "Dotarłem na zaśnieżoną część Góry Blackwater. Ten człowiek znów powiedział, żebym szedł dalej w górę. Osada Blackwater jest już blisko." + }, + { + "progress": 60, + "logText": "Dotarłem do osady Blackwater. Powinienem porozmawiać z ich mistrzem bitewnym, Harlennem." + }, + { + "progress": 65, + "logText": "Rozmawiałem z Harlenn z Blackwater. Pozornie osada jest atakowana przez pewną liczbę potworów, yeti i białe smoki. Na dodatek są atakowani przez ludzi z Prim." + }, + { + "progress": 66, + "logText": "Harlenn, uważa, że ludzie z Prim mają coś wspólnego z tymi atakami." + }, + { + "progress": 70, + "logText": "Harlenn chce, abym przekazał wiadomość Guthberedowi z Prim. Albo oni skończą z atakami na Blackwater, albo my się nimi zajmiemy. Muszę porozmawiać z Guthberedem w Prim." + }, + { + "progress": 80, + "logText": "Guthbered zaprzecze, że on i jego ludzie stoją za atakami na osadę Blackwater. Muszę pogadać z Harlennem" + }, + { + "progress": 90, + "logText": "Harlenn jest pewny, że to oni stoją za atakami." + }, + { + "progress": 95, + "logText": "Harlenn prosi, żebym znalazł jakieś dokumenty na to, jak i kiedy zaatakują ich wioskę. Powinienem poszukać wskazówek koło Guthbereda." + }, + { + "progress": 100, + "logText": "Znalazłem plany o rekrutowaniu najemników i ataki na osadę Blackwater. Muszę natychmiast porozmawiać z Harlennem." + }, + { + "progress": 110, + "logText": "Harlenn podziękował mi za te plany ataku.", + "rewardExperience": 1150 + }, + { + "progress": 120, + "logText": "Żeby zakończyć ataki na Blackwater, Harlenn chcę dokonać zamachu na Guthbereda." + }, + { + "progress": 130, + "logText": "Zacząłem walczyć z Guthberedem." + }, + { + "progress": 131, + "logText": "Powiedziałem Guthberedowi, że zostałem tu wysłany, żeby go zabić, ale pozwoliłem mu żyć. Był mi wdzięczny i opuścił Prim.", + "rewardExperience": 2100 + }, + { + "progress": 149, + "logText": "Powiedziałem Harlennowi że Guthbereda nie ma." + }, + { + "progress": 150, + "logText": "Harlenn podziękował mi za pomoc. Mam nadzieję, że ataki na osadę ustaną.", + "rewardExperience": 5000 + }, + { + "progress": 240, + "logText": "Jestem teraz zaufaną osobą w Blackwater i wszyscy powinny być skorzy do sprzedaży przedmiotów.", + "finishesQuest": 1 + }, + { + "progress": 250, + "logText": "Zdecydowałem się nie pomagać Blackwater.", + "finishesQuest": 1 + }, + { + "progress": 251, + "logText": "Odkąd pomagam Prim, Harlenn nie chce już ze mną rozmawiać.", + "finishesQuest": 1 + } + ] + }, + { + "id": "prim_innquest", + "name": "Dobrze wypoczęty", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Rozmawiałem z kucharką z Prim, u podnóża góry Blackwater. Jest tam pokój do wynajęcia, ale obecnie zajmowany przez Arghesta. Muszę z nim pogadać czy nadal będzie zajmował pokój. Kucharka wskazała mi południowy zachód od Prim." + }, + { + "progress": 20, + "logText": "Rozmawiałem z Arghest o pokoju na zapleczu. Nadal jest nim zainteresowany ma gdzie wygodnie odpoczywać. Ale mógłby z niego zrezygnować jeśli mu to zrekompensuje." + }, + { + "progress": 30, + "logText": "Arghest chcę, żebym przyniósł mu 5 butelek mleka. Prawdopodobnie znajdę mleko w większych wioskach." + }, + { + "progress": 40, + "logText": "Kupiłem mleko dla Arghest. Zgodził się na użyczenie swojego łóżka. Naraszczie będę mógł odpocząć. Powinienem porazmawiać z kucharką.", + "rewardExperience": 500 + }, + { + "progress": 50, + "logText": "Wytłumaczyłem kucharce, że mam zgode od Arghesta na używanie pokoju.", + "finishesQuest": 1 + } + ] + }, + { + "id": "prim_hunt", + "name": "Nieczyste intencje", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Tuż za zawaloną kopalnią, spotkałem człowieka z Prim. Błagał mnie o pomoc." + }, + { + "progress": 11, + "logText": "Wioska Prim potrzebuje pomocy od kogoś z zewnątrz, żeby poradzić sobie z atakami potworów i bandytów. Powinienem porozmawiać z Guthberedem z Prim jeśli chcę im pomóc." + }, + { + "progress": 15, + "logText": "Guthbered jest w ratuszu. To kamienny budynek w centrum miasta." + }, + { + "progress": 20, + "logText": "Rozmawiałem z Guthberedem o Prim. Prim jest regularnie atakowane przez osadę Blackwater." + }, + { + "progress": 25, + "logText": "Guthbered chcę, żebym poszedł na szczyt góry do Blackwater i zapytał ich mistrza bitewnego Harlenna (czy i dlaczego) przywołują golemy przeciwko Prim." + }, + { + "progress": 30, + "logText": "Rozmawiałem z Harlennem o atakach na Prim. Zaprzeczył jakoby osada Blackwater miała cokolwiek z tym wspólnego. Muszę pogadać z Guthberedem w Prim." + }, + { + "progress": 40, + "logText": "Guthbered nadal wierzy, że to oni stoją za atakami." + }, + { + "progress": 50, + "logText": "Guthbered chcę, abym znalazł jakieś dokumenty o planie większego ataku na Prim. Powinienem poszukać tych dokumentów koło Harlenna i jego świty, ale żeby nikt mnie nie przyłapał." + }, + { + "progress": 60, + "logText": "Znalazłem jakieś plany zawierające informacje o większym ataku na Prim. Muszę się rozmówić z Guthberedem niezwłocznie." + }, + { + "progress": 70, + "logText": "Guthbered podziękował mi za pomoc w znalezieniu dowodu o atakach przez Blackwater.", + "rewardExperience": 1150 + }, + { + "progress": 80, + "logText": "W celu zaprzestania tych ataków, Guthbered chce, abym zabił Harlenna w Blackwater." + }, + { + "progress": 90, + "logText": "Zacząłem walczyć z Harlennem." + }, + { + "progress": 91, + "logText": "Powiedziałem Harlennowi, że jestem tu po to by go zabić, ale pozwole mu żyć. Był mi bardzo wdzięczny i opuścił osadę.", + "rewardExperience": 2100 + }, + { + "progress": 99, + "logText": "Powiedziałem Guthberedowi, że Harlenn nie stanowi już problemu." + }, + { + "progress": 100, + "logText": "Guthbered podziękował mi za pomoc dla Prim. Miejmy nadzieję, że ataki ustąpią. Jako podziękowanie Guthbered dał mi parę przedmiotów i pozwolenie na wejście do świątyni w Blackwater.", + "rewardExperience": 5000 + }, + { + "progress": 140, + "logText": "Pokazałem podrobione pozwolenie strażnikowi, który mnie przepuścił." + }, + { + "progress": 240, + "logText": "Jestem teraz osobą zaufaną w Prim i wszystkie usługi powinny być teraz dla mnie odblokowane.", + "finishesQuest": 1 + }, + { + "progress": 250, + "logText": "Zdecydowałem się nie pomagać Prim.", + "finishesQuest": 1 + }, + { + "progress": 251, + "logText": "Odkąd pomagam Blackwater, Guthberedowi nie chcę już się ze mną gadać.", + "finishesQuest": 1 + } + ] + }, + { + "id": "kazaul", + "name": "Światło w tunelu", + "showInLog": 1, + "stages": [ + { + "progress": 8, + "logText": "Dostałem się do świątyni w Blackwater i znalazłem grupę magów prowadził ich człowiek o imieniu Throdna." + }, + { + "progress": 9, + "logText": "Throdna wydawał się kimś bardzo zainteresowany (lub czymś) zwanym Kazaul, w szczególności rytułałem z udziałem jego imienia." + }, + { + "progress": 10, + "logText": "Zgodziłem się pomóc Throdna znaleźć więcej informacji o rytuale poprzez znalezienie zagubionych kartek mówiących o szczególe rytuału. Powinienem poszukać tych zagubionych kartek po drodze w dół góry z Blackwater do Prim." + }, + { + "progress": 11, + "logText": "Muszę znaleźć dwie strony śpiewnika i trzy strony opisujące sam rytuał, i wrócić do Throdna kiedy znajde je wszystkie." + }, + { + "progress": 21, + "logText": "Znalazłem pierwszą część śpiewnika rytuału Kazuala." + }, + { + "progress": 22, + "logText": "Znalazłem drugą część śpiewnika rytuału Kazuala." + }, + { + "progress": 25, + "logText": "Znalazłem pierwszą część rytuału Kazuala." + }, + { + "progress": 26, + "logText": "Znalazłem drugą część rytuału Kazuala." + }, + { + "progress": 27, + "logText": "Znalazłem trzecią część rytuału Kazuala." + }, + { + "progress": 30, + "logText": "Throdna podziękował mi za znalezienie wszystkich części.", + "rewardExperience": 3600 + }, + { + "progress": 40, + "logText": "Throdna chcę położyć kres odradzania się Kazuali które zajęły miejscy u podnóży gór. U podnóża góry jest szczelina, którą należy zbadać." + }, + { + "progress": 41, + "logText": "Dał mi fiolkę oczyszczania ducha, którą Throdna chcę, abym zastosował ją w ich sanktuarium. Powinienem wrócić do Throdna, gdy dotrę i użyje tej fiolki w sanktuarium." + }, + { + "progress": 50, + "logText": "W sanktuarium u podnóży gór, spotkałem Kazuala strażnika. Dzięki recytowaniu rytuału, mogłem zmusić strażnika do zaatakowania mnie." + }, + { + "progress": 60, + "logText": "Oczyściłem sanktuarium ze złych duchów.", + "rewardExperience": 3200 + }, + { + "progress": 100, + "logText": "Oczekiwałem na jakąś specjalną nagrodę od Throdna za pomoc z rytuałem i oczyszczenie sanktuarium. Ale on bardziej był zajęty studiowaniem o Kazaulach. Nie mogłem zrozumieć nic sensownego.", + "finishesQuest": 1 + } + ] + }, + { + "id": "bwm_wyrms", + "name": "Żadnej słabości", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Herec z drugiego piętra w osadzie Blackwater prowadzi badania nad białymi smokami. Chce, bym przyniósł mu 5 pazurów białych smoków, żeby mógł kontynuuować badania. Tylko niektóre smoki mają takie pazury. Będe musiał zabić parę rodzaji, żeby wiedzieć jakie to." + }, + { + "progress": 20, + "logText": "Oddałem 5 pazurów dla Hereca." + }, + { + "progress": 30, + "logText": "Herec skończył robić potke likwidującą zmęczenie, która będzie przydatna przy walce ze smokami w przyszłości.", + "rewardExperience": 1500, + "finishesQuest": 1 + } + ] + }, + { + "id": "bjorgur_grave", + "name": "Wybudzony z drzemki", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Bjorgur w Prim uważa, że coś zakłóca spokój grobie jego rodziców, na południow zachód od Prim, tuż za kopalnią Elma." + }, + { + "progress": 15, + "logText": "Bjorgur chcę, żebym sprawdził grób, i upewnić się, że jego rodzinny sztylet nadal leży bezpiecznie w grobowcu." + }, + { + "progress": 20, + "logText": "Fulus z Prim zainteresował się wejściem w posiadanie rodzinnego sztyletu Bjorgura." + }, + { + "progress": 30, + "logText": "Spotkałem człowieka, który miał przy sobie dziwnie wyglądający sztylet. Musiał ukraść ten sztylet z grobowca." + }, + { + "progress": 40, + "logText": "Włożyłem sztylet z powrotem do grobowca. Niespokojni nieumarli są teraz bardziej spokojni, dziwnie spokojni.", + "rewardExperience": 200 + }, + { + "progress": 50, + "logText": "Bjorgur podziękował za pomoc. Powiedział, że powinienem poszukać też jego krewnych w Feygard.", + "rewardExperience": 1100, + "finishesQuest": 1 + }, + { + "progress": 51, + "logText": "Powiedziałem Fulusowi, że pomogłem Bjorgurowi zwrócić jego sztylet na jego właściwe miejsce." + }, + { + "progress": 60, + "logText": "Oddałem sztylet Fulusowi. Podziękował mi i wynagrodził sowicie.", + "rewardExperience": 1700, + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/actorconditions_v0610.json b/AndorsTrail/res/raw-pt-rBR/actorconditions_v0610.json new file mode 100644 index 000000000..d41b80f59 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/actorconditions_v0610.json @@ -0,0 +1,27 @@ +[ + { + "id": "chaotic_grip", + "iconID": "actorconditions_1:96", + "name": "Aperto caótico", + "category": 1, + "abilityEffect": { + "increaseBlockChance": -10, + "increaseDamageResistance": -1 + } + }, + { + "id": "chaotic_curse", + "iconID": "actorconditions_1:89", + "name": "Maldição caótica", + "category": 1, + "abilityEffect": { + "increaseMaxAP": -1, + "increaseAttackDamage": { + "min": -1, + "max": -1 + }, + "increaseBlockChance": -10, + "increaseDamageResistance": -1 + } + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/actorconditions_v0611.json b/AndorsTrail/res/raw-pt-rBR/actorconditions_v0611.json new file mode 100644 index 000000000..b990f1dc2 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/actorconditions_v0611.json @@ -0,0 +1,78 @@ +[ + { + "id": "contagion", + "iconID": "actorconditions_1:58", + "name": "Contágio por Insetos", + "category": 3, + "abilityEffect": { + "increaseAttackChance": -10, + "increaseAttackDamage": { + "min": -1, + "max": -1 + } + } + }, + { + "id": "blister", + "iconID": "actorconditions_1:15", + "name": "Febril", + "category": 3, + "roundEffect": { + "visualEffectID": 0, + "increaseCurrentHP": { + "min": -1, + "max": -1 + } + } + }, + { + "id": "stunned", + "iconID": "actorconditions_1:95", + "name": "Assustado", + "category": 2, + "abilityEffect": { + "increaseMaxAP": -2, + "increaseMoveCost": 8, + "increaseAttackCost": 5 + } + }, + { + "id": "focus_dmg", + "iconID": "actorconditions_1:70", + "name": "Dano na precisão", + "category": 1, + "isPositive": 1, + "abilityEffect": { + "increaseAttackCost": 1, + "increaseAttackDamage": { + "min": 3, + "max": 3 + } + } + }, + { + "id": "focus_ac", + "iconID": "actorconditions_1:98", + "name": "Precisão", + "category": 1, + "isPositive": 1, + "abilityEffect": { + "increaseAttackCost": 1, + "increaseAttackChance": 40 + } + }, + { + "id": "poison_irdegh", + "iconID": "actorconditions_1:60", + "name": "Veneno Irdegh", + "category": 3, + "isStacking": 1, + "roundEffect": { + "visualEffectID": 2, + "increaseCurrentHP": { + "min": -1, + "max": -1 + } + } + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/actorconditions_v0611_2.json b/AndorsTrail/res/raw-pt-rBR/actorconditions_v0611_2.json new file mode 100644 index 000000000..3a396f538 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/actorconditions_v0611_2.json @@ -0,0 +1,97 @@ +[ + { + "id": "rotworm", + "iconID": "actorconditions_1:82", + "name": "Podridão de Kazaul", + "category": 2, + "abilityEffect": { + "increaseMaxHP": -15, + "increaseMaxAP": -3, + "increaseDamageResistance": -1 + } + }, + { + "id": "shadowbless_str", + "iconID": "actorconditions_1:70", + "name": "Bênção de força da Sombra", + "category": 0, + "isPositive": 1, + "abilityEffect": { + "increaseAttackDamage": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "shadowbless_heal", + "iconID": "actorconditions_1:35", + "name": "Bênção de regeneração da Sombra", + "category": 0, + "isPositive": 1, + "roundEffect": { + "visualEffectID": 1, + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "shadowbless_acc", + "iconID": "actorconditions_1:98", + "name": "Bênção de precisão da Sombra", + "category": 0, + "isPositive": 1, + "abilityEffect": { + "increaseAttackChance": 30 + } + }, + { + "id": "shadowbless_guard", + "iconID": "actorconditions_1:91", + "name": "Bênção de proteção da Sombra", + "category": 0, + "isPositive": 1, + "abilityEffect": { + "increaseMaxHP": 30, + "increaseDamageResistance": 1 + } + }, + { + "id": "crit1", + "iconID": "actorconditions_1:89", + "name": "Hemorragia interna", + "category": 2, + "isStacking": 1, + "abilityEffect": { + "increaseAttackCost": 1, + "increaseAttackChance": -50, + "increaseAttackDamage": { + "min": -3, + "max": -3 + } + } + }, + { + "id": "crit2", + "iconID": "actorconditions_1:89", + "name": "Fratura", + "category": 2, + "isStacking": 1, + "abilityEffect": { + "increaseBlockChance": -50, + "increaseDamageResistance": -2 + } + }, + { + "id": "concussion", + "iconID": "actorconditions_1:80", + "name": "Contusão", + "category": 2, + "isStacking": 1, + "abilityEffect": { + "increaseAttackChance": -30 + } + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/actorconditions_v069.json b/AndorsTrail/res/raw-pt-rBR/actorconditions_v069.json new file mode 100644 index 000000000..59e16f0ff --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/actorconditions_v069.json @@ -0,0 +1,52 @@ +[ + { + "id": "bless", + "iconID": "actorconditions_1:41", + "name": "Benção", + "category": 0, + "isPositive": 1, + "abilityEffect": { + "increaseAttackChance": 5 + } + }, + { + "id": "poison_weak", + "iconID": "actorconditions_1:60", + "name": "Veneno Fraco", + "category": 3, + "roundEffect": { + "visualEffectID": 2, + "increaseCurrentHP": { + "min": -1, + "max": -1 + } + } + }, + { + "id": "str", + "iconID": "actorconditions_1:70", + "name": "Força", + "category": 2, + "isPositive": 1, + "abilityEffect": { + "increaseAttackDamage": { + "min": 2, + "max": 2 + } + } + }, + { + "id": "regen", + "iconID": "actorconditions_1:35", + "name": "Regeneração da Sombra", + "category": 0, + "isPositive": 1, + "roundEffect": { + "visualEffectID": 1, + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/actorconditions_v069_bwm.json b/AndorsTrail/res/raw-pt-rBR/actorconditions_v069_bwm.json new file mode 100644 index 000000000..094a590e5 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/actorconditions_v069_bwm.json @@ -0,0 +1,101 @@ +[ + { + "id": "speed_minor", + "iconID": "actorconditions_1:87", + "name": "Velocidade menor", + "category": 2, + "isPositive": 1, + "abilityEffect": { + "increaseMaxAP": 2 + } + }, + { + "id": "fatigue_minor", + "iconID": "actorconditions_1:14", + "name": "Fadiga menor", + "category": 2, + "abilityEffect": { + "increaseMoveCost": 2, + "increaseAttackCost": 2, + "increaseAttackDamage": { + "min": -1, + "max": -1 + } + } + }, + { + "id": "feebleness_minor", + "iconID": "actorconditions_1:74", + "name": "Fraqueza de arma menor", + "category": 1, + "abilityEffect": { + "increaseAttackDamage": { + "min": -3, + "max": -3 + } + } + }, + { + "id": "bleeding_wound", + "iconID": "actorconditions_2:0", + "name": "Ferida sangrando", + "category": 3, + "isStacking": 1, + "roundEffect": { + "visualEffectID": 0, + "increaseCurrentHP": { + "min": -1, + "max": -1 + } + } + }, + { + "id": "rage_minor", + "iconID": "actorconditions_1:90", + "name": "Fúria menor", + "category": 1, + "isPositive": 1, + "abilityEffect": { + "increaseMaxHP": 35, + "increaseAttackChance": 60, + "increaseBlockChance": -90, + "increaseDamageResistance": -1 + } + }, + { + "id": "blackwater_misery", + "iconID": "actorconditions_1:58", + "name": "Tormento das Águas Negras", + "category": 3, + "abilityEffect": { + "increaseAttackCost": 1, + "increaseAttackChance": -50, + "increaseCriticalSkill": -50 + } + }, + { + "id": "intoxicated", + "iconID": "actorconditions_2:1", + "name": "Intoxicado", + "category": 1, + "isPositive": 1, + "abilityEffect": { + "increaseMaxHP": 15, + "increaseAttackCost": 1, + "increaseAttackChance": -30, + "increaseAttackDamage": { + "min": 4, + "max": 4 + } + } + }, + { + "id": "dazed", + "iconID": "actorconditions_1:65", + "name": "Atordoado", + "category": 1, + "abilityEffect": { + "increaseBlockChance": -40 + } + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_ailshara.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_ailshara.json new file mode 100644 index 000000000..d70272a41 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_ailshara.json @@ -0,0 +1,302 @@ +[ + { + "id": "ailshara", + "replies": [ + { + "nextPhraseID": "ailshara_completed_y_1", + "requires": { + "progress": "feygard_shipment:82" + } + }, + { + "nextPhraseID": "ailshara_completed_n_1", + "requires": { + "progress": "feygard_shipment:80" + } + }, + { + "nextPhraseID": "ailshara_deliver_1", + "requires": { + "progress": "feygard_shipment:35" + } + }, + { + "nextPhraseID": "ailshara_interested_1", + "requires": { + "progress": "feygard_shipment:25" + } + }, + { + "nextPhraseID": "ailshara_1" + } + ] + }, + { + "id": "ailshara_completed_y_1", + "message": "Olá novamente meu amigo na Sombra. Como posso ajudá-lo?", + "replies": [ + { + "text": "Deixe-me ver o que você tem para negociar.", + "nextPhraseID": "S" + } + ] + }, + { + "id": "ailshara_completed_n_1", + "message": "Ugh, é você. O que você quer?", + "replies": [ + { + "text": "Deixe-me ver o que você tem para negociar.", + "nextPhraseID": "S" + } + ] + }, + { + "id": "ailshara_1", + "message": "Psst, hey. Interessado em fazer alguma negociação? Estou sempre à procura de adquirir ... bem, itens alheios ...", + "replies": [ + { + "text": "Claro, deixe-me ver o que você tem.", + "nextPhraseID": "S" + }, + { + "text": "Os itens alheios?", + "nextPhraseID": "ailshara_2" + } + ] + }, + { + "id": "ailshara_2", + "message": "Ah, sim. Veja você, esses guardas de patrulha Feygard levam algumas coisas realmente interessantes. Eles parecem não se importar muito se alguns de seus embarques .. bem, desaparecem.", + "replies": [ + { + "text": "Ok, deixe-me ver o que você tem.", + "nextPhraseID": "S" + }, + { + "text": "Eu realmente não deve se envolver nisso. Tchau.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "ailshara_interested_1", + "message": "Psst, ei! Eu vi você falando com Gandoren, e aconteceu de eu perceber que você trocou alguns itens. Algo interessante?", + "replies": [ + { + "text": "Não importa que, deixe-me ver o que você tem que trocar.", + "nextPhraseID": "S" + }, + { + "text": "É melhor eu não falar sobre isso.", + "nextPhraseID": "ailshara_interested_2" + }, + { + "text": "Gandoren especificamente me pediu para não falar com você sobre isso.", + "nextPhraseID": "ailshara_interested_2" + }, + { + "text": "Sim, Gandoren quer-me para entregar alguns equipamentos para Feygard. Você quer uma parte do negócio?", + "nextPhraseID": "ailshara_interested_4" + } + ] + }, + { + "id": "ailshara_interested_2", + "message": "Ah, claro. Gandoren não gostaria que eu tivesse oportunidade para atrapalhar seu negócio. Presumo que o está ajudando a entregar os itens em algum lugar. Diga-me isso, o que ele prometer-lhe em troca? Ouro? Honra? Não?", + "replies": [ + { + "text": "Agora que você mencionou, ele não chegou a dizer que haveria uma recompensa.", + "nextPhraseID": "ailshara_interested_3" + }, + { + "text": "Eu estou fazendo isso para a glória de Feygard.", + "nextPhraseID": "ailshara_fg_1" + }, + { + "text": "Auxiliar Feygard parece ser a coisa certa a fazer.", + "nextPhraseID": "ailshara_fg_1" + }, + { + "text": "O que você propõe, ao invés?", + "nextPhraseID": "ailshara_interested_4" + } + ] + }, + { + "id": "ailshara_interested_3", + "message": "Como de costume, Feygard mantém todas as suas riquezas para si. E se eu lhe dissesse que haveria uma maneira para que você ganhar com tudo isso também?", + "replies": [ + { + "text": "Parece interessante, por favor, continue.", + "nextPhraseID": "ailshara_interested_4" + }, + { + "text": "Eu não tenho nenhum problema em ajudar Feygard sem pensar em nenhum ganho pessoal.", + "nextPhraseID": "ailshara_fg_1" + }, + { + "text": "É melhor eu não me envolver nisso, adeus.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "ailshara_fg_1", + "message": "Pela Sombra, você soa como um daqueles esnobes enganosos de Feygard.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ailshara_fg_2" + } + ] + }, + { + "id": "ailshara_fg_2", + "message": "a Sombra o ajude, filho. Você deve questionar-se se você realmente está fazendo a escolha certa aqui." + }, + { + "id": "ailshara_interested_4", + "message": "Deixe-me dizer-lhe o meu plano. Como você deve saber, todo mundo acredita que vai haver algum conflito entre os esnobes enganosos de Feygard e as pessoas gloriosas da Cidade Nor.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ailshara_interested_5" + } + ] + }, + { + "id": "ailshara_interested_5", + "message": "Qualquer ajuda que pode trazer para a Nor City neste assunto é bem-vinda. Esses itens que Gandoren lhe deu seriam útil para o nosso povo nas terras do sul.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "feygard_shipment", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "ailshara_interested_6" + } + ] + }, + { + "id": "ailshara_interested_6", + "message": "Se você entregar esses itens aos nossos aliados em Vilegard, a Sombra certamente estaria mais favorável a você.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ailshara_interested_7" + } + ] + }, + { + "id": "ailshara_interested_7", + "message": "Dessa forma, as pessoas poderiam recuperar um pouco das riquezas que Feygard roubou de todos nós.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ailshara_interested_8" + } + ] + }, + { + "id": "ailshara_interested_8", + "message": "Se você realmente está andando na Sombra, então entregue esses itens para o ferreiro em Vilegard. Ele será capaz de fazer um bom uso delas. Ele também pode ter alguma outra tarefa para você.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "feygard_shipment", + "value": 35 + } + ], + "replies": [ + { + "text": "Vou ver o que posso fazer.", + "nextPhraseID": "ailshara_interested_9" + }, + { + "text": "Não. Eu vou ajudar Feygard ao invés.", + "nextPhraseID": "ailshara_fg_1" + }, + { + "text": "Que seja, eu escolho o meu próprio caminho.", + "nextPhraseID": "ailshara_interested_9" + } + ] + }, + { + "id": "ailshara_interested_9", + "message": "A Sombra esteja com você. Que a Sombra o oriente sobre os caminhos nebulosos que você anda." + }, + { + "id": "ailshara_deliver_1", + "message": "Olá novamente. Será que você entregou esses itens para o ferreiro em Vilegard?", + "replies": [ + { + "text": "Sim, está feito.", + "nextPhraseID": "ailshara_deliver_2_s", + "requires": { + "progress": "feygard_shipment:55" + } + }, + { + "text": "Não importa, deixe-me ver o que você tem que trocar.", + "nextPhraseID": "S" + }, + { + "text": "Não. Eu vou ajudar Feygard ao invés.", + "nextPhraseID": "ailshara_fg_1" + }, + { + "text": "Você pode me dizer novamente o que eu deveria fazer?", + "nextPhraseID": "ailshara_interested_4" + }, + { + "text": "Ainda não.", + "nextPhraseID": "ailshara_interested_9" + } + ] + }, + { + "id": "ailshara_deliver_2_s", + "replies": [ + { + "nextPhraseID": "ailshara_deliver_3", + "requires": { + "progress": "feygard_shipment:81" + } + }, + { + "nextPhraseID": "ailshara_deliver_2" + } + ] + }, + { + "id": "ailshara_deliver_2", + "message": "Bom. Você também deve tentar convencer Gandoren a pensar que você o ajudou." + }, + { + "id": "ailshara_deliver_3", + "message": "Excelente! Você realmente andar com a Sombra, meu amigo. Estou feliz em saber que existem pelo menos algumas pessoas decentes ainda por aí.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "feygard_shipment", + "value": 82 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "ailshara_delivered_1" + } + ] + }, + { + "id": "ailshara_delivered_1", + "message": "Sua ajuda será muito apreciada pelo povo de Nor City, e você será bem-vindo entre nós." + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_algangror.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_algangror.json new file mode 100644 index 000000000..03c2f25e6 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_algangror.json @@ -0,0 +1,1498 @@ +[ + { + "id": "algangror", + "replies": [ + { + "nextPhraseID": "algangror_fight_6", + "requires": { + "progress": "remgard2:35" + } + }, + { + "nextPhraseID": "algangror_fight_3", + "requires": { + "progress": "remgard2:30" + } + }, + { + "nextPhraseID": "algangror_return_d1", + "requires": { + "progress": "fiveidols:100" + } + }, + { + "nextPhraseID": "algangror_cmp5", + "requires": { + "progress": "fiveidols:70" + } + }, + { + "nextPhraseID": "algangror_cmp1", + "requires": { + "progress": "fiveidols:61" + } + }, + { + "nextPhraseID": "algangror_story1", + "requires": { + "progress": "fiveidols:51" + } + }, + { + "nextPhraseID": "algangror_task2_ret1", + "requires": { + "progress": "fiveidols:37" + } + }, + { + "nextPhraseID": "algangror_task2_7", + "requires": { + "progress": "fiveidols:20" + } + }, + { + "nextPhraseID": "algangror_return_d1", + "requires": { + "progress": "algangror:101" + } + }, + { + "nextPhraseID": "algangror_return_d1", + "requires": { + "progress": "algangror:100" + } + }, + { + "nextPhraseID": "algangror_return_c1", + "requires": { + "progress": "algangror:21" + } + }, + { + "nextPhraseID": "algangror_return_3", + "requires": { + "progress": "algangror:20" + } + }, + { + "nextPhraseID": "algangror_return_1", + "requires": { + "progress": "algangror:15" + } + }, + { + "nextPhraseID": "algangror_1" + } + ] + }, + { + "id": "algangror_1", + "message": "Oh, uma criança. há há, que legal. Diga-me, o que o traz aqui?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "algangror", + "value": 10 + } + ], + "replies": [ + { + "text": "Eu estou procurando meu irmão.", + "nextPhraseID": "algangror_2a" + }, + { + "text": "Eu só entrei aqui para ver se há alguma grana que eu pudesse obter aqui.", + "nextPhraseID": "algangror_2b" + }, + { + "text": "Eu sou um aventureiro, procurando ajudar quem precisa de ajuda.", + "nextPhraseID": "algangror_2c" + }, + { + "text": "Eu prefiro não dizer.", + "nextPhraseID": "algangror_2d" + }, + { + "text": "Estou enviado por Jhaeld para acabar com o que quer que você esteja fazendo com o povo de Remgard.", + "nextPhraseID": "algangror_fight_1", + "requires": { + "progress": "remgard2:21" + } + } + ] + }, + { + "id": "algangror_2a", + "message": "Fugindo, não é? He he.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_3" + } + ] + }, + { + "id": "algangror_2b", + "message": "Ah, claro, você acha que pode simplesmente pegar qualquer coisa e reivindicaro como seu?", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_3" + } + ] + }, + { + "id": "algangror_2c", + "message": "Quão nobre. Talvez você possa ser de utilidade para mim.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_3" + } + ] + }, + { + "id": "algangror_2d", + "message": "Inteligente. Eu gosto disso.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_3" + } + ] + }, + { + "id": "algangror_3", + "message": "Diga-me, agora que você entrou nesta casa, você estaria disposto a me ajudar com um pequeno... problema?", + "replies": [ + { + "text": "Claro, qual é o problema?", + "nextPhraseID": "algangror_4" + }, + { + "text": "Talvez, isso depende de qual seja o problema.", + "nextPhraseID": "algangror_4" + }, + { + "text": "Talvez, isso depende de que tipo de recompensa que você esteja falando.", + "nextPhraseID": "algangror_3c" + }, + { + "text": "De jeito nenhum. Você está agindo maneira muito assustadora para mim.", + "nextPhraseID": "algangror_decline_1" + } + ] + }, + { + "id": "algangror_3c", + "message": "Recompensa? Não, não, eu não tenho nada para lhe dar, infelizmente.", + "replies": [ + { + "text": "Eu acho que você também não irá obter quaisquer ajuda.", + "nextPhraseID": "X" + }, + { + "text": "Certo, qual é o problema que você quer ajuda?", + "nextPhraseID": "algangror_4" + }, + { + "text": "Algo parece estar errado aqui. É melhor eu não me envolver nisso.", + "nextPhraseID": "algangror_decline_1" + } + ] + }, + { + "id": "algangror_4", + "message": "Veja você, eu tenho esse problema com ... hã ... vermes.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_5" + } + ] + }, + { + "id": "algangror_5", + "message": "Sempre se esgueirando, sempre tentando causar algum dano.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_6" + } + ] + }, + { + "id": "algangror_6", + "message": "Felizmente, eu consegui capturar alguns deles, e tranquei-os no meu porão.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_7" + } + ] + }, + { + "id": "algangror_7", + "message": "Agora, eu não posso lidar com eles me por causa de certas... questões.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_8" + } + ] + }, + { + "id": "algangror_8", + "message": "Isso é onde você vem dentro Você estaria disposto a ... hã ... lidar com esses roedores para mim?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "algangror", + "value": 11 + } + ], + "replies": [ + { + "text": "Claro, alguns roedores, eu posso lidar com isso.", + "nextPhraseID": "algangror_9" + }, + { + "text": "Não tem problema, eu vou estar de volta depois que eu os exterminar.", + "nextPhraseID": "algangror_9" + }, + { + "text": "Alguma coisa parece errada por aqui. É melhor eu não me envolver nisso.", + "nextPhraseID": "algangror_decline_1" + } + ] + }, + { + "id": "algangror_decline_1", + "message": "Ah sim. Afina de contas, você é apenas uma criança e eu posso entender que tal tarefa seria demais para você. He He.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "algangror", + "value": 100 + } + ] + }, + { + "id": "algangror_9", + "message": "Explêndido. Volte para mim com alguma prova de que eles foram exterminados.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "algangror", + "value": 15 + } + ] + }, + { + "id": "algangror_return_1", + "message": "Você voltou. Você lidou com todos aqueles .. hã .. roedores no meu porão?", + "replies": [ + { + "text": "Sim, eles estão todos mortos.", + "nextPhraseID": "algangror_return_2", + "requires": { + "item": { + "itemID": "algangror_rat", + "quantity": 6, + "requireType": 0 + } + } + }, + { + "text": "Eu ainda estou trabalhando nisso. Tchau.", + "nextPhraseID": "X" + }, + { + "text": "Não vou fazer a sua tarefa estúpida, não conte comigo.", + "nextPhraseID": "algangror_decline_1" + }, + { + "text": "Eu decidi não ajudá-la com seus roedores.", + "nextPhraseID": "algangror_decline_1" + }, + { + "text": "Fui enviado por Jhaeld para acabar com tudo o que você fez para o povo de Remgard.", + "nextPhraseID": "algangror_fight_1", + "requires": { + "progress": "remgard2:21" + } + } + ] + }, + { + "id": "algangror_return_2", + "message": "He He. Aposto que você mostrou o que podia fazer a eles. Excelente. Obrigado por ... hã ... me ajudar.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "algangror", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_return_3" + } + ] + }, + { + "id": "algangror_return_3", + "message": "Esses roedores realmente me incomodavam. Ainda bem que eu consegui pegar alguns deles. He He.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_return_4" + } + ] + }, + { + "id": "algangror_return_4", + "message": "Agora, não há mais nada que eu queira falar contigo. Você já foi para a cidade de Remgard em suas viagens?", + "replies": [ + { + "text": "Sim, eu estive lá.", + "nextPhraseID": "algangror_remgard_2" + }, + { + "text": "Não, onde é isso?", + "nextPhraseID": "algangror_remgard_1" + } + ] + }, + { + "id": "algangror_return_c1", + "message": "Você voltou. Obrigado por me ajudar com a meu ... hã ... problema com roedores anteriormente.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_return_c2" + } + ] + }, + { + "id": "algangror_return_c2", + "replies": [ + { + "nextPhraseID": "algangror_told_1", + "requires": { + "progress": "remgard2:10" + } + }, + { + "nextPhraseID": "algangror_return_c4", + "requires": { + "progress": "remgard:75" + } + }, + { + "nextPhraseID": "algangror_return_c3" + } + ] + }, + { + "id": "algangror_return_c3", + "message": "Espero que vá dar uma lição nesses *outros* ratos." + }, + { + "id": "algangror_return_c4", + "message": "Diga-me: você parece ser uma pessoa de recursos. Você estaria interessado em ajudar-me com outra .. tarefa?", + "replies": [ + { + "text": "Depende da tarefa.", + "nextPhraseID": "algangror_task2_1" + }, + { + "text": "Claro.", + "nextPhraseID": "algangror_task2_1" + }, + { + "text": "Não agora.", + "nextPhraseID": "algangror_task2_d" + } + ] + }, + { + "id": "algangror_remgard_1", + "message": "Ah, não é longe daqui. Não importa realmente.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_remgard_2" + } + ] + }, + { + "id": "algangror_remgard_2", + "message": "Veja você, eu morava lá. Para encurtar a história, houveram certos ... hã ... mal-entendidos.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_remgard_3" + } + ] + }, + { + "id": "algangror_remgard_3", + "message": "Nesses dias, eu acho que eles estão me procurando, por algum motivo. Pessoalmente, não consigo descobrir o motivo. Mas eu acredito que eles estejão.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_remgard_4" + } + ] + }, + { + "id": "algangror_remgard_4", + "message": "Por causa de nosso anterior ... mal-entendido, eu acho que é melhor não descobrirem que eu estou aqui.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_remgard_5" + } + ] + }, + { + "id": "algangror_remgard_5", + "message": "Portanto, peço-lhe para não revelar meu paradeiro a eles.", + "replies": [ + { + "text": "Certo.", + "nextPhraseID": "algangror_remgard_6" + }, + { + "text": "(Mentira) Certo.", + "nextPhraseID": "algangror_remgard_6" + } + ] + }, + { + "id": "algangror_remgard_6", + "message": "Obrigado. Sob nenhuma circunstância você deve dizer a eles onde estou. Eles provavelmente irão tentar persuadi-lo a revelar a minha localização.", + "replies": [ + { + "text": "Certo.", + "nextPhraseID": "algangror_remgard_7" + } + ] + }, + { + "id": "algangror_remgard_7", + "message": "Sob nenhuma circunstância.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "algangror", + "value": 21 + } + ] + }, + { + "id": "algangror_return_d1", + "message": "Oh, é você de novo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_return_d2" + } + ] + }, + { + "id": "algangror_return_d2", + "message": "Você provavelmente deve sair antes de tropeçar em algo que possa ... hã ... quebrar. He he.", + "replies": [ + { + "text": "Fui enviado por Jhaeld para acabar com o que é que você fez para o povo de Remgard.", + "nextPhraseID": "algangror_fight_1", + "requires": { + "progress": "remgard2:21" + } + }, + { + "text": "Cuidado com a língua, bruxa.", + "nextPhraseID": "X" + }, + { + "text": "Você está certo, é melhor eu ir embora.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "algangror_fight_1", + "replies": [ + { + "nextPhraseID": "algangror_fight_2", + "requires": { + "progress": "algangror:100" + } + }, + { + "nextPhraseID": "algangror_fight_2", + "requires": { + "progress": "algangror:101" + } + }, + { + "nextPhraseID": "algangror_fight_1a", + "requires": { + "progress": "algangror:10" + } + }, + { + "nextPhraseID": "algangror_fight_2" + } + ] + }, + { + "id": "algangror_fight_1a", + "rewards": [ + { + "rewardType": 0, + "rewardID": "algangror", + "value": 101 + } + ], + "replies": [ + { + "nextPhraseID": "algangror_fight_2" + } + ] + }, + { + "id": "algangror_fight_2", + "replies": [ + { + "nextPhraseID": "algangror_fight_2a", + "requires": { + "progress": "fiveidols:10" + } + }, + { + "nextPhraseID": "algangror_fight_3" + } + ] + }, + { + "id": "algangror_fight_2a", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 100 + } + ], + "replies": [ + { + "nextPhraseID": "algangror_fight_3" + } + ] + }, + { + "id": "algangror_fight_3", + "message": "Jhaeld, o tolo. Ele se esconde por trás de seus guardas e muros de pedra dele. Ele é homem tão lamentável. Sim, eu fiz essas pessoas desaparecem, mas valeu a pena. Eu terei minha vingança!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard2", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_fight_4" + } + ] + }, + { + "id": "algangror_fight_4", + "message": "E você, o que você está tentando realizar, executando suas tarefas? Que sorte que você entrou na minha casa. He he.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_fight_5" + } + ] + }, + { + "id": "algangror_fight_5", + "message": "Você realmente acha que pode derrotar *a mim*? Ha ha, isso vai ser divertido!", + "replies": [ + { + "text": "Lute!", + "nextPhraseID": "algangror_fight_6" + } + ] + }, + { + "id": "algangror_fight_6", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard2", + "value": 35 + } + ], + "replies": [ + { + "nextPhraseID": "F" + } + ] + }, + { + "id": "algangror_told_1", + "replies": [ + { + "nextPhraseID": "algangror_told_1a", + "requires": { + "progress": "algangror:10" + } + }, + { + "nextPhraseID": "algangror_told_2" + } + ] + }, + { + "id": "algangror_told_1a", + "rewards": [ + { + "rewardType": 0, + "rewardID": "algangror", + "value": 101 + } + ], + "replies": [ + { + "nextPhraseID": "algangror_told_2" + } + ] + }, + { + "id": "algangror_told_2", + "message": "Diga-me, apesar do meu pedido anterior para que você mantenha a minha localização um segredo do povo de Remgard, eu tenho essa sensação de que essa confiança foi quebrada. Por favor, me diga que não é assim.", + "replies": [ + { + "text": "Sim, eu disse Jhaeld onde você está.", + "nextPhraseID": "algangror_told_3" + }, + { + "text": "(Mentira) Não, eu não disse a ninguém.", + "nextPhraseID": "algangror_told_3" + } + ] + }, + { + "id": "algangror_told_3", + "message": "Eu posso sentir isso em mim.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_return_d2" + } + ] + }, + { + "id": "algangror_task2_d", + "message": "Muito bem, volte para mim assim que estiver pronto." + }, + { + "id": "algangror_task2_1", + "message": "Agora, eu não posso te dizer o que tarefa eu tenho em mente antes de eu esteja confiante de que você vai realmente me ajudar. Verdade seja dita: você já mostrou algum nível de confiança com minha necessidade de discrição.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_task2_2" + } + ] + }, + { + "id": "algangror_task2_2", + "message": "Também não posso descrever minhas razões por trás dessa tarefa antes de terminar com ela.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_task2_3" + } + ] + }, + { + "id": "algangror_task2_3", + "message": "Garanto-lhe que você vai ser suficientemente recompensado por ajudar-me. Na verdade, você vê este colar aqui? Ele tem alguns poderes peculiares que muitas pessoas procuram.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_task2_4" + } + ] + }, + { + "id": "algangror_task2_4", + "message": "O mundo ao seu redor parece mover-se um pouco mais lento quando você o usa.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 10 + } + ], + "replies": [ + { + "text": "OK. Vou ajudá-la em sua tarefa.", + "nextPhraseID": "algangror_task2_6" + }, + { + "text": "Ok, eu vou ajudar. Estou sempre interessado em novos itens.", + "nextPhraseID": "algangror_task2_6" + }, + { + "text": "Tudo depende do que você quer que eu faça.", + "nextPhraseID": "algangror_task2_5" + }, + { + "text": "Alguma coisa parece errada aqui. Eu não acho que eu deveria ajudá-la.", + "nextPhraseID": "algangror_task2_n" + } + ] + }, + { + "id": "algangror_task2_5", + "message": "Como eu disse, eu não posso te dizer qual a tarefa que eu tenho em mente, ou minhas razões até que seja completada. Eu preciso de sua total... cooperação com elaa.", + "replies": [ + { + "text": "OK. Eu vou concordar em ajudá-la com sua tarefa.", + "nextPhraseID": "algangror_task2_6" + }, + { + "text": "Ok, eu vou ajudar. Estou sempre interessado em novos itens.", + "nextPhraseID": "algangror_task2_6" + }, + { + "text": "Não. Eu não vou ajudá-la a menos que você me diga o que você quer que eu faça.", + "nextPhraseID": "algangror_task2_n" + }, + { + "text": "Não, eu nunca iria ajudar alguém como você.", + "nextPhraseID": "algangror_task2_n" + } + ] + }, + { + "id": "algangror_task2_n", + "message": "Ah sim. Apesar de tudo, você é apenas uma criança e eu posso entender que tudo isso deve ser demais para você. He He.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "algangror", + "value": 100 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_task2_n2" + } + ] + }, + { + "id": "algangror_task2_n2", + "message": "Posso pelo menos pedir que você não divulgar onde estou para o povo de Remgard?", + "replies": [ + { + "text": "Vou manter o seu segredo de localização. Tchau.", + "nextPhraseID": "X" + }, + { + "text": "Vamos ver. Tchau.", + "nextPhraseID": "X" + }, + { + "text": "Não me diga o que fazer! Tchau.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "algangror_task2_6", + "message": "Bom, muito bom.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_task2_7" + } + ] + }, + { + "id": "algangror_task2_7", + "message": "Você não deve dizer a ninguém sobre essa tarefa a qual eu estou a ponto de dar a você, e você deve ser o mais discreto possível.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_task2_8" + } + ] + }, + { + "id": "algangror_task2_8", + "message": "Eu tenho em minha posse cinco ídolos. Cinco ídolos com qualidades muito... especiais. O que eu quero que você faça é... colocar esses ídolos perto de várias pessoas na cidade de Remgard.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_task2_9" + } + ] + }, + { + "id": "algangror_task2_9", + "message": "Você vai colocá-los pelas camas de cinco pessoas em particular, e você deve escondê-las bem para que a pessoa não encontre-os.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_task2_10" + } + ] + }, + { + "id": "algangror_task2_10", + "message": "Lembre-se, é de extrema importância que você seja o mais discreto possível sobre isso. Os ídolos não deve ser encontrados após sua colocação, e ninguém deve perceber o que você fez.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 30 + } + ], + "replies": [ + { + "text": "Vá em frente.", + "nextPhraseID": "algangror_task2_11" + } + ] + }, + { + "id": "algangror_task2_11", + "message": "Então, a primeira pessoa que eu quero que você visite é Jhaeld. Ouvi dizer que ele passa a maior parte de seu tempo na taberna Remgard estes dias.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 31 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_task2_12" + } + ] + }, + { + "id": "algangror_task2_12", + "message": "Em segundo lugar, eu quero que você visite um dos agricultores, denominado Larni. Ele vive com sua esposa Caeda aqui em Remgard em uma das cabanas do norte.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 32 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_task2_13" + } + ] + }, + { + "id": "algangror_task2_13", + "message": "A terceira pessoa é o armador Arnal, que vive ao noroeste do Remgard.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 33 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_task2_14" + } + ] + }, + { + "id": "algangror_task2_14", + "message": "A quarta é Emerei, que provavelmente pode ser encontrada em sua casa a sudeste de Remgard.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 34 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_task2_15" + } + ] + }, + { + "id": "algangror_task2_15", + "message": "A quinta é o agricultor Carthe. Carthe vive na costa leste de Remgard, perto da taverna.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 35 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_task2_16" + } + ] + }, + { + "id": "algangror_task2_16", + "message": "Depois de ter colocado estes cinco ídolos pelas camas dessas cinco pessoas, voltará para mim o mais rápido possível.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_task2_17" + } + ] + }, + { + "id": "algangror_task2_17", + "message": "Mais uma vez - eu devo insistir bastante - você não deve contar a ninguém sobre esses ídolos, e você não deve ser visto enquanto colocá-los.", + "replies": [ + { + "text": "Eu entendo.", + "nextPhraseID": "algangror_task2_18s" + } + ] + }, + { + "id": "algangror_task2_18s", + "replies": [ + { + "nextPhraseID": "algangror_task2_19", + "requires": { + "progress": "fiveidols:37" + } + }, + { + "nextPhraseID": "algangror_task2_18" + } + ] + }, + { + "id": "algangror_task2_18", + "message": "Aqui estão os ídolos.", + "rewards": [ + { + "rewardType": 1, + "rewardID": "fiveidols" + }, + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 37 + } + ], + "replies": [ + { + "text": "Eu estarei de volta em breve.", + "nextPhraseID": "algangror_task2_19" + }, + { + "text": "Isso deve ser fácil.", + "nextPhraseID": "algangror_task2_19" + } + ] + }, + { + "id": "algangror_task2_19", + "message": "Agora vá, e por favor pressa, talvez não tenhamos muito tempo." + }, + { + "id": "algangror_task2_ret1", + "message": "Diga-me, está o andamento da tarefa de colocar os ídolos?", + "replies": [ + { + "text": "Você pode repetir o que você queria que eu fizesse?", + "nextPhraseID": "algangror_task2_8" + }, + { + "text": "Eu ainda estou tentando encontrar todos.", + "nextPhraseID": "algangror_task2_ret2" + }, + { + "text": "Está feito.", + "nextPhraseID": "algangror_task2_done1", + "requires": { + "progress": "fiveidols:50" + } + }, + { + "text": "Não vou fazer a sua tarefa estúpida.", + "nextPhraseID": "algangror_task2_n" + }, + { + "text": "Não vou ajudá-la com sua tarefa.", + "nextPhraseID": "algangror_task2_n" + } + ] + }, + { + "id": "algangror_task2_ret2", + "message": "Por favor, pressa, talvez não tenhamos muito tempo." + }, + { + "id": "algangror_task2_done1", + "message": "Excelente. Talvez, agora eu posso descansar finalmente. Muito obrigado por me ajudar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_task2_done2" + } + ] + }, + { + "id": "algangror_task2_done2", + "message": "Será que ninguém viu onde você colocou os ídolos?", + "replies": [ + { + "text": "Não, eu escondi os ídolos como você instruiu.", + "nextPhraseID": "algangror_task2_done3" + } + ] + }, + { + "id": "algangror_task2_done3", + "message": "Bom. Obrigado novamente por me ajudar.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 51 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story" + } + ] + }, + { + "id": "algangror_story", + "message": "Deixe-me contar minha história.", + "replies": [ + { + "text": "Por favor, faça.", + "nextPhraseID": "algangror_story1" + }, + { + "text": "Podemos pular para o final?", + "nextPhraseID": "algangror_cmp1" + } + ] + }, + { + "id": "algangror_story1", + "message": "Veja você, eu morava na cidade de Remgard. Eram bons tempos, e a cidade prosperou.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story2" + } + ] + }, + { + "id": "algangror_story2", + "message": "Nossos grãos cresciam bem, e algumas pessoas fizeram acordos comerciais muito afortunados com outras cidades, tornando a vida para a maioria de nós que vivem em Remgard muito fácil.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story3" + } + ] + }, + { + "id": "algangror_story3", + "message": "Eu até vendi alguns dos cestos que eu costumava fazer a um comerciante rico, que nos visitou a partir de Nor City.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story4" + } + ] + }, + { + "id": "algangror_story4", + "message": "No entanto, mesmo a vida fácil fica chata depois de um tempo. Eu acredito que é em nossa natureza para lutar por coisas novas e melhores, para libertar-nos do tédio do dia-a-dia.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story5" + } + ] + }, + { + "id": "algangror_story5", + "message": "Eu queria aprender mais coisas que eu nada sabia, e queria explorar coisas que eu só tinha lido nos livros de antes.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story6" + } + ] + }, + { + "id": "algangror_story6", + "message": "Então eu fui para Nor City, e visitei muitas... pessoas interessantes e... cantos sombrios.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story7" + } + ] + }, + { + "id": "algangror_story7", + "message": "Naturalmente, eu estava fascinada com o conhecimento que adquiri com a experiência e com o que eu aprendi por lá.", + "replies": [ + { + "text": "E dai?", + "nextPhraseID": "algangror_story8" + } + ] + }, + { + "id": "algangror_story8", + "message": "Quando cheguei em casa, eu queria continuar praticando o que eu tinha observado e aprendido enquanto estava em Nor City.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story9" + } + ] + }, + { + "id": "algangror_story9", + "message": "Alguns poderiam dizer que eu fiquei obcecada para aprender mais. Eu acho que os outros habitantes de Remgard não .. partilhavam do meu entusiasmo. Alguns deles ainda questionavam o fato de que eu queria aprender mais.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story10" + } + ] + }, + { + "id": "algangror_story10", + "message": "Então eu disse a mim mesma que os outros não me atrapalhar na minha curiosidade para aprimorar-me.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story11" + } + ] + }, + { + "id": "algangror_story11", + "message": "Esses livros que comprei na residência de Blackmarrow em Nor City - Eu devo ter lido todos eles talvez cinco vezes ou mais. Isso era algo completamente novo para mim, e ao mesmo tempo muito emocionante.", + "replies": [ + { + "text": "Por favor, continue.", + "nextPhraseID": "algangror_story12" + } + ] + }, + { + "id": "algangror_story12", + "message": "Por alguma razão, os outros em Remgard começaram me dar olhares estranhos, e eu podia ouvir os sussurros atrás das costas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story13" + } + ] + }, + { + "id": "algangror_story13", + "message": "Eu estive inclusive impedida de entrar na taberna. 'As pessoas vêm aqui faz um bom tempo, e nós não queremos pessoas como você aqui arruinando-nos' - eles disseram. Que tolos são.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story14" + } + ] + }, + { + "id": "algangror_story14", + "message": "Eu ouvi uma mulher sussurrando para seu filho, 'Não olhe para ela, ela vai transformá-lo em pedra!'. Outros apenas se viravam para o outro lado quando me viam.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story15" + } + ] + }, + { + "id": "algangror_story15", + "message": "Que tolos são.", + "replies": [ + { + "text": "Então, o que aconteceu?", + "nextPhraseID": "algangror_story16" + } + ] + }, + { + "id": "algangror_story16", + "message": "Um dia, Jhaeld apareceu na minha porta com um grupo de guardas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story17" + } + ] + }, + { + "id": "algangror_story17", + "message": "O povo de Remgard tinha decidido que eu não podia ficar mais lá, disse ele. As coisas que eu fazia estavam causando mal a outras pessoas, disse ele.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story18" + } + ] + }, + { + "id": "algangror_story18", + "message": "O que eu tinha feito, eu perguntei a mim mesmo? Eu nunca tinha feito mal a ninguém, muito menos afetado a ninguém com meus... experimentos. Não tenho o direito de fazer o que eu desejo?", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story19" + } + ] + }, + { + "id": "algangror_story19", + "message": "Eu tinha pouca chance de argumentar, no entanto. Os guardas me tomaram, pondo-me para fora da cidade. Eles nem sequer me deixaram pegar minhas coisas. Todos os meus livros, os meus apontamentos e todos os meus resultados - foram-se. Eu perdi tudo.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 60 + } + ], + "replies": [ + { + "text": "E agora?", + "nextPhraseID": "algangror_story20" + } + ] + }, + { + "id": "algangror_story20", + "message": "Tudo isso aconteceu diversos trimestres atrás. Eu sabia que tinha que vingar-me pelo que fizeram para mim.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story21" + } + ] + }, + { + "id": "algangror_story21", + "message": "Ah, como eu desprezo a todos eles. As pessoas que me olhavam enviesadas, as pessoas que sussurravam nas minhas costas, e, acima de tudo, o tolo Jhaeld.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story22" + } + ] + }, + { + "id": "algangror_story22", + "message": "Então, eu decidi estender meus... experimentos... para coisas maiores. Para as pessoas, as coisas vivas. Esta é a oportunidade perfeita para aprender ainda mais sobre o que estava nos livros.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story23" + } + ] + }, + { + "id": "algangror_story23", + "message": "E pensar que eu poderia fazê-lo e, ao mesmo tempo, obter vingança sobre essas pessoas desprezíveis - é um excelente plano, se assim posso dizer a mim mesmo. He he.", + "replies": [ + { + "text": "Então, o que aconteceu com todas aquelas pessoas que desapareceram?", + "nextPhraseID": "algangror_story24" + } + ] + }, + { + "id": "algangror_story24", + "message": "Eu os atrai aqui. Uma vez que consegui prendê-los, eu coloquei uma maldição sobre eles que, em teoria, deveria ter feito somente os incapazes de falar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story25" + } + ] + }, + { + "id": "algangror_story25", + "message": "Talvez eu não tenha entendido tudo corretamente, a partir dos livros que li, pois em vez de torná-los incapazes de falar, todos eles foram transformados em ratazanas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story26" + } + ] + }, + { + "id": "algangror_story26", + "message": "A Prática torna perfeito, eu suponho. Ha ha.", + "replies": [ + { + "text": "Espere, isso significa que aquelas ratazanas que eu matei para você era...", + "nextPhraseID": "algangror_story27" + } + ] + }, + { + "id": "algangror_story27", + "message": "Ah, sim. Com a sua ajuda, eles agora são um problema a menos para lidar, por assim dizer. He he.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story28" + } + ] + }, + { + "id": "algangror_story28", + "message": "Então, essa é a minha história. Obrigado por ouvir-me.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 61 + } + ], + "replies": [ + { + "text": "Eu entendo, e estou de acordo com suas ações.", + "nextPhraseID": "algangror_story29a" + }, + { + "text": "Eu não concordo totalmente com suas ações.", + "nextPhraseID": "algangror_story29b" + }, + { + "text": "O que você fez não pode ser justificado!", + "nextPhraseID": "algangror_story29b" + } + ] + }, + { + "id": "algangror_story29a", + "message": "Obrigado. É bom saber que há mais pessoas interessadas em aprender mais.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_cmp1" + } + ] + }, + { + "id": "algangror_story29b", + "message": "Eu nunca esperei que você entenda isso. Ninguém parece entender-me também. Oh, bem, você perdeu, eu acho.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_cmp1" + } + ] + }, + { + "id": "algangror_cmp1", + "message": "Então, por me ajudar com os ídolos, eu acredito que eu prometi-lhe o meu colar encantado, 'Marrowtaint'.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_cmp2" + } + ] + }, + { + "id": "algangror_cmp2", + "message": "Use-o bem, meu amigo. Não deixe que os outros se apoderem do poder que Marrowtaint proporciona.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_cmp3" + } + ] + }, + { + "id": "algangror_cmp3", + "message": "Aqui está.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 70 + }, + { + "rewardType": 1, + "rewardID": "marrowtaint" + } + ], + "replies": [ + { + "text": "Isso é tudo? Um colar ruim por todo este problema que eu passei?", + "nextPhraseID": "algangror_cmp5" + }, + { + "text": "Obrigado.", + "nextPhraseID": "algangror_cmp4" + } + ] + }, + { + "id": "algangror_cmp4", + "message": "Não subestime isso, meu amigo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_cmp5" + } + ] + }, + { + "id": "algangror_cmp5", + "message": "Mais uma vez, obrigado por me ajudar. Você será sempre bem-vindo aqui, amigo." + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_alynndir.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_alynndir.json new file mode 100644 index 000000000..9f826df78 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_alynndir.json @@ -0,0 +1,70 @@ +[ + { + "id": "alynndir_1", + "message": "Olá lá. Bem-vindo ao meu quarto.", + "replies": [ + { + "text": "O que você faz aqui?", + "nextPhraseID": "alynndir_2" + }, + { + "text": "O que você pode me dizer sobre as vizinhanças?", + "nextPhraseID": "alynndir_3" + } + ] + }, + { + "id": "alynndir_2", + "message": "Principalmente, eu negocio com viajantes da estrada principal a caminho Nor City.", + "replies": [ + { + "text": "Você tem alguma coisa para vender?", + "nextPhraseID": "S" + }, + { + "text": "O que você pode me dizer sobre as vizinhanças?", + "nextPhraseID": "alynndir_3" + } + ] + }, + { + "id": "alynndir_3", + "message": "Oh, não há muito por aqui. Vilegard está a oeste e para o leste, Brightport.", + "replies": [ + { + "text": "N", + "nextPhraseID": "alynndir_4" + } + ] + }, + { + "id": "alynndir_4", + "message": "Ao norte é só floresta. Mas há algumas coisas estranhas acontecendo lá.", + "replies": [ + { + "text": "N", + "nextPhraseID": "alynndir_5" + } + ] + }, + { + "id": "alynndir_5", + "message": "Eu ouvi gritos terríveis que vêm da floresta para o noroeste.", + "replies": [ + { + "text": "N", + "nextPhraseID": "alynndir_6" + } + ] + }, + { + "id": "alynndir_6", + "message": "Eu realmente me pergunto o que existe lá em cima.", + "replies": [ + { + "text": "Até logo.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_ambelie.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_ambelie.json new file mode 100644 index 000000000..02fea68ab --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_ambelie.json @@ -0,0 +1,128 @@ +[ + { + "id": "ambelie_1", + "message": "O quê? Um plebeu! Fique longe de mim. Eu poderia pegar alguma doença.", + "replies": [ + { + "text": "Quem é você?", + "nextPhraseID": "ambelie_2" + }, + { + "text": "O que é que uma mulher nobre como você está fazendo em um lugar como este?", + "nextPhraseID": "ambelie_5" + }, + { + "text": "Eu ficaria feliz em permanecer longe de uma esnobe como você.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "ambelie_2", + "message": "Eu sou Ambelie da casa de Laumwill de Feygard. Tenho certeza que você deve ter ouvido falar de mim e de minha casa.", + "replies": [ + { + "text": "Ah sim .. hum .. Casa de Laumwill em Feygard. Claro.", + "nextPhraseID": "ambelie_3" + }, + { + "text": "Eu nunca ouvi falar de você ou de sua casa.", + "nextPhraseID": "ambelie_4" + }, + { + "text": "Onde fica Feygard?", + "nextPhraseID": "ambelie_3" + } + ] + }, + { + "id": "ambelie_3", + "message": "Feygard, a grande cidade da paz. Certamente você deve saber disso. Ao noroeste em nosso grande reino.", + "replies": [ + { + "text": "O que é uma mulher nobre como você está fazendo em um lugar como este?", + "nextPhraseID": "ambelie_5" + }, + { + "text": "Não, eu nunca ouvi falar.", + "nextPhraseID": "ambelie_4" + } + ] + }, + { + "id": "ambelie_4", + "message": "Pfft. Isso só prova que tudo o que ouvi de vocês selvagens aqui na terra do sul. Então, uma criatura sem nenhuma educação." + }, + { + "id": "ambelie_5", + "message": "Eu, Ambelie, da casa de Laumwill em Feygard, estou em uma excursão para o sul de Nor City.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ambelie_6" + } + ] + }, + { + "id": "ambelie_6", + "message": "Uma excursão para ver se realmente Nor City é tudo o que eu ouvi falar a respeito. Se ela realmente pode comparar-se ao glamour da grande cidade de Feygard.", + "replies": [ + { + "text": "Nor City, onde é isso?", + "nextPhraseID": "ambelie_7" + }, + { + "text": "Se você gosta tanto de Feygard, por que você a deiou?", + "nextPhraseID": "ambelie_9" + } + ] + }, + { + "id": "ambelie_7", + "message": "Você não sabe de Nor City? Vou tomar nota de que os selvagens aqui nunca ouviram falar da cidade.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ambelie_8" + } + ] + }, + { + "id": "ambelie_8", + "message": "Estou começando a ter cada vez mais certeza de que Nor City, nem mesmo em meus piores pesadelos, possa ser comparável à grande cidade de Feygard.", + "replies": [ + { + "text": "Boa sorte em sua excursão.", + "nextPhraseID": "ambelie_10" + } + ] + }, + { + "id": "ambelie_9", + "message": "Todos os nobres em Feygard continuam falando sobre a Sombra misteriosa de Nor City. Eu só tenho que ver por mim mesmo.", + "replies": [ + { + "text": "Nor City, onde é isso?", + "nextPhraseID": "ambelie_7" + }, + { + "text": "Boa sorte em sua excursão.", + "nextPhraseID": "ambelie_10" + } + ] + }, + { + "id": "ambelie_10", + "message": "Obrigado. Agora, por favor vá embora antes que alguém me vê falando com um plebeu como você.", + "replies": [ + { + "text": "Plebeu? Você está tentando me insultar? Tchau.", + "nextPhraseID": "X" + }, + { + "text": "Seja como for, você provavelmente não iria sobreviver até mesmo a uma vespa da floresta.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_arghes.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_arghes.json new file mode 100644 index 000000000..510f399ef --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_arghes.json @@ -0,0 +1,126 @@ +[ + { + "id": "arghes", + "replies": [ + { + "nextPhraseID": "arghes_2", + "requires": { + "progress": "andor:51" + } + }, + { + "nextPhraseID": "arghes_1" + } + ] + }, + { + "id": "arghes_1", + "message": "Você não irá encontrar nada da sua conta por aqui, criança." + }, + { + "id": "arghes_2", + "message": "Bem interessante. Uma criança de Fallhaven, aqui em Remgard?", + "replies": [ + { + "text": "Eu não sou de Fallhaven, sou de Crossglen, a oeste de Fallhaven.", + "nextPhraseID": "arghes_3a" + }, + { + "text": "Quem é você?", + "nextPhraseID": "arghes_3b" + }, + { + "text": "Como você sabe de onde eu sou?", + "nextPhraseID": "arghes_3c" + } + ] + }, + { + "id": "arghes_3a", + "message": "É isso mesmo? Hum, mais interessante. Isso não muda nada, porém.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arghes_4" + } + ] + }, + { + "id": "arghes_3b", + "message": "Quem eu sou não é importante nesta situação. Você, por outro lado, é mais importante.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arghes_4" + } + ] + }, + { + "id": "arghes_3c", + "message": "Eu sei .. uma grande quantidade de coisas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arghes_4" + } + ] + }, + { + "id": "arghes_4", + "message": "$playername - sim, é assim que eles o chamam ", + "replies": [ + { + "text": "Como você sabe o meu nome? Quem é você?", + "nextPhraseID": "arghes_5" + } + ] + }, + { + "id": "arghes_5", + "message": "Vamos apenas dizer que eu sou um... amigo. Você faria bem em manter seus... amigos próximos.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arghes_6" + } + ] + }, + { + "id": "arghes_6", + "message": "Agora, como posso ajudá-lo? Equipamento? Informação?", + "replies": [ + { + "text": "Deixe-me ver o que você tem que trocar.", + "nextPhraseID": "arghes_shop" + }, + { + "text": "Quais as informações que você tem?", + "nextPhraseID": "arghes_7" + } + ] + }, + { + "id": "arghes_shop", + "message": "Certamente.", + "replies": [ + { + "text": "N", + "nextPhraseID": "S" + } + ] + }, + { + "id": "arghes_7", + "message": "Hum, deixe-me ver.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arghes_8" + } + ] + }, + { + "id": "arghes_8", + "message": "Não, eu não posso dizer nada neste momento. Você está convidado a retornar uma vez que o seu caminho se tornar .. mais claro." + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_benbyr.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_benbyr.json new file mode 100644 index 000000000..7d5aab0d3 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_benbyr.json @@ -0,0 +1,353 @@ +[ + { + "id": "benbyr", + "replies": [ + { + "nextPhraseID": "benbyr_declined", + "requires": { + "progress": "benbyr:60" + } + }, + { + "nextPhraseID": "benbyr_complete_1", + "requires": { + "progress": "benbyr:30" + } + }, + { + "nextPhraseID": "benbyr_mission_1", + "requires": { + "progress": "benbyr:20" + } + }, + { + "nextPhraseID": "benbyr_story_1" + } + ] + }, + { + "id": "benbyr_complete_1", + "message": "Olá novamente. Tenho certeza que você mostrou ao bastardo do Tinlyn a não mexer comigo de novo." + }, + { + "id": "benbyr_declined", + "message": "Não tenho mais nada para lhe dizer. Deixe-me." + }, + { + "id": "benbyr_story_1", + "message": "Psst, hey. Aqui.", + "replies": [ + { + "text": "N", + "nextPhraseID": "benbyr_story_2" + } + ] + }, + { + "id": "benbyr_story_2", + "message": "Você parece um aspirante a aventureiro. Você está disposto a fazer alguma .. (Benbyr pausa) .. aventura? He He.", + "replies": [ + { + "text": "Do que se trata?", + "nextPhraseID": "benbyr_story_3_1" + }, + { + "text": "Depende do que eu recebo em troca.", + "nextPhraseID": "benbyr_story_3_2" + }, + { + "text": "Eu tento ajudar as pessoas, onde quer que eles podem precisar de ajuda.", + "nextPhraseID": "benbyr_story_3_3" + } + ] + }, + { + "id": "benbyr_story_3_1", + "message": "Direto ao ponto hein? Eu gosto disso.", + "replies": [ + { + "text": "N", + "nextPhraseID": "benbyr_story_4" + } + ] + }, + { + "id": "benbyr_story_3_2", + "message": "Ah, o aventureiro em busca de compensação. Diga-me, é a emoção de uma aventura não recompensa suficiente?", + "replies": [ + { + "text": "Sim, você está certo.", + "nextPhraseID": "benbyr_story_4" + }, + { + "text": "Não.", + "nextPhraseID": "benbyr_story_3_4" + } + ] + }, + { + "id": "benbyr_story_3_4", + "message": "Então eu certamente o irei desapontá-lo. Volte para mim uma vez que você esteja pronto para a minha tarefa." + }, + { + "id": "benbyr_story_3_3", + "message": "O nobre aventureiro. He he, eu gosto disso. Sim, você vai fazer bem.", + "replies": [ + { + "text": "N", + "nextPhraseID": "benbyr_story_4" + } + ] + }, + { + "id": "benbyr_story_4", + "message": "Tempos atrás, eu fiz alguns negócios com um homem chamado Tinlyn, aqui nesta guarita de Crossroads.", + "replies": [ + { + "text": "N", + "nextPhraseID": "benbyr_story_5" + } + ] + }, + { + "id": "benbyr_story_5", + "message": "Quanto à natureza do nosso negócio, eu realmente não posso te dizer. Vamos apenas dizer que o nosso negócio era do tipo que foi benéfico para nós dois e que os guardas não podiam tomar conhecimento.", + "replies": [ + { + "text": "N", + "nextPhraseID": "benbyr_story_6" + } + ] + }, + { + "id": "benbyr_story_6", + "message": "Estávamos prontos para concluir um negócio grande, eu e Tinlyn. Foi quando ele decidiu se voltar contra mim.", + "replies": [ + { + "text": "N", + "nextPhraseID": "benbyr_story_7" + } + ] + }, + { + "id": "benbyr_story_7", + "message": "Ele delatou-me para os guardas, e me fez assumir a culpa toda por esse negócio.", + "replies": [ + { + "text": "N", + "nextPhraseID": "benbyr_story_8" + } + ] + }, + { + "id": "benbyr_story_8", + "message": "Fui enviado para a prisão de Feygard, enquanto ele estava livre por delatar-me.", + "replies": [ + { + "text": "N", + "nextPhraseID": "benbyr_story_8_1" + } + ] + }, + { + "id": "benbyr_story_8_1", + "replies": [ + { + "nextPhraseID": "benbyr_story_10", + "requires": { + "progress": "benbyr:20" + } + }, + { + "nextPhraseID": "benbyr_story_9" + } + ] + }, + { + "id": "benbyr_story_9", + "message": "Argh, que Tinlyn tolo. Espero que a Sombra nunca lhe mostre nenhuma misericórdia.", + "replies": [ + { + "text": "Vá direto ao ponto.", + "nextPhraseID": "benbyr_story_10" + }, + { + "text": "O que você quer que eu faça?", + "nextPhraseID": "benbyr_story_10" + } + ] + }, + { + "id": "benbyr_story_10", + "message": "Eu quero vingar-me do tolo do Tinlyn, é claro. Agora, o meu plano é o seguinte:", + "replies": [ + { + "text": "N", + "nextPhraseID": "benbyr_story_11" + } + ] + }, + { + "id": "benbyr_story_11", + "message": "Ouvi dizer que ele está pastoreando as ovelhas, esses dias. Esta é uma excelente oportunidade para ..digamos ..um acidente acontecer com suas ovelhas. Ele ele.", + "replies": [ + { + "text": "N", + "nextPhraseID": "benbyr_story_12" + } + ] + }, + { + "id": "benbyr_story_12", + "message": "Você, meu amigo, seria o o perfeito acidente móvel. Eu quero que você encontre todas as ovelhas Tinlyn e verifique para que elas se unam para sempre junto a Sombra.", + "replies": [ + { + "text": "N", + "nextPhraseID": "benbyr_story_12_1" + } + ] + }, + { + "id": "benbyr_story_12_1", + "replies": [ + { + "nextPhraseID": "benbyr_accept_2", + "requires": { + "progress": "benbyr:20" + } + }, + { + "nextPhraseID": "benbyr_story_13" + } + ] + }, + { + "id": "benbyr_story_13", + "message": "Faça isso, e eu vou ter me vingado do tolo Tinlyn.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "benbyr", + "value": 10 + } + ], + "replies": [ + { + "text": "Parece o tipo de coisa que gosto de fazer. Eu irei fazer isso!", + "nextPhraseID": "benbyr_accept_1" + }, + { + "text": "Isto soa um pouco sombrio, mas eu vou fazer isso de qualquer maneira.", + "nextPhraseID": "benbyr_accept_1" + }, + { + "text": "De jeito nenhum, matar ovelhas inocentes é muito sujo para mim. Eu nunca irei fazer sua tarefa.", + "nextPhraseID": "benbyr_decline_1" + } + ] + }, + { + "id": "benbyr_decline_1", + "message": "Muito bem, mas lembre-se que eu tenho meus olhos em você .. aventureiro.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "benbyr", + "value": 60 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "benbyr_declined" + } + ] + }, + { + "id": "benbyr_accept_1", + "message": "Explêndido!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "benbyr", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "benbyr_accept_2" + } + ] + }, + { + "id": "benbyr_accept_2", + "message": "Acontece que eu sei que existem oito de suas ovelhas no total, e todas elas devem estar a noroeste daqui.", + "replies": [ + { + "text": "N", + "nextPhraseID": "benbyr_accept_3" + } + ] + }, + { + "id": "benbyr_accept_3", + "message": "Volte para mim a prova de que você matou todas as oito." + }, + { + "id": "benbyr_mission_1", + "message": "Ah, meu acidente móvel está retornando. He He.", + "replies": [ + { + "text": "Pode contar a sua história de novo?", + "nextPhraseID": "benbyr_story_4" + }, + { + "text": "Eu ainda estou procurando as ovelhas.", + "nextPhraseID": "benbyr_accept_3" + }, + { + "text": "Eu matei todas as oito ovelhas de Tinlyn para você.", + "nextPhraseID": "benbyr_mission_2", + "requires": { + "item": { + "itemID": "tinlyn_sheep_meat", + "quantity": 8, + "requireType": 0 + } + } + } + ] + }, + { + "id": "benbyr_mission_2", + "message": "Ha ha! o tolo do Tinlyn deve estar em lágrimas. A Sombra certamente caminha com você meu amigo.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "benbyr", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "benbyr_complete_2" + } + ] + }, + { + "id": "benbyr_complete_2", + "message": "Este é um dia glorioso, de fato! Tinlyn deveria saber não se deve meter comigo!", + "replies": [ + { + "text": "N", + "nextPhraseID": "benbyr_complete_3" + } + ] + }, + { + "id": "benbyr_complete_3", + "message": "Quanto a você meu amigo, procure meus amigos em Brightport. Tenho certeza de que irão lhe estender sua hospitalidade." + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_blackwater_harlenn.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_blackwater_harlenn.json new file mode 100644 index 000000000..545a8e250 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_blackwater_harlenn.json @@ -0,0 +1,1042 @@ +[ + { + "id": "harlenn_start", + "replies": [ + { + "nextPhraseID": "harlenn_sentbyprim_8", + "requires": { + "progress": "prim_hunt:91" + } + }, + { + "nextPhraseID": "harlenn_sentbyprim_2", + "requires": { + "progress": "prim_hunt:90" + } + }, + { + "nextPhraseID": "harlenn_sentbyprim_1", + "requires": { + "progress": "prim_hunt:80" + } + }, + { + "nextPhraseID": "harlenn_return_1", + "requires": { + "progress": "bwm_agent:251" + } + }, + { + "nextPhraseID": "harlenn_return_1", + "requires": { + "progress": "bwm_agent:250" + } + }, + { + "nextPhraseID": "harlenn_completed", + "requires": { + "progress": "bwm_agent:150" + } + }, + { + "nextPhraseID": "harlenn_killguth_3", + "requires": { + "progress": "bwm_agent:149" + } + }, + { + "nextPhraseID": "harlenn_workingforprim_1", + "requires": { + "progress": "prim_hunt:50" + } + }, + { + "nextPhraseID": "harlenn_killguth_1", + "requires": { + "progress": "bwm_agent:120" + } + }, + { + "nextPhraseID": "harlenn_lookforsigns_1", + "requires": { + "progress": "bwm_agent:95" + } + }, + { + "nextPhraseID": "harlenn_return_3", + "requires": { + "progress": "bwm_agent:70" + } + }, + { + "nextPhraseID": "harlenn_return_2", + "requires": { + "progress": "bwm_agent:65" + } + }, + { + "nextPhraseID": "harlenn_1" + } + ] + }, + { + "id": "harlenn_1", + "message": "Bem-vindo, viajante.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_2" + } + ] + }, + { + "id": "harlenn_2", + "message": "Você deve ser o recém-chegado que me informaram, que viajou pelo lado da montanha.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_3" + } + ] + }, + { + "id": "harlenn_3", + "message": "Precisamos de sua ajuda para lidar com alguns .. problemas.", + "replies": [ + { + "text": "Quem é você?", + "nextPhraseID": "harlenn_4" + } + ] + }, + { + "id": "harlenn_4", + "message": "Oh, desculpe, eu não me apresentei corretamente. Sou Harlenn, ministro da guerra, para as pessoas que vivem nesta povoamento da montanha.", + "replies": [ + { + "text": "O quia que conduziu-me pela montanha disse-me para vê-lo.", + "nextPhraseID": "harlenn_5" + } + ] + }, + { + "id": "harlenn_5", + "message": "Ah, sim, temos a sorte que ele o encontrou. Como vê, nós raramente viajamos tão longe da montanha.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_6" + } + ] + }, + { + "id": "harlenn_6", + "message": "Na maioria das vezes, passamos nosso tempo no assentamento ou aqui na montanha.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_7" + } + ] + }, + { + "id": "harlenn_7", + "message": "No entanto, evento recentes nos obrigaram a enviar ajuda. Temos sorte que nos encontrou.", + "replies": [ + { + "text": "Quais os problemas aos quais você está se referindo?", + "nextPhraseID": "harlenn_8" + }, + { + "text": "O que está acontecendo aqui?", + "nextPhraseID": "harlenn_8" + } + ] + }, + { + "id": "harlenn_8", + "message": "Tenho certeza que você notou ao chegar aqui. Os monstros, claro!", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_9" + } + ] + }, + { + "id": "harlenn_9", + "message": "Esses animais malditos do lado de fora do nosso assentamento. Os dragões brancos e de Aulaeth, e os seus criadores, que são ainda mais mortais.", + "replies": [ + { + "text": "Aqueles? Eles não foram páreo para mim.", + "nextPhraseID": "harlenn_11" + }, + { + "text": "Eu posso ver onde isso vai dar. Você precisa de mim para lidar com eles para você eu acho?", + "nextPhraseID": "harlenn_10" + }, + { + "text": "Pelo menos eles não são tão ruins como a bestas Gornaud no sopé da montanha.", + "nextPhraseID": "harlenn_12" + } + ] + }, + { + "id": "harlenn_10", + "message": "Bem, sim. Mas apenas matá-los não trará qualquer efeito. Temos tentado isso, sem sucesso. Eles apenas continuam a voltar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_13" + } + ] + }, + { + "id": "harlenn_11", + "message": "Você parece ser do meu tipo!", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_13" + } + ] + }, + { + "id": "harlenn_12", + "message": "Gornaud? Eu não ouvi nada sobre isso. Mas tenho certeza de que não poderia ser pior do que essas feras aqui.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_13" + } + ] + }, + { + "id": "harlenn_13", + "message": "De qualquer forma, os animais estão realmente começando a dizimar-nos. Mas eles não são a nossa única preocupação.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_14" + } + ] + }, + { + "id": "harlenn_14", + "message": "Além disso, estamos sendo atacados por aqueles bastardos da cidade de Prim no sopé da montanha.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 65 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_15" + } + ] + }, + { + "id": "harlenn_15", + "message": "Ah, os traiçoeiros, falsos bastardos.", + "replies": [ + { + "text": "O que eles fizeram?", + "nextPhraseID": "harlenn_16" + }, + { + "text": "Eu conversei com Guthbered em Prim. Eles dizem que foram vocês que os tem atacado e que estão por trás dos ataques dos Gornaud sobre Prim.", + "nextPhraseID": "harlenn_prim_1", + "requires": { + "progress": "prim_hunt:25" + } + }, + { + "text": "Existe algo que eu possa fazer para ajudar?", + "nextPhraseID": "harlenn_18" + } + ] + }, + { + "id": "harlenn_16", + "message": "Eles vêm aqui à noite para sabotar nossos suprimentos.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_17" + } + ] + }, + { + "id": "harlenn_17", + "message": "Temos quase certeza de que são eles que estão por trás desses monstros também.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 66 + } + ], + "replies": [ + { + "text": "Eu conversei com Guthbered em Prim. Eles dizem que foram vocês que fazem os ataques, que também estão por trás dos ataques dos Gornaud sobre Prim.", + "nextPhraseID": "harlenn_prim_1", + "requires": { + "progress": "prim_hunt:25" + } + }, + { + "text": "Existe algo que eu possa fazer para ajudar?", + "nextPhraseID": "harlenn_18" + } + ] + }, + { + "id": "harlenn_18", + "message": "Bem, sim. Claro. Se você for até ele.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_19" + } + ] + }, + { + "id": "harlenn_19", + "message": "Considerando que você veio até aqui vivo, eu tenho certeza que você pode lidar com isso.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_20" + } + ] + }, + { + "id": "harlenn_prim_1", + "message": "Nós?! Hah! Faz sentido que ele diga isso. Eles estão sempre mentindo e enganando para fazer as coisas à sua maneira. Nós certamente não os atacamos!", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_prim_2" + } + ] + }, + { + "id": "harlenn_prim_2", + "message": "É, claro, *eles* é que são os causadores de todos os problemas.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_prim_3" + } + ] + }, + { + "id": "harlenn_prim_3", + "message": "Eles ainda capturaram um de nossos companheiros batedores. Quem sabe o que eles fizeram com ele.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_prim_3_1" + } + ] + }, + { + "id": "harlenn_prim_3_1", + "replies": [ + { + "nextPhraseID": "X", + "requires": { + "progress": "bwm_agent:90" + } + }, + { + "nextPhraseID": "X", + "requires": { + "progress": "bwm_agent:251" + } + }, + { + "nextPhraseID": "X", + "requires": { + "progress": "bwm_agent:250" + } + }, + { + "nextPhraseID": "harlenn_prim_4" + } + ] + }, + { + "id": "harlenn_prim_4", + "message": "Eu estou dizendo a você, ele são traidores e mentirosos!", + "replies": [ + { + "text": "Claro, eu acredito em você. O que você precisa que eu faça?", + "nextPhraseID": "harlenn_prim_6" + }, + { + "text": "O que eu ganho, ajudando você em vez de eles?", + "nextPhraseID": "harlenn_prim_5" + }, + { + "text": "Eu não estou comprando essa idéia. Eu acho que eu prefiro ajudar o povo de Prim a vocês.", + "nextPhraseID": "harlenn_prim_7" + } + ] + }, + { + "id": "harlenn_prim_5", + "message": "Ganho? Nossa confiança é claro. Você seria sempre bem-vindo aqui em nosso acampamento. Nossos comerciantes têm equipamentos excelentes.", + "replies": [ + { + "text": "Ok, eu vou ajudá-lo a lidar com eles.", + "nextPhraseID": "harlenn_prim_6" + }, + { + "text": "Eu ainda não estou convencido, mas eu vou te ajudar agora.", + "nextPhraseID": "harlenn_prim_6" + } + ] + }, + { + "id": "harlenn_prim_6", + "message": "Bom. Vamos precisar de um lutador capaz de nos ajudar a lidar com os monstros e os bandidos de Prim.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_19" + } + ] + }, + { + "id": "harlenn_prim_7", + "message": "Bah. Então você é inútil para mim. Por que você se preocupou em vir aqui e perder meu tempo? Vá embora.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 250 + } + ] + }, + { + "id": "harlenn_20", + "message": "Ok, este é o plano. Eu quero que você vá falar com Guthbered em Prim, e dar-lhe o nosso ultimato:", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_21" + } + ] + }, + { + "id": "harlenn_21", + "message": "Ou eles parar seus ataques, ou vamos ter de lidar com eles.", + "replies": [ + { + "text": "Claro. Eu vou dar-lhe o seu ultimato.", + "nextPhraseID": "harlenn_22" + }, + { + "text": "Não. Na verdade, eu acho que deveria, ao invés, ajudar as pessoas de Prim.", + "nextPhraseID": "harlenn_prim_7" + } + ] + }, + { + "id": "harlenn_22", + "message": "Bom. Agora se apresse! Não sabemos quanto tempo nos resta antes que eles ataquem novamente.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 70 + } + ] + }, + { + "id": "harlenn_return_1", + "message": "Você de novo? Eu não quero nenhum negócio com você. Deixe-me.", + "replies": [ + { + "text": "Por que você está atacando as pessoas da aldeia de Prim?", + "nextPhraseID": "harlenn_prim_1", + "requires": { + "progress": "prim_hunt:25" + } + } + ] + }, + { + "id": "harlenn_return_2", + "message": "Bem-vindo novamente, viajante. O que se passa em sua mente?", + "replies": [ + { + "text": "Eu conversei com Guthbered em Prim. Eles dizem que você está atacando Prim, e que está por trás dos ataques Gornaud sobre Prim.", + "nextPhraseID": "harlenn_prim_1", + "requires": { + "progress": "prim_hunt:25" + } + }, + { + "text": "O que foi que você disse antes sobre os monstros que estão atacando seu estabelecimento?", + "nextPhraseID": "harlenn_9" + } + ] + }, + { + "id": "harlenn_return_3", + "message": "Bem-vindo de volta, viajante. Você falou o traiçoeiro Guthbered em Prim?", + "replies": [ + { + "text": "O que eu devo fazer mesmo?", + "nextPhraseID": "harlenn_20" + }, + { + "text": "Não, ainda não.", + "nextPhraseID": "harlenn_22" + }, + { + "text": "Sim, eu falei com ele. Ele nega que eles estejam por trás de quaisquer ataques.", + "nextPhraseID": "harlenn_talkedto_guth_1", + "requires": { + "progress": "bwm_agent:80" + } + }, + { + "text": "Eu conversei com Guthbered em Prim. Eles dizem que vocês são os que estão os atacando, e que estão por trás dos ataques dos Gornaud sobre Prim.", + "nextPhraseID": "harlenn_prim_1", + "requires": { + "progress": "prim_hunt:25" + } + } + ] + }, + { + "id": "harlenn_workingforprim_1", + "message": "Meus batedores me deram um relatório muito interessante. Eles dizem que você está trabalhando para Prim.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_workingforprim_2" + } + ] + }, + { + "id": "harlenn_workingforprim_2", + "message": "É claro que não podemos ter isso aqui. Nós não podemos ter um espião no meio de nós. Você deve deixar o nosso assentamento, enquanto você ainda pode, traidor.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 251 + } + ] + }, + { + "id": "harlenn_completed", + "message": "Obrigado, amigo. Sua ajuda é muito apreciada. Todos no assentamento da Montanha das Águas Negras vão querer falar com você agora.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 240 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_completed_1" + } + ] + }, + { + "id": "harlenn_completed_1", + "message": "Tenho certeza que os ataques de monstros vão parar agora, quando matar os últimos monstros que estão fora do assentamento.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 250 + } + ] + }, + { + "id": "harlenn_talkedto_guth_1", + "message": "Ele nega isso?! Bah, que idiota traiçoeiro. Eu deveria ter sabido que ele não se atreveria a dizer a verdade.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_talkedto_guth_2" + } + ] + }, + { + "id": "harlenn_talkedto_guth_2", + "message": "Eu ainda estou convencido de que eles, de alguma forma, estão por trás de todos esses ataques contra nós. Quem mais poderia ser? Não há outros assentamentos nas redondezas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_talkedto_guth_3" + } + ] + }, + { + "id": "harlenn_talkedto_guth_3", + "message": "Além disso, eles têm sido sempre traiçoeiros. Não, é claro que eles estão por trás dos ataques.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 90 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_talkedto_guth_4" + } + ] + }, + { + "id": "harlenn_talkedto_guth_4", + "message": "Ok, isso não nos deixa escolha. Nós vamos ter que subir isso para outro patamar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_talkedto_guth_5" + } + ] + }, + { + "id": "harlenn_talkedto_guth_5", + "message": "Tem certeza de que você está pronto para isso? Você não é um dos espiões deles? Se você estiver trabalhando para eles, então você deve saber que eles não são confiáveis!", + "replies": [ + { + "text": "Eu estou pronto para qualquer coisa. Eu vou ajudar seu assentamento.", + "nextPhraseID": "harlenn_talkedto_guth_7" + }, + { + "text": "Na verdade, agora que você mencionou ...", + "nextPhraseID": "harlenn_talkedto_guth_6", + "requires": { + "progress": "prim_hunt:25" + } + }, + { + "text": "Sim, eu estou trabalhando para Prim também. Eles parecem ser pessoas sensatas.", + "nextPhraseID": "harlenn_prim_7", + "requires": { + "progress": "prim_hunt:25" + } + } + ] + }, + { + "id": "harlenn_talkedto_guth_6", + "message": "O quê? Você está trabalhando para eles ou não?", + "replies": [ + { + "text": "Não importa. Estou pronto paa ajudar seu acampamento.", + "nextPhraseID": "harlenn_talkedto_guth_7" + }, + { + "text": "Eu estava. Mas eu decidi ajudá-lo, ao invés.", + "nextPhraseID": "harlenn_talkedto_guth_7" + }, + { + "text": "Sim. Estou ajudando-os a se livrar de vocês.", + "nextPhraseID": "harlenn_prim_7" + } + ] + }, + { + "id": "harlenn_talkedto_guth_7", + "message": "Bom.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_talkedto_guth_8" + } + ] + }, + { + "id": "harlenn_talkedto_guth_8", + "message": "Acreditamos que eles estejam planejando nos atacar a qualquer momento. Mas não temos nenhuma prova ainda.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_talkedto_guth_9" + } + ] + }, + { + "id": "harlenn_talkedto_guth_9", + "message": "Aqui é onde eu acho que um estranho como você pode ajudar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_talkedto_guth_10" + } + ] + }, + { + "id": "harlenn_talkedto_guth_10", + "message": "Eu quero que você vá investigar Prim, buscando por evidênciasde que eles estejam preparando um ataque contra nós.", + "replies": [ + { + "text": "Claro, parece fácil.", + "nextPhraseID": "harlenn_talkedto_guth_11" + } + ] + }, + { + "id": "harlenn_talkedto_guth_11", + "message": "Bom. Tente não ser visto. Você deve ir procurar todos os indícios em torno de onde que fica Guthbered.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 95 + } + ] + }, + { + "id": "harlenn_lookforsigns_1", + "message": "Olá novamente. Você encontrou alguma pistas em Prim de que eles estejam planejando nos atacar?", + "replies": [ + { + "text": "Não, ainda não.", + "nextPhraseID": "harlenn_lookforsigns_2" + }, + { + "text": "Sim. Encontrei planos que eles estão recrutando mercenários pretendem atacar seu assentamento.", + "nextPhraseID": "harlenn_lookforsigns_3", + "requires": { + "progress": "bwm_agent:100" + } + }, + { + "text": "O que eu devo fazer mesmo?", + "nextPhraseID": "harlenn_talkedto_guth_8" + } + ] + }, + { + "id": "harlenn_lookforsigns_2", + "message": "Continue procurando. Tenho certeza de que eles estão planejando algo perverso." + }, + { + "id": "harlenn_lookforsigns_3", + "message": "Eu sabia! Eu sabia que eles estavam tramando algo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_lookforsigns_4" + } + ] + }, + { + "id": "harlenn_lookforsigns_4", + "message": "Oh aquele porco deitado do Guthbered.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_lookforsigns_5" + } + ] + }, + { + "id": "harlenn_lookforsigns_5", + "message": "De qualquer forma, obrigado por sua ajuda para buscar tal evidência.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 110 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_lookforsigns_6" + } + ] + }, + { + "id": "harlenn_lookforsigns_6", + "message": "Isso exige medidas drásticas. Temos que agir rápido antes que eles possam ter tempo para completar seu plano.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_lookforsigns_7" + } + ] + }, + { + "id": "harlenn_lookforsigns_7", + "message": "Um velho ditado diz algo como 'A única maneira de realmente matar o Gorgon é a remoção da cabeça'. Neste caso, a cabeça desses bastardos em Prim é aquele sujeito do Guthbered.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_lookforsigns_8" + } + ] + }, + { + "id": "harlenn_lookforsigns_8", + "message": "Devemos fazer algo sobre ele. Você tem provado o seu valor até agora. Este será o seu trabalho final.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_lookforsigns_9" + } + ] + }, + { + "id": "harlenn_lookforsigns_9", + "message": "Eu quero que você vá ... negóciar ... com ele. Guthbered. De preferência da forma mais dolorosa e horrível que você pode imaginar.", + "replies": [ + { + "text": "Não tem problema.", + "nextPhraseID": "harlenn_lookforsigns_11" + }, + { + "text": "Você tem certeza de mais violência vai realmente resolver este conflito?", + "nextPhraseID": "harlenn_lookforsigns_10" + }, + { + "text": "Ele é está melhor morto.", + "nextPhraseID": "harlenn_lookforsigns_11" + } + ] + }, + { + "id": "harlenn_lookforsigns_10", + "message": "Você viu os planos por si mesmo. Eles vão nos atacar, se não fizermos alguma coisa sobre isso. É claro que temos de matá-lo!", + "replies": [ + { + "text": "Vou tirá-lo, mas vou tentar encontrar uma solução pacífica para esta.", + "nextPhraseID": "harlenn_lookforsigns_12" + }, + { + "text": "Muito bem. Ele está melhor morto.", + "nextPhraseID": "harlenn_lookforsigns_11" + } + ] + }, + { + "id": "harlenn_lookforsigns_11", + "message": "Excelente. Volte para mim uma vez que a ação é feita.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 120 + } + ] + }, + { + "id": "harlenn_lookforsigns_12", + "message": "Certo. Faça o que precisar para removê-lo, mas eu não quero lidar com seus ataques mais.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 120 + } + ] + }, + { + "id": "harlenn_sentbyprim_1", + "message": "Sua expressão me diz que você tem sangue em sua mente.", + "replies": [ + { + "text": "Eu fui enviado pelo povo de Prim para pará-lo.", + "nextPhraseID": "harlenn_sentbyprim_2" + }, + { + "text": "Eu fui enviado pelo povo de Prim para pará-lo. No entanto, eu decidi não matá-lo.", + "nextPhraseID": "harlenn_sentbyprim_3" + } + ] + }, + { + "id": "harlenn_sentbyprim_2", + "message": "Parar mim? Ha ha. Muito bem, vamos ver quem é o ser parado aqui.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 90 + } + ], + "replies": [ + { + "text": "Pela a sombra!", + "nextPhraseID": "F" + }, + { + "text": "Vamos lutar!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "harlenn_sentbyprim_3", + "message": "Que interessante ... Por favor, continue.", + "replies": [ + { + "text": "É óbvio que este conflito só vai acabar com mais derramamento de sangue. Isso deve parar por aqui.", + "nextPhraseID": "harlenn_sentbyprim_4" + } + ] + }, + { + "id": "harlenn_sentbyprim_4", + "message": "O que você está propondo?", + "replies": [ + { + "text": "A minha proposta é que você deixe esse acampamento e encontre um novo lar em outro lugar.", + "nextPhraseID": "harlenn_sentbyprim_5" + } + ] + }, + { + "id": "harlenn_sentbyprim_5", + "message": "Agora, por que eu iria querer fazer isso?", + "replies": [ + { + "text": "Estas duas cidades estão sempre lutar uns contra os outros. Se você a deixar, eles vão pensar que eles ganharam, e irão parar seus ataques.", + "nextPhraseID": "harlenn_sentbyprim_6" + } + ] + }, + { + "id": "harlenn_sentbyprim_6", + "message": "Hum, você pode ter uma certa razão.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_sentbyprim_7" + } + ] + }, + { + "id": "harlenn_sentbyprim_7", + "message": "Ok, você me convenceu. Vou deixar o assentamento e procurar encontrar outra moradia. A sobrevivência do meu povo aqui é mais importante do que eu.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_sentbyprim_8" + } + ] + }, + { + "id": "harlenn_sentbyprim_8", + "message": "Obrigado amigo, para fazer-me recuperar o juízo.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 91 + } + ], + "replies": [ + { + "text": "De nada.", + "nextPhraseID": "R" + } + ] + }, + { + "id": "harlenn_killguth_1", + "message": "Olá, novamente. Você já se livrou daquele Guthbered mentiroso, em Prim?", + "replies": [ + { + "text": "Ainda não, mas estou trabalhando nisso.", + "nextPhraseID": "harlenn_lookforsigns_11" + }, + { + "text": "O que eu devo mesmo fazer?", + "nextPhraseID": "harlenn_lookforsigns_7" + }, + { + "text": "Sim, ele está morto.", + "nextPhraseID": "harlenn_killguth_2", + "requires": { + "item": { + "itemID": "guthbered_id", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Sim, ele está desaparecido.", + "nextPhraseID": "harlenn_killguth_2", + "requires": { + "progress": "bwm_agent:131" + } + } + ] + }, + { + "id": "harlenn_killguth_2", + "message": "Ha ha! Ele finalmente se foi! Agora podemos descansar confortavelmente em nosso assentamento.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 149 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_killguth_3" + } + ] + }, + { + "id": "harlenn_killguth_3", + "message": "Eles já não nos atacarão, agora que seu líder mentiroso se foi!", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_killguth_4" + } + ] + }, + { + "id": "harlenn_killguth_4", + "message": "Obrigado amigo. Aqui, temos esses itens como um símbolo de nossa gratidão por sua ajuda.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 150 + }, + { + "rewardType": 1, + "rewardID": "harlenn_reward" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_completed" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_blackwater_herec.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_blackwater_herec.json new file mode 100644 index 000000000..bbaa44a66 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_blackwater_herec.json @@ -0,0 +1,232 @@ +[ + { + "id": "herec_start", + "replies": [ + { + "nextPhraseID": "herec_q5", + "requires": { + "progress": "bwm_wyrms:30" + } + }, + { + "nextPhraseID": "herec_q3", + "requires": { + "progress": "bwm_wyrms:20" + } + }, + { + "nextPhraseID": "herec_q1", + "requires": { + "progress": "bwm_wyrms:10" + } + }, + { + "nextPhraseID": "herec_1" + } + ] + }, + { + "id": "herec_1", + "message": "Bem-vindo, viajante. Você deve ser o que eu ouvi falar, que viajou até a montanha.", + "replies": [ + { + "text": "N", + "nextPhraseID": "herec_2" + } + ] + }, + { + "id": "herec_2", + "message": "Você estaria disposto a me ajudar com uma tarefa?", + "replies": [ + { + "text": "Depende. Que tarefa?", + "nextPhraseID": "herec_4" + }, + { + "text": "Por que eu iria querer ajudá-lo?", + "nextPhraseID": "herec_3" + } + ] + }, + { + "id": "herec_3", + "message": "Ah, um negociador. Eu gosto disso. Se você me ajudar, eu vou oferecer para negociar os frutos do meu trabalho com você. Deve ser mais valioso para você.", + "replies": [ + { + "text": "Bom. Que tarefa que estamos falando aqui?", + "nextPhraseID": "herec_4" + }, + { + "text": "Não, como posso concordar com algo que eu não sei o que é? Eu estou fora.", + "nextPhraseID": "herec_11" + } + ] + }, + { + "id": "herec_4", + "message": "É realmente simples. Estou estudando esses dragões que espreitam fora do assentamento. Estou tentando descobrir os seus pontos fortes, para que eu possa explorar esse conhecimento.", + "replies": [ + { + "text": "N", + "nextPhraseID": "herec_5" + } + ] + }, + { + "id": "herec_5", + "message": "Mas minha especialidade é os estudá-los, e não enfrentá-los.", + "replies": [ + { + "text": "N", + "nextPhraseID": "herec_6" + } + ] + }, + { + "id": "herec_6", + "message": "E é aí onde você entra", + "replies": [ + { + "text": "N", + "nextPhraseID": "herec_7" + } + ] + }, + { + "id": "herec_7", + "message": "Eu preciso de você para coletar algumas amostras deles para mim. Eu ouvi dizer que alguns dos dragões brancos têm garras mais afiadas que podem ser extraídas no momento da morte.", + "replies": [ + { + "text": "N", + "nextPhraseID": "herec_8" + } + ] + }, + { + "id": "herec_8", + "message": "Se você fosse me trazer algumas amostras de as garras dos dragões brancos, isso irá realmente acelerar minhas pesquisas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "herec_9" + } + ] + }, + { + "id": "herec_9", + "message": "Vamos dizer, cinco dessas garras deve ser suficiente.", + "replies": [ + { + "text": "Ok, parece fácil. Vou pegar seus cinco garras de dragões brancos.", + "nextPhraseID": "herec_10" + }, + { + "text": "Claro. Essas coisas não são páreo para mim.", + "nextPhraseID": "herec_10" + }, + { + "text": "De jeito nenhum eu chego perto desses animais novamente.", + "nextPhraseID": "herec_11" + } + ] + }, + { + "id": "herec_10", + "message": "Bom. Obrigado. Por favor, volte logo para que eu possa continuar minha pesquisa sobre estes animais.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_wyrms", + "value": 10 + } + ] + }, + { + "id": "herec_11", + "message": "Eu lhe asseguro que minha pesquisa é importante. Mas a decisão é sua, também a sua perda." + }, + { + "id": "herec_q1", + "message": "Bem-vindo de volta. Como vai a pesquisa?", + "replies": [ + { + "text": "Conte-me novamente o que devo fazer.", + "nextPhraseID": "herec_4" + }, + { + "text": "Eu não encontrei tudo ainda. Mas estou trabalhando nisso.", + "nextPhraseID": "herec_10" + }, + { + "text": "Eu encontrei o que você pediu.", + "nextPhraseID": "herec_q2", + "requires": { + "item": { + "itemID": "bwm_claws", + "quantity": 5, + "requireType": 0 + } + } + } + ] + }, + { + "id": "herec_q2", + "message": "Muito bem feito, meu amigo! Essas garras serão muito valiosas em minha pesquisa.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_wyrms", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "herec_q2_2" + } + ] + }, + { + "id": "herec_q2_2", + "message": "Volte em apenas um minuto e eu vou ter algo pronto para você." + }, + { + "id": "herec_q3", + "message": "Bem-vindo de volta, meu amigo! Boas notícias. Eu destilei com sucesso os fragmentos das garras que você trouxe mais cedo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "herec_q4" + } + ] + }, + { + "id": "herec_q4", + "message": "Agora eu sou capaz de criar poções eficazes que contêm algumas essências dos dragões brancos. Estas poções vão ser muito úteis em enfrentamentos futuros contra esses monstros.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_wyrms", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "herec_q5" + } + ] + }, + { + "id": "herec_q5", + "message": "Gostaria de comprar algumas poções?", + "replies": [ + { + "text": "Claro. Vamos ver o que você tem.", + "nextPhraseID": "S" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_blackwater_kazaul.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_blackwater_kazaul.json new file mode 100644 index 000000000..9f3d4d892 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_blackwater_kazaul.json @@ -0,0 +1,158 @@ +[ + { + "id": "kazaul_guardian", + "message": "Kazaul..", + "replies": [ + { + "text": "O quê?", + "nextPhraseID": "kazaul_guardian_1" + }, + { + "text": "Kazaul, destruidor de sonhos brilhantes.", + "nextPhraseID": "kazaul_guardian_2", + "requires": { + "progress": "kazaul:40" + } + } + ] + }, + { + "id": "kazaul_guardian_1", + "message": "(O guardião parece completamente inconsciente de sua presença)" + }, + { + "id": "kazaul_guardian_2", + "message": "(O guardião olha para você com seus olhos ardentes)", + "replies": [ + { + "text": "Kazaul, profanador do Templo do Elytharan.", + "nextPhraseID": "kazaul_guardian_3" + } + ] + }, + { + "id": "kazaul_guardian_3", + "message": "(Você vê os olhos ardentes do guardião instantaneamente se transformar em uma névoa vermelho escuro)", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 50 + } + ], + "replies": [ + { + "text": "Uma luta, eu estava esperando por isso!", + "nextPhraseID": "F" + }, + { + "text": "Por favor, não me mate!", + "nextPhraseID": "F" + }, + { + "text": "Pela a sombra!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "sign_kazaul", + "replies": [ + { + "nextPhraseID": "sign_kazaul_1", + "requires": { + "progress": "kazaul:60" + } + }, + { + "nextPhraseID": "sign_kazaul_3" + } + ] + }, + { + "id": "sign_kazaul_1", + "message": "Você vê o santuário de Kazaul onde você derramou o frasco de purificador de espírito.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_kazaul_2" + } + ] + }, + { + "id": "sign_kazaul_2", + "message": "A rocha anteriormente brilhante e quente agora está fria como qualquer pedaço de rocha comum." + }, + { + "id": "sign_kazaul_3", + "message": "À sua frente está uma grande rocha polida, que parece ser um santuário.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_kazaul_4" + } + ] + }, + { + "id": "sign_kazaul_4", + "message": "Você pode sentir um calor intenso vindo da rocha, quase como um fogo ardente.", + "replies": [ + { + "text": "Deixe a formação sozinha.", + "nextPhraseID": "X" + }, + { + "text": "Aplica o frasco purificador de espírito na formação.", + "nextPhraseID": "sign_kazaul_5", + "requires": { + "item": { + "itemID": "q_kazaul_vial", + "quantity": 1, + "requireType": 0 + } + } + } + ] + }, + { + "id": "sign_kazaul_5", + "message": "Você suavemente derrama o conteúdo do frasco na formação.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 60 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_kazaul_6" + } + ] + }, + { + "id": "sign_kazaul_6", + "message": "Você ouve um ruído alto das profundezas do santuário. No início, a formação parece não ter sido afetada, mas depois de um tempo você vê o brilho da rocha diminuir lentamente.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_kazaul_7" + } + ] + }, + { + "id": "sign_kazaul_7", + "message": "O processo continua, mais rapidamente, reduzindo o calor gerado na formação.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_kazaul_8" + } + ] + }, + { + "id": "sign_kazaul_8", + "message": "Este deve ser o processo de purificação do santuário Kazaul." + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_blackwater_lower.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_blackwater_lower.json new file mode 100644 index 000000000..2eb570453 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_blackwater_lower.json @@ -0,0 +1,263 @@ +[ + { + "id": "laede", + "replies": [ + { + "nextPhraseID": "laede_1", + "requires": { + "progress": "bwm_agent:240" + } + }, + { + "nextPhraseID": "laede_3" + } + ] + }, + { + "id": "laede_1", + "message": "Você é bem-vindo para descansar aqui se você quiser. Escolha qualquer cama que você desejar.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nondisplay", + "value": 16 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "laede_2" + } + ] + }, + { + "id": "laede_2", + "message": "Devo avisá-lo, no entanto, que tem um canto ali com cheiro de podre. Alguém deve ter derramado algo para ele." + }, + { + "id": "laede_3", + "message": "Viajante, bem-vindo. Estas camas são apenas para moradores de Montanha das Águas Negras." + }, + { + "id": "iducus", + "replies": [ + { + "nextPhraseID": "iducus_1", + "requires": { + "progress": "bwm_agent:240" + } + }, + { + "nextPhraseID": "iducus_2" + } + ] + }, + { + "id": "iducus_1", + "message": "Amigo, bem-vindo. O que eu posso fazer por você?", + "replies": [ + { + "text": "Quais artigos você tem para venda?", + "nextPhraseID": "S" + } + ] + }, + { + "id": "iducus_2", + "message": "Viajante, bem vindo. Vejo que você está olhando para o meu excelente selecção de produtos.", + "replies": [ + { + "text": "N", + "nextPhraseID": "blackwater_notrust" + } + ] + }, + { + "id": "blackwater_priest", + "message": "... Kazaul destruidor, de esperança derramada .. \nNão não é isso.", + "replies": [ + { + "text": "N", + "nextPhraseID": "blackwater_priest_1" + } + ] + }, + { + "id": "blackwater_priest_1", + "message": "Derramado .. atormentar?\nNão não é isso também.", + "replies": [ + { + "text": "N", + "nextPhraseID": "blackwater_priest_2" + } + ] + }, + { + "id": "blackwater_priest_2", + "message": "Argh, eu não consigo lembrar.", + "replies": [ + { + "text": "O que você está fazendo?", + "nextPhraseID": "blackwater_priest_3" + } + ] + }, + { + "id": "blackwater_priest_3", + "message": "Oh, Olá. Não importa. Nada. Estou apenas tentando lembrar de algo. Não se preocupe com isso." + }, + { + "id": "blackwater_guard2", + "message": "Alto! Você não pode passar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "blackwater_guard2_1" + } + ] + }, + { + "id": "blackwater_guard2_1", + "message": "Há algo ali. Você vê isso?", + "replies": [ + { + "text": "N", + "nextPhraseID": "blackwater_guard2_2" + } + ] + }, + { + "id": "blackwater_guard2_2", + "message": "Uma névoa? A Sombra? Tenho certeza de que viu algo se movendo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "blackwater_guard2_3" + } + ] + }, + { + "id": "blackwater_guard2_3", + "message": "Esqueça essas tarefas da guarda. Eu vou ficar aqui.", + "replies": [ + { + "text": "N", + "nextPhraseID": "blackwater_guard2_4" + } + ] + }, + { + "id": "blackwater_guard2_4", + "message": "Ainda bem que bloqueamos a entrada daquela velha cabana." + }, + { + "id": "blackwater_bossguard", + "replies": [ + { + "nextPhraseID": "blackwater_bossguard_2", + "requires": { + "progress": "prim_hunt:90" + } + }, + { + "nextPhraseID": "blackwater_bossguard_1" + } + ] + }, + { + "id": "blackwater_bossguard_1", + "message": "(O guarda lhe dá um olhar condescendente, mas não diz nada)" + }, + { + "id": "blackwater_bossguard_2", + "message": "Ei, eu ficarei de fora de sua luta com o chefe. Não me envolver em seus esquemas." + }, + { + "id": "blackwater_throneguard", + "replies": [ + { + "nextPhraseID": "blackwater_throneguard_5", + "requires": { + "progress": "bwm_agent:240" + } + }, + { + "nextPhraseID": "blackwater_throneguard_5", + "requires": { + "progress": "prim_hunt:140" + } + }, + { + "nextPhraseID": "blackwater_throneguard_1" + } + ] + }, + { + "id": "blackwater_throneguard_1", + "message": "Apenas os residentes e membros da Montanha das Águas Negras ou aliados são permitidos aqui.", + "replies": [ + { + "text": "Aqui, tenho uma autorização por escrito para entrar.", + "nextPhraseID": "blackwater_throneguard_3", + "requires": { + "item": { + "itemID": "bwm_permit", + "quantity": 1, + "requireType": 0 + } + } + } + ] + }, + { + "id": "blackwater_throneguard_2", + "message": "Vou deixá-lo passar. Por favor, vá em frente.", + "replies": [ + { + "text": "Obrigado.", + "nextPhraseID": "R" + }, + { + "text": "Sim, saia do meu caminho.", + "nextPhraseID": "R" + } + ] + }, + { + "id": "blackwater_throneguard_3", + "message": "Autorização, você diz? Hum, deixe-me ver isso.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 140 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "blackwater_throneguard_4" + } + ] + }, + { + "id": "blackwater_throneguard_4", + "message": "Bem, tem a assinatura e tudo. Eu acho que está tudo certo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "blackwater_throneguard_2" + } + ] + }, + { + "id": "blackwater_throneguard_5", + "message": "Ah, é você.", + "replies": [ + { + "text": "N", + "nextPhraseID": "blackwater_throneguard_2" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_blackwater_signs.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_blackwater_signs.json new file mode 100644 index 000000000..ceeb661cc --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_blackwater_signs.json @@ -0,0 +1,281 @@ +[ + { + "id": "sign_blackwater10", + "message": "Norte: Prim\nOeste: mina Elm\nLeste: (o texto é ilegível devido a várias marcas de arranhões na madeira) \nSouth: Stoutford" + }, + { + "id": "keyarea_bwm_agent_1", + "message": "O homem grita com você: Você! Por favor, ajude! Você tem que nos ajudar!" + }, + { + "id": "sign_blackwater0", + "message": "Leste: Fallhaven\nSudoeste: Stoutford\nNordeste: Montanha das Águas Negras" + }, + { + "id": "sign_prim_n", + "message": "Aviso a todos os cidadãos: Não é permitido entrar nas minas à noite! Além disso, escalar o lado da montanha está estritamente proibido, após o acidente com Lorn." + }, + { + "id": "sign_prim_s", + "message": "Pessoas desaparecidas:\n- Dualan\n- Lornn\n- Kamelio" + }, + { + "id": "sign_blackwater13", + "message": "Nenhuma entrada é permitida.\nAssinado por Guthbered de Prim." + }, + { + "id": "sign_blackwater30", + "replies": [ + { + "nextPhraseID": "sign_blackwater30_qstarted", + "requires": { + "progress": "kazaul:10" + } + }, + { + "nextPhraseID": "sign_blackwater30_notstarted" + } + ] + }, + { + "id": "sign_blackwater30_qstarted", + "message": "Você encontra um pedaço de papel parcialmente congelado na neve. Você mal consegue ler a frase 'Kazaul, profanador do Templo Elytharan' no papel.\nEsse papel molhado deve ser a primeira metade do canto para o ritual Kazaul.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 21 + } + ] + }, + { + "id": "sign_blackwater30_notstarted", + "message": "Você encontra um pedaço de papel parcialmente congelado na neve. Você mal consegue ler a frase 'Kazaul, profanador do Templo Elytharan' no papel molhado." + }, + { + "id": "sign_blackwater32", + "message": "O aviso está severamente danificado com o que parece como marcas de mordida de algo com dentes realmente afiados. Você não pode identificar quaisquer palavras legíveis." + }, + { + "id": "sign_blackwater38_1", + "replies": [ + { + "nextPhraseID": "sign_blackwater38_1_qstarted", + "requires": { + "progress": "kazaul:10" + } + }, + { + "nextPhraseID": "sign_blackwater38_notstarted" + } + ] + }, + { + "id": "sign_blackwater38_notstarted", + "message": "Você encontra um pedaço de papel descrevendo algum tipo de ritual." + }, + { + "id": "sign_blackwater38_1_qstarted", + "message": "Você encontra um pedaço de papel que descreve o início de alguma forma de ritual.\nIsso deve ser a primeira parte do ritual Kazaul.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 25 + } + ] + }, + { + "id": "sign_blackwater38_2", + "replies": [ + { + "nextPhraseID": "sign_blackwater38_2_qstarted", + "requires": { + "progress": "kazaul:10" + } + }, + { + "nextPhraseID": "sign_blackwater38_notstarted" + } + ] + }, + { + "id": "sign_blackwater38_2_qstarted", + "message": "Você encontra um pedaço de papel que descreve a parte principal do ritual.\nIsso deve ser a segunda parte do ritual Kazaul.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 26 + } + ] + }, + { + "id": "sign_blackwater38_3", + "replies": [ + { + "nextPhraseID": "sign_blackwater38_3_qstarted", + "requires": { + "progress": "kazaul:10" + } + }, + { + "nextPhraseID": "sign_blackwater38_notstarted" + } + ] + }, + { + "id": "sign_blackwater38_3_qstarted", + "message": "Você encontra um pedaço de papel que descreve o fim do ritual.\nIsso deve ser a terceira parte do ritual Kazaul.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 27 + } + ] + }, + { + "id": "sign_blackwater16", + "replies": [ + { + "nextPhraseID": "sign_blackwater16_qstarted", + "requires": { + "progress": "kazaul:10" + } + }, + { + "nextPhraseID": "sign_blackwater16_notstarted" + } + ] + }, + { + "id": "sign_blackwater16_qstarted", + "message": "Você encontra um pedaço de papel rasgado preso no mato grosso. Você mal pôde identificar a frase 'Kazaul, destruidor de sonhos brilhantes' no papel.\nEsse pedaço rasgado deve ser a segunda metade do canto para o ritual Kazaul.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 22 + } + ] + }, + { + "id": "sign_blackwater16_notstarted", + "message": "Você encontra um pedaço de papel rasgado preso no mato grosso. Você mal pôde identificar a frase 'Kazaul, destruidor de sonhos brilhantes' no papel rasgado." + }, + { + "id": "bwm_sleephall_1", + "message": "Você não tem permissão para descansar aqui. Apenas residentes das Águas Negras ou seus aliados estão autorizados a descansar aqui." + }, + { + "id": "keyarea_bwm_agent_60", + "message": "Você tem que falar com o homem antes de prosseguir." + }, + { + "id": "sign_blackwater50_left", + "message": "Isso leva para uma área não habitada próxima de Prim." + }, + { + "id": "sign_blackwater50_right", + "message": "Isto leva de volta para a povoação da Montanha das Águas Negras." + }, + { + "id": "sign_blackwater29", + "replies": [ + { + "nextPhraseID": "sign_blackwater29_qstarted", + "requires": { + "progress": "bwm_agent:95" + } + }, + { + "nextPhraseID": "sign_blackwater29_notstarted" + } + ] + }, + { + "id": "sign_blackwater29_qstarted", + "message": "Você tenta esgueirar-se, tanto quanto possível, para não ganhar nenhuma atenção dos guardas enquanto procura algo na pilha de papéis.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_blackwater29_qstarted_1" + } + ] + }, + { + "id": "sign_blackwater29_notstarted", + "message": "O guarda grita com você: \n\nEi você! Ficar longe daí!" + }, + { + "id": "sign_blackwater29_qstarted_1", + "message": "Entre os papéis, você encontra os planos de recrutamento de mercenários para Prim e de treinamento de combatentes para um ataque maior sobre o assentamento da Montanha das Águas Negras.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 100 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_blackwater29_qstarted_2" + } + ] + }, + { + "id": "sign_blackwater29_qstarted_2", + "message": "Esta deve ser a informação que Harlenn quer." + }, + { + "id": "sign_blackwater45", + "replies": [ + { + "nextPhraseID": "sign_blackwater45_qstarted", + "requires": { + "progress": "prim_hunt:50" + } + }, + { + "nextPhraseID": "sign_blackwater45_notstarted" + } + ] + }, + { + "id": "sign_blackwater45_qstarted", + "message": "Você tenta esgueirar-se, tanto quanto possível, para não ganhar nenhuma atenção do guarda enquanto procura algo na pilha de papéis.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_blackwater45_qstarted_1" + } + ] + }, + { + "id": "sign_blackwater45_notstarted", + "message": "Assim que você se aproxima da mesa, o guarda grita com você:\n\nEi você! Fique longe daí!" + }, + { + "id": "sign_blackwater45_qstarted_1", + "message": "Entre os papéis, você encontra o que parece ser os planos para treinar combatentes e planos para um ataque contra o que parece ser Prim.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 60 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_blackwater45_qstarted_2" + } + ] + }, + { + "id": "sign_blackwater45_qstarted_2", + "message": "Esta deve ser a informação que Guthbered quer." + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_blackwater_throdna.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_blackwater_throdna.json new file mode 100644 index 000000000..7aafca27b --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_blackwater_throdna.json @@ -0,0 +1,640 @@ +[ + { + "id": "throdna_start", + "replies": [ + { + "nextPhraseID": "throdna_purify_4", + "requires": { + "progress": "kazaul:100" + } + }, + { + "nextPhraseID": "throdna_purify_1", + "requires": { + "progress": "kazaul:41" + } + }, + { + "nextPhraseID": "throdna_return_3", + "requires": { + "progress": "kazaul:30" + } + }, + { + "nextPhraseID": "throdna_return_1", + "requires": { + "progress": "kazaul:10" + } + }, + { + "nextPhraseID": "throdna_1" + } + ] + }, + { + "id": "throdna_1", + "message": "Kazaul .. Sombra .. o que era mesmo?", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_2" + } + ] + }, + { + "id": "throdna_2", + "message": "Ah, um visitante. Olá lá. Eu não vi você por aqui antes. Eles permitiram que você viesse aqui?", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_3" + } + ] + }, + { + "id": "throdna_3", + "message": "É claro que eles permitiram. Estou apenas divagando. Harlenn e sua turma sempre mantêm seus deveres mundanos sob controle.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_4" + } + ] + }, + { + "id": "throdna_4", + "message": "Então, quem é você, hein? Provavelmente está aqui para me incomodar com alguma queixa mundana sobre a necessidade de mais recursos para o assentamento ou alguém reclamando do vento frio do lado de fora de novo?", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_loop_1" + } + ] + }, + { + "id": "throdna_loop_1", + "message": "O que você quer?", + "replies": [ + { + "text": "Que lugar é esse?", + "nextPhraseID": "throdna_6" + }, + { + "text": "Quem é você?", + "nextPhraseID": "throdna_7" + }, + { + "text": "O que foi que você falou quando cheguei? Kazaul?", + "nextPhraseID": "throdna_8" + }, + { + "text": "Você está ciente de que há uma rivalidade acontecendo entre esse assentamento e Prim?", + "nextPhraseID": "throdna_5" + } + ] + }, + { + "id": "throdna_5", + "message": "E lá vai você com seus problemas mundanos. Eu digo a você, seus problemas mundanos não me interessam nem um pouco.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_6" + } + ] + }, + { + "id": "throdna_6", + "message": "Esta é a câmara dos magos da Montanha das Águas Negras. Dedicamos o nosso tempo para os estudos da Sombra e seus descendentes.", + "replies": [ + { + "text": "Descendentes?", + "nextPhraseID": "throdna_8" + }, + { + "text": "Vamos falar de outras questões.", + "nextPhraseID": "throdna_loop_1" + } + ] + }, + { + "id": "throdna_7", + "message": "Eu sou Throdna. Uma das messoas mais sábias nesse setor, caso você me pergunte.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_loop_1" + } + ] + }, + { + "id": "throdna_8", + "message": "Kazaul, a cria da Sombra de medula vermelha.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 8 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_9" + } + ] + }, + { + "id": "throdna_9", + "message": "Estamos tentando ler tudo o que puder sobre Kazaul, e o ritual. Parece que pode ser tarde demais.", + "replies": [ + { + "text": "O que quer dizer?", + "nextPhraseID": "throdna_10" + } + ] + }, + { + "id": "throdna_10", + "message": "O ritual. Acreditamos que Kazaul irá se manifestar em nossa presença em breve.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_11" + } + ] + }, + { + "id": "throdna_11", + "message": "Temos de aprender mais sobre o ritual Kazaul, para ganhar seu poder e aprender a usá-lo para nossos propósitos.", + "replies": [ + { + "text": "Posso ajudar de alguma forma?", + "nextPhraseID": "throdna_12" + }, + { + "text": "O que você pretende fazer?", + "nextPhraseID": "throdna_12" + } + ] + }, + { + "id": "throdna_12", + "message": "Como eu disse, nós queremos aprender mais sobre o próprio ritual.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 9 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_13" + } + ] + }, + { + "id": "throdna_13", + "message": "Tempos atrás, estávamos à beira de ter em nossas mãos todo o ritual em si, mas o mensageiro diante em circunstâncias interessantes durante sua viagem até aqui.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_14" + } + ] + }, + { + "id": "throdna_14", + "message": "Nós sabíamos que ele tinha as partes do ritual completo com ele, mas como ele foi morto e nós não pudemor ir atrás dele, por causa dos monstros - suas anotações ficaram inacessíveis para nós.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_15" + } + ] + }, + { + "id": "throdna_15", + "message": "De acordo com nossas fontes, devem haver cinco partes do ritual espalhadas por toda a montanha. Três deles descrevendo o ritual em si, e duas descrevendo o canto Kazaul usado para chamar o guardião.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_15_1" + } + ] + }, + { + "id": "throdna_16", + "message": "Hum, talvez você poderia ter-nos um bom uso ...", + "replies": [ + { + "text": "Eu ficaria feliz em ajudar.", + "nextPhraseID": "throdna_18" + }, + { + "text": "Parece perigoso, mas vou fazê-lo.", + "nextPhraseID": "throdna_18" + }, + { + "text": "Mantenha o seu ritual da sombra para vocês mesmo. Eu não quero ser envolvido nisto.", + "nextPhraseID": "throdna_17" + } + ] + }, + { + "id": "throdna_17", + "message": "Bem, vamos ter de encontrar outra pessoa então." + }, + { + "id": "throdna_18", + "message": "Sim, você pode ser capaz de ajudar. Não que você realmente tenha realmente alguma escolha.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_19" + } + ] + }, + { + "id": "throdna_19", + "message": "OK. Encontre-me os fragmentos do ritual que o antigo mensageiro estava trazendo. Eles devem ser encontrados em algum lugar no caminho de acesso à Montanha das Águas Negras.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 10 + } + ], + "replies": [ + { + "text": "Vou voltar com os pedaços do ritual.", + "nextPhraseID": "throdna_20" + } + ] + }, + { + "id": "throdna_20", + "message": "Sim, você irá.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 11 + } + ] + }, + { + "id": "throdna_return_1", + "message": "Olá novamente. Eu espero que você venha aqui me dizer que tem as cinco partes do ritual.", + "replies": [ + { + "text": "Eu ainda estou procurando por elas.", + "nextPhraseID": "throdna_return_2" + }, + { + "text": "Quantos pedaços eu tenho que encontrar?", + "nextPhraseID": "throdna_15" + }, + { + "text": "Conte-me novamente o que devo fazer.", + "nextPhraseID": "throdna_12" + }, + { + "text": "Sim, eu acho que encontrei todos eles.", + "nextPhraseID": "throdna_check_1", + "requires": { + "progress": "kazaul:21" + } + } + ] + }, + { + "id": "throdna_return_2", + "message": "Então se apresse e vá encontrá-los! Por quê você ainda está parado aqui?" + }, + { + "id": "throdna_return_3", + "message": "Você realmente encontrou todas as cinco partes? Acho que eu deveria agradecer. Pois então. Obrigado.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_return_4" + } + ] + }, + { + "id": "throdna_15_1", + "replies": [ + { + "nextPhraseID": "X", + "requires": { + "progress": "kazaul:10" + } + }, + { + "nextPhraseID": "throdna_16" + } + ] + }, + { + "id": "throdna_check_1", + "replies": [ + { + "nextPhraseID": "throdna_check_2", + "requires": { + "progress": "kazaul:22" + } + }, + { + "nextPhraseID": "throdna_check_fail" + } + ] + }, + { + "id": "throdna_check_2", + "replies": [ + { + "nextPhraseID": "throdna_check_3", + "requires": { + "progress": "kazaul:25" + } + }, + { + "nextPhraseID": "throdna_check_fail" + } + ] + }, + { + "id": "throdna_check_3", + "replies": [ + { + "nextPhraseID": "throdna_check_4", + "requires": { + "progress": "kazaul:26" + } + }, + { + "nextPhraseID": "throdna_check_fail" + } + ] + }, + { + "id": "throdna_check_4", + "replies": [ + { + "nextPhraseID": "throdna_return_3", + "requires": { + "progress": "kazaul:27" + } + }, + { + "nextPhraseID": "throdna_check_fail" + } + ] + }, + { + "id": "throdna_check_fail", + "message": "Parece que você não encontrou ainda todas as cinco partes.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_15" + } + ] + }, + { + "id": "throdna_return_4", + "message": "Temos assuntos mais urgentes para nos concentrarmos. Como mencionado anteriormente, acreditamos que Kazaul irá se manifestar em nossa presença em breve.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_return_5" + } + ] + }, + { + "id": "throdna_return_5", + "message": "Se isso vier a acontecer, não poderíamos completar a nossa pesquisa sobre o ritual ou sobre Kazaul, e todos os nossos esforços estariam perdidos.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_return_6" + } + ] + }, + { + "id": "throdna_return_6", + "message": "Portanto, temos a intenção de retardar o processo, tanto quanto pudermos, até que tenhamos aprendido sobre seus poderes.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_return_7" + } + ] + }, + { + "id": "throdna_return_7", + "message": "Você pode ser útil para nós aqui novamente.", + "replies": [ + { + "text": "Eu estou pronto para qualquer coisa.", + "nextPhraseID": "throdna_return_8" + }, + { + "text": "O que você precisa de mim?", + "nextPhraseID": "throdna_return_8" + }, + { + "text": "Espero que envolva mais mortes e saques.", + "nextPhraseID": "throdna_return_8" + } + ] + }, + { + "id": "throdna_return_8", + "message": "Precisamos de você para fazer duas coisas. Primeiro, você deve encontrar o santuário de Kazaul. Nossos batedores dizem-nos que o santuário deve estar localizado em algum lugar perto da base da Montanha das Águas Negras.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_return_9" + } + ] + }, + { + "id": "throdna_return_9", + "message": "No entanto, todas as passagens para o santuário estão 'envoltas em sombras' de acordo com nossos batedores. Eu não tenho certeza o que isso significa.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_return_10" + } + ] + }, + { + "id": "throdna_return_10", + "message": "Segundo, nós precisamos que você pegue um frasco de purificador de espírito e aplique ao santuário.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_return_11_select" + } + ] + }, + { + "id": "throdna_return_11_select", + "replies": [ + { + "nextPhraseID": "throdna_return_13", + "requires": { + "progress": "kazaul:41" + } + }, + { + "nextPhraseID": "throdna_return_11" + } + ] + }, + { + "id": "throdna_return_11", + "message": "Este frasco é um frasco de purificador de espírito. Deve atrasar o processo o tempo suficiente para que sejamos capazes de continuar nossa pesquisa.", + "replies": [ + { + "text": "Parece fácil. Eu vou fazer isso.", + "nextPhraseID": "throdna_return_12" + }, + { + "text": "Parece perigoso, mas vou fazê-lo.", + "nextPhraseID": "throdna_return_12" + }, + { + "text": "Isso soa como uma armadilha. Eu não vou aceitar fazer seu trabalho sujo.", + "nextPhraseID": "throdna_17" + } + ] + }, + { + "id": "throdna_return_12", + "message": "Bom, aqui está o frasco. Agora se apresse.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 41 + }, + { + "rewardType": 1, + "rewardID": "throdna_items" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_return_13" + } + ] + }, + { + "id": "throdna_return_13", + "message": "Volte para mim assim que tiver concluído sua tarefa." + }, + { + "id": "throdna_purify_1", + "message": "Olá novamente. Eu espero que você esteja aqui para me dizer que você purificou o santuário de Kazaul.", + "replies": [ + { + "text": "Sim, está feito.", + "nextPhraseID": "throdna_purify_3", + "requires": { + "progress": "kazaul:60" + } + }, + { + "text": "Não, ainda não.", + "nextPhraseID": "throdna_purify_2" + }, + { + "text": "Conte-me novamente o que devo fazer.", + "nextPhraseID": "throdna_return_8" + } + ] + }, + { + "id": "throdna_purify_2", + "message": "Então se apresse e leve o frasco para o santuário! Por quê você ainda está parado por aqui?" + }, + { + "id": "throdna_purify_3", + "message": "Bom. Temos pressa em continuar nossa pesquisa sobre Kazaul.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 100 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_purify_4" + } + ] + }, + { + "id": "throdna_purify_4", + "message": "Você deve sair daqui e permitir que nos concentremos em nosso trabalho.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_purify_5" + } + ] + }, + { + "id": "throdna_purify_5", + "message": ".. Kazaul, destruidor de sonhos brilhantes ..", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_purify_6" + } + ] + }, + { + "id": "throdna_purify_6", + "message": ".. Kazaul .. Sombra ..", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_purify_7" + } + ] + }, + { + "id": "throdna_purify_7", + "message": "(Throdna continua a resmungar sobre sobre Kazaul, mas você não pode fazer quaisquer outras palavras)" + }, + { + "id": "throdna_guard", + "message": "Mantenha sua voz baixa, enquanto estiver na câmara interior." + }, + { + "id": "blackwater_acolyte", + "message": "Você também está olhando para se tornar um com a Sombra?" + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_blackwater_upper.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_blackwater_upper.json new file mode 100644 index 000000000..c3227660d --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_blackwater_upper.json @@ -0,0 +1,122 @@ +[ + { + "id": "blackwater_entranceguard", + "message": "Ah, um recém-chegado. Bom! Eu espero que você esteja aqui para nos ajudar com os nossos problemas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "blackwater_guard1" + } + ] + }, + { + "id": "blackwater_guard1", + "message": "Fique longe de problemas e as dificuldades vão ficar longe de você." + }, + { + "id": "blackwater_guest1", + "message": "Aqui é um ótimo lugar, não?" + }, + { + "id": "blackwater_guest2", + "message": "Teehee. Poções Mazeg para fazer você sentir formigamento e engraçado." + }, + { + "id": "blackwater_cook", + "message": "Sai da minha cozinha! Sente-se e eu vou chegar até você a tempo." + }, + { + "id": "keneg", + "message": "Batendo. Chiando.", + "replies": [ + { + "text": "N", + "nextPhraseID": "keneg_1" + } + ] + }, + { + "id": "keneg_1", + "message": "Você tem quee fugir!", + "replies": [ + { + "text": "N", + "nextPhraseID": "keneg_2" + } + ] + }, + { + "id": "keneg_2", + "message": "Os monstros, eles vêm à noite.", + "replies": [ + { + "text": "N", + "nextPhraseID": "keneg_3" + } + ] + }, + { + "id": "keneg_3", + "message": "*Parecendo nervoso* Vá se esconder." + }, + { + "id": "blackwater_notrust", + "message": "Independentemente disso, eu não posso te ajudar. Meus serviços são apenas para residentes da Montanha das Águas Negras, e eu não confio em você o suficiente ainda." + }, + { + "id": "waeges", + "replies": [ + { + "nextPhraseID": "waeges_1", + "requires": { + "progress": "bwm_agent:240" + } + }, + { + "nextPhraseID": "waeges_2" + } + ] + }, + { + "id": "waeges_1", + "message": "Amigo Bem-vindo. O que eu posso fazer por você?", + "replies": [ + { + "text": "Que armas você tem para venda?", + "nextPhraseID": "S" + } + ] + }, + { + "id": "waeges_2", + "message": "Viajante, bem-vindo. Vejo que você está olhando para a minha boa selecção de armas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "blackwater_notrust" + } + ] + }, + { + "id": "blackwater_fighter", + "message": "Eu não tenho tempo para você, garoto. Tem que praticar minhas habilidades." + }, + { + "id": "ungorm", + "message": "... mas enquanto as forças estavam se retirando, a maior parte da ...", + "replies": [ + { + "text": "N", + "nextPhraseID": "ungorm_1" + } + ] + }, + { + "id": "ungorm_1", + "message": "Oh. Um jovem. Olá. Por favor, não perturbe os meus alunos, enquanto eles estão estudando." + }, + { + "id": "blackwater_pupil", + "message": "Desculpe, eu não posso falar agora." + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_buceth.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_buceth.json new file mode 100644 index 000000000..744d8f8be --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_buceth.json @@ -0,0 +1,746 @@ +[ + { + "id": "buceth", + "replies": [ + { + "nextPhraseID": "buceth_complete_1", + "requires": { + "progress": "loneford:60" + } + }, + { + "nextPhraseID": "buceth_fight_1", + "requires": { + "progress": "loneford:50" + } + }, + { + "nextPhraseID": "buceth_story_3", + "requires": { + "progress": "loneford:45" + } + }, + { + "nextPhraseID": "buceth_follow_1", + "requires": { + "progress": "loneford:42" + } + }, + { + "nextPhraseID": "buceth_bribed_1", + "requires": { + "progress": "loneford:41" + } + }, + { + "nextPhraseID": "buceth_1" + } + ] + }, + { + "id": "buceth_bribed_1", + "message": "Você de novo. Obrigado pelo ouro antes.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_story_1" + } + ] + }, + { + "id": "buceth_follow_1", + "message": "Bem-vindo de volta meu amigo. Caminhe com a Sombra.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_story_1" + } + ] + }, + { + "id": "buceth_1", + "message": "A Sombra esteja com você.", + "replies": [ + { + "text": "Eu sei do seu negócio no poço à noite posterior à eclosão da doença.", + "nextPhraseID": "buceth_2", + "requires": { + "progress": "loneford:35" + } + }, + { + "text": "Você pode me dizer mais sobre a Sombra?", + "nextPhraseID": "priest_shadow_1" + } + ] + }, + { + "id": "buceth_2", + "message": "Ah, eu tenho certeza que você sabe. Mas o que prova que você tem, hein? Alguma coisa que os guardas acreditariam?", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_3" + } + ] + }, + { + "id": "buceth_3", + "message": "Deixe-me perguntar uma coisa primeiro, e podemos falar depois disso.", + "replies": [ + { + "text": "Ok, o que?", + "nextPhraseID": "buceth_4" + }, + { + "text": "Que tal um pouco de ouro, ajudaria a fazê-lo falar?", + "nextPhraseID": "buceth_gold_1" + } + ] + }, + { + "id": "buceth_4", + "message": "Deixe-me começar por contar-lhe uma história.", + "replies": [ + { + "text": "Vá em frente", + "nextPhraseID": "buceth_5" + }, + { + "text": "Deixe-me adivinhar, esta história vai demorar uma eternidade para ouvir. Que tal eu dar-lhe um pouco de ouro, em vez disso, e podemor ir direto ao que você estava fazendo no poço.", + "nextPhraseID": "buceth_gold_1" + } + ] + }, + { + "id": "buceth_gold_1", + "message": "Hm, isso pode ser uma proposta interessante. Quanto ouro está sugerindo?", + "replies": [ + { + "text": "Aqui tem 10 moedas de ouro, pegue.", + "nextPhraseID": "buceth_gold_no", + "requires": { + "item": { + "itemID": "gold", + "quantity": 10, + "requireType": 0 + } + } + }, + { + "text": "Aqui está 100 moedas de ouro, pegue.", + "nextPhraseID": "buceth_gold_no", + "requires": { + "item": { + "itemID": "gold", + "quantity": 100, + "requireType": 0 + } + } + }, + { + "text": "Aqui está 250 moedas de ouro, pegue.", + "nextPhraseID": "buceth_gold_no", + "requires": { + "item": { + "itemID": "gold", + "quantity": 250, + "requireType": 0 + } + } + }, + { + "text": "Aqui está 500 moedas de ouro, pegue.", + "nextPhraseID": "buceth_gold_no", + "requires": { + "item": { + "itemID": "gold", + "quantity": 500, + "requireType": 0 + } + } + }, + { + "text": "Aqui está 1000 moedas de ouro, pegue.", + "nextPhraseID": "buceth_gold_yes", + "requires": { + "item": { + "itemID": "gold", + "quantity": 1000, + "requireType": 0 + } + } + }, + { + "text": "Aqui está 2000 moedas de ouro, pegue.", + "nextPhraseID": "buceth_gold_yes", + "requires": { + "item": { + "itemID": "gold", + "quantity": 2000, + "requireType": 0 + } + } + } + ] + }, + { + "id": "buceth_gold_no", + "message": "Hrmpf. Obrigado pelo ouro, mas eu não estou interessado em falar com você. Agora, por favor, deixe." + }, + { + "id": "buceth_gold_yes", + "message": "Você parece perceber o verdadeiro valor da Sombra. Sim, isso vai fazer muito bem, obrigado.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 41 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_story_1" + } + ] + }, + { + "id": "buceth_5", + "message": "Vamos supor que você vive em uma aldeia que, em sua maior parte, é auto-suficiente. Sua aldeia é auto-sustentável e as colheitas foram boas durante alguns anos.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_6" + } + ] + }, + { + "id": "buceth_6", + "message": "Com as poucas exceções de algumas lutas aqui e ali entre os moradores por causa de mal-entendidos, em geral, a sua aldeia é uma aldeia simpática e serena.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_7" + } + ] + }, + { + "id": "buceth_7", + "message": "Você trabalha na mesma profissão que seus pais, que por sua vez trabalhavam nas mesmas profissões dos pais deles.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_8" + } + ] + }, + { + "id": "buceth_8", + "message": "Vamos supor também que a forma como você conduz seus negócios é a mesma maneira que as pessoas da vila conduziam seus negócios em gerações passadas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_9" + } + ] + }, + { + "id": "buceth_9", + "message": "Todos respeitam um ao outro na vila, e seu líder eleito faz um bom trabalho em manter os interesses de todos satisfeitos, e, ao mesmo tempo, seja razoavelmente justo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_10" + } + ] + }, + { + "id": "buceth_10", + "message": "Então, um dia, um grupo de homens vêm andando para a vila. Armaduras brilhantes, dentes brancos, cabelos penteados, barbas aparadas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_11" + } + ] + }, + { + "id": "buceth_11", + "message": "Os homens afirmam que o senhor deles é dono desta terra, incluindo a sua aldeia.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_12" + } + ] + }, + { + "id": "buceth_12", + "message": "Eles alegam que mantêm a terra livre de malfeitores e criaturas do mal.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_13" + } + ] + }, + { + "id": "buceth_13", + "message": "Por sua ajuda na proteção de sua aldeia, eles pedem para a aldeia compensá-los com uma parte da colheita.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_14" + } + ] + }, + { + "id": "buceth_14", + "message": "Agora, me diga. Você apoiaria esses homens por concordar com seus termos?", + "replies": [ + { + "text": "Sim.", + "nextPhraseID": "buceth_15" + }, + { + "text": "Não.", + "nextPhraseID": "buceth_15" + }, + { + "text": "Eu não sei.", + "nextPhraseID": "buceth_dontknow" + } + ] + }, + { + "id": "buceth_dontknow", + "message": "Lamento ouvir isso. Você deve limpar a sua mente de preconceitos e depois tornar a mim. Então, talvez possa ser capaz de falar mais.", + "replies": [ + { + "text": "Ok, adeus.", + "nextPhraseID": "X" + }, + { + "text": "Que tal eu dar-lhe um pouco de ouro em vez disso?", + "nextPhraseID": "buceth_gold_1" + } + ] + }, + { + "id": "buceth_15", + "message": "Proposta interessante.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_16" + } + ] + }, + { + "id": "buceth_16", + "message": "Deixe-me continuar a história do nosso caso hipotético.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_17" + } + ] + }, + { + "id": "buceth_17", + "message": "Um pouco mais tarde, os homens retornam. Explicam que alguns dos métodos que são utilizados na aldeia já foram proibidos em todo o reino.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_18" + } + ] + }, + { + "id": "buceth_18", + "message": "Sem entrar em detalhes, vamos dizer que estes são os métodos que têm sido utilizados pelas gerações passadas de sua aldeia.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_19" + } + ] + }, + { + "id": "buceth_19", + "message": "Mudar a forma como as coisas são feitas sem esses métodos vai exigir um grande esforço. Um monte de pessoas na aldeia estão chateadas por causa dessas notícias trazidas por esses homens.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_20" + } + ] + }, + { + "id": "buceth_20", + "message": "Agora, me diga. Você iria, em segredo, continuar usando os velhos métodos que suas gerações passadas usaram, ou você iria, ao invés, trocar para a nova forma que esses homens estão defendendo?", + "replies": [ + { + "text": "gostaria de continuar usando as velhas formas em segredo", + "nextPhraseID": "buceth_21_1" + }, + { + "text": "gostaria de continuar usando as velhas, e lutar contra a decisão que proibiu-as em primeiro lugar", + "nextPhraseID": "buceth_21_2" + }, + { + "text": "Eu só iria usar os métodos que são permitidos", + "nextPhraseID": "buceth_22" + }, + { + "text": "Gostaria de seguir a lei", + "nextPhraseID": "buceth_22" + }, + { + "text": "Eu não posso decidir sem conhecer mais detalhes", + "nextPhraseID": "buceth_dontknow" + } + ] + }, + { + "id": "buceth_21_1", + "message": "Interessante.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_25" + } + ] + }, + { + "id": "buceth_21_2", + "message": "Fico feliz em saber que existem pessoas por aí que estejão dispostas a defender o que é certo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_25" + } + ] + }, + { + "id": "buceth_22", + "message": "Interessante. Você tem uma visão diferente do mundo do que eu e os sacerdotes de Nor city temos.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_23" + } + ] + }, + { + "id": "buceth_23", + "message": "Você, é claro, tem direito à sua opinião, mas você deve saber que sua opinião pode entrar em conflito com a Sombra.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_24" + } + ] + }, + { + "id": "buceth_24", + "message": "Você queria saber sobre algum assunto que você me acusa. Como você não tem nenhuma prova, eu vou declarar inocência. Eu sei que a minha consciência está limpa.", + "replies": [ + { + "text": "Ok, adeus.", + "nextPhraseID": "X" + }, + { + "text": "Bom. Que tal eu dar-lhe um pouco de ouro em vez disso, isso faria você falar?", + "nextPhraseID": "buceth_gold_1" + } + ] + }, + { + "id": "buceth_25", + "message": "As suas opiniões coincidem com aqueles que eu e os outros sacerdotes de Nor City acreditamos. Diga-me, você estaria interessado em seguir o brilho da sombra?", + "replies": [ + { + "text": "Eu estou pronto para seguir a Sombra.", + "nextPhraseID": "buceth_27" + }, + { + "text": "Como posso concordar com algo sem saber o que isso implica?", + "nextPhraseID": "buceth_26" + }, + { + "text": "Não, eu vou seguir o meu caminho.", + "nextPhraseID": "buceth_decline" + }, + { + "text": "Não, eu vou seguir o meu caminho. Sua estúpida Sombra é apenas blá-blá-blá e palavras bonitas.", + "nextPhraseID": "buceth_decline" + } + ] + }, + { + "id": "buceth_26", + "message": "Se as respostas que deu anteriormente eram de fato os seus pontos de vista, então eu posso garantir-vos que o seu caminho que é guiado pela Sombra é o caminho certo.", + "replies": [ + { + "text": "Eu estou pronto para seguir o Sombra.", + "nextPhraseID": "buceth_27" + }, + { + "text": "Não, eu vou seguir o meu caminho.", + "nextPhraseID": "buceth_decline" + }, + { + "text": "Não, eu vou seguir o meu caminho. Sua estúpida Sombra é apenas blá-blá-blá e palavras bonitas.", + "nextPhraseID": "buceth_decline" + } + ] + }, + { + "id": "buceth_decline", + "message": "Lamento ouvir isso. Eu acho que nós não compartilham pontos de vista, depois de tudo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_24" + } + ] + }, + { + "id": "buceth_27", + "message": "Eu estou contente de ouvir isso. Mas então, eu tinha a sensação de o tempo todo que você diria isso desde o início.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 42 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_story_1" + } + ] + }, + { + "id": "buceth_story_1", + "message": "Você queria me perguntar alguma coisa?", + "replies": [ + { + "text": "O que você estava fazendo no poço durante a noite?", + "nextPhraseID": "buceth_story_2" + } + ] + }, + { + "id": "buceth_story_2", + "message": "Deixe-me dizer-lhe primeiro o meu plano.", + "replies": [ + { + "text": "Ótimo. Outra história sem fim.", + "nextPhraseID": "buceth_story_3" + }, + { + "text": "Por favor, vá em frente.", + "nextPhraseID": "buceth_story_3" + } + ] + }, + { + "id": "buceth_story_3", + "message": "Fui designado por sacerdotes de Nor City para ajudar a guiar o povo de Loneford para a Sombra. Nossa missão é fazer com que a Sombra lance seu brilho sobre Loneford, bem como outras aldeias por aqui.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_story_4" + } + ] + }, + { + "id": "buceth_story_4", + "message": "Boa parte das pessoas nestas partes do norte parecem demasiado ocupadas com obediência à vontade de Feygard e Lorde Geomyr. Queremos ajudar as pessoas enchergar os absurdos defendidos por Feygard, e apontar os erros em seus caminhos.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_story_5" + } + ] + }, + { + "id": "buceth_story_5", + "message": "Essa é a minha missão aqui. Para ver que a Sombra lança seu brilho sobre Loneford.", + "replies": [ + { + "text": "Como isso se relaciona com o que você estava fazendo no poço?", + "nextPhraseID": "buceth_story_6" + } + ] + }, + { + "id": "buceth_story_6", + "message": "Nor City enviou-me uma mensagem dizendo-me que algo estava para acontecer aqui em Loneford. Algo que poderia ajudar a nossa causa.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_story_7" + } + ] + }, + { + "id": "buceth_story_7", + "message": "Eles estavam enviando um menino para fazer alguns negócios aqui, e fui designado para ter certeza de que a missão seria bem sucedida.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 61 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_story_8" + } + ] + }, + { + "id": "buceth_story_8", + "message": "Eu tinha a tarefa de recolher amostras de água do poço e da terra em torno do poço. Além disso, me foi dado alguns frascos cujo conteúdo deveria ser vertido no poço.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_story_9" + } + ] + }, + { + "id": "buceth_story_9", + "message": "Aparentemente, o menino que enviou foi bem sucedido em sua missão. A tarefa que eu fiz foi também bem sucedida, se me permite assim o dizer.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 45 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_story_10" + } + ] + }, + { + "id": "buceth_story_10", + "message": "É onde estamos agora: a ação é realizada, e a Sombra vai olhar favoravelmente sobre nós.", + "replies": [ + { + "text": "Então, o poço foi envenenado, isso é horrível. Como você pôde?", + "nextPhraseID": "buceth_story_11" + }, + { + "text": "Obrigado por me dizer.", + "nextPhraseID": "buceth_story_12" + } + ] + }, + { + "id": "buceth_story_11", + "message": "Horrível!? O que é horrível? O que essas pessoas de Feygard estavam fazendo - isso é o que é horrível!", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_story_12" + } + ] + }, + { + "id": "buceth_story_12", + "message": "Agora, peço-lhe para manter esta história só entre nós dois. Você entende que, certo?", + "replies": [ + { + "text": "Absolutamente. Caminhe com a Sombra.", + "nextPhraseID": "buceth_story_14" + }, + { + "text": "Eu prometo não contar a ninguém.", + "nextPhraseID": "buceth_story_14" + }, + { + "text": "Não, vou te denunciar ao guarda.", + "nextPhraseID": "buceth_story_13" + } + ] + }, + { + "id": "buceth_story_13", + "message": "Peço-lhe para repensar o seu raciocínio. O caminho da sombra é a maneira justa.", + "replies": [ + { + "text": "Muito bem. Eu prometo não contar a ninguém.", + "nextPhraseID": "buceth_story_14" + }, + { + "text": "Não. O crime será punido!", + "nextPhraseID": "buceth_fight_1" + } + ] + }, + { + "id": "buceth_fight_1", + "message": "Infiel, você não vai me derrotar! Pela a sombra!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 50 + } + ], + "replies": [ + { + "text": "Lute!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "buceth_story_14", + "message": "Obrigado, meu amigo.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 60 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_story_15" + } + ] + }, + { + "id": "buceth_story_15", + "message": "Se você quiser saber mais sobre o Sombra, visite o guardião capela Nor City. Diga a ele que eu o enviei, e ele certamente irá estender a sua gratidão para com você.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 60 + } + ] + }, + { + "id": "buceth_complete_1", + "message": "Bem-vindo de volta meu amigo. Que você possa aquecer-se no brilho da Sombra.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_story_15" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_bwm_agent_1.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_bwm_agent_1.json new file mode 100644 index 000000000..7a3d7fbb4 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_bwm_agent_1.json @@ -0,0 +1,187 @@ +[ + { + "id": "bwm_agent_1_start", + "message": "Ah, um estrangeiro! Por favor, senhor! Você tem que nos ajudar!", + "replies": [ + { + "text": "Qual é o problema?", + "nextPhraseID": "bwm_agent_1_2" + }, + { + "text": "'nós'? Eu só vejo você aqui.", + "nextPhraseID": "bwm_agent_1_3" + } + ] + }, + { + "id": "bwm_agent_1_2", + "message": "Precisamos urgentemente da ajuda de algum estrangeiro!", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_1_4" + } + ] + }, + { + "id": "bwm_agent_1_3", + "message": "Muito engraçado. Eu fui enviado pelo meu assentamento para procurar ajuda do exterior.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_1_4" + } + ] + }, + { + "id": "bwm_agent_1_4", + "message": "As pessoas do meu assentamento, a Montanha das Águas Negras, estão sendo lentamente reduzidas em quantidade, pelos monstros e pelos bandidos selvagens.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 1 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_1_5" + } + ] + }, + { + "id": "bwm_agent_1_5", + "message": "Os monstros estão nos cercando, e nós precisamos desesperadamente da ajuda de algum lutador eficiente.", + "replies": [ + { + "text": "Eu acho que eu poderia ajudar, eu matei alguns monstros aqui e ali.", + "nextPhraseID": "bwm_agent_1_7" + }, + { + "text": "Uma luta, ótimo. Eu estou dentro!", + "nextPhraseID": "bwm_agent_1_7" + }, + { + "text": "Haverá uma recompensa por isso?", + "nextPhraseID": "bwm_agent_1_6" + }, + { + "text": "Hm, não. Eu acho melhor não me envolver com isso.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bwm_agent_1_6", + "message": "Recompensa? Hm, eu estava esperando que você nos ajudasse por outras razões do que uma recompensa. Mas eu acho que o meu senhor vai recompensá-lo suficientemente, se você sobreviver.", + "replies": [ + { + "text": "Tudo bem, eu vou fazer isso.", + "nextPhraseID": "bwm_agent_1_7" + } + ] + }, + { + "id": "bwm_agent_1_7", + "message": "Excelente. A assentamento da Montanha das Águas Negras fica há alguma distância. Francamente, estou surpreso que eu consegui chegar até aqui vivo.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 5 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_1_8" + } + ] + }, + { + "id": "bwm_agent_1_8", + "message": "Devo adverti-lo, porém, que há alguns monstros desagradáveis ​​no caminho.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_1_9" + } + ] + }, + { + "id": "bwm_agent_1_9", + "message": "Mas eu acho que você parece forte o suficiente.", + "replies": [ + { + "text": "Sim, eu sei me cuidar.", + "nextPhraseID": "bwm_agent_1_10" + }, + { + "text": "Não tem problema.", + "nextPhraseID": "bwm_agent_1_10" + } + ] + }, + { + "id": "bwm_agent_1_10", + "message": "Bom. Primeiro, porém, é preciso atravessar esta mina para o outro lado.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_1_11" + } + ] + }, + { + "id": "bwm_agent_1_11", + "message": "O veio principal da minha lá *apontando* desmoronou. Então eu acho que você não conseguirá chegar por ali..", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_1_12" + } + ] + }, + { + "id": "bwm_agent_1_12", + "message": "Você terá que passar pela mina abandonada em baixo. Cuidado que a mina está no escuro, então você vai ter que se orientar por lá sem qualquer luz.", + "replies": [ + { + "text": "E você?", + "nextPhraseID": "bwm_agent_1_13" + }, + { + "text": "Ok, eu vou passar pela mina escura.", + "nextPhraseID": "bwm_agent_1_14" + } + ] + }, + { + "id": "bwm_agent_1_13", + "message": "Vou tentar rastejar de volta através do poço da mina aqui. É assim que eu cheguei aqui, quando vim.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_1_14" + } + ] + }, + { + "id": "bwm_agent_1_14", + "message": "Vamos nos encontrar no outro lado desta mina.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 10 + } + ], + "replies": [ + { + "text": "OK. Você vai rastejar através do veio principal, e eu vou seguir pela mina. Vejo você do outro lado!", + "nextPhraseID": "R" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_bwm_agent_2.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_bwm_agent_2.json new file mode 100644 index 000000000..1bd412ec1 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_bwm_agent_2.json @@ -0,0 +1,161 @@ +[ + { + "id": "bwm_agent_2_start", + "replies": [ + { + "nextPhraseID": "bwm_agent_2_7", + "requires": { + "progress": "bwm_agent:20" + } + }, + { + "nextPhraseID": "bwm_agent_2_1" + } + ] + }, + { + "id": "bwm_agent_2_1", + "message": "Olá novamente. Você fez isso conseguiu chegar vivo! Muito bem!", + "replies": [ + { + "text": "Estes monstros, o que são?", + "nextPhraseID": "bwm_agent_2_2" + }, + { + "text": "Você nunca me disse que estaria tão escuro por lá. Eu quase fui morto!", + "nextPhraseID": "bwm_agent_2_12" + }, + { + "text": "Sim, muito facilmente, diga-se de passagem.", + "nextPhraseID": "bwm_agent_2_5" + } + ] + }, + { + "id": "bwm_agent_2_2", + "message": "Os Gornauds? Eu não tenho ideia de onde eles vêm, um dia eles apareceram aqui ao redor da montanha.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_2_3" + } + ] + }, + { + "id": "bwm_agent_2_3", + "message": "Animais desagradáveis, eles são.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_2_4" + } + ] + }, + { + "id": "bwm_agent_2_4", + "message": "De qualquer forma, vamos começar agora. Estamos agora a um passo do assentamento da Montanha das Águas Negras.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_2_5" + } + ] + }, + { + "id": "bwm_agent_2_5", + "message": "Devemos nos apressar agora.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_2_6" + } + ] + }, + { + "id": "bwm_agent_2_6", + "message": "Assim que sair desta mina, é muito importante que você vá diretamente para o leste a partir daí. Não viaje para outros lugares que não para o leste agora!", + "replies": [ + { + "text": "Ok, eu vou ir para o leste depois de já ter saído da mina. Entendi.", + "nextPhraseID": "bwm_agent_2_7" + }, + { + "text": "Por que leste? O que mais há aqui?", + "nextPhraseID": "bwm_agent_2_8" + } + ] + }, + { + "id": "bwm_agent_2_7", + "message": "Eu vou esperar por você, os na escada da passagem para a montanha. Vejo você lá!\n\nLembre-se: vá para o leste assim que você sair da mina.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 20 + } + ], + "replies": [ + { + "text": "Ok, te vejo lá!", + "nextPhraseID": "R" + } + ] + }, + { + "id": "bwm_agent_2_8", + "message": "Ah, nada. Há lugares perigosos aqui. Você definitivamente não deve ir para qualquer direção diferente do leste.", + "replies": [ + { + "text": "Claro, vou dirigir para o leste.", + "nextPhraseID": "bwm_agent_2_7" + }, + { + "text": "Perigoso? Soa como o meu tipo de lugar!", + "nextPhraseID": "bwm_agent_2_10" + }, + { + "text": "Existe algo que você não está me dizendo?", + "nextPhraseID": "bwm_agent_2_11" + } + ] + }, + { + "id": "bwm_agent_2_10", + "message": "Seria a sua perda. Não diga que eu não o avisei. A rota mais segura é dirigir-se para o leste.", + "replies": [ + { + "text": "Claro, vou dirigir para o leste.", + "nextPhraseID": "bwm_agent_2_7" + }, + { + "text": "Existe algo que você não está me dizendo?", + "nextPhraseID": "bwm_agent_2_11" + } + ] + }, + { + "id": "bwm_agent_2_11", + "message": "Não, não, apenas vá direto para leste e eu vou explicar tudo para você, uma vez que chegar ao povoamento de Montanha das Águas Negras.", + "replies": [ + { + "text": "Ok, eu prometo para o leste, uma vez que sair da mina.", + "nextPhraseID": "bwm_agent_2_7" + }, + { + "text": "(Mentira) Ok, eu prometo ir para o leste, uma vez que sair da mina.", + "nextPhraseID": "bwm_agent_2_7" + } + ] + }, + { + "id": "bwm_agent_2_12", + "message": "Na verdade, eu lhe disse que seria escuro por lá. Bom trabalho conseguir se orientar por lá!", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_2_4" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_bwm_agent_3.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_bwm_agent_3.json new file mode 100644 index 000000000..d589de480 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_bwm_agent_3.json @@ -0,0 +1,112 @@ +[ + { + "id": "bwm_agent_3_start", + "replies": [ + { + "nextPhraseID": "bwm_agent_3_4", + "requires": { + "progress": "bwm_agent:30" + } + }, + { + "nextPhraseID": "bwm_agent_3_1" + } + ] + }, + { + "id": "bwm_agent_3_1", + "message": "Olá. Você chegou até aqui, bom.", + "replies": [ + { + "text": "Eu conversei com algumas pessoas na aldeia de Prim. Elas contaram-me algumas coisas interessantes sobre a Montanha das Águas Negras.", + "nextPhraseID": "bwm_agent_3_5", + "requires": { + "progress": "bwm_agent:25" + } + }, + { + "text": "Fui para leste, como você disse.", + "nextPhraseID": "bwm_agent_3_2" + } + ] + }, + { + "id": "bwm_agent_3_2", + "message": "Bom. Agora vamos subir esta montanha. Vou encontrá-lo a meio caminho para o topo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_3_3" + } + ] + }, + { + "id": "bwm_agent_3_3", + "message": "Este caminho leva até a assentamento da Montanha das Águas Negras. Siga este caminho e vamos conversar mais tarde.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_3_4" + } + ] + }, + { + "id": "bwm_agent_3_4", + "message": "Cuidado com os monstros desagradáveis, eles podem realmente causar algum dano!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 30 + } + ], + "replies": [ + { + "text": "Ok, vou seguir este caminho até a montanha.", + "nextPhraseID": "R" + }, + { + "text": "Grande, mais monstros. Era só o que eu precisava.", + "nextPhraseID": "R" + } + ] + }, + { + "id": "bwm_agent_3_5", + "message": "Não vou ouvir suas mentiras. Eles envenenaram os seus pensamentos e eu não hesitaria em apunhalá-lo pelas costas, uma vez que tiver chance.", + "replies": [ + { + "text": "O que eles fizeram?", + "nextPhraseID": "bwm_agent_3_6" + }, + { + "text": "Sim, eles parecem serem um pouco sombrios.", + "nextPhraseID": "bwm_agent_3_7" + } + ] + }, + { + "id": "bwm_agent_3_6", + "message": "Eu não vou falar deles agora. Siga-me até a assentamento da Montanha das Águas Negras e vamos conversar mais lá.", + "replies": [ + { + "text": "Certamente.", + "nextPhraseID": "bwm_agent_3_2" + }, + { + "text": "Estou de olho em você. Mas eu concordo com seus termos por enquanto.", + "nextPhraseID": "bwm_agent_3_2" + } + ] + }, + { + "id": "bwm_agent_3_7", + "message": "Sim, eles são.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_3_6" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_bwm_agent_4.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_bwm_agent_4.json new file mode 100644 index 000000000..2c339d6ed --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_bwm_agent_4.json @@ -0,0 +1,105 @@ +[ + { + "id": "bwm_agent_4_start", + "replies": [ + { + "nextPhraseID": "bwm_agent_4_5", + "requires": { + "progress": "bwm_agent:40" + } + }, + { + "nextPhraseID": "bwm_agent_4_1" + } + ] + }, + { + "id": "bwm_agent_4_1", + "message": "Olá novamente. Derrotou as feras de Gornaud. Bem feito!", + "replies": [ + { + "text": "Os ataques deles realmente machucam. O que são essas coisas?", + "nextPhraseID": "bwm_agent_4_6" + }, + { + "text": "Como é que eles não atacam você?", + "nextPhraseID": "bwm_agent_4_3" + }, + { + "text": "Sim, não há problema. Apenas outra trilha de corpos atrás de mim.", + "nextPhraseID": "bwm_agent_4_2" + } + ] + }, + { + "id": "bwm_agent_4_2", + "message": "Cuidado com o que você deseja, pois pode se tornar realidade.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_4_4" + } + ] + }, + { + "id": "bwm_agent_4_3", + "message": "Eu? Deve haver alguma coisa em mim que os assusta. Eu não tenho nenhuma ideia do que seria, talvez, algum cheiro?", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_4_4" + } + ] + }, + { + "id": "bwm_agent_4_4", + "message": "De qualquer forma, devemos ir. Eu vou correr na frente de você até a montanha.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_4_5" + } + ] + }, + { + "id": "bwm_agent_4_5", + "message": "Encontre-me mais para cima da montanha, e nós vamos conversar mais.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 40 + } + ], + "replies": [ + { + "text": "Ok, te vejo lá.", + "nextPhraseID": "R" + } + ] + }, + { + "id": "bwm_agent_4_6", + "message": "Eu não sei de onde eles vêm. Tudo o que sei é que eles começaram a aparecer um dia, bloqueando o caminho até a montanha.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_4_7" + } + ] + }, + { + "id": "bwm_agent_4_7", + "message": "E, seus ataques são difíceis. Uma vez que um deles põem a mão em você, os outros parecem realmente ansiosos em bater em você também.", + "replies": [ + { + "text": "Nada que eu não consiga lidar.", + "nextPhraseID": "bwm_agent_4_4" + }, + { + "text": "Como é que eles não atacam você?", + "nextPhraseID": "bwm_agent_4_3" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_bwm_agent_5.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_bwm_agent_5.json new file mode 100644 index 000000000..975bd3b20 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_bwm_agent_5.json @@ -0,0 +1,83 @@ +[ + { + "id": "bwm_agent_5_start", + "replies": [ + { + "nextPhraseID": "bwm_agent_5_6", + "requires": { + "progress": "bwm_agent:50" + } + }, + { + "nextPhraseID": "bwm_agent_5_1" + } + ] + }, + { + "id": "bwm_agent_5_1", + "message": "Olá novamente. Bem feito se esgueirando desses monstros.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_5_2" + } + ] + }, + { + "id": "bwm_agent_5_2", + "message": "Estamos quase lá agora. Apenas um pouco mais.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_5_3" + } + ] + }, + { + "id": "bwm_agent_5_3", + "message": "Devemos nos apressar nesse último trecho, o assentamento está perto agora.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_5_4" + } + ] + }, + { + "id": "bwm_agent_5_4", + "message": "Eu espero que você possa aguentar o frio aqui fora.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_5_5" + } + ] + }, + { + "id": "bwm_agent_5_5", + "message": "Além disso, fique longe dos dragões. Eles têm uma mordida realmente desagradável.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_5_6" + } + ] + }, + { + "id": "bwm_agent_5_6", + "message": "Agora se apresse. Estamos quase lá. Siga o caminho de neve para o norte, e você deve atingir o assentamento em breve.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 50 + } + ], + "replies": [ + { + "text": "Ok, vou seguir o caminho para o norte, mais para cima da montanha.", + "nextPhraseID": "R" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_bwm_agent_6.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_bwm_agent_6.json new file mode 100644 index 000000000..2ab75ad8f --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_bwm_agent_6.json @@ -0,0 +1,111 @@ +[ + { + "id": "bwm_agent_6_start", + "replies": [ + { + "nextPhraseID": "bwm_agent_6_3", + "requires": { + "progress": "bwm_agent:60" + } + }, + { + "nextPhraseID": "bwm_agent_6_0" + } + ] + }, + { + "id": "bwm_agent_6_1", + "message": "Estou feliz que você me seguiu até a montanha para nos ajudar.", + "replies": [ + { + "text": "Como você chegou até aqui tão rápido?", + "nextPhraseID": "bwm_agent_6_6" + }, + { + "text": "Essas foram algumas lutas duras, mas tudo sobre controle.", + "nextPhraseID": "bwm_agent_6_5" + }, + { + "text": "Ainda não chegamos?", + "nextPhraseID": "bwm_agent_6_2" + } + ] + }, + { + "id": "bwm_agent_6_2", + "message": "Ah, sim. Na verdade, é só descer essas escadas para entrar no assentamento da Montanha das Águas Negras.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_6_4" + } + ] + }, + { + "id": "bwm_agent_6_3", + "message": "Vá em frente, eu vou encontrá-lo lá dentro.", + "replies": [ + { + "text": "Ok, vejo você lá dentro.", + "nextPhraseID": "R" + } + ] + }, + { + "id": "bwm_agent_6_0", + "message": "Nos encontramos novamente. Bem feito lutando em seu caminho até aqui.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_6_1" + } + ] + }, + { + "id": "bwm_agent_6_4", + "message": "Você deve descer as escadas e conversar com nosso ministro da guerra, Harlenn. Ele pode ser encontrado ao descer até o terceiro nível.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 60 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_6_3" + } + ] + }, + { + "id": "bwm_agent_6_5", + "message": "Sim, você parece ser um lutador capaz.", + "replies": [ + { + "text": "Ainda não chegamos?", + "nextPhraseID": "bwm_agent_6_2" + } + ] + }, + { + "id": "bwm_agent_6_6", + "message": "Eu aprendi alguns atalhos para cima e para baixo da montanha um tempo atrás. Nada de estranho nisso certo?", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_6_7" + } + ] + }, + { + "id": "bwm_agent_6_7", + "message": "De qualquer forma, estamos bem no assentamento agora. Na verdade, para entrar no assentamento da Montanha das Águas Negras é só descer essas escadas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_6_4" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_crossglen.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_crossglen.json new file mode 100644 index 000000000..1882e7831 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_crossglen.json @@ -0,0 +1,140 @@ +[ + { + "id": "audir1", + "message": "Bem-vindo à minha loja!\n\nSinta-se à vontade para consultar minha seleção de artigos finos.", + "replies": [ + { + "text": "Por favor, mostre-me os seus produtos.", + "nextPhraseID": "S" + } + ] + }, + { + "id": "arambold1", + "message": "Oh meu, eu nunca conseguirei dormir com os bêbados cantando assim...\n\nAlguém deveria fazer algo a respeito.", + "replies": [ + { + "text": "Posso descansar aqui?", + "nextPhraseID": "arambold2" + }, + { + "text": "Você tem alguma coisa para vender?", + "nextPhraseID": "S" + } + ] + }, + { + "id": "arambold2", + "message": "Claro, garoto! Você pode descansar aqui.\n\nUse qualquer cama que você quiser.", + "replies": [ + { + "text": "Obrigado, adeus.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "drunk1", + "message": "Beber, beber, beber um pouco mais\nBeber, beber, beber até cair no chão\n\nEi garoto, gostaria de se juntar a nós no nosso jogo de beber?", + "replies": [ + { + "text": "Não, obrigado.", + "nextPhraseID": "X" + }, + { + "text": "Talvez algum outro momento.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "mara_default", + "message": "Não ligue para esses bêbados, eles estão sempre causando confusões\n\nQuer algo para comer?", + "replies": [ + { + "text": "Você tem alguma coisa para vender?", + "nextPhraseID": "S" + } + ] + }, + { + "id": "mara1", + "replies": [ + { + "nextPhraseID": "mara_thanks", + "requires": { + "progress": "odair:100" + } + }, + { + "nextPhraseID": "mara_default" + } + ] + }, + { + "id": "mara_thanks", + "message": "Eu ouvi dizer que você ajudou Odair a limpar a antiga caverna de abastecimento. Muito obrigado, vamos começar a usá-la em breve.", + "replies": [ + { + "text": "O prazer foi meu.", + "nextPhraseID": "mara_default" + } + ] + }, + { + "id": "farm1", + "message": "Por favor, não me perturbe que tenho trabalho a fazer.", + "replies": [ + { + "text": "Você viu meu irmão Andor?", + "nextPhraseID": "farm_andor" + } + ] + }, + { + "id": "farm2", + "message": "O quê? Você não vê que estou ocupado? Vá incomodar outra pessoa.", + "replies": [ + { + "text": "Você viu meu irmão Andor?", + "nextPhraseID": "farm_andor" + } + ] + }, + { + "id": "farm_andor", + "message": "Andor? Não, eu não o vi ultimamente." + }, + { + "id": "snakemaster", + "message": "Bem, bem, o que temos aqui? Um visitante, que bom. Estou impressionado que você chegou até aqui apesar de todas essas bestas.\n\nAgora, prepare-se para morrer, criatura insignificante.", + "replies": [ + { + "text": "Ótimo, eu estava esperando uma luta!", + "nextPhraseID": "F" + }, + { + "text": "Vamos ver quem morre aqui.", + "nextPhraseID": "F" + }, + { + "text": "Por favor, não me machuque!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "haunt", + "message": "Oh mortal, livre-me deste mundo amaldiçoado!", + "replies": [ + { + "text": "Ah, pode deixar! Eu vou te libertar de tudo.", + "nextPhraseID": "F" + }, + { + "text": "Você quer dizer, matando você?", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_crossglen_gruil.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_crossglen_gruil.json new file mode 100644 index 000000000..10fb4585b --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_crossglen_gruil.json @@ -0,0 +1,118 @@ +[ + { + "id": "gruil1", + "message": "Psst, hei.\n\nQuer vender algo?", + "replies": [ + { + "text": "Claro, vamos vender.", + "nextPhraseID": "S" + }, + { + "text": "Eu ouvi dizer que você falou com meu irmão há um tempo atrás.", + "nextPhraseID": "gruil_select", + "requires": { + "progress": "andor:10" + } + } + ] + }, + { + "id": "gruil_select", + "replies": [ + { + "nextPhraseID": "gruil_return", + "requires": { + "progress": "andor:30" + } + }, + { + "nextPhraseID": "gruil2" + } + ] + }, + { + "id": "gruil2", + "message": "Seu irmão? Oh, você quer dizer Andor? Eu poderia saber algo, mas que a informação vai custar caro. Traga-me uma glândula de veneno de uma dessas cobras venenosas e talvez eu possa lhe contar.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 20 + } + ], + "replies": [ + { + "text": "Aqui, eu tenho uma glândula de veneno para você.", + "nextPhraseID": "gruil_complete", + "requires": { + "item": { + "itemID": "gland", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Ok, eu vou trazer.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "gruil_complete", + "message": "Muito obrigado, garoto. Isso vai servir.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "gruil_andor1" + } + ] + }, + { + "id": "gruil_return", + "message": "Olhe garoto, eu já lhe disse.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gruil_andor1" + } + ] + }, + { + "id": "gruil_andor1", + "message": "Eu falei com ele ontem. Ele perguntou se eu conhecia alguém chamado Umar ou algo parecido. Eu não tenho nenhuma ideia de quem ele estava falando.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gruil_andor2" + } + ] + }, + { + "id": "gruil_andor2", + "message": "Ele parecia realmente chateado com alguma coisa e saiu com pressa. Algo sobre a Corja dos Ladrões em Fallhaven.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gruil_andor3" + } + ] + }, + { + "id": "gruil_andor3", + "message": "Isso é tudo que eu sei. Talvez você devesse perguntar ao redor em Fallhaven. Procure meu amigo, Gaela. Ele provavelmente saberá algo mais.", + "replies": [ + { + "text": "Obrigado, adeus.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_crossglen_leonid.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_crossglen_leonid.json new file mode 100644 index 000000000..6f0eee593 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_crossglen_leonid.json @@ -0,0 +1,201 @@ +[ + { + "id": "leonid1", + "message": "Olá garoto. Você é filho de Mikhail não é você? Um dos nossos irmãos.\n\n Eu sou Leonid, taifeiro de Crossglen.", + "replies": [ + { + "text": "Você viu meu irmão Andor?", + "nextPhraseID": "leonid_andor" + }, + { + "text": "O que você pode me dizer sobre Crossglen?", + "nextPhraseID": "leonid_crossglen" + }, + { + "text": "Não importa. Vejo você mais tarde", + "nextPhraseID": "leonid_bye" + } + ] + }, + { + "id": "leonid_andor", + "message": "Seu irmão? Não, eu não vi ele aqui hoje. Eu acho que eu vi aqui ontem conversando com Gruil. Talvez ele saiba mais.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 10 + } + ], + "replies": [ + { + "text": "Obrigado, eu vou falar com Gruil. Há algo mais que eu quero lhe falar.", + "nextPhraseID": "leonid_continue" + }, + { + "text": "Obrigado, eu vou falar com Gruil.", + "nextPhraseID": "leonid_bye" + } + ] + }, + { + "id": "leonid_continue", + "message": "Algo mais?", + "replies": [ + { + "text": "Você viu meu irmão Andor?", + "nextPhraseID": "leonid_andor" + }, + { + "text": "O que você pode me dizer sobre Crossglen?", + "nextPhraseID": "leonid_crossglen" + }, + { + "text": "Não importa. Até mais tarde.", + "nextPhraseID": "leonid_bye" + } + ] + }, + { + "id": "leonid_crossglen", + "message": "Como você sabe, este é a aldeia de Crossglen. Principalmente uma comunidade agrícola.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen1" + } + ] + }, + { + "id": "leonid_crossglen1", + "message": "Temos Audir com sua forja a sudoeste; A casa de Leta e seu marido para ao oeste, esta prefeitura e a casa de seu pai ao noroeste.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen2" + } + ] + }, + { + "id": "leonid_crossglen2", + "message": "Aqué é muito bonito. Tentamos viver uma vida pacífica.", + "replies": [ + { + "text": "Houve alguma atividade recente na aldeia?", + "nextPhraseID": "leonid_crossglen3" + }, + { + "text": "Vamos retornar a outros assuntos que já falamos.", + "nextPhraseID": "leonid_continue" + } + ] + }, + { + "id": "leonid_crossglen3", + "message": "Houve algumas perturbações recentes, algumas semanas atrás, que você pode ter notado. Alguns moradores entraram em uma briga sobre o novo decreto do Lorde Geomyr.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen4" + } + ] + }, + { + "id": "leonid_crossglen4", + "message": "Lorde Geomyr emitiu um decreto sobre o uso ilegal de farinha de ossos como substância de cura. Alguns moradores alegaram que devemos opor às ordens de Lorde Geomyr e ainda usá-lo.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen4_1" + } + ] + }, + { + "id": "leonid_crossglen4_1", + "message": "Tharal, nosso sacerdote, ficou particularmente chateado e sugeriu fazer algo sobre o decreto do Lorde Geomyr.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen5" + } + ] + }, + { + "id": "leonid_crossglen5", + "message": "Outros habitantes da aldeia argumentaram que deveríamos seguir o decreto do Lorde Geomyr.\n\nPessoamente, ainda não me decidi.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen6" + } + ] + }, + { + "id": "leonid_crossglen6", + "message": "Por um lado, Lorde Geomyr apoia Crossglen com a sua proteção. *Aponta para os soldados no salão*", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen7" + } + ] + }, + { + "id": "leonid_crossglen7", + "message": "Mas, por outro lado, o imposto e as mudanças recentes do que é permitido estão realmente impondo um fardo em Crossglen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen8" + } + ] + }, + { + "id": "leonid_crossglen8", + "message": "Alguém deve ir ao Castelo de Geomyr e falar com o taifeiro sobre a nossa situação aqui em Crossglen.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "crossglen", + "value": 1 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen9" + } + ] + }, + { + "id": "leonid_crossglen9", + "message": "Enquanto isso, está proibido todo uso de farinha de ossos como substância de cura.", + "replies": [ + { + "text": "Obrigado pela informação. Há mais uma coisa que eu quero perguntar a você.", + "nextPhraseID": "leonid_continue" + }, + { + "text": "Obrigado pela informação. Tchau.", + "nextPhraseID": "leonid_bye" + } + ] + }, + { + "id": "leonid_bye", + "message": "A Sombra esteja com você.", + "replies": [ + { + "text": "A Sombra esteja com você.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_crossglen_leta.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_crossglen_leta.json new file mode 100644 index 000000000..85a24a549 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_crossglen_leta.json @@ -0,0 +1,110 @@ +[ + { + "id": "leta1", + "message": "Ei, esta é a minha casa, saia daqui!", + "replies": [ + { + "text": "Mas eu estava apenas ...", + "nextPhraseID": "leta2" + }, + { + "text": "É sobre o seu marido Oromir.", + "nextPhraseID": "leta_oromir_select" + } + ] + }, + { + "id": "leta2", + "message": "Basta criança, saia da minha casa!", + "replies": [ + { + "text": "É sobre o seu marido Oromir.", + "nextPhraseID": "leta_oromir_select" + } + ] + }, + { + "id": "leta_oromir_select", + "replies": [ + { + "nextPhraseID": "leta_oromir_complete2", + "requires": { + "progress": "leta:100" + } + }, + { + "nextPhraseID": "leta_oromir1" + } + ] + }, + { + "id": "leta_oromir1", + "message": "Você sabe alguma coisa sobre o meu marido? Ele deveria estar aqui me ajudando na fazenda hoje, mas ele parece estar ausente, como sempre\nSigh.", + "replies": [ + { + "text": "Eu não tenho ideia.", + "nextPhraseID": "leta_oromir2" + }, + { + "text": "Sim, eu o encontrei. Ele está escondido entre algumas árvores a leste.", + "nextPhraseID": "leta_oromir_complete", + "requires": { + "progress": "leta:20" + } + } + ] + }, + { + "id": "leta_oromir2", + "message": "Se você o vir, diga-lhe para retornar correndo e me ajudar com as tarefas domésticas. Agora, saia daqui!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "leta", + "value": 10 + } + ] + }, + { + "id": "leta_oromir_complete", + "message": "Ele está se escondendo? Isso não me surpreende. Vou mostrar a ele quem é o chefe por aqui!\nObrigado por avisar-me.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "leta", + "value": 100 + } + ] + }, + { + "id": "leta_oromir_complete2", + "message": "Obrigado por me contar sobre Oromir mais cedo. Eu vou em breve ao encontro dele." + }, + { + "id": "oromir1", + "message": "Oh, você assustou-me.\nOi.", + "replies": [ + { + "text": "Oi", + "nextPhraseID": "oromir2" + } + ] + }, + { + "id": "oromir2", + "message": "Estou escondido aqui da minha esposa Leta. Ela está sempre com raiva de mim por não ajudá-la na fazenda. Por favor, não diga a ela que eu estou aqui.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "leta", + "value": 20 + } + ], + "replies": [ + { + "text": "Certo.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_crossglen_odair.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_crossglen_odair.json new file mode 100644 index 000000000..68fe6c57c --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_crossglen_odair.json @@ -0,0 +1,161 @@ +[ + { + "id": "odair1", + "message": "Ah, é você. Você é como seu irmão. Sempre causando problemas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "odair_select" + } + ] + }, + { + "id": "odair_select", + "replies": [ + { + "nextPhraseID": "odair_complete2", + "requires": { + "progress": "odair:100" + } + }, + { + "nextPhraseID": "odair_continue", + "requires": { + "progress": "odair:10" + } + }, + { + "nextPhraseID": "odair2" + } + ] + }, + { + "id": "odair2", + "message": "Hmm, talvez você possa ser útil para mim. Você acha que você poderia me ajudar com uma pequena tarefa?", + "replies": [ + { + "text": "Conte-me mais sobre esta tarefa.", + "nextPhraseID": "odair3" + }, + { + "text": "Claro, se existe algo que eu possa ganhar com isso.", + "nextPhraseID": "odair3" + } + ] + }, + { + "id": "odair3", + "message": "Recentemente, eu fui para a caverna lá *apontando para o oeste*, para verificar nossos suprimentos. Mas, aparentemente, a caverna foi infestada por ratazanas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "odair4" + } + ] + }, + { + "id": "odair4", + "message": "Em particular, eu vi uma ratazana que era maior do que as outras. Você acha tem o que é preciso para ajudar a eliminá-los?", + "replies": [ + { + "text": "Claro, eu vou ajudá-lo para que Crossglen pode usar a caverna de suprimentos novamente.", + "nextPhraseID": "odair5" + }, + { + "text": "Claro, eu vou ajudá-lo. Mas só porque pode haver algum ganho para mim nesta tarefa.", + "nextPhraseID": "odair5" + }, + { + "text": "Não, obrigado.", + "nextPhraseID": "odair_cowards" + } + ] + }, + { + "id": "odair5", + "message": "Eu preciso de você para entrar nessa caverna e matar a ratazana gigante. Dessa forma, talvez possamos parar com a infestação de ratos na caverna e começar a usá-la como nossa boa e velha caverna de suprimentos novamente.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "odair", + "value": 10 + } + ], + "replies": [ + { + "text": "Certo.", + "nextPhraseID": "X" + }, + { + "text": "Pensando bem, eu acho que não vou ajudá-lo apesar de tudo.", + "nextPhraseID": "odair_cowards" + } + ] + }, + { + "id": "odair_cowards", + "message": "Bem que eu achava que você não o faria. Você e seu irmão sempre foram covardes.", + "replies": [ + { + "text": "Tchau.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "odair_continue", + "message": "Você matou aquela ratazana gigante da caverna ao oeste daqui?", + "replies": [ + { + "text": "Sim, eu matei a ratazana gigante.", + "nextPhraseID": "odair_complete", + "requires": { + "item": { + "itemID": "tail_caverat", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Pode repetir o que preciso fazer?", + "nextPhraseID": "odair5" + }, + { + "text": "Não, ainda não.", + "nextPhraseID": "odair_cowards" + } + ] + }, + { + "id": "odair_complete", + "message": "Muito obrigado pela ajuda garoto! Talvez você e que teu irmão não sejão tão covardes como eu pensava. Aqui, tome estas moedas por sua ajuda.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "odair", + "value": 100 + }, + { + "rewardType": 1, + "rewardID": "gold20" + } + ], + "replies": [ + { + "text": "Obrigado.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "odair_complete2", + "message": "Muito obrigado pela sua ajuda anterior. Agora podemos começar a usar a nossa boa e felha caverna de suprimentos novamente.", + "replies": [ + { + "text": "Tchau.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_crossglen_tharal.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_crossglen_tharal.json new file mode 100644 index 000000000..a1233546c --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_crossglen_tharal.json @@ -0,0 +1,138 @@ +[ + { + "id": "tharal1", + "message": "Caminhe no brilho da Sombra, meu filho.", + "replies": [ + { + "text": "Você tem alguma coisa para vender?", + "nextPhraseID": "S" + }, + { + "text": "O que você pode me dizer sobre farinha de ossos?", + "nextPhraseID": "tharal_bonemeal_select", + "requires": { + "progress": "bonemeal:10" + } + } + ] + }, + { + "id": "tharal_bonemeal_select", + "replies": [ + { + "nextPhraseID": "tharal_bonemeal4", + "requires": { + "progress": "bonemeal:30" + } + }, + { + "nextPhraseID": "tharal_bonemeal1" + } + ] + }, + { + "id": "tharal_bonemeal1", + "message": "Farinha de ossos? Não devemos falar sobre isso. O Lorde Geomyr emitiu um decreto proibindo seu uso.", + "replies": [ + { + "text": "Por favor?", + "nextPhraseID": "tharal_bonemeal2_1" + } + ] + }, + { + "id": "tharal_bonemeal2_1", + "message": "Não, nós realmente não deveríamos falar sobre isso.", + "replies": [ + { + "text": "Ah, vamos lá!", + "nextPhraseID": "tharal_bonemeal2" + } + ] + }, + { + "id": "tharal_bonemeal2", + "message": "Bem, você realmente é que persistente. Traga-me cinco asas de insetos que possam ser usados ​​para fazer poções e talvez possamos conversar mais.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 20 + } + ], + "replies": [ + { + "text": "Aqui, eu tenho as asas dos insetos.", + "nextPhraseID": "tharal_bonemeal3", + "requires": { + "item": { + "itemID": "insectwing", + "quantity": 5, + "requireType": 0 + } + } + }, + { + "text": "Ok, eu vou trazê-los.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "tharal_bonemeal3", + "message": "Obrigado, garoto. Eu sabia que podia contar com você.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "tharal_bonemeal4" + } + ] + }, + { + "id": "tharal_bonemeal4", + "message": "Ah, sim, farinha de ossos. Misturada com os componentes corretos, pode ser um dos agentes de cura mais eficazes.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tharal_bonemeal5" + } + ] + }, + { + "id": "tharal_bonemeal5", + "message": "No passado, costumávamos usar bastante. Mas agora que bastardo Lorde Geomyr proibiu todo o uso disso.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tharal_bonemeal6" + } + ] + }, + { + "id": "tharal_bonemeal6", + "message": "Como é que eu vou curar as pessoas agora? Usando poções regulares de cura? Bah, elas são tão ineficazes.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tharal_bonemeal7" + } + ] + }, + { + "id": "tharal_bonemeal7", + "message": "Eu conheço alguém que ainda tem um suprimento de farinha de ossos, se você estiver interessado. Vá falar com Thoronir, um amigo sacerdote em Fallhaven. Diga a ele a senha 'Brilho da Sombra'.", + "replies": [ + { + "text": "Obrigado, adeus.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_crossroads_1.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_crossroads_1.json new file mode 100644 index 000000000..92719e432 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_crossroads_1.json @@ -0,0 +1,243 @@ +[ + { + "id": "fanamor", + "message": "Caramba! Você me assustou.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fanamor_1" + } + ] + }, + { + "id": "fanamor_1", + "message": "Eu estava apenas passeando nessa floresta ... eh ... matando Anklebiters.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fanamor_2" + } + ] + }, + { + "id": "fanamor_2", + "message": "Sim. Eu estava matando eles. Não fugindo. Matando-os.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fanamor_3" + } + ] + }, + { + "id": "fanamor_3", + "message": "... suspiro ...", + "replies": [ + { + "text": "N", + "nextPhraseID": "fanamor_4" + } + ] + }, + { + "id": "fanamor_4", + "message": "Ah, quem sou eu enganando. Ok, eu estava tentando atravessar a floresta por aqui e fui emboscado por estes Anklebiters.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fanamor_5" + } + ] + }, + { + "id": "fanamor_5", + "message": "Eu não vou sair até o anoitecer, quando não pudem mais me ver e eu poderei ser capaz de esgueirar-se de volta.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fanamor_6" + } + ] + }, + { + "id": "fanamor_6", + "message": "Este é o meu esconderijo! Agora me deixe." + }, + { + "id": "crossroads_guard", + "replies": [ + { + "nextPhraseID": "crossroads_guard_r_1", + "requires": { + "progress": "farrik:90" + } + }, + { + "nextPhraseID": "crossroads_guard_1" + } + ] + }, + { + "id": "crossroads_guard_r_1", + "message": "Você soube? Alguns ladrões em Fallhaven estavam planejando uma fuga para um dos ladrões presos na prisão de lá.", + "replies": [ + { + "text": "N", + "nextPhraseID": "crossroads_guard_r_2" + } + ] + }, + { + "id": "crossroads_guard_r_2", + "message": "Felizmente, alguém ficou sabendo disso e disse ao capitão de guarda.", + "replies": [ + { + "text": "N", + "nextPhraseID": "crossroads_guard_r_3" + } + ] + }, + { + "id": "crossroads_guard_r_3", + "message": "É bom saber que há pelo menos algumas pessoas decentes ainda ao redor." + }, + { + "id": "crossroads_guard_1", + "message": "Você não é um pouco jovem para viajar por aqui sozinho?", + "replies": [ + { + "text": "N", + "nextPhraseID": "crossroads_guard_2" + } + ] + }, + { + "id": "crossroads_guard_2", + "message": "Eu espero que você não seja mais um daqueles tipos que tentam vender-me o seu lixo barato.", + "replies": [ + { + "text": "N", + "nextPhraseID": "crossroads_guard_3" + } + ] + }, + { + "id": "crossroads_guard_3", + "message": "Vá embora, garoto." + }, + { + "id": "cr_loneford_st_1", + "message": "Você não ouviu? Todos eles têm ficado doente.", + "replies": [ + { + "text": "N", + "nextPhraseID": "cr_loneford_st_2" + } + ] + }, + { + "id": "cr_loneford_st_2", + "message": "Tudo começou há alguns dias. Com o desenrolar da história, alguém encontrou um dos agricultores desmaiado em um dos campos, completamente branco e tremendo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "cr_loneford_st_3" + } + ] + }, + { + "id": "cr_loneford_st_3", + "message": "Poucos dias depois, os mesmos sintomas começaram a aparecer em muitas mais pessoas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "cr_loneford_st_4" + } + ] + }, + { + "id": "cr_loneford_st_4", + "message": "Em seguida, todas as pessoas apresentaram os sintomas de uma forma ou de outra.", + "replies": [ + { + "text": "N", + "nextPhraseID": "cr_loneford_st_5" + } + ] + }, + { + "id": "cr_loneford_st_5", + "message": "Algumas pessoas idosas até morreram.", + "replies": [ + { + "text": "N", + "nextPhraseID": "cr_loneford_st_6" + } + ] + }, + { + "id": "cr_loneford_st_6", + "message": "Foi iniciada uma investigação para descobrir a causa. Mas até hoje, a causa ainda não foi descoberta.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "cr_loneford_st_7" + } + ] + }, + { + "id": "cr_loneford_st_7", + "message": "Felizmente, Feygard está enviando patrulhas até lá para ajudar a proteger a vila, pelo menos. No entanto, as pessoas ainda estão sofrendo.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 11 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "cr_loneford_st_8" + } + ] + }, + { + "id": "cr_loneford_st_8", + "message": "Estou certo de que este é trabalho daqueles selvagens de Nor City, de alguma forma. Eles provavelmente sabotaram algo por lá.", + "replies": [ + { + "text": "N", + "nextPhraseID": "cr_loneford_st_9" + } + ] + }, + { + "id": "cr_loneford_st_9", + "message": "O que eles chamam, a 'Sombra'? Eles estão dispostos a fazer quase tudo para perturbar a lei e a ordem por aqui.", + "replies": [ + { + "text": "N", + "nextPhraseID": "cr_loneford_st_10" + } + ] + }, + { + "id": "cr_loneford_st_10", + "message": "Eu lhe digo. Savagens - que é o que eles são. Não respeitam as leis ou a autoridade.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 21 + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_crossroads_2.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_crossroads_2.json new file mode 100644 index 000000000..972c7d547 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_crossroads_2.json @@ -0,0 +1,136 @@ +[ + { + "id": "gallain", + "message": "Bem-vindo à guarita Crossroads. Sou Gallain, o proprietário do lugar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gallain_1" + } + ] + }, + { + "id": "gallain_1", + "message": "Como posso ajudá-lo?", + "replies": [ + { + "text": "Você tem algo para comer por aqui?", + "nextPhraseID": "gallain_trade_1" + }, + { + "text": "Existe algum lugar que eu possa descansar aqui?", + "nextPhraseID": "gallain_rest_1" + }, + { + "text": "Que lugar é esse?", + "nextPhraseID": "gallain_cr_1" + } + ] + }, + { + "id": "gallain_cr_1", + "message": "Como eu disse, esta é a guarita Crossroads. Os guardas de Feygard usam esse lugar como um lugar para descansar e preparar-se.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gallain_cr_2" + } + ] + }, + { + "id": "gallain_cr_2", + "message": "Por isso, é também um refúgio seguro para os comerciantes que viajam por aqui. Nós atendemos uma grande quantidade de pessoas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gallain_1" + } + ] + }, + { + "id": "gallain_trade_1", + "message": "Aqui, dê uma olhada.", + "replies": [ + { + "text": "Negociar", + "nextPhraseID": "S" + } + ] + }, + { + "id": "gallain_rest_1", + "message": "Os guardas colocaram algumas camas no andar inferior. Verifique com eles.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gallain_1" + } + ] + }, + { + "id": "celdar", + "message": "E quem é você? Você veio vender-me algumas dessas bugigangas que vocês trazem, né?", + "replies": [ + { + "text": "N", + "nextPhraseID": "celdar_1" + } + ] + }, + { + "id": "celdar_1", + "message": "Não, deixe-me adivinhar - você quer saber se eu tenho algo para negociar?", + "replies": [ + { + "text": "N", + "nextPhraseID": "celdar_2" + } + ] + }, + { + "id": "celdar_2", + "message": "Deixe-me dizer-lhe uma coisa filho. Eu não quero comprar nada de você, nem quero te vender nada. Eu só quero ser deixadp em paz aqui, agora que eu fiz todo o caminho a este porto seguro.", + "replies": [ + { + "text": "N", + "nextPhraseID": "celdar_3" + } + ] + }, + { + "id": "celdar_3", + "message": "Tenho viajado por todo o caminho desde minha cidade natal, Sullengard, e dirigindo-me para Brimhaven, eu parei nesse lugar para começar uma ruptura com todos os plebeus, que sempre me incomodam com suas bugigangas e miudezas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "celdar_4" + } + ] + }, + { + "id": "celdar_4", + "message": "Então, você vai me desculpar, mas eu realmente preciso do meu merecido descanso aqui. Sem você me incomodando.", + "replies": [ + { + "text": "Ok, eu vou embora.", + "nextPhraseID": "X" + }, + { + "text": "Uau, você é do tipo amigável, não é?", + "nextPhraseID": "celdar_5" + }, + { + "text": "Eu deveria colocar minha espada através de você por falar assim.", + "nextPhraseID": "celdar_5" + } + ] + }, + { + "id": "celdar_5", + "message": "Você ainda está aí? Será que você não ouvir o que eu disse?" + }, + { + "id": "crossroads_guest", + "message": "Você ouviu sobre o que aconteceu em Loneford? Os guardas parecem um bando de abelhas furiosas zanzando por lá." + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_crossroads_3.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_crossroads_3.json new file mode 100644 index 000000000..82684ebf3 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_crossroads_3.json @@ -0,0 +1,236 @@ +[ + { + "id": "crossroads_sleepguard", + "replies": [ + { + "nextPhraseID": "crossroads_sleepguard_2", + "requires": { + "progress": "nondisplay:17" + } + }, + { + "nextPhraseID": "crossroads_sleepguard_1" + } + ] + }, + { + "id": "crossroads_sleepguard_1", + "message": "Olá. Posso ajudá-lo?", + "replies": [ + { + "text": "Não. Adeus.", + "nextPhraseID": "X" + }, + { + "text": "Se importa se eu usar uma das camas por aqui?", + "nextPhraseID": "crossroads_sleepguard_3" + } + ] + }, + { + "id": "crossroads_sleepguard_2", + "message": "Olá novamente. Espero que a cama esteja confortável o suficiente. Use-a tanto quanto quiser." + }, + { + "id": "crossroads_sleepguard_3", + "replies": [ + { + "nextPhraseID": "crossroads_sleepguard_5", + "requires": { + "progress": "farrik:90" + } + }, + { + "nextPhraseID": "crossroads_sleepguard_4" + } + ] + }, + { + "id": "crossroads_sleepguard_4", + "message": "Não, sinto muito. Estas camas são apenas para guardas e aliados de Feygard." + }, + { + "id": "crossroads_sleepguard_5", + "message": "Diga, você não é aquele garoto que ajudou os guardas no Fallhaven? Com os ladrões que estavam planejando uma fuga?", + "replies": [ + { + "text": "Sim, eu ajudei os guardas da prisão descobrir sobre alguns planos que os ladrões tinham.", + "nextPhraseID": "crossroads_sleepguard_6" + } + ] + }, + { + "id": "crossroads_sleepguard_6", + "message": "Eu sabia que eu tinha ouvido falar de você em algum lugar. Será sempre bem-vindo para nós, guardas. Você pode usar essa segunda cama lá para a esquerda, se precisar descansar.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nondisplay", + "value": 17 + } + ] + }, + { + "id": "crossroads_backguard", + "message": "Uh, Olá.", + "replies": [ + { + "text": "Olá. O que tem aí?", + "nextPhraseID": "crossroads_backguard_1" + } + ] + }, + { + "id": "crossroads_backguard_1", + "message": "Lá? Oh, nada.", + "replies": [ + { + "text": "Ok, deixa prá lá.", + "nextPhraseID": "X" + }, + { + "text": "Mas há um buraco na parede lá. Onde leva?", + "nextPhraseID": "crossroads_backguard_2" + } + ] + }, + { + "id": "crossroads_backguard_2", + "message": "Levar? Oh não. Não leva a lugar algum.", + "replies": [ + { + "text": "Ok, deixa pra lá.", + "nextPhraseID": "X" + }, + { + "text": "Existe algo que você não está me contando.", + "nextPhraseID": "crossroads_backguard_3" + } + ] + }, + { + "id": "crossroads_backguard_3", + "message": "Ah, não, não. Nada de interessante aqui. Agora, caia fora.", + "replies": [ + { + "text": "Ok, deixa prá lá.", + "nextPhraseID": "X" + }, + { + "text": "Que tal eu te pagar 100 moedas de ouro para sair do caminho?", + "nextPhraseID": "crossroads_backguard_4" + } + ] + }, + { + "id": "crossroads_backguard_4", + "message": "Você faria isso? Hum, deixe-me pensar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "crossroads_backguard_5" + } + ] + }, + { + "id": "crossroads_backguard_5", + "message": "Não.", + "replies": [ + { + "text": "Ok, deixa prá lá.", + "nextPhraseID": "X" + }, + { + "text": "200 moedas de ouro, então?", + "nextPhraseID": "crossroads_backguard_6" + } + ] + }, + { + "id": "crossroads_backguard_6", + "message": "Não.", + "replies": [ + { + "text": "Ok, deixa prá lá.", + "nextPhraseID": "X" + }, + { + "text": "400 moedas de ouro, então?", + "nextPhraseID": "crossroads_backguard_7" + } + ] + }, + { + "id": "crossroads_backguard_7", + "message": "Olha, você não está chegando a lugar algum, e não há nada para ver lá.", + "replies": [ + { + "text": "Ok, deixa prá lá.", + "nextPhraseID": "X" + }, + { + "text": "Oferta final: 800 moedas de ouro. Isso é uma fortuna.", + "nextPhraseID": "crossroads_backguard_8" + } + ] + }, + { + "id": "crossroads_backguard_8", + "message": "Hum, 800 ouro que você diz? Bem, por que não disse desde o início? Com certeza, isso poderia funcionar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "crossroads_backguard_9" + } + ] + }, + { + "id": "crossroads_backguard_9", + "message": "Devo dizer-lhe no entanto, que há algo lá que nós não ousaríamos chegar perto. Eu só estou de guarda aqui para certificar de que aquilo não saia, e que ninguém entre", + "replies": [ + { + "text": "N", + "nextPhraseID": "crossroads_backguard_10" + } + ] + }, + { + "id": "crossroads_backguard_10", + "message": "Alguns outros guardas foram lá antes, e voltaram aos berros. Entre por sua conta e risco, mas não diga que eu não o avisei.", + "replies": [ + { + "text": "Não importa, eu só estava brincando.", + "nextPhraseID": "X" + }, + { + "text": "Aqui está o ouro, agora saia do caminho.", + "nextPhraseID": "R", + "requires": { + "item": { + "itemID": "gold", + "quantity": 800, + "requireType": 0 + } + } + } + ] + }, + { + "id": "keknazar", + "message": "* hssss * n (Você ouve um sibilado conforme a criatura começa a se mover em direção a você)", + "replies": [ + { + "text": "Pela a sombra!", + "nextPhraseID": "F" + }, + { + "text": "Você não vai sobreviver a isso, criatura patética.", + "nextPhraseID": "F" + }, + { + "text": "Uma luta! Eu estava ansioso para isso!", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_duaina.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_duaina.json new file mode 100644 index 000000000..7d007fb6e --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_duaina.json @@ -0,0 +1,324 @@ +[ + { + "id": "duaina", + "replies": [ + { + "nextPhraseID": "duaina_0" + } + ] + }, + { + "id": "duaina_0", + "message": "Você! Eu vi você.", + "replies": [ + { + "text": "Jhaeld enviou-me para perguntar-lhe sobre as pessoas que desapareceram.", + "nextPhraseID": "duaina_1", + "requires": { + "progress": "remgard:52" + } + }, + { + "text": "Eu acho que não, eu nunca estive aqui antes.", + "nextPhraseID": "duaina_stop" + }, + { + "text": "Sim, eu esteve aqui, lembra?", + "nextPhraseID": "duaina_1", + "requires": { + "progress": "remgard:63" + } + } + ] + }, + { + "id": "duaina_1", + "message": "Os sonhos e as visões. É você! A criança que desafia a besta. (Duaina dá-lhe um olhar aterrorizado)", + "replies": [ + { + "text": "Então você me viu em suas visões?", + "nextPhraseID": "duaina_2" + } + ] + }, + { + "id": "duaina_2", + "message": "A besta dormindo. Não, não. A luz ofuscante. Ah, por que você veio aqui? Você veio para mim?", + "replies": [ + { + "text": "O que você está falando?", + "nextPhraseID": "duaina_3" + } + ] + }, + { + "id": "duaina_3", + "message": "Nããão, por favor, me poupe!", + "replies": [ + { + "text": "Eu não estou aqui para te pegar, se é isso que você está com medo.", + "nextPhraseID": "duaina_4" + } + ] + }, + { + "id": "duaina_4", + "message": "Eu posso ver isso em você. Você tem o dom. O presente que irá destruir a besta. Minhas visões eram verdadeiras.", + "replies": [ + { + "text": "Talvez você esteja me confundindo com meu irmão Andor?", + "nextPhraseID": "duaina_5" + } + ] + }, + { + "id": "duaina_5", + "message": "Um irmão? Sim, isso deve ser o que eu vi em minhas visões. Está tudo ficando mais claras.", + "replies": [ + { + "text": "N", + "nextPhraseID": "duaina_6" + } + ] + }, + { + "id": "duaina_6", + "message": "A mão negra varre a terra. O animal que caça. Nããão! Deixar este lugar!", + "replies": [ + { + "text": "Eu não estou aqui para te machucar!", + "nextPhraseID": "duaina_7" + } + ] + }, + { + "id": "duaina_7", + "message": "A criança e o irmão. As pessoas inocentes. A besta lança sua sombra.", + "replies": [ + { + "text": "N", + "nextPhraseID": "duaina_s_0" + } + ] + }, + { + "id": "duaina_s_0", + "message": "Eu te vi em minhas visões.", + "replies": [ + { + "text": "N", + "nextPhraseID": "duaina_s_1" + } + ] + }, + { + "id": "duaina_s_1", + "replies": [ + { + "nextPhraseID": "duaina_s_1a", + "requires": { + "progress": "flagstone:60" + } + }, + { + "nextPhraseID": "duaina_s_2" + } + ] + }, + { + "id": "duaina_s_1a", + "message": "Matando a besta debaixo da prisão de Flagstone.", + "replies": [ + { + "text": "N", + "nextPhraseID": "duaina_s_2" + } + ] + }, + { + "id": "duaina_s_2", + "replies": [ + { + "nextPhraseID": "duaina_s_2a", + "requires": { + "progress": "farrik:70" + } + }, + { + "nextPhraseID": "duaina_s_2b", + "requires": { + "progress": "farrik:90" + } + }, + { + "nextPhraseID": "duaina_s_3" + } + ] + }, + { + "id": "duaina_s_2a", + "message": "Cooperando com os ladrões em Fallhaven.", + "replies": [ + { + "text": "N", + "nextPhraseID": "duaina_s_3" + } + ] + }, + { + "id": "duaina_s_2b", + "message": "Trabalhando contra os ladrões em Fallhaven.", + "replies": [ + { + "text": "N", + "nextPhraseID": "duaina_s_3" + } + ] + }, + { + "id": "duaina_s_3", + "replies": [ + { + "nextPhraseID": "duaina_s_3a", + "requires": { + "progress": "bjorgur_grave:50" + } + }, + { + "nextPhraseID": "duaina_s_3b", + "requires": { + "progress": "bjorgur_grave:60" + } + }, + { + "nextPhraseID": "duaina_s_4" + } + ] + }, + { + "id": "duaina_s_3a", + "message": "Algo sobre um punhal voltou a um ancestral em seu túmulo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "duaina_s_4" + } + ] + }, + { + "id": "duaina_s_3b", + "message": "Alguma coisa sobre roubar um punhal em uma tumba escura.", + "replies": [ + { + "text": "N", + "nextPhraseID": "duaina_s_4" + } + ] + }, + { + "id": "duaina_s_4", + "replies": [ + { + "nextPhraseID": "duaina_s_4a", + "requires": { + "progress": "benbyr:30" + } + }, + { + "nextPhraseID": "duaina_jhaeld_s_1" + } + ] + }, + { + "id": "duaina_s_4a", + "message": "Matando ovelhas inocentes.", + "replies": [ + { + "text": "N", + "nextPhraseID": "duaina_jhaeld_s_1" + } + ] + }, + { + "id": "duaina_jhaeld_s_1", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 63 + } + ], + "replies": [ + { + "nextPhraseID": "duaina_jhaeld_s_2", + "requires": { + "progress": "remgard:61" + } + }, + { + "nextPhraseID": "duaina_8" + } + ] + }, + { + "id": "duaina_jhaeld_s_2", + "replies": [ + { + "nextPhraseID": "duaina_jhaeld_s_3", + "requires": { + "progress": "remgard:62" + } + }, + { + "nextPhraseID": "duaina_8" + } + ] + }, + { + "id": "duaina_jhaeld_s_3", + "replies": [ + { + "nextPhraseID": "duaina_jhaeld_s_4", + "requires": { + "progress": "remgard:64" + } + }, + { + "nextPhraseID": "duaina_8" + } + ] + }, + { + "id": "duaina_jhaeld_s_4", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 70 + } + ], + "replies": [ + { + "nextPhraseID": "duaina_8" + } + ] + }, + { + "id": "duaina_8", + "message": "(Duaina olha em você em silêncio, enquanto segura sua mão sobre a boca)", + "replies": [ + { + "text": "O que mais você viu em suas visões?", + "nextPhraseID": "duaina_stop" + }, + { + "text": "Eu não entendo.", + "nextPhraseID": "duaina_stop" + } + ] + }, + { + "id": "duaina_stop", + "message": "(Duaina olha em você em silêncio)" + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_elwyl.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_elwyl.json new file mode 100644 index 000000000..af55e515d --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_elwyl.json @@ -0,0 +1,477 @@ +[ + { + "id": "elwel", + "replies": [ + { + "nextPhraseID": "elwel_4", + "requires": { + "progress": "sisterfight:71" + } + }, + { + "nextPhraseID": "elwel_3", + "requires": { + "progress": "sisterfight:20" + } + }, + { + "nextPhraseID": "elwel_1" + } + ] + }, + { + "id": "elwel_1", + "message": "Vá embora, eu não quero falar com você!", + "replies": [ + { + "text": "Até logo.", + "nextPhraseID": "elwel_2" + }, + { + "text": "Uau, você é do tipo amigável, não é?", + "nextPhraseID": "X" + } + ] + }, + { + "id": "elwel_2", + "message": "(Elwel murmura para si mesma) Crianças estúpidas .." + }, + { + "id": "elwel_3", + "message": "Eu vi você falando com a minha maldita irmã. Não dê ouvidos a ela, ela sempre se esforça muito para me retratar da pior maneira possível.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "sisterfight", + "value": 21 + } + ] + }, + { + "id": "elwel_4", + "message": "Olha o que você fez!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "sisterfight", + "value": 21 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "elwyl_2" + } + ] + }, + { + "id": "elwyl", + "replies": [ + { + "nextPhraseID": "elwyl_cmp_1", + "requires": { + "progress": "sisterfight:71" + } + }, + { + "nextPhraseID": "elwyl_res_2", + "requires": { + "progress": "sisterfight:70" + } + }, + { + "nextPhraseID": "elwyl_pot_1", + "requires": { + "progress": "sisterfight:31" + } + }, + { + "nextPhraseID": "elwyl_12", + "requires": { + "progress": "sisterfight:20" + } + }, + { + "nextPhraseID": "elwyl_1" + } + ] + }, + { + "id": "elwyl_1", + "message": "Quem é você? Será que nós o convidamos? Não, eu não penso assim. Agora sai!", + "replies": [ + { + "text": "Vocês são irmãs?", + "nextPhraseID": "elwyl_3" + }, + { + "text": "Eu vou para onde eu quiser.", + "nextPhraseID": "elwyl_2" + }, + { + "text": "Ok, eu vou embora.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "elwyl_2", + "message": "Bah. Vá embora, antes que eu chame os guardas por aqui!" + }, + { + "id": "elwyl_3", + "message": "Sim. Argh. Não é que eu esteja orgulhosa de ter uma irmã como... ela.", + "replies": [ + { + "text": "N", + "nextPhraseID": "elwyl_4" + } + ] + }, + { + "id": "elwyl_4", + "message": "Ela é a ovelha negra da família. Ela nunca concorda com nada, e sempre reclama. Basta olhar para ela.", + "replies": [ + { + "text": "N", + "nextPhraseID": "elwyl_5" + } + ] + }, + { + "id": "elwyl_5", + "message": "Ela ainda tem o estômago de me chamar de ovelha negra da família, quando é evidente que é ela que está causando todo o problema por aqui.", + "replies": [ + { + "text": "N", + "nextPhraseID": "elwyl_6" + } + ] + }, + { + "id": "elwyl_6", + "message": "Ela está sempre me importunando dizendo-me que eu deveria sair do que ela considera ser a sua casa, quando na verdade é a minha casa e é ela que deveria se mudar para que as coisas possam se acalmar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "elwyl_8" + } + ] + }, + { + "id": "elwyl_8", + "message": "Argh. Estou tão chateado com ela!", + "replies": [ + { + "text": "Boa sorte com isso. Vou deixá-las com sua briga.", + "nextPhraseID": "X" + }, + { + "text": "Existe algo que eu possa fazer para ajudar?", + "nextPhraseID": "elwyl_9" + }, + { + "text": "Algumas pessoas têm reclamado que a sua disputa os têm mantido acordados à noite.", + "nextPhraseID": "elwyl_10", + "requires": { + "progress": "sisterfight:10" + } + } + ] + }, + { + "id": "elwyl_9", + "message": "Sim, você deve sair! Eu nunca te convidei aqui. Vá embora, antes que eu chame os guardas!" + }, + { + "id": "elwyl_10", + "message": "É o que eu sempre digo a ela, para simplificar. Ela insiste em gritar comigo quando discutimos. Eu acho que toda a sua gritaria deve ter tornado-a meia surda, pois eu também tenho que gritar com ela para fazê-la entender.", + "replies": [ + { + "text": "N", + "nextPhraseID": "elwyl_11" + } + ] + }, + { + "id": "elwyl_11", + "message": "Ela não para também. Não me lembro mais há quanto tempo isso tem acontecido, isto acontece há praticamente uma eternidade.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "sisterfight", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "elwyl_12" + } + ] + }, + { + "id": "elwyl_12", + "message": "Oh, minha irmã é tão teimosa! Você sabe, na noite passada, eu estava falando com ela sobre as poções que Hjaldar costumava fazer. O cheiro de sua fabricação costumava ser sentido em nossa casa... quer dizer... em minha casa.", + "replies": [ + { + "text": "N", + "nextPhraseID": "elwyl_13" + } + ] + }, + { + "id": "elwyl_13", + "message": "Então, eu estava falando com ela sobre as poções de foco precisão e como eu sempre pensei que o sua coloração azulada parecia tão estranha, já que ele não usava ingredientes azuis na sua fabricação.", + "replies": [ + { + "text": "N", + "nextPhraseID": "elwyl_14" + } + ] + }, + { + "id": "elwyl_14", + "message": "Então, de repente, ela começou a discutir comigo sobre como eu tenho estado completamente errada. Ela insiste que as poções eram verdes.", + "replies": [ + { + "text": "N", + "nextPhraseID": "elwyl_15" + } + ] + }, + { + "id": "elwyl_15", + "message": "Eu não consigo entender por que ela fez tal alvoroço visto que a poção era claramente azul. Lembro-me claramente. Argh, como ela é teimosa! Ela não quer sequer admitir que esteja errada!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "sisterfight", + "value": 30 + } + ], + "replies": [ + { + "text": "Você tem certeza de que era azul?", + "nextPhraseID": "elwyl_16" + }, + { + "text": "Por que fazer tal escarcel por conta da cor de alguma poção?", + "nextPhraseID": "elwyl_17" + }, + { + "text": "Há algo que eu possa fazer para ajudá-las?", + "nextPhraseID": "elwyl_18" + } + ] + }, + { + "id": "elwyl_16", + "message": "Por quê... sim... claro. Eu não estou errada! Eram claramente azul.", + "replies": [ + { + "text": "Por que fazer um escarcel por conta da cor de alguma poção?", + "nextPhraseID": "elwyl_17" + }, + { + "text": "Há algo que eu possa fazer para ajudá-las?", + "nextPhraseID": "elwyl_18" + } + ] + }, + { + "id": "elwyl_17", + "message": "Exatamente. Ela está claramente errada, por que não pode simplesmente admitir, e nós podemos seguir em frente?", + "replies": [ + { + "text": "Você tem certeza de que era azul?", + "nextPhraseID": "elwyl_16" + }, + { + "text": "Há algo que eu possa fazer para ajudá-las?", + "nextPhraseID": "elwyl_18" + } + ] + }, + { + "id": "elwyl_18", + "message": "Talvez você possa ir visitar Hjaldar e conseguir um desses poções de precisão e ambos podemos mostrar que ela está claramente errada.", + "replies": [ + { + "text": "N", + "nextPhraseID": "elwyl_19" + } + ] + }, + { + "id": "elwyl_19", + "message": "Sua casa fica na costa nordeste da cidade. *Elwyl aponta para fora*", + "replies": [ + { + "text": "N", + "nextPhraseID": "elwyl_20" + } + ] + }, + { + "id": "elwyl_20", + "message": "No entanto, eu não sei por que ele não faz essas poções. Talvez ele ainda possua algumas em seu antigo suprimento que possa lhe dar.", + "replies": [ + { + "text": "Eu vou voltar com uma daqueles poções.", + "nextPhraseID": "elwyl_21" + }, + { + "text": "Não vou me envolver nisso. Você vai ter que resolver o seu próprio conflito.", + "nextPhraseID": "elwyl_22" + } + ] + }, + { + "id": "elwyl_21", + "message": "Bom. Talvez quando você trouxer essa poção, ela vai concordar em que estava errada de uma vez!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "sisterfight", + "value": 31 + } + ] + }, + { + "id": "elwyl_22", + "message": "Bah, vocês crianças nunca são bons com nada." + }, + { + "id": "elwyl_pot_1", + "message": "Oh, é você de novo. O que você quer?", + "replies": [ + { + "text": "Eu tenho uma daquelas poções de precisão para você.", + "nextPhraseID": "elwyl_res_1", + "requires": { + "item": { + "itemID": "pot_focus_ac", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Eu tenho uma poção forte de precisão para você.", + "nextPhraseID": "elwyl_res_1", + "requires": { + "item": { + "itemID": "pot_focus_ac2", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Você falou sobre uma poção antes. Pode repetir?", + "nextPhraseID": "elwyl_12" + }, + { + "text": "Algumas pessoas têm reclamado que a sua disputa os têm mantido acordados à noite.", + "nextPhraseID": "elwyl_10", + "requires": { + "progress": "sisterfight:10" + } + } + ] + }, + { + "id": "elwyl_res_1", + "message": "Ah bom. Dê-me isso.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "sisterfight", + "value": 70 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "elwyl_res_2" + } + ] + }, + { + "id": "elwyl_res_2", + "message": "Huh, o que é isso? É amarelo .. Eu tinha certeza que ela costumava ser azul. Deixe-me cheirar para ter certeza de que é o tipo certo de poção.", + "replies": [ + { + "text": "N", + "nextPhraseID": "elwyl_res_3" + } + ] + }, + { + "id": "elwyl_res_3", + "message": "Hum, sim, cheira exatamente como eu me lembro. Deve ser a poção certa.", + "replies": [ + { + "text": "N", + "nextPhraseID": "elwyl_res_4" + } + ] + }, + { + "id": "elwyl_res_4", + "message": "Isto significa... Que Elwel que estava errada de qualquer maneira!", + "replies": [ + { + "text": "N", + "nextPhraseID": "elwyl_res_5" + } + ] + }, + { + "id": "elwyl_res_5", + "message": "Elwel, olha isso, você estava errada! A poção não era verde, como você disse, é amarela! Por que você não me escutou?!", + "replies": [ + { + "text": "N", + "nextPhraseID": "elwyl_res_6" + } + ] + }, + { + "id": "elwyl_res_6", + "message": "Elwel, você está sempre se esforçando para provar que estou errada. Olhe bem para isso, veja você mesma que você estava errada, de uma vez!", + "replies": [ + { + "text": "Que que seja, vocês duas não parecem se dar muito bem. Eu vou deixar vocês com a sua disputa.", + "nextPhraseID": "elwyl_res_7" + }, + { + "text": "Espero que vocês dois possam se dar bem algum dia.", + "nextPhraseID": "elwyl_res_7" + } + ] + }, + { + "id": "elwyl_res_7", + "message": "Ei Elwel, você estava errada o tempo todo! Por que não você nunca vai admitir quando você está claramente errada?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "sisterfight", + "value": 71 + } + ] + }, + { + "id": "elwyl_cmp_1", + "message": "Oh, é você de novo. Obrigado por me trazer aquela poção antes.", + "replies": [ + { + "text": "N", + "nextPhraseID": "elwyl_res_7" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_elythom_1.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_elythom_1.json new file mode 100644 index 000000000..5fc319427 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_elythom_1.json @@ -0,0 +1,333 @@ +[ + { + "id": "krell", + "replies": [ + { + "nextPhraseID": "krell_1" + } + ] + }, + { + "id": "krell_1", + "message": "Bom dia. Eu sou o mestre Krell dos Cavaleiros de Elythom. Como podemos o ajudar?", + "replies": [ + { + "text": "Cavaleiros de Elythom? O que é isso?", + "nextPhraseID": "krell_knights_1" + }, + { + "text": "Eu fui enviado por Jhaeld para perguntar-lhe sobre as pessoas desaparecidas.", + "nextPhraseID": "krell_jhaeld1", + "requires": { + "progress": "remgard:52" + } + }, + { + "text": "O que você faz aqui?", + "nextPhraseID": "krell_2" + } + ] + }, + { + "id": "krell_2", + "message": "Eu e meu regimento de cavaleiros estamos apenas visitando Remgard por causa de,.. digamos... negócios inacabados.", + "replies": [ + { + "text": "N", + "nextPhraseID": "krell_3" + } + ] + }, + { + "id": "krell_3", + "message": "Quanto à natureza do nosso negócio aqui, isso é algo que eu prefiro não revelar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "krell_4" + } + ] + }, + { + "id": "krell_4", + "message": "Servimos a ordem de Elythom.", + "replies": [ + { + "text": "O que é isso?", + "nextPhraseID": "krell_knights_1" + }, + { + "text": "Jhaeld enviou-me para perguntar sobre as pessoas desaparecidas.", + "nextPhraseID": "krell_jhaeld1", + "requires": { + "progress": "remgard:52" + } + } + ] + }, + { + "id": "krell_knights_1", + "message": "Somos uma ordem de cavaleiros que vêm de Brimhaven.", + "replies": [ + { + "text": "N", + "nextPhraseID": "krell_knights_2" + } + ] + }, + { + "id": "krell_knights_2", + "message": "Você deve visitar nosso batalhão em Brimhaven, se você alguma vez estiver por lá.", + "replies": [ + { + "text": "N", + "nextPhraseID": "krell_knights_3" + } + ] + }, + { + "id": "krell_knights_3", + "message": "Atendemos todos os tipos de clientes, desde os mais ricos até mesmo aos mais pobres dentre os pobres.", + "replies": [ + { + "text": "N", + "nextPhraseID": "krell_knights_4" + } + ] + }, + { + "id": "krell_knights_4", + "message": "Independentemente disso, nós sempre fazemos o trabalho.", + "replies": [ + { + "text": "Quais são os tipos de trabalho que você faz?", + "nextPhraseID": "krell_knights_5" + } + ] + }, + { + "id": "krell_knights_5", + "message": "Principalmente, nós ajudamos as pessoas a cobrar o ouro que outras pessoas lhes devem.", + "replies": [ + { + "text": "N", + "nextPhraseID": "krell_knights_6" + } + ] + }, + { + "id": "krell_knights_6", + "message": "Nós também ajudamos as pessoas a encontrar .. erm .. pessoas que estão desaparecidas.", + "replies": [ + { + "text": "Sobre isso, Jhaeld enviou-me para perguntar sobre as pessoas desaparecidas.", + "nextPhraseID": "krell_jhaeld1", + "requires": { + "progress": "remgard:52" + } + }, + { + "text": "Boa sorte com isso.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "krell_jhaeld1", + "message": "Shh, não tão alto!", + "replies": [ + { + "text": "N", + "nextPhraseID": "krell_jhaeld2" + } + ] + }, + { + "id": "krell_jhaeld2", + "message": "Sim, ouvimos os relatos de que pessoas estão desaparecidas aqui em Remgard. Muita... falta de sorte.", + "replies": [ + { + "text": "N", + "nextPhraseID": "krell_jhaeld3" + } + ] + }, + { + "id": "krell_jhaeld3", + "message": "Tivemos até um de nossos cavaleiros desaparecendo de nosso grupo. Agora, devido à natureza de nossa ordem, eu presumo que você pode ver como isso nos coloca em uma .. situação peculiar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "krell_jhaeld4" + } + ] + }, + { + "id": "krell_jhaeld4", + "message": "Veja você, geralmente, é nos cavaleiros que encontramos... pessoas desaparecidas. Agora, temos um dos nossos desaparecendo. Isso nunca aconteceu antes, e estamos muito inseguros sobre o que fazer sobre isso.", + "replies": [ + { + "text": "N", + "nextPhraseID": "krell_jhaeld5" + } + ] + }, + { + "id": "krell_jhaeld5", + "message": "Verdade seja dita, as pessoas em nossa ordem sucumbiram em combate ante inimigos mais fortes, mas apenas .. desaparecer sem deixar rastro, isso é inédito.", + "replies": [ + { + "text": "N", + "nextPhraseID": "krell_jhaeld6" + } + ] + }, + { + "id": "krell_jhaeld6", + "message": "Temos uma forte ligação um com o outro, e alguém deixar a ordem seria impensável.", + "replies": [ + { + "text": "N", + "nextPhraseID": "krell_jhaeld7" + } + ] + }, + { + "id": "krell_jhaeld7", + "message": "Como você pode ver, isso nos coloca em uma situação difícil.", + "replies": [ + { + "text": "O que você sabe sobre o cavaleiro que está faltando?", + "nextPhraseID": "krell_jhaeld8" + }, + { + "text": "Existe alguma coisa que você descobriu que você não disse para os guardas antes?", + "nextPhraseID": "krell_jhaeld8" + } + ] + }, + { + "id": "krell_jhaeld8", + "message": "Bem, eu disse tudo que sabemos até agora aos guardas. Eles também parecem achar esta situação bastante embaraçosa, por não poderem nem mesmo manter um cavaleiro seguro aqui em sua cidade.", + "replies": [ + { + "text": "N", + "nextPhraseID": "krell_jhaeld9" + } + ] + }, + { + "id": "krell_jhaeld9", + "message": "Não temos pistas além do fato de que ele esteja faltando, infelizmente. Onde o nosso irmão cavaleiro está, ainda é um mistério para nós.", + "replies": [ + { + "text": "N", + "nextPhraseID": "krell_jhaeld_s_1" + } + ] + }, + { + "id": "krell_jhaeld_s_1", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 62 + } + ], + "replies": [ + { + "nextPhraseID": "krell_jhaeld_s_2", + "requires": { + "progress": "remgard:61" + } + }, + { + "nextPhraseID": "krell_jhaeld10" + } + ] + }, + { + "id": "krell_jhaeld_s_2", + "replies": [ + { + "nextPhraseID": "krell_jhaeld_s_3", + "requires": { + "progress": "remgard:63" + } + }, + { + "nextPhraseID": "krell_jhaeld10" + } + ] + }, + { + "id": "krell_jhaeld_s_3", + "replies": [ + { + "nextPhraseID": "krell_jhaeld_s_4", + "requires": { + "progress": "remgard:64" + } + }, + { + "nextPhraseID": "krell_jhaeld10" + } + ] + }, + { + "id": "krell_jhaeld_s_4", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 70 + } + ], + "replies": [ + { + "nextPhraseID": "krell_jhaeld10" + } + ] + }, + { + "id": "krell_jhaeld10", + "message": "Para o bem da reputação da nossa ordem, por favor, mantenha isso para si mesmo, se possível. Nós não queremos que as pessoas tenham a percepção sobre Cavaleiros de Elythom enfraquecida, de forma alguma." + }, + { + "id": "elythom_knight1", + "message": "Olá. O que os Cavaleiros de Elythom fazem por você?", + "replies": [ + { + "text": "Cavaleiros de Elythom? O que é isso?", + "nextPhraseID": "elythom_knight1_2" + }, + { + "text": "Essa armadura que vocês usam parece ser muito agradável.", + "nextPhraseID": "elythom_knight1_3" + } + ] + }, + { + "id": "elythom_knight1_2", + "message": "Fale com o mestre Krell lá, ele pode dizer tudo sobre nós." + }, + { + "id": "elythom_knight1_3", + "message": "Obrigado, é o conjunto padrão de armadura que nós usamos na ordem. Ela requer, no entanto, muita limpeza e polimento para torná-la impecável." + }, + { + "id": "elythom_knight2", + "message": "Olá. *Tosse*", + "replies": [ + { + "text": "Quem é você?", + "nextPhraseID": "elythom_knight1_2" + }, + { + "text": "Essa armadura que vocês usam parece realmente ser muito agradável.", + "nextPhraseID": "elythom_knight1_3" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_erinith.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_erinith.json new file mode 100644 index 000000000..1f2dfa994 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_erinith.json @@ -0,0 +1,470 @@ +[ + { + "id": "erinith", + "replies": [ + { + "nextPhraseID": "erinith_complete_1", + "requires": { + "progress": "erinith:50" + } + }, + { + "nextPhraseID": "erinith_givenpotion_1", + "requires": { + "progress": "erinith:40" + } + }, + { + "nextPhraseID": "erinith_givenpotion_1", + "requires": { + "progress": "erinith:41" + } + }, + { + "nextPhraseID": "erinith_givenpotion_1", + "requires": { + "progress": "erinith:42" + } + }, + { + "nextPhraseID": "erinith_needspotions_1", + "requires": { + "progress": "erinith:30" + } + }, + { + "nextPhraseID": "erinith_needsbook_1", + "requires": { + "progress": "erinith:20" + } + }, + { + "nextPhraseID": "erinith_needsbook_1", + "requires": { + "progress": "erinith:21" + } + }, + { + "nextPhraseID": "erinith_1" + } + ] + }, + { + "id": "erinith_complete_1", + "message": "Obrigado por toda sua ajuda anterior." + }, + { + "id": "erinith_1", + "message": "Por favor, você tem que me ajudar!", + "replies": [ + { + "text": "O que há de errado?", + "nextPhraseID": "erinith_story_1" + } + ] + }, + { + "id": "erinith_story_1", + "message": "Eu estava montando acampamento aqui durante a noite, e foi atacado por bandidos enquanto dormia.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "erinith", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "erinith_story_2" + } + ] + }, + { + "id": "erinith_story_2", + "message": "Concordo, esta ferida não parece estar se curando.", + "replies": [ + { + "text": "N", + "nextPhraseID": "erinith_story_3" + } + ] + }, + { + "id": "erinith_story_3", + "message": "Pelo menos eu consegui impedi-los de obter o meu livro. Tenho certeza de que eles estavam atrás do livro.", + "replies": [ + { + "text": "Parece um livro valioso então. Isso soa interessante, por favor, continue.", + "nextPhraseID": "erinith_story_4" + }, + { + "text": "O que aconteceu?", + "nextPhraseID": "erinith_story_4" + } + ] + }, + { + "id": "erinith_story_4", + "message": "Consegui lançar o livro no meio das árvores ali durante o ataque. *Aponta para as árvores diretamente ao norte*", + "replies": [ + { + "text": "N", + "nextPhraseID": "erinith_story_5" + } + ] + }, + { + "id": "erinith_story_5", + "message": "Eu não acho que eles conseguiram pegar o livro. É provável que ainda esteja em algum lugar entre as árvores.", + "replies": [ + { + "text": "O que há no livro?", + "nextPhraseID": "erinith_story_6" + } + ] + }, + { + "id": "erinith_story_6", + "message": "Ah, eu não posso dizer realmente.", + "replies": [ + { + "text": "Eu poderia ajudá-lo a encontrar o livro, se quiser.", + "nextPhraseID": "erinith_story_7" + }, + { + "text": "Quanto valeria para você, caso eu obtenha o livro de volta?", + "nextPhraseID": "erinith_story_gold_1" + } + ] + }, + { + "id": "erinith_story_7", + "message": "Você o faria? Oh obrigado.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "erinith", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "erinith_story_8" + } + ] + }, + { + "id": "erinith_story_8", + "message": "Por favor, vá procurá-lo entre as árvores para o nordeste." + }, + { + "id": "erinith_story_gold_1", + "message": "Valeria? Bem, eu estava esperando que você pode me ajudar de qualquer maneira, mas eu acho que posso lhe dar umas 200 moedas de ouro.", + "replies": [ + { + "text": "200 moedas de ouro é então. Eu vou procurar livro para você.", + "nextPhraseID": "erinith_story_gold_2" + }, + { + "text": "Apenas 200 moedas de ouro, é que tudo o que você pode fazer? Tudo bem, eu vou procurar para você esse livro estúpido.", + "nextPhraseID": "erinith_story_gold_2" + }, + { + "text": "Guarde seu ouro, eu vou devolver o livro para você de qualquer maneira.", + "nextPhraseID": "erinith_story_7" + }, + { + "text": "Não, eu não estou me envolver nisso. Tchau.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "erinith_story_gold_2", + "message": "Faça isso rápido.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "erinith", + "value": 21 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "erinith_story_8" + } + ] + }, + { + "id": "erinith_needsbook_1", + "message": "Você ainda não encontrou meu livro?", + "replies": [ + { + "text": "Ainda não, eu ainda estou procurando.", + "nextPhraseID": "erinith_story_8" + }, + { + "text": "Sim, aqui está o seu livro.", + "nextPhraseID": "erinith_needsbook_2", + "requires": { + "item": { + "itemID": "erinith_book", + "quantity": 1, + "requireType": 0 + } + } + } + ] + }, + { + "id": "erinith_needsbook_2", + "rewards": [ + { + "rewardType": 0, + "rewardID": "erinith", + "value": 30 + } + ], + "replies": [ + { + "nextPhraseID": "erinith_needsbook_3_2", + "requires": { + "progress": "erinith:21" + } + }, + { + "nextPhraseID": "erinith_needsbook_3_1" + } + ] + }, + { + "id": "erinith_needsbook_3_1", + "message": "Você encontrou! Oh muito obrigado. Eu estava tão preocupado que eu tinha perdido.", + "replies": [ + { + "text": "N", + "nextPhraseID": "erinith_needspotions_2" + } + ] + }, + { + "id": "erinith_needsbook_3_2", + "message": "Você encontrou! Oh muito obrigado. Em troca, aqui é o ouro que eu prometi.", + "rewards": [ + { + "rewardType": 1, + "rewardID": "gold200" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "erinith_needspotions_2" + } + ] + }, + { + "id": "erinith_needspotions_1", + "message": "Obrigado por me ajudar a encontrar o meu livro anteriormente.", + "replies": [ + { + "text": "N", + "nextPhraseID": "erinith_needspotions_2" + } + ] + }, + { + "id": "erinith_needspotions_2", + "message": "Eu ainda estou machucado com esta ferida que abriu durante o ataque noturno.", + "replies": [ + { + "text": "N", + "nextPhraseID": "erinith_needspotions_3" + } + ] + }, + { + "id": "erinith_needspotions_3", + "message": "Realmente, dói muito e não parece estar se curando.", + "replies": [ + { + "text": "N", + "nextPhraseID": "erinith_needspotions_4" + } + ] + }, + { + "id": "erinith_needspotions_4", + "message": "Eu estou realmente precisando de alguma cicatrização mais forte aqui. Talvez algumas poções resolvessem.", + "replies": [ + { + "text": "N", + "nextPhraseID": "erinith_needspotions_5" + } + ] + }, + { + "id": "erinith_needspotions_5", + "message": "Ouvi dizer que os fabricantes de poções estes dias têm de poções maiores de cura, e não apenas as poções regulares.", + "replies": [ + { + "text": "N", + "nextPhraseID": "erinith_needspotions_6" + } + ] + }, + { + "id": "erinith_needspotions_6", + "message": "Uma porção maior certamente resolveria. Caso contrário, eu acho que quatro poções regular de saúde seriam suficientes.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "erinith", + "value": 31 + } + ], + "replies": [ + { + "text": "Vou pegar aquelas poções para você.", + "nextPhraseID": "erinith_needspotions_7" + }, + { + "text": "Aqui, pegue essa poção de farinha de ossos ao invés. É muito potente na cura de feridas profundas.", + "nextPhraseID": "erinith_gavepotion_bm_1", + "requires": { + "item": { + "itemID": "bonemeal_potion", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Aqui, pegue essa poção de saúde.", + "nextPhraseID": "erinith_gavepotion_major_1", + "requires": { + "item": { + "itemID": "health_major2", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Aqui, pegue essa poção de saúde.", + "nextPhraseID": "erinith_gavepotion_major_1", + "requires": { + "item": { + "itemID": "health_major", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Aqui, tome estas poções quatro regulares de saúde.", + "nextPhraseID": "erinith_gavepotion_reg_1", + "requires": { + "item": { + "itemID": "health", + "quantity": 4, + "requireType": 0 + } + } + } + ] + }, + { + "id": "erinith_needspotions_7", + "message": "Obrigado meu amigo. Por favor, volte logo." + }, + { + "id": "erinith_gavepotion_bm_1", + "message": "Poção farinha de ossos? Mas .. mas .. Nós não somos autorizados a usá-los uma vez que eles são proibidos por Lorde Geomyr.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "erinith", + "value": 40 + } + ], + "replies": [ + { + "text": "Quem vai descobrir?", + "nextPhraseID": "erinith_gavepotion_bm_2" + }, + { + "text": "Eu já as usei em mim mesmo. São perfeitamente seguras.", + "nextPhraseID": "erinith_gavepotion_bm_2" + } + ] + }, + { + "id": "erinith_gavepotion_bm_2", + "message": "Hm, sim. Eu acho que você tem razão. Oh, bem, aqui vai. *bebeu a porção*", + "replies": [ + { + "text": "N", + "nextPhraseID": "erinith_gavepotion_1" + } + ] + }, + { + "id": "erinith_gavepotion_major_1", + "message": "Obrigado por me trazer uma. *bebeu a porção*", + "rewards": [ + { + "rewardType": 0, + "rewardID": "erinith", + "value": 41 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "erinith_gavepotion_1" + } + ] + }, + { + "id": "erinith_gavepotion_reg_1", + "message": "Obrigado por trazê-las para mim. *Bebeu todas as quatro poções*", + "rewards": [ + { + "rewardType": 0, + "rewardID": "erinith", + "value": 42 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "erinith_gavepotion_1" + } + ] + }, + { + "id": "erinith_gavepotion_1", + "message": "Uau, eu já sinto-me um pouco melhor. Eu acho que esta cura realmente funciona.", + "replies": [ + { + "text": "N", + "nextPhraseID": "erinith_givenpotion_1" + } + ] + }, + { + "id": "erinith_givenpotion_1", + "message": "Obrigado, meu amigo, por sua ajuda. Meu livro está seguro e minha ferida está cicatrizando. Espero que nossos caminhos se cruzem novamente.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "erinith", + "value": 50 + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_ervelyn.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_ervelyn.json new file mode 100644 index 000000000..d7aae5c5d --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_ervelyn.json @@ -0,0 +1,97 @@ +[ + { + "id": "ervelyn", + "replies": [ + { + "nextPhraseID": "ervelyn_gave1", + "requires": { + "progress": "remgard2:46" + } + }, + { + "nextPhraseID": "ervelyn_give1", + "requires": { + "progress": "remgard2:45" + } + }, + { + "nextPhraseID": "ervelyn_1" + } + ] + }, + { + "id": "ervelyn_gave1", + "message": "Olá de novo, meu amigo. Você é sempre bem-vindo aqui.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ervelyn_d" + } + ] + }, + { + "id": "ervelyn_1", + "message": "Olá. Bem-vindo à minha loja.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ervelyn_d" + } + ] + }, + { + "id": "ervelyn_d", + "message": "Como posso ser útil?", + "replies": [ + { + "text": "Deixe-me ver o que você tem que trocar.", + "nextPhraseID": "ervelyn_shop" + }, + { + "text": "Não importa. Tchau.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "ervelyn_shop", + "message": "Certamente.", + "replies": [ + { + "text": "N", + "nextPhraseID": "S" + } + ] + }, + { + "id": "ervelyn_give1", + "message": "É você! Eu ouvi o que você fez, nos ajudando com a bruxa Algangror. Você tem o meu agradecimento, amigo!", + "replies": [ + { + "text": "N", + "nextPhraseID": "ervelyn_give2" + } + ] + }, + { + "id": "ervelyn_give2", + "message": "Como um símbolo de meu apreço, por favor aceite este chapéu que eu fiz. Que ele possa orientá-lo através da luz ofuscante.", + "rewards": [ + { + "rewardType": 1, + "rewardID": "ervelyn_hat" + }, + { + "rewardType": 0, + "rewardID": "remgard2", + "value": 46 + } + ], + "replies": [ + { + "text": "Você parece apenas mais um aventureiro. Diga-me filho, o que o traz aqui?", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven.json new file mode 100644 index 000000000..ac28c2a4b --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven.json @@ -0,0 +1,206 @@ +[ + { + "id": "fallhaven_citizen1", + "message": "Olá lá. Bons tempos, não?", + "replies": [ + { + "text": "Você viu meu irmão Andor?", + "nextPhraseID": "fallhaven_andor_1" + } + ] + }, + { + "id": "fallhaven_citizen2", + "message": "Olá. O que você quer de mim?", + "replies": [ + { + "text": "Você viu meu irmão Andor?", + "nextPhraseID": "fallhaven_andor_2" + } + ] + }, + { + "id": "fallhaven_citizen3", + "message": "Oi. Posso ajudá-lo?", + "replies": [ + { + "text": "Você viu meu irmão Andor?", + "nextPhraseID": "fallhaven_andor_3" + } + ] + }, + { + "id": "fallhaven_citizen4", + "message": "Você é aquele garoto da aldeia Crossglen, certo?", + "replies": [ + { + "text": "Você viu meu irmão Andor?", + "nextPhraseID": "fallhaven_andor_4" + } + ] + }, + { + "id": "fallhaven_citizen5", + "message": "Fora do caminho, camponês." + }, + { + "id": "fallhaven_citizen6", + "message": "Bom dia para você.", + "replies": [ + { + "text": "Você viu meu irmão Andor?", + "nextPhraseID": "fallhaven_andor_6" + } + ] + }, + { + "id": "fallhaven_andor_1", + "message": "Não, sinto muito. Eu não vi ninguém com essa descrição." + }, + { + "id": "fallhaven_andor_2", + "message": "Algum outro garoto? Hum, deixe-me pensar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_andor_1" + } + ] + }, + { + "id": "fallhaven_andor_3", + "message": "Hum, eu poderia ter visto alguém corresponde a essa descrição de alguns dias atrás, embora não consiga me lembrar onde." + }, + { + "id": "fallhaven_andor_4", + "message": "Ah, sim, havia um outro garoto da aldeia Crossglen aqui há alguns dias. Não tenho certeza se ele corresponde à sua descrição.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_andor_4_1" + } + ] + }, + { + "id": "fallhaven_andor_4_1", + "message": "Havia algumas pessoas sombrias o seguindo por aí. Não vi mais do que isso." + }, + { + "id": "fallhaven_andor_6", + "message": "Não. Não o vi." + }, + { + "id": "fallhaven_guard", + "message": "Mantenha fora de problemas." + }, + { + "id": "fallhaven_priest", + "message": "A Sombra esteja com você.", + "replies": [ + { + "text": "Você pode me dizer mais sobre a Sombra?", + "nextPhraseID": "priest_shadow_1" + } + ] + }, + { + "id": "priest_shadow_1", + "message": "A Sombra nos protege. Ela nos mantém seguros e nos conforta quando dormimos.", + "replies": [ + { + "text": "N", + "nextPhraseID": "priest_shadow_2" + } + ] + }, + { + "id": "priest_shadow_2", + "message": "Ela nos acompanha onde quer que vamos. Vá com a Sombra, meu filho.", + "replies": [ + { + "text": "A Sombra esteja com você.", + "nextPhraseID": "X" + }, + { + "text": "Que seja. Tchau.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "rigmor", + "message": "Bem Olá! Você é um garoto bonitinho.", + "replies": [ + { + "text": "Você viu meu irmão Andor?", + "nextPhraseID": "rigmor_1" + }, + { + "text": "Eu realmente preciso ir.", + "nextPhraseID": "rigmor_leave_select" + } + ] + }, + { + "id": "rigmor_1", + "message": "Seu irmão, você diz? Seu nome é Andor? Não. Eu não me lembro de conhecer alguém assim.", + "replies": [ + { + "text": "Eu realmente preciso ir.", + "nextPhraseID": "rigmor_leave_select" + } + ] + }, + { + "id": "rigmor_leave_select", + "replies": [ + { + "nextPhraseID": "rigmor_thanks", + "requires": { + "progress": "calomyran:100" + } + }, + { + "nextPhraseID": "X" + } + ] + }, + { + "id": "rigmor_thanks", + "message": "Eu ouvi dizer que você ajudou a encontrar o livro do meu avô, obrigado. Ele havia falado sobre o livro durante semanas. Coitado, ele tende a esquecer as coisas.", + "replies": [ + { + "text": "O prazer foi meu. Tchau.", + "nextPhraseID": "X" + }, + { + "text": "Você deve manter um olho nele, ou coisas ruins podem acontecer com ele.", + "nextPhraseID": "X" + }, + { + "text": "Seja como for, eu só fiz isso pelo ouro.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_clothes", + "message": "Bem-vindo à minha loja. Consulte por favor minha seleção de roupas finas e jóias.", + "replies": [ + { + "text": "Deixe-me ver seus produtos.", + "nextPhraseID": "S" + } + ] + }, + { + "id": "fallhaven_potions", + "message": "Bem-vindo à minha loja. Consulte por favor minha seleção fina de produtos para o dia a dia.", + "replies": [ + { + "text": "Deixe-me ver que poções que você tem disponíveis.", + "nextPhraseID": "S" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_arcir.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_arcir.json new file mode 100644 index 000000000..bf3c04fbd --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_arcir.json @@ -0,0 +1,153 @@ +[ + { + "id": "arcir_start", + "message": "Olá. Sou Arcir.", + "replies": [ + { + "text": "Notei a estátua de Elythara no porão.", + "nextPhraseID": "arcir_elythara_1", + "requires": { + "progress": "arcir:10" + } + }, + { + "text": "Você realmente parece gostar de seus livros.", + "nextPhraseID": "arcir_books_1" + } + ] + }, + { + "id": "arcir_anythingelse", + "message": "Tem algo mais que você queria perguntar?", + "replies": [ + { + "text": "Notei a estátua de Elythara no porão.", + "nextPhraseID": "arcir_elythara_1", + "requires": { + "progress": "arcir:10" + } + }, + { + "text": "Você realmente parece gostar de seus livros.", + "nextPhraseID": "arcir_books_1" + } + ] + }, + { + "id": "arcir_elythara_1", + "message": "Oh, você encontrou minha estátua no porão?\n\nSim, Elythara é minha protetora.", + "replies": [ + { + "text": "Certo.", + "nextPhraseID": "arcir_anythingelse" + } + ] + }, + { + "id": "arcir_books_1", + "message": "Acho um grande prazer em meus livros. Eles contêm o conhecimento acumulado de gerações passadas.", + "replies": [ + { + "text": "Você tem um livro chamado 'Segredos de Calomyran'?", + "nextPhraseID": "arcir_calomyran_select", + "requires": { + "progress": "calomyran:10" + } + }, + { + "text": "Certo.", + "nextPhraseID": "arcir_anythingelse" + } + ] + }, + { + "id": "arcir_calomyran_1", + "message": "'Segredos de Calomyran'? Hm, sim, eu acho que eu tenho um desses no meu porão.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_calomyran_2" + } + ] + }, + { + "id": "arcir_calomyran_2", + "message": "O velho Benradas veio aqui na semana passada, queria vender-me esse livro. Como não é realmente o meu tipo de livro, eu não aceitei.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_calomyran_3" + } + ] + }, + { + "id": "arcir_calomyran_3", + "message": "Ele parecia chateado por eu dizer que gostava de seu livro, e jogou-o em mim enquanto saiu atormentado da minha casa.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_calomyran_4" + } + ] + }, + { + "id": "arcir_calomyran_4", + "message": "Pobre velho Benradas, ele provavelmente se esqueceu de que ele o deixou aqui. Ele tende a esquecer as coisas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_anythingelse" + } + ] + }, + { + "id": "arcir_calomyran_5", + "message": "Você olhou no porão, e não o encontrou? Uma nota que você disse? Eu acho que alguém deve ter entrado em minha casa.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_calomyran_6" + } + ] + }, + { + "id": "arcir_calomyran_select", + "replies": [ + { + "nextPhraseID": "arcir_calomyran_complete", + "requires": { + "progress": "calomyran:100" + } + }, + { + "nextPhraseID": "arcir_calomyran_5", + "requires": { + "progress": "calomyran:20" + } + }, + { + "nextPhraseID": "arcir_calomyran_1" + } + ] + }, + { + "id": "arcir_calomyran_complete", + "message": "Eu ouvi que você encontrou e devolveu-o ao velho Benradas. Obrigado. Ele tende a esquecer as coisas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_anythingelse" + } + ] + }, + { + "id": "arcir_calomyran_6", + "message": "O que a nota diz?\n\nLarcal .. Eu sei dele. Sempre causando problemas. Ele é está geralmente no celeiro a leste daqui.", + "replies": [ + { + "text": "Obrigado, adeus.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_athamyr.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_athamyr.json new file mode 100644 index 000000000..8d65e7f9d --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_athamyr.json @@ -0,0 +1,115 @@ +[ + { + "id": "athamyr", + "message": "Caminhe com a Sombra.", + "replies": [ + { + "text": "Você esteve nas catacumbas?", + "nextPhraseID": "athamyr_select", + "requires": { + "progress": "bucus:20" + } + } + ] + }, + { + "id": "athamyr_1", + "message": "Sim, eu estives nas catacumbas da igreja de Fallhaven.", + "replies": [ + { + "text": "N", + "nextPhraseID": "athamyr_2" + } + ] + }, + { + "id": "athamyr_2", + "message": "Mas eu sou o único que tanto tem a permissão e coragem para ir até lá.", + "replies": [ + { + "text": "Como posso obter permissão para ir para lá?", + "nextPhraseID": "athamyr_3" + } + ] + }, + { + "id": "athamyr_3", + "message": "Você quer ir para baixo nas catacumbas? Hum, talvez possamos fazer um acordo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "athamyr_4" + } + ] + }, + { + "id": "athamyr_4", + "message": "Traga-me alguma carne cozida da taverna e eu lhe darei a minha permissão para entrar nas catacumbas da igreja de Fallhaven.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 30 + } + ], + "replies": [ + { + "text": "Aqui, está a carne cozida para você.", + "nextPhraseID": "athamyr_complete", + "requires": { + "item": { + "itemID": "meat_cooked", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Ok, eu vou lhe dar algo.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "athamyr_complete_2", + "message": "Você tem minha permissão entrar nas catacumbas da igreja de Fallhaven.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 50 + } + ] + }, + { + "id": "athamyr_select", + "replies": [ + { + "nextPhraseID": "athamyr_complete_2", + "requires": { + "progress": "bucus:40" + } + }, + { + "nextPhraseID": "athamyr_1" + } + ] + }, + { + "id": "athamyr_complete", + "message": "Obrigado, isso vai fazer muito bem.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "athamyr_complete_2" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_bucus.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_bucus.json new file mode 100644 index 000000000..17b090475 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_bucus.json @@ -0,0 +1,236 @@ +[ + { + "id": "bucus_welcome", + "message": "Oi novamente, bem-vindo de volta ao .. Oh, espere, eu pensei que fosse outra pessoa.", + "replies": [ + { + "text": "Você viu meu irmão Andor?", + "nextPhraseID": "bucus_andor_select" + }, + { + "text": "O que você sabe sobre a Corja dos Ladrões?", + "nextPhraseID": "bucus_thieves_select" + } + ] + }, + { + "id": "bucus_andor_select", + "replies": [ + { + "nextPhraseID": "bucus_umar_1", + "requires": { + "progress": "bucus:100" + } + }, + { + "nextPhraseID": "bucus_andor_no_1" + } + ] + }, + { + "id": "bucus_andor_no_1", + "message": "Interessante você deve perguntar. E se eu o tiver visto? Por que eu iria dizer?", + "replies": [ + { + "text": "N", + "nextPhraseID": "bucus_andor_no_2" + } + ] + }, + { + "id": "bucus_andor_no_2", + "message": "Não, eu não posso dizer. Agora, saia, por favor." + }, + { + "id": "bucus_thieves_select", + "replies": [ + { + "nextPhraseID": "bucus_thieves_complete_3", + "requires": { + "progress": "bucus:100" + } + }, + { + "nextPhraseID": "bucus_thieves_continue", + "requires": { + "progress": "bucus:10" + } + }, + { + "nextPhraseID": "bucus_thieves_select2" + } + ] + }, + { + "id": "bucus_thieves_select2", + "replies": [ + { + "nextPhraseID": "bucus_thieves_1", + "requires": { + "progress": "andor:40" + } + }, + { + "nextPhraseID": "bucus_thieves_no" + } + ] + }, + { + "id": "bucus_thieves_no", + "message": "Ham, o que? Não, eu não sei nada sobre isso." + }, + { + "id": "bucus_umar_1", + "message": "Garoto OK. Você provou-se para mim. Sim, eu vi algum outro garoto com essa descrição andando por aqui há alguns dias.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bucus_umar_2" + } + ] + }, + { + "id": "bucus_umar_2", + "message": "Eu não sei o que ele estava fazendo, no entanto. Ele ficava fazendo um monte de perguntas. Tipo de como você faz. *riso abafado*", + "replies": [ + { + "text": "N", + "nextPhraseID": "bucus_umar_3" + } + ] + }, + { + "id": "bucus_umar_3", + "message": "Enfim, isso é tudo que eu sei. Você deveria ir falar com Umar, ele provavelmente sabe mais. Desca naquele alçapão.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 50 + } + ], + "replies": [ + { + "text": "Ok, tchau", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bucus_thieves_1", + "message": "Quem te disse isso? Argh.\n\nOk, agora você nos achou. E agora?", + "replies": [ + { + "text": "Posso me juntar a Corja dos Ladrões?", + "nextPhraseID": "bucus_thieves_2" + } + ] + }, + { + "id": "bucus_thieves_2", + "message": "Hah! Junte-se a Corja dos Ladrões?! Você?!\n\nVocê é um garoto engraçado.", + "replies": [ + { + "text": "Eu estou falando sério.", + "nextPhraseID": "bucus_thieves_3" + }, + { + "text": "Sim, muito engraçado né?", + "nextPhraseID": "bucus_thieves_3" + } + ] + }, + { + "id": "bucus_thieves_3", + "message": "Ok, para com isso, garoto. Faça uma tarefa para mim e talvez eu vou considerar dar-lhe mais informações.", + "replies": [ + { + "text": "Que tipo de tarefa que estamos falando?", + "nextPhraseID": "bucus_thieves_4" + }, + { + "text": "Se isso leva a um tesouro, eu estou dentro!", + "nextPhraseID": "bucus_thieves_4" + } + ] + }, + { + "id": "bucus_thieves_4", + "message": "Traga-me a chave de Luthor e podemos falar mais. Eu não sei nada sobre a chave em si, mas há rumores de que ela está localizada em algum lugar nas catacumbas da Igreja Fallhaven.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 10 + } + ], + "replies": [ + { + "text": "Ok, parece fácil.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bucus_thieves_continue", + "message": "Como está a busca para a chave de Luthor?", + "replies": [ + { + "text": "Poderia repetir o que devo fazer?", + "nextPhraseID": "bucus_thieves_4" + }, + { + "text": "Aqui, eu tenho isso: a chave de Luthor.", + "nextPhraseID": "bucus_thieves_complete_1", + "requires": { + "item": { + "itemID": "key_luthor", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Eu ainda estou procurando isso. Tchau.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bucus_thieves_complete_1", + "message": "Uau, você realmente tem a chave de Luthor? Eu não acreditava que você poderia fazê-lo.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 100 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "bucus_thieves_complete_2" + } + ] + }, + { + "id": "bucus_thieves_complete_2", + "message": "Bem feito, garoto.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bucus_thieves_complete_3" + } + ] + }, + { + "id": "bucus_thieves_complete_3", + "message": "Então, vamos conversar. O que você quer saber?", + "replies": [ + { + "text": "O que você sabe sobre o meu irmão Andor?", + "nextPhraseID": "bucus_umar_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_church.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_church.json new file mode 100644 index 000000000..81fbc9cad --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_church.json @@ -0,0 +1,265 @@ +[ + { + "id": "chapelgoer", + "message": "Sombra, abraçe-me." + }, + { + "id": "thoronir_default", + "message": "Aproveite a Sombra, meu filho.", + "replies": [ + { + "text": "O que você pode me dizer sobre a Sombra?", + "nextPhraseID": "thoronir_shadow_1" + }, + { + "text": "Você pode me dizer mais sobre a igreja?", + "nextPhraseID": "thoronir_church_1" + }, + { + "text": "As porções de farinha de ossos já estão prontas?", + "nextPhraseID": "thoronir_trade_bonemeal", + "requires": { + "progress": "bonemeal:100" + } + } + ] + }, + { + "id": "thoronir_shadow_1", + "message": "As Sombras nos protegem dos perigos da noite. Elas nos mantém seguros e nos conforta quando dormimos.", + "replies": [ + { + "text": "Tharal enviou-me e disse-me para lhe dizer a senha 'Brilho da Sombra'.", + "nextPhraseID": "thoronir_tharal_select", + "requires": { + "progress": "bonemeal:30" + } + }, + { + "text": "A Sombra esteja com você.", + "nextPhraseID": "thoronir_default" + }, + { + "text": "Parece absurdo para mim.", + "nextPhraseID": "thoronir_default" + } + ] + }, + { + "id": "thoronir_church_1", + "message": "Esta é a nossa capela de adoração em Fallhaven. Nossa comunidade se volta para nós para obter auxílio.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thoronir_church_2" + } + ] + }, + { + "id": "thoronir_church_2", + "message": "Esta igreja tem resistido a centenas de anos, e tem sido mantida a salvo de ladrões de túmulos.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thoronir_church_3" + } + ] + }, + { + "id": "thoronir_tharal_select", + "replies": [ + { + "nextPhraseID": "thoronir_trade_bonemeal", + "requires": { + "progress": "bonemeal:100" + } + }, + { + "nextPhraseID": "thoronir_tharal_1" + } + ] + }, + { + "id": "thoronir_tharal_1", + "message": "Brilho da Sombra realmente meu filho. Então, meu velho amigo em Tharal da aldeia de Crossglen o enviou?", + "replies": [ + { + "text": "O que você pode me dizer sobre farinha de ossos?", + "nextPhraseID": "thoronir_tharal_2" + } + ] + }, + { + "id": "thoronir_church_3", + "message": "Nas catacumbas sob a casa da igreja estão os restos mortais de nossos líderes. Há rumores que o grande Rei Luthor foi enterrado lá.", + "replies": [ + { + "text": "Alguém já entrou nas catacumbas?", + "nextPhraseID": "thoronir_church_4", + "requires": { + "progress": "bucus:10" + } + }, + { + "text": "Gostaria de lhe falar sombre algo mais.", + "nextPhraseID": "thoronir_default" + } + ] + }, + { + "id": "thoronir_church_4", + "message": "Não é permitido descer nas catacumbas, exceto para Athamyr, meu aprendiz. Ele é o único que esteve lá durante esses anos.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 20 + } + ], + "replies": [ + { + "text": "Ok, eu acho que que vou vê-lo.", + "nextPhraseID": "thoronir_default" + } + ] + }, + { + "id": "thoronir_tharal_2", + "message": "Shhh, não devemos falar tão alto sobre o uso de farinha de ossos. Como você sabe, Lorde Geomyr emitiu uma proibição de todo o uso de farinha de ossos.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thoronir_tharal_3" + } + ] + }, + { + "id": "thoronir_tharal_3", + "message": "Quando a proibição veio, não me atrevi a manter alguma comigo, então eu joguei longe o que tinha. Fui bastante tolo. Agora, gostaria de voltar atrás.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thoronir_tharal_4" + } + ] + }, + { + "id": "thoronir_tharal_4", + "message": "Você acha que você poderia encontrar-me cinco ossos de esqueleto para que eu possa usar para misturar uma poção de ossos? A farinha de ossos é muito potente na cura de feridas antigas.", + "replies": [ + { + "text": "Claro, eu sou capaz de fazer isso.", + "nextPhraseID": "thoronir_tharal_5" + }, + { + "text": "Eu tenho esses ossos para você.", + "nextPhraseID": "thoronir_tharal_complete", + "requires": { + "item": { + "itemID": "bone", + "quantity": 5, + "requireType": 0 + } + } + } + ] + }, + { + "id": "thoronir_tharal_5", + "message": "Obrigado, por favor, volte em breve. Eu ouvi que existem alguns mortos-vivos perto de uma velha casa abandonada ao norte de Fallhaven. Talvez você possa conseguir ossos por lá.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 40 + } + ], + "replies": [ + { + "text": "Ok, vou verificar lá.", + "nextPhraseID": "thoronir_default" + } + ] + }, + { + "id": "thoronir_tharal_complete", + "message": "Obrigado, estes ossos vão servir. Agora eu posso começar fabricar uma poção de cura de farinha de ossos para você.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 100 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "thoronir_complete_2" + } + ] + }, + { + "id": "thoronir_complete_2", + "message": "Dê-me algum tempo para misturar a poção farinha de ossos. É uma poção de cura muito potente. Volte em breve." + }, + { + "id": "thoronir_trade_bonemeal", + "message": "Sim, as poções de ossos estão prontos. Por favor, use-as com cautela, e não deixe que os guardas vejam você. Nós na verdade não somos autorizados a usá-las mais.", + "replies": [ + { + "text": "Deixe-me ver quantas poções você fez até agora.", + "nextPhraseID": "S" + }, + { + "text": "Eu gostaria de falar sobre outro assunto.", + "nextPhraseID": "thoronir_default" + } + ] + }, + { + "id": "catacombguard", + "message": "Volte para trás enquanto você ainda pode, mortal. Este não é lugar para você. Apenas a morte espera por você aqui.", + "replies": [ + { + "text": "Muito bem. Eu vou voltar.", + "nextPhraseID": "X" + }, + { + "text": "Afaste-se, pois eu preciso ir mais fundo para as catacumbas.", + "nextPhraseID": "catacombguard1" + }, + { + "text": "pela Sombra, você não vai me parar.", + "nextPhraseID": "catacombguard1" + } + ] + }, + { + "id": "catacombguard1", + "message": "Nããão, você não passará!", + "replies": [ + { + "text": "OK. Vamos lutar.", + "nextPhraseID": "F" + } + ] + }, + { + "id": "luthor", + "message": "*hissss* Que mortal perturba meu sono?", + "replies": [ + { + "text": "Pela Sombra, quem é você?", + "nextPhraseID": "F" + }, + { + "text": "Finalmente, uma luta digna! Eu estava esperando por isso.", + "nextPhraseID": "F" + }, + { + "text": "Vamos logo, vamos acabar com isso.", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_drunk.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_drunk.json new file mode 100644 index 000000000..040c494f0 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_drunk.json @@ -0,0 +1,219 @@ +[ + { + "id": "fallhaven_drunk", + "message": "Não tem problema. Não senhor! Não causar mais problemas. Vou apenas sentar aqui fora.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_2" + } + ] + }, + { + "id": "fallhaven_drunk_2", + "message": "Espera, quem é você de novo? Você é aquele guarda?", + "replies": [ + { + "text": "Sim.", + "nextPhraseID": "fallhaven_drunk_3_1" + }, + { + "text": "Não.", + "nextPhraseID": "fallhaven_drunk_3_2" + } + ] + }, + { + "id": "fallhaven_drunk_3_1", + "message": "Oh, senhor. Eu não estou causando mais nenhum problema, viu? Eu fico fora agora, como você mandou, ok?", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_4" + } + ] + }, + { + "id": "fallhaven_drunk_3_2", + "message": "Ah bom. Aquele guarda me jogou para fora da taverna. Se eu vê-lo novamente eu vou lhe mostrar algumas coisinhas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_4" + } + ] + }, + { + "id": "fallhaven_drunk_4", + "message": "Bebida, bebida, bebida, beber um pouco mais. Beber, beber .. Uh, como é mesmo?", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_5" + } + ] + }, + { + "id": "fallhaven_drunk_5", + "message": "Você disse alguma coisa? O que foi mesmo? Sim, então estávamos nessa caverna.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_6" + } + ] + }, + { + "id": "fallhaven_drunk_6", + "message": "Ou era uma casa? Eu não me lembro.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_7" + } + ] + }, + { + "id": "fallhaven_drunk_7", + "message": "Não, não, ele estava fora! Agora eu me lembro.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_7_select" + } + ] + }, + { + "id": "fallhaven_drunk_7_select", + "replies": [ + { + "nextPhraseID": "fallhaven_drunk_11", + "requires": { + "progress": "fallhavendrunk:100" + } + }, + { + "nextPhraseID": "fallhaven_drunk_8" + } + ] + }, + { + "id": "fallhaven_drunk_8", + "message": "É onde nós... \n\nEi, onde foi parar meu hidromel? Será que você o tomou?", + "replies": [ + { + "text": "Sim.", + "nextPhraseID": "fallhaven_drunk_9_1" + }, + { + "text": "Não.", + "nextPhraseID": "fallhaven_drunk_9_2" + } + ] + }, + { + "id": "fallhaven_drunk_9_1", + "message": "Bem, então dê-me de volta! Ou vá comprar-me outro hidromel.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fallhavendrunk", + "value": 10 + } + ], + "replies": [ + { + "text": "Aqui, tem algum hidromel.", + "nextPhraseID": "fallhaven_drunk_10", + "requires": { + "item": { + "itemID": "mead", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Ok, eu vou comprar um pouco de hidromel para você.", + "nextPhraseID": "X" + }, + { + "text": "Não. Eu não acho que eu deveria ajudá-lo. Tchau.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_drunk_9_2", + "message": "Então devo estar bêbado. Você poderia me dar hidromel novamente. O que você acha?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fallhavendrunk", + "value": 10 + } + ], + "replies": [ + { + "text": "Aqui, tem algum hidromel.", + "nextPhraseID": "fallhaven_drunk_10", + "requires": { + "item": { + "itemID": "mead", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Ok, eu vou comprar um pouco de hidromel para você.", + "nextPhraseID": "X" + }, + { + "text": "Não. Eu não acho que eu deveria ajudá-lo. Tchau.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_drunk_10", + "message": "Bebidas, oh doce de alegria. Que a Sssssssombra esteja com você garoto. *com olhos arregalados*", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_11" + } + ] + }, + { + "id": "fallhaven_drunk_11", + "message": "*toma um bom gole de hidromel* \n\nIsso é bom mesmo!", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_12" + } + ] + }, + { + "id": "fallhaven_drunk_12", + "message": "Sim, eu e Unnmir tivemos uns bons momentos. Vá perguntar a ele, ele está geralmente no celeiro a leste de aqui. Eu me pergunto *arrota* onde o tesouro está.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fallhavendrunk", + "value": 100 + } + ], + "replies": [ + { + "text": "Tesouro? Eu estou dentro! Vou procurar Unnmir imediatamente.", + "nextPhraseID": "X" + }, + { + "text": "Obrigado pela história. Tchau.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_gaela.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_gaela.json new file mode 100644 index 000000000..78aaaf489 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_gaela.json @@ -0,0 +1,84 @@ +[ + { + "id": "gaela", + "replies": [ + { + "nextPhraseID": "gaela_r", + "requires": { + "progress": "andor:40" + } + }, + { + "nextPhraseID": "gaela_0" + } + ] + }, + { + "id": "gaela_r", + "message": "Olá novamente. Eu espero que você encontre o que você está procurando." + }, + { + "id": "gaela_0", + "message": "Ligeira é minha lâmina. Envenenada é minha língua. Ou seria o contrário?", + "replies": [ + { + "text": "Parece haver um monte de ladrões aqui em Fallhaven.", + "nextPhraseID": "gaela_1" + } + ] + }, + { + "id": "gaela_1", + "message": "Sim, nós, os ladrões têm uma presença forte por aqui.", + "replies": [ + { + "text": "Algo mais?", + "nextPhraseID": "gaela_2", + "requires": { + "progress": "andor:30" + } + } + ] + }, + { + "id": "gaela_2", + "message": "Ouvi dizer que você ajudou Gruil, um ladrão companheiro na aldeia de Crossglen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gaela_3" + } + ] + }, + { + "id": "gaela_3", + "message": "Escutei que você está procurando alguém. Eu talvez possa ser capaz de ajudá-lo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gaela_4" + } + ] + }, + { + "id": "gaela_4", + "message": "Você deve ir falar com Bucus em uma casa caindo aos pedaços a sudoeste aqui. Diga a ele que você quer saber mais sobre a Corja dos Ladrões.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 40 + } + ], + "replies": [ + { + "text": "Obrigado, eu vou falar com ele.", + "nextPhraseID": "gaela_5" + } + ] + }, + { + "id": "gaela_5", + "message": "Considere isso como um favor feito em troca de sua ajuda a Gruil." + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_larcal.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_larcal.json new file mode 100644 index 000000000..ee59a202c --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_larcal.json @@ -0,0 +1,85 @@ +[ + { + "id": "larcal", + "message": "Eu não tenho tempo para você, garoto. Cai fora!", + "replies": [ + { + "text": "Encontrei um bilhete com o seu nome ao procurar o livro 'Segredos de Calomyran'.", + "nextPhraseID": "larcal_1", + "requires": { + "progress": "calomyran:20" + } + } + ] + }, + { + "id": "larcal_1", + "message": "Agora, agora, o que temos aqui? Você está insinuando que eu fui no porão do Arcir?", + "replies": [ + { + "text": "N", + "nextPhraseID": "larcal_2" + } + ] + }, + { + "id": "larcal_2", + "message": "Então, talvez fosse eu. O livro é meu de qualquer maneira.", + "replies": [ + { + "text": "N", + "nextPhraseID": "larcal_3" + } + ] + }, + { + "id": "larcal_3", + "message": "Olha, vamos resolver isso pacificamente. Se você for embora e esquecer que o livro, você ainda pode viver.", + "replies": [ + { + "text": "Muito bem. Mantenha o seu livro.", + "nextPhraseID": "larcal_4" + }, + { + "text": "Não, você vai me dar aquele livro.", + "nextPhraseID": "larcal_5" + } + ] + }, + { + "id": "larcal_4", + "message": "Bom menino. Agora fuja." + }, + { + "id": "larcal_5", + "message": "Ok, agora você está começando a me irritar, garoto. Cai fora enquanto você ainda pode.", + "replies": [ + { + "text": "Muito bem. Eu vou sair.", + "nextPhraseID": "X" + }, + { + "text": "Não, o livro não é seu!", + "nextPhraseID": "larcal_6" + } + ] + }, + { + "id": "larcal_6", + "message": "Você ainda está aqui? Ok, então, se você quer um livro tão ruim, você vai ter que tirar isso de mim!", + "replies": [ + { + "text": "Finalmente uma luta. Eu estava ansioso por isso!", + "nextPhraseID": "F" + }, + { + "text": "Eu esperava que não chegasse a isso.", + "nextPhraseID": "F" + }, + { + "text": "Muito bem. Eu vou sair.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_nocmar.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_nocmar.json new file mode 100644 index 000000000..fa36cabad --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_nocmar.json @@ -0,0 +1,258 @@ +[ + { + "id": "nocmar", + "message": "Olá. Sou Nocmar.", + "replies": [ + { + "text": "Este lugar parece uma ferraria. Você tem alguma coisa para vender?", + "nextPhraseID": "nocmar_trade_select" + }, + { + "text": "Unnmir me enviou.", + "nextPhraseID": "nocmar_quest_select", + "requires": { + "progress": "nocmar:10" + } + }, + { + "text": "Tchau.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "nocmar_quest_select", + "replies": [ + { + "nextPhraseID": "nocmar_complete_5", + "requires": { + "progress": "nocmar:200" + } + }, + { + "nextPhraseID": "nocmar_continue", + "requires": { + "progress": "nocmar:20" + } + }, + { + "nextPhraseID": "nocmar_quest" + } + ] + }, + { + "id": "nocmar_trade_select", + "replies": [ + { + "nextPhraseID": "S", + "requires": { + "progress": "nocmar:200" + } + }, + { + "nextPhraseID": "nocmar_trade_1" + } + ] + }, + { + "id": "nocmar_trade_1", + "message": "Eu não tenho mais itens à venda. Eu costumava ter um monte de coisas à venda, mas hoje em dia eu não estou autorizado a vender coisa alguma.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_trade_2" + } + ] + }, + { + "id": "nocmar_trade_2", + "message": "Eu já fui um dos maiores ferreiros em Fallhaven. Então aquele bastardo do Lorde Geomyr baniu o uso do Aço do Coração.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_trade_3" + } + ] + }, + { + "id": "nocmar_trade_3", + "message": "Por decreto do Lorde Geomyr, ninguém no Fallhaven é permitido até usar armas forjadas com Aço do Coração. Muito menos vender.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_trade_4" + } + ] + }, + { + "id": "nocmar_trade_4", + "message": "Então, agora eu tenho que esconder as poucas armas que me restam. Eu não vou ousar vender nenhuma delas mais.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_trade_4_1" + } + ] + }, + { + "id": "nocmar_trade_4_1", + "message": "Eu não vejo o brilho do Aço do Coração faz vários anos. Desde que o Lorde Geomyr proibiu-os.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_trade_5" + } + ] + }, + { + "id": "nocmar_trade_5", + "message": "Então, infelizmente eu não posso vender-lhe quaisquer das minhas armas." + }, + { + "id": "nocmar_quest", + "message": "Unnmir enviou hein? Eu acho que deve ser importante então.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nocmar", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_quest_1" + } + ] + }, + { + "id": "nocmar_quest_1", + "message": "Ok, estas armas antigas perderam seu brilho interior, pois não são usadas faz muito tempo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_quest_2" + } + ] + }, + { + "id": "nocmar_quest_2", + "message": "Para fazer retornar o brilho do Aço do Coração, vamos precisar de uma Pedra do Coração.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_quest_3" + } + ] + }, + { + "id": "nocmar_quest_3", + "message": "Anos atrás, nós costumávamos combater os liches de Undertell. Eu não tenho ideia se eles ainda assombram o lugar.", + "replies": [ + { + "text": "Undertell? O que é isso?", + "nextPhraseID": "nocmar_quest_4" + } + ] + }, + { + "id": "nocmar_quest_4", + "message": "Undertell são os poços das almas perdidas. Viaje para o sul e entre nas cavernas dos Anões. Siga o cheiro horrível que existe por lá.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_quest_5" + } + ] + }, + { + "id": "nocmar_quest_5", + "message": "Cuidado com os liches de Undertell, se eles ainda habitarem o lugar. Essas coisas podem matá-lo com apenas um olhar." + }, + { + "id": "nocmar_continue", + "message": "Você já encontrou uma Pedra do Coração?", + "replies": [ + { + "text": "Sim, finalmente encontrei.", + "nextPhraseID": "nocmar_complete", + "requires": { + "item": { + "itemID": "heartstone", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Você poderia me contar a história de novo?", + "nextPhraseID": "nocmar_quest_1" + }, + { + "text": "Não, ainda não.", + "nextPhraseID": "nocmar_continue_2" + } + ] + }, + { + "id": "nocmar_continue_2", + "message": "Por favor, continue procurando. Unnmir deve ter planejado algo importante para você." + }, + { + "id": "nocmar_complete", + "message": "Pela Sombra. Você realmente encontrou uma Pedra do Coração. Pensei que não viveria para ver esse dia.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nocmar", + "value": 200 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_complete_2" + } + ] + }, + { + "id": "nocmar_complete_2", + "message": "Você pode ver o brilho? É literalmente pulsante.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_complete_3" + } + ] + }, + { + "id": "nocmar_complete_3", + "message": "Rápido. Vamos fazer estas armas antigas com Aço do Coração brilharem novamente.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_complete_4" + } + ] + }, + { + "id": "nocmar_complete_4", + "message": "* Nocmar coloca o Pedra do Coração entre as armas com Aço do Coração *", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_complete_5" + } + ] + }, + { + "id": "nocmar_complete_5", + "message": "Você pode sentir isso? O Aço do Coração está aceso novamente.", + "replies": [ + { + "text": "Deixe-me ver os itens que você tem disponível.", + "nextPhraseID": "S" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_oldman.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_oldman.json new file mode 100644 index 000000000..3726b427d --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_oldman.json @@ -0,0 +1,151 @@ +[ + { + "id": "fallhaven_oldman", + "replies": [ + { + "nextPhraseID": "fallhaven_oldman_complete_2", + "requires": { + "progress": "calomyran:100" + } + }, + { + "nextPhraseID": "fallhaven_oldman_continue", + "requires": { + "progress": "calomyran:10" + } + }, + { + "nextPhraseID": "fallhaven_oldman_1" + } + ] + }, + { + "id": "fallhaven_oldman_1", + "message": "Quer ajudar um homem velho, por favor?", + "replies": [ + { + "text": "Claro, o que você precisa?", + "nextPhraseID": "fallhaven_oldman_2" + }, + { + "text": "Eu poderia. Estamos falando de algum tipo de recompensa?", + "nextPhraseID": "fallhaven_oldman_2" + }, + { + "text": "Não, eu não vou ajudar um velho como você. Tchau.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_oldman_2", + "message": "Eu perdi recentemente um livro meu muito valioso.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_oldman_3" + } + ] + }, + { + "id": "fallhaven_oldman_3", + "message": "Eu sei que estava comigo ontem. Agora, eu não consigo mais encontrá-lo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_oldman_4" + } + ] + }, + { + "id": "fallhaven_oldman_4", + "message": "Eu nunca perco as coisas! Alguém deve ter roubado, esse é o meu palpite.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_oldman_5" + } + ] + }, + { + "id": "fallhaven_oldman_5", + "message": "Você poderia ir procurar o meu livro? É chamado 'Segredos de Calomyran'.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_oldman_6" + } + ] + }, + { + "id": "fallhaven_oldman_6", + "message": "Eu não tenho nenhuma ideia de onde ele possa ser. Você poderia perguntar Arcir, ele parece gostar muito de livros. *aponta para uma casa ao sul*", + "rewards": [ + { + "rewardType": 0, + "rewardID": "calomyran", + "value": 10 + } + ], + "replies": [ + { + "text": "Ok, eu vou perguntar a Arcir. Tchau.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_oldman_continue", + "message": "Como está a busca do meu livro? É chamado de 'Segredos de Calomyran'. Você encontrou o meu livro?", + "replies": [ + { + "text": "Sim, eu o encontrei.", + "nextPhraseID": "fallhaven_oldman_complete", + "requires": { + "item": { + "itemID": "calomyran_secrets", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Não, eu não encontrei ainda.", + "nextPhraseID": "fallhaven_oldman_6" + }, + { + "text": "Você poderia contar-me sua história de novo, por favor?", + "nextPhraseID": "fallhaven_oldman_2" + } + ] + }, + { + "id": "fallhaven_oldman_complete", + "message": "O meu livro! Obrigado, obrigado! Onde estava? Não, não me diga. Aqui, tome estas moedas como recompensa.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "calomyran", + "value": 100 + }, + { + "rewardType": 1, + "rewardID": "gold51" + } + ], + "replies": [ + { + "text": "Obrigado. Tchau.", + "nextPhraseID": "X" + }, + { + "text": "Finalmente um pouco de ouro. Tchau.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_oldman_complete_2", + "message": "Muito obrigado por encontrar o meu livro!" + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_south.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_south.json new file mode 100644 index 000000000..cee3abd49 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_south.json @@ -0,0 +1,52 @@ +[ + { + "id": "fallhaven_lumberjack", + "message": "Oi, eu sou Jakrar.", + "replies": [ + { + "text": "Você é um lenhador?", + "nextPhraseID": "fallhaven_lumberjack_2" + } + ] + }, + { + "id": "fallhaven_lumberjack_2", + "message": "Sim, eu sou lenhador de Fallhaven. Precisa de alguma coisa feita com o melhor da floresta? Eu provavelmente tenho." + }, + { + "id": "alaun", + "message": "Olá. Sou Alaun. Como posso ajudá-lo?", + "replies": [ + { + "text": "Você viu meu irmão Andor? Ele é semelhante a mim.", + "nextPhraseID": "alaun_2" + } + ] + }, + { + "id": "alaun_2", + "message": "Você diz que está procurando por seu irmão? Parece que você? Hum.", + "replies": [ + { + "text": "N", + "nextPhraseID": "alaun_3" + } + ] + }, + { + "id": "alaun_3", + "message": "Não, não me lembro de ver ninguém com essa descrição. Talvez você devesse tentar na aldeia de Crossglen a oeste daqui." + }, + { + "id": "fallhaven_farmer1", + "message": "Olá lá. Por favor, não me incomode. Eu tenho um monte de trabalho a fazer." + }, + { + "id": "fallhaven_farmer2", + "message": "Ei! Poderia, por favor sair do caminho? Eu estou tentando trabalhar aqui." + }, + { + "id": "khorand", + "message": "Ei você, não pense mesmo em tocar nenhuma dessas caixas. Estou vendo você!" + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_tavern.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_tavern.json new file mode 100644 index 000000000..5b8dab9d4 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_tavern.json @@ -0,0 +1,107 @@ +[ + { + "id": "bela", + "message": "Bem-vindo à taverna de Fallhaven. Sente-se em qualquer lugar.", + "replies": [ + { + "text": "Deixe-me ver o que alimentos e bebidas que você tem disponíveis.", + "nextPhraseID": "S" + }, + { + "text": "Existem quartos disponíveis?", + "nextPhraseID": "bela_room_select" + } + ] + }, + { + "id": "bela_room_1", + "message": "Um quarto custa apenas 10 moedas de ouro.", + "replies": [ + { + "text": "Compre[10 moedas de ouro]", + "nextPhraseID": "bela_room_2", + "requires": { + "item": { + "itemID": "gold", + "quantity": 10, + "requireType": 0 + } + } + }, + { + "text": "Não, obrigado.", + "nextPhraseID": "bela" + } + ] + }, + { + "id": "bela_room_2", + "message": "Obrigado. Pegue o último quarto ao final do corredor.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fallhaventavern", + "value": 10 + } + ], + "replies": [ + { + "text": "Obrigado. Gostaria de falar sobre outra coisa.", + "nextPhraseID": "bela" + }, + { + "text": "Obrigado, adeus.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bela_room_3", + "message": "Espero que o quarto esteja adequado às suas necessidades. É o último quarto ao final do corredor.", + "replies": [ + { + "text": "Obrigado. Gostaria de falar sobre outra coisa.", + "nextPhraseID": "bela" + }, + { + "text": "Obrigado, adeus.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bela_room_select", + "replies": [ + { + "nextPhraseID": "bela_room_3", + "requires": { + "progress": "fallhaventavern:10" + } + }, + { + "nextPhraseID": "bela_room_1" + } + ] + }, + { + "id": "ganos", + "message": "Você parece estranhamente familiar.", + "replies": [ + { + "text": "Você tem alguma coisa para o vender?", + "nextPhraseID": "S" + }, + { + "text": "Você sabe alguma coisa sobre a Corja dos Ladrões?", + "nextPhraseID": "ganos_1", + "requires": { + "progress": "andor:30" + } + } + ] + }, + { + "id": "ganos_1", + "message": "Corja dos Ladrões? Como eu poderia saber? Eu pareço um ladrão para você?! Hrmpf." + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_unnmir.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_unnmir.json new file mode 100644 index 000000000..65aca1f27 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_unnmir.json @@ -0,0 +1,174 @@ +[ + { + "id": "unnmir", + "replies": [ + { + "nextPhraseID": "unnmir_r", + "requires": { + "progress": "nocmar:10" + } + }, + { + "nextPhraseID": "unnmir_0" + } + ] + }, + { + "id": "unnmir_r", + "message": "Olá novamente. Você deveria ir falar com Nocmar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_13" + } + ] + }, + { + "id": "unnmir_0", + "message": "Oi você.", + "replies": [ + { + "text": "Um bêbado ao longo da taberna contou-me uma história sobre vocês dois.", + "nextPhraseID": "unnmir_1", + "requires": { + "progress": "fallhavendrunk:100" + } + } + ] + }, + { + "id": "unnmir_1", + "message": "Esse velho bêbado da taverna contou-lhe sua história não é?", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_2" + } + ] + }, + { + "id": "unnmir_2", + "message": "É a mesma velha história. Nós costumávamos viajar juntos há alguns anos.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_3" + } + ] + }, + { + "id": "unnmir_3", + "message": "Aventura real, você sabe, espadas e magias.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_4" + } + ] + }, + { + "id": "unnmir_4", + "message": "Mas, então, paramos. Eu realmente não posso dizer por que, acho que nos cansamos da vida na estrada. Nos fixamos aqui em Fallhaven.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_5" + } + ] + }, + { + "id": "unnmir_5", + "message": "Nice cidade pequena aqui. A ladrões muito em torno embora, mas eles não me incomoda.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_6" + } + ] + }, + { + "id": "unnmir_6", + "message": "Então, qual é a sua história, garoto? Como é que você veio parar aqui em Fallhaven?", + "replies": [ + { + "text": "Eu estou procurando meu irmão.", + "nextPhraseID": "unnmir_7" + } + ] + }, + { + "id": "unnmir_7", + "message": "Sim, sim, eu entendo. Seu irmão provavelmente está fugindo de algum duente, tentando se aventurar. *olhos girando*", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_8" + } + ] + }, + { + "id": "unnmir_8", + "message": "Ou talvez ele tenha ido para uma das grandes cidades ao norte.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_9" + } + ] + }, + { + "id": "unnmir_9", + "message": "Não posso dizer que posso culpá-lo por querer ver o mundo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_10" + } + ] + }, + { + "id": "unnmir_10", + "message": "Ei, por falar nisso, você também procuar ser um aventureiro?", + "replies": [ + { + "text": "Sim.", + "nextPhraseID": "unnmir_11" + }, + { + "text": "Não, não realmente.", + "nextPhraseID": "unnmir_12" + } + ] + }, + { + "id": "unnmir_11", + "message": "Legal. Eu vou te dar uma dica, garoto. *Risinhos*. Vá ver Nocmar no lado oeste da cidade. Diga a ele que eu lhe enviei.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nocmar", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_13" + } + ] + }, + { + "id": "unnmir_12", + "message": "Estratégia inteligente. Aventuras geram um monte de cicatrizes.Você sabe o que quero dizer." + }, + { + "id": "unnmir_13", + "message": "Sua casa é a sudoeste da taverna.", + "replies": [ + { + "text": "Obrigado, eu vou vê-lo.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_unzel.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_unzel.json new file mode 100644 index 000000000..24916e7bf --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_unzel.json @@ -0,0 +1,326 @@ +[ + { + "id": "unzel_1", + "message": "Olá. Eu sou Unzel.", + "replies": [ + { + "text": "É este acampamento é seu?", + "nextPhraseID": "unzel_2" + }, + { + "text": "Fui enviado por Vacor para te matar.", + "nextPhraseID": "unzel_3", + "requires": { + "progress": "vacor:40" + } + } + ] + }, + { + "id": "unzel_2", + "message": "Sim, este é o meu acampamento. Belo lugar, não é?", + "replies": [ + { + "text": "Tchau.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "unzel_3", + "message": "Vacor enviou hein? Acho que eu deveria ter percebido que ele iria enviar alguém, mais cedo ou mais tarde.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_4" + } + ] + }, + { + "id": "unzel_4", + "message": "Muito bem, então. Mate-me se você quiser, mas permita-me antes dizer-lhe o meu lado da história.", + "replies": [ + { + "text": "Ah, eu vou gostar de matar você!", + "nextPhraseID": "unzel_fight" + }, + { + "text": "Eu vou ouvir a sua história.", + "nextPhraseID": "unzel_5" + } + ] + }, + { + "id": "unzel_fight", + "message": "Muito bem, vamos lutar então.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 53 + } + ], + "replies": [ + { + "text": "Enfim uma luta!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "unzel_5", + "message": "Obrigado pela atenção.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_10" + } + ] + }, + { + "id": "unzel_10", + "message": "Vacor e eu costumávamos viajar juntos. Mas ele começou a ficar obcecado para fazer o seu feitiço.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_11" + } + ] + }, + { + "id": "unzel_11", + "message": "Ele mesmo começou a questionar a Sombra. Eu sabia que tinha que fazer algo para detê-lo!", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_12" + } + ] + }, + { + "id": "unzel_12", + "message": "Eu comecei a interrogá-lo sobre o que ele estava fazendo, mas ele só queria seguir em frente.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_13" + } + ] + }, + { + "id": "unzel_13", + "message": "Depois de um tempo, ele ficou obcecado com a ideia de um feitiço de ruptura. Ele disse que iria conceder-lhe poderes ilimitados contra a Sombra.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_14" + } + ] + }, + { + "id": "unzel_14", + "message": "Então, só havia uma coisa que eu poderia fazer. Deixei-o e fiz o necessário para impedi-lo de tentar criar o feitiço de ruptura.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_15" + } + ] + }, + { + "id": "unzel_15", + "message": "Eu mandei alguns amigos para tomar o feitiço dele.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_16_select" + } + ] + }, + { + "id": "unzel_16_select", + "replies": [ + { + "nextPhraseID": "unzel_16_2", + "requires": { + "progress": "vacor:50" + } + }, + { + "nextPhraseID": "unzel_16_1" + } + ] + }, + { + "id": "unzel_16_1", + "message": "E aqui estamos nós.", + "replies": [ + { + "text": "Eu matei os quatro bandidos que enviou após Vacor.", + "nextPhraseID": "unzel_17" + } + ] + }, + { + "id": "unzel_16_2", + "message": "E aqui estamos nós.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_19" + } + ] + }, + { + "id": "unzel_17", + "message": "O quê? Você matou meus quatro amigos? Argh, eu sinto a raiva em meu sangue.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_18" + } + ] + }, + { + "id": "unzel_18", + "message": "Mas também percebo que tudo isso é obra de Vacor. Eu vou dar-lhe uma escolha agora. Escolha com cuidado.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_19" + } + ] + }, + { + "id": "unzel_19", + "message": "Ou você fica ao lado com Vacor e seu feitiço de ruptura, enfrentando a Sombra, ou ajuda-me a livrar-se dele. Quem é que vai ajudar?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 50 + } + ], + "replies": [ + { + "text": "Vou ficar ao seu lado. A Sombra não deve ser perturbada.", + "nextPhraseID": "unzel_20" + }, + { + "text": "Eu do lado de Vacor.", + "nextPhraseID": "unzel_fight" + } + ] + }, + { + "id": "unzel_20", + "message": "Obrigado meu amigo. Vamos manter a Sombra seguro de Vacor.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 51 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_21" + } + ] + }, + { + "id": "unzel_21", + "message": "Você deveria ir falar com ele sobre a Sombra." + }, + { + "id": "unzel_return_1", + "message": "Bem-vindo de volta. Você falou com Vacor?", + "replies": [ + { + "text": "Sim, eu falei com ele.", + "nextPhraseID": "unzel_30", + "requires": { + "item": { + "itemID": "ring_vacor", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Não, ainda não.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "unzel_30", + "message": "Você o matou? Você tem a minha amizade, obrigado. Agora estamos a salvo de feitiço de ruptura de Vacor. Aqui, tome estas moedas por sua ajuda.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 61 + }, + { + "rewardType": 1, + "rewardID": "gold200" + } + ], + "replies": [ + { + "text": "A Sombra esteja com você.", + "nextPhraseID": "X" + }, + { + "text": "Obrigado.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "unzel_40", + "message": "Obrigado por sua ajuda. Agora estamos a salvo de feitiço de ruptura de Vacor.", + "replies": [ + { + "text": "Eu tenho uma mensagem para você de Kaverin em Remgard.", + "nextPhraseID": "unzel_msg1", + "requires": { + "progress": "kaverin:25", + "item": { + "itemID": "kaverin_message", + "quantity": 1, + "requireType": 1 + } + } + } + ] + }, + { + "id": "unzel", + "replies": [ + { + "nextPhraseID": "unzel_msg_r0", + "requires": { + "progress": "kaverin:30" + } + }, + { + "nextPhraseID": "unzel_40", + "requires": { + "progress": "vacor:61" + } + }, + { + "nextPhraseID": "unzel_return_1", + "requires": { + "progress": "vacor:51" + } + }, + { + "nextPhraseID": "unzel_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_vacor.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_vacor.json new file mode 100644 index 000000000..8a66a050e --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_vacor.json @@ -0,0 +1,604 @@ +[ + { + "id": "vacor", + "replies": [ + { + "nextPhraseID": "vacor_return_complete0", + "requires": { + "progress": "vacor:60" + } + }, + { + "nextPhraseID": "vacor_return2", + "requires": { + "progress": "vacor:40" + } + }, + { + "nextPhraseID": "vacor_42", + "requires": { + "progress": "vacor:30" + } + }, + { + "nextPhraseID": "vacor_select1" + } + ] + }, + { + "id": "vacor_select1", + "replies": [ + { + "nextPhraseID": "vacor_return1", + "requires": { + "progress": "vacor:20" + } + }, + { + "nextPhraseID": "vacor_begin" + } + ] + }, + { + "id": "vacor_begin", + "message": "Olá.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_2" + } + ] + }, + { + "id": "vacor_2", + "message": "O que você é, algum tipo de aventureiro? Hum. Talvez você ter alguma utilidade para mim.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_3" + } + ] + }, + { + "id": "vacor_3", + "message": "Você está disposto a me ajudar?", + "replies": [ + { + "text": "Claro, o que você precisa?", + "nextPhraseID": "vacor_4" + }, + { + "text": "Não, por que eu deveria ajudá-lo?", + "nextPhraseID": "vacor_bah" + } + ] + }, + { + "id": "vacor_bah", + "message": "Bah, criatura humilde. Eu sabia que não deveria ter perguntado. Agora me deixe." + }, + { + "id": "vacor_4", + "message": "Tempos atrás, eu estava trabalhando em um feitiço de ruptura que eu havia lido a respeito.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_5" + } + ] + }, + { + "id": "vacor_5", + "message": "O feitiço é capaz de, digamos assim, abrir novas possibilidades.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_6" + } + ] + }, + { + "id": "vacor_6", + "message": "Erm, sim, o feitiço de ruptura vai abrir bem algumas possibilidades. Ahem.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_7" + } + ] + }, + { + "id": "vacor_7", + "message": "Então, lá estava eu ​​a trabalhar duro para conseguir juntar os últimos pedaços para isso.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_8" + } + ] + }, + { + "id": "vacor_8", + "message": "Então, de repente, uma gangue de bandidos me rondou e ameaçou-me.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_9" + } + ] + }, + { + "id": "vacor_9", + "message": "Eles disseram que eram mensageiros da Sombra, e insistiram para que eu desistisse do feitiço.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_10" + } + ] + }, + { + "id": "vacor_10", + "message": "Absurdo, não é? Eu estava tão perto de obter o poder!", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_11" + } + ] + }, + { + "id": "vacor_11", + "message": "Ah, o poder que eu poderia ter tido. Meu feitiço de ruptura querido.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_12" + } + ] + }, + { + "id": "vacor_12", + "message": "De qualquer forma, eu estava prestes a terminar a última peça do meu feitiço de ruptura quando os bandidos chegaram e roubaram-me.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_13" + } + ] + }, + { + "id": "vacor_13", + "message": "Os bandidos levaram as minhas notas para o feitiço e tirou antes que eu pudesse chamar os guardas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_14" + } + ] + }, + { + "id": "vacor_14", + "message": "Depois de anos de trabalho, eu não consigo lembrar mais das últimas partes do feitiço.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_15" + } + ] + }, + { + "id": "vacor_15", + "message": "Você acha que você poderia me ajudar a localizá-lo? Então eu poderia ter o poder, finalmente!", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_16" + } + ] + }, + { + "id": "vacor_16", + "message": "Você vai, naturalmente, ser adequadamente recompensado ​​por ajudar-me a obter tal poder.", + "replies": [ + { + "text": "Recompensa? Eu estou dentro!", + "nextPhraseID": "vacor_17" + }, + { + "text": "Muito bem. Vou ajudá-lo.", + "nextPhraseID": "vacor_17" + }, + { + "text": "Não, obrigado, isso parece ser algo que eu preferia não se envolver.", + "nextPhraseID": "vacor_bah" + } + ] + }, + { + "id": "vacor_17", + "message": "Eu sabia que não podia confiar ... Espere, o que? Você realmente disse que sim? Hah, bem, então.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_18" + } + ] + }, + { + "id": "vacor_18", + "message": "Ok, procure encontrar os quatro pedaços do meu feitiço de ruptura que os bandidos tomaram, e trazer os pedaços para mim.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_19" + } + ] + }, + { + "id": "vacor_19", + "message": "Havia quatro bandidos. Todos eles tomaram a direção sul de Fallhaven depois do ataque.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_20" + } + ] + }, + { + "id": "vacor_20", + "message": "Você deve procurar as partes com os quatro bandidos ao sul de Fallhaven.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_21" + } + ] + }, + { + "id": "vacor_21", + "message": "Por favor, se apresse! Estou tão ansioso para abrir a ruptura... Erm, eu quero dizer terminar o feitiço. (Nada de estranho com isso?)" + }, + { + "id": "vacor_return1", + "message": "Olá novamente. Como está indo a busca das partes pedaços desaparecidas do feitiço de ruptura?", + "replies": [ + { + "text": "Eu encontrei todas as pedaços.", + "nextPhraseID": "vacor_40", + "requires": { + "item": { + "itemID": "vacor_spell", + "quantity": 4, + "requireType": 0 + } + } + }, + { + "text": "O que eu deveria fazer mesmo?", + "nextPhraseID": "vacor_18" + }, + { + "text": "Você poderia me contar a história toda de novo?", + "nextPhraseID": "vacor_4" + } + ] + }, + { + "id": "vacor_40", + "message": "Oh, você encontrou os quatro pedaços? Depressa, dê-os a mim.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_41" + } + ] + }, + { + "id": "vacor_41", + "message": "Sim, estes são as pedaços que os bandidos levaram.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_42" + } + ] + }, + { + "id": "vacor_42", + "message": "Agora eu devo ser capaz de terminar o feitiço de ruptura e abrir a brecha na Sombra .. hmm... Quero dizer abrir novas possibilidades. Sim, é isso que eu quis dizer.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_43" + } + ] + }, + { + "id": "vacor_43", + "message": "O único obstáculo para continuar minha pesquisa com o feitiço ruptura é aquele estúpido sujeito Unzel.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_44" + } + ] + }, + { + "id": "vacor_44", + "message": "Unzel foi meu aprendiz tempos atrás. Mas ele começou a irritar-me com suas perguntas e falar sobre moral.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_45" + } + ] + }, + { + "id": "vacor_45", + "message": "Ele disse que meu feitiço de ruptura estava perturbando a vontade do Sombra.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_46" + } + ] + }, + { + "id": "vacor_46", + "message": "Bah, a Sombra. O que ela já fez por mim?", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_47" + } + ] + }, + { + "id": "vacor_47", + "message": "O dia em que lançar meu feitiço de ruptura vou me livrar da Sombra.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_48" + } + ] + }, + { + "id": "vacor_48", + "message": "De qualquer forma, eu tenho a sensação de que Unzel enviou esses bandidos atrás de mim, e se eu não o deter, ele provavelmente irá enviar mais.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_49" + } + ] + }, + { + "id": "vacor_49", + "message": "Eu preciso que você encontre Unzel e o mate para mim. Ele provavelmente pode ser encontrado em algum lugar ao sudoeste de Fallhaven.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_50" + } + ] + }, + { + "id": "vacor_50", + "message": "Traga-me o seu anel como prova quando você o matar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_51" + } + ] + }, + { + "id": "vacor_51", + "message": "Agora, apresse-se. Eu não posso esperar muito mais. O poder será meu!" + }, + { + "id": "vacor_return2", + "message": "Olá novamente. Algum progresso?", + "replies": [ + { + "text": "Sobre Unzel ...", + "nextPhraseID": "vacor_return2_2" + }, + { + "text": "Você poderia me contar a história de novo?", + "nextPhraseID": "vacor_43" + } + ] + }, + { + "id": "vacor_return2_2", + "message": "Você ainda não matou Unzel para mim? Traga-me o seu anel quando o matou.", + "replies": [ + { + "text": "Eu cuidei dele. Aqui está o seu anel.", + "nextPhraseID": "vacor_60", + "requires": { + "item": { + "itemID": "ring_unzel", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Eu escutei a história de Unzel e decidiram lado com ele. A Sombra deve ser preservada.", + "nextPhraseID": "vacor_70", + "requires": { + "progress": "vacor:51" + } + } + ] + }, + { + "id": "vacor_60", + "message": "Ha ha, Unzel está morto! Aquela criatura patética se foi!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 60 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_61" + } + ] + }, + { + "id": "vacor_61", + "message": "Eu posso ver o sangue em suas botas. Eu ainda lhe fiz que matar os asseclas dele.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_62" + } + ] + }, + { + "id": "vacor_62", + "message": "Este é um grande dia, de fato. Eu em breve terei o poder!", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_63" + } + ] + }, + { + "id": "vacor_63", + "message": "Aqui, tome essas moedas por sua ajuda.", + "rewards": [ + { + "rewardType": 1, + "rewardID": "gold200" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_64" + } + ] + }, + { + "id": "vacor_64", + "message": "Agora me deixe, eu tenho trabalho a fazer antes que eu possa lançar o feitiço de ruptura." + }, + { + "id": "vacor_return_complete0", + "replies": [ + { + "nextPhraseID": "vacor_msg_16", + "requires": { + "progress": "kaverin:90" + } + }, + { + "nextPhraseID": "vacor_msg_9", + "requires": { + "progress": "kaverin:75" + } + }, + { + "nextPhraseID": "vacor_msg1", + "requires": { + "progress": "kaverin:60", + "item": { + "itemID": "kaverin_message", + "quantity": 1, + "requireType": 1 + } + } + }, + { + "nextPhraseID": "vacor_return_complete" + } + ] + }, + { + "id": "vacor_return_complete", + "message": "Olá de novo, meu amigo assassino. Em breve vou terminar meu feitiço de ruptura." + }, + { + "id": "vacor_70", + "message": "O quê? Ele contou-lhe sua história? E você realmente acreditou?", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_71" + } + ] + }, + { + "id": "vacor_71", + "message": "Vou lhe dar mais uma chance. Ou mata Unzel para mim, e eu vou te recompensar generosamente, ou você vai ter que lutar comigo.", + "replies": [ + { + "text": "Não. Você deve ser interrompido.", + "nextPhraseID": "vacor_72" + }, + { + "text": "Ok, eu vou pensar sobre isso mais uma vez.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "vacor_72", + "message": "Bah, criatura inferior. Eu sabia que não deveria ter confiado em você. Agora você vai morrer junto com sua preciosa Sombra.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 54 + } + ], + "replies": [ + { + "text": "Pela Sombra!", + "nextPhraseID": "F" + }, + { + "text": "Você deve ser interrompido.", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_warden.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_warden.json new file mode 100644 index 000000000..3ab579b5c --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_fallhaven_warden.json @@ -0,0 +1,405 @@ +[ + { + "id": "fallhaven_warden", + "message": "Conte-me qual é o seu negócio.", + "replies": [ + { + "text": "Quem é o prisioneiro?", + "nextPhraseID": "warden_prisoner_1" + }, + { + "text": "Ouvi dizer que você gosta de hidromel", + "nextPhraseID": "fallhaven_warden_1", + "requires": { + "progress": "farrik:20" + } + }, + { + "text": "Os ladrões estão planejando uma fuga para o amigo deles.", + "nextPhraseID": "fallhaven_warden_20", + "requires": { + "progress": "farrik:30" + } + } + ] + }, + { + "id": "warden_prisoner_1", + "message": "Esse ladrão? Ele foi pego em flagrante. Ele é um transgressor. Estava tentando descer para as catacumbas da igreja de Fallhaven.", + "replies": [ + { + "text": "N", + "nextPhraseID": "warden_prisoner_2" + } + ] + }, + { + "id": "warden_prisoner_2", + "message": "Felizmente, nós pegamos antes que ele pudesse chegar lá. Agora ele vai servir como um exemplo para todos os outros ladrões.", + "replies": [ + { + "text": "N", + "nextPhraseID": "warden_prisoner_3" + } + ] + }, + { + "id": "warden_prisoner_3", + "message": "Malditos ladrões. Deve haver um ninho deles por aqui. Se eu pudesse descobrir onde se escondem." + }, + { + "id": "fallhaven_warden_1", + "message": "Hidromel? Oh .. não, eu não tomo mais isso. Quem lhe disse isso?", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_2" + } + ] + }, + { + "id": "fallhaven_warden_2", + "message": "Eu parei de beber isso anos atrás.", + "replies": [ + { + "text": "Soa como uma boa estratégia. Espero que continue longe disso.", + "nextPhraseID": "X" + }, + { + "text": "Nem mesmo um pouquinho?", + "nextPhraseID": "fallhaven_warden_3" + } + ] + }, + { + "id": "fallhaven_warden_3", + "message": "Hum. * Limpa a garganta * Eu realmente não deveria.", + "replies": [ + { + "text": "Trouxe um pouco comigo, caso você queira tragar um gole.", + "nextPhraseID": "fallhaven_warden_4", + "requires": { + "progress": "farrik:25", + "item": { + "itemID": "sleepingmead", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Ok, adeus", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_warden_4", + "message": "Bebidas, oh doce de alegria. Mas eu realmente não deveria tomar nada em serviço.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 32 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_5" + } + ] + }, + { + "id": "fallhaven_warden_5", + "message": "Eu poderia ser multado por beber em serviço. Eu não acho que eu ousaria tentar isso agora.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_6" + } + ] + }, + { + "id": "fallhaven_warden_6", + "message": "Obrigado pela bebida, porém, vou apreciá-lo quando eu chegar em casa depois de amanhã.", + "replies": [ + { + "text": "Você é bem-vindo. Tchau.", + "nextPhraseID": "X" + }, + { + "text": "E se alguém lhe pagar o valor da multa?", + "nextPhraseID": "fallhaven_warden_7" + } + ] + }, + { + "id": "fallhaven_warden_7", + "message": "Ah, isso soa um pouco sombrio. Eu duvido que alguém poderia pagar 450 moedas de ouro por aqui. De qualquer forma, eu precisaria de um pouco mais do que isso para arriscar-me.", + "replies": [ + { + "text": "Eu tenho 500 moedas de ouro aqui, caso lhe ajude.", + "nextPhraseID": "fallhaven_warden_9", + "requires": { + "item": { + "itemID": "gold", + "quantity": 500, + "requireType": 0 + } + } + }, + { + "text": "Mas você sabe que você quer tomar o hidromel, certo?", + "nextPhraseID": "fallhaven_warden_8" + }, + { + "text": "Sim, eu concordo. Isto está começando a soar muito sombrio. Tchau.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_warden_8", + "message": "Ah, claro. Agora que você mencionou. Com certeza seria bom.", + "replies": [ + { + "text": "Então, o que se eu pagar, digamos, 400 moedas de ouro. Isso iria ajudar a cobrir suficientemente sua ansiedade para desfrutar esta bebida agora?", + "nextPhraseID": "fallhaven_warden_9", + "requires": { + "item": { + "itemID": "gold", + "quantity": 400, + "requireType": 0 + } + } + }, + { + "text": "Isso está começando a soar muito obscuro para mim. Vou deixar você com o seu dever, adeus.", + "nextPhraseID": "X" + }, + { + "text": "Eu vou pegar esse ouro para você. Tchau.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_warden_9", + "message": "Uau, quanto ouro! Tenho certeza de que poderia até sair com isso sem ser multado. Então eu poderia ter o ouro e uma bebida agradável de hidromel, ao mesmo tempo.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 60 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_10" + } + ] + }, + { + "id": "fallhaven_warden_10", + "message": "Obrigado garoto, você é realmente bom. Agora, deixe-me aproveitar a minha bebida." + }, + { + "id": "fallhaven_warden_select_1", + "replies": [ + { + "nextPhraseID": "fallhaven_warden_11", + "requires": { + "progress": "farrik:60" + } + }, + { + "nextPhraseID": "fallhaven_warden_35", + "requires": { + "progress": "farrik:90" + } + }, + { + "nextPhraseID": "fallhaven_warden_select_2" + } + ] + }, + { + "id": "fallhaven_warden_select_2", + "replies": [ + { + "nextPhraseID": "fallhaven_warden_30", + "requires": { + "progress": "farrik:50" + } + }, + { + "nextPhraseID": "fallhaven_warden_12", + "requires": { + "progress": "farrik:32" + } + }, + { + "nextPhraseID": "fallhaven_warden" + } + ] + }, + { + "id": "fallhaven_warden_11", + "message": "Olá de novo, garoto. Obrigado pela bebida que me deu anteriormente. Eu tomei tudo de uma vez. Tenho certeza que o gosto estava um pouco diferente, mas acho que é apenas porque eu não estava mais acostumado com isso.", + "replies": [ + { + "text": "Quem é o prisioneiro?", + "nextPhraseID": "warden_prisoner_1" + } + ] + }, + { + "id": "fallhaven_warden_12", + "message": "Olá de novo, garoto. Obrigado pela bebida que me deu anteriormente. Eu ainda não a tomei.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_5" + } + ] + }, + { + "id": "fallhaven_warden_20", + "message": "Realmente, eles ousariam atacar a guarda em Fallhaven? Você tem mais detalhes sobre o seu plano?", + "replies": [ + { + "text": "Eu ouvi que eles estão planejando sua fuga hoje à noite", + "nextPhraseID": "fallhaven_warden_21" + }, + { + "text": "Não, eu só estava brincando com você. Não importa.", + "nextPhraseID": "X" + }, + { + "text": "Pensando bem, é melhor eu não me meter com a Corja dos Ladrões. Não importa o que eu disse.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_warden_21", + "message": "Hoje à noite? Obrigado por essa informação. Nós vamos ter certeza de aumentar a segurança, em seguida, à noite, mas de tal forma que eles não vão perceber.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_22" + } + ] + }, + { + "id": "fallhaven_warden_22", + "message": "Quando eles decidirem libertá-lo, estaremos preparados. Talvez possamos prender mais alguns desses ladrões imundos.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_23" + } + ] + }, + { + "id": "fallhaven_warden_23", + "message": "Mais uma vez obrigado pela informação. Embora não saiba como você poderia saber disso, eu realmente aprecio que você tenha tenha me informado.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_24" + } + ] + }, + { + "id": "fallhaven_warden_24", + "message": "Eu quero que você nos ajude um pouco mais, dizendo-lhes que nós teremos menos segurança para esta noite. Mas em vez disso, vamos aumentar a segurança. Dessa forma, podemos realmente estar prontos para eles.", + "replies": [ + { + "text": "Claro, eu posso fazer isso.", + "nextPhraseID": "fallhaven_warden_25" + } + ] + }, + { + "id": "fallhaven_warden_25", + "message": "Bom. Reporte-me de volta para mim quando lhes disser.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 50 + } + ], + "replies": [ + { + "text": "Certo, vou fazer isso.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_warden_30", + "message": "Olá de novo, meu amigo. Você disse a esses ladrões que vamos reduzir a segurança noturna?", + "replies": [ + { + "text": "Sim, eles não esperam nenhum problema.", + "nextPhraseID": "fallhaven_warden_31" + }, + { + "text": "Não, ainda não. Estou trabalhando nisso.", + "nextPhraseID": "fallhaven_warden_25" + } + ] + }, + { + "id": "fallhaven_warden_31", + "message": "Muito bom! Agradeço pela ajuda. Aqui, tome estas moedas como um símbolo de nossa gratidão.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 90 + }, + { + "rewardType": 1, + "rewardID": "gold200" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_36" + } + ] + }, + { + "id": "fallhaven_warden_35", + "message": "Olá de novo, meu amigo. Obrigado por sua ajuda anteriormente para lidar com os ladrões.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_36" + } + ] + }, + { + "id": "fallhaven_warden_36", + "message": "Eu vou com certeza informar aos outros guardas sobre como você nos ajudou aqui em Fallhaven.", + "replies": [ + { + "text": "Obrigado. Tchau.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_farrik.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_farrik.json new file mode 100644 index 000000000..f974dc679 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_farrik.json @@ -0,0 +1,401 @@ +[ + { + "id": "farrik_1", + "message": "Olá. Ouvi dizer que você nos ajudou a encontrar a chave de Luthor. Bom trabalho, ela realmente vai vir a calhar.", + "replies": [ + { + "text": "Quem é você?", + "nextPhraseID": "farrik_2" + }, + { + "text": "O que você pode me dizer sobre a Corja dos Ladrões?", + "nextPhraseID": "farrik_4" + } + ] + }, + { + "id": "farrik_2", + "message": "Eu sou Farrik, irmão de Omar.", + "replies": [ + { + "text": "O que você faz aqui?", + "nextPhraseID": "farrik_3" + }, + { + "text": "O que você pode me dizer sobre a Corja dos Ladrões?", + "nextPhraseID": "farrik_4" + } + ] + }, + { + "id": "farrik_3", + "message": "Eu, principalmente, administro o nosso comércio com outros parceiros e mantenho um olho no que ladrões precisam para tão eficaz quanto eles puderem.", + "replies": [ + { + "text": "O que você pode me dizer sobre a Corja dos Ladrões?", + "nextPhraseID": "farrik_4" + } + ] + }, + { + "id": "farrik_4", + "message": "Tentamos nos manter, tanto quanto possível, e ajudar os nossos companheiros ladrões, sempre que pudermos.", + "replies": [ + { + "text": "Tem algum acontecimento recente acontecendo?", + "nextPhraseID": "farrik_5" + } + ] + }, + { + "id": "farrik_5", + "message": "Bem, havia uma coisa acontecendo há algumas semanas atrás. Um de nossos membros foi preso por invasão.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_6" + } + ] + }, + { + "id": "farrik_6", + "message": "A guarda Fallhaven realmente começou a ficar irritada conosco recentemente. Provavelmente porque temos sido muito bem sucedidos em nossas recentes desventuras.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_7" + } + ] + }, + { + "id": "farrik_7", + "message": "Os guardas têm aumentado sua segurança ultimamente, levando-lhes prender um dos nossos membros.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_8" + } + ] + }, + { + "id": "farrik_8", + "message": "Ele está atualmente detido na prisão aqui em Fallhaven, aguardando transferência para Feygard.", + "replies": [ + { + "text": "O que ele fez?", + "nextPhraseID": "farrik_9" + } + ] + }, + { + "id": "farrik_9", + "message": "Ah, nada sério. Ele estava tentando entrar nas catacumbas da igreja de Fallhaven.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_10" + } + ] + }, + { + "id": "farrik_10", + "message": "Mas agora que já nos ajudou com essa missão, eu acho que nós não precisamos ir mais até lá.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_11" + } + ] + }, + { + "id": "farrik_11", + "message": "Eu acho que eu posso confiar em você este segredo. Estamos planejando ajudá-lo a sair da prisão durante a noite.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 10 + } + ], + "replies": [ + { + "text": "Esses guardas parecem realmente irritantes.", + "nextPhraseID": "farrik_13" + }, + { + "text": "Afinal de contas, se ele não foi autorizado a andar por lá, então os guardas têm o direito de prendê-lo.", + "nextPhraseID": "farrik_12" + } + ] + }, + { + "id": "farrik_12", + "message": "Sim, acho que sim. Mas, por causa da segurança da Corja, preferia ter o nosso amigo libertado.", + "replies": [ + { + "text": "Talvez eu devesse dizer aos guardas que você está planejando uma fuga.", + "nextPhraseID": "farrik_15" + }, + { + "text": "Não se preocupe, o seu plano secreto para libertá-lo está seguro comigo.", + "nextPhraseID": "farrik_14" + }, + { + "text": "[Lie]Não se preocupe, o seu plano secreto para libertá-lo está seguro comigo.", + "nextPhraseID": "farrik_14" + } + ] + }, + { + "id": "farrik_13", + "message": "Ah, sim, eles são. Não são apenas os membros na Corja dos Ladrões que não gostam deles; o pessoal, em geral, também não gosta deles.", + "replies": [ + { + "text": "Há algo que eu possa fazer para ajudá-lo contra os guardas irritantes?", + "nextPhraseID": "farrik_16" + } + ] + }, + { + "id": "farrik_14", + "message": "Obrigado. Agora, por favor me deixe." + }, + { + "id": "farrik_15", + "message": "Que seja, eles não irão acreditar em você, de qualquer maneira.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 30 + } + ] + }, + { + "id": "farrik_16", + "message": "Você tem certeza que quer irritar os guardas? Se alguém comentar que você esteve envolvido, você poderia arranjar um monte de problemas.", + "replies": [ + { + "text": "Não tem problema, eu me cuidar!", + "nextPhraseID": "farrik_18" + }, + { + "text": "Deve haver alguma recompensa mais tarde. Estou dentro", + "nextPhraseID": "farrik_18" + }, + { + "text": "Pensando bem, talvez eu devesse ficar fora disso.", + "nextPhraseID": "farrik_17" + } + ] + }, + { + "id": "farrik_17", + "message": "Claro, faça o que achar melhor.", + "replies": [ + { + "text": "Boa sorte em sua missão.", + "nextPhraseID": "farrik_14" + }, + { + "text": "Talvez eu devesse dizer aos guardas que você está planejando libertá-lo.", + "nextPhraseID": "farrik_15" + } + ] + }, + { + "id": "farrik_18", + "message": "Bom.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_19" + } + ] + }, + { + "id": "farrik_19", + "message": "Ok, eis o plano: o capitão da guarda tem um certo problema com a bebida.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_20" + } + ] + }, + { + "id": "farrik_20", + "message": "Se convencermos ele a tomar um pouco de hidromel que preparamos, nós poderemos ser capaz de retirar sorrateiramente nosso amigo durante a noite, quando o capitão estiver dormindo embriagado.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_20a" + } + ] + }, + { + "id": "farrik_20a", + "message": "O nosso cozinheiro pode preparar uma bebida especial de hidromel para você que vai nocauteá-lo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_21" + } + ] + }, + { + "id": "farrik_21", + "message": "Ele provavelmente precisará ser persuadido a beber em serviço. Se isso falhar, você pode tentar suborná-lo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_22" + } + ] + }, + { + "id": "farrik_22", + "message": "O que você acha do plano? Você estaria disposto a fazer isso?", + "replies": [ + { + "text": "Claro, parece fácil!", + "nextPhraseID": "farrik_23" + }, + { + "text": "Soa um pouco perigoso, mas eu acho que vou tentar.", + "nextPhraseID": "farrik_23" + }, + { + "text": "Não, isso está realmente começando a parecer uma má ideia.", + "nextPhraseID": "farrik_17" + } + ] + }, + { + "id": "farrik_23", + "message": "Bom. Reporte-me quando voce tiver conseguido fazer o capitão da guarda beber o hidromel especialmente preparado.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 20 + } + ], + "replies": [ + { + "text": "Farei isso.", + "nextPhraseID": "farrik_14" + } + ] + }, + { + "id": "farrik_return_1", + "message": "Olá novamente meu amigo. Como está a tarefa de embebedar o capitão da guarda?", + "replies": [ + { + "text": "Ainda não terminei, mas estou trabalhando nisso.", + "nextPhraseID": "farrik_23" + }, + { + "text": "[Lie]Está feito. Ele não deve ser problema durante a noite.", + "nextPhraseID": "farrik_26", + "requires": { + "progress": "farrik:50" + } + }, + { + "text": "Está feito. Ele não deve ser problema durante a noite.", + "nextPhraseID": "farrik_24", + "requires": { + "progress": "farrik:60" + } + } + ] + }, + { + "id": "farrik_select_1", + "replies": [ + { + "nextPhraseID": "farrik_return_2", + "requires": { + "progress": "farrik:70" + } + }, + { + "nextPhraseID": "farrik_return_2", + "requires": { + "progress": "farrik:80" + } + }, + { + "nextPhraseID": "farrik_select_2" + } + ] + }, + { + "id": "farrik_select_2", + "replies": [ + { + "nextPhraseID": "farrik_return_1", + "requires": { + "progress": "farrik:20" + } + }, + { + "nextPhraseID": "farrik_1" + } + ] + }, + { + "id": "farrik_24", + "message": "Isso é uma boa notícia! Agora nós devemos ser capazes de retirar nosso amigo da prisão esta noite.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 70 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_25" + } + ] + }, + { + "id": "farrik_25", + "message": "Obrigado por sua ajuda meu amigo. Tome estas moedas como um símbolo de nossa gratidão.", + "rewards": [ + { + "rewardType": 1, + "rewardID": "gold200" + } + ], + "replies": [ + { + "text": "Obrigado. Tchau.", + "nextPhraseID": "X" + }, + { + "text": "Finalmente, um pouco de ouro.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "farrik_return_2", + "message": "Obrigado por sua ajuda com o capitão da guarda antes." + }, + { + "id": "farrik_26", + "message": "Oh, você fez? Bem feito. Você tem o meu agradecimento, amigo.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 80 + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_fields_1.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_fields_1.json new file mode 100644 index 000000000..26e1290a7 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_fields_1.json @@ -0,0 +1,34 @@ +[ + { + "id": "feygard_bridgeguard", + "message": "Desculpe, o caminho para Feygard está fechado até nova ordem." + }, + { + "id": "sign_crossroadshouse", + "message": "Guarita de Crossroads, hospedagem para aliados de Feygard." + }, + { + "id": "sign_crossroads_s", + "message": "Sudeste: Nor City\nNoroeste: Feygard\nLeste: Loneford\nSul: Fallhaven" + }, + { + "id": "sign_crossroads_n", + "message": "Noroeste: Feygard\nLeste: Loneford." + }, + { + "id": "sign_fields1", + "message": "Noroeste: Feygard\nLeste: Loneford." + }, + { + "id": "sign_fields6", + "message": "Noroeste: Feygard\nSul: Nor City." + }, + { + "id": "crossroads_sleep", + "message": "O guarda grita com você: Hei! Você não pode dormir aqui!" + }, + { + "id": "sign_loneford2", + "message": "Bem-vindo à pacífica Loneford.\n(A placa também contém um desenho de fardo de feno com o que se parece com um agricultor sentado em cima.)" + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_flagstone.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_flagstone.json new file mode 100644 index 000000000..cce9b8320 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_flagstone.json @@ -0,0 +1,586 @@ +[ + { + "id": "zombie1", + "message": "Carne fresca!", + "replies": [ + { + "text": "Pela Sombra, eu vou matar você.", + "nextPhraseID": "F" + }, + { + "text": "Yuck, quem é você? E o que é esse cheiro?", + "nextPhraseID": "F" + } + ] + }, + { + "id": "prisoner1", + "message": "Nããão, eu não vou ser preso de novo!", + "replies": [ + { + "text": "Mas eu não sou ...", + "nextPhraseID": "F" + } + ] + }, + { + "id": "prisoner2", + "message": "Aaaa! Quem está aí? Eu não vou ser escravizado novamente!", + "replies": [ + { + "text": "Calma, eu estava ...", + "nextPhraseID": "F" + } + ] + }, + { + "id": "flagstone_guard0", + "message": "Ah, outro mortal. Prepare-se para se tornar parte do meu exército de mortos vivos!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "flagstone", + "value": 31 + } + ], + "replies": [ + { + "text": "Que a Sombra o leve.", + "nextPhraseID": "F" + }, + { + "text": "Prepare-se para morrer mais uma vez.", + "nextPhraseID": "F" + } + ] + }, + { + "id": "flagstone_guard1", + "message": "Morra mortal!", + "replies": [ + { + "text": "A sombra irá levá-lo.", + "nextPhraseID": "F" + }, + { + "text": "Prepare-se para conhecer a minha lâmina.", + "nextPhraseID": "F" + } + ] + }, + { + "id": "flagstone_guard2", + "message": "O que, um mortal aqui que não é marcado por meu toque?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "flagstone", + "value": 50 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_guard2_2" + } + ] + }, + { + "id": "flagstone_guard2_2", + "message": "Você parece delicioso e suave, você vai fazer parte da festa?", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_guard2_3" + } + ] + }, + { + "id": "flagstone_guard2_3", + "message": "Sim, eu acho que você vai. Meu exército de mortos vivos vai se espalhar muito longe fora de Flagstone uma vez que eu liquide você.", + "replies": [ + { + "text": "pela sombra, você deve ser detido!", + "nextPhraseID": "F" + }, + { + "text": "Não! Esta terra deve ser protegida de mortos-vivos!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "flagstone_sentry", + "replies": [ + { + "nextPhraseID": "flagstone_sentry_return4", + "requires": { + "progress": "flagstone:60" + } + }, + { + "nextPhraseID": "flagstone_sentry_return3", + "requires": { + "progress": "flagstone:40" + } + }, + { + "nextPhraseID": "flagstone_sentry_select0" + } + ] + }, + { + "id": "flagstone_sentry_select0", + "replies": [ + { + "nextPhraseID": "flagstone_sentry_return2", + "requires": { + "progress": "flagstone:30" + } + }, + { + "nextPhraseID": "flagstone_sentry_return1", + "requires": { + "progress": "flagstone:10" + } + }, + { + "nextPhraseID": "flagstone_sentry_1" + } + ] + }, + { + "id": "flagstone_sentry_1", + "message": "Alto! Quem está aí? Ninguém está autorizado a aproximar-se de Flagstone.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_2" + } + ] + }, + { + "id": "flagstone_sentry_2", + "message": "Você deve voltar enquanto ainda pode.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_3" + } + ] + }, + { + "id": "flagstone_sentry_3", + "message": "Flagstone foi invadida por mortos-vivos, e eu estou montando guarda aqui para garantir nenhum morto-vivo escape.", + "replies": [ + { + "text": "Você pode me dizer a história sobre Flagstone?", + "nextPhraseID": "flagstone_sentry_4" + } + ] + }, + { + "id": "flagstone_sentry_4", + "message": "Flagstone costumava ser um campo de prisioneiros para os trabalhadores fugitivos da época em que o Monte Galmore foi escavado.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_5" + } + ] + }, + { + "id": "flagstone_sentry_5", + "message": "Mas uma vez que a escavação no Monte Galmore parou, o campo de prisioneiros perdeu a sua finalidade.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_6" + } + ] + }, + { + "id": "flagstone_sentry_6", + "message": "O senhor na época não ligava muito para os presos que já estavam em Flagstone. Por isso, os deixou lá.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_7" + } + ] + }, + { + "id": "flagstone_sentry_7", + "message": "O antigo diretor de Flagstone, por outro lado, levava seu dever muito a sério, e continuou dirigindo a prisão exatamente como era quando o Monte Galmore estava sendo escavado.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_8" + } + ] + }, + { + "id": "flagstone_sentry_8", + "message": "Durante anos, ninguém tomou conhecimento de Flagstone. Exceto por eventuais relatos de viajantes que escutavam gritos terríveis vindo da prisão.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_9" + } + ] + }, + { + "id": "flagstone_sentry_9", + "message": "Houve uma mudança recente: agora os mortos-vivos estão pipocando em grande número.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_10" + } + ] + }, + { + "id": "flagstone_sentry_10", + "message": "E aqui estamos nós. Eu tenho que guardar a estrada contra os mortos-vivos, para que eles não se se afastem de Flagstone.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_11" + } + ] + }, + { + "id": "flagstone_sentry_11", + "message": "Então, eu aconselho-o a deixar esse local, a menos que você queira ser tomado pelos mortos-vivos.", + "replies": [ + { + "text": "Posso investigar as ruínas Flagstone?", + "nextPhraseID": "flagstone_sentry_12" + }, + { + "text": "Sim, eu até poderia deixar.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "flagstone_sentry_12", + "message": "Você tem certeza que quer ir lá? Bem, ok, por mim, tudo bem.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_13" + } + ] + }, + { + "id": "flagstone_sentry_13", + "message": "Eu não vou parar você, e eu não vou chorar você se você nunca retornar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_14" + } + ] + }, + { + "id": "flagstone_sentry_14", + "message": "Vá em frente. Creio que nada que eu diga em contrário irá evitar sua ida.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_15" + } + ] + }, + { + "id": "flagstone_sentry_15", + "message": "Volte aqui se precisar de meu conselho.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "flagstone", + "value": 10 + } + ], + "replies": [ + { + "text": "OK. Eu retornarei a você, se eu precisar de ajuda.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "flagstone_sentry_return1", + "message": "Olá novamente. Você esteve em Flagstone? Estou realmente surpreso que você voltou.", + "replies": [ + { + "text": "Você pode me contar a história de novo?", + "nextPhraseID": "flagstone_sentry_4" + }, + { + "text": "Existe um guardião dos níveis mais baixos de Flagstone que não me deixa aproximar.", + "nextPhraseID": "flagstone_sentry_20", + "requires": { + "progress": "flagstone:20" + } + } + ] + }, + { + "id": "flagstone_sentry_20", + "message": "Um guardião que você diz? Esta é uma notícia preocupante, uma vez que significa que existe alguma força poderosa por trás de tudo isso.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_21" + } + ] + }, + { + "id": "flagstone_sentry_21", + "message": "Você já encontrou o ex-diretor de Flagstone? O diretor costumava usar sempre um colar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_22" + } + ] + }, + { + "id": "flagstone_sentry_22", + "message": "Ele se preocupava muito com o colar. Talvez seja algum tipo de chave.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_23" + } + ] + }, + { + "id": "flagstone_sentry_23", + "message": "Se você encontrar o diretor e recuperar o colar, por favor, volte aqui e eu vou ajudá-lo a decifrar qualquer mensagem que possamos encontrar nele.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "flagstone", + "value": 30 + } + ], + "replies": [ + { + "text": "Eu encontrei-o. Está aqui.", + "nextPhraseID": "flagstone_sentry_40", + "requires": { + "item": { + "itemID": "necklace_flagstone", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "O que você disse mesmo sobre o guardião?", + "nextPhraseID": "flagstone_sentry_20" + }, + { + "text": "Ok, eu vou procurar o antigo diretor.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "flagstone_sentry_return2", + "message": "Olá novamente. Você ainda não encontrou o ex-diretor de Flagstone?", + "replies": [ + { + "text": "Sobre o ex-diretor ...", + "nextPhraseID": "flagstone_sentry_23" + }, + { + "text": "Você pode me contar a história de novo?", + "nextPhraseID": "flagstone_sentry_3" + } + ] + }, + { + "id": "flagstone_sentry_40", + "message": "Você encontrou o colar? Bom. Aqui, entregue-me.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "flagstone", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_41" + } + ] + }, + { + "id": "flagstone_sentry_41", + "message": "Agora, vamos ver aqui. Ah, sim, é como eu pensava. O colar contém uma senha.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_42" + } + ] + }, + { + "id": "flagstone_sentry_42", + "message": "'A Sombra da luz do dia'. Deve ser isso. Você deve tentar se aproximar do guardião com esta senha.", + "replies": [ + { + "text": "Obrigado, adeus.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "flagstone_sentry_return3", + "message": "Olá novamente. Como está indo sua investigação sobre mortos-vivos de Flagstone?", + "replies": [ + { + "text": "Nenhum progresso ainda.", + "nextPhraseID": "flagstone_sentry_43" + } + ] + }, + { + "id": "flagstone_sentry_43", + "message": "Bem, continue procurando. Volte para mim se precisar do meu conselho." + }, + { + "id": "flagstone_sentry_return4", + "message": "Olá novamente. Parece algo aconteceu dentro de Flagstone tornaram os mortos-vivos mais fracos. Tenho certeza de que temos que lhe agradecer por isso." + }, + { + "id": "narael", + "message": "Obrigado, obrigado por me libertar daquele monstro.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_select" + } + ] + }, + { + "id": "narael_select", + "replies": [ + { + "nextPhraseID": "narael_9", + "requires": { + "progress": "flagstone:60" + } + }, + { + "nextPhraseID": "narael_1" + } + ] + }, + { + "id": "narael_1", + "message": "Eu tenho sido prisioneiro aqui pelo que parece ser uma eternidade.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_2" + } + ] + }, + { + "id": "narael_2", + "message": "Ah, as coisas que eles fizeram para mim. Muito obrigado por me libertar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_3" + } + ] + }, + { + "id": "narael_3", + "message": "Eu era um cidadão de Nor City, e trabalhei na escavação do Monte Galmore.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_4" + } + ] + }, + { + "id": "narael_4", + "message": "Mas um dia eu quis parar a tarefa e voltar para a minha esposa.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_5" + } + ] + }, + { + "id": "narael_5", + "message": "O oficial encarregado não me deixou, e fui enviado para Flagstone como prisioneiro por desobedecer ordens.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_6" + } + ] + }, + { + "id": "narael_6", + "message": "Se eu pudesse ver a minha esposa mais uma vez. Mas eu não tenho mais quase nenhuma vida, eu nem sequer tenho força suficiente para sair deste lugar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_7" + } + ] + }, + { + "id": "narael_7", + "message": "Eu acho que o meu destino é morrer aqui. Mas agora, pelo menos como um homem livre.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_8" + } + ] + }, + { + "id": "narael_8", + "message": "Agora, deixe-me entregue ao meu destino. Eu não tenho a força para sair deste lugar.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "flagstone", + "value": 60 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_9" + } + ] + }, + { + "id": "narael_9", + "message": "Se você encontrar minha esposa Taurum em Nor City, por favor, diga a ela que eu estou vivo e que eu esqueci-me dela.", + "replies": [ + { + "text": "Eu vou. Tchau.", + "nextPhraseID": "X" + }, + { + "text": "Eu vou. A Sombra esteja com você.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_foamingflask.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_foamingflask.json new file mode 100644 index 000000000..1ad742562 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_foamingflask.json @@ -0,0 +1,247 @@ +[ + { + "id": "ff_cook_1", + "message": "Olá. Você quer alguma coisa da cozinha?", + "replies": [ + { + "text": "Claro, deixe-me ver o que você tem pronto.", + "nextPhraseID": "ff_cook_3" + }, + { + "text": "Isso cheira horrível. O que você está cozinhando?", + "nextPhraseID": "ff_cook_2" + }, + { + "text": "Isso cheira maravilhoso. O que você está cozinhando?", + "nextPhraseID": "ff_cook_2" + } + ] + }, + { + "id": "ff_cook_2", + "message": "Oh isso? Isto é suposto ser um ensopado de Anklebiter. Precisa de mais tempero, eu acho.", + "replies": [ + { + "text": "Estou ansioso para prová-lo quando terminar. Boa sorte no preparo.", + "nextPhraseID": "X" + }, + { + "text": "Yuck, que aspecto horrível. Você pode realmente comer essas coisas? Estou enojado, adeus.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "ff_cook_3", + "message": "Não, sinto muito, eu não tenho nenhuma comida para vender. Vá falar com Torilo lá se você quer alguma bebida ou comida pronta." + }, + { + "id": "torilo_1", + "message": "Bem-vindo à taverna Foaming Flask. Congratulamo-nos com todos os viajantes aqui.", + "replies": [ + { + "text": "Obrigado. Você é o dono de pousada aqui?", + "nextPhraseID": "torilo_2" + }, + { + "text": "Você viu um menino chamado Rincel por aqui recentemente?", + "nextPhraseID": "torilo_rincel_1", + "requires": { + "progress": "wrye:41" + } + } + ] + }, + { + "id": "torilo_2", + "message": "Eu sou Torilo, o proprietário deste estabelecimento. Por favor, sinta-se à vontate. Sente-se onde quiser.", + "replies": [ + { + "text": "Posso ver o seu cardápio?", + "nextPhraseID": "torilo_shop_1" + }, + { + "text": "Você tem algum lugar que eu possa descansar?", + "nextPhraseID": "torilo_rest_select" + }, + { + "text": "Aqueles guardas estão sempre gritando e berrando tanto?", + "nextPhraseID": "torilo_guards_1" + } + ] + }, + { + "id": "torilo_default", + "message": "Houve alguma coisa que você queria?", + "replies": [ + { + "text": "Posso ver o que você tem disponível para comida e bebida?", + "nextPhraseID": "torilo_shop_1" + }, + { + "text": "são aqueles guardas sempre gritando e berrando tanto?", + "nextPhraseID": "torilo_guards_1" + }, + { + "text": "Você viu um menino chamado Rincel por aqui recentemente?", + "nextPhraseID": "torilo_rincel_1", + "requires": { + "progress": "wrye:41" + } + } + ] + }, + { + "id": "torilo_shop_1", + "message": "Absolutamente. Temos uma grande variedade de alimentos e bebidas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "S" + } + ] + }, + { + "id": "torilo_rest_select", + "replies": [ + { + "nextPhraseID": "torilo_rest_1", + "requires": { + "progress": "nondisplay:10" + } + }, + { + "nextPhraseID": "torilo_rest_3" + } + ] + }, + { + "id": "torilo_rest_1", + "message": "Sim, você já alugou o quarto dos fundos.", + "replies": [ + { + "text": "N", + "nextPhraseID": "torilo_rest_2" + } + ] + }, + { + "id": "torilo_rest_2", + "message": "Por favor, sinta-se livre para usá-lo sempre que quiser. Eu espero que você possa dormir um pouco, mesmo com esses guardas gritando suas canções.", + "replies": [ + { + "text": "Obrigado.", + "nextPhraseID": "torilo_default" + } + ] + }, + { + "id": "torilo_rest_3", + "message": "Ah, sim. Temos um quarto muito confortável aos fundos daqui, na taberna Foaming Flask.", + "replies": [ + { + "text": "N", + "nextPhraseID": "torilo_rest_4" + } + ] + }, + { + "id": "torilo_rest_4", + "message": "Disponível por apenas 250 moedas de ouro. Então você pode usá-lo tanto quanto você quiser.", + "replies": [ + { + "text": "250 de ouro? Claro, isso não é nada para mim. Aqui está.", + "nextPhraseID": "torilo_rest_6", + "requires": { + "item": { + "itemID": "gold", + "quantity": 250, + "requireType": 0 + } + } + }, + { + "text": "250 de ouro é muito, mas eu acho que vale a pena. Aqui está.", + "nextPhraseID": "torilo_rest_6", + "requires": { + "item": { + "itemID": "gold", + "quantity": 250, + "requireType": 0 + } + } + }, + { + "text": "Isso soa um pouco demais para mim.", + "nextPhraseID": "torilo_rest_5" + } + ] + }, + { + "id": "torilo_rest_5", + "message": "Oh, bem, você é que está perdendo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "torilo_default" + } + ] + }, + { + "id": "torilo_rest_6", + "message": "Obrigado. O quarto agora está alugado para você.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nondisplay", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "torilo_rest_2" + } + ] + }, + { + "id": "torilo_rincel_1", + "message": "Rincel? Não, não que eu me lembre. Na verdade, nós não temos muitas crianças aqui. *Rindo*", + "replies": [ + { + "text": "N", + "nextPhraseID": "torilo_default" + } + ] + }, + { + "id": "torilo_guards_1", + "message": "*Suspiro* Sim. Esses guardas já estão aqui há algum tempo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "torilo_guards_2" + } + ] + }, + { + "id": "torilo_guards_2", + "message": "Eles parecem estar à procura de algo ou de alguém, mas eu não tenho certeza de quem ou do quê.", + "replies": [ + { + "text": "N", + "nextPhraseID": "torilo_guards_3" + } + ] + }, + { + "id": "torilo_guards_3", + "message": "Espero que a Sombra vele sobre nós, para que nada de ruim aconteca com a taberna Foaming Flask por causa deles.", + "replies": [ + { + "text": "N", + "nextPhraseID": "torilo_default" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_foamingflask_guards.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_foamingflask_guards.json new file mode 100644 index 000000000..83f407a7d --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_foamingflask_guards.json @@ -0,0 +1,215 @@ +[ + { + "id": "ff_guard_1", + "message": "Ha ha, conte-lhe, Garl!\n\n*burp*", + "replies": [ + { + "text": "N", + "nextPhraseID": "ff_guard_2" + } + ] + }, + { + "id": "ff_guard_2", + "message": "Cantar, beber, lutar! Todos os que se opõem Feygard vão cair!", + "replies": [ + { + "text": "N", + "nextPhraseID": "ff_guard_3" + } + ] + }, + { + "id": "ff_guard_3", + "message": "Vamos esta alto. Feygard, cidade da paz!", + "replies": [ + { + "text": "Eu acho melhor ir embora.", + "nextPhraseID": "X" + }, + { + "text": "Feygard, onde é isso?", + "nextPhraseID": "ff_guard_4" + }, + { + "text": "Você viu um menino chamado Rincel por aqui recentemente?", + "nextPhraseID": "ff_guard_rincel_1", + "requires": { + "progress": "wrye:41" + } + } + ] + }, + { + "id": "ff_guard_4", + "message": "O que, você não ouviu falar de Feygard, garoto? Basta seguir a estrada a noroeste e você vai ver a grande cidade de Feygard crescendo além das copas das árvores.", + "replies": [ + { + "text": "Obrigado. Tchau.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "ff_guard_rincel_1", + "message": "Um menino?! Além de você, não vi nenhuma outra criança por aqui.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ff_guard_rincel_2" + } + ] + }, + { + "id": "ff_guard_rincel_2", + "message": "Verifique com o capitão ali. Ele está aqui há mais tempo do que nós.", + "replies": [ + { + "text": "Obrigado, adeus.", + "nextPhraseID": "X" + }, + { + "text": "Obrigado. A Sombra esteja com você.", + "nextPhraseID": "ff_guard_shadow_1" + } + ] + }, + { + "id": "ff_guard_shadow_1", + "message": "Não traga essa Sombra amaldiçoada por aqui, filho. Não queremos nada disso. Agora saia." + }, + { + "id": "ff_captain_1", + "message": "Você está perdido, filho? Este não é lugar para um garoto como você.", + "replies": [ + { + "text": "Eu tenho um carregamento de espadas de ferro da parte de Gandoren para você.", + "nextPhraseID": "ff_captain_vg_items_1", + "requires": { + "progress": "feygard_shipment:56", + "item": { + "itemID": "fg_ironsword_d", + "quantity": 10, + "requireType": 0 + } + } + }, + { + "text": "Eu tenho um carregamento de espadas de ferro da parte de Gandoren para você.", + "nextPhraseID": "ff_captain_fg_items_1", + "requires": { + "progress": "feygard_shipment:25", + "item": { + "itemID": "fg_ironsword", + "quantity": 10, + "requireType": 0 + } + } + }, + { + "text": "Quem é você?", + "nextPhraseID": "ff_captain_2" + }, + { + "text": "Você já viu um menino chamado Rincel por aqui recentemente?", + "nextPhraseID": "ff_captain_rincel_1", + "requires": { + "progress": "wrye:41" + } + } + ] + }, + { + "id": "ff_captain_2", + "message": "Eu sou o capitão da guarda da patrulha. Eu sou da grande cidade de Feygard.", + "replies": [ + { + "text": "Feygard, onde é isso?", + "nextPhraseID": "ff_captain_4" + }, + { + "text": "O que você faz aqui?", + "nextPhraseID": "ff_captain_3" + } + ] + }, + { + "id": "ff_captain_3", + "message": "Estamos viajando pela estrada principal para garantir que os comerciantes e viajantes estejam seguros. Nós mantemos a paz por aqui.", + "replies": [ + { + "text": "Você mencionou Feygard. Onde é isso?", + "nextPhraseID": "ff_captain_4" + } + ] + }, + { + "id": "ff_captain_4", + "message": "A grande cidade de Feygard é a maior visão que você irá ver em sua vida. Siga o noroeste da estrada.", + "replies": [ + { + "text": "Obrigado. A Sombra esteja com você.", + "nextPhraseID": "ff_captain_shadow_1" + }, + { + "text": "Obrigado, adeus.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "ff_captain_rincel_1", + "message": "Houve um garoto rondando por aqui, tempos atrás.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ff_captain_rincel_2" + } + ] + }, + { + "id": "ff_captain_rincel_2", + "message": "Eu nunca falei com ele, então eu não sei se ele é quem você está procurando.", + "replies": [ + { + "text": "Ok, isso pode ser algo. De qualquer maneira vale a pena conferir.", + "nextPhraseID": "ff_captain_rincel_3" + } + ] + }, + { + "id": "ff_captain_rincel_3", + "message": "Eu notei que ele saiu da taverna Foaming Flask, dirigindo-se para o oeste.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "wrye", + "value": 42 + } + ], + "replies": [ + { + "text": "Oeste. Entendi. Obrigado pela informação.", + "nextPhraseID": "ff_captain_rincel_4" + } + ] + }, + { + "id": "ff_captain_rincel_4", + "message": "Sempre feliz em ajudar. Qualquer coisa para a glória de Feygard.", + "replies": [ + { + "text": "A Sombra esteja com você.", + "nextPhraseID": "ff_captain_shadow_1" + }, + { + "text": "Até logo.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "ff_captain_shadow_1", + "message": "A Sombra? Não me diga que você acredita nessas coisas. Na minha experiência, apenas encrenqueiros falam da Sombra." + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_foamingflask_outsideguard.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_foamingflask_outsideguard.json new file mode 100644 index 000000000..38fc60a15 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_foamingflask_outsideguard.json @@ -0,0 +1,333 @@ +[ + { + "id": "ff_outsideguard_select", + "replies": [ + { + "nextPhraseID": "ff_outsideguard_trouble_24", + "requires": { + "progress": "jolnor:20" + } + }, + { + "nextPhraseID": "ff_outsideguard_1" + } + ] + }, + { + "id": "ff_outsideguard_1", + "message": "Olá. Se você deveria estar aqui? Esta é uma taverna, você sabe. O Foaming Flask, para ser preciso.", + "replies": [ + { + "text": "Quem é você?", + "nextPhraseID": "ff_outsideguard_2" + } + ] + }, + { + "id": "ff_outsideguard_2", + "message": "Eu sou um membro da patrulha da guarda real Feygard.", + "replies": [ + { + "text": "Feygard, onde é isso?", + "nextPhraseID": "ff_outsideguard_3" + }, + { + "text": "O que você faz aqui?", + "nextPhraseID": "ff_outsideguard_3" + } + ] + }, + { + "id": "ff_outsideguard_3", + "message": "Vá falar com o capitão dentro se você quer conversar. Devo ficar atento em meu posto.", + "replies": [ + { + "text": "OK. Tchau.", + "nextPhraseID": "X" + }, + { + "text": "Por que você deve ficar de guarda na porta de uma taverna?", + "nextPhraseID": "ff_outsideguard_trouble_1", + "requires": { + "progress": "jolnor:10" + } + } + ] + }, + { + "id": "ff_outsideguard_trouble_1", + "message": "Realmente, eu não posso falar com você. Eu poderia ficar em apuros.", + "replies": [ + { + "text": "OK. Eu não vou te incomodar mais. A Sombra esteja com você.", + "nextPhraseID": "ff_outsideguard_shadow_1" + }, + { + "text": "OK. Eu não vou te incomodar mais. Tchau.", + "nextPhraseID": "X" + }, + { + "text": "Qual o problema?", + "nextPhraseID": "ff_outsideguard_trouble_2" + } + ] + }, + { + "id": "ff_outsideguard_trouble_2", + "message": "Não, sério, o capitão pode me ver. Eu devo estar sempre vigilante em meu posto. *Suspiro*", + "replies": [ + { + "text": "OK. Eu não vou te incomodar mais. A Sombra esteja com você.", + "nextPhraseID": "ff_outsideguard_shadow_1" + }, + { + "text": "OK. Eu não vou te incomodar mais. Tchau.", + "nextPhraseID": "X" + }, + { + "text": "Você gosta do seu trabalho aqui?", + "nextPhraseID": "ff_outsideguard_trouble_3" + } + ] + }, + { + "id": "ff_outsideguard_trouble_3", + "message": "O meu trabalho? Eu acho ok estar na guarda real. Quer dizer, Feygard é um lugar muito agradável para se viver", + "replies": [ + { + "text": "N", + "nextPhraseID": "ff_outsideguard_trouble_4" + } + ] + }, + { + "id": "ff_outsideguard_trouble_4", + "message": "Mas ficar de guarda aqui no meio do nada, não é realmente a razão pela qual alistei-me.", + "replies": [ + { + "text": "Aposto que não. Este lugar é realmente chato.", + "nextPhraseID": "ff_outsideguard_trouble_5" + }, + { + "text": "Você deve estar cansado de ficar apenas aqui.", + "nextPhraseID": "ff_outsideguard_trouble_5" + } + ] + }, + { + "id": "ff_outsideguard_trouble_5", + "message": "Sim, eu sei. Eu prefiro estar dentro da taberna bebendo, como os oficiais superiores e o capitão. Por que é que eu tenho que ficar aqui?", + "replies": [ + { + "text": "Pelo menos a Sombra te guarda.", + "nextPhraseID": "ff_outsideguard_shadow_1" + }, + { + "text": "Por que não abandona o posto, se não é o que você quer fazer?", + "nextPhraseID": "ff_outsideguard_trouble_7" + }, + { + "text": "Pela causa maior da guarda real: para manter a paz, vale a pena, a longo prazo.", + "nextPhraseID": "ff_outsideguard_trouble_6" + } + ] + }, + { + "id": "ff_outsideguard_trouble_6", + "message": "Sim, você está certo, é claro. Nosso dever para Feygard e para manter a paz de tudo o que quiser atrapalhá-la.", + "replies": [ + { + "text": "Sim. A Sombra não vê com bons olhos aqueles que perturbam a paz.", + "nextPhraseID": "ff_outsideguard_shadow_1" + }, + { + "text": "Sim. Os baderneiros devem ser punidos.", + "nextPhraseID": "ff_outsideguard_trouble_8" + } + ] + }, + { + "id": "ff_outsideguard_trouble_7", + "message": "Não, minha lealdade é para com Feygard. Se eu sair, eu teria deixado a minha lealdade para trás.", + "replies": [ + { + "text": "O que significa isso, se você não está satisfeito com o que você faz?", + "nextPhraseID": "ff_outsideguard_trouble_9" + }, + { + "text": "Sim, isso parece bom. Feygard soa como um lugar agradável, pelo que ouvi.", + "nextPhraseID": "ff_outsideguard_trouble_6" + } + ] + }, + { + "id": "ff_outsideguard_trouble_8", + "message": "Certo. Eu gosto de você, garoto. Quer saber: eu poderia colocar recomendá-lo ao quartel, quando voltarmos para Feygard, se quiser.", + "replies": [ + { + "text": "Claro! Parece bom para mim.", + "nextPhraseID": "ff_outsideguard_trouble_20" + }, + { + "text": "Não, obrigado. Eu tenho já tenho o suficiente para fazer.", + "nextPhraseID": "ff_outsideguard_trouble_20" + } + ] + }, + { + "id": "ff_outsideguard_trouble_9", + "message": "Bem, eu estou convencido de que temos que seguir as leis estabelecidas pelos nossos governantes. Se não obedecer a lei, o que nos resta?", + "replies": [ + { + "text": "N", + "nextPhraseID": "ff_outsideguard_trouble_10" + } + ] + }, + { + "id": "ff_outsideguard_trouble_10", + "message": "Caos. Desordem.\n\nNão, eu prefiro submeter-me às leis de Feygard. Minha lealdade é forte.", + "replies": [ + { + "text": "Parece bom para mim. As leis são feitas para serem seguidas.", + "nextPhraseID": "ff_outsideguard_trouble_8" + }, + { + "text": "Eu não concordo. Devemos seguir nosso coração, mesmo que isso vá contra as regras.", + "nextPhraseID": "ff_outsideguard_trouble_12" + } + ] + }, + { + "id": "ff_outsideguard_trouble_20", + "message": "Existe algo que você gostaria?", + "replies": [ + { + "text": "Eu estava me perguntando sobre o porquê você ficar de guarda aqui.", + "nextPhraseID": "ff_outsideguard_trouble_21" + } + ] + }, + { + "id": "ff_outsideguard_trouble_12", + "message": "Isso me incomoda. Poderíamos nos ver novamente no futuro. Mas, então, posso não ser capaz de ter esse tipo de discussão civilizada." + }, + { + "id": "ff_outsideguard_trouble_21", + "message": "Certo, nós já conversamos sobre isso. Como eu disse, eu prefiro estar dentro do fogo.", + "replies": [ + { + "text": "Eu poderia vigiar para você, se você quiser ir para dentro.", + "nextPhraseID": "ff_outsideguard_trouble_23" + }, + { + "text": "Má sorte. Eu acho que deixaram você aqui por fora, enquanto o seu capitão e amigos estão confortavelmente lá dentro.", + "nextPhraseID": "ff_outsideguard_trouble_22" + } + ] + }, + { + "id": "ff_outsideguard_trouble_22", + "message": "Sim, isso é apenas a minha sorte." + }, + { + "id": "ff_outsideguard_trouble_23", + "message": "Sério? Sim, isso seria ótimo. Então eu posso pelo menos ter algo para comer e um pouco de calor do fogo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ff_outsideguard_trouble_24" + } + ] + }, + { + "id": "ff_outsideguard_trouble_24", + "message": "Vou entrar em um minuto. Você ficará de vigilância, enquanto eu estiver lá dentro?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "jolnor", + "value": 20 + } + ], + "replies": [ + { + "text": "Claro, vou fazer isso.", + "nextPhraseID": "ff_outsideguard_trouble_25" + }, + { + "text": "[Lie]Claro, vou fazer isso.", + "nextPhraseID": "ff_outsideguard_trouble_25" + } + ] + }, + { + "id": "ff_outsideguard_trouble_25", + "message": "Muito obrigado meu amigo." + }, + { + "id": "ff_outsideguard_shadow_1", + "message": "Sombra? Como curioso que você mencionar isso. Explique-se!", + "replies": [ + { + "text": "Eu não quis dizer isso realmente, Não importa o que eu disse.", + "nextPhraseID": "ff_outsideguard_shadow_2" + }, + { + "text": "A Sombra cuida de nós quando dormimos.", + "nextPhraseID": "ff_outsideguard_shadow_3" + } + ] + }, + { + "id": "ff_outsideguard_shadow_2", + "message": "Bom. Agora vá embora antes que eu tenha que lidar com você." + }, + { + "id": "ff_outsideguard_shadow_3", + "message": "O quê? Você é um desses arruaceiros enviado para sabotar a nossa missão?", + "replies": [ + { + "text": "A Sombra nos protege.", + "nextPhraseID": "ff_outsideguard_shadow_4" + }, + { + "text": "Certo. É melhor eu não começar uma briga com a guarda real.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "ff_outsideguard_shadow_4", + "message": "É isso. É melhor lutar ou fugir agora garoto.", + "replies": [ + { + "text": "Bom. Eu estava esperando uma luta!", + "nextPhraseID": "ff_outsideguard_shadow_5" + }, + { + "text": "Pela sombra!", + "nextPhraseID": "ff_outsideguard_shadow_5" + }, + { + "text": "Não importa. Eu só estava brincando com você.", + "nextPhraseID": "ff_outsideguard_shadow_2" + } + ] + }, + { + "id": "ff_outsideguard_shadow_5", + "rewards": [ + { + "rewardType": 0, + "rewardID": "jolnor", + "value": 21 + } + ], + "replies": [ + { + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_gandoren.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_gandoren.json new file mode 100644 index 000000000..47f5f2392 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_gandoren.json @@ -0,0 +1,577 @@ +[ + { + "id": "gandoren", + "replies": [ + { + "nextPhraseID": "gandoren_completed_1", + "requires": { + "progress": "feygard_shipment:81" + } + }, + { + "nextPhraseID": "gandoren_completed_1", + "requires": { + "progress": "feygard_shipment:80" + } + }, + { + "nextPhraseID": "gandoren_deliver_1", + "requires": { + "progress": "feygard_shipment:25" + } + }, + { + "nextPhraseID": "gandoren_20", + "requires": { + "progress": "feygard_shipment:22" + } + }, + { + "nextPhraseID": "gandoren_20", + "requires": { + "progress": "feygard_shipment:21" + } + }, + { + "nextPhraseID": "gandoren_wantshelp_1", + "requires": { + "progress": "feygard_shipment:20" + } + }, + { + "nextPhraseID": "gandoren_noguards_1", + "requires": { + "progress": "feygard_shipment:10" + } + }, + { + "nextPhraseID": "gandoren_1" + } + ] + }, + { + "id": "gandoren_1", + "message": "Olá. Bem-vindo à guarita de Crossroads. Como posso ajudá-lo?", + "replies": [ + { + "text": "Você guardas parecem ter um monte de equipamento aqui, qualquer coisa para trocar?", + "nextPhraseID": "gandoren_tr_1" + }, + { + "text": "O que você faz aqui?", + "nextPhraseID": "gandoren_2" + } + ] + }, + { + "id": "gandoren_tr_1", + "message": "Sinto muito, só negociamos com aliados de Feygard." + }, + { + "id": "gandoren_2", + "message": "Esta guarita é um porto seguro para os comerciantes que viajam na estrada Duleian. Nós mantemos a lei e a ordem por aqui, por Feygard.", + "replies": [ + { + "text": "Qualquer acontecimento recente acontecendo?", + "nextPhraseID": "gandoren_3" + }, + { + "text": "A estrada Duleian?", + "nextPhraseID": "gandoren_dr_1" + } + ] + }, + { + "id": "gandoren_dr_1", + "message": "Notou essa estrada larga do lado de fora? Essa é a estrada Duleian. Vai direto da gloriosa cidade de Feygard, a noroeste, até Nor City, ao sudeste.", + "replies": [ + { + "text": "Qualquer acontecimento recente acontecendo?", + "nextPhraseID": "gandoren_3" + } + ] + }, + { + "id": "gandoren_3", + "message": "Ah, claro. Recentemente, tivemos de concentrar a nossa atenção para os problemas de Loneford.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_4" + } + ] + }, + { + "id": "gandoren_4", + "message": "Essa situação obrigou-nos a estar mais alerta do que o habitual, e nós tivemos que enviar alguns guardas até lá para ajudá-los.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_5" + } + ] + }, + { + "id": "gandoren_5", + "message": "Isto também significa que não podemos concentrar tanto em nossas tarefas habituais como normalmente fazemos, mas precisamos de ajuda com a realização de tarefas básicas.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "feygard_shipment", + "value": 10 + } + ], + "replies": [ + { + "text": "A quais problemas de Loneford você está se referindo?", + "nextPhraseID": "cr_loneford_st_1" + }, + { + "text": "Há algo que eu possa fazer para ajudar?", + "nextPhraseID": "gandoren_6" + } + ] + }, + { + "id": "gandoren_noguards_1", + "message": "Olá novamente. Bem-vindo à guarita Crossroads. Como posso ajudá-lo?", + "replies": [ + { + "text": "Você pode me dizer novamente o que você me disse antes sobre os acontecimentos recentes?", + "nextPhraseID": "gandoren_3" + } + ] + }, + { + "id": "gandoren_6", + "message": "Bem, nós geralmente não empregamos qualquer civil. Nossas tarefas são importantes para Feygard - e, por extensão, importante para as pessoas. Nossas tarefas geralmente não são adequados para pessoas comuns como você.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_7" + } + ] + }, + { + "id": "gandoren_7", + "message": "Mas eu acho que a recente situação realmente não nos deixa escolha. Precisamos manter os guardas em Loneford, e também precisamos de entregar esta remessa. No momento, não podemos fazer as duas coisas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_8" + } + ] + }, + { + "id": "gandoren_8", + "message": "Sabe de uma coisa, você pode ser capaz de ajudar-nos, afinal, se você estiver disposto a trabalhar.", + "replies": [ + { + "text": "Qual é a tarefa?", + "nextPhraseID": "gandoren_11" + }, + { + "text": "Qualquer coisa para a glória de Feygard.", + "nextPhraseID": "gandoren_9" + }, + { + "text": "Se o salário é suficiente, eu acho que posso ajudar.", + "nextPhraseID": "gandoren_10" + }, + { + "text": "melhor eu não me envolver em nos negócios de Feygard.", + "nextPhraseID": "gandoren_rej_1" + } + ] + }, + { + "id": "gandoren_9", + "message": "Fico feliz em ouvir isso.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_11" + } + ] + }, + { + "id": "gandoren_10", + "message": "Pagar? Ah, eu acho que nós poderíamos pagar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_11" + } + ] + }, + { + "id": "gandoren_11", + "message": "Eu preciso de você para transportar algum equipamento para outro de nossos postos avançados mais ao sul na estrada Duleian.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_12" + } + ] + }, + { + "id": "gandoren_12", + "message": "Esses postos avançados mais para o sul estão em maior necessidade de equipamentos do que nós, eles estão mais perto da miserável Nor City e suas cercanias.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_13" + } + ] + }, + { + "id": "gandoren_13", + "message": "Entregue essa remessa de 10 espadas de ferro para o capitão da guarda hospedado em uma taverna chamada 'Foaming Flask', perto de uma aldeia chamada Vilegard.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "feygard_shipment", + "value": 20 + } + ], + "replies": [ + { + "text": "Não tem problema. Qualquer coisa para a glória de Feygard.", + "nextPhraseID": "gandoren_17" + }, + { + "text": "Você não mencionou quanto receberei por essa tarefa.", + "nextPhraseID": "gandoren_18" + }, + { + "text": "Por que eu deveria ajudar vocês? Eu só ouvi coisas ruins sobre Feygard.", + "nextPhraseID": "gandoren_14" + }, + { + "text": "Melhor eu não me envolver nos negócios de Feygard.", + "nextPhraseID": "gandoren_rej_1" + } + ] + }, + { + "id": "gandoren_wantshelp_1", + "message": "Olá novamente. Bem-vindo à guarita Crossroads. Como posso ajudá-lo?", + "replies": [ + { + "text": "O que foi que você me disse antes sobre um carregamento?", + "nextPhraseID": "gandoren_6" + } + ] + }, + { + "id": "gandoren_rej_1", + "message": "Sinto muito por ouvir isso. Bom dia para você." + }, + { + "id": "gandoren_14", + "message": "Coisas ruins? Quem foi que lhe disse isso? Exorto-o a formar a sua própria opinião sobre Feygard indo até lá voce mesmo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_15" + } + ] + }, + { + "id": "gandoren_15", + "message": "Pessoalmente, eu não consigo pensar em um melhor lugar para estar do que em Feygard. A ordem é mantida e as pessoas são amigáveis.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_16" + } + ] + }, + { + "id": "gandoren_16", + "message": "Quanto às razões para que você nos ajude, eu só posso dizer que Feygard ficaria grato por seus serviços se você nos ajudar.", + "replies": [ + { + "text": "De qualquer forma, tudo bem. Vou levar suas espadas estúpidas. Eu ainda espero que haja alguma recompensa por isso.", + "nextPhraseID": "gandoren_19" + }, + { + "text": "Parece bom para mim. Qualquer coisa para a glória de Feygard.", + "nextPhraseID": "gandoren_17" + }, + { + "text": "Melhor eu não me envolver nos negócios de Feygard.", + "nextPhraseID": "gandoren_rej_1" + } + ] + }, + { + "id": "gandoren_17", + "message": "Excelente.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "feygard_shipment", + "value": 21 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_20" + } + ] + }, + { + "id": "gandoren_18", + "message": "Eu não posso prometer-lhe qualquer quantia em uma recompensa.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_16" + } + ] + }, + { + "id": "gandoren_19", + "message": "Ok então.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "feygard_shipment", + "value": 22 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_20" + } + ] + }, + { + "id": "gandoren_20", + "message": "Aqui está a carga que eu quero que você transporte.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "feygard_shipment", + "value": 25 + }, + { + "rewardType": 1, + "rewardID": "feygard_shipment" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_21" + } + ] + }, + { + "id": "gandoren_21", + "message": "Como eu disse, você deve entregar as 10 espadas de ferro para o capitão da guarda hospedado em uma taverna chamada 'Foaming Flask', perto de uma aldeia chamada Vilegard.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_22" + } + ] + }, + { + "id": "gandoren_22", + "message": "Volte para mim quanto completar a tarefa.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_23" + } + ] + }, + { + "id": "gandoren_23", + "message": "Eu sinto que eu devo avisá-lo sobre outra coisa. Ver aquela pessoa lá no canto? Ailshara. Ela parece muito interessada nas nossas relações por algum motivo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_24" + } + ] + }, + { + "id": "gandoren_24", + "message": "Peço-lhe para ficar longe dela a todo custo. Faça o que fizer, não fale com ela sobre sua missão com o envio.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "feygard_shipment", + "value": 26 + } + ] + }, + { + "id": "gandoren_deliver_1", + "message": "Você voltou. Boas notícias sobre a expedição, espero?", + "replies": [ + { + "text": "Você guardas parecem ter um monte de equipamento aqui, algo para trocar?", + "nextPhraseID": "gandoren_tr_2" + }, + { + "text": "Eu ainda estou trabalhando no transporte da carga.", + "nextPhraseID": "gandoren_22" + }, + { + "text": "Conte-me novamente o que devo fazer.", + "nextPhraseID": "gandoren_21" + }, + { + "text": "Sim. Tenho entreguei tudo conforme ordenado.", + "nextPhraseID": "gandoren_deliver_y_1", + "requires": { + "progress": "feygard_shipment:50" + } + }, + { + "text": "Sim. Tenho dado.", + "nextPhraseID": "gandoren_deliver_n_1", + "requires": { + "progress": "feygard_shipment:60" + } + } + ] + }, + { + "id": "gandoren_tr_2", + "message": "Sinto muito, só negociamos com aliados de Feygard. Ajude-me com a tarefa que lhe dei e que podemos reconsiderar." + }, + { + "id": "gandoren_deliver_y_1", + "message": "Explêndido! Feygard está em dívida com você.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "feygard_shipment", + "value": 80 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_delivered_1" + } + ] + }, + { + "id": "gandoren_deliver_n_1", + "message": "Explêndido! Feygard está em dívida com você.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "feygard_shipment", + "value": 81 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_delivered_1" + } + ] + }, + { + "id": "gandoren_delivered_1", + "message": "Eu espero que você tenha conseguido ficar longe dos selvagens de Nor City tanto quanto possível, durante a jornada.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_delivered_2" + } + ] + }, + { + "id": "gandoren_delivered_2", + "message": "Pelo que ouvi, as coisas estão duras ao sul.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_delivered_3" + } + ] + }, + { + "id": "gandoren_delivered_3", + "message": "Quanto a você, você tem nossa gratidão, tanto o meu quanto do resto da patrulha Feygard por nos ajudar com isso.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_completed_2" + } + ] + }, + { + "id": "gandoren_completed_1", + "message": "Você voltou. Obrigado por nos ajudar com a remessa anterior.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_completed_2" + } + ] + }, + { + "id": "gandoren_completed_2", + "message": "Existe algo que eu possa fazer por você?", + "replies": [ + { + "text": "Você tem alguma coisa para negociar?", + "nextPhraseID": "gandoren_tr_3" + }, + { + "text": "Não, obrigado. Tchau.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "gandoren_tr_3", + "replies": [ + { + "nextPhraseID": "gandoren_tr_4", + "requires": { + "progress": "rogorn:60" + } + }, + { + "nextPhraseID": "gandoren_tr_6" + } + ] + }, + { + "id": "gandoren_tr_4", + "message": "Absolutamente, como agradecimento pela ajuda que forneceu anteriormente para tanto Minarra quanto eu, concordamos em negociar com você.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_tr_5" + } + ] + }, + { + "id": "gandoren_tr_5", + "message": "Suba na torre de vigia lá e fale com Minarra sobre o equipamento. Ele controla nossos suprimentos.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nondisplay", + "value": 18 + } + ] + }, + { + "id": "gandoren_tr_6", + "message": "Ouvi dizer que Minarra na torre de vigia ali quer ajuda com alguma coisa. Por que você não vá até ele perguntar sobre isso, e nós podemos ser capazes de trabalhar em algo depois disso." + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_gylew.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_gylew.json new file mode 100644 index 000000000..86825be93 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_gylew.json @@ -0,0 +1,10 @@ +[ + { + "id": "gylew", + "message": "Cai fora, garoto. Você não deveria estar aqui." + }, + { + "id": "gylew_henchman", + "message": "Ei, eu estou tentando admirar a vista aqui. Saia do meu caminho." + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_hadracor.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_hadracor.json new file mode 100644 index 000000000..2f2166fcf --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_hadracor.json @@ -0,0 +1,424 @@ +[ + { + "id": "woodcutter_0", + "message": "Vespas estúpidas .." + }, + { + "id": "woodcutter_2", + "message": "Fique longe da estrada para o oeste, pois conduz a Carn Tower. Você certamente não deve quer ir para lá.", + "replies": [ + { + "text": "N", + "nextPhraseID": "woodcutter_1" + } + ] + }, + { + "id": "woodcutter_1", + "message": "Ao viajar, mantenha-se nas estradas. Saia do curso e você pode encontrar-se em perigo." + }, + { + "id": "woodcutter_3", + "message": "Talvez não devêssemos ter cortado todas as árvores ali. Essas vespas parecem realmente chateadas." + }, + { + "id": "woodcutter_4", + "message": "Eu ainda posso sentir a picada dessas vespas em minhas pernas. Que bom que já terminamos de cortar todas as árvores." + }, + { + "id": "woodcutter_5", + "message": "Olá, bem-vindo ao nosso acampamento. Você deve falar com Hadracor ali." + }, + { + "id": "hadracor", + "replies": [ + { + "nextPhraseID": "hadracor_complete_1", + "requires": { + "progress": "hadracor:30" + } + }, + { + "nextPhraseID": "hadracor_gaveitems_1", + "requires": { + "progress": "hadracor:21" + } + }, + { + "nextPhraseID": "hadracor_gaveitems_1", + "requires": { + "progress": "hadracor:20" + } + }, + { + "nextPhraseID": "hadracor_wantsitems_1", + "requires": { + "progress": "hadracor:10" + } + }, + { + "nextPhraseID": "hadracor_1" + } + ] + }, + { + "id": "hadracor_1", + "message": "Olá, eu sou Hadracor.", + "replies": [ + { + "text": "Que lugar é esse?", + "nextPhraseID": "hadracor_story_1" + }, + { + "text": "Você viu meu irmão Andor por aqui? Parece um pouco como eu.", + "nextPhraseID": "hadracor_andor_1" + } + ] + }, + { + "id": "hadracor_andor_1", + "message": "Parece com você? Não, eu teria lembrado.", + "replies": [ + { + "text": "Ok, adeus.", + "nextPhraseID": "X" + }, + { + "text": "Que lugar é esse?", + "nextPhraseID": "hadracor_story_1" + } + ] + }, + { + "id": "hadracor_story_1", + "message": "Este é o acampamento qu nós, lenhadores montamos, enquanto trabalhamos cortando árvores aqui nesses dias.", + "replies": [ + { + "text": "Em que vocês trabalharam?", + "nextPhraseID": "hadracor_story_2" + }, + { + "text": "Notei um monte de tocos de árvores por aqui", + "nextPhraseID": "hadracor_story_2" + } + ] + }, + { + "id": "hadracor_story_2", + "message": "Nossas ordens eram para cortar todas as árvores sul da ponte Feygard e norte da estrada daqui para Carn Tower.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hadracor_story_3" + } + ] + }, + { + "id": "hadracor_story_3", + "message": "Eu acho que os nobres de Feygard tem alguns planos para estas terras.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hadracor_story_4" + } + ] + }, + { + "id": "hadracor_story_4", + "message": "Nós, nós apenas cortamos aquelas árvores. Sem perguntas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hadracor_story_5" + } + ] + }, + { + "id": "hadracor_story_5", + "message": "No entanto, desta vez, encontramos alguns problemas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hadracor_story_6" + } + ] + }, + { + "id": "hadracor_story_6", + "message": "Veja você, havia essas vespas realmente desagradáveis na floresta que cortamos.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hadracor_story_7" + } + ] + }, + { + "id": "hadracor_story_7", + "message": "Nada que já tivéssemos visto antes, e, eu vou te dizer, temos visto um monte de animais selvagens em nossos dias.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hadracor_story_8" + } + ] + }, + { + "id": "hadracor_story_8", + "message": "Elas quase obtiveram successo conosco, e nós estávamos quase prontos para abandonar tudo. Mas trabalho é trabalho e fomos pagos por Feygard para este trabalho.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hadracor_story_9" + } + ] + }, + { + "id": "hadracor_story_9", + "message": "Então nós fomos em frente e terminamos de cortar todas as árvores, tentando evitar as vespas, tanto quanto pudéssemos.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hadracor_story_10" + } + ] + }, + { + "id": "hadracor_story_10", + "message": "No entanto, eu aposto que, o que quer que os nobres de Feygard pretendam nestas terras, eles certamente não incluem em seus planos que essas vespas desagradáveis ​​ainda estejam por perto.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hadracor_story_11" + } + ] + }, + { + "id": "hadracor_story_11", + "message": "Veja este risco aqui? E este abcesso? Sim, essas vespas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hadracor_story_11_1" + } + ] + }, + { + "id": "hadracor_story_11_1", + "replies": [ + { + "nextPhraseID": "hadracor_accept_1_1", + "requires": { + "progress": "hadracor:10" + } + }, + { + "nextPhraseID": "hadracor_story_12" + } + ] + }, + { + "id": "hadracor_story_12", + "message": "Eu gostaria de vingança contra as vespas. Nós, infelizmente, não somos combatentes bons o suficiente para pegar essas vespas, eles são realmente muito rápidas para nós.", + "replies": [ + { + "text": "Dura sorte, vocês parecem mesmo um bando de covardes.", + "nextPhraseID": "hadracor_decline_1" + }, + { + "text": "Eu poderia tentar eliminar essas vespas para você, se quiser.", + "nextPhraseID": "hadracor_accept_1" + }, + { + "text": "Apenas um punhado de vespas? Isso não é problema para mim. Eu vou matá-los para você.", + "nextPhraseID": "hadracor_accept_1" + } + ] + }, + { + "id": "hadracor_decline_1", + "message": "Eu vou fingir que não ouvi isso." + }, + { + "id": "hadracor_accept_1", + "message": "Você o faria? Claro, você tem uma chance.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hadracor_accept_1_1" + } + ] + }, + { + "id": "hadracor_accept_1_1", + "message": "Notei que algumas das vespas são maiores do que as outras, e as outras vespas tendem a seguir os maiores nas vizinhanças.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hadracor_accept_2" + } + ] + }, + { + "id": "hadracor_accept_2", + "message": "Se você pudesse matar pelo menos cinco daquelas gigantes e me trazer de volta suas asas como prova, eu ficaria muito grato.", + "replies": [ + { + "text": "Claro, vou estar de volta com essas asas de vespas gigantes para você.", + "nextPhraseID": "hadracor_accept_3" + }, + { + "text": "Não tem problema.", + "nextPhraseID": "hadracor_accept_3" + }, + { + "text": "Pensando bem, é melhor eu ficar de fora dessa.", + "nextPhraseID": "hadracor_decline_2" + } + ] + }, + { + "id": "hadracor_decline_2", + "message": "Tudo bem, eu acho que nós podemos encontrar alguém para ajudar-nos a obter vingança sobre elas." + }, + { + "id": "hadracor_accept_3", + "message": "Bom, apresse-se em voltar assim que estiver terminado.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "hadracor", + "value": 10 + } + ] + }, + { + "id": "hadracor_wantsitems_1", + "message": "Olá novamente. Você matou aquelas vespas para nós?", + "replies": [ + { + "text": "Você poderia contar-me sua história novamente?", + "nextPhraseID": "hadracor_story_2" + }, + { + "text": "Conte-me novamente o que devo fazer.", + "nextPhraseID": "hadracor_story_6" + }, + { + "text": "Ainda não, mas estou trabalhando nisso.", + "nextPhraseID": "hadracor_accept_3" + }, + { + "text": "Sim, eu matei seis delas.", + "nextPhraseID": "hadracor_wantsitems_3", + "requires": { + "item": { + "itemID": "hadracor_waspwing", + "quantity": 6, + "requireType": 0 + } + } + }, + { + "text": "Sim, eu matei cinco delas.", + "nextPhraseID": "hadracor_wantsitems_2", + "requires": { + "item": { + "itemID": "hadracor_waspwing", + "quantity": 5, + "requireType": 0 + } + } + } + ] + }, + { + "id": "hadracor_wantsitems_2", + "message": "Uau, você realmente matou essas coisas?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "hadracor", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "hadracor_gaveitems_1" + } + ] + }, + { + "id": "hadracor_wantsitems_3", + "message": "Uau, você realmente matou seis dessas coisas? Eu pensei que eram apenas cinco, então eu acho que devo ser ainda mais agradecido. Aqui, tome estas luvas como agradecimento.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "hadracor", + "value": 21 + }, + { + "rewardType": 1, + "rewardID": "hadracor_reward" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "hadracor_gaveitems_1" + } + ] + }, + { + "id": "hadracor_gaveitems_1", + "message": "Muito bem meu amigo. Obrigado por se vingar sobre essas coisas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hadracor_complete_2" + } + ] + }, + { + "id": "hadracor_complete_1", + "message": "Olá novamente. Obrigado por sua ajuda com as vespas anteriores.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hadracor_complete_2" + } + ] + }, + { + "id": "hadracor_complete_2", + "message": "Como um símbolo de nossa gratidão, estamos dispostos a negociar alguns de nossos equipamentos com você, se você quiser.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "hadracor", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "hadracor_complete_3" + } + ] + }, + { + "id": "hadracor_complete_3", + "message": "Não é muito, mas temos alguns machados realmente afiados que você pode estar interessado.", + "replies": [ + { + "text": "Não, obrigado. Tchau.", + "nextPhraseID": "X" + }, + { + "text": "Ok, deixe-me ver o que você tem.", + "nextPhraseID": "S" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_hjaldar.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_hjaldar.json new file mode 100644 index 000000000..06c4d7f2b --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_hjaldar.json @@ -0,0 +1,426 @@ +[ + { + "id": "hjaldar", + "replies": [ + { + "nextPhraseID": "hjaldar_pots_1", + "requires": { + "progress": "sisterfight:61" + } + }, + { + "nextPhraseID": "hjaldar_r3", + "requires": { + "progress": "sisterfight:60" + } + }, + { + "nextPhraseID": "hjaldar_r1", + "requires": { + "progress": "sisterfight:45" + } + }, + { + "nextPhraseID": "hjaldar_7r", + "requires": { + "progress": "sisterfight:40" + } + }, + { + "nextPhraseID": "hjaldar_1" + } + ] + }, + { + "id": "hjaldar_1", + "message": "Olá. Sou Hjaldar.", + "replies": [ + { + "text": "O que você faz aqui?", + "nextPhraseID": "hjaldar_2" + } + ] + }, + { + "id": "hjaldar_2", + "message": "Eu costumava ser um fabricante de porções. Na verdade, eu costumava ser o único fabricante de poções aqui em Remgard.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hjaldar_3" + } + ] + }, + { + "id": "hjaldar_3", + "message": "Isso foi um bom negócio. As pessoas até mesmo viajavam até aqui de outras cidades pelas montanhas.", + "replies": [ + { + "text": "O que fez você parar?", + "nextPhraseID": "hjaldar_4" + } + ] + }, + { + "id": "hjaldar_4", + "message": "Bem, duas coisas. Em primeiro lugar, eu estou ficando mais velho e não tenho mais o desejo de trabalhar dias inteiros, fazendo poções para os outros.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hjaldar_5" + } + ] + }, + { + "id": "hjaldar_5", + "message": "Em segundo lugar, eu fiquei sem a maioria dos ingredientes. Alguns deles são realmente difíceis de obter.", + "replies": [ + { + "text": "Pena. Foi bom falar com você, adeus.", + "nextPhraseID": "X" + }, + { + "text": "Eu estou procurando uma poção de precisão para as irmãs Elwille, você pode ajudar com isso?", + "nextPhraseID": "hjaldar_6", + "requires": { + "progress": "sisterfight:31" + } + } + ] + }, + { + "id": "hjaldar_6", + "message": "Oh, poções de precisão. Sim, aquelas eram populares. Infelizmente, não posso ajudá-lo com isso agora.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hjaldar_7" + } + ] + }, + { + "id": "hjaldar_7", + "message": "Meu fornecimento de extrato de medula de Lyson secou. Sem o qual, não posso fazer poções que sejam úteis para alguma coisa, realmente.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "sisterfight", + "value": 40 + } + ], + "replies": [ + { + "text": "Pena. Obrigado assim mesmo. Tchau.", + "nextPhraseID": "X" + }, + { + "text": "Existe algum lugar que eu possa obter algum, e trazê-lo para você?", + "nextPhraseID": "hjaldar_8" + } + ] + }, + { + "id": "hjaldar_7r", + "message": "Olá novamente. Desculpe por não ser capaz de ajudá-lo com as poções de precisão que você pediu.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hjaldar_7" + } + ] + }, + { + "id": "hjaldar_8", + "message": "Duvido. É realmente difícil de encontrar. Apenas os mais bem abastecidos fabricantes de poção têm.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hjaldar_9" + } + ] + }, + { + "id": "hjaldar_9", + "message": "Eu costumava abastecer meu estoque com meu velho amigo Mazeg. Eu não tenho nenhuma ideia de onde ele possa estar nestes dias, no entanto.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hjaldar_10" + } + ] + }, + { + "id": "hjaldar_10", + "message": "Eu acho que, se você puder encontrá-lo, ele poderá ser capaz de fornecer-lhe um pouco de extrato de medula de Lyson.", + "replies": [ + { + "text": "Alguma ideia de onde eu poderia encontrá-lo?", + "nextPhraseID": "hjaldar_12" + }, + { + "text": "Isso parece muito trabalhoso. Esqueça a poção.", + "nextPhraseID": "hjaldar_11" + } + ] + }, + { + "id": "hjaldar_11", + "message": "Ok então. Desculpe eu possa ajudá-lo. Tchau." + }, + { + "id": "hjaldar_12", + "message": "Não, eu não sei. A última vez que o vi, ele foi para o oeste. Pela aparência de sua mochila, parecia que ele estava se preparando para uma longa viagem rumo oeste.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hjaldar_13" + } + ] + }, + { + "id": "hjaldar_13", + "message": "Ele até tinha trajes para viajar através de climas mais frios - neve, gelo e esse tipo de coisa.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "sisterfight", + "value": 41 + } + ], + "replies": [ + { + "text": "Obrigado pela informação. Vou tentar encontrá-lo.", + "nextPhraseID": "hjaldar_14" + }, + { + "text": "Isso soa como muito trabalhoso.Esqueça a poção.", + "nextPhraseID": "hjaldar_11" + } + ] + }, + { + "id": "hjaldar_14", + "message": "Boa sorte em sua busca. Se você encontrá-lo, o que eu duvido que você consiga, por favor, diga 'olá' para ele de minha parte, e diga-lhe que estou bem.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "sisterfight", + "value": 45 + } + ] + }, + { + "id": "hjaldar_r1", + "message": "Olá novamente. Será que você conseguiu encontrar o meu velho amigo Mazeg?", + "replies": [ + { + "text": "Sim, eu trouxe um pouco de extrato de medula de Lyson.", + "nextPhraseID": "hjaldar_r2", + "requires": { + "item": { + "itemID": "lyson_marrow", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "O que foi que você estava dizendo sobre as poções de precisão?", + "nextPhraseID": "hjaldar_6" + }, + { + "text": "O que fez você parar de fazer poções?", + "nextPhraseID": "hjaldar_4" + }, + { + "text": "Alguma ideia de onde eu poderia encontrar Mazeg?", + "nextPhraseID": "hjaldar_12" + } + ] + }, + { + "id": "hjaldar_r2", + "message": "Oh uau. Sim, isso é, de fato, extrato de medula. Bom trabalho!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "sisterfight", + "value": 60 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "hjaldar_r4" + } + ] + }, + { + "id": "hjaldar_r3", + "message": "Obrigado por me trazer algum extrato de medula. Bom trabalho!", + "replies": [ + { + "text": "N", + "nextPhraseID": "hjaldar_r4" + } + ] + }, + { + "id": "hjaldar_r4", + "message": "Diga-me, você encontrou Mazeg ou você conseguiu isso em algum outro lugar?", + "replies": [ + { + "text": "Eu visitei Mazeg no povoado de Montanha das Águas Negras.", + "nextPhraseID": "hjaldar_r5" + }, + { + "text": "Você me fez correr todo o caminho para a Montanha das Águas Negras, espero que as poções valam a pena!", + "nextPhraseID": "hjaldar_r5" + } + ] + }, + { + "id": "hjaldar_r5", + "message": "Montanha das Águas Negras? Eu receio que eu não saiba onde é. Não importa, eu espero que tudo esteja bem com o meu velho amigo.", + "replies": [ + { + "text": "Ele me disse para enviar seus cumprimentos mais calorosos.", + "nextPhraseID": "hjaldar_r6" + }, + { + "text": "Ele parecia um homem velho lamentável que já viveu o melhor de seus dias.", + "nextPhraseID": "hjaldar_r7" + } + ] + }, + { + "id": "hjaldar_r6", + "message": "Bom. Bom. Fico feliz em saber que ele está bem.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hjaldar_r8" + } + ] + }, + { + "id": "hjaldar_r7", + "message": "Admito que o tempo não ficou ao seu lado.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hjaldar_r8" + } + ] + }, + { + "id": "hjaldar_r8", + "message": "De qualquer forma, vamos fazer essa poção que você pediu anteriormente. Eu já preparei os outros ingredientes para outra poção de antemão.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hjaldar_r9" + } + ] + }, + { + "id": "hjaldar_r9", + "message": "Agora, vamos ver. Alguns destes .. *Hjaldar puxa alguns morangos e coloca-os em sua mistura*", + "replies": [ + { + "text": "N", + "nextPhraseID": "hjaldar_r10" + } + ] + }, + { + "id": "hjaldar_r10", + "message": "Adiciona um pouco isso em alguns frascos limpos ..", + "replies": [ + { + "text": "N", + "nextPhraseID": "hjaldar_r11" + } + ] + }, + { + "id": "hjaldar_r11", + "message": "Apenas uma pitada destes em um desses frascos ..", + "replies": [ + { + "text": "N", + "nextPhraseID": "hjaldar_r12" + } + ] + }, + { + "id": "hjaldar_r12", + "message": "Finalmente, o extrato de medula Lyson ..", + "replies": [ + { + "text": "N", + "nextPhraseID": "hjaldar_r13" + } + ] + }, + { + "id": "hjaldar_r13", + "message": "Isso. Agora só precisa lhes dar uma boa misturada.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hjaldar_r14" + } + ] + }, + { + "id": "hjaldar_r14", + "message": "*Hjaldar agita vigorosamente os frascos, um em cada uma das suas mãos*", + "replies": [ + { + "text": "N", + "nextPhraseID": "hjaldar_r15" + } + ] + }, + { + "id": "hjaldar_r15", + "message": "Ah, isso deve servir. Aqui está. Uma poção de precisão e uma poção de dano. Espero que seja útil.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "sisterfight", + "value": 61 + }, + { + "rewardType": 1, + "rewardID": "hjaldar_pots", + "value": 0 + } + ], + "replies": [ + { + "text": "Que seja. Espero que todo esse trabalho valha a pena!", + "nextPhraseID": "X" + }, + { + "text": "Obrigado.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "hjaldar_pots_1", + "message": "Obrigado por entrar em contato com Mazeg para mim anteriormente. Com este extrato de medula de Lyson que você me trouxe, eu posso agora fazer outras poções para você, se você precisar.", + "replies": [ + { + "text": "Deixe-me ver que poções que você tem.", + "nextPhraseID": "S" + }, + { + "text": "Você é bem-vindo, adeus.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_ingus.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_ingus.json new file mode 100644 index 000000000..3d6224762 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_ingus.json @@ -0,0 +1,257 @@ +[ + { + "id": "ingus", + "replies": [ + { + "nextPhraseID": "ingus_r1", + "requires": { + "progress": "sisterfight:10" + } + }, + { + "nextPhraseID": "ingus_1" + } + ] + }, + { + "id": "ingus_1", + "message": "Olá. Eu acho que eu nunca vi você antes aqui em Remgard.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ingus_speak1" + } + ] + }, + { + "id": "ingus_r1", + "message": "Olá novamente. Espero que você aprecie a sua estadia em Remgard.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ingus_speak1" + } + ] + }, + { + "id": "ingus_speak1", + "message": "Como posso ajudá-lo?", + "replies": [ + { + "text": "O que há para fazer por aqui?", + "nextPhraseID": "ingus_2" + }, + { + "text": "Existe uma loja na cidade?", + "nextPhraseID": "ingus_s1" + }, + { + "text": "O que está acontecendo aqui na cidade?", + "nextPhraseID": "ingus_2" + } + ] + }, + { + "id": "ingus_2", + "message": "Oh, não tem muita coisa acontecendo por aqui. Nós tentamos manter a cidade tão pacífica quanto possível.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ingus_3" + } + ] + }, + { + "id": "ingus_3", + "message": "Nós não temos muitos visitantes aqui nas montanhas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ingus_4s" + } + ] + }, + { + "id": "ingus_4s", + "replies": [ + { + "nextPhraseID": "ingus_4b", + "requires": { + "progress": "remgard2:45" + } + }, + { + "nextPhraseID": "ingus_4a" + } + ] + }, + { + "id": "ingus_4a", + "message": "No entanto, ultimamente tem havido alguns problemas aqui na cidade.", + "replies": [ + { + "text": "Qual o problema?", + "nextPhraseID": "ingus_t1" + }, + { + "text": "Não importa, há uma loja na cidade?", + "nextPhraseID": "ingus_s1" + } + ] + }, + { + "id": "ingus_4b", + "message": "Com sorte, teremos mais visitantes agora que você já nos ajudou a descobrir o que aconteceu com as pessoas que desapareceram.", + "replies": [ + { + "text": "Você é bem-vindo. Mais alguma coisa?", + "nextPhraseID": "ingus_t3" + }, + { + "text": "Existe uma loja na cidade?", + "nextPhraseID": "ingus_s1" + } + ] + }, + { + "id": "ingus_t1", + "message": "Ah, eu não sei muito sobre isso. Os guardas dizem ter visto sinais estranhos fora da cidade, e algumas pessoas desapareceram.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ingus_t2" + } + ] + }, + { + "id": "ingus_t2", + "message": "Eu tento me manter longe disso, no entanto. Soa como problema para mim.", + "replies": [ + { + "text": "Mais alguma coisa?", + "nextPhraseID": "ingus_t3" + }, + { + "text": "Obrigado, adeus.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "ingus_t3", + "message": "Bem, como sempre, as irmãs Elwille estão brigando.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ingus_t4s" + } + ] + }, + { + "id": "ingus_t4s", + "replies": [ + { + "nextPhraseID": "ingus_q1", + "requires": { + "progress": "sisterfight:71" + } + }, + { + "nextPhraseID": "ingus_t4" + } + ] + }, + { + "id": "ingus_t4", + "message": "Ontem à noite, elas mantiveram a cidade inteira acordada, da maneira como elas estavam gritando uma com a outra.", + "replies": [ + { + "text": "Por quê elas estão brigando?", + "nextPhraseID": "ingus_t5" + } + ] + }, + { + "id": "ingus_t5", + "message": "Ah... nada... tudo. Eu não sei. Ninguém dá muito valor aos argumentos delas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ingus_t6" + } + ] + }, + { + "id": "ingus_t6", + "message": "Eles vivem em uma das cabanas da margem sul. *Ingus aponta para o sul*", + "rewards": [ + { + "rewardType": 0, + "rewardID": "sisterfight", + "value": 10 + } + ], + "replies": [ + { + "text": "Obrigado, eu poderia ir visitá-las. Tchau.", + "nextPhraseID": "X" + }, + { + "text": "Obrigado. Tchau.", + "nextPhraseID": "X" + }, + { + "text": "Obrigado. Eu queria perguntar a você, há uma loja na cidade?", + "nextPhraseID": "ingus_s1" + } + ] + }, + { + "id": "ingus_s1", + "message": "Loja? Ah, sim, claro. Há as lojas de Rothses e de Arnal ali. * Ingus aponta para as duas casas próximas ao oeste *", + "replies": [ + { + "text": "N", + "nextPhraseID": "ingus_s2" + } + ] + }, + { + "id": "ingus_s2", + "message": "Além disso, se você tem algum dinheiro, você sempre pode gastá-lo na taberna da cidade.", + "replies": [ + { + "text": "Obrigado. O que está acontecendo na cidade?", + "nextPhraseID": "ingus_2" + }, + { + "text": "Obrigado, adeus.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "ingus_q1", + "message": "Infelizmente, por algum motivo, as pessoas que vivem em sua vizinhança foram relatar que situação entre as duas tornou-se recentemente mais..., digamos..., 'notável'.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ingus_q2" + } + ] + }, + { + "id": "ingus_q2", + "message": "Eu tenho medo de que, se elas não resolverem suas diferenças em breve por conta própria, que a prefeitura terá que agir e resolver o assunto junto a elas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ingus_q3" + } + ] + }, + { + "id": "ingus_q3", + "message": "Não seria a primeira vez que o conselho da cidade teve de intervir em assuntos privados que ficaram fora de controle." + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_jan.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_jan.json new file mode 100644 index 000000000..30fa47cf5 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_jan.json @@ -0,0 +1,350 @@ +[ + { + "id": "jan_start_select", + "replies": [ + { + "nextPhraseID": "jan_complete2", + "requires": { + "progress": "jan:100" + } + }, + { + "nextPhraseID": "jan_return", + "requires": { + "progress": "jan:10" + } + }, + { + "nextPhraseID": "jan_default" + } + ] + }, + { + "id": "jan_default", + "message": "Olá garoto. Por favor, deixe-me em meu tormento.", + "replies": [ + { + "text": "Qual é o problema?", + "nextPhraseID": "jan_default2" + }, + { + "text": "Você gostaria de falar sobre isso?", + "nextPhraseID": "jan_default2" + }, + { + "text": "Ok, tchau.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_default2", + "message": "Ah, é muito triste. Eu realmente não quero falar sobre isso.", + "replies": [ + { + "text": "Por favor, faça!", + "nextPhraseID": "jan_default3" + }, + { + "text": "Ok, tchau!", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_default3", + "message": "Bem, eu acho que posso lhe dizer. Você parece ser um cara bem legal.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default4" + } + ] + }, + { + "id": "jan_default4", + "message": "Meu amigo Gandir, o amigo dele, Irogotu e eu estávamos aqui cavando este buraco. Tínhamos ouvido falar que havia um tesouro escondido por aqui.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default5" + } + ] + }, + { + "id": "jan_default5", + "message": "Começamos a cavar e, finalmente, encontramos um sistema de cavernas abaixo, onde descobrimos bichos e insetos.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default6" + } + ] + }, + { + "id": "jan_default6", + "message": "Ah esses bichos. Bastardos malditos. Por pouco não me mataram!\n\nGandir e eu dissemos a Irogotu que deveríamos parar a escavação e sair enquanto ainda podemos.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default7" + } + ] + }, + { + "id": "jan_default7", + "message": "Mas Irogotu queria continuar se aprofundando no calabouço. Ele e Gandir discutiram e começaram a brigar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default8" + } + ] + }, + { + "id": "jan_default8", + "message": "Foi quando aconteceu\n\n *soluço*\n\nOh, o que fizemos?", + "replies": [ + { + "text": "Por favor, continue.", + "nextPhraseID": "jan_default9" + } + ] + }, + { + "id": "jan_default9", + "message": "Irogotu matou Gandir com as próprias mãos. Era possível ver o fogo em seus olhos. Ele quase parecia se divertir.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default10" + } + ] + }, + { + "id": "jan_default10", + "message": "Fugi e não ousei voltar lá tanto por causa das criaturas quanto por conta de Irogotu.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default11" + } + ] + }, + { + "id": "jan_default11", + "message": "Oh que maldito Irogotu. Se eu pudesse chegar até ele. Eu mostrar-lhe umas coisas.", + "replies": [ + { + "text": "Você acha que eu poderia ajudar?", + "nextPhraseID": "jan_default11_1" + } + ] + }, + { + "id": "jan_default11_1", + "message": "Você acha que você poderia me ajudar?", + "replies": [ + { + "text": "Claro, pode haver algum tesouro que eu possa obter.", + "nextPhraseID": "jan_default12" + }, + { + "text": "Claro. Irogotu deve pagar pelo que fez.", + "nextPhraseID": "jan_default12" + }, + { + "text": "Não, obrigado, eu prefiro não ser envolvido neste processo. Parece perigoso.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_default12", + "message": "Sério? Você acha que poderia ajudar? Hm, talvez você podia. Cuidado com os insetos, porém, eles são realmente bastardos difíceis de lidar.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "jan", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default13" + } + ] + }, + { + "id": "jan_default13", + "message": "Se você realmente quer ajudar, vá encontrar Irogotu embaixo na caverna, e traga-me de volta o anel de Gandir.", + "replies": [ + { + "text": "Claro, eu vou ajudar.", + "nextPhraseID": "jan_default14" + }, + { + "text": "Você pode me contar a história de novo?", + "nextPhraseID": "jan_background" + }, + { + "text": "Não Importa. Adeus.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_default14", + "message": "Volte para mim quando você terminar. Traga-me o anel de Gandir, que está com Irogotu dentro da caverna.", + "replies": [ + { + "text": "Ok, tchau!", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_return", + "message": "Olá novamente, garoto. Você encontrou Irogotu dentro da caverna?", + "replies": [ + { + "text": "Não, ainda não.", + "nextPhraseID": "jan_default14" + }, + { + "text": "Pode contar-me a sua história de novo?", + "nextPhraseID": "jan_background" + }, + { + "text": "Sim, eu matei Irogotu.", + "nextPhraseID": "jan_complete", + "requires": { + "item": { + "itemID": "ring_gandir", + "quantity": 1, + "requireType": 0 + } + } + } + ] + }, + { + "id": "jan_background", + "message": "Você não prestou atenção na primeira vez que eu contei a história? Eu realmente tenho que lhe contar a história mais uma vez?", + "replies": [ + { + "text": "Sim, por favor, conte-me a história novamente.", + "nextPhraseID": "jan_default3" + }, + { + "text": "Eu não estava prestando atenção a primeira vez que você disse isso. O que você falou sobre o tesouro?", + "nextPhraseID": "jan_default4" + }, + { + "text": "Não, não importa. Lembro-me agora.", + "nextPhraseID": "jan_default14" + } + ] + }, + { + "id": "jan_complete2", + "message": "Obrigado por lidar com Irogotu mais cedo! Estou eternamente em dívida com você.", + "replies": [ + { + "text": "Tchau.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_complete", + "message": "Ei, espere! Você realmente entrou lá e retornou vivo? Como você conseguiu? Wow, Eu quase morri entrando naquela caverna.\n\nOh muito obrigado por trazer-me de volta o anel de Gandir! Agora finalmente vou poder ter algo para lembrar dele.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "jan", + "value": 100 + } + ], + "replies": [ + { + "text": "Ainda bem que pude lhe ajudar. Tchau.", + "nextPhraseID": "X" + }, + { + "text": "A Sombra esteja com você. Tchau.", + "nextPhraseID": "X" + }, + { + "text": "Não há de que. Eu só fiz isso pelo o saque.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "irogotu", + "message": "Bem, Olá forasteiro. Outro aventureiro vindo para roubar a minha recompensa. Esta é minha caverna. O tesouro será meu!", + "replies": [ + { + "text": "Você matou Gandir?", + "nextPhraseID": "irogotu1", + "requires": { + "progress": "jan:10" + } + } + ] + }, + { + "id": "irogotu1", + "message": "Esse tolo do Gandir? Ele estava no meu caminho. Eu simplesmente usei-o como uma ferramenta para cavar mais caverna adentro.", + "replies": [ + { + "text": "N", + "nextPhraseID": "irogotu2" + } + ] + }, + { + "id": "irogotu2", + "message": "Além disso, eu nunca gostei dele de qualquer maneira.", + "replies": [ + { + "text": "Eu acho que ele merecia morrer. Será que ele estava com um anel?", + "nextPhraseID": "irogotu3" + }, + { + "text": "Jan mencionou algo sobre um anel.", + "nextPhraseID": "irogotu3" + } + ] + }, + { + "id": "irogotu3", + "message": "NÃO! Você não pode ter isso. É meu! E quem é você? Um garotozinho vindo aqui para me perturbar?!", + "replies": [ + { + "text": "Eu não sou mais uma criança! Agora me dê o anel!", + "nextPhraseID": "irogotu4" + }, + { + "text": "Dá-me o anel e poderá sair daqui vivo.", + "nextPhraseID": "irogotu4" + } + ] + }, + { + "id": "irogotu4", + "message": "Não. Se você quiser, você vai ter que de mim à força, e devo dizer-lhe que os meus poderes são grandes. Além disso, você provavelmente não se atreveria a lutar contra mim, de qualquer forma.", + "replies": [ + { + "text": "Muito bem, vamos ver quem morre aqui.", + "nextPhraseID": "F" + }, + { + "text": "Pela Sombra, Gandir será vingado!", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_jhaeld.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_jhaeld.json new file mode 100644 index 000000000..0a159039f --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_jhaeld.json @@ -0,0 +1,1149 @@ +[ + { + "id": "jhaeld", + "replies": [ + { + "nextPhraseID": "jhaeld_idol_1", + "requires": { + "progress": "fiveidols:41" + } + }, + { + "nextPhraseID": "jhaeld_completed", + "requires": { + "progress": "remgard2:45" + } + }, + { + "nextPhraseID": "jhaeld_killalg_3", + "requires": { + "progress": "remgard2:41" + } + }, + { + "nextPhraseID": "jhaeld_killalg_2", + "requires": { + "progress": "remgard2:40" + } + }, + { + "nextPhraseID": "jhaeld_killalg", + "requires": { + "progress": "remgard2:21" + } + }, + { + "nextPhraseID": "jhaeld_alg_3", + "requires": { + "progress": "remgard2:10" + } + }, + { + "nextPhraseID": "jhaeld_rejected", + "requires": { + "progress": "remgard:110" + } + }, + { + "nextPhraseID": "jhaeld_return8", + "requires": { + "progress": "remgard:80" + } + }, + { + "nextPhraseID": "jhaeld_return6", + "requires": { + "progress": "remgard:75" + } + }, + { + "nextPhraseID": "jhaeld_return1", + "requires": { + "progress": "remgard:50" + } + }, + { + "nextPhraseID": "jhaeld_1" + } + ] + }, + { + "id": "jhaeld_1", + "message": "O que, quem é você? Não me incomode, criança. Nós não queremos que as crianças passeiem por aqui.", + "replies": [ + { + "text": "Você é Jhaeld? Eu fui enviado aqui para ajudá-lo a investigar as pessoas desaparecidas.", + "nextPhraseID": "jhaeld_3" + }, + { + "text": "Ei, cuidado com o seu tom. Seria uma pena se mais alguém de seu povo... desaparece.", + "nextPhraseID": "jhaeld_2" + } + ] + }, + { + "id": "jhaeld_2", + "message": "Hrmpf. Eu não levo ameaças facilmente. Especialmente quando vem de um fedelho como você.", + "replies": [ + { + "text": "Eu fui enviado aqui para ajudá-lo a investigar as pessoas desaparecidas.", + "nextPhraseID": "jhaeld_3" + }, + { + "text": "É melhor se acostumar com isso, com uma atitude como essa.", + "nextPhraseID": "jhaeld_leave" + } + ] + }, + { + "id": "jhaeld_reject", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 110 + } + ], + "replies": [ + { + "nextPhraseID": "jhaeld_leave" + } + ] + }, + { + "id": "jhaeld_leave", + "message": "Eu acho que é melhor sair, antes que qualquer coisa ruim aconteça com você." + }, + { + "id": "jhaeld_3", + "message": "Sim, sim. As pessoas desaparecidas. O que poderia um garoto como você ajudar, ein?", + "replies": [ + { + "text": "Eu estava pensando que você poderia me fornecer algumas tarefas para ajudá-lo com a investigação.", + "nextPhraseID": "jhaeld_4" + }, + { + "text": "O guarda ponte me disse para falar com você.", + "nextPhraseID": "jhaeld_4" + } + ] + }, + { + "id": "jhaeld_4", + "message": "Hum, agora que você está aqui você pode muito bem tornar-se útil, em vez de apenas estar parado aí com esse olhar estúpido. Mesmo você sendo uma criança, você pode ser capaz de coletar algumas informações para mim.", + "replies": [ + { + "text": "Claro, do que você precisa?", + "nextPhraseID": "jhaeld_7" + }, + { + "text": "Suspiro. Ok. Eu acho.", + "nextPhraseID": "jhaeld_7" + }, + { + "text": "Eu prefiro matar alguma coisa.", + "nextPhraseID": "jhaeld_6" + }, + { + "text": "Ei, cuidado com o o que diz!", + "nextPhraseID": "jhaeld_5" + } + ] + }, + { + "id": "jhaeld_5", + "message": "Não, você deveria moderar seu tom! Lembre-se de onde você está e com quem você está falando. Eu sou Jhaeld, e você está em Remgard - o que poderia ser chamado de *minha* cidade.", + "replies": [ + { + "text": "Certo. Do que você precisa?", + "nextPhraseID": "jhaeld_7" + }, + { + "text": "Você não me assusta, velho!", + "nextPhraseID": "jhaeld_leave" + } + ] + }, + { + "id": "jhaeld_6", + "message": "Ha ha. Você? Matar alguma coisa? Agora essa é a coisa mais engraçada que eu ouvi durante todo o dia. Apenas isso.", + "replies": [ + { + "text": "Ei, cuidado com o seu tom!", + "nextPhraseID": "jhaeld_5" + }, + { + "text": "Sei me cuidar. Do que você precisa?", + "nextPhraseID": "jhaeld_7" + }, + { + "text": "É só esperar e ver.", + "nextPhraseID": "jhaeld_7" + } + ] + }, + { + "id": "jhaeld_7", + "message": "(Suspiro) Sequer pensar que precisamos obter ajuda de crianças como mensageiros nesses dias.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_8" + } + ] + }, + { + "id": "jhaeld_8", + "message": "Eu acho que você sabe já sabe o histórico dessa situação. Tivemos algumas pessoas desaparecidas dentre nós há algum tempo. Nós não temos ideia do que aconteceu com as pessoas que desapareceram, ou mesmo se eles ainda estão vivas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_9" + } + ] + }, + { + "id": "jhaeld_9", + "message": "Considerando como muitos são os que desapareceram sem que ninguém saiba o que aconteceu, não parece que eles estejão viajando.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_10" + } + ] + }, + { + "id": "jhaeld_10", + "message": "Ok, então o que eu gostaria que você fizesse para mim é pedir a algumas pessoas que conhecem as pessoas desaparecidas. O fato de que você não seja daqui pode ajudá-lo a obter informações que nem eu nem meus guardas seriamos capazes de adquirir.", + "replies": [ + { + "text": "Som bastante simples.", + "nextPhraseID": "jhaeld_14" + }, + { + "text": "Claro, eu vou fazê-lo. Quem você quer que eu procure?", + "nextPhraseID": "jhaeld_14" + }, + { + "text": "Eu não estou muito certo sobre isso. Haverá uma recompensa?", + "nextPhraseID": "jhaeld_11" + }, + { + "text": "Eu não estou muito certo sobre isso. Por que eu irei ajudar vocês?", + "nextPhraseID": "jhaeld_13" + } + ] + }, + { + "id": "jhaeld_11", + "message": "O quê, você tem a arrogância de pedir uma recompensa por nos ajudar a encontrar as pessoas que estão faltando? Se é ouro que você procura, eu sugiro que você procure em outro lugar.", + "replies": [ + { + "text": "Bem, eu vou fazê-lo. Quem você quer que eu procure?", + "nextPhraseID": "jhaeld_14" + }, + { + "text": "Sem recompensa, sem ajuda.", + "nextPhraseID": "jhaeld_12" + } + ] + }, + { + "id": "jhaeld_12", + "message": "Eu sabia que você era apenas problema. Suspiro. Por favor, deixe-me.", + "replies": [ + { + "text": "Bem, eu vou fazê-lo. Quem você quer que eu procure?", + "nextPhraseID": "jhaeld_14" + }, + { + "text": "Como quiser.", + "nextPhraseID": "jhaeld_reject" + } + ] + }, + { + "id": "jhaeld_13", + "message": "Porque? Seria a coisa certa a fazer, claro. Se você não consegue entender isso, é melhor ir para outro lugar.", + "replies": [ + { + "text": "Bem, eu vou fazê-lo. Quem você quer que eu procure?", + "nextPhraseID": "jhaeld_14" + }, + { + "text": "Não vou fazer isso. Não vejo por que eu deveria ajudá-lo.", + "nextPhraseID": "jhaeld_reject" + } + ] + }, + { + "id": "jhaeld_14", + "message": "Há quatro pessoas aqui em Remgard que eu acredito que possam dizer mais do que aquilo que conseguimos extrair deles. Eu quero que você vá perguntar a eles o que eles sabem dos desaparecimentos.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 50 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_15" + } + ] + }, + { + "id": "jhaeld_15", + "message": "Primeiro, tem o Norath e sua esposa Bethir que vivem na casa da fazenda na costa sudoeste. Bethir está desaparecida, e Norath pode saber mais sobre onde ela poderia estar.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 51 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_16" + } + ] + }, + { + "id": "jhaeld_16", + "message": "Em segundo lugar, como você pode ter ouvido, fomos abençoados com a visita de uma delegação dos Cavaleiros de Elythom aqui em Remgard. Infelizmente, um dos cavaleiros desapareceu, o que é muito constrangedor para nós. Eles podem ser encontrados aqui na taverna.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 52 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_17" + } + ] + }, + { + "id": "jhaeld_17", + "message": "Em terceiro lugar, a anciã Duaina geralmente tem uma grande sabedoria a compartilhar, considerando a experiência que ela tem com... coisas fora do comum. Você vai encontrá-la em sua casa, ao sul.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 53 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_18" + } + ] + }, + { + "id": "jhaeld_18", + "message": "Por último, você deve ir falar com Rothses, o armeiro na cidade. Ele se encontra com a maioria das pessoas e, em seguida, e poderia ter pego algo que ele não ousaria contar aos guardas. Sua casa fica no lado oeste da cidade.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 54 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_19" + } + ] + }, + { + "id": "jhaeld_19", + "message": "Por favor seja tão rápido quanto possível.", + "replies": [ + { + "text": "E sobre aquela mulher, Algangror, que vive fora da cidade?", + "nextPhraseID": "jhaeld_21", + "requires": { + "progress": "remgard:30" + } + }, + { + "text": "Eu vou perguntar a eles.", + "nextPhraseID": "jhaeld_20" + } + ] + }, + { + "id": "jhaeld_20", + "message": "Como eu disse, por favor, seja o mais rápido possível." + }, + { + "id": "jhaeld_21", + "message": "O que foi isso? Você ainda está aqui? Eu lhe disse para ser tão rápido quanto possível.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 59 + } + ], + "replies": [ + { + "text": "O que tem ela? O guarda da ponte enviou-me a investigar aquela casa, e parecia muito chateado quando eu mencionei que ela estava lá.", + "nextPhraseID": "jhaeld_22" + }, + { + "text": "Eu vou procurar essas pessoas que você mencionou.", + "nextPhraseID": "jhaeld_20" + } + ] + }, + { + "id": "jhaeld_22", + "message": "Você não me ouve? Eu lhe disse para ser tão rápido quanto possível! Isso significa que você deve ir falar com as pessoas em vez de estar aqui jogando conversa fora.", + "replies": [ + { + "text": "Mas o guarda ponte parecia ...", + "nextPhraseID": "jhaeld_23" + }, + { + "text": "Mas eu pensei que ...", + "nextPhraseID": "jhaeld_23" + }, + { + "text": "E sobre o ...", + "nextPhraseID": "jhaeld_23" + }, + { + "text": "Eu vou procurar essas pessoas que você mencionou.", + "nextPhraseID": "jhaeld_20" + } + ] + }, + { + "id": "jhaeld_23", + "message": "Você ainda está falando? Eu sabia que você era nada além de problemas no momento em que a vi. Agora, por favor você pode se apressar e ir falar com essas pessoas?", + "replies": [ + { + "text": "Certo. Eu vou perguntar a eles.", + "nextPhraseID": "jhaeld_20" + } + ] + }, + { + "id": "jhaeld_rejected", + "message": "E agora? Olha, nós não queremos que crianças como você fiquem zanzando por aqui, mexendo com nossas coisas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_leave" + } + ] + }, + { + "id": "jhaeld_return1", + "message": "Você falou com as pessoas que eu lhe enviei para perguntar sobre as pessoas desaparecidas?", + "replies": [ + { + "text": "Sim, eu falei com todos eles.", + "nextPhraseID": "jhaeld_return2", + "requires": { + "progress": "remgard:70" + } + }, + { + "text": "Você pode repetir os nomes das pessoas que você queria que eu procurasse?", + "nextPhraseID": "jhaeld_14" + }, + { + "text": "Eu não estou muito certo sobre isso. Haverá uma recompensa?", + "nextPhraseID": "jhaeld_11" + }, + { + "text": "Eu não estou muito certo sobre isso. Por que eu iria ajudar vocês?", + "nextPhraseID": "jhaeld_13" + }, + { + "text": "Ainda não, mas eu irei.", + "nextPhraseID": "jhaeld_19" + } + ] + }, + { + "id": "jhaeld_return2", + "message": "Bem, o que você descobriu?", + "replies": [ + { + "text": "Nada. Nenhum deles me disse nada de novo sobre as pessoas desaparecidas.", + "nextPhraseID": "jhaeld_return3" + } + ] + }, + { + "id": "jhaeld_return3", + "message": "Então .. Deixe-me entender direito. Você foi e perguntou-lhes sobre as pessoas desaparecidas, e que não lhe disseram nada de novo?", + "replies": [ + { + "text": "Não. Nenhum deles tinha nada de novo a dizer.", + "nextPhraseID": "jhaeld_return4" + }, + { + "text": "Você me ouviu pela primeira vez.", + "nextPhraseID": "jhaeld_return4" + }, + { + "text": "Talvez você devesse ter me mandou perguntar a outras pessoas do que esses perdedores que voce me mandou procurar.", + "nextPhraseID": "jhaeld_return4" + } + ] + }, + { + "id": "jhaeld_return4", + "message": "Ah, eu sabia que você era nada além de problemas no momento em que o vi.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_return5" + } + ] + }, + { + "id": "jhaeld_return5", + "message": "Enviei-lhe para fazer uma tarefa simples, e você voltou com... nada!", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_return6" + } + ] + }, + { + "id": "jhaeld_return6", + "message": "(Jhaeld murmura) crianças estúpidas ..", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 75 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_return7" + } + ] + }, + { + "id": "jhaeld_return7", + "message": "Certo então.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_return8" + } + ] + }, + { + "id": "jhaeld_return8", + "message": "Sugiro que você vá olhar em outros lugares, se você realmente quer nos ajudar.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 80 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_return_s" + } + ] + }, + { + "id": "jhaeld_return_s", + "replies": [ + { + "nextPhraseID": "jhaeld_task2_n", + "requires": { + "progress": "fiveidols:20" + } + }, + { + "nextPhraseID": "jhaeld_task2_f", + "requires": { + "progress": "remgard:59" + } + }, + { + "nextPhraseID": "jhaeld_task2_y", + "requires": { + "progress": "remgard:30" + } + }, + { + "nextPhraseID": "jhaeld_task2" + } + ] + }, + { + "id": "jhaeld_task2_f", + "message": "Talvez alguém saiba algo que nós não tenhamos levado em conta. Além disso, eu me lembro de você dizer algo sobre Algangror antes, não é mesmo?", + "replies": [ + { + "text": "Sim. Como eu tentei dizer-lhe, Algangror está escondida na casa abandonada fora da cidade.", + "nextPhraseID": "jhaeld_alg_3" + } + ] + }, + { + "id": "jhaeld_task2_y", + "message": "Talvez alguém saiba algo que nós não tenhamos levado em conta.", + "replies": [ + { + "text": "O guarda ponte enviou-me para explorar uma casa abandonada fora da cidade.", + "nextPhraseID": "jhaeld_alg_1" + }, + { + "text": "Será que o nome 'Algangror' significa alguma coisa para você?", + "nextPhraseID": "jhaeld_alg_2" + } + ] + }, + { + "id": "jhaeld_task2", + "message": "Talvez alguém saiba algo que nós não tenhamos levado em conta.", + "replies": [ + { + "text": "O guarda ponte enviou-me para explorar uma casa abandonada fora da cidade.", + "nextPhraseID": "jhaeld_alg_1" + }, + { + "text": "Eu poderia saber algo, mas prometi não contar a ninguém.", + "nextPhraseID": "jhaeld_task2_1", + "requires": { + "progress": "remgard:31" + } + }, + { + "text": "Eu não sei de mais nada.", + "nextPhraseID": "jhaeld_task2_n" + }, + { + "text": "Eu vou procurar ao redor.", + "nextPhraseID": "jhaeld_task2_n" + } + ] + }, + { + "id": "jhaeld_task2_1", + "message": "Um segredo, né? Você faria bem se me dissesse o que sabe. Vidas podem estar em jogo aqui.", + "replies": [ + { + "text": "O guarda ponte enviou-me para explorar uma casa abandonada fora da cidade.", + "nextPhraseID": "jhaeld_alg_1" + }, + { + "text": "Não, eu vou manter minha palavra, e não dizer.", + "nextPhraseID": "jhaeld_task2_2" + }, + { + "text": "Não importa, não era nada.", + "nextPhraseID": "jhaeld_task2_n" + }, + { + "text": "Não importa, eu vou perguntar se alguém mais sabe de algo.", + "nextPhraseID": "jhaeld_task2_n" + } + ] + }, + { + "id": "jhaeld_task2_2", + "message": "Ah, alguém com honra. Eu respeito isso, e não vou perguntar mais nada.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_task2_n" + } + ] + }, + { + "id": "jhaeld_task2_n", + "message": "Não tenho mais nada para lhe dizer." + }, + { + "id": "jhaeld_alg_1", + "message": "Hm, sim, e daí?", + "replies": [ + { + "text": "Eu conheci uma mulher chamada Algangror naquela casa.", + "nextPhraseID": "jhaeld_alg_2" + } + ] + }, + { + "id": "jhaeld_alg_2", + "message": "Algangror?! Esse é um nome que eu não ouço faz muito tempo.", + "replies": [ + { + "text": "Algangror está escondida na casa abandonada fora da cidade.", + "nextPhraseID": "jhaeld_alg_3" + } + ] + }, + { + "id": "jhaeld_alg_3", + "message": "Se Algangror está aqui, esta é uma notícia realmente sombria.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard2", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_alg_4" + } + ] + }, + { + "id": "jhaeld_alg_4", + "message": "Para ser honesto, eu tinha ouvido falar sobre isso antes, mas eu desconsiderei toda a conversa pois eu não acreditei nisso. Agora que você também me afirma isso eu estou começando a pensar que isso talvez possa ser verdade. Ela pode ter retornado.", + "replies": [ + { + "text": "Quem é ela?", + "nextPhraseID": "jhaeld_alg_5" + } + ] + }, + { + "id": "jhaeld_alg_5", + "message": "Ela morava aqui em Remgard, durante os dias de prosperidade. Ela ainda ajudou com as colheitas em alguns anos.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_alg_6" + } + ] + }, + { + "id": "jhaeld_alg_6", + "message": "Então algo aconteceu. Ela começou a ter idéias, e, ocasionalmente, se trancou em sua casa por vários dias. Ninguém sabia o que estava fazendo ali, mas todos sabíamos que nada era de bom.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_alg_7" + } + ] + }, + { + "id": "jhaeld_alg_7", + "message": "Ainda me lembro do cheiro que vinha da casa dela. Ugh. O que poderia cheirar tão ruim assim?", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_alg_8" + } + ] + }, + { + "id": "jhaeld_alg_8", + "message": "De qualquer forma, começamos a questioná-la, e tentamos persuadi-la a dizer o que ela estava fazendo. Teimosa e louca como ela estava, se recusou, é claro.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_alg_9" + } + ] + }, + { + "id": "jhaeld_alg_9", + "message": "As coisas começaram a piorar, e o mau cheiro se espalhava como uma névoa profunda sobre toda a cidade. Todos nós que vivemos aqui em Remgard sabiamos que tinhamos que agir antes que ela fizesse algo que poderia prejudicar a todos nós.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_alg_10" + } + ] + }, + { + "id": "jhaeld_alg_10", + "message": "Assim, forçamo-la a se explicar.", + "replies": [ + { + "text": "E ela contou?", + "nextPhraseID": "jhaeld_alg_11" + } + ] + }, + { + "id": "jhaeld_alg_11", + "message": "Você acredita, ela nos disse que ela acreditava que o que ela fazia não era da nossa conta. Ela ainda teve o estômago para nos dizer que queria ser deixada sozinha.", + "replies": [ + { + "text": "O que você fez?", + "nextPhraseID": "jhaeld_alg_12" + } + ] + }, + { + "id": "jhaeld_alg_12", + "message": "É claro que fiz o que qualquer homem sensato faria. Nós a obrigamos a abandonar sua casa e encontrar outro lugar para viver. Em algum lugar diferente Remgard.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_alg_13" + } + ] + }, + { + "id": "jhaeld_alg_13", + "message": "Você deveria tê-la ter visto. Unhas tão longas quanto os dedos, e o rosto dela cheio de cabelo sujo. Claramente, ela era louca e não poderia ser razoável.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_alg_14" + } + ] + }, + { + "id": "jhaeld_alg_14", + "message": "Quando ela caminhava pela cidade, as crianças começavam a gritar de pavor por causa dela.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_alg_15" + } + ] + }, + { + "id": "jhaeld_alg_15", + "message": "A pior coisa, porém, é que ela disse que iria lançar uma maldição sobre todos nós.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_alg_16" + } + ] + }, + { + "id": "jhaeld_alg_16", + "message": "Tudo isso foi a vários trimestres atrás, e as coisas têm retornado a seu ritmo normal deste então.", + "replies": [ + { + "text": "E estava assim, até então, antes do seu retorno.", + "nextPhraseID": "jhaeld_alg_17" + } + ] + }, + { + "id": "jhaeld_alg_17", + "message": "Sim. Seu retorno explicaria as pessoas desaparecidas. Ela deve ter feito alguma coisa com eles. Eu temo pelo pior.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_alg_18" + } + ] + }, + { + "id": "jhaeld_alg_18", + "message": "Considerando as pessoas que desapareceram, eu sinceramente não sei o que fazer. Como você sabe, até mesmo um dos Cavaleiros de Elythom desapareceu.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_alg_19" + } + ] + }, + { + "id": "jhaeld_alg_19", + "message": "Alguém que possa fazer isso é realmente perigosa. Eu não tenho certeza se iria mesmo arriscar a enviar os guardas lá fora, atrás ela, com medo do que ela poderia fazer.", + "replies": [ + { + "text": "Então, o que fazer?", + "nextPhraseID": "jhaeld_alg_20" + } + ] + }, + { + "id": "jhaeld_alg_20", + "message": "Se eu tivesse que escolher, eu preferiria não lidar com isso, e apenas selar a ponte da cidade para estar tão segura quanto possível, para evitar que mais pessoas continuem desaparecendo.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard2", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_alg_21s" + } + ] + }, + { + "id": "jhaeld_alg_21s", + "replies": [ + { + "nextPhraseID": "jhaeld_alg_21n", + "requires": { + "progress": "remgard2:21" + } + }, + { + "nextPhraseID": "jhaeld_alg_21" + } + ] + }, + { + "id": "jhaeld_alg_21n", + "message": "Eu... Eu não sei o que fazer." + }, + { + "id": "jhaeld_alg_21", + "message": "Eu... Eu não sei o que fazer.", + "replies": [ + { + "text": "Eu poderia ajudá-lo, se quiser.", + "nextPhraseID": "jhaeld_alg_24" + }, + { + "text": "Você é um idiota patético. Você prefere sentar aqui e não fazer nada, em vez de confrontá-la?", + "nextPhraseID": "jhaeld_alg_22" + }, + { + "text": "Hah, parece chato ser você!", + "nextPhraseID": "jhaeld_alg_23" + } + ] + }, + { + "id": "jhaeld_alg_22", + "message": "Eu não vou ver mais do meu povo se machucar, ou o que quer que ela tenha feito para eles. Vou manter o meu povo seguro.", + "replies": [ + { + "text": "Eu poderia ajudá-lo, se quiser.", + "nextPhraseID": "jhaeld_alg_24" + }, + { + "text": "Hah, parece chato ser você!", + "nextPhraseID": "jhaeld_alg_23" + } + ] + }, + { + "id": "jhaeld_alg_23", + "message": "Insultos não vão ajudar a chegar a lugar algum. As pessoas que desapareceram ainda estão faltando, e mais alguém pode ser ferida, enquanto você anda por aí distribuindo insultos. Tenho pena de você.", + "replies": [ + { + "text": "Eu poderia ajudá-lo, se quiser.", + "nextPhraseID": "jhaeld_alg_24" + }, + { + "text": "Você idiota patético. Você prefere sentar aqui e não fazer nada, em vez de confrontá-la?", + "nextPhraseID": "jhaeld_alg_22" + } + ] + }, + { + "id": "jhaeld_alg_24", + "message": "Se você realmente quiser nos ajudar, por favor, tenha cuidado. Não se pode confiar nela.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_alg_25" + } + ] + }, + { + "id": "jhaeld_alg_25", + "message": "No entanto, se você encontrar uma maneira de fazê-la desaparecer, nós naturalmente teríamos para sempre uma dívida com você.", + "replies": [ + { + "text": "Vou ver o que posso fazer.", + "nextPhraseID": "jhaeld_alg_26" + }, + { + "text": "Eu tenho lidado com inimigos mais fortes.", + "nextPhraseID": "jhaeld_alg_27" + } + ] + }, + { + "id": "jhaeld_alg_26", + "message": "Lembre-se, por favor, tenha cuidado! Eu não quero ser responsável por outra pessoa desaparecer.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard2", + "value": 21 + } + ] + }, + { + "id": "jhaeld_alg_27", + "message": "Eu duvido.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_alg_26" + } + ] + }, + { + "id": "jhaeld_killalg", + "message": "Olá novamente. Que novidades você traz?", + "replies": [ + { + "text": "Você pode me contar a história de Algangror novamente?", + "nextPhraseID": "jhaeld_alg_5" + }, + { + "text": "Eu ainda estou tentando encontrar uma maneira de fazer Algangror desaparecer.", + "nextPhraseID": "jhaeld_alg_26" + }, + { + "text": "Algangror está morta.", + "nextPhraseID": "jhaeld_killalg_1", + "requires": { + "progress": "remgard2:35" + } + } + ] + }, + { + "id": "jhaeld_killalg_1", + "message": "Acho isso muito difícil de acreditar. Matar Algangror é uma tarefa difícil, dado o seu poder.", + "replies": [ + { + "text": "Eu lhe trouxe o anel dela como prova de que o que eu digo é verdade.", + "nextPhraseID": "jhaeld_killalg_1b", + "requires": { + "item": { + "itemID": "algangror_ring", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Não, não importa. Eu realmente não a derrotei ainda.", + "nextPhraseID": "jhaeld_alg_26" + } + ] + }, + { + "id": "jhaeld_killalg_1b", + "message": "Eu mal posso acreditar! Sim, este é realmente o seu anel.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard2", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_killalg_2" + } + ] + }, + { + "id": "jhaeld_killalg_2", + "message": "Você realmente a derrotou? Estou tão aliviado! Diga-me, o quão louco ela estava? Não, não me diga, eu não quero ouvir mais dessa sujeira.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_killalg_3" + } + ] + }, + { + "id": "jhaeld_killalg_3", + "message": "Isso significa que o povo de Remgard está agora a salvo dela, e é tudo graças a você! Quem diria.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard2", + "value": 41 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_killalg_4" + } + ] + }, + { + "id": "jhaeld_killalg_4", + "message": "Eu... Eu não sei o que dizer. Obrigado, isso é o mínimo que posso dizer.", + "replies": [ + { + "text": "Você é muito bem-vindo.", + "nextPhraseID": "jhaeld_killalg_5" + }, + { + "text": "Essa foi uma luta dura. Agora, vamos falar da recompensa.", + "nextPhraseID": "jhaeld_killalg_5" + }, + { + "text": "Apenas mais outro corpo nas minhas costas.", + "nextPhraseID": "jhaeld_killalg_5" + } + ] + }, + { + "id": "jhaeld_killalg_5", + "message": "Eu acho que a cidade inteira está em dívida, mas eles podem não saber disso.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_killalg_6" + } + ] + }, + { + "id": "jhaeld_killalg_6", + "message": "Vá falar com Rothses mais no lado oeste da cidade. Ele deve ser capaz de ajudar a melhorar alguns de seus equipamentos.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard2", + "value": 45 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_completed" + } + ] + }, + { + "id": "jhaeld_completed", + "message": "Mais uma vez, obrigado por toda sua ajuda." + }, + { + "id": "jhaeld_idol_1", + "message": "Por favor, deixe-me, criança. Eu estou com um súbito ataque de náuseas. Eu provavelmente devo me deitar." + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_jolnor.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_jolnor.json new file mode 100644 index 000000000..695e072b9 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_jolnor.json @@ -0,0 +1,598 @@ +[ + { + "id": "jolnor_select_1", + "replies": [ + { + "nextPhraseID": "jolnor_default_3", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "jolnor_default_2", + "requires": { + "progress": "vilegard:20" + } + }, + { + "nextPhraseID": "jolnor_default" + } + ] + }, + { + "id": "jolnor_default", + "message": "Caminhe com a Sombra, meu filho.", + "replies": [ + { + "text": "Que lugar é esse?", + "nextPhraseID": "jolnor_chapel_1" + }, + { + "text": "Disseram-me para falar com você sobre o porquê todos em Vilegard suspeitam de estranhos.", + "nextPhraseID": "jolnor_suspicious_1", + "requires": { + "progress": "vilegard:10" + } + } + ] + }, + { + "id": "jolnor_default_2", + "message": "Caminhe com a Sombra, meu filho.", + "replies": [ + { + "text": "Você pode me dizer mais uma vez que lugar é este?", + "nextPhraseID": "jolnor_chapel_1" + }, + { + "text": "Vamos falar sobre essas missões para ganhar a confiança de que você falou anteriormente.", + "nextPhraseID": "jolnor_quests_1" + }, + { + "text": "Eu preciso de cura. Posso ver os itens que você tem disponíveis?", + "nextPhraseID": "jolnor_shop_1" + } + ] + }, + { + "id": "jolnor_default_3", + "message": "Caminhe com a Sombra, meu amigo.", + "replies": [ + { + "text": "Você pode me dizer mais uma vez que lugar é este?", + "nextPhraseID": "jolnor_chapel_1" + }, + { + "text": "Eu preciso de cura. Posso ver os itens que você tem disponíveis?", + "nextPhraseID": "jolnor_shop_1" + } + ] + }, + { + "id": "jolnor_chapel_1", + "message": "Este é o lugar de adoração em Vilegard para a Sombra. Louvamos a Sombra em todo o seu poder e glória.", + "replies": [ + { + "text": "Você pode me dizer mais sobre a Sombra?", + "nextPhraseID": "jolnor_shadow_1" + }, + { + "text": "Eu preciso de cura. Posso ver os itens que você tem disponíveis?", + "nextPhraseID": "jolnor_shop_1" + }, + { + "text": "Que seja. Apenas mostre-me os seus bens.", + "nextPhraseID": "jolnor_shop_1" + } + ] + }, + { + "id": "jolnor_shadow_1", + "message": "A Sombra nos protege dos perigos da noite. Ele nos mantém seguros e nos conforta quando dormimos.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_select_1" + } + ] + }, + { + "id": "jolnor_shop_1", + "replies": [ + { + "nextPhraseID": "S", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "jolnor_shop_2" + } + ] + }, + { + "id": "jolnor_shop_2", + "message": "Eu não confio em você o suficiente para se sentir confortável com você na negociação.", + "replies": [ + { + "text": "Por que você é tão desconfiado?", + "nextPhraseID": "jolnor_suspicious_1" + }, + { + "text": "Muito bem.", + "nextPhraseID": "jolnor_select_1" + } + ] + }, + { + "id": "jolnor_suspicious_1", + "message": "Desconfiado? Não, eu não chamaria isso de desconfiança. Eu prefiro chamá-lo de que somos cuidadosos hoje em dia.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_suspicious_2" + } + ] + }, + { + "id": "jolnor_suspicious_2", + "message": "A fim de ganhar a confiança da aldeia, um estranho deve provar que não está aqui para causar problemas.", + "replies": [ + { + "text": "Parece uma boa ideia. Há um monte de pessoas egoístas lá fora.", + "nextPhraseID": "jolnor_suspicious_3" + }, + { + "text": "Isso soa realmente desnecessário. Por que não confiar nas pessoas em primeiro lugar?", + "nextPhraseID": "jolnor_suspicious_4" + } + ] + }, + { + "id": "jolnor_suspicious_3", + "message": "Sim, certo. Você parece entender-nos bem, eu gosto disso.", + "replies": [ + { + "text": "Há algo que eu possa fazer para ganhar a sua confiança?", + "nextPhraseID": "jolnor_gaintrust_select" + } + ] + }, + { + "id": "jolnor_suspicious_4", + "message": "Nós aprendemos com o passado que não devemos confiar em estranhos, e você é um estrangeiro. Por que nós deveriamos confiar em você?", + "replies": [ + { + "text": "O que posso fazer para ganhar a sua confiança?", + "nextPhraseID": "jolnor_gaintrust_select" + }, + { + "text": "Você está certo. Você provavelmente não deve confiar em mim.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jolnor_gaintrust_select", + "replies": [ + { + "nextPhraseID": "jolnor_gaintrust_return_2", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "jolnor_gaintrust_return", + "requires": { + "progress": "vilegard:20" + } + }, + { + "nextPhraseID": "jolnor_gaintrust_1" + } + ] + }, + { + "id": "jolnor_gaintrust_return_2", + "message": "Com a sua ajuda anterior, você já ganhou a nossa confiança.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_default_3" + } + ] + }, + { + "id": "jolnor_gaintrust_return", + "message": "Como eu disse antes, você tem que ajudar algumas pessoas aqui em Vilegard para ganhar nossa confiança.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_quests_1" + } + ] + }, + { + "id": "jolnor_gaintrust_1", + "message": "Se você fizer-nos alguns favores, podemos considerar a confiar em você. Há três pessoas que eu posso pensar que são influentes aqui em Vilegard, que você deve tentar ajudar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_gaintrust_2" + } + ] + }, + { + "id": "jolnor_gaintrust_2", + "message": "Primeiro, há Kaori. Ela vive na parte norte de Vilegard. Pergunte a ela se ela precisa de alguma ajuda.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kaori", + "value": 5 + } + ], + "replies": [ + { + "text": "OK. Falar com Kaori. Entendi.", + "nextPhraseID": "jolnor_gaintrust_3" + } + ] + }, + { + "id": "jolnor_gaintrust_3", + "message": "Depois, há Wrye. Wrye também vive-se na parte norte da Vilegard. Muitas pessoas aqui em Vilegard procuram seus conselhos em vários assuntos.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_gaintrust_4" + } + ] + }, + { + "id": "jolnor_gaintrust_4", + "message": "Recentemente, ela perdeu seu filho de forma trágica. Se você puder ganhar a sua confiança, você vai ter uma forte aliada aqui.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "wrye", + "value": 10 + } + ], + "replies": [ + { + "text": "Falar com Wrye. Entendi.", + "nextPhraseID": "jolnor_gaintrust_5" + } + ] + }, + { + "id": "jolnor_gaintrust_5", + "message": "E por último mas não menos importante, eu tenho um favor a pedir-lhe também.", + "replies": [ + { + "text": "Que favor é esse?", + "nextPhraseID": "jolnor_gaintrust_6" + } + ] + }, + { + "id": "jolnor_gaintrust_6", + "message": "No norte de Vilegard existe uma taverna chamada Foaming Flask. Na minha opinião, esta taverna é um pretexto para um posto da guarda de Feygard.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_gaintrust_7" + } + ] + }, + { + "id": "jolnor_gaintrust_7", + "message": "A taberna é quase sempre visitado pela guarda real de Feygard, a serviço do Lorde Geomyr.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_gaintrust_8" + } + ] + }, + { + "id": "jolnor_gaintrust_8", + "message": "Eles estão aqui provavelmente para nos espionar, já que somos seguidores do Sombra. As forças de Lorde Geomyr sempre tentam fazer a vida difícil para nós e para a Sombra.", + "replies": [ + { + "text": "Sim, eles parecem ser encrenqueiros em todo lugar.", + "nextPhraseID": "jolnor_gaintrust_9" + }, + { + "text": "Tenho certeza que eles têm suas razões para fazer o que eles fazem.", + "nextPhraseID": "jolnor_gaintrust_10" + } + ] + }, + { + "id": "jolnor_gaintrust_9", + "message": "Certo. Desordeiros, certamente.", + "replies": [ + { + "text": "O que você quer que eu faça?", + "nextPhraseID": "jolnor_gaintrust_11" + } + ] + }, + { + "id": "jolnor_gaintrust_10", + "message": "Sim, o propósito deles é tornar a vida miserável para nós, eu tenho certeza.", + "replies": [ + { + "text": "O que você quer que eu faça?", + "nextPhraseID": "jolnor_gaintrust_11" + } + ] + }, + { + "id": "jolnor_gaintrust_11", + "message": "Meus relatórios dizem que há um guarda do lado de fora da taberna, para manter um olho sobre os perigos potenciais.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_gaintrust_12" + } + ] + }, + { + "id": "jolnor_gaintrust_12", + "message": "Eu quero que você verifique se o guarda desaparece de alguma forma. Como você vai fazer isso é problema seu.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "jolnor", + "value": 10 + } + ], + "replies": [ + { + "text": "Eu não tenho certeza se devo perturbar os guardas de patrulha Feygard. Isso poderia realmente meter-me em problemas.", + "nextPhraseID": "jolnor_gaintrust_13" + }, + { + "text": "Pela Sombra, vou fazer o que você pedir.", + "nextPhraseID": "jolnor_gaintrust_14" + }, + { + "text": "Ok, eu espero que isso leve a um tesouro no final.", + "nextPhraseID": "jolnor_gaintrust_14" + } + ] + }, + { + "id": "jolnor_gaintrust_13", + "message": "A escolha é sua. Você pode pelo menos ir verificar a taberna e veja se você encontra qualquer coisa suspeita.", + "replies": [ + { + "text": "Talvez.", + "nextPhraseID": "jolnor_gaintrust_15" + } + ] + }, + { + "id": "jolnor_gaintrust_14", + "message": "Bom. Reporte-me ao retornar quando você o fizer.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_gaintrust_15" + } + ] + }, + { + "id": "jolnor_gaintrust_15", + "message": "Então, a fim de ganhar a nossa confiança aqui em Vilegard, eu sugiro que você ajude Kaori, Wrye e eu.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vilegard", + "value": 20 + } + ], + "replies": [ + { + "text": "Obrigado pela informação. Eu estarei de volta quando eu tiver algo a relatar.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jolnor_quests_1", + "message": "Sugiro que você ajudar Kaori, Wrye e eu para ganhar nossa confiança.", + "replies": [ + { + "text": "Sobre o que o guarda do lado de fora da taverna Foaming Flask ...", + "nextPhraseID": "jolnor_guard_select" + }, + { + "text": "Sobre as tarefas ...", + "nextPhraseID": "jolnor_quests_2" + }, + { + "text": "Não importa, vamos falar de outros assuntos.", + "nextPhraseID": "jolnor_select_1" + } + ] + }, + { + "id": "jolnor_quests_2", + "message": "Sim, o que tem com eles?", + "replies": [ + { + "text": "O que eu deveria fazer de novo?", + "nextPhraseID": "jolnor_suspicious_2" + }, + { + "text": "Fiz todas as tarefas que você me pediu para fazer.", + "nextPhraseID": "jolnor_quests_select_1", + "requires": { + "progress": "jolnor:30" + } + }, + { + "text": "Não importa, vamos falar de outros assuntos.", + "nextPhraseID": "jolnor_select_1" + } + ] + }, + { + "id": "jolnor_guard_select", + "replies": [ + { + "nextPhraseID": "jolnor_guard_completed", + "requires": { + "progress": "jolnor:30" + } + }, + { + "nextPhraseID": "jolnor_guard_1" + } + ] + }, + { + "id": "jolnor_guard_1", + "message": "Sim, o que tem com ele? Você já se livrou dele?", + "replies": [ + { + "text": "Sim, ele vai deixar o cargo assim que seu turno encerrar.", + "nextPhraseID": "jolnor_guard_2", + "requires": { + "progress": "jolnor:20" + } + }, + { + "text": "Sim, ele foi removido.", + "nextPhraseID": "jolnor_guard_2", + "requires": { + "item": { + "itemID": "ffguard_qitem", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Não, mas estou trabalhando nisso.", + "nextPhraseID": "jolnor_gaintrust_14" + } + ] + }, + { + "id": "jolnor_guard_completed", + "message": "Sim, você lidou com ele anteriormente. Agradeço pela ajuda.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_quests_1" + } + ] + }, + { + "id": "jolnor_guard_2", + "message": "Muito bom. Agradeço pela ajuda.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "jolnor", + "value": 30 + } + ], + "replies": [ + { + "text": "Não tem problema. Vamos voltar para essas outras tarefas que falamos.", + "nextPhraseID": "jolnor_quests_2" + } + ] + }, + { + "id": "jolnor_quests_select_1", + "replies": [ + { + "nextPhraseID": "jolnor_quests_select_2", + "requires": { + "progress": "kaori:20" + } + }, + { + "nextPhraseID": "jolnor_quests_kaori_1" + } + ] + }, + { + "id": "jolnor_quests_kaori_1", + "message": "Você ainda precisa ajudar Kaori com sua tarefa.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_select_1" + } + ] + }, + { + "id": "jolnor_quests_select_2", + "replies": [ + { + "nextPhraseID": "jolnor_quests_completed", + "requires": { + "progress": "wrye:90" + } + }, + { + "nextPhraseID": "jolnor_quests_wrye_1" + } + ] + }, + { + "id": "jolnor_quests_wrye_1", + "message": "Você ainda precisa ajudar Wrye com sua tarefa.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_select_1" + } + ] + }, + { + "id": "jolnor_quests_completed", + "message": "Bom. Você ajudou a todos nós três.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vilegard", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_quests_completed_2" + } + ] + }, + { + "id": "jolnor_quests_completed_2", + "message": "Suponho que isso mostra alguma dedicação, e que estejamos prontos a confiar em você agora.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_quests_completed_3" + } + ] + }, + { + "id": "jolnor_quests_completed_3", + "message": "Você tem nosso agradecimento, amigo. Você sempre vai encontrar um abrigo aqui em Vilegard. Seja bem-vindo a nossa aldeia.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_select_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_kaori.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_kaori.json new file mode 100644 index 000000000..49fac4a3e --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_kaori.json @@ -0,0 +1,296 @@ +[ + { + "id": "kaori_start", + "replies": [ + { + "nextPhraseID": "kaori_default_1", + "requires": { + "progress": "kaori:20" + } + }, + { + "nextPhraseID": "kaori_return_1", + "requires": { + "progress": "kaori:10" + } + }, + { + "nextPhraseID": "kaori_1" + } + ] + }, + { + "id": "kaori_1", + "message": "Você não é bem-vindo aqui. Por favor, deixe agora.", + "replies": [ + { + "text": "Porque é que todos em Vilegard tanto medo de estranhos?", + "nextPhraseID": "kaori_2" + }, + { + "text": "Jolnor me pediu para falar com você.", + "nextPhraseID": "kaori_3", + "requires": { + "progress": "kaori:5" + } + } + ] + }, + { + "id": "kaori_2", + "message": "Eu não quero falar com você. Vá falar com Jolnor, na capela, se você quiser nos ajudar.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vilegard", + "value": 10 + } + ], + "replies": [ + { + "text": "Ok, tchau.", + "nextPhraseID": "X" + }, + { + "text": "Ok. Não me conte.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "kaori_3", + "message": "Ele fez? Eu acho que você não é tão ruim assim como eu pensava.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaori_4" + } + ] + }, + { + "id": "kaori_4", + "message": "Ainda não estou convencido de que você não é um espião de Feygard enviado para causarnos dano.", + "replies": [ + { + "text": "O que você pode me dizer sobre Vilegard?", + "nextPhraseID": "kaori_trust_1" + }, + { + "text": "Posso assegurar-lhe que não sou um espião.", + "nextPhraseID": "kaori_5" + }, + { + "text": "Feygard, onde ou o que é isso?", + "nextPhraseID": "kaori_trust_1" + } + ] + }, + { + "id": "kaori_5", + "message": "Hm. Talvez não. Mas, novamente, talvez você seja. Ainda não estou certo.", + "replies": [ + { + "text": "Há algo que eu possa fazer para ganhar a sua confiança?", + "nextPhraseID": "kaori_10" + }, + { + "text": "[Bribe]Como soaria 100 moedas de ouro? Será que isso poderia ajudá-lo a confiar em mim?", + "nextPhraseID": "kaori_bribe" + } + ] + }, + { + "id": "kaori_trust_1", + "message": "Eu ainda não confio totalmente em você o suficiente para falar sobre isso.", + "replies": [ + { + "text": "Há algo que eu possa fazer para ganhar a sua confiança?", + "nextPhraseID": "kaori_10" + }, + { + "text": "[Bribe]Como soaria 100 moedas de ouro? Será que isso poderia ajudá-lo a confiar em mim?", + "nextPhraseID": "kaori_bribe" + } + ] + }, + { + "id": "kaori_bribe", + "message": "Você está tentando me subornar, garoto? Isso não vai funcionar comigo. Que uso eu teria para o ouro se você realmente fosse um espião?", + "replies": [ + { + "text": "Há algo que eu possa fazer para ganhar a sua confiança?", + "nextPhraseID": "kaori_10" + } + ] + }, + { + "id": "kaori_10", + "message": "Se você realmente quer me provar que você não é um espião de Feygard, há, na verdade, é algo que você pode fazer por mim.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaori_11" + } + ] + }, + { + "id": "kaori_11", + "message": "Até recentemente, temos vindo a utilizar poções especiais feitos de ossos enterrados, conforme a cura. Estas poções são poções de cura muito potentes, e foram usados ​​para diversas finalidades.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaori_12" + } + ] + }, + { + "id": "kaori_12", + "message": "Mas agora, elas foram proibidas por Lorde Geomyr, e seu uso parou.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaori_13" + } + ] + }, + { + "id": "kaori_13", + "message": "Eu realmente gostaria de ter um pouco mais dessas. Se você pode me trazer de 10 poções de farinha de ossos, eu poderia pensar em confiar em você um pouco mais.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kaori", + "value": 10 + } + ], + "replies": [ + { + "text": "OK. Vou obter algumas poções para você.", + "nextPhraseID": "kaori_14" + }, + { + "text": "Não. Se elas são proibidos, há provavelmente uma boa razão por trás disso. Você não deve usá-las.", + "nextPhraseID": "kaori_15" + }, + { + "text": "Eu já tenho algumas dos poções comigo que posso lhe dar", + "nextPhraseID": "kaori_20", + "requires": { + "item": { + "itemID": "bonemeal_potion", + "quantity": 10, + "requireType": 0 + } + } + } + ] + }, + { + "id": "kaori_return_1", + "message": "Olá novamente. Você já encontrou as 10 poções de farinha de ossos qhe lhe pedi?", + "replies": [ + { + "text": "Não, eu ainda estou procurando por elas.", + "nextPhraseID": "kaori_14" + }, + { + "text": "Sim, eu trouxe suas poções.", + "nextPhraseID": "kaori_20", + "requires": { + "item": { + "itemID": "bonemeal_potion", + "quantity": 10, + "requireType": 0 + } + } + }, + { + "text": "Não. Se elas são proibidos, há provavelmente uma boa razão por trás disso. Você não deve usá-las.", + "nextPhraseID": "kaori_15" + } + ] + }, + { + "id": "kaori_14", + "message": "Bem, se apresse. Eu realmente preciso delas em breve." + }, + { + "id": "kaori_15", + "message": "Ok. Agora, por favor me deixe." + }, + { + "id": "kaori_20", + "message": "Bom. Dê-me as porções.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kaori", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "kaori_21" + } + ] + }, + { + "id": "kaori_21", + "message": "Sim, iss é suficiente. Muito obrigado, garoto. Talvez você seja legal, apesar de tudo. Que a Sombra cuide de você.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaori_default_1" + } + ] + }, + { + "id": "kaori_default_1", + "message": "Existe algo que você gostaria de falar?", + "replies": [ + { + "text": "O que você pode me dizer sobre Vilegard?", + "nextPhraseID": "kaori_vilegard_1" + }, + { + "text": "Porque é que todos em Vilegard têm tanto medo de estranhos?", + "nextPhraseID": "kaori_vilegard_2" + } + ] + }, + { + "id": "kaori_vilegard_1", + "message": "Você deveria ir falar com Erttu se quiser saber sobe o passado de Vilegard. Ele mora aqui há muito mais tempo do que eu.", + "replies": [ + { + "text": "Ok, vou fazer isso.", + "nextPhraseID": "kaori_default_1" + } + ] + }, + { + "id": "kaori_vilegard_2", + "message": "Temos um histórico de pessoas que vêm aqui e faze, travessuras. Com o tempo, aprendemos que manter-nos isolados funciona melhor.", + "replies": [ + { + "text": "Isso soa como uma boa ideia.", + "nextPhraseID": "kaori_vilegard_3" + }, + { + "text": "Isso parece errado.", + "nextPhraseID": "kaori_vilegard_3" + } + ] + }, + { + "id": "kaori_vilegard_3", + "message": "Enfim, é por isso que somos tão desconfiados de estranhos.", + "replies": [ + { + "text": "Eu percebo.", + "nextPhraseID": "kaori_default_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_kaverin.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_kaverin.json new file mode 100644 index 000000000..3d76db55c --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_kaverin.json @@ -0,0 +1,399 @@ +[ + { + "id": "kaverin", + "replies": [ + { + "nextPhraseID": "kaverin_decline2", + "requires": { + "progress": "kaverin:21" + } + }, + { + "nextPhraseID": "kaverin_fight_1", + "requires": { + "progress": "kaverin:60" + } + }, + { + "nextPhraseID": "kaverin_done_ret", + "requires": { + "progress": "kaverin:90" + } + }, + { + "nextPhraseID": "kaverin_done3", + "requires": { + "progress": "kaverin:45" + } + }, + { + "nextPhraseID": "kaverin_done1", + "requires": { + "progress": "kaverin:40" + } + }, + { + "nextPhraseID": "kaverin_return1", + "requires": { + "progress": "kaverin:25" + } + }, + { + "nextPhraseID": "kaverin_accept2", + "requires": { + "progress": "kaverin:22" + } + }, + { + "nextPhraseID": "kaverin_8r", + "requires": { + "progress": "kaverin:20" + } + }, + { + "nextPhraseID": "kaverin_1" + } + ] + }, + { + "id": "kaverin_1", + "message": "Pelo seu aspecto, você não parece ser daqui. Isso se aplica a mim também. He he.", + "replies": [ + { + "text": "Eu sou da vila de Crossglen, mais ao oeste daqui.", + "nextPhraseID": "kaverin_2" + } + ] + }, + { + "id": "kaverin_2", + "message": "Crossglen! Eu conheço o lugar, não é longe de Fallhaven, certo?", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaverin_3" + } + ] + }, + { + "id": "kaverin_3", + "message": "Eu tenho um velho... digamos... amigo... de Fallhaven. Atende pelo nome de Unzel.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaverin_4" + } + ] + }, + { + "id": "kaverin_4", + "message": "Você por acaso não o conhece, não?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kaverin", + "value": 10 + } + ], + "replies": [ + { + "text": "Não, eu nunca o conheci.", + "nextPhraseID": "kaverin_5" + }, + { + "text": "Sim, eu conheci p tolo. Ele foi uma presa fácil.", + "nextPhraseID": "kaverin_6", + "requires": { + "progress": "vacor:60" + } + }, + { + "text": "Sim, eu já conheci. Eu ainda tenho um pouco de seu sangue em minhas botas.", + "nextPhraseID": "kaverin_6", + "requires": { + "progress": "vacor:60" + } + }, + { + "text": "Sim, eu mesmo ajudei a derrotar um canalha chamado Vacor.", + "nextPhraseID": "kaverin_7", + "requires": { + "progress": "vacor:61" + } + } + ] + }, + { + "id": "kaverin_5", + "message": "Eu acho que ele consegue se virar. Espero que ele esteja bem. Se você o encontrar, por favor, diga-lhe um oi da minha parte.", + "replies": [ + { + "text": "Estou tentando encontrar meu irmão Andor, você o viu?", + "nextPhraseID": "kaverin_5b" + } + ] + }, + { + "id": "kaverin_5b", + "message": "Andor? Não, sinto muito. Eu nunca ouvi falar dele." + }, + { + "id": "kaverin_6", + "message": "Você?! Mas .. Mas .. Isso é terrível! Eu aposto que você é um dos capangas que seguiam a Vacor.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaverin_fight_1" + } + ] + }, + { + "id": "kaverin_fight_1", + "message": "Ah, sim, eu posso sentir isso. Você trabalha para Vacor! Ele deve ser detido!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kaverin", + "value": 60 + } + ], + "replies": [ + { + "text": "Lute!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "kaverin_7", + "message": "Excelente, que é uma boa notícia! Que você caminhe com a Sombra, meu amigo!", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaverin_8" + } + ] + }, + { + "id": "kaverin_8r", + "message": "Meu amigo retornou de Fallhaven. É reconfortante saber que Unzel ainda está vivo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaverin_8" + } + ] + }, + { + "id": "kaverin_8", + "message": "Você estaria disposto a entregar-lhe uma mensagem?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kaverin", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "kaverin_9" + } + ] + }, + { + "id": "kaverin_9", + "message": "Você seria bem recompensado por seus esforços.", + "replies": [ + { + "text": "Qualquer coisa por causa da Sombra.", + "nextPhraseID": "kaverin_accept1" + }, + { + "text": "Certamente.", + "nextPhraseID": "kaverin_accept1" + }, + { + "text": "Não, eu estou cansado de ajudar às pessoas.", + "nextPhraseID": "kaverin_decline1" + } + ] + }, + { + "id": "kaverin_decline1", + "message": "Isso é lamentável, você parecia um menino brilhante para mim.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kaverin", + "value": 21 + } + ] + }, + { + "id": "kaverin_decline2", + "message": "Meu amigo retornou de Fallhaven. Por favor, deixe-me agora, eu tenho coisas para fazer." + }, + { + "id": "kaverin_accept1", + "message": "Bom, isso é exatamente o que eu queria ouvir.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kaverin", + "value": 22 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "kaverin_accept2" + } + ] + }, + { + "id": "kaverin_accept2", + "message": "Certifique-se que isso não caia nas mãos de Feygard, ou seus partidários.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaverin_accept3" + } + ] + }, + { + "id": "kaverin_accept3", + "message": "(Ele dá-lhe uma mensagem selada)", + "rewards": [ + { + "rewardType": 1, + "rewardID": "kaverin_message" + }, + { + "rewardType": 0, + "rewardID": "kaverin", + "value": 25 + } + ], + "replies": [ + { + "text": "Você pode contar comigo, Kaverin.", + "nextPhraseID": "kaverin_accept4" + } + ] + }, + { + "id": "kaverin_accept4", + "message": "Bom. Agora vá entregar a mensagem para Unzel." + }, + { + "id": "kaverin_return1", + "message": "É bom ver você de novo. Você já entregou minha mensagem para Unzel?", + "replies": [ + { + "text": "Sim, a mensagem foi entregue.", + "nextPhraseID": "kaverin_done1", + "requires": { + "progress": "kaverin:30" + } + }, + { + "text": "Não, ainda não.", + "nextPhraseID": "kaverin_return2" + } + ] + }, + { + "id": "kaverin_return2", + "message": "Por favor, não demore muito. Caminhe com a Sombra, meu amigo." + }, + { + "id": "kaverin_done1", + "message": "Obrigado, meu amigo. Que você caminhe no brilho da Sombra.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kaverin", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "kaverin_done2" + } + ] + }, + { + "id": "kaverin_done2", + "message": "Leve este mapa como compensação por um trabalho bem feito.", + "rewards": [ + { + "rewardType": 1, + "rewardID": "vacor_map" + }, + { + "rewardType": 0, + "rewardID": "kaverin", + "value": 45 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "kaverin_done3" + } + ] + }, + { + "id": "kaverin_done3", + "message": "Descobrimos um dos esconderijos Vacor, longe para o sul.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaverin_done4" + } + ] + }, + { + "id": "kaverin_done4", + "message": "Como você nos ajudou a detê-lo, é justo que você fique com isso.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaverin_done5" + } + ] + }, + { + "id": "kaverin_done5", + "message": "De acordo com o mapa, o esconderijo deve ficar logo a noroeste da antiga prisão de Flagstone. Sinta-se livre para pegar o que estiver por lá.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kaverin", + "value": 90 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "kaverin_done6" + } + ] + }, + { + "id": "kaverin_done6", + "message": "Caminhe com a Sombra, meu amigo." + }, + { + "id": "kaverin_done_ret", + "message": "Olá novamente. É reconfortante saber que Unzel ainda está vivo, e que você entregou a minha mensagem para ele.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaverin_done6" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_kendelow.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_kendelow.json new file mode 100644 index 000000000..3610297f0 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_kendelow.json @@ -0,0 +1,238 @@ +[ + { + "id": "kendelow", + "replies": [ + { + "nextPhraseID": "kendelow_1", + "requires": { + "progress": "remgard2:45" + } + }, + { + "nextPhraseID": "kendelow_2" + } + ] + }, + { + "id": "kendelow_1", + "message": "Ouvi dizer que você nos ajudou a nos livrar da bruxa Algangror. Obrigado.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kendelow_d" + } + ] + }, + { + "id": "kendelow_2", + "message": "Bem-vindo ao meu botequim. Eu espero que possa tornar sua estadia o mais agradável.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kendelow_d" + } + ] + }, + { + "id": "kendelow_d", + "message": "Como posso ser útil?", + "replies": [ + { + "text": "O que há para fazer por aqui?", + "nextPhraseID": "kendelow_3" + }, + { + "text": "Você tem alguma coisa para negociar?", + "nextPhraseID": "kendelow_shop" + }, + { + "text": "Existem quartos disponíveis?", + "nextPhraseID": "kendelow_room_1" + } + ] + }, + { + "id": "kendelow_shop", + "message": "Ah, claro. Aqui, dê uma olhada.", + "replies": [ + { + "text": "N", + "nextPhraseID": "S" + } + ] + }, + { + "id": "kendelow_3", + "message": "A maioria das pessoas aqui em Remgard cuidam das suas colheitas. Fora isso, eu ouvi que o armeiro Arnal mais na costa ocidental, tem alguns bom produtos para negociar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kendelow_4" + } + ] + }, + { + "id": "kendelow_4", + "message": "Além disso, geralmente recebemos muitos visitantes aqui na taverna. Ultimamente, temos tido muito menos visitas por aqui, no entanto, com o fechamento da ponte, por causa dessas pessoas desaparecidas e tudo o mais.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kendelow_5" + } + ] + }, + { + "id": "kendelow_5", + "message": "Em seu caminho, talvez você tenha notado que temos até uma visita dos Cavaleiros de Elythom aqui na taberna? Parece que mais e mais pessoas estão se conscientizando da hospitalidade de Remgard.", + "replies": [ + { + "text": "Obrigado. Eu tenho algumas outras perguntas.", + "nextPhraseID": "kendelow_d" + } + ] + }, + { + "id": "kendelow_room_1", + "replies": [ + { + "nextPhraseID": "kendelow_room_2", + "requires": { + "progress": "nondisplay:21" + } + }, + { + "nextPhraseID": "kendelow_room_3" + } + ] + }, + { + "id": "kendelow_room_2", + "message": "Você já alugou meu quarto anteriormente. Não temos quaisquer outros quartos disponíveis alem dele." + }, + { + "id": "kendelow_room_3", + "message": "Por quê? Sim, de fato, tenho sim. Eu tenho um quarto confortável disponível no andar superior.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kendelow_room_4" + } + ] + }, + { + "id": "kendelow_room_4", + "message": "O inquilino anterior deixou-o apressadamente alguns dias atrás.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kendelow_room_5" + } + ] + }, + { + "id": "kendelow_room_5", + "message": "Você pode alugar o quarto por tanto tempo quanto você quiser por apenas 600 moedas de ouro.", + "replies": [ + { + "text": "600 moedas de ouro, você está louco!? Isso é uma fortuna.", + "nextPhraseID": "kendelow_room_6s" + }, + { + "text": "Existe alguma coisa que você pode fazer para baixar o preço?", + "nextPhraseID": "kendelow_room_6s" + }, + { + "text": "Eu vou ocupá-lo. Aqui está o ouro.", + "nextPhraseID": "kendelow_room_8", + "requires": { + "item": { + "itemID": "gold", + "quantity": 600, + "requireType": 0 + } + } + }, + { + "text": "Eu não tenho tanto ouro.", + "nextPhraseID": "kendelow_room_7" + } + ] + }, + { + "id": "kendelow_room_6s", + "replies": [ + { + "nextPhraseID": "kendelow_room_6b", + "requires": { + "progress": "remgard2:45" + } + }, + { + "nextPhraseID": "kendelow_room_6a" + } + ] + }, + { + "id": "kendelow_room_6a", + "message": "O preço é fixo. Eu não posso sair por aí distribuindo descontos para qualquer um. Além disso, mantenha em mente que você pode alugá-lo durante o tempo que você deseja.", + "replies": [ + { + "text": "Eu vou ocupá-lo. Aqui está o ouro.", + "nextPhraseID": "kendelow_room_8", + "requires": { + "item": { + "itemID": "gold", + "quantity": 600, + "requireType": 0 + } + } + }, + { + "text": "Eu não tenho tanto ouro.", + "nextPhraseID": "kendelow_room_7" + } + ] + }, + { + "id": "kendelow_room_6b", + "message": "Como você nos ajudou aqui em Remgard com a bruxa Algangror, eu estou preparado para oferecer-lhe um desconto. Que tal lhe parecem 400 moedas de ouro por ele, ao invés?", + "replies": [ + { + "text": "Eu vou ocupá-lo. Aqui está o ouro.", + "nextPhraseID": "kendelow_room_8", + "requires": { + "item": { + "itemID": "gold", + "quantity": 400, + "requireType": 0 + } + } + }, + { + "text": "Eu não tenho tanto ouro.", + "nextPhraseID": "kendelow_room_7" + } + ] + }, + { + "id": "kendelow_room_7", + "message": "Estarei esperando pelo seu retorno, uma vez que você consiga ouro, se você ainda estiver interessado.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kendelow_d" + } + ] + }, + { + "id": "kendelow_room_8", + "message": "Obrigado. O quarto é no andar de cima. Você pode alugá-lo durante o tempo que você quiser.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nondisplay", + "value": 21 + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_loneford_1.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_loneford_1.json new file mode 100644 index 000000000..94dc7262c --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_loneford_1.json @@ -0,0 +1,259 @@ +[ + { + "id": "loneford_farmer0", + "message": "O que fizemos para merecer isso?", + "replies": [ + { + "text": "O que há de errado?", + "nextPhraseID": "loneford_farmer0_1" + } + ] + }, + { + "id": "loneford_farmer0_1", + "message": "Você não ouviu sobre a doença?", + "replies": [ + { + "text": "Que doença?", + "nextPhraseID": "loneford_farmer_il_1" + } + ] + }, + { + "id": "loneford_farmer_il_1", + "message": "Tudo começou há alguns dias. Selgan encontrou Hesor desmaiado em sua lavoura antiga, com o rosto completamente branco e tremendo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "loneford_farmer_il_2" + } + ] + }, + { + "id": "loneford_farmer_il_2", + "message": "Poucos dias depois, Selgan começou a mostrar os mesmos sintomas que Hesor, com dores de estômago. Eu também comecei a sentir as dores e tem arrepios.", + "replies": [ + { + "text": "N", + "nextPhraseID": "loneford_farmer_il_3" + } + ] + }, + { + "id": "loneford_farmer_il_3", + "message": "Em seguida, todas as pessoas apresentaram os sintomas de uma forma ou de outra.", + "replies": [ + { + "text": "N", + "nextPhraseID": "loneford_farmer_il_4" + } + ] + }, + { + "id": "loneford_farmer_il_4", + "message": "Pobre Selgan e Hesor: aparentemente pegaram a forma mais forte disso. âmbos morreram anteontem.", + "replies": [ + { + "text": "N", + "nextPhraseID": "loneford_farmer_il_5" + } + ] + }, + { + "id": "loneford_farmer_il_5", + "message": "Maldita doença, por que tinha que ser Selgan e Hesor? Eu quero saber quem é o próximo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "loneford_farmer_il_6" + } + ] + }, + { + "id": "loneford_farmer_il_6", + "message": "Nós todos começamos a investigar o que poderia ser a causa. Ainda não descobrimos a causa, mas temos as nossas suspeitas.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "loneford_farmer_il_7" + } + ] + }, + { + "id": "loneford_farmer_il_7", + "message": "Felizmente, agora Feygard enviou patrulhas aqui para ajudar a proteger a vila, pelo menos. Nós ainda estamos sofrendo, porém, e tememos quem será o próximo a ser tomado pela doença.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 11 + } + ] + }, + { + "id": "loneford_wellguard", + "message": "Por favor, informar qualquer comportamento suspeito que você puder descobrir a Kuldan." + }, + { + "id": "rolwynn", + "message": "O que fizemos para merecer isso? Por favor, você pode nos ajudar?", + "replies": [ + { + "text": "O que você acha que é a causa da doença?", + "nextPhraseID": "rolwynn_1", + "requires": { + "progress": "loneford:11" + } + }, + { + "text": "O que há de errado?", + "nextPhraseID": "loneford_farmer0_1" + } + ] + }, + { + "id": "rolwynn_1", + "message": "Meu palpite é que isso deve ter sido algo feito por essas pessoas arrogantes de Feygard.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rolwynn_2" + } + ] + }, + { + "id": "rolwynn_2", + "message": "Eles estão sempre procurando maneiras de tornar nossa vida um pouco mais difícil.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rolwynn_3" + } + ] + }, + { + "id": "rolwynn_3", + "message": "Tentamos cultivar nossas terras para nos alimentar, mas eles exigem que eles recebam uma parcela de tudo o que obtemos das vendas", + "replies": [ + { + "text": "N", + "nextPhraseID": "rolwynn_4" + } + ] + }, + { + "id": "rolwynn_4", + "message": "Ultimamente, as culturas não têm sido tão boas como costumavam ser, e os guardas, aparentemente, acho que estão embolsando com uma parcela do que está sendo pago.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rolwynn_5" + } + ] + }, + { + "id": "rolwynn_5", + "message": "Estou certo de que eles tenham feito algo conosco, como punição por não seguirmos suas regras *. Eles estão sempre falando sobre como as leis e as regras são tão preciosas para eles.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 22 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "loneford_ill_c_1" + } + ] + }, + { + "id": "loneford_ill_c_1", + "replies": [ + { + "nextPhraseID": "loneford_ill_c_2", + "requires": { + "progress": "loneford:21" + } + }, + { + "nextPhraseID": "loneford_ill_c_n" + } + ] + }, + { + "id": "loneford_ill_c_2", + "replies": [ + { + "nextPhraseID": "loneford_ill_c_3", + "requires": { + "progress": "loneford:22" + } + }, + { + "nextPhraseID": "loneford_ill_c_n" + } + ] + }, + { + "id": "loneford_ill_c_3", + "replies": [ + { + "nextPhraseID": "loneford_ill_c_4", + "requires": { + "progress": "loneford:23" + } + }, + { + "nextPhraseID": "loneford_ill_c_n" + } + ] + }, + { + "id": "loneford_ill_c_4", + "replies": [ + { + "nextPhraseID": "loneford_ill_c_5", + "requires": { + "progress": "loneford:24" + } + }, + { + "nextPhraseID": "loneford_ill_c_n" + } + ] + }, + { + "id": "loneford_ill_c_n", + "message": "Isso é o que eu acho, que de qualquer maneira." + }, + { + "id": "loneford_ill_c_5", + "message": "Há algo mais, também. Eu conversei com aquele bêbado, Landa, na taberna, mais cedo hoje. Ele disse que viu alguma coisa, mas não se atreveu a dizer-me o que era.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 25 + } + ], + "replies": [ + { + "text": "Obrigado, eu vou falar com ele.", + "nextPhraseID": "X" + }, + { + "text": "Grande, devo falar com mais um bêbado.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_loneford_2.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_loneford_2.json new file mode 100644 index 000000000..624753a87 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_loneford_2.json @@ -0,0 +1,284 @@ +[ + { + "id": "loneford_guard0", + "message": "Nós mantemos a ordem por aqui. Eu me pergunto o que as pessoas de Loneford fariam sem nós, guardas de Feygard. Coitados." + }, + { + "id": "loneford_villager0", + "message": "*tosse* Por favor, ajude-nos, em breve não haverá mais muitos de nós!", + "replies": [ + { + "text": "O que houve?", + "nextPhraseID": "loneford_farmer0_1" + } + ] + }, + { + "id": "loneford_villager1", + "message": "Não consigo sentir mais o meu rosto! Por favor, ajude-nos!", + "replies": [ + { + "text": "O que há de errado?", + "nextPhraseID": "loneford_farmer0_1" + } + ] + }, + { + "id": "loneford_villager2", + "message": "Não mexa comigo, eu preciso terminar de cortar a madeira. Vá incomodar outra pessoa." + }, + { + "id": "loneford_villager3", + "message": "Eu temo pela nossa sobrevivência. Parece que estamos piorando a cada dia que passa. É uma coisa boa que Feygard nos ajude, pelo menos.", + "replies": [ + { + "text": "O que há de errado?", + "nextPhraseID": "loneford_farmer0_1" + } + ] + }, + { + "id": "loneford_villager4", + "message": "Não te conheço de algum lugar? Você parece-me familiar de alguma forma." + }, + { + "id": "landa", + "replies": [ + { + "nextPhraseID": "landa_already_1", + "requires": { + "progress": "loneford:35" + } + }, + { + "nextPhraseID": "landa_1" + } + ] + }, + { + "id": "landa_1", + "message": "Wha? Você? Não, fica longe de mim!", + "replies": [ + { + "text": "Ouvi dizer que você viu alguma coisa que você não vai falar.", + "nextPhraseID": "landa_2", + "requires": { + "progress": "loneford:25" + } + } + ] + }, + { + "id": "landa_2", + "message": "(Landa dá-lhe um olhar aterrorizado)", + "replies": [ + { + "text": "N", + "nextPhraseID": "landa_3" + } + ] + }, + { + "id": "landa_3", + "message": "Você estava lá! Eu v-v-vi você!", + "replies": [ + { + "text": "N", + "nextPhraseID": "landa_4" + } + ] + }, + { + "id": "landa_4", + "message": "Não foi você? Não, parecia com você, e eu tenho uma boa memória! * Morde o lábio *", + "replies": [ + { + "text": "Calma.", + "nextPhraseID": "landa_5" + } + ] + }, + { + "id": "landa_5", + "message": "Fique longe de mim, o que quer que você tenha feito por lá, é problema seu e eu não quero me intrometer!", + "replies": [ + { + "text": "Você deve ter me confundido com outra pessoa.", + "nextPhraseID": "landa_6" + } + ] + }, + { + "id": "landa_6", + "message": "Por favor, não me machuque!", + "replies": [ + { + "text": "Landa, você deve ter me confundido com outra pessoa! O que foi que você viu?", + "nextPhraseID": "landa_7" + } + ] + }, + { + "id": "landa_7", + "message": "Não, é menor do que ele.", + "replies": [ + { + "text": "Você vai me dizer o que foi que você viu?", + "nextPhraseID": "landa_8" + } + ] + }, + { + "id": "landa_8", + "message": "O rapaz. Ele estava fazendo algo. Eu tentei a esgueirar-se por perto para ver o que foi que ele estava fazendo, o que eu fiz. Mas ele fugiu antes que eu pudesse ver.", + "replies": [ + { + "text": "N", + "nextPhraseID": "landa_9" + } + ] + }, + { + "id": "landa_9", + "message": "Ele fez algo no poço de Loneford.", + "replies": [ + { + "text": "Quando foi isso?", + "nextPhraseID": "landa_10" + } + ] + }, + { + "id": "landa_10", + "message": "Foi no meio da noite, no dia antes de tudo começar. No dia seguinte, eu estava dormindo durante o dia. Assim, não percebi toda a agitação quando eles trouxeram Hesor volta.", + "replies": [ + { + "text": "N", + "nextPhraseID": "landa_11" + } + ] + }, + { + "id": "landa_11", + "message": "Quase toda a aldeia queria ver o que tinha acontecido com Hesor. Guardei isso para mim e não se atrevi a falar com ninguém.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "landa_12" + } + ] + }, + { + "id": "landa_12", + "message": "No mesmo dia, outros começaram a ficar pálidos também. Eu podia ver isso em seus rostos.", + "replies": [ + { + "text": "N", + "nextPhraseID": "landa_13" + } + ] + }, + { + "id": "landa_13", + "message": "Na noite seguinte, eu estava me preparando para ir para ir para o poço e procurar todos os vestígios do que o rapaz tinha feito.", + "replies": [ + { + "text": "N", + "nextPhraseID": "landa_14" + } + ] + }, + { + "id": "landa_14", + "message": "Olhei pela janela para ver se havia alguém que pudesse me ver. Em vez disso, eu vi alguém se escondendo em torno do poço, enchendo vários frascos misturando imundice com a água do próprio poço.", + "replies": [ + { + "text": "N", + "nextPhraseID": "landa_15" + } + ] + }, + { + "id": "landa_15", + "message": "Tenho certeza que foi Buceth, da capela. Eu tenho um bom olho para as pessoas, e uma boa memória. Sim, tenho a certeza que foi Buceth.", + "replies": [ + { + "text": "N", + "nextPhraseID": "landa_16" + } + ] + }, + { + "id": "landa_16", + "message": "Além disso, não é estranho que Buceth não tenha ficado doente, enquanto todos os outros na aldeia ficaram doentes?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 31 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "landa_17" + } + ] + }, + { + "id": "landa_17", + "message": "Ele deve estar tramando algo. Ele e aquele rapaz que parecia você. Tem certeza de que não foi você?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 35 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "landa_18" + } + ] + }, + { + "id": "landa_18", + "message": "Não importa. Por favor, não diga a ninguém que eu lhe disse tudo isso.", + "replies": [ + { + "text": "N", + "nextPhraseID": "landa_19" + } + ] + }, + { + "id": "landa_19", + "message": "Agora, sai daqui garoto, antes que alguém o veja falar comigo. *Olha em volta ansiosamente*", + "replies": [ + { + "text": "Obrigado Landa. Seu segredo está seguro comigo.", + "nextPhraseID": "X" + }, + { + "text": "Obrigado Landa. Eu vou considerar isso.", + "nextPhraseID": "X" + }, + { + "text": "Você terminou? Ufa, pensei que nunca ia parar de falar.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "landa_already_1", + "message": "Você de novo? Eu já disse a você. Saia daqui antes que alguém o veja falar comigo." + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_loneford_3.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_loneford_3.json new file mode 100644 index 000000000..80b56a42c --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_loneford_3.json @@ -0,0 +1,89 @@ +[ + { + "id": "sienn", + "message": "Ha! Você parece engraçado. Você pequeno.", + "replies": [ + { + "text": "Quem é você?", + "nextPhraseID": "sienn_who_1" + }, + { + "text": "O que é essa a coisa que você está mantendo junto de si?", + "nextPhraseID": "sienn_pet_1" + } + ] + }, + { + "id": "sienn_who_1", + "message": "Me, Sienn. Eu forte!", + "replies": [ + { + "text": "O que é essa a coisa que você está mantendo junto de si?", + "nextPhraseID": "sienn_pet_1" + } + ] + }, + { + "id": "sienn_pet_1", + "message": "Bichinho, bonito!\n(Sienn faz sonzinhos fofos enquanto coça o animal no queixo dele)", + "replies": [ + { + "text": "Quem é você?", + "nextPhraseID": "sienn_who_1" + }, + { + "text": "Você sabia que Taevinn acha que você causou a doença aqui em Loneford?", + "nextPhraseID": "sienn_pet_2", + "requires": { + "progress": "loneford:24" + } + } + ] + }, + { + "id": "sienn_pet_2", + "message": "Sienn não doente! Sienn forte!" + }, + { + "id": "sienn_pet", + "message": "*Guinchando!*\n (A criatura olha para você, mostrando todos os seus dentes, ao fazer um som agudo estridente.)", + "replies": [ + { + "text": "Aqui, aqui. Fácil agora.", + "nextPhraseID": "X" + }, + { + "text": "*lentamente afastado*", + "nextPhraseID": "X" + } + ] + }, + { + "id": "siola", + "message": "Olá. Você veio para ver a minha seleção de itens?", + "replies": [ + { + "text": "Sim, vamos negociar..", + "nextPhraseID": "S" + }, + { + "text": "Qual é o negócio de Sienn ali com seu animal de estimação?", + "nextPhraseID": "siola_sienn_1" + } + ] + }, + { + "id": "siola_sienn_1", + "message": "Eu não sei onde ele o pegou. De qualquer forma, não prejudica ninguém, então eu estou bem com eles aqui. Eu percebi que alguém deve ajudá-los a ter algum lugar para ficar, e ninguém mais queria ajudá-los, assim eu os deixei ficar aqui.", + "replies": [ + { + "text": "N", + "nextPhraseID": "siola_sienn_2" + } + ] + }, + { + "id": "siola_sienn_2", + "message": "Sienn pode ser um pouco grosso, mas ele com certeza pode ser engraçado quando você começa a conhecê-lo e ele confia em você. Ele pode fazer um monte dessas expressões faciais hilárias." + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_loneford_4.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_loneford_4.json new file mode 100644 index 000000000..02cf15a4a --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_loneford_4.json @@ -0,0 +1,186 @@ +[ + { + "id": "grimion", + "message": "Olá e bem-vindo ao Loneford. Por favor, sente, eu irei logo aí.", + "replies": [ + { + "text": "Você tem algo para comer por aqui?", + "nextPhraseID": "grimion_trade_1" + }, + { + "text": "Existe um lugar onde eu possa descansar um pouco por aqui?", + "nextPhraseID": "grimion_rest_1" + } + ] + }, + { + "id": "grimion_trade_1", + "message": "Claro, dê uma olhada.", + "replies": [ + { + "text": "N", + "nextPhraseID": "S" + } + ] + }, + { + "id": "grimion_rest_1", + "message": "Claro, os guardas colocaram algumas camas no sótão. Vá falar com Arngyr lá, ele pode ser capaz de ajudá-lo." + }, + { + "id": "loneford_tavern_room", + "message": "Arngyr o agarra pelo ombro e puxa você de volta\nSe você quiser descansar aí, você precisa falar comigo primeiro." + }, + { + "id": "arngyr", + "replies": [ + { + "nextPhraseID": "arngyr_back_1", + "requires": { + "progress": "nondisplay:19" + } + }, + { + "nextPhraseID": "arngyr_1" + } + ] + }, + { + "id": "arngyr_1", + "message": "Sim, eu posso ajudá-lo?", + "replies": [ + { + "text": "Se importa se eu usar uma das camas aqui?", + "nextPhraseID": "arngyr_2" + } + ] + }, + { + "id": "arngyr_2", + "replies": [ + { + "nextPhraseID": "arngyr_3", + "requires": { + "progress": "loneford:55" + } + }, + { + "nextPhraseID": "arngyr_4" + } + ] + }, + { + "id": "arngyr_3", + "message": "Ah, não, de forma alguma. Vá em frente. Depois de tudo o que você tem feito por nós aqui em Loneford, seria um privilégio ser capaz de dar-lhe algo em retribuição a você.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nondisplay", + "value": 19 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "arngyr_6" + } + ] + }, + { + "id": "arngyr_4", + "message": "Estas camas são mais utilizadas por nós, guardas. Mas eu acho que eu poderia fazer uma exceção já que você é apenas um garoto. Digamos, 600 moedas de ouro e você poderia usá-las?", + "replies": [ + { + "text": "Claro, aqui está o ouro.", + "nextPhraseID": "arngyr_5", + "requires": { + "item": { + "itemID": "gold", + "quantity": 600, + "requireType": 0 + } + } + }, + { + "text": "O quê? Isso é um pouco demais, não acha?", + "nextPhraseID": "arngyr_7" + } + ] + }, + { + "id": "arngyr_5", + "message": "Obrigado.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nondisplay", + "value": 19 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "arngyr_6" + } + ] + }, + { + "id": "arngyr_6", + "message": "Use a cama que melhor lhe aprouver.", + "replies": [ + { + "text": "Obrigado.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "arngyr_7", + "message": "Olhar, garoto. Eu faço as regras por aqui. Se esse é o meu preço, então esse é o meu preço. É pegar ou largar.", + "replies": [ + { + "text": "Bem, aqui está o ouro", + "nextPhraseID": "arngyr_5", + "requires": { + "item": { + "itemID": "gold", + "quantity": 600, + "requireType": 0 + } + } + }, + { + "text": "Não importa. Não estou tão cansado.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "arngyr_back_1", + "message": "Olá novamente. Espero que a cama esteja suficientemente confortável." + }, + { + "id": "loneford_chapelguard", + "message": "Caminhe com a Sombra, criança." + }, + { + "id": "wallach", + "message": "Ah, Selgan pobre velho. Por que tinha que ser ele? Eu quero saber quem é o próximo, e eu temo pelo pior." + }, + { + "id": "mienn", + "message": "Não consigo ver como poderíamos fazer isso sem a ajuda dos guardas agradáveis de Feygard por aqui. Temos realmente sorte de ter a sua ajuda." + }, + { + "id": "conren", + "message": "Temos a sorte de ter Feygard aqui nos ajudando." + }, + { + "id": "telund", + "message": "Quem é você? Você viu meu pai Selgan? Todos me dizem que ele vai estar de volta em breve, mas todos eles estão mentindo! Eu sei, eu sei! Ele não estava em casa ontem, e ele não está em casa hoje." + }, + { + "id": "loneford_tavern_patron", + "message": "Este não é lugar para um garoto como você. Eu acho melhor você ir embora agora." + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_loneford_kuldan.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_loneford_kuldan.json new file mode 100644 index 000000000..a4673d07e --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_loneford_kuldan.json @@ -0,0 +1,174 @@ +[ + { + "id": "kuldan", + "replies": [ + { + "nextPhraseID": "kuldan_c_1", + "requires": { + "progress": "loneford:55" + } + }, + { + "nextPhraseID": "kuldan_bc_1", + "requires": { + "progress": "loneford:54" + } + }, + { + "nextPhraseID": "kuldan_1" + } + ] + }, + { + "id": "kuldan_1", + "message": "Por favor, informe qualquer comportamento suspeito que você pode ver.", + "replies": [ + { + "text": "Eu sei qual é a causa da doença. Dê uma olhada neste frasco que Buceth tinha com ele.", + "nextPhraseID": "kuldan_bc_1", + "requires": { + "progress": "loneford:50", + "item": { + "itemID": "buceth_vial", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Quem é você?", + "nextPhraseID": "kuldan_2" + } + ] + }, + { + "id": "kuldan_2", + "message": "Eu sou Kuldan, capitão do destacamento de guardas aqui em Loneford. Agora, se me der licença, tenho trabalho a fazer." + }, + { + "id": "kuldan_c_1", + "message": "Feygard é grata por sua ajuda para resolver o mistério da doença aqui em Loneford.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kuldan_c_2" + } + ] + }, + { + "id": "kuldan_c_2", + "message": "Estamos tentando ajudar as últimas pessoas que ainda estão mal aqui. Loneford pode necessitar de nossa assistência de Feygard por mais algum tempo." + }, + { + "id": "kuldan_bc_1", + "message": "O que é isso? Isso cheira a veneno Narwood. Você diz que tomou isso de Buceth?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 54 + } + ], + "replies": [ + { + "text": "Buceth era parte de um plano de sacerdotes de Nor City para envenenar a água bem aqui em Loneford.", + "nextPhraseID": "kuldan_bc_2" + } + ] + }, + { + "id": "kuldan_bc_2", + "message": "Mas isso significa .. É pela água que as pessoas estão a ficar doente? Isso explica um monte de coisas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kuldan_bc_3" + } + ] + }, + { + "id": "kuldan_bc_3", + "message": "Você meu amigo fez a Loneford um grande serviço ao encontrar isto, e, por extensão, a Feygard também. Devemos ir pegar Buceth e o responsabilizar pelo que ele tem feito.", + "replies": [ + { + "text": "Ele já está morto", + "nextPhraseID": "kuldan_bc_4" + } + ] + }, + { + "id": "kuldan_bc_4", + "message": "Morto, você diz? Hum, não é a forma como fazemos as coisas em Feygard, mas acho que este é um caso excepcional.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kuldan_bc_5" + } + ] + }, + { + "id": "kuldan_bc_5", + "message": "Eu sempre suspeitei que esses selvagens de Nor City estavam atrás de tudo isso.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kuldan_bc_6" + } + ] + }, + { + "id": "kuldan_bc_6", + "message": "É bom saber que agora, pelo menos, tenhamos alguma evidência para apoiar nossas reivindicações.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kuldan_bc_7" + } + ] + }, + { + "id": "kuldan_bc_7", + "message": "Quanto a Loneford, acho que vamos ter que começar a trazer água de Feygard para ajudar as pessoas aqui. Que bom que eles nos tenham por perto. O que eles fariam, caso contrário?", + "replies": [ + { + "text": "N", + "nextPhraseID": "kuldan_bc_8" + } + ] + }, + { + "id": "kuldan_bc_8", + "message": "E você, meu amigo - você deve, naturalmente, ser suficientemente recompensado por sua ajuda neste assunto. Você deve viajar para a gloriosa cidade de Feygard para o noroeste e reportar-se ao taifeiro do castelo, para mais instruções.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kuldan_bc_9" + } + ] + }, + { + "id": "kuldan_bc_9", + "message": "Acontece que eu conheço pessoalmente o taifeiro do castelo, e eu vou mandar avisá-lo sobre sua ajuda aqui.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kuldan_bc_10" + } + ] + }, + { + "id": "kuldan_bc_10", + "message": "Pela a glória de Feygard, o povo de Loneford pôde sobreviver graças à sua ajuda.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 55 + } + ] + }, + { + "id": "kuldan_guard", + "message": "O quê? Fale com o chefe." + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_maelveon.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_maelveon.json new file mode 100644 index 000000000..dce0ac1eb --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_maelveon.json @@ -0,0 +1,78 @@ +[ + { + "id": "maelveon", + "message": "[Você sente um formigamento em todo o seu corpo quando uma figura assustadora começa a falar.]", + "replies": [ + { + "text": "N", + "nextPhraseID": "maelveon_1" + } + ] + }, + { + "id": "maelveon_1", + "message": "Que a Ssssombra o carregue.", + "replies": [ + { + "text": "N", + "nextPhraseID": "maelveon_2" + } + ] + }, + { + "id": "maelveon_2", + "message": "G..árgula da Sombra.", + "replies": [ + { + "text": "N", + "nextPhraseID": "maelveon_3" + } + ] + }, + { + "id": "maelveon_3", + "message": "A..guarde a Ssssombra em você.", + "replies": [ + { + "text": "A Sombra, o que quer dizer?", + "nextPhraseID": "maelveon_4" + }, + { + "text": "Criatura do mal, morra!!", + "nextPhraseID": "maelveon_4" + }, + { + "text": "Eu não serei afetados por seu absurdo!", + "nextPhraseID": "maelveon_4" + } + ] + }, + { + "id": "maelveon_4", + "message": "[A figura levanta a mão e aponta para você]", + "replies": [ + { + "text": "N", + "nextPhraseID": "maelveon_5" + } + ] + }, + { + "id": "maelveon_5", + "message": "Sssshadow estar com você.", + "replies": [ + { + "text": "Sombra, o que?", + "nextPhraseID": "F" + }, + { + "text": "criatura, do mal, morra!", + "nextPhraseID": "F" + }, + { + "text": "Por favor, não me machuque!", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_mazeg.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_mazeg.json new file mode 100644 index 000000000..215531494 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_mazeg.json @@ -0,0 +1,290 @@ +[ + { + "id": "mazeg", + "replies": [ + { + "nextPhraseID": "mazeg_1", + "requires": { + "progress": "bwm_agent:240" + } + }, + { + "nextPhraseID": "mazeg_2" + } + ] + }, + { + "id": "mazeg_1", + "message": "Amigo, bem-vindo! Gostaria de olhar minha seleção de multa poções e pomadas?", + "replies": [ + { + "text": "Claro. Mostre-me o que você tem.", + "nextPhraseID": "S" + }, + { + "text": "Eu estou procurando algum extrato de medula de Lyson, paraHjaldar em Remgard.", + "nextPhraseID": "mazeg_e_1", + "requires": { + "progress": "sisterfight:45" + } + } + ] + }, + { + "id": "mazeg_2", + "message": "Viajante, bem-vindo. Você veio para pedir minha ajuda e a de minhas poções?", + "replies": [ + { + "text": "Sim. Por favor, mostre-me o que você tem.", + "nextPhraseID": "blackwater_notrust" + }, + { + "text": "Eu estou procurando algum extrato de medula de Lyson, para Hjaldar em Remgard.", + "nextPhraseID": "mazeg_e_1", + "requires": { + "progress": "sisterfight:45" + } + } + ] + }, + { + "id": "mazeg_e_1", + "replies": [ + { + "nextPhraseID": "mazeg_d", + "requires": { + "progress": "sisterfight:55" + } + }, + { + "nextPhraseID": "mazeg_e_5b", + "requires": { + "progress": "sisterfight:51" + } + }, + { + "nextPhraseID": "mazeg_e_5b", + "requires": { + "progress": "sisterfight:50" + } + }, + { + "nextPhraseID": "mazeg_e_2" + } + ] + }, + { + "id": "mazeg_d", + "message": "Eu já lhe vendi um pouco antes. Será que você perdeu? Por favor, diga a meu velho amigo Hjaldar velho amigo que eu disse: Olá." + }, + { + "id": "mazeg_e_2", + "message": "Hjaldar, meu velho amigo! Diga-me, como ele está, nestes dias?", + "replies": [ + { + "text": "Ele me pediu para retransmitir suas saudações para você, e para lhe dizer que ele está bem.", + "nextPhraseID": "mazeg_e_3" + }, + { + "text": "Ele está doente, e piora a cada dia.", + "nextPhraseID": "mazeg_e_4" + } + ] + }, + { + "id": "mazeg_e_3", + "message": "Oh, estou tão feliz em ouvir isso! Temos certeza que tivemos bons momentos ​enquanto trabalhávamos juntos.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mazeg_e_5" + } + ] + }, + { + "id": "mazeg_e_4", + "message": "Sinto muito por ouvir isso. Ele sempre me pareceu um velho resistente para mim.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mazeg_e_5" + } + ] + }, + { + "id": "mazeg_e_5", + "message": "Você pediu algum extrato de medula de Lyson.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mazeg_e_5b" + } + ] + }, + { + "id": "mazeg_e_5b", + "message": "Claro, eu tenho isso.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mazeg_e_6" + } + ] + }, + { + "id": "mazeg_e_6", + "replies": [ + { + "nextPhraseID": "mazeg_e_7a", + "requires": { + "progress": "bwm_agent:240" + } + }, + { + "nextPhraseID": "mazeg_e_7b" + } + ] + }, + { + "id": "mazeg_e_7a", + "message": "Como você nos ajudou até aqui no assentamento Montanha das Águas Negras antes, eu estou disposto a dar-lhe um desconto sobre o preço de algum extrato de medula de Lyson. Por 400 moedas de ouro, eu estou disposto a vender alguns deles para o meu velhoa amigo Hjaldar.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "sisterfight", + "value": 50 + } + ], + "replies": [ + { + "text": "Aqui está 400 moedas de ouro.", + "nextPhraseID": "mazeg_e_9", + "requires": { + "item": { + "itemID": "gold", + "quantity": 400, + "requireType": 0 + } + } + }, + { + "text": "Ai, está caro! Há algo que você possa fazer para baixar o preço?", + "nextPhraseID": "mazeg_e_8a" + }, + { + "text": "Eu vou voltar quando eu tiver o ouro para ele.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "mazeg_e_8a", + "message": "Não, custa 400 moedas de ouro. Esse é um preço muito bom, considerando o quão difícil isso é encontrar essa coisa. Além disso, se não fosse por Hjaldar, eu não iria mesmo estar vendendo isso para você.", + "replies": [ + { + "text": "Aqui está 400 moedas de ouro.", + "nextPhraseID": "mazeg_e_9", + "requires": { + "item": { + "itemID": "gold", + "quantity": 400, + "requireType": 0 + } + } + }, + { + "text": "Eu vou voltar quando eu tiver ouro suficiente para comprar.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "mazeg_e_7b", + "message": "Por 800 moedas de ouro, eu estou disposto a vender alguns deles para o meu velho amigo Hjaldar.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "sisterfight", + "value": 51 + } + ], + "replies": [ + { + "text": "Aqui está 800 moedas de ouro.", + "nextPhraseID": "mazeg_e_9", + "requires": { + "item": { + "itemID": "gold", + "quantity": 800, + "requireType": 0 + } + } + }, + { + "text": "Ai, está caro! Há algo que você pode fazer para baixar o preço?", + "nextPhraseID": "mazeg_e_8b" + }, + { + "text": "Eu vou voltar quando eu tiver ouro suficiente para comprar.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "mazeg_e_8b", + "message": "Não, 800 moedas de ouro é o preço. Esse é um preço muito bom, considerando o quão difícil isso é encontrar essa coisa. Além disso, se não fosse por Hjaldar, eu não iria mesmo estar vendendo isso para você.", + "replies": [ + { + "text": "Aqui está 800 moedas de ouro.", + "nextPhraseID": "mazeg_e_9", + "requires": { + "item": { + "itemID": "gold", + "quantity": 800, + "requireType": 0 + } + } + }, + { + "text": "Eu vou voltar quando eu tiver ouro suficiente para comprar.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "mazeg_e_9", + "message": "Obrigado. Aqui está um pouco de extrato de medula de Lyson.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "sisterfight", + "value": 55 + }, + { + "rewardType": 1, + "rewardID": "lyson_marrow", + "value": 0 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "mazeg_e_10" + } + ] + }, + { + "id": "mazeg_e_10", + "message": "Por favor, dê os meus mais calorosos cumprimentos ao meu bom amigo Hjaldar. Diga-lhe que estou bem.", + "replies": [ + { + "text": "Vou fazer. Obrigado e adeus.", + "nextPhraseID": "X" + }, + { + "text": "Que seja. Tchau.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_mikhail.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_mikhail.json new file mode 100644 index 000000000..6c0641c41 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_mikhail.json @@ -0,0 +1,350 @@ +[ + { + "id": "mikhail_start_select", + "replies": [ + { + "nextPhraseID": "mikhail_start_select2", + "requires": { + "progress": "mikhail_bread:100" + } + }, + { + "nextPhraseID": "mikhail_bread_continue", + "requires": { + "progress": "mikhail_bread:10" + } + }, + { + "nextPhraseID": "mikhail_start_select2" + } + ] + }, + { + "id": "mikhail_start_select2", + "replies": [ + { + "nextPhraseID": "mikhail_start_select_default", + "requires": { + "progress": "mikhail_rats:100" + } + }, + { + "nextPhraseID": "mikhail_rats_continue", + "requires": { + "progress": "mikhail_rats:10" + } + }, + { + "nextPhraseID": "mikhail_start_select_default" + } + ] + }, + { + "id": "mikhail_start_select_default", + "replies": [ + { + "nextPhraseID": "mikhail_visited", + "requires": { + "progress": "andor:1" + } + }, + { + "nextPhraseID": "mikhail_gamestart" + } + ] + }, + { + "id": "mikhail_gamestart", + "message": "Oh que bom, você acordou.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_visited" + } + ] + }, + { + "id": "mikhail_visited", + "message": "Não consigo encontrar seu irmão Andor em lugar algum. Ele não voltou desde ontem.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 1 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail3" + } + ] + }, + { + "id": "mikhail3", + "message": "Não ligue. Ele provavelmente voltará logo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_default", + "message": "Posso ajudar você com alguma coisa?", + "replies": [ + { + "text": "Você tem algumas tarefas para mim?", + "nextPhraseID": "mikhail_tasks" + }, + { + "text": "Existe algo mais que você possa me dizer sobre Andor?", + "nextPhraseID": "mikhail_andor1" + } + ] + }, + { + "id": "mikhail_tasks", + "message": "Oh sim, preciso de pão e é necessário exterminar ratazanas. Qual dessas tarefas você quer falar primeiro?\n", + "replies": [ + { + "text": "Você disse que quer pão?", + "nextPhraseID": "mikhail_bread_select" + }, + { + "text": "Qual o problema com as ratazanas?", + "nextPhraseID": "mikhail_rats_select" + }, + { + "text": "Não importa. Vamos falar sobre outras coisas.", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_andor1", + "message": "Como disse, Andor saiu ontem e ainda não retornou. Estou começando a ficar preocupado com ele.\nPor favor, procure seu irmão: ele disse que não demoraria a retornar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_andor2" + } + ] + }, + { + "id": "mikhail_andor2", + "message": "Talvez ele tenha ido na caverna de suprimentos e ficou enrolado por lá. Ou talvez ele esteja no porão da Leta, treinando com aquela espada de madeira de novo. Por favor, procure por ele na cidade.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_bread_select", + "replies": [ + { + "nextPhraseID": "mikhail_bread_complete2", + "requires": { + "progress": "mikhail_bread:100" + } + }, + { + "nextPhraseID": "mikhail_bread_continue", + "requires": { + "progress": "mikhail_bread:10" + } + }, + { + "nextPhraseID": "mikhail_bread_start" + } + ] + }, + { + "id": "mikhail_bread_start", + "message": "Ah, quase esqueci. Se você tiver algum tempo, por favor vá até a Mara, na prefeitura da cidade, e compre-me pão.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "mikhail_bread", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_bread_continue", + "message": "Você já trouxe-me o pão fornecido pela Mara?\n", + "replies": [ + { + "text": "Sim, aqui está.", + "nextPhraseID": "mikhail_bread_complete", + "requires": { + "item": { + "itemID": "bread", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Ainda não.", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_bread_complete", + "message": "Muito obrigado! Já posso fazer meu café da manhã. Fique com essas moedas pelo seu auxílio.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "mikhail_bread", + "value": 100 + }, + { + "rewardType": 1, + "rewardID": "gold20" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_bread_complete2", + "message": "Obrigado pelo pão que você me trouxe.", + "replies": [ + { + "text": "De nada.", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_rats_select", + "replies": [ + { + "nextPhraseID": "mikhail_rats_complete2", + "requires": { + "progress": "mikhail_rats:100" + } + }, + { + "nextPhraseID": "mikhail_rats_continue", + "requires": { + "progress": "mikhail_rats:10" + } + }, + { + "nextPhraseID": "mikhail_rats_start" + } + ] + }, + { + "id": "mikhail_rats_start", + "message": "Vi algumas ratazanas nos fundos do nosso jardim mais cedo. Você poderia matar quaisquer ratazanas que veja por lá.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "mikhail_rats", + "value": 10 + } + ], + "replies": [ + { + "text": "Já exterminei as ratazanas.\n", + "nextPhraseID": "mikhail_rats_complete", + "requires": { + "item": { + "itemID": "tail_trainingrat", + "quantity": 2, + "requireType": 0 + } + } + }, + { + "text": "Ok, vou checar isto no nosso jardim.", + "nextPhraseID": "mikhail_rats_start2" + } + ] + }, + { + "id": "mikhail_rats_start2", + "message": "Se você se ferir, use a cama para descansar e \nrecuperar a sua saúde.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_rats_start3" + } + ] + }, + { + "id": "mikhail_rats_start3", + "message": "Ah, não se esqueça de checar seu inventário. Você provavelmente ainda possui aquele anel velho que lhe dei. Tenha certeza de usá-lo.", + "replies": [ + { + "text": "Entendido: se me ferir, posso descansar aqui na cama; devo checar meu inventário por itens úteis.", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_rats_continue", + "message": "Você matou aquelas duas ratazanas no nosso jardim?", + "replies": [ + { + "text": "Sim, eu matei as ratazanas.\n", + "nextPhraseID": "mikhail_rats_complete", + "requires": { + "item": { + "itemID": "tail_trainingrat", + "quantity": 2, + "requireType": 0 + } + } + }, + { + "text": "Ainda não.", + "nextPhraseID": "mikhail_rats_start2" + } + ] + }, + { + "id": "mikhail_rats_complete", + "message": "Oh, você as matou? Wow, muito obrigado pela sua ajuda!\n\nSe você se feriu, use a cama para descansar e \nrecuperar a sua saúde.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "mikhail_rats", + "value": 100 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_rats_complete2", + "message": "Obrigado pela ajuda que você fez com as ratazanas.\n\nSe você se feriu, use a cama para descansar e recuperar a sua saúde.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_minarra.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_minarra.json new file mode 100644 index 000000000..dc7d8707d --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_minarra.json @@ -0,0 +1,483 @@ +[ + { + "id": "minarra", + "replies": [ + { + "nextPhraseID": "minarra_completed_1", + "requires": { + "progress": "rogorn:60" + } + }, + { + "nextPhraseID": "minarra_completing_1", + "requires": { + "progress": "rogorn:55" + } + }, + { + "nextPhraseID": "minarra_completing_1", + "requires": { + "progress": "rogorn:50" + } + }, + { + "nextPhraseID": "minarra_look_1", + "requires": { + "progress": "rogorn:20" + } + }, + { + "nextPhraseID": "minarra_return_1", + "requires": { + "progress": "rogorn:10" + } + }, + { + "nextPhraseID": "minarra_first_1" + } + ] + }, + { + "id": "minarra_first_1", + "message": "Olá. Posso ajudá-lo?", + "replies": [ + { + "text": "Você parece ter um equipamentos por aqui. Você tem alguma coisa para o vender?", + "nextPhraseID": "minarra_trade_rej" + }, + { + "text": "O que você faz aqui?", + "nextPhraseID": "minarra_first_5" + }, + { + "text": "Você deve ter uma boa visão dos arredores até aqui. Você já viu alguma coisa interessante ultimamente?", + "nextPhraseID": "minarra_first_2" + } + ] + }, + { + "id": "minarra_trade_rej", + "message": "Talvez. Mas você teria que verificar lá em baixo com Gandoren. Não negociamos com qualquer um." + }, + { + "id": "minarra_return_1", + "message": "Você voltou. Você quer algo mais?", + "replies": [ + { + "text": "Você pode me dizer de novo sobre aqueles homens que você viu?", + "nextPhraseID": "minarra_story_1" + }, + { + "text": "Você tem alguma coisa para vender?", + "nextPhraseID": "minarra_trade_rej" + }, + { + "text": "O que você faz aqui?", + "nextPhraseID": "minarra_first_5" + } + ] + }, + { + "id": "minarra_first_2", + "message": "Principalmente, eu vejo os viajantes na estrada Duleian de e para Feygard daqui.", + "replies": [ + { + "text": "N", + "nextPhraseID": "minarra_first_3" + } + ] + }, + { + "id": "minarra_first_3", + "message": "Recentemente, no entanto, tem havido uma série de movimentos de e para Loneford. Eu acho que é por causa dos problemas que têm havido por lá.", + "replies": [ + { + "text": "N", + "nextPhraseID": "minarra_first_4_s" + } + ] + }, + { + "id": "minarra_first_4_s", + "replies": [ + { + "nextPhraseID": "minarra_first_4_1", + "requires": { + "progress": "rogorn:60" + } + }, + { + "nextPhraseID": "minarra_first_4" + } + ] + }, + { + "id": "minarra_first_4", + "message": "Entretanto, eu vi algo muito interessante ontem.", + "replies": [ + { + "text": "O que foi?", + "nextPhraseID": "minarra_story_1" + }, + { + "text": "Você mencionou a estrada Duleian, o que é isso?", + "nextPhraseID": "minarra_first_6" + }, + { + "text": "Você mencionou alguns problemas em Loneford, quais os problemas a quais você está se referindo?", + "nextPhraseID": "cr_loneford_st_1" + }, + { + "text": "Não importa, eu queria perguntar-lhe quais são as suas tarefas aqui.", + "nextPhraseID": "minarra_first_5" + } + ] + }, + { + "id": "minarra_first_4_1", + "message": "Alguns animais de fazenda hoje também.", + "replies": [ + { + "text": "Você mencionou a estrada Duleian, o que é isso?", + "nextPhraseID": "minarra_first_6_1" + }, + { + "text": "Você mencionou alguns problemas em Loneford, quais os problemas a quais você está se referindo?", + "nextPhraseID": "cr_loneford_st_1" + } + ] + }, + { + "id": "minarra_first_5", + "message": "Eu lido com o armazenamento de nossos equipamentos aqui na guarda da guarita Crossroads, e eu mantenho a vigilância dos arredores.", + "replies": [ + { + "text": "Você tem alguma coisa para vender?", + "nextPhraseID": "minarra_trade_rej" + }, + { + "text": "Você viu alguma coisa interessante, ultimamente?", + "nextPhraseID": "minarra_first_2" + } + ] + }, + { + "id": "minarra_first_6", + "message": "Vê esta larga estrada que vai para fora esta guarita? Essa é a estrada Duleian. Vai direto da gloriosa cidade de Feygard, a noroeste, até Nor City, ao sudeste.", + "replies": [ + { + "text": "Você mencionou alguns problemas em Loneford, que problemas são esses?", + "nextPhraseID": "cr_loneford_st_1" + }, + { + "text": "Eu queria perguntar-lhe quais são as suas tarefas aqui?", + "nextPhraseID": "minarra_first_5" + } + ] + }, + { + "id": "minarra_first_6_1", + "message": "Veja este larga estrada que vai para fora esta guarita? Essa é a estrada Duleian. Vai direto da gloriosa cidade de Feygard, a noroeste, até Nor City, ao sudeste.", + "replies": [ + { + "text": "Você mencionou alguns problemas em Loneford, que problemas são esses?", + "nextPhraseID": "cr_loneford_st_1" + } + ] + }, + { + "id": "minarra_story_1", + "message": "Eu vi um bando de homens mal trajados vindo da estrada Duleian. Normalmente, um grupo de homens mal trajados não é algo que valha a pena reparar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "minarra_story_2" + } + ] + }, + { + "id": "minarra_story_2", + "message": "Mas esses homens combinam com a descrição de algumas pessoas que são procuradas pela patrulha de Feygard.", + "replies": [ + { + "text": "N", + "nextPhraseID": "minarra_story_3" + } + ] + }, + { + "id": "minarra_story_3", + "message": "Se eu os observei corretamente, estes homens são um bando de trapaceiros liderados por um homem chamado Rogorn, que estamos procurando prender por conta de vários casos cruéis de homicídio e roubo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "minarra_story_4" + } + ] + }, + { + "id": "minarra_story_4", + "message": "Seu líder, Rogorn, é um homem particularmente selvagem, de acordo com os relatórios de Feygard que eu li.", + "replies": [ + { + "text": "N", + "nextPhraseID": "minarra_story_5" + } + ] + }, + { + "id": "minarra_story_5", + "message": "Agora, usualmente, sairíamos à procura deles, a fim de verificar que os homens que eu vi eram de fato estes homens. Mas agora, com o problema em Loneford, não podemos dar ao luxo de enviar nenhum guarda, a não ser os que estão guardando Loneford.", + "replies": [ + { + "text": "N", + "nextPhraseID": "minarra_story_6" + } + ] + }, + { + "id": "minarra_story_6", + "message": "Mas tenho certeza de que são esses os homens. Se pudéssemos pegá-los e matá-los, o povo de Feygard estaria muito mais seguro.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "rogorn", + "value": 10 + } + ], + "replies": [ + { + "text": "Eu poderia ir procurá-los, se quiser.", + "nextPhraseID": "minarra_story_8" + }, + { + "text": "Bem, boa sorte com isso.", + "nextPhraseID": "minarra_story_7" + } + ] + }, + { + "id": "minarra_story_7", + "message": "Obrigado. Boa sorte mesmo. Agora, se me dá licença, eu preciso manter os olhos atentos na estrada." + }, + { + "id": "minarra_story_8", + "message": "Ei, isso é uma ótima ideia. Tem certeza de que você está preparado para isso? O povo de Feygard realmente seria muito grato se você fosse procurá-los.", + "replies": [ + { + "text": "N", + "nextPhraseID": "minarra_story_9" + } + ] + }, + { + "id": "minarra_story_9", + "message": "De qualquer forma, eu vi eles viajando na estrada a oeste daqui. Você sabe aquela estrada que leva à Carn Tower? Essa é a última vez que eu os vi. Você pode querer seguir esse caminho e ver se é possível identificá-los.", + "replies": [ + { + "text": "N", + "nextPhraseID": "minarra_story_10" + } + ] + }, + { + "id": "minarra_story_10", + "message": "Eles roubaram três pedaços de uma pintura muito valiosa de Feygard, conforme o relatório que eu li. Por seus crimes e da selvageria de seus atos, eles são procurados vivos ou mortos pela patrulha Feygard.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "rogorn", + "value": 20 + } + ], + "replies": [ + { + "text": "Eu estarei de volta, uma vez que eles estejão mortos. Mais alguma coisa?", + "nextPhraseID": "minarra_story_11" + } + ] + }, + { + "id": "minarra_story_11", + "message": "Sim, eu deveria também dizer que eles provavelmente vão tentar convencê-lo a acreditar em sua história.", + "replies": [ + { + "text": "N", + "nextPhraseID": "minarra_story_12" + } + ] + }, + { + "id": "minarra_story_12", + "message": "Em particular, o seu líder, Rogorn, é um vilão bem conhecido por Feygard. Nada do que ele diz é confiável.", + "replies": [ + { + "text": "N", + "nextPhraseID": "minarra_story_13" + } + ] + }, + { + "id": "minarra_story_13", + "message": "Exorto-o a não ouvir suas mentiras. Seus crimes devem ser punidos, a fim de cumprir a lei.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "rogorn", + "value": 21 + } + ], + "replies": [ + { + "text": "Vou voltar uma vez que cumprir minha tarefa.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "minarra_look_1", + "message": "Você voltou. Você encontrou os homens aos quais falamos?", + "replies": [ + { + "text": "Eu ainda estou procurando por eles.", + "nextPhraseID": "minarra_look_2" + }, + { + "text": "Sim, eu os matei e recuperei as três partes da pintura.", + "nextPhraseID": "minarra_look_3", + "requires": { + "progress": "rogorn:40", + "item": { + "itemID": "rogorn_qitem", + "quantity": 3, + "requireType": 0 + } + } + }, + { + "text": "Eu viajei para o oeste e encontrei um grupo de homens em viagem, mas, entre eles, não foram encontrados os homens aos quais você descreveu.", + "nextPhraseID": "minarra_look_5", + "requires": { + "progress": "rogorn:45" + } + } + ] + }, + { + "id": "minarra_look_2", + "message": "Bom. Volte para mim, assim que você tem algo a relatar. Nós realmente gostariamos de recuperar esses três pedaços da pintura que eles roubaram." + }, + { + "id": "minarra_look_3", + "message": "Isso é uma excelente notícia, de fato! Eu sabia que podia confiar em você.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "rogorn", + "value": 50 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "minarra_look_4" + } + ] + }, + { + "id": "minarra_look_4", + "message": "Seus serviços para Feygard serão muito apreciados.", + "replies": [ + { + "text": "N", + "nextPhraseID": "minarra_completing_1" + } + ] + }, + { + "id": "minarra_look_5", + "message": "Você tem certeza de que não eram eles? Eu tenho uma visão aguçada, é por isso que estou aqui. Eu tinha certeza que eles combinavam com a descrição dos procurados.", + "replies": [ + { + "text": "N", + "nextPhraseID": "minarra_look_6" + } + ] + }, + { + "id": "minarra_look_6", + "message": "Eu acho que vou ter que acreditar em sua palavra.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "rogorn", + "value": 55 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "minarra_completing_1" + } + ] + }, + { + "id": "minarra_completing_1", + "message": "Obrigado por me ajudar a investigar o assunto.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "rogorn", + "value": 60 + } + ], + "replies": [ + { + "text": "Você tem alguma coisa para vender?", + "nextPhraseID": "minarra_trade_1" + }, + { + "text": "Você deve ter uma boa visão dos arredores até aqui. Você já viu alguma coisa interessante ultimamente?", + "nextPhraseID": "minarra_first_2" + } + ] + }, + { + "id": "minarra_completed_1", + "message": "Obrigado por me ajudar a investigar os homens, anteriormente.", + "replies": [ + { + "text": "Você tem alguma coisa para vender?", + "nextPhraseID": "minarra_trade_1" + }, + { + "text": "Você deve ter uma boa visão dos arredores até aqui. Você já viu alguma coisa interessante ultimamente?", + "nextPhraseID": "minarra_first_2" + } + ] + }, + { + "id": "minarra_trade_1", + "replies": [ + { + "nextPhraseID": "minarra_trade_2", + "requires": { + "progress": "nondisplay:18" + } + }, + { + "nextPhraseID": "minarra_trade_rej" + } + ] + }, + { + "id": "minarra_trade_2", + "message": "Claro, dê uma olhada.", + "replies": [ + { + "text": "N", + "nextPhraseID": "S" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_norath.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_norath.json new file mode 100644 index 000000000..e730246cc --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_norath.json @@ -0,0 +1,221 @@ +[ + { + "id": "norath", + "replies": [ + { + "nextPhraseID": "norath_1" + } + ] + }, + { + "id": "norath_1", + "message": "Olá. Posso ajudá-lo?", + "replies": [ + { + "text": "eu fui enviado por Jhaeld para perguntar sobre sua esposa desaparecida.", + "nextPhraseID": "norath_jhaeld1", + "requires": { + "progress": "remgard:51" + } + }, + { + "text": "Você tem alguma coisa para vender?", + "nextPhraseID": "norath_2" + }, + { + "text": "O que você faz aqui?", + "nextPhraseID": "norath_3" + } + ] + }, + { + "id": "norath_2", + "message": "Eu? Não, eu não tenho nada para vender. Isto se parece com uma loja para você?", + "replies": [ + { + "text": "Eu fui enviado por Jhaeld para perguntar sobre sua esposa desaparecida.", + "nextPhraseID": "norath_jhaeld1", + "requires": { + "progress": "remgard:51" + } + }, + { + "text": "O que você faz aqui?", + "nextPhraseID": "norath_3" + } + ] + }, + { + "id": "norath_3", + "message": "Bem, geralmente eu faço a colheita das culturas que crescem aqui. Agora, eu não posso encontrar a força para fazer isso, porém.", + "replies": [ + { + "text": "Por que, o que está errado?", + "nextPhraseID": "norath_4" + } + ] + }, + { + "id": "norath_4", + "message": "Minha esposa, Bethir. Ela se foi, e ninguém parece saber onde ela está.", + "replies": [ + { + "text": "N", + "nextPhraseID": "norath_5" + } + ] + }, + { + "id": "norath_5", + "message": "Eu mesmo cheguei a ponto a ponto de pedir aos guardas para procurem por ela, mas ela está longe de ser encontrada.", + "replies": [ + { + "text": "Você tem certeza de que ela não está apenas fora da cidade passando alguns recados?", + "nextPhraseID": "norath_6" + }, + { + "text": "Onde você acha que ela foi?", + "nextPhraseID": "norath_7" + }, + { + "text": "Eu fui enviado por Jhaeld para lhe perguntar sobre ela.", + "nextPhraseID": "norath_jhaeld1", + "requires": { + "progress": "remgard:51" + } + } + ] + }, + { + "id": "norath_6", + "message": "Se fosse esse o caso, eu teria esperado que ela tivesse dito isso a mim primeiro. Não, eu posso sentir isso - Tenho certeza de que algo ruim aconteceu com ela.", + "replies": [ + { + "text": "Onde você acha que ela foi?", + "nextPhraseID": "norath_7" + }, + { + "text": "Eu fui enviado por Jhaeld para lhe perguntar sobre ela.", + "nextPhraseID": "norath_jhaeld1", + "requires": { + "progress": "remgard:51" + } + } + ] + }, + { + "id": "norath_7", + "message": "Para ser bem honesto, eu não tenho ideia.", + "replies": [ + { + "text": "Você tem certeza de que ela não está apenas fora da cidade passando alguns recados?", + "nextPhraseID": "norath_6" + }, + { + "text": "Eu fui enviado por Jhaeld para lhe perguntar sobre ela.", + "nextPhraseID": "norath_jhaeld1", + "requires": { + "progress": "remgard:51" + } + } + ] + }, + { + "id": "norath_jhaeld1", + "message": "O que você quer que eu diga? Ela está sumida.", + "replies": [ + { + "text": "Existe alguma coisa que você descobriu que você não disse ainda para os guardas?", + "nextPhraseID": "norath_jhaeld2" + } + ] + }, + { + "id": "norath_jhaeld2", + "message": "Não. Eu disse aos guardas toda a história. Se eu descobrisse mais, iria contar-lhes imediatamente, claro.", + "replies": [ + { + "text": "N", + "nextPhraseID": "norath_jhaeld3" + } + ] + }, + { + "id": "norath_jhaeld3", + "message": "Nós tivemos uma pequena briga, na noite anterior ao desaparecimento. Mas foi apenas uma pequena discussão, nada sério.", + "replies": [ + { + "text": "N", + "nextPhraseID": "norath_jhaeld_s_1" + } + ] + }, + { + "id": "norath_jhaeld_s_1", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 61 + } + ], + "replies": [ + { + "nextPhraseID": "norath_jhaeld_s_2", + "requires": { + "progress": "remgard:62" + } + }, + { + "nextPhraseID": "norath_jhaeld4" + } + ] + }, + { + "id": "norath_jhaeld_s_2", + "replies": [ + { + "nextPhraseID": "norath_jhaeld_s_3", + "requires": { + "progress": "remgard:63" + } + }, + { + "nextPhraseID": "norath_jhaeld4" + } + ] + }, + { + "id": "norath_jhaeld_s_3", + "replies": [ + { + "nextPhraseID": "norath_jhaeld_s_4", + "requires": { + "progress": "remgard:64" + } + }, + { + "nextPhraseID": "norath_jhaeld4" + } + ] + }, + { + "id": "norath_jhaeld_s_4", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 70 + } + ], + "replies": [ + { + "nextPhraseID": "norath_jhaeld4" + } + ] + }, + { + "id": "norath_jhaeld4", + "message": "Agora, se você me der licença, tenho coisas para cuidar." + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_ogam.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_ogam.json new file mode 100644 index 000000000..d41e8ab41 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_ogam.json @@ -0,0 +1,170 @@ +[ + { + "id": "ogam_1", + "message": "Crença. Poder. Lutar.", + "replies": [ + { + "text": "O quê?", + "nextPhraseID": "ogam_2" + }, + { + "text": "Disseram-me para vê-lo.", + "nextPhraseID": "ogam_2", + "requires": { + "progress": "lodar:15" + } + } + ] + }, + { + "id": "ogam_2", + "message": "Nas costas estão uma carga alta e baixa.", + "replies": [ + { + "text": "O quê?", + "nextPhraseID": "ogam_3" + }, + { + "text": "Por favor, continue.", + "nextPhraseID": "ogam_3" + }, + { + "text": "Olá? Umar da Corja dos Ladrões de Fallhaven enviou-me para vê-lo.", + "nextPhraseID": "ogam_3", + "requires": { + "progress": "lodar:15" + } + } + ] + }, + { + "id": "ogam_3", + "message": "Escondendo-se à Sombra.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ogam_4" + } + ] + }, + { + "id": "ogam_4", + "message": "Dois iguais em corpo e mente.", + "replies": [ + { + "text": "Você vai dizer algo que faça sentido?", + "nextPhraseID": "ogam_5" + }, + { + "text": "O que quer dizer?", + "nextPhraseID": "ogam_5" + } + ] + }, + { + "id": "ogam_5", + "message": "O legal é o caótico.", + "replies": [ + { + "text": "Olá? Você sabe como eu posso alcançar refúgio de Lodar?", + "nextPhraseID": "ogam_lodar_1", + "requires": { + "progress": "lodar:15" + } + }, + { + "text": "Eu não entendo.", + "nextPhraseID": "ogam_6" + } + ] + }, + { + "id": "ogam_lodar_1", + "message": "Lodar? Comichão, claro, machucado.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ogam_6" + } + ] + }, + { + "id": "ogam_6", + "message": "Sim. A verdadeira forma. Contemple.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ogam_7" + } + ] + }, + { + "id": "ogam_7", + "message": "Escondendo na Sombra.", + "replies": [ + { + "text": "A Sombra?", + "nextPhraseID": "ogam_4" + }, + { + "text": "Você está ouvindo o que eu digo?", + "nextPhraseID": "ogam_4" + }, + { + "text": "Olá? Você sabe como eu posso alcançar refúgio de Lodar?", + "nextPhraseID": "ogam_lodar_2", + "requires": { + "progress": "lodar:15" + } + } + ] + }, + { + "id": "ogam_lodar_2", + "message": "Lodar, a meio caminho entre a sombra e a luz. Formações rochosas.", + "replies": [ + { + "text": "Ok, a meio caminho entre dois lugares. Algumas rochas?", + "nextPhraseID": "ogam_lodar_3" + }, + { + "text": "Uh. Pode repetir?", + "nextPhraseID": "ogam_lodar_3" + } + ] + }, + { + "id": "ogam_lodar_3", + "message": "Guardião. Brilho da Sombra.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "lodar", + "value": 20 + } + ], + "replies": [ + { + "text": "Brilho da Sombra? São essas as palavras que o guardião precisa ouvir?", + "nextPhraseID": "ogam_lodar_4" + }, + { + "text": "'Brilho da Sombra'? Eu reconheço isso de algum lugar.", + "nextPhraseID": "ogam_lodar_4", + "requires": { + "progress": "bonemeal:30" + } + } + ] + }, + { + "id": "ogam_lodar_4", + "message": "Torneamento. Torção. Forma clara.", + "replies": [ + { + "text": "O que significa isso?", + "nextPhraseID": "ogam_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_oluag.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_oluag.json new file mode 100644 index 000000000..5971b3d1c --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_oluag.json @@ -0,0 +1,272 @@ +[ + { + "id": "oluag_1", + "replies": [ + { + "nextPhraseID": "oluag_grave_16", + "requires": { + "progress": "wrye:80" + } + }, + { + "nextPhraseID": "oluag_1_1" + } + ] + }, + { + "id": "oluag_1_1", + "message": "Olá. Sou Oluag.", + "replies": [ + { + "text": "O que você está fazendo aqui com essas caixas?", + "nextPhraseID": "oluag_2" + } + ] + }, + { + "id": "oluag_2", + "message": "Oh, essas caixas? Elas estão vazias. Não ligue para elas. Também não se preocupe com aquele túmulo ali.", + "replies": [ + { + "text": "O túmulo?", + "nextPhraseID": "oluag_grave_select" + }, + { + "text": "Nada, realmente? Isto soa suspeito.", + "nextPhraseID": "oluag_boxes_1" + } + ] + }, + { + "id": "oluag_boxes_1", + "message": "Não, não há nada de suspeito em tudo. Não é como se eles contivessem algum contrabando ou qualquer coisa assim, ah!", + "replies": [ + { + "text": "O que que há com esse túmulo?", + "nextPhraseID": "oluag_grave_select" + }, + { + "text": "Ok então. Eu acho que eu não vi nada.", + "nextPhraseID": "oluag_goodbye" + } + ] + }, + { + "id": "oluag_goodbye", + "message": "Certo. Tchau." + }, + { + "id": "oluag_grave_select", + "replies": [ + { + "nextPhraseID": "oluag_grave_return", + "requires": { + "progress": "wrye:80" + } + }, + { + "nextPhraseID": "oluag_grave_1" + } + ] + }, + { + "id": "oluag_grave_return", + "message": "Olha, eu já contei a história.", + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_5" + } + ] + }, + { + "id": "oluag_grave_1", + "message": "Sim, ok. Portanto, há um certo túmulo ali. Eu prometo que eu não tive nada a ver com isso.", + "replies": [ + { + "text": "Nada? Sério?", + "nextPhraseID": "oluag_grave_2" + }, + { + "text": "Ok então. Eu acho que você não tem nada a ver com isso.", + "nextPhraseID": "oluag_goodbye" + } + ] + }, + { + "id": "oluag_grave_2", + "message": "Bem, quando eu digo 'nada', eu realmente quero dizer nada. Ou talvez apenas um pouquinho.", + "replies": [ + { + "text": "Um pouquinho?", + "nextPhraseID": "oluag_grave_3" + } + ] + }, + { + "id": "oluag_grave_3", + "message": "Ok, então talvez eu só tinha um pouquinho a ver com isso.", + "replies": [ + { + "text": "É melhor você começar a falar.", + "nextPhraseID": "oluag_grave_5" + }, + { + "text": "O que você fez?", + "nextPhraseID": "oluag_grave_5" + }, + { + "text": "Eu tenho que bater em você?", + "nextPhraseID": "oluag_grave_4" + } + ] + }, + { + "id": "oluag_grave_4", + "message": "Relaxe, relaxe. Eu não quero mais nenhuma luta.", + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_5" + } + ] + }, + { + "id": "oluag_grave_5", + "message": "Teve um garoto que eu encontrei. Ele estava quase morto de tanto perder sangue.", + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_6" + } + ] + }, + { + "id": "oluag_grave_6", + "message": "Ele disse-me algumas coisas antes que morresse.", + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_7" + } + ] + }, + { + "id": "oluag_grave_7", + "message": "Então eu enterrei ele lá naquele túmulo.", + "replies": [ + { + "text": "Quais foram suas últimas palavras?", + "nextPhraseID": "oluag_grave_8" + } + ] + }, + { + "id": "oluag_grave_8", + "message": "Algo sobre Vilegard e Ryndel talvez? Eu realmente não prestei tanta atenção, eu estava mais preocupado em checar as suas posses.", + "replies": [ + { + "text": "Eu devo checar esse túmulo. Tchau.", + "nextPhraseID": "X" + }, + { + "text": "Rincel, era esse o seu nome? De Vilegard? É o filho desaparecido de Wrye.", + "nextPhraseID": "oluag_grave_9", + "requires": { + "progress": "wrye:40" + } + } + ] + }, + { + "id": "oluag_grave_9", + "message": "Sim, pode ser ele mesmo. Enfim, ele disse algo sobre realização de um sonho de ver a grande cidade de Feygard.", + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_10" + } + ] + }, + { + "id": "oluag_grave_10", + "message": "E ele me disse algo a respeito de que ele não se atreveu a dizer a ninguém.", + "replies": [ + { + "text": "Talvez ele não tenha se atrevido a dizer isso a Wrye?", + "nextPhraseID": "oluag_grave_11" + } + ] + }, + { + "id": "oluag_grave_11", + "message": "Sim, com certeza, provavelmente. Ele havia acampado aqui, mas foi atacado por alguns monstros.", + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_12" + } + ] + }, + { + "id": "oluag_grave_12", + "message": "Aparentemente, ele não era tão forte como um lutador, por exemplo, alguém como eu. Assim, os monstros os feriram tanto que não conseguiu sobreviver a essa noite.", + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_13" + } + ] + }, + { + "id": "oluag_grave_13", + "message": "Infelizmente, eles também devem ter carregado tudo o que ele possuía, pois eu não pude encontrar nada com ele.", + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_14" + } + ] + }, + { + "id": "oluag_grave_14", + "message": "Ouvi o combate, mas só consegui chegar onde ele estava depois que os monstros tinham fugido.", + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_15" + } + ] + }, + { + "id": "oluag_grave_15", + "message": "Então, de qualquer maneira. Agora ele está enterrado lá. Descanse em paz.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "wrye", + "value": 80 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_16" + } + ] + }, + { + "id": "oluag_grave_16", + "message": "Garoto ruim. Ele poderia ao menos ter pego algumas moedas com ele.", + "replies": [ + { + "text": "Obrigado pela história. Tchau.", + "nextPhraseID": "oluag_goodbye" + }, + { + "text": "Obrigado pela história. A Sombra esteja com você.", + "nextPhraseID": "oluag_goodbye" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_prim_arghest.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_prim_arghest.json new file mode 100644 index 000000000..2aa5cc0d2 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_prim_arghest.json @@ -0,0 +1,308 @@ +[ + { + "id": "arghest_start", + "replies": [ + { + "nextPhraseID": "arghest_return_1", + "requires": { + "progress": "prim_innquest:40" + } + }, + { + "nextPhraseID": "arghest_return_2", + "requires": { + "progress": "prim_innquest:30" + } + }, + { + "nextPhraseID": "arghest_1" + } + ] + }, + { + "id": "arghest_1", + "message": "Olá.", + "replies": [ + { + "text": "Que lugar é esse?", + "nextPhraseID": "arghest_2" + }, + { + "text": "Quem é você?", + "nextPhraseID": "arghest_5" + }, + { + "text": "Você quer alugar o quarto aos fundos da pousada em Prim?", + "nextPhraseID": "arghest_8", + "requires": { + "progress": "prim_innquest:10" + } + } + ] + }, + { + "id": "arghest_2", + "message": "Este é a velha mina Elm de Prim.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arghest_3" + } + ] + }, + { + "id": "arghest_3", + "message": "Usamos muito a mina aqui. Mas isso foi antes de os ataques começaram.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arghest_4" + } + ] + }, + { + "id": "arghest_4", + "message": "Os ataques em Prim por os animais e os bandidos realmente dizimaram-nos. Agora, não podemos manter a mineração por mais tempo.", + "replies": [ + { + "text": "Quem é você?", + "nextPhraseID": "arghest_5" + } + ] + }, + { + "id": "arghest_5", + "message": "Eu sou Arghest. Eu guardo a entrada aqui para garantir que ninguém entre na mina velha.", + "replies": [ + { + "text": "Que lugar é esse?", + "nextPhraseID": "arghest_2" + }, + { + "text": "Posso entrar na mina?", + "nextPhraseID": "arghest_6" + } + ] + }, + { + "id": "arghest_6", + "message": "Não. A mina está fechada.", + "replies": [ + { + "text": "Ok, adeus.", + "nextPhraseID": "X" + }, + { + "text": "Por favor?", + "nextPhraseID": "arghest_7" + } + ] + }, + { + "id": "arghest_7", + "message": "Eu disse que não. Os visitantes não são permitidos ali.", + "replies": [ + { + "text": "Por favor?", + "nextPhraseID": "arghest_6" + }, + { + "text": "Apenas uma olhada rápida?", + "nextPhraseID": "arghest_6" + } + ] + }, + { + "id": "arghest_return_1", + "message": "Bem-vindo de volta. Obrigado pela sua ajuda anterior. Espero que o quarto na estalagem possa ter sido de bom uso para você.", + "replies": [ + { + "text": "Você é bem-vindo. Tchau.", + "nextPhraseID": "X" + }, + { + "text": "Posso entrar na mina?", + "nextPhraseID": "arghest_6" + } + ] + }, + { + "id": "arghest_return_2", + "message": "Bem-vindo de volta. Você me trouxe as cinco garrafas de leite que eu pedi?", + "replies": [ + { + "text": "Não, ainda não. Estou trabalhando nisso.", + "nextPhraseID": "arghest_return_3" + }, + { + "text": "Sim, aqui está, divirta-se!", + "nextPhraseID": "arghest_return_4", + "requires": { + "item": { + "itemID": "milk", + "quantity": 5, + "requireType": 0 + } + } + }, + { + "text": "Sim, mas isso quase me custou uma fortuna!", + "nextPhraseID": "arghest_return_4", + "requires": { + "item": { + "itemID": "milk", + "quantity": 5, + "requireType": 0 + } + } + } + ] + }, + { + "id": "arghest_return_3", + "message": "Ok então. Volte para mim uma vez que você os tiver.", + "replies": [ + { + "text": "Ok, vou fazer. Tchau.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "arghest_return_4", + "message": "Obrigado meu amigo! Agora eu posso repor meu estoque.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_innquest", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "arghest_return_5" + } + ] + }, + { + "id": "arghest_return_5", + "message": "Estas garrafas parecem excelentes. Agora eu posso durar mais um tempo aqui.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arghest_return_6" + } + ] + }, + { + "id": "arghest_return_6", + "message": "Ah, e sobre o quarto na estalagem - você está convidado a usá-lo da maneira que achar melhor. Um lugar muito aconchegante para descansar, se você me perguntar.", + "replies": [ + { + "text": "Obrigado, Arghest. Até logo.", + "nextPhraseID": "X" + }, + { + "text": "Finalmente, eu achava que nunca seria capaz de descansar aqui!", + "nextPhraseID": "X" + } + ] + }, + { + "id": "arghest_8", + "message": "'Inn em Prim'- isso parece engraçado.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arghest_9" + } + ] + }, + { + "id": "arghest_9", + "message": "Sim, eu alugo. Uso para descansar quando meu turno termina.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arghest_10" + } + ] + }, + { + "id": "arghest_10", + "message": "No entanto, agora que nós, os guardas não somos tão abundantes como costumávamos ser, tenho tido pouco tempo para descansar lá.", + "replies": [ + { + "text": "Se importa se eu usar o quarto na pousada para descansar?", + "nextPhraseID": "arghest_11" + }, + { + "text": "Você ainda vai usá-lo?", + "nextPhraseID": "arghest_11" + } + ] + }, + { + "id": "arghest_11", + "message": "Bem, eu gostaria de ainda manter a opção de usá-lo. Mas eu acho que alguém poderia descansar lá agora que eu não estou usando ativamente.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_innquest", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "arghest_12" + } + ] + }, + { + "id": "arghest_12", + "message": "Quer saber, se você me trazer suprimentos e mais algumas para me manter ocupado aqui, eu acho que você poderia ter a minha permissão para usá-lo mesmo que eu o tenha alugado.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arghest_13" + } + ] + }, + { + "id": "arghest_13", + "message": "Eu tenho muita carne aqui, mas meu estoque de leite acabou há algumas semanas. Você acha que você poderia me ajudar a reabastecer meu suprimento de leite?", + "replies": [ + { + "text": "Claro, sem problema. Vou pegar as garrafas de leite. Quanto você precisa?", + "nextPhraseID": "arghest_14" + }, + { + "text": "Claro, se ele me ajudar a ser capaz de descansar aqui. Estou dentro.", + "nextPhraseID": "arghest_14" + } + ] + }, + { + "id": "arghest_14", + "message": "Traga-me 5 garrafas de leite. Isso deve ser o suficiente.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_innquest", + "value": 30 + } + ], + "replies": [ + { + "text": "Eu vou comprar algumas.", + "nextPhraseID": "X" + }, + { + "text": "OK. Eu estarei de volta.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_prim_bjorgur.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_prim_bjorgur.json new file mode 100644 index 000000000..5497397ba --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_prim_bjorgur.json @@ -0,0 +1,209 @@ +[ + { + "id": "bjorgur_start", + "replies": [ + { + "nextPhraseID": "bjorgur_return_1", + "requires": { + "progress": "bjorgur_grave:50" + } + }, + { + "nextPhraseID": "bjorgur_return_2", + "requires": { + "progress": "bjorgur_grave:15" + } + }, + { + "nextPhraseID": "bjorgur_1" + } + ] + }, + { + "id": "bjorgur_return_1", + "message": "Olá de novo, amigo. Obrigado por sua ajuda anteriormente, junto ao túmulo da minha família." + }, + { + "id": "bjorgur_return_2", + "message": "Olá novamente. Você já investigou se alguma coisa aconteceu com meu túmulo da família?", + "replies": [ + { + "text": "Não, ainda não.", + "nextPhraseID": "bjorgur_9" + }, + { + "text": "(Mentira) eu fui para verificar o túmulo. Tudo parece estar normal. Você deve estar imaginando coisas.", + "nextPhraseID": "bjorgur_return_3", + "requires": { + "progress": "bjorgur_grave:60" + } + }, + { + "text": "Conte-me novamente o que devo fazer.", + "nextPhraseID": "bjorgur_3" + }, + { + "text": "Sim. Eu matei o intruso e restaurei o punhal para o seu lugar original.", + "nextPhraseID": "bjorgur_complete_1", + "requires": { + "progress": "bjorgur_grave:40" + } + } + ] + }, + { + "id": "bjorgur_1", + "message": "Olá lá. Você teria como me contar alguma coisa sobre um túmulo a sudoeste de Prim?", + "replies": [ + { + "text": "Eu estive lá. Eu conheci alguém em um dos níveis mais baixos.", + "nextPhraseID": "bjorgur_2", + "requires": { + "progress": "bjorgur_grave:30" + } + }, + { + "text": "O que tem?", + "nextPhraseID": "bjorgur_3" + }, + { + "text": "Não, sinto muito.", + "nextPhraseID": "bjorgur_3" + } + ] + }, + { + "id": "bjorgur_2", + "message": "Você esteve lá?", + "replies": [ + { + "text": "N", + "nextPhraseID": "bjorgur_3" + } + ] + }, + { + "id": "bjorgur_3", + "message": "Minha sepultura familiar está localizada no túmulo a sudoeste de Prim, fora da mina Elm. Tenho medo de que alguma coisa tenha perturbado a paz por lá.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bjorgur_4" + } + ] + }, + { + "id": "bjorgur_4", + "message": "Veja você, o meu avô gostava muito de uma adaga especial valiosa que nossa família costumava possuir. Ele a usava sempre com ele.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bjorgur_5" + } + ] + }, + { + "id": "bjorgur_5", + "message": "A adaga deveria, evidentemente, atrair caçadores de tesouros, mas, até agora, parece ter sido poupada disso.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bjorgur_6" + } + ] + }, + { + "id": "bjorgur_6", + "message": "Agora, eu temo algo aconteceu com o túmulo. Eu não tenho dormido bem nas últimas duas noites, e tenho certeza que isso deve ser a causa.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bjorgur_grave", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "bjorgur_7" + } + ] + }, + { + "id": "bjorgur_7", + "message": "Você não poderia ir ver o túmulo e verificar o que está acontecendo por lá?", + "replies": [ + { + "text": "Claro. Vou verificar em seu túmulo de ceus ancestais.", + "nextPhraseID": "bjorgur_8" + }, + { + "text": "Um tesouro que você diz? Eu estou interessado.", + "nextPhraseID": "bjorgur_8" + }, + { + "text": "Eu realmente já estive lá e restaurei o punhal para o seu lugar original.", + "nextPhraseID": "bjorgur_complete_2", + "requires": { + "progress": "bjorgur_grave:40" + } + } + ] + }, + { + "id": "bjorgur_8", + "message": "Obrigado. Por favor, veja se alguma coisa aconteceu com a sepultura, e que poderia ser a causa da minha ansiedade noturna.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bjorgur_grave", + "value": 15 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "bjorgur_9" + } + ] + }, + { + "id": "bjorgur_return_3", + "message": "Você dissq que não houve nada? Mas eu tenho certeza de que algo deve ter acontecido por lá. De qualquer maneira, obrigado por verificar isso para mim." + }, + { + "id": "bjorgur_9", + "message": "Por favor, apresse-se, e volte aqui para me contar sobre o seu progresso quando você descobrir alguma coisa." + }, + { + "id": "bjorgur_complete_1", + "message": "Um intruso? Oh, obrigado para lidar com este assunto.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bjorgur_complete_2" + } + ] + }, + { + "id": "bjorgur_complete_2", + "message": "Você diz que o punhal foi restaurado a seu lugar original? Obrigado. Agora eu poderei ser capaz de descansar durante as noites.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bjorgur_complete_3" + } + ] + }, + { + "id": "bjorgur_complete_3", + "message": "Mais uma vez obrigado. Eu receio que eu não possa dar-lhe qualquer coisa, salvo a minha gratidão. Você deve ir ver os meus parentes em Feygard se você tiver a chance de viajar até lá.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bjorgur_grave", + "value": 50 + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_prim_fulus.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_prim_fulus.json new file mode 100644 index 000000000..d651263c3 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_prim_fulus.json @@ -0,0 +1,296 @@ +[ + { + "id": "bjorgur_bandit", + "message": "Ei você! Você não deveria estar aqui. Este punhal é meu. Sai fora!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bjorgur_grave", + "value": 30 + } + ], + "replies": [ + { + "text": "Certo. Eu vou sair.", + "nextPhraseID": "X" + }, + { + "text": "Ei, essa adaga que você tem aí parece bem legal.", + "nextPhraseID": "F" + } + ] + }, + { + "id": "sign_bwm35", + "replies": [ + { + "nextPhraseID": "sign_bwm35_1", + "requires": { + "progress": "bjorgur_grave:40" + } + }, + { + "nextPhraseID": "sign_bwm35_2" + } + ] + }, + { + "id": "sign_bwm35_1", + "message": "Você vê os restos de equipamentos enferrujados e couro podre." + }, + { + "id": "sign_bwm35_2", + "message": "Você vê os restos de equipamentos enferrujados e couro podre. Algo parece ter sido recentemente removido desse lugar, visto que uma parte está completamente sem poeira\n\nA forma marcada na poeira tem aprocimadamente o formato de um punhal. Deve ter havido um punhal aqui antes que alguém o tenha removido.", + "replies": [ + { + "text": "Coloque a adaga em seu lugar original.", + "nextPhraseID": "sign_bwm35_3", + "requires": { + "item": { + "itemID": "bjorgur_dagger", + "quantity": 1, + "requireType": 0 + } + } + } + ] + }, + { + "id": "sign_bwm35_3", + "message": "Você coloca o punhal de volta entre os demais utensílios, de onde ele parecia estar.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bjorgur_grave", + "value": 40 + } + ] + }, + { + "id": "fulus_start", + "replies": [ + { + "nextPhraseID": "fulus_return_1", + "requires": { + "progress": "bjorgur_grave:60" + } + }, + { + "nextPhraseID": "fulus_return_3", + "requires": { + "progress": "bjorgur_grave:51" + } + }, + { + "nextPhraseID": "fulus_return_2", + "requires": { + "progress": "bjorgur_grave:20" + } + }, + { + "nextPhraseID": "fulus_1" + } + ] + }, + { + "id": "fulus_return_1", + "message": "Olá de novo, amigo. Obrigado por sua assistência na obtenção do punhal que antes." + }, + { + "id": "fulus_return_2", + "message": "Olá novamente. Você foi capaz de recuperar esse punhal do túmulo da família Bjorgur?", + "replies": [ + { + "text": "Não, ainda não.", + "nextPhraseID": "fulus_9" + }, + { + "text": "Eu decidi, ao invés, ajudar Bjorgur.", + "nextPhraseID": "fulus_return_3", + "requires": { + "progress": "bjorgur_grave:40" + } + }, + { + "text": "Conte-me novamente o que devo fazer.", + "nextPhraseID": "fulus_3" + }, + { + "text": "Sim. Aqui está.", + "nextPhraseID": "fulus_complete_1", + "requires": { + "item": { + "itemID": "bjorgur_dagger", + "quantity": 1, + "requireType": 0 + } + } + } + ] + }, + { + "id": "fulus_return_3", + "message": "O quê? Suspiro. Criança estúpida. Esse punhal vale uma fortuna. Nós poderíamos ter ficado ricos! Rico, eu te digo!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bjorgur_grave", + "value": 51 + } + ] + }, + { + "id": "fulus_1", + "message": "Olá lá. Você parece ser exatamente o tipo de pessoa que eu estou procurando.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fulus_2" + } + ] + }, + { + "id": "fulus_complete_1", + "message": "Oh, uau, você realmente conseguiu obter o punhal? Obrigado garoto. Isso vale muito. Aqui, tome estas moedas como compensação por seus esforços!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bjorgur_grave", + "value": 60 + }, + { + "rewardType": 1, + "rewardID": "fulus_reward" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "fulus_complete_2" + } + ] + }, + { + "id": "fulus_complete_2", + "message": "Mais uma vez obrigado. Agora, vamos ver .. quanto devemos vender este punhal para .." + }, + { + "id": "fulus_2", + "message": "Você estaria interessado em ouvir sobre uma proposta de negócio que eu tenho?", + "replies": [ + { + "text": "Claro. Qual é a proposta?", + "nextPhraseID": "fulus_3" + }, + { + "text": "Se ele irá trazer-me lucros, então tudo bem.", + "nextPhraseID": "fulus_3" + }, + { + "text": "Eu não poderia pensar que você tenha algo de bom para me oferecer, mas vou ouvi-lo de qualquer maneira.", + "nextPhraseID": "fulus_3" + } + ] + }, + { + "id": "fulus_3", + "message": "Há algum tempo, eu soube a respeito de um certo punhal valioso que uma determinada família costumava possuir aqui em Prim.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fulus_4" + } + ] + }, + { + "id": "fulus_9", + "message": "Agora se apresse. Eu realmente preciso do punhal em breve." + }, + { + "id": "fulus_4", + "message": "Este punhal é extremamente valioso para mim, por motivos pessoais.", + "replies": [ + { + "text": "Eu não estou gostando de onde isso está levando. É melhor eu não me envolver em seus negócios obscuros.", + "nextPhraseID": "fulus_5" + }, + { + "text": "Isso está ficando cada vez mais interessante, por favor, continue.", + "nextPhraseID": "fulus_6" + }, + { + "text": "Conte-me mais.", + "nextPhraseID": "fulus_6" + }, + { + "text": "Eu já ajudei Bjorgur devolver o punhal para o seu lugar original.", + "nextPhraseID": "fulus_return_3", + "requires": { + "progress": "bjorgur_grave:40" + } + } + ] + }, + { + "id": "fulus_5", + "message": "Certo. Ajude-se a si mesmo, você é um sujeito de duas faces." + }, + { + "id": "fulus_6", + "message": "A família em questão é a família de Bjorgur.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fulus_7" + } + ] + }, + { + "id": "fulus_7", + "message": "Agora, acontece que eu sei que este punhal particular pode ser encontrada em sua tumba familiar que foi aberta por outras ... pessoas ... recentemente.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fulus_8" + } + ] + }, + { + "id": "fulus_8", + "message": "O que eu quero é simples. Você vai obter esse punhal e trazê-lo para mim, e eu te recompensarei generosamente.", + "replies": [ + { + "text": "Parece fácil. Eu vou fazer isso.", + "nextPhraseID": "fulus_10" + }, + { + "text": "Não, acho melhor não se envolver em seus negócios obscuros.", + "nextPhraseID": "fulus_5" + }, + { + "text": "Eu já ajudei Bjorgur devolver o punhal para o seu lugar original.", + "nextPhraseID": "fulus_return_3", + "requires": { + "progress": "bjorgur_grave:40" + } + } + ] + }, + { + "id": "fulus_10", + "message": "Bom. Volte para mim uma vez que você o tenha. Talvez você possa falar com Bjorgur sobre como chegar ao túmulo. Sua casa é logo ali fora, aqui em Prim. Só não mencione nada sobre o nosso plano para ele!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bjorgur_grave", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "fulus_9" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_prim_guthbered.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_prim_guthbered.json new file mode 100644 index 000000000..0a2900a60 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_prim_guthbered.json @@ -0,0 +1,1150 @@ +[ + { + "id": "guthbered_start", + "replies": [ + { + "nextPhraseID": "guthbered_sentbybwm_leave", + "requires": { + "progress": "bwm_agent:131" + } + }, + { + "nextPhraseID": "guthbered_sentbybwm_fight", + "requires": { + "progress": "bwm_agent:130" + } + }, + { + "nextPhraseID": "guthbered_sentbybwm_1", + "requires": { + "progress": "bwm_agent:120" + } + }, + { + "nextPhraseID": "guthbered_reject", + "requires": { + "progress": "prim_hunt:251" + } + }, + { + "nextPhraseID": "guthbered_reject", + "requires": { + "progress": "prim_hunt:250" + } + }, + { + "nextPhraseID": "guthbered_completed", + "requires": { + "progress": "prim_hunt:100" + } + }, + { + "nextPhraseID": "guthbered_killharl_2", + "requires": { + "progress": "prim_hunt:99" + } + }, + { + "nextPhraseID": "guthbered_workingforbwm_2", + "requires": { + "progress": "bwm_agent:95" + } + }, + { + "nextPhraseID": "guthbered_killharl_1", + "requires": { + "progress": "prim_hunt:80" + } + }, + { + "nextPhraseID": "guthbered_lookforsigns_1", + "requires": { + "progress": "prim_hunt:50" + } + }, + { + "nextPhraseID": "guthbered_return_1_1", + "requires": { + "progress": "prim_hunt:25" + } + }, + { + "nextPhraseID": "guthbered_1" + } + ] + }, + { + "id": "guthbered_reject", + "message": "Você de novo? Deixar este lugar e vá para junto de seus amigos no assentamento da Montanha das Águas Negras. Não queremos negócio com você.", + "replies": [ + { + "text": "Eu estou aqui para dar-lhe uma mensagem da parte do assentamento da Montanha das Águas Negras.", + "nextPhraseID": "guthbered_attacks", + "requires": { + "progress": "bwm_agent:70" + } + } + ] + }, + { + "id": "guthbered_attacks", + "message": "Que mensagem?", + "replies": [ + { + "text": "Harlenn no assentamento da Montanha das Águas Negras quer que você pare seus ataques contra o assentamento.", + "nextPhraseID": "guthbered_attacks_1" + } + ] + }, + { + "id": "guthbered_attacks_1", + "message": "Isso é completamente insano. Nós!? Parar nossos ataques?! Diga-lhe que não temos nada a ver com o que acontece lá em cima. Eles trouxeram a sua própria desgraça sobre si mesmos.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 80 + } + ] + }, + { + "id": "guthbered_return_1_1", + "message": "Bem-vindo novamente, viajante. Você falou com Harlenn no assentamento Montanha das Águas Negras?", + "replies": [ + { + "text": "Você pode me contar a história sobre os monstros de novo?", + "nextPhraseID": "guthbered_13" + }, + { + "text": "O que eu devo fazer mesmo?", + "nextPhraseID": "guthbered_29" + }, + { + "text": "Você pode me contar a história sobre Prim de novo?", + "nextPhraseID": "guthbered_2" + }, + { + "text": "Sim, mas Harlenn nega que eles tenham alguma coisa a ver com os ataques.", + "nextPhraseID": "guthbered_talkedto_harl_1", + "requires": { + "progress": "prim_hunt:30" + } + }, + { + "text": "Na verdade, eu estou aqui para dar-lhe uma mensagem da parte do assentamento da Montanha das Águas Negras.", + "nextPhraseID": "guthbered_attacks", + "requires": { + "progress": "bwm_agent:70" + } + } + ] + }, + { + "id": "guthbered_1", + "message": "Bem-vindo a Prim, viajante.", + "replies": [ + { + "text": "O que você pode me dizer sobre Prim?", + "nextPhraseID": "guthbered_2" + }, + { + "text": "Quem é você?", + "nextPhraseID": "guthbered_who_1" + }, + { + "text": "Disseram-me para vê-lo sobre uma ajuda contra os ataques de monstros.", + "nextPhraseID": "guthbered_20", + "requires": { + "progress": "prim_hunt:11" + } + }, + { + "text": "Na verdade, eu estou aqui para dar-lhe uma mensagem a partir do assentamento da Montanha das Águas Negras.", + "nextPhraseID": "guthbered_attacks", + "requires": { + "progress": "bwm_agent:70" + } + } + ] + }, + { + "id": "guthbered_2", + "message": "Prim começou como um simples campo para os mineiros que trabalhavam nas minas por aqui. Mais tarde, ela cresceu a um assentamento, e alguns anos atrás, conta até mesmo com uma taberna e uma pousada por aqui.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_3" + } + ] + }, + { + "id": "guthbered_3", + "message": "Este lugar costumava ser cheio de vida, quando os mineiros trabalhavam aqui.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_4" + } + ] + }, + { + "id": "guthbered_4", + "message": "Os mineiros também atraiam um grande número de comerciantes que costumavam passar por aqui.", + "replies": [ + { + "text": "'Costumava'?", + "nextPhraseID": "guthbered_5" + }, + { + "text": "O que aconteceu então?", + "nextPhraseID": "guthbered_5" + } + ] + }, + { + "id": "guthbered_5", + "message": "Até bem recentemente, podiamos pelo menos ter algum contato com as aldeias de fora. Hoje em dia, a esperança está perdida.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_6" + } + ] + }, + { + "id": "guthbered_6", + "message": "Você vê, o túnel da mina para o sul desabou, e ninguém mais pode entrar ou sair de Prim.", + "replies": [ + { + "text": "Eu sei, eu vim de lá.", + "nextPhraseID": "guthbered_7" + }, + { + "text": "Azar.", + "nextPhraseID": "guthbered_10" + }, + { + "text": "O que o fez desmoronar?", + "nextPhraseID": "guthbered_11" + } + ] + }, + { + "id": "guthbered_7", + "message": "Você passou lá? Oh. Bem, sim, é claro que você deve ter, visto que você não é de Prim. Portanto, há um caminho através dela, apesar de tudo, né?", + "replies": [ + { + "text": "Sim, mas eu tive que ir através da parte escura da mina, que encontra-se escura.", + "nextPhraseID": "guthbered_8" + }, + { + "text": "Sim, a passagem pelo interior da mina está segura.", + "nextPhraseID": "guthbered_8" + }, + { + "text": "Não, estou brincando. Escalei sobre o cume da montanha para chegar aqui.", + "nextPhraseID": "guthbered_8" + } + ] + }, + { + "id": "guthbered_8", + "message": "OK. Vamos ter que investigar isso mais tarde.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_9" + } + ] + }, + { + "id": "guthbered_9", + "message": "Enfim, como eu estava dizendo ..", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_10" + } + ] + }, + { + "id": "guthbered_10", + "message": "O túnel da mina desabou tornando difícil para todos os comerciantes chegarem a Prim. Nossos recursos estão realmente começando a diminuir.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_12" + } + ] + }, + { + "id": "guthbered_11", + "message": "Não temos certeza. Mas temos as nossas suspeitas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_10" + } + ] + }, + { + "id": "guthbered_12", + "message": "Além disso, há os ataques dos monstros que temos de lidar.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 11 + } + ], + "replies": [ + { + "text": "Sim, eu notei alguns monstros fora da aldeia.", + "nextPhraseID": "guthbered_13" + }, + { + "text": "Que monstros?", + "nextPhraseID": "guthbered_13" + } + ] + }, + { + "id": "guthbered_who_1", + "message": "Sou Guthbered, protetor da vila.", + "replies": [ + { + "text": "O que você pode me dizer sobre Prim?", + "nextPhraseID": "guthbered_2" + }, + { + "text": "Disseram-me para vê-lo sobre uma ajuda contra os ataques de monstros.", + "nextPhraseID": "guthbered_20", + "requires": { + "progress": "prim_hunt:11" + } + } + ] + }, + { + "id": "guthbered_13", + "message": "Tempos atrás, começamos a ver os primeiros monstros. No início, eles não foram problema para nós os contê-los. Nossos guardas poderiam exterminá-los facilmente.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_14" + } + ] + }, + { + "id": "guthbered_14", + "message": "Mas depois de um tempo, alguns de nossos guardas se machucaram, e a quantidade de monstros aumentou.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_15" + } + ] + }, + { + "id": "guthbered_15", + "message": "Além disso, quase parecia que os monstros estavam ficando mais inteligentes. Seus ataques foram ficando mais e mais coordenados.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_16" + } + ] + }, + { + "id": "guthbered_16", + "message": "Agora, não podemos segurá-los mais. Eles vêm principalmente à noite.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_17" + } + ] + }, + { + "id": "guthbered_17", + "message": "Segundo a lenda, os monstros são chamados de 'Gornauds'.", + "replies": [ + { + "text": "Alguma idéia de onde eles podem estar vindo?", + "nextPhraseID": "guthbered_18" + } + ] + }, + { + "id": "guthbered_18", + "message": "Ah, sim, nós somos quase certeza.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_19" + } + ] + }, + { + "id": "guthbered_19", + "message": "Esses bastardos do mal do assentamento da Montanha das Águas Negras provavelmente convocou-os para nos atacar. Eles preferem ver-nos perecer.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_22" + } + ] + }, + { + "id": "guthbered_20", + "message": "Ah bom. Você falou com Tonis? Sim, eu tenho certeza que você o encontrou no seu caminho para a cidade.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_21" + } + ] + }, + { + "id": "guthbered_21", + "message": "Bom. Deixe-me dizer-lhe contar primeiro a história de Prim.", + "replies": [ + { + "text": "Certo.", + "nextPhraseID": "guthbered_2" + }, + { + "text": "Prefiro pular para o final diretamente.", + "nextPhraseID": "guthbered_13" + } + ] + }, + { + "id": "guthbered_22", + "message": "Nós costumávamos negociar com eles lá em cima, mas tudo mudou, uma vez que ficaram gananciosos.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 25 + } + ], + "replies": [ + { + "text": "Eu conheci um homem fora da mina que desabou que disse que ele era do assentamento da Montanha das Águas Negras.", + "nextPhraseID": "guthbered_26" + }, + { + "text": "Você precisa de alguma ajuda para lidar com esses monstros?", + "nextPhraseID": "guthbered_23" + }, + { + "text": "Eu ficaria feliz em ajudá-lo com os monstros.", + "nextPhraseID": "guthbered_24" + } + ] + }, + { + "id": "guthbered_23", + "message": "Um garoto, não é? Sim, por favor, você é bem-vindo para ajudar.", + "replies": [ + { + "text": "Eu ficaria feliz em ajudá-lo com os monstros.", + "nextPhraseID": "guthbered_24" + } + ] + }, + { + "id": "guthbered_24", + "message": "Você realmente acha que tem o que é preciso para nos ajudar?", + "replies": [ + { + "text": "Eu deixei um rastro de sangue de monstros atrás de mim.", + "nextPhraseID": "guthbered_25" + }, + { + "text": "Claro, eu posso lidar com isso.", + "nextPhraseID": "guthbered_25" + }, + { + "text": "Se os monstros são parecidos com aqueles que estiveram no meu caminho, vai ser uma luta dura. Mas eu dou conta.", + "nextPhraseID": "guthbered_25" + } + ] + }, + { + "id": "guthbered_25", + "message": "Muito bem! Eu acho que devemos ir direto à fonte do problema.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_29" + } + ] + }, + { + "id": "guthbered_26", + "message": "Um homem, que veio do assentamento da Montanha das Águas Negras, você diz?", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_27" + } + ] + }, + { + "id": "guthbered_27", + "message": "Ele disse alguma coisa sobre nós aqui em Prim?", + "replies": [ + { + "text": "Não. Mas ele insistiu que eu fosse direto para leste ao sair da mina, portanto, não atingindo Prim.", + "nextPhraseID": "guthbered_28" + } + ] + }, + { + "id": "guthbered_28", + "message": "Que figuras. Eles enviam seus espiões até hoje.", + "replies": [ + { + "text": "Você precisa de alguma ajuda para lidar com esses monstros?", + "nextPhraseID": "guthbered_23" + } + ] + }, + { + "id": "guthbered_29", + "message": "Como eu disse, nós acreditamos que esses bastardos do assentamento Montanha das Águas Negras estão por trás, de alguma forma, dos monstros nos atacam.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_30" + } + ] + }, + { + "id": "guthbered_30", + "message": "Eu quero que você vá até lá para o assentamento e perguntar ao ministro da guerra, Harlenn, por que eles estão fazendo isso conosco.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 25 + } + ], + "replies": [ + { + "text": "Ok, eu vou perguntar a Harlenn no assentamento da Montanha das Águas Negras por que eles estão atacando sua vila.", + "nextPhraseID": "guthbered_31" + } + ] + }, + { + "id": "guthbered_31", + "message": "Obrigado amigo.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 25 + } + ] + }, + { + "id": "guthbered_talkedto_harl_1", + "message": "O que eu esperava? É claro que ele diria isso. Ele, provavelmente, até nega isso a si mesmo. Enquanto isso, nós aqui em Prim sofremos com seus ataques selvagens.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_talkedto_harl_2" + } + ] + }, + { + "id": "guthbered_talkedto_harl_2", + "message": "Tenho certeza que eles estão por trás desses ataques. No entanto, eu não tenho provas suficientes para suportar minhas desconfianças, de forma a que eu possa agir.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_talkedto_harl_3" + } + ] + }, + { + "id": "guthbered_talkedto_harl_3", + "message": "Mas tenho certeza de que são eles! Como eles são falsos! Sempre mentindo e enganando. Destruindo e causando tumulto.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_talkedto_harl_4" + } + ] + }, + { + "id": "guthbered_talkedto_harl_4", + "message": "Basta ouvir o nome que escolheram para si mesmos: 'das Águas Negras'. O tom da soa como problema.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_talkedto_harl_5" + } + ] + }, + { + "id": "guthbered_talkedto_harl_5", + "message": "De qualquer forma, gostaria de obter alguma evidência adicional sobre o que eles estão fazendo. Talvez que você possa nos ajudar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_talkedto_harl_6" + } + ] + }, + { + "id": "guthbered_talkedto_harl_6", + "message": "Mas eu preciso ter certeza de que eu posso confiar em você. Se você estiver trabalhando para eles, é melhor que você me diga agora antes que as coisas fiquem... bagunçadas.", + "replies": [ + { + "text": "Claro, você pode confiar em mim. Eu vou ajudar o povo de Prim.", + "nextPhraseID": "guthbered_talkedto_harl_8" + }, + { + "text": "Hm, talvez eu devesse, ao invés,ajudar as pessoas da Montanha das Águas Negras.", + "nextPhraseID": "guthbered_workingforbwm_1" + }, + { + "text": "(Mentira) Você pode confiar em mim.", + "nextPhraseID": "guthbered_talkedto_harl_7", + "requires": { + "progress": "bwm_agent:70" + } + } + ] + }, + { + "id": "guthbered_talkedto_harl_7", + "message": "No entanto, de alguma forma eu não confio em você.", + "replies": [ + { + "text": "Eu estava trabalhando para eles, mas eu decidi ajudá-lo, ao invés.", + "nextPhraseID": "guthbered_talkedto_harl_8" + }, + { + "text": "Por que eu iria querer trabalhar para a sua aldeia imunda? As pessoas no assentamento Montanha das Águas Negras merece a minha ajuda muito mais do que você.", + "nextPhraseID": "guthbered_workingforbwm_1" + } + ] + }, + { + "id": "guthbered_talkedto_harl_8", + "message": "Bom. Estou feliz que você quiser nos ajudar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_talkedto_harl_9" + } + ] + }, + { + "id": "guthbered_workingforbwm_1", + "message": "Certo. Você deve sair agora, enquanto você ainda pode, traidor.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 250 + } + ] + }, + { + "id": "guthbered_talkedto_harl_9", + "message": "Eu quero que você vá lá em cima ao assentamento e encontrar pistas sobre o que eles estão planejando.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_talkedto_harl_10" + } + ] + }, + { + "id": "guthbered_talkedto_harl_10", + "message": "Acreditamos que eles estejam treinando seus lutadores para lançar um grande ataque a nós em breve.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_talkedto_harl_11" + } + ] + }, + { + "id": "guthbered_talkedto_harl_11", + "message": "Vá procurar os planos que você puder encontrar. Mas certifique-se de que eles não te vejam procurando-as.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_talkedto_harl_12" + } + ] + }, + { + "id": "guthbered_talkedto_harl_12", + "message": "Você provavelmente deve iniciar sua pesquisa no local onde o ministro da guerra, Harlenn, estiver.", + "replies": [ + { + "text": "OK. Vou procurar pistas em seu assentamento.", + "nextPhraseID": "guthbered_talkedto_harl_13" + } + ] + }, + { + "id": "guthbered_talkedto_harl_13", + "message": "Obrigado, amigo. Relate-me de volta sobre suas descobertas.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 50 + } + ] + }, + { + "id": "guthbered_lookforsigns_1", + "message": "Olá novamente. Achou algo no assentamento da Montanha das Águas Negras?", + "replies": [ + { + "text": "Não, eu ainda estou procurando.", + "nextPhraseID": "guthbered_talkedto_harl_13" + }, + { + "text": "Poderia repetir novamente o que devo fazer?", + "nextPhraseID": "guthbered_talkedto_harl_9" + }, + { + "text": "Sim, encontrei alguns papéis com um plano para atacar Prim.", + "nextPhraseID": "guthbered_lookforsigns_2", + "requires": { + "progress": "prim_hunt:60" + } + } + ] + }, + { + "id": "guthbered_lookforsigns_2", + "message": "Então é como suspeitávamos. Esta é uma notícia realmente terrível.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_lookforsigns_3" + } + ] + }, + { + "id": "guthbered_lookforsigns_3", + "message": "Agora você entende o que eu havia dito. Eles estão sempre à procura de causar problemas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_lookforsigns_4" + } + ] + }, + { + "id": "guthbered_lookforsigns_4", + "message": "Obrigado por encontrar essa informação para nós.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 70 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_lookforsigns_5" + } + ] + }, + { + "id": "guthbered_lookforsigns_5", + "message": "Muito bem. Vamos ter que lidar com isso.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_lookforsigns_6" + } + ] + }, + { + "id": "guthbered_lookforsigns_6", + "message": "Eu esperava que não chegasse a isso. Mas ficamos sem nenhuma escolha. Temos de eliminar a principal força motriz por trás dos ataques. Temos de eliminar seu ministro da guerra, Harlenn.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_lookforsigns_7" + } + ] + }, + { + "id": "guthbered_lookforsigns_7", + "message": "Esta seria uma tarefa excelente para você meu amigo. Desde que você tem acesso às suas instalações, você pode se esgueirar por lá e matar o bastardo do Harlenn.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_lookforsigns_8" + } + ] + }, + { + "id": "guthbered_lookforsigns_8", + "message": "Ao matá-lo, podemos ter certeza de que seus ataques ... digamos ... perderão seus dentes. Há há.", + "replies": [ + { + "text": "Não tem problema, ele vale tanto quanto um morto.", + "nextPhraseID": "guthbered_lookforsigns_9" + }, + { + "text": "Você tem certeza de mais violência vai realmente resolver este conflito?", + "nextPhraseID": "guthbered_lookforsigns_10" + } + ] + }, + { + "id": "guthbered_lookforsigns_9", + "message": "Excelente. Volte para mim assim que você terminar.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 80 + } + ] + }, + { + "id": "guthbered_lookforsigns_10", + "message": "Não, não realmente. Mas, por agora, parece que a única opção que temos.", + "replies": [ + { + "text": "vou tirá-lo, mas vou tentar encontrar uma solução pacífica para esta.", + "nextPhraseID": "guthbered_lookforsigns_9" + }, + { + "text": "Muito bem. Ele vale tanto quanto um morto.", + "nextPhraseID": "guthbered_lookforsigns_9" + } + ] + }, + { + "id": "guthbered_workingforbwm_2", + "message": "Minhas fontes de dentro do assentamento Montanha das Águas Negras dizem-me que você está a trabalhando para eles.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_workingforbwm_3" + } + ] + }, + { + "id": "guthbered_workingforbwm_3", + "message": "É, naturalmente, a sua escolha. Mas se você está trabalhando para eles, você não é bem-vindo aqui em Prim. Você deve deixar rapidamente, enquanto ainda pode.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 251 + } + ] + }, + { + "id": "guthbered_completed", + "message": "Olá novamente meu amigo. Obrigado por sua ajuda para lidar com os bandidos até da Montanha das Águas Negras.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_completed_1" + } + ] + }, + { + "id": "guthbered_completed_1", + "message": "Tenho certeza de que todos aqui em Prim vai querer falar com você agora.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 240 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_completed_2" + } + ] + }, + { + "id": "guthbered_completed_2", + "message": "Obrigado novamente por sua ajuda.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 250 + } + ] + }, + { + "id": "guthbered_sentbybwm_1", + "message": "O brilho em seus olhos me assusta.", + "replies": [ + { + "text": "Eu fui enviado pelo assentamento Montanha das Águas Negras para pará-lo.", + "nextPhraseID": "guthbered_sentbybwm_fight" + }, + { + "text": "Eu fui enviado pelo assentamento Montanha das Águas Negras para pará-lo. No entanto, eu decidi não matá-lo.", + "nextPhraseID": "guthbered_sentbybwm_3" + } + ] + }, + { + "id": "guthbered_sentbybwm_fight", + "message": "Eu esperava que não chegasse a isso. Tenho receio de que você não irá sobreviver a este encontro. Será apenas outra vida em minhas mãos.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 130 + } + ], + "replies": [ + { + "text": "Pela sombra!", + "nextPhraseID": "F" + }, + { + "text": "Palavras corajosas, vamos ver se você suas ações não irão desapontar.", + "nextPhraseID": "F" + }, + { + "text": "Grande, estou ansioso para lhe matar.", + "nextPhraseID": "F" + }, + { + "text": "Vamos lutar!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "guthbered_sentbybwm_3", + "message": "Que interessante ... Por favor, continue.", + "replies": [ + { + "text": "É óbvio que este conflito só vai acabar com mais derramamento de sangue. Isso deve parar por aqui.", + "nextPhraseID": "guthbered_sentbybwm_4" + } + ] + }, + { + "id": "guthbered_sentbybwm_4", + "message": "O que você está propondo?", + "replies": [ + { + "text": "A minha proposta é que você deixe esta vila e encontre um novo lar em outro lugar.", + "nextPhraseID": "guthbered_sentbybwm_5" + } + ] + }, + { + "id": "guthbered_sentbybwm_5", + "message": "Ah, por que eu iria querer fazer isso?", + "replies": [ + { + "text": "Estas duas cidades estarão sempre lutar uns contra os outros. Se você a deixar, eles vão pensar que ganharam, e pararão com seus ataques.", + "nextPhraseID": "guthbered_sentbybwm_6" + } + ] + }, + { + "id": "guthbered_sentbybwm_6", + "message": "Hum, até que você parece estar com a razão.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_sentbybwm_7" + } + ] + }, + { + "id": "guthbered_sentbybwm_7", + "message": "Ok, você me convenceu. Vou deixar Prim e ir para outra cidade. A sobrevivência do meu povo aqui é mais importante do que eu.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_sentbybwm_leave" + } + ] + }, + { + "id": "guthbered_sentbybwm_leave", + "message": "Obrigado amigo, por fazer meu bom senso retornar.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 131 + } + ], + "replies": [ + { + "text": "Você é bem-vindo.", + "nextPhraseID": "R" + } + ] + }, + { + "id": "guthbered_killharl_1", + "message": "Olá novamente. Você conseguiu remover aquele bastardo do Harlenn, ministro da guerra do assentamento da Montanha das Águas Negras?", + "replies": [ + { + "text": "Você pode me dizer novamente o que eu devo fazer?", + "nextPhraseID": "guthbered_lookforsigns_6" + }, + { + "text": "Ainda não. Eu ainda estou trabalhando nisso.", + "nextPhraseID": "guthbered_lookforsigns_9" + }, + { + "text": "Sim, ele está morto.", + "nextPhraseID": "guthbered_killharl_2", + "requires": { + "item": { + "itemID": "harlenn_id", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Sim, ele está desaparecido.", + "nextPhraseID": "guthbered_killharl_3", + "requires": { + "progress": "prim_hunt:91" + } + } + ] + }, + { + "id": "guthbered_killharl_2", + "message": "Enquanto eu sou grato por saber que ele foi morto, também estou triste que tenha terminado assim.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 99 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_killharl_4" + } + ] + }, + { + "id": "guthbered_killharl_3", + "message": "Sério? Esta é uma grande notícia, de fato.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_killharl_4" + } + ] + }, + { + "id": "guthbered_killharl_4", + "message": "Isso provavelmente significa que seus ataques a nossa aldeia cessarão.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_killharl_5" + } + ] + }, + { + "id": "guthbered_killharl_5", + "message": "Eu não sei como lhe agradecer o suficiente meu amigo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_killharl_6" + } + ] + }, + { + "id": "guthbered_killharl_6", + "message": "Aqui, por favor, aceite estes alguns itens como uma forma de compensação por sua ajuda. Além disso, deve levar este pedaço de papel que adquirimos.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 100 + }, + { + "rewardType": 1, + "rewardID": "guthbered_reward" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_killharl_7" + } + ] + }, + { + "id": "guthbered_killharl_7", + "message": "Esta é uma permissão que ... obtivemos ... De acordo com as nossas fontes, ela permitirá que você acesse a câmara interna do assentamento da Montanha das Águas Negras.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_killharl_8" + } + ] + }, + { + "id": "guthbered_killharl_8", + "message": "Agora, a licença não é ... digamos .. completamente genuína. Mas estamos certos de que os guardas não irão notar nenhuma diferença.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_killharl_9" + } + ] + }, + { + "id": "guthbered_killharl_9", + "message": "Enfim, você tem meus maiores agradecimentos pela ajuda que você forneceu para nós.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_completed_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_prim_inn.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_prim_inn.json new file mode 100644 index 000000000..264aa6739 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_prim_inn.json @@ -0,0 +1,353 @@ +[ + { + "id": "bwm_primsleep", + "message": "Você não tem permissão para entrar aqui." + }, + { + "id": "laecca_1", + "message": "Olá. Sou Laecca, guia de montanha.", + "replies": [ + { + "text": "O que você faz aqui?", + "nextPhraseID": "laecca_2" + }, + { + "text": "'guia de montanha', o que significa isso?", + "nextPhraseID": "laecca_2" + } + ] + }, + { + "id": "laecca_2", + "message": "Fico de olho na passagem de montanha, para verificar se não há mais desses animais que se dirijam para cá.", + "replies": [ + { + "text": "Então, o que você está fazendo aqui dentro? Você não deveria estar do lado de fora vigiando, então?", + "nextPhraseID": "laecca_4" + }, + { + "text": "Soa como uma causa nobre.", + "nextPhraseID": "laecca_3" + }, + { + "text": "Quais animais você está falando?", + "nextPhraseID": "laecca_9" + } + ] + }, + { + "id": "laecca_3", + "message": "Sim, com certeza. Pode soar dessa maneira. Na realidade, é um monte de trabalho duro.", + "replies": [ + { + "text": "N", + "nextPhraseID": "laecca_5" + } + ] + }, + { + "id": "laecca_4", + "message": "Muito engraçado. Eu tenho que descansar, você também sabe. Manter os monstros longe é trabalho duro.", + "replies": [ + { + "text": "N", + "nextPhraseID": "laecca_5" + } + ] + }, + { + "id": "laecca_5", + "message": "Costumavam haver mais guias da montanha, mas muitos não sobreviveram ao ataque dos animais.", + "replies": [ + { + "text": "Parece que você não está realmente animado para continuar em seu trabalho.", + "nextPhraseID": "laecca_6" + }, + { + "text": "Sinto muito por ouvir isso.", + "nextPhraseID": "laecca_8" + }, + { + "text": "Quais animais você está falando?", + "nextPhraseID": "laecca_9" + } + ] + }, + { + "id": "laecca_6", + "message": "Talvez.", + "replies": [ + { + "text": "N", + "nextPhraseID": "laecca_7" + } + ] + }, + { + "id": "laecca_7", + "message": "De qualquer forma, tenho algumas coisas para cuidar. Foi bom falar com você.", + "replies": [ + { + "text": "Até logo.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "laecca_8", + "message": "Obrigado por sua preocupação.", + "replies": [ + { + "text": "Existe algo que eu possa fazer para ajudar?", + "nextPhraseID": "laecca_13" + } + ] + }, + { + "id": "laecca_9", + "message": "Pfft, 'Que animais?'. Os animais amaldiçoados Gornaud.", + "replies": [ + { + "text": "N", + "nextPhraseID": "laecca_10" + } + ] + }, + { + "id": "laecca_10", + "message": "Coçam suas garras contra a rocha nua à noite. *Shrug*", + "replies": [ + { + "text": "N", + "nextPhraseID": "laecca_11" + } + ] + }, + { + "id": "laecca_11", + "message": "No início, eu pensei que eles estavam agindo por puro instinto. Mas, recentemente, eu comecei a acreditar que eles são mais espertos do que os animais normais.", + "replies": [ + { + "text": "N", + "nextPhraseID": "laecca_12" + } + ] + }, + { + "id": "laecca_12", + "message": "Seus ataques estão ficando mais e mais inteligentes.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 11 + } + ], + "replies": [ + { + "text": "Existe algo que eu possa fazer para ajudar?", + "nextPhraseID": "laecca_13" + } + ] + }, + { + "id": "laecca_13", + "message": "Você deve conversar com Guthbered. Ele está geralmente na prefeitura. Procure uma casa de pedra no centro da vila.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 15 + } + ] + }, + { + "id": "prim_cook_start", + "replies": [ + { + "nextPhraseID": "prim_cook_return_1", + "requires": { + "progress": "prim_innquest:50" + } + }, + { + "nextPhraseID": "prim_cook_return_2", + "requires": { + "progress": "prim_innquest:10" + } + }, + { + "nextPhraseID": "prim_cook_1" + } + ] + }, + { + "id": "prim_cook_1", + "message": "Posso ajudá-lo?", + "replies": [ + { + "text": "Posso ver o que você tem para comer?", + "nextPhraseID": "prim_cook_2" + }, + { + "text": "O quarto dos fundos está disponível para aluguel?", + "nextPhraseID": "prim_cook_3" + } + ] + }, + { + "id": "prim_cook_2", + "message": "Comida? Não, desculpe. Eu não tenho nada para negociar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_cook_1" + } + ] + }, + { + "id": "prim_cook_3", + "message": "Aluguel? Hm. Não, não neste momento.", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_cook_41" + } + ] + }, + { + "id": "prim_cook_5", + "message": "Agora que você mencionou, ele não tem sido visto por aqui faz algum tempo. Talvez você pudesse falar com ele e ver se ele é ainda quer alugá-lo?", + "replies": [ + { + "text": "Ok, eu vou falar com ele.", + "nextPhraseID": "prim_cook_7" + }, + { + "text": "Claro. Alguma ideia de onde ele possa estar?", + "nextPhraseID": "prim_cook_6" + } + ] + }, + { + "id": "prim_cook_41", + "message": "Ele ainda está alugado para Arghest. Ele não ficaria muito feliz se eu alugar a mais alguém quando ele espera por utilizá-lo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_cook_5" + } + ] + }, + { + "id": "prim_cook_6", + "message": "Eu não sei onde ele está agora, mas eu sei que ele costumava fazer parte do time da mineração. Deve estar na mina a sudoeste.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_innquest", + "value": 10 + } + ], + "replies": [ + { + "text": "Obrigado. Eu vou procurar ele.", + "nextPhraseID": "X" + }, + { + "text": "Eu vou procurá-lo imediatamente.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "prim_cook_7", + "message": "Obrigado.", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_cook_6" + } + ] + }, + { + "id": "prim_cook_return_1", + "message": "Obrigado por sua ajuda mais cedo. Espero que o quarto dos fundos esteja confortável o suficiente.", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_cook_return_7" + } + ] + }, + { + "id": "prim_cook_return_2", + "message": "Você falou com Arghest?", + "replies": [ + { + "text": "Não, ainda não.", + "nextPhraseID": "prim_cook_return_3" + }, + { + "text": "(Mentira) Sim, ele me disse que eu poderia descansar no quarto dos fundos, se eu quiser.", + "nextPhraseID": "prim_cook_return_4" + }, + { + "text": "Sim, ele me deu permissão para usar a sala de volta sempre que eu quiser.", + "nextPhraseID": "prim_cook_return_6", + "requires": { + "progress": "prim_innquest:40" + } + } + ] + }, + { + "id": "prim_cook_return_3", + "message": "Volte para mim uma vez que você saiba se ele ainda está interessado em alugar o quarto ou não.", + "replies": [ + { + "text": "Alguma ideia de onde ele possa estar?", + "nextPhraseID": "prim_cook_6" + } + ] + }, + { + "id": "prim_cook_return_4", + "message": "Será que ele realmente disse isso? De alguma forma eu duvido disso. Não soa como ele.", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_cook_return_5" + } + ] + }, + { + "id": "prim_cook_return_5", + "message": "Você vai ter que fazer algo mais para me convencer." + }, + { + "id": "prim_cook_return_6", + "message": "Realmente, ele fez? Pois bem, vá em frente. Estou feliz por ver que o quarto está novamente em uso.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_innquest", + "value": 50 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_cook_return_7" + } + ] + }, + { + "id": "prim_cook_return_7", + "message": "Você está convidado a descansar no quarto de volta a qualquer hora que quiser. Por favor, deixe-me saber se existe alguma coisa que eu possa fazer para ajudar." + }, + { + "id": "prim_innguest", + "message": "Lugar Adorável por aqui, não?" + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_prim_merchants.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_prim_merchants.json new file mode 100644 index 000000000..7e319a333 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_prim_merchants.json @@ -0,0 +1,156 @@ +[ + { + "id": "prim_armorer", + "replies": [ + { + "nextPhraseID": "prim_armorer_1", + "requires": { + "progress": "prim_hunt:240" + } + }, + { + "nextPhraseID": "prim_armorer_2" + } + ] + }, + { + "id": "prim_armorer_1", + "message": "Amigo, bem-vindo! Gostaria de ver os equipamentos que tenho disponíveis?", + "replies": [ + { + "text": "Claro. Mostre-me o que você tem.", + "nextPhraseID": "prim_armorer_3" + } + ] + }, + { + "id": "prim_armorer_2", + "message": "Viajante, bem-vindo. Você está aqui para pedir minha ajuda e do equipamento que eu vendo?", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_notrust" + } + ] + }, + { + "id": "prim_armorer_3", + "message": "Devo dizer-lhe que a meus fornecedores não são mais o que costumavam ser, agora que a entrada da mina sul desmoronou. Muito menos comerciantes têm vindo aqui para Prim nesses tempos.", + "replies": [ + { + "text": "Ok, deixe-me ver seus produtos.", + "nextPhraseID": "S" + } + ] + }, + { + "id": "prim_notrust", + "message": "Independentemente disso, eu não posso te ajudar. Meus serviços são apenas para residentes de Prim, e eu não confio em você o suficiente ainda. Você pode ser um espião do assentamento da Montanha das Águas Negras." + }, + { + "id": "prim_tailor", + "message": "Viajante, bem-vindo, o que eu posso fazer por você?", + "replies": [ + { + "text": "Deixe-me ver o que você tem disponível para vender.", + "nextPhraseID": "prim_tailor_1" + } + ] + }, + { + "id": "prim_tailor_1", + "message": "Vender? Sinto muito, todo meu suprimento acabou. Agora que os comerciantes não vêm mais aqui, eu não recebo mais carregamentos regulares. Então, no momento, não tenho nada para negociar com você, infelizmente." + }, + { + "id": "guthbered_guard", + "replies": [ + { + "nextPhraseID": "guthbered_guard_2", + "requires": { + "progress": "bwm_agent:130" + } + }, + { + "nextPhraseID": "guthbered_guard_1" + } + ] + }, + { + "id": "guthbered_guard_1", + "message": "Converse com o chefe ao invés." + }, + { + "id": "guthbered_guard_2", + "message": "Por favor, não me machuque! Eu só estou fazendo o meu trabalho aqui." + }, + { + "id": "prim_guard1", + "message": "O que você está olhando? Estas armas nas caixas aqui são apenas para nós, guardas." + }, + { + "id": "prim_guard2", + "message": "(O guarda observa você com um olhar condescendente)" + }, + { + "id": "prim_guard3", + "message": "Oh, eu estou tão cansado. Quando é que vamos poder descansar?" + }, + { + "id": "prim_guard4", + "message": "Não posso falar agora. Estou de guarda. Se precisar de ajuda, fale com alguém ali ao invés." + }, + { + "id": "prim_treasury_guard", + "message": "Veja essas barras? Eles não vão segurar-me por muito tempo." + }, + { + "id": "prim_acolyte", + "message": "Quando a minha formação completar, eu vou ser um dos maiores curandeiros ao redor!" + }, + { + "id": "prim_pupil1", + "message": "Você não consegue ver que eu estou tentando ler por aqui? Fale comigo depois e eu poderei estar mais estar interessado." + }, + { + "id": "prim_pupil2", + "message": "Não posso falar agora, tenho trabalho a fazer." + }, + { + "id": "prim_pupil3", + "message": "Você é aquele de quem eu ouvi falar? Não, você não pode ser. Eu imaginei alguém mais alto." + }, + { + "id": "prim_priest", + "replies": [ + { + "nextPhraseID": "prim_priest_1", + "requires": { + "progress": "prim_hunt:240" + } + }, + { + "nextPhraseID": "prim_priest_2" + } + ] + }, + { + "id": "prim_priest_1", + "message": "Amigo, bem-vindo! Gostaria de consultar minha seleção de finas poções e pomadas?", + "replies": [ + { + "text": "Claro. Mostre-me o que você tem.", + "nextPhraseID": "S" + } + ] + }, + { + "id": "prim_priest_2", + "message": "Viajante, bem-vindo. Você veio para pedir minha ajuda e a de minhas poções?", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_notrust" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_prim_outside.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_prim_outside.json new file mode 100644 index 000000000..b81d586a8 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_prim_outside.json @@ -0,0 +1,355 @@ +[ + { + "id": "tonis_start", + "replies": [ + { + "nextPhraseID": "tonis_return_1", + "requires": { + "progress": "prim_hunt:10" + } + }, + { + "nextPhraseID": "tonis_1" + } + ] + }, + { + "id": "tonis_return_1", + "message": "Olá novamente. Você já falou com Guthbered no salão principal Prim?", + "replies": [ + { + "text": "Não, ainda não. Onde posso encontrá-lo?", + "nextPhraseID": "tonis_return_2" + }, + { + "text": "Sim, ele me contou a história sobre Prim.", + "nextPhraseID": "tonis_8", + "requires": { + "progress": "prim_hunt:20" + } + }, + { + "text": "Não, e não tenho a intenção de falar com ele também. Eu estou em uma missão urgente para ajudar o povoamento de Montanha das Águas Negras.", + "nextPhraseID": "tonis_return_3" + } + ] + }, + { + "id": "tonis_1", + "message": "Você aí! Por favor, você tem que nos ajudar!", + "replies": [ + { + "text": "Qual é o problema?", + "nextPhraseID": "tonis_6" + }, + { + "text": "É este o povoamento de Montanha das Águas Negras?", + "nextPhraseID": "tonis_2" + }, + { + "text": "Desculpe, eu não posso ser incomodado agora. Disseram-me para ir para o leste rapidamente.", + "nextPhraseID": "tonis_4" + } + ] + }, + { + "id": "tonis_2", + "message": "Aguas Negras? Não, não, certamente não. Bem ali fica a aldeia de Prim.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tonis_3" + } + ] + }, + { + "id": "tonis_3", + "message": "Montanha das Águas Negras, esses perversos bastardos.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tonis_6" + } + ] + }, + { + "id": "tonis_4", + "message": "Leste? Mas isso leva até a Montanha das Águas Negras.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tonis_5" + } + ] + }, + { + "id": "tonis_5", + "message": "Você realmente não gostaria de ir lá em cima.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tonis_3" + } + ] + }, + { + "id": "tonis_6", + "message": "Precisamos desesperadamente da ajuda de alguém de fora na nossa aldeia de Prim.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "tonis_7" + } + ] + }, + { + "id": "tonis_7", + "message": "Você deve falar com Guthbered, no salão principal Prim, ao norte daqui.", + "replies": [ + { + "text": "Ok, eu vou vê-lo.", + "nextPhraseID": "tonis_8" + }, + { + "text": "Disseram-me para ir diretamente para o leste.", + "nextPhraseID": "tonis_4" + } + ] + }, + { + "id": "tonis_8", + "message": "Bom, obrigado. Nós realmente precisamos de sua ajuda!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 11 + } + ] + }, + { + "id": "tonis_return_2", + "message": "A aldeia de Prim é logo ao norte daqui. Provavelmente, você pode vê-la por entre as árvores ali.", + "replies": [ + { + "text": "Ok, eu vou lá imediatamente.", + "nextPhraseID": "tonis_8" + } + ] + }, + { + "id": "tonis_return_3", + "message": "Não dê ouvidos a suas mentiras!" + }, + { + "id": "moyra_1", + "message": "Fique longe. Este é o meu esconderijo.", + "replies": [ + { + "text": "O que você está escondendo?", + "nextPhraseID": "moyra_2" + }, + { + "text": "Quem é você?", + "nextPhraseID": "moyra_3" + } + ] + }, + { + "id": "moyra_2", + "message": "Garras, batidas, Gornauds. Eles não podem me alcançar aqui.", + "replies": [ + { + "text": "'Gornauds', é assim que o que esses monstros fora da aldeia são chamados?", + "nextPhraseID": "moyra_5" + }, + { + "text": "Sim, claro. Fique aqui e se esconda, criatura patética.", + "nextPhraseID": "moyra_4" + } + ] + }, + { + "id": "moyra_3", + "message": "Eu? Sou Moyra.", + "replies": [ + { + "text": "Por que você está escondendo?", + "nextPhraseID": "moyra_2" + } + ] + }, + { + "id": "moyra_4", + "message": "Olhe o que você está dizendo! Eu não quero falar com você mais." + }, + { + "id": "moyra_5", + "message": "Por favor, não tão alto! Eles podem ouvir você.", + "replies": [ + { + "text": "N", + "nextPhraseID": "moyra_6" + } + ] + }, + { + "id": "moyra_6", + "message": "Eu vi-os no caminho da montanha e na montanha também. Afiando suas garras.", + "replies": [ + { + "text": "N", + "nextPhraseID": "moyra_7" + } + ] + }, + { + "id": "moyra_7", + "message": "Eu me escondo aqui agora, então eles não podem chegar até mim." + }, + { + "id": "prim_commoner1", + "message": "Olá. Bem-vindo a Prim. Você está aqui para nos ajudar?", + "replies": [ + { + "text": "Sim, eu estou aqui para ajudar a sua aldeia.", + "nextPhraseID": "prim_commoner1_2" + }, + { + "text": "(Mentira) Sim, eu estou aqui para ajudar a sua aldeia.", + "nextPhraseID": "prim_commoner1_2" + } + ] + }, + { + "id": "prim_commoner1_2", + "message": "Obrigado. Nós realmente precisamos da sua ajuda.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 11 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_commoner1_3" + } + ] + }, + { + "id": "prim_commoner1_3", + "message": "Você deve falar com Guthbered se você não tiver feito isso.", + "replies": [ + { + "text": "Vou fazer, adeus.", + "nextPhraseID": "X" + }, + { + "text": "Onde posso encontrá-lo?", + "nextPhraseID": "prim_commoner1_4" + } + ] + }, + { + "id": "prim_commoner1_4", + "message": "Ele está no salão principal ali. A grande casa de pedra.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 15 + } + ] + }, + { + "id": "prim_commoner2", + "message": "Olá, você parece ser novo por aqui. Como posso ajudá-lo?", + "replies": [ + { + "text": "Existe algum lugar que eu possa descansar por aqui?", + "nextPhraseID": "prim_commoner2_rest1" + }, + { + "text": "Onde posso encontrar um comerciante por aqui?", + "nextPhraseID": "prim_commoner2_trade1" + } + ] + }, + { + "id": "prim_commoner2_rest1", + "message": "Você deve ser capaz de encontrar algum lugar para descansar na pousada logo ali ao sudeste.", + "replies": [ + { + "text": "Obrigado, adeus.", + "nextPhraseID": "X" + }, + { + "text": "Onde posso encontrar um comerciante por aqui?", + "nextPhraseID": "prim_commoner2_trade1" + } + ] + }, + { + "id": "prim_commoner2_trade1", + "message": "O nosso armeiro está na casa no canto sudoeste. Devo adverti-lo, no entanto, de que seus suprimentos não são mais o que costumavam ser.", + "replies": [ + { + "text": "Obrigado, adeus.", + "nextPhraseID": "X" + }, + { + "text": "Existe algum lugar que eu possa descansar por aqui?", + "nextPhraseID": "prim_commoner2_rest1" + } + ] + }, + { + "id": "prim_commoner3", + "message": "Olá. Bem-vindo a Prim." + }, + { + "id": "prim_commoner4", + "message": "Olá. Quem é você? Você está aqui para nos ajudar?", + "replies": [ + { + "text": "Eu estou procurando meu irmão. Você por acaso por ventura o viu por aqui?", + "nextPhraseID": "prim_commoner4_1" + }, + { + "text": "Sim, eu vim para ajudar a sua aldeia.", + "nextPhraseID": "prim_commoner4_3" + }, + { + "text": "(Mentira) Sim, eu vim para ajudar a sua aldeia.", + "nextPhraseID": "prim_commoner4_3" + } + ] + }, + { + "id": "prim_commoner4_1", + "message": "Seu irmão? Filho, você deve saber que nós não temos muitos visitantes por aqui.", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_commoner4_2" + } + ] + }, + { + "id": "prim_commoner4_2", + "message": "Então, não. Eu não posso te ajudar." + }, + { + "id": "prim_commoner4_3", + "message": "Oh obrigado. Nós realmente poderiamos receber alguma ajuda por aqui." + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_prim_tavern.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_prim_tavern.json new file mode 100644 index 000000000..85b930f4e --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_prim_tavern.json @@ -0,0 +1,177 @@ +[ + { + "id": "birgil_1", + "message": "Bem-vindo ao meu botequim. Por favor, sente-se onde quiser.", + "replies": [ + { + "text": "O que você tem para beber por aqui?", + "nextPhraseID": "birgil_2" + } + ] + }, + { + "id": "birgil_2", + "message": "Bem, infelizmente, com o túnel da mina ruiu, não podemos negociar muito com as aldeias de fora.", + "replies": [ + { + "text": "N", + "nextPhraseID": "birgil_3" + } + ] + }, + { + "id": "birgil_3", + "message": "No entanto, eu tenho uma enorme oferta de hidromel que eu estoquei antes que a mina ruisse.", + "replies": [ + { + "text": "Hidromel? Argh! Demasiado doce para o meu gosto.", + "nextPhraseID": "birgil_4" + }, + { + "text": "Tudo bem! Apenas é o meu tipo preferido de bebida. Vamos ver o que você tem que trocar.", + "nextPhraseID": "S" + }, + { + "text": "Muito bem, ela terá que servir. Eu acho que tem algum potencial de cura. Vamos negociar.", + "nextPhraseID": "S" + } + ] + }, + { + "id": "birgil_4", + "message": "Como quiser. Isso é o que eu tenho de qualquer maneira.", + "replies": [ + { + "text": "Ok, vamos negociar de qualquer maneira.", + "nextPhraseID": "S" + }, + { + "text": "Não importa, adeus.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "prim_tavern_guest1", + "message": "Ah, alguém novo por aqui.", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_tavern_guest1_1" + } + ] + }, + { + "id": "prim_tavern_guest1_1", + "message": "Garoto, seja bem-vindo. Você está aqui para afogar suas tristezas, como o resto de nós?", + "replies": [ + { + "text": "Na verdade não. O que há para fazer por aqui?", + "nextPhraseID": "prim_tavern_guest1_3" + }, + { + "text": "Sim, dá-me um pouco do que você tiver.", + "nextPhraseID": "prim_tavern_guest1_4" + }, + { + "text": "Pare de topar comigo enquanto eu estou tento andar.", + "nextPhraseID": "prim_tavern_guest1_2" + } + ] + }, + { + "id": "prim_tavern_guest1_2", + "message": "Oh meu, um mal-humorado. Muito bem, vou sair do seu caminho." + }, + { + "id": "prim_tavern_guest1_3", + "message": "Beber, é claro!", + "replies": [ + { + "text": "Eu deveria ter percebido que isso viria. Tchau.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "prim_tavern_guest1_4", + "message": "Ei, isso é meu. Compre o seu próprio hidromel de Birgil lá.", + "replies": [ + { + "text": "Claro, qualquer coisa.", + "nextPhraseID": "X" + }, + { + "text": "Certo.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "prim_tavern_guest2", + "message": "*hic* Ei garoto aiii. Você vai comprar um veterano como eu com uma nova rodada de hidromel?", + "replies": [ + { + "text": "Caramba, o que aconteceu com você? Fique longe de mim.", + "nextPhraseID": "X" + }, + { + "text": "De jeito algum, e pare de bloquear meu caminho.", + "nextPhraseID": "X" + }, + { + "text": "Claro. Aqui está.", + "nextPhraseID": "prim_tavern_guest2_1", + "requires": { + "item": { + "itemID": "mead", + "quantity": 1, + "requireType": 0 + } + } + } + ] + }, + { + "id": "prim_tavern_guest2_1", + "message": "Hey hey, Muito obrigado, garoto! *Hic*" + }, + { + "id": "prim_tavern_guest3", + "message": "*grunhido*" + }, + { + "id": "prim_tavern_guest4", + "message": "Garras. Coceira.", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_tavern_guest4_1" + } + ] + }, + { + "id": "prim_tavern_guest4_1", + "message": "Tem um porão de pobres Kirg que eles fizeram.", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_tavern_guest4_2" + } + ] + }, + { + "id": "prim_tavern_guest4_2", + "message": "Esses animais malditos.", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_tavern_guest4_3" + } + ] + }, + { + "id": "prim_tavern_guest4_3", + "message": "E é tudo culpa minha. *Gulp*" + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_pwcave.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_pwcave.json new file mode 100644 index 000000000..0c9c09d70 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_pwcave.json @@ -0,0 +1,242 @@ +[ + { + "id": "iqhan_greeter", + "message": "Vá embora! Não! Volte, enquanto você ainda pode!", + "replies": [ + { + "text": "N", + "nextPhraseID": "iqhan_greeter_1" + } + ] + }, + { + "id": "iqhan_greeter_1", + "message": "Você não sabe o que eles vão fazer com você!", + "replies": [ + { + "text": "Que lugar é esse?", + "nextPhraseID": "iqhan_greeter_2" + } + ] + }, + { + "id": "iqhan_greeter_2", + "message": "O quê? Não, não, não. Você deve sair daqui!", + "replies": [ + { + "text": "N", + "nextPhraseID": "R" + } + ] + }, + { + "id": "iqhan_boss", + "message": "*Ofegante*", + "replies": [ + { + "text": "N", + "nextPhraseID": "iqhan_boss_1" + } + ] + }, + { + "id": "iqhan_boss_1", + "message": "(A figura aponta o dedo para você, no que parece ser uma ordem para os escravos proximos atacá-lo.)", + "replies": [ + { + "text": "Lute!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "sign_waterway1", + "message": "Sul: Loneford\nLeste: Brimhaven.\n(Você também vê algo escrito em uma seta apontando para o oeste, mas você não consegue entender as palavras)" + }, + { + "id": "sign_waterway3", + "message": "(A placa está escrita em um idioma que você não pode entender)" + }, + { + "id": "gauward", + "message": "O que .. Ah, um visitante!", + "replies": [ + { + "text": "Que lugar é esse?", + "nextPhraseID": "gauward_1" + }, + { + "text": "Tenho algumas garras Izthiel para vender você.", + "nextPhraseID": "gauward_sell_1", + "requires": { + "progress": "nondisplay:20" + } + } + ] + }, + { + "id": "gauward_1", + "message": "Este lugar costumava ser uma parada segura para os viajantes entre Loneford e Brimhaven, antes de terem atravessado toda a estrada entre as aldeias.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gauward_2" + } + ] + }, + { + "id": "gauward_2", + "message": "Mas hoje em dia, quase ninguém vem aqui - por causa dessas criaturas amaldiçoadas do rio.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gauward_3" + } + ] + }, + { + "id": "gauward_3", + "message": "Izthiel, eles as chamam.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gauward_4" + } + ] + }, + { + "id": "gauward_4", + "message": "Argh, se não fosse por essas coisas lá fora, tenho certeza que um monte de gente ia passar por aqui mais vezes.", + "replies": [ + { + "text": "Gostaria que eu mate essas criaturas para você?", + "nextPhraseID": "gauward_5" + } + ] + }, + { + "id": "gauward_5", + "message": "Ah, claro. Eu tentei isso. Mas elas continuam voltando.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gauward_6" + } + ] + }, + { + "id": "gauward_6", + "message": "Quer saber: traga-me as garras deles, e eu vou comprá-los por um bom preço.", + "replies": [ + { + "text": "Ok, vou voltar com algumas de suas garras.", + "nextPhraseID": "gauward_7" + } + ] + }, + { + "id": "gauward_7", + "message": "Bom. Por favor, faça. Eu gosto de saber que seus números sejão reduzidos, pelo menos.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nondisplay", + "value": 20 + } + ] + }, + { + "id": "gauward_sell_1", + "message": "Ótimo. Quantas você gostaria de vender?", + "replies": [ + { + "text": "Aqui está um.", + "nextPhraseID": "gauward_sold_1", + "requires": { + "item": { + "itemID": "izthiel_claw", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Aqui estão cinco.", + "nextPhraseID": "gauward_sold_5", + "requires": { + "item": { + "itemID": "izthiel_claw", + "quantity": 5, + "requireType": 0 + } + } + }, + { + "text": "Aqui estão 10.", + "nextPhraseID": "gauward_sold_10", + "requires": { + "item": { + "itemID": "izthiel_claw", + "quantity": 10, + "requireType": 0 + } + } + }, + { + "text": "Aqui estão 20.", + "nextPhraseID": "gauward_sold_20", + "requires": { + "item": { + "itemID": "izthiel_claw", + "quantity": 20, + "requireType": 0 + } + } + }, + { + "text": "Não importa. Eu estarei de volta com mais garras Izthiel para vender você.", + "nextPhraseID": "gauward_7" + } + ] + }, + { + "id": "gauward_sold_1", + "message": "Bom, obrigado. Aqui está um pouco de ouro para seus problemas.", + "rewards": [ + { + "rewardType": 1, + "rewardID": "gold5" + } + ] + }, + { + "id": "gauward_sold_5", + "message": "Excelente, muito obrigado! Aqui está um pouco de ouro para seus problemas.", + "rewards": [ + { + "rewardType": 1, + "rewardID": "gold25" + } + ] + }, + { + "id": "gauward_sold_10", + "message": "Excelente, muito obrigado! Aqui está um pouco de ouro para seus problemas.", + "rewards": [ + { + "rewardType": 1, + "rewardID": "gold50" + } + ] + }, + { + "id": "gauward_sold_20", + "message": "Oh, uau, você conseguiu obter 20 dessas garras? Isso é excelente, muito obrigado! Aqui está um pouco de ouro e algum extra em poções de saúde para seus problemas.", + "rewards": [ + { + "rewardType": 1, + "rewardID": "gauward_sold_20" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_reinkarr.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_reinkarr.json new file mode 100644 index 000000000..2f60bc2e8 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_reinkarr.json @@ -0,0 +1,159 @@ +[ + { + "id": "reinkarr", + "message": "Obrigado.", + "replies": [ + { + "text": "Quem é você?", + "nextPhraseID": "reinkarr_3" + }, + { + "text": "Estou procurando meu irmão Andor.", + "nextPhraseID": "reinkarr_1" + }, + { + "text": "Eu estou apenas procurando por problemas.", + "nextPhraseID": "reinkarr_2" + } + ] + }, + { + "id": "reinkarr_1", + "message": "Ok então. Boa sorte com isso.", + "replies": [ + { + "text": "Quem é você?", + "nextPhraseID": "reinkarr_3" + } + ] + }, + { + "id": "reinkarr_2", + "message": "Ha ha, isso soa como um aventureiro certeza! Coragem é o que você precisa para ser um aventureiro bem sucedido, filho. Em você não parece faltar coragem, se assim posso dizer.", + "replies": [ + { + "text": "Quem é você?", + "nextPhraseID": "reinkarr_3" + } + ] + }, + { + "id": "reinkarr_3", + "message": "Eu sou Reinkarr. Eu acho que você poderia me chamar de um aventureiro sortudo.", + "replies": [ + { + "text": "Alguma boa história para contar?", + "nextPhraseID": "reinkarr_4" + } + ] + }, + { + "id": "reinkarr_4", + "message": "Não, não realmente. Eu nunca peguei o jeito do negócio aventurar totalmente. Eu e alguns outros companheiros foram à procura por estes... cristais... da qual havíamos ouvido falar.", + "replies": [ + { + "text": "Que cristais?", + "nextPhraseID": "reinkarr_5" + } + ] + }, + { + "id": "reinkarr_5", + "message": "Realmente não importa. Nós nunca encontramos nenhum deles, de qualquer maneira.", + "replies": [ + { + "text": "Que cristais que você estava procurando?", + "nextPhraseID": "reinkarr_6" + } + ] + }, + { + "id": "reinkarr_6", + "message": "Eles eram chamados de 'cristais Oegyth'. Supostamente muito poderosos e valem uma fortuna.", + "replies": [ + { + "text": "Eu tenho um desses.", + "nextPhraseID": "reinkarr_oeg_1", + "requires": { + "item": { + "itemID": "oegyth", + "quantity": 1, + "requireType": 1 + } + } + }, + { + "text": "Então, o que o fez parar de procurar?", + "nextPhraseID": "reinkarr_8" + }, + { + "text": "O que são eles?", + "nextPhraseID": "reinkarr_7" + } + ] + }, + { + "id": "reinkarr_7", + "message": "Na verdade, tudo o que eu sei é que eles são uma espécie de cristal. Como eu disse, eles são supostamente muito poderosos. Nós só procuramos eles para que possamos vendê-los e tornar-nos ricos.", + "replies": [ + { + "text": "O que fez você parar de procurar?", + "nextPhraseID": "reinkarr_8" + } + ] + }, + { + "id": "reinkarr_8", + "message": "Só o tédio total, eu acho. Nós nunca fomos nem um pouco bons com respeito a lutas, e como tal, nunca encontramos uma dessas coisas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "reinkarr_9" + } + ] + }, + { + "id": "reinkarr_9", + "message": "De qualquer forma, foi bom falar com você, garoto. Tome cuidado." + }, + { + "id": "reinkarr_oeg_1", + "message": "O quê? Você realmente tem uma dessas coisas? Deixe-me ver. Sim, isso combina com a descrição que eu li.", + "replies": [ + { + "text": "N", + "nextPhraseID": "reinkarr_oeg_2" + } + ] + }, + { + "id": "reinkarr_oeg_2", + "message": "Você faria bem para si mesmo em guardar isso para si, garoto. Faça o que fizer, não perca-lo, e não saia por aí mostrando para todo mundo que você o encontrou. Você pode entrar em sérios apuros.", + "replies": [ + { + "text": "O que posso fazer com ele?", + "nextPhraseID": "reinkarr_oeg_3" + } + ] + }, + { + "id": "reinkarr_oeg_3", + "message": "Eu ouço há comerciantes que fariam qualquer coisa para ter em suas mãos em alguns desses cristais. Você deve procurar os comerciantes em uma das grandes cidades, e perguntar-lhes.", + "replies": [ + { + "text": "N", + "nextPhraseID": "reinkarr_oeg_4" + } + ] + }, + { + "id": "reinkarr_oeg_4", + "message": "Tenha cuidado embora!", + "replies": [ + { + "text": "N", + "nextPhraseID": "reinkarr_9" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_remgard_bridgeguard.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_remgard_bridgeguard.json new file mode 100644 index 000000000..720526f08 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_remgard_bridgeguard.json @@ -0,0 +1,388 @@ +[ + { + "id": "remgard_bridge", + "replies": [ + { + "nextPhraseID": "remgardb_helped_1", + "requires": { + "progress": "remgard:35" + } + }, + { + "nextPhraseID": "remgardb_helped_n", + "requires": { + "progress": "remgard:31" + } + }, + { + "nextPhraseID": "remgardb_helped_y", + "requires": { + "progress": "remgard:30" + } + }, + { + "nextPhraseID": "remgardb_help_return", + "requires": { + "progress": "remgard:20" + } + }, + { + "nextPhraseID": "remgardb_1" + } + ] + }, + { + "id": "remgardb_1", + "message": "Alto! Ninguém está autorizado a entrar ou sair Remgard.", + "replies": [ + { + "text": "Por que? Há algo de errado?", + "nextPhraseID": "remgardb_2" + } + ] + }, + { + "id": "remgardb_2", + "message": "Errado? Pode apostar que está. Várias das pessoas da cidade desapareceram, e ainda estamos conduzindo o inquérito.", + "replies": [ + { + "text": "N", + "nextPhraseID": "remgardb_3" + } + ] + }, + { + "id": "remgardb_3", + "message": "Estamos procurando por eles na cidade, e questionando todos em busca de pistas sobre onde eles poderiam estar.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 10 + } + ], + "replies": [ + { + "text": "Por favor, continue.", + "nextPhraseID": "remgardb_5" + }, + { + "text": "Talvez eles apenas tenham decidido ir embora?", + "nextPhraseID": "remgardb_4" + } + ] + }, + { + "id": "remgardb_4", + "message": "Não, eu duvido disso.", + "replies": [ + { + "text": "N", + "nextPhraseID": "remgardb_5" + } + ] + }, + { + "id": "remgardb_5", + "message": "Considerando que nossa cidade é cercada pelo lago Laeroth, nós, os guardas, somos capazes de manter um olhar atento sobre tudo o que acontece aqui. Nós somos capazes de manter um registro de quem vai e vem, uma vez que esta ponte é a nossa única ligação com o continente.", + "replies": [ + { + "text": "N", + "nextPhraseID": "remgardb_6" + } + ] + }, + { + "id": "remgardb_6", + "message": "Para o seu bem, é provavelmente mais seguro para você ficar fora da cidade até que a nossa investigação esteja completa.", + "replies": [ + { + "text": "Eu estou disposto a ajudá-lo com a investigação se quiser.", + "nextPhraseID": "remgardb_help_1" + }, + { + "text": "Ok, vou deixá-lo com a sua investigação.", + "nextPhraseID": "X" + }, + { + "text": "Que tal se você me permitir entrar na cidade, para que eu possa negociar. Prometo ser rápido.", + "nextPhraseID": "remgardb_7" + } + ] + }, + { + "id": "remgardb_7", + "message": "Não. Como eu disse, ninguém, exceto nós, os guardas, estamos autorizados a entrar ou sair da cidade até que nossa investigação seja concluída. Eu sugiro que você saia agora." + }, + { + "id": "remgardb_help_1", + "message": "Hum, sim, acho que pode ser uma boa ideia, na verdade. Considerando que você chegou até aqui, você deve ter algum conhecimento dos arredores.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 15 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "remgardb_help_2" + } + ] + }, + { + "id": "remgardb_help_2", + "message": "Quer saber: você pode ser capaz de nos ajudar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "remgardb_help_2b" + } + ] + }, + { + "id": "remgardb_help_2b", + "message": "Há uma casa abandonada em algum lugar a leste da aqui, em uma península na margem norte do lago Laeroth.", + "replies": [ + { + "text": "N", + "nextPhraseID": "remgardb_help_3" + } + ] + }, + { + "id": "remgardb_help_3", + "message": "Temos razões para acreditar que esta cabana esteja habitada por alguém, já que temos visto luzes de velas vindo de lá durante a noite através do lago. Não estamos certos, porém, pode ser apenas a luz da lua sobre a água.", + "replies": [ + { + "text": "N", + "nextPhraseID": "remgardb_help_4" + } + ] + }, + { + "id": "remgardb_help_4", + "message": "É aí que você entra. Talvez você possa ser capaz de nos ajudar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "remgardb_help_5" + } + ] + }, + { + "id": "remgardb_help_5", + "message": "Devo ficar aqui e guardar a ponte, mas você pode ir lá e dar olhada dentro.", + "replies": [ + { + "text": "N", + "nextPhraseID": "remgardb_help_6" + } + ] + }, + { + "id": "remgardb_help_6", + "message": "Agora, devo avisá-lo - isso pode ser perigoso. Se for como suspeitamos, a pessoa na cabina pode ser... digamos... uma oradora persuasiva.", + "replies": [ + { + "text": "N", + "nextPhraseID": "remgardb_help_7" + } + ] + }, + { + "id": "remgardb_help_7", + "message": "Então, se você realmente quiser nos ajudar, a tarefa que lhe peço é que você apenas olhe dentro dessa cabana e identifique se há alguém lá, e se assim for quem seria.", + "replies": [ + { + "text": "N", + "nextPhraseID": "remgardb_help_8" + } + ] + }, + { + "id": "remgardb_help_8", + "message": "Relate-me de volta o mais rápido possível, e não fale muito com alguém esteja por lá.", + "replies": [ + { + "text": "N", + "nextPhraseID": "remgardb_help_9s" + } + ] + }, + { + "id": "remgardb_help_9s", + "replies": [ + { + "nextPhraseID": "X", + "requires": { + "progress": "remgard:20" + } + }, + { + "nextPhraseID": "remgardb_help_9" + } + ] + }, + { + "id": "remgardb_help_9", + "message": "Você estaria disposto a fazer essa tarefa por nós?", + "replies": [ + { + "text": "Claro, eu ficaria feliz em ajudar.", + "nextPhraseID": "remgardb_help_10" + }, + { + "text": "Eu vou fazer isso. Espero, no entanto, que haja alguma recompensa por isso.", + "nextPhraseID": "remgardb_help_10" + }, + { + "text": "De jeito nenhum, isso soa muito perigoso para mim.", + "nextPhraseID": "remgardb_help_9d" + }, + { + "text": "Na verdade, eu já estive lá. Há uma mulher chamada Algangror na cabana.", + "nextPhraseID": "remgardb_helped_y", + "requires": { + "progress": "algangror:10" + } + }, + { + "text": "Na verdade, eu já estive lá, mas a cabana estava vazia.", + "nextPhraseID": "remgardb_helped_n", + "requires": { + "progress": "algangror:10" + } + } + ] + }, + { + "id": "remgardb_help_9d", + "message": "Eu não culpo você por declinar. Apesar de tudo, pode ser uma tarefa perigosa. Não custava perguntar." + }, + { + "id": "remgardb_help_10", + "message": "Excelente. Relate-me ao retornar o mais rápido possível.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 20 + } + ] + }, + { + "id": "remgardb_help_return", + "message": "Será que você encontrou alguma coisa naquela casa abandonada?", + "replies": [ + { + "text": "Ainda não. Conte-me novamente o que devo fazer.", + "nextPhraseID": "remgardb_help_2b" + }, + { + "text": "Ainda não, ainda estou trabalhando nisso.", + "nextPhraseID": "remgardb_help_10" + }, + { + "text": "Há uma mulher chamada Algangror na cabana.", + "nextPhraseID": "remgardb_helped_y", + "requires": { + "progress": "algangror:10" + } + }, + { + "text": "Sim, eu estive lá, mas a cabana estava vazia.", + "nextPhraseID": "remgardb_helped_n", + "requires": { + "progress": "algangror:10" + } + } + ] + }, + { + "id": "remgardb_helped_y", + "message": "Algangror, argh. Então é como se temia. Esta é uma notícia terrível.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "remgardb_helped_1" + } + ] + }, + { + "id": "remgardb_helped_1", + "message": "Você deve ir ver o ancião da vila, Jhaeld, e conversar com ele sobre o que devemos fazer em seguida. Eu vou deixar você entrar Remgard para falar com ele.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 35 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "remgardb_helped_2" + } + ] + }, + { + "id": "remgardb_helped_2", + "message": "Você provavelmente pode encontrá-lo na taberna para o sudeste, já que é onde ele passa a maior parte do seu tempo.", + "replies": [ + { + "text": "Eu vou vê-lo.", + "nextPhraseID": "R" + } + ] + }, + { + "id": "remgardb_helped_n", + "message": "Obrigado por checar a cabana. É um alívio saber que ela esteja vazia. Nossos receios podem não ser verdade, então, depois de tudo.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 31 + } + ], + "replies": [ + { + "text": "De nada. Algo mais em que eu possa ajudá-lo?", + "nextPhraseID": "remgardb_helped_n_2" + }, + { + "text": "De nada. Agora, e sobre a recompensa?", + "nextPhraseID": "remgardb_helped_n_3" + } + ] + }, + { + "id": "remgardb_helped_n_2", + "message": "Eu acho que você provou-nos ser útil. Podemos ter mais trabalho para você, se você estiver interessado.", + "replies": [ + { + "text": "N", + "nextPhraseID": "remgardb_helped_1" + } + ] + }, + { + "id": "remgardb_helped_n_3", + "message": "Não, não, nós não discutimos qualquer recompensa. Mas pode haver uma para você, se você está disposto a nos ajudar ainda mais.", + "replies": [ + { + "text": "N", + "nextPhraseID": "remgardb_helped_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_remgard_idolsigns.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_remgard_idolsigns.json new file mode 100644 index 000000000..bb01b7576 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_remgard_idolsigns.json @@ -0,0 +1,657 @@ +[ + { + "id": "jhaeld_bed", + "replies": [ + { + "nextPhraseID": "jhaeld_bed_2", + "requires": { + "progress": "fiveidols:41" + } + }, + { + "nextPhraseID": "jhaeld_bed_3", + "requires": { + "progress": "fiveidols:31" + } + }, + { + "nextPhraseID": "jhaeld_bed_1" + } + ] + }, + { + "id": "jhaeld_bed_1", + "message": "Você vê uma cama." + }, + { + "id": "jhaeld_bed_2", + "message": "Você vê uma cama. O ídolo ainda está onde você deixou." + }, + { + "id": "jhaeld_bed_3", + "message": "Você vê uma cama, que você acha que deve ser a cama de Jhaeld.", + "replies": [ + { + "text": "Você ocultou um dos ídolos sob a cama.", + "nextPhraseID": "jhaeld_bed_4s1", + "requires": { + "item": { + "itemID": "algangror_idol", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Você deixou a cama vazia.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jhaeld_bed_4s1", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 41 + } + ], + "replies": [ + { + "nextPhraseID": "jhaeld_bed_4s2", + "requires": { + "progress": "fiveidols:42" + } + }, + { + "nextPhraseID": "jhaeld_bed_4" + } + ] + }, + { + "id": "jhaeld_bed_4s2", + "replies": [ + { + "nextPhraseID": "jhaeld_bed_4s3", + "requires": { + "progress": "fiveidols:43" + } + }, + { + "nextPhraseID": "jhaeld_bed_4" + } + ] + }, + { + "id": "jhaeld_bed_4s3", + "replies": [ + { + "nextPhraseID": "jhaeld_bed_4s4", + "requires": { + "progress": "fiveidols:44" + } + }, + { + "nextPhraseID": "jhaeld_bed_4" + } + ] + }, + { + "id": "jhaeld_bed_4s4", + "replies": [ + { + "nextPhraseID": "jhaeld_bed_4s5", + "requires": { + "progress": "fiveidols:45" + } + }, + { + "nextPhraseID": "jhaeld_bed_4" + } + ] + }, + { + "id": "jhaeld_bed_4s5", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 50 + } + ], + "replies": [ + { + "nextPhraseID": "jhaeld_bed_4" + } + ] + }, + { + "id": "jhaeld_bed_4", + "message": "Você esconde o ídolo debaixo da cama." + }, + { + "id": "larni_bed", + "replies": [ + { + "nextPhraseID": "larni_bed_2", + "requires": { + "progress": "fiveidols:42" + } + }, + { + "nextPhraseID": "larni_bed_3", + "requires": { + "progress": "fiveidols:32" + } + }, + { + "nextPhraseID": "larni_bed_1" + } + ] + }, + { + "id": "larni_bed_1", + "message": "Você vê uma cama e mesa de cabeceira." + }, + { + "id": "larni_bed_2", + "message": "Você vê uma cama e mesa de cabeceira. O ídolo ainda está onde você o deixou." + }, + { + "id": "larni_bed_3", + "message": "Você vê uma cama e mesa de cabeceira. Este deve ser o leito de Larni.", + "replies": [ + { + "text": "Você ocultou um dos ídolos sob a cama.", + "nextPhraseID": "larni_bed_4s1", + "requires": { + "item": { + "itemID": "algangror_idol", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Você deixou a cama vazia.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "larni_bed_4s1", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 42 + } + ], + "replies": [ + { + "nextPhraseID": "larni_bed_4s2", + "requires": { + "progress": "fiveidols:41" + } + }, + { + "nextPhraseID": "larni_bed_4" + } + ] + }, + { + "id": "larni_bed_4s2", + "replies": [ + { + "nextPhraseID": "larni_bed_4s3", + "requires": { + "progress": "fiveidols:43" + } + }, + { + "nextPhraseID": "larni_bed_4" + } + ] + }, + { + "id": "larni_bed_4s3", + "replies": [ + { + "nextPhraseID": "larni_bed_4s4", + "requires": { + "progress": "fiveidols:44" + } + }, + { + "nextPhraseID": "larni_bed_4" + } + ] + }, + { + "id": "larni_bed_4s4", + "replies": [ + { + "nextPhraseID": "larni_bed_4s5", + "requires": { + "progress": "fiveidols:45" + } + }, + { + "nextPhraseID": "larni_bed_4" + } + ] + }, + { + "id": "larni_bed_4s5", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 50 + } + ], + "replies": [ + { + "nextPhraseID": "larni_bed_4" + } + ] + }, + { + "id": "larni_bed_4", + "message": "Você esconde o ídolo debaixo da cama." + }, + { + "id": "arnal_bed", + "replies": [ + { + "nextPhraseID": "arnal_bed_2", + "requires": { + "progress": "fiveidols:43" + } + }, + { + "nextPhraseID": "arnal_bed_3", + "requires": { + "progress": "fiveidols:33" + } + }, + { + "nextPhraseID": "arnal_bed_1" + } + ] + }, + { + "id": "arnal_bed_1", + "message": "Você vê uma cama e mesa de cabeceira." + }, + { + "id": "arnal_bed_2", + "message": "Você vê uma cama e mesa de cabeceira. O ídolo ainda está onde você deixou." + }, + { + "id": "arnal_bed_3", + "message": "Você vê uma cama e mesa de cabeceira. Esta deve ser cama de Arnal.", + "replies": [ + { + "text": "Você ocultou um dos ídolos sob a cama.", + "nextPhraseID": "arnal_bed_4s1", + "requires": { + "item": { + "itemID": "algangror_idol", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Você deixou a cama vazia.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "arnal_bed_4s1", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 43 + } + ], + "replies": [ + { + "nextPhraseID": "arnal_bed_4s2", + "requires": { + "progress": "fiveidols:41" + } + }, + { + "nextPhraseID": "arnal_bed_4" + } + ] + }, + { + "id": "arnal_bed_4s2", + "replies": [ + { + "nextPhraseID": "arnal_bed_4s3", + "requires": { + "progress": "fiveidols:42" + } + }, + { + "nextPhraseID": "arnal_bed_4" + } + ] + }, + { + "id": "arnal_bed_4s3", + "replies": [ + { + "nextPhraseID": "arnal_bed_4s4", + "requires": { + "progress": "fiveidols:44" + } + }, + { + "nextPhraseID": "arnal_bed_4" + } + ] + }, + { + "id": "arnal_bed_4s4", + "replies": [ + { + "nextPhraseID": "arnal_bed_4s5", + "requires": { + "progress": "fiveidols:45" + } + }, + { + "nextPhraseID": "arnal_bed_4" + } + ] + }, + { + "id": "arnal_bed_4s5", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 50 + } + ], + "replies": [ + { + "nextPhraseID": "arnal_bed_4" + } + ] + }, + { + "id": "arnal_bed_4", + "message": "Você esconde o ídolo debaixo da cama." + }, + { + "id": "emerei_bed", + "replies": [ + { + "nextPhraseID": "emerei_bed_2", + "requires": { + "progress": "fiveidols:44" + } + }, + { + "nextPhraseID": "emerei_bed_3", + "requires": { + "progress": "fiveidols:34" + } + }, + { + "nextPhraseID": "emerei_bed_1" + } + ] + }, + { + "id": "emerei_bed_1", + "message": "Você vê uma cama e mesa de cabeceira." + }, + { + "id": "emerei_bed_2", + "message": "Você vê uma cama e mesa de cabeceira. O ídolo ainda está onde você deixou." + }, + { + "id": "emerei_bed_3", + "message": "Você vê uma cama e mesa de cabeceira. Este deve ser o leito Emerei.", + "replies": [ + { + "text": "Você ocultou um dos ídolos sob a cama.", + "nextPhraseID": "emerei_bed_4s1", + "requires": { + "item": { + "itemID": "algangror_idol", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Você deixou a cama vazia.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "emerei_bed_4s1", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 44 + } + ], + "replies": [ + { + "nextPhraseID": "emerei_bed_4s2", + "requires": { + "progress": "fiveidols:41" + } + }, + { + "nextPhraseID": "emerei_bed_4" + } + ] + }, + { + "id": "emerei_bed_4s2", + "replies": [ + { + "nextPhraseID": "emerei_bed_4s3", + "requires": { + "progress": "fiveidols:42" + } + }, + { + "nextPhraseID": "emerei_bed_4" + } + ] + }, + { + "id": "emerei_bed_4s3", + "replies": [ + { + "nextPhraseID": "emerei_bed_4s4", + "requires": { + "progress": "fiveidols:43" + } + }, + { + "nextPhraseID": "emerei_bed_4" + } + ] + }, + { + "id": "emerei_bed_4s4", + "replies": [ + { + "nextPhraseID": "emerei_bed_4s5", + "requires": { + "progress": "fiveidols:45" + } + }, + { + "nextPhraseID": "emerei_bed_4" + } + ] + }, + { + "id": "emerei_bed_4s5", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 50 + } + ], + "replies": [ + { + "nextPhraseID": "emerei_bed_4" + } + ] + }, + { + "id": "emerei_bed_4", + "message": "Você esconde o ídolo debaixo da cama." + }, + { + "id": "carthe_bed", + "replies": [ + { + "nextPhraseID": "carthe_bed_2", + "requires": { + "progress": "fiveidols:45" + } + }, + { + "nextPhraseID": "carthe_bed_3", + "requires": { + "progress": "fiveidols:35" + } + }, + { + "nextPhraseID": "carthe_bed_1" + } + ] + }, + { + "id": "carthe_bed_1", + "message": "Você vê uma cama e mesa de cabeceira." + }, + { + "id": "carthe_bed_2", + "message": "Você vê uma cama e mesa de cabeceira. O ídolo ainda está onde você deixou." + }, + { + "id": "carthe_bed_3", + "message": "Você vê uma cama e mesa de cabeceira. Este deve ser o leito carThe.", + "replies": [ + { + "text": "Você ocultou um dos ídolos sob a cama.", + "nextPhraseID": "carthe_bed_4s1", + "requires": { + "item": { + "itemID": "algangror_idol", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Você deixou a cama vazia.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "carthe_bed_4s1", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 45 + } + ], + "replies": [ + { + "nextPhraseID": "carthe_bed_4s2", + "requires": { + "progress": "fiveidols:41" + } + }, + { + "nextPhraseID": "carthe_bed_4" + } + ] + }, + { + "id": "carthe_bed_4s2", + "replies": [ + { + "nextPhraseID": "carthe_bed_4s3", + "requires": { + "progress": "fiveidols:42" + } + }, + { + "nextPhraseID": "carthe_bed_4" + } + ] + }, + { + "id": "carthe_bed_4s3", + "replies": [ + { + "nextPhraseID": "carthe_bed_4s4", + "requires": { + "progress": "fiveidols:43" + } + }, + { + "nextPhraseID": "carthe_bed_4" + } + ] + }, + { + "id": "carthe_bed_4s4", + "replies": [ + { + "nextPhraseID": "carthe_bed_4s5", + "requires": { + "progress": "fiveidols:44" + } + }, + { + "nextPhraseID": "carthe_bed_4" + } + ] + }, + { + "id": "carthe_bed_4s5", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 50 + } + ], + "replies": [ + { + "nextPhraseID": "carthe_bed_4" + } + ] + }, + { + "id": "carthe_bed_4", + "message": "Você esconde o ídolo debaixo da cama." + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_remgard_villagers1.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_remgard_villagers1.json new file mode 100644 index 000000000..2a5b86649 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_remgard_villagers1.json @@ -0,0 +1,320 @@ +[ + { + "id": "remgard_villager1", + "message": "Eu não o reconheço. Você não é de Remgard, não é?", + "replies": [ + { + "text": "Não, eu sou de um pequeno povoado chamado Crossglen, e eu estou procurando meu irmão Andor.", + "nextPhraseID": "remgard_villager1_2" + } + ] + }, + { + "id": "remgard_villager1_2", + "message": "Ok então. Boa sorte com isso." + }, + { + "id": "remgard_villager2", + "message": "Não fique no meu caminho, eu estou tentando andar aqui, você não vê?", + "replies": [ + { + "text": "Não tem problema, por favor, vá em frente.", + "nextPhraseID": "X" + }, + { + "text": "Não, você saia do *meu* caminho!", + "nextPhraseID": "remgard_villager2_2" + } + ] + }, + { + "id": "remgard_villager2_2", + "message": "Hah! *bufando*" + }, + { + "id": "remgard_villager3", + "message": "Você viu o meu anel? Deixei-o entre as árvores, eu tenho certeza. Ele era um lindo anel." + }, + { + "id": "remgard_villager4", + "message": "Bom dia." + }, + { + "id": "remgard_villager5", + "message": "Desculpe-me, eu não tenho tempo para falar." + }, + { + "id": "remgard_villager6", + "message": "Você não é daqui, não é? Se você precisar de um lugar para ficar, visite a taverna. Ouvi dizer que Kendelow tem um quarto disponível para alugar." + }, + { + "id": "remgard_villager7", + "message": "Eu ouvi barulhos estranhos da outra margem do lago Laeroth. Gostaria de saber o que se esconde nas margens do outro lado." + }, + { + "id": "remgard_villager8", + "message": "Olá." + }, + { + "id": "petdog", + "message": "Au, Au! *arfado* *arfado*" + }, + { + "id": "taylin", + "message": "Não, fuja! Eles não podem me encontrar aqui. Não revele o meu bom esconderijo!" + }, + { + "id": "larni", + "replies": [ + { + "nextPhraseID": "larni_2", + "requires": { + "progress": "fiveidols:42" + } + }, + { + "nextPhraseID": "larni_1" + } + ] + }, + { + "id": "larni_1", + "message": "Ei, saia daqui! Esta é a minha casa!" + }, + { + "id": "larni_2", + "message": "(Você vê Larni segurando sua testa.) Hei, * tosse * saia daqui! Esta é... *tosse* ... minha casa!" + }, + { + "id": "caeda", + "message": "Tanto trabalho a fazer. Eu espero que faça um pouco de chuva em breve." + }, + { + "id": "arnal", + "replies": [ + { + "nextPhraseID": "arnal_2", + "requires": { + "progress": "fiveidols:43" + } + }, + { + "nextPhraseID": "arnal_1" + } + ] + }, + { + "id": "arnal_1", + "message": "Bem-vindo à minha loja. Gostaria de ver o que tenho disponível?", + "replies": [ + { + "text": "Sim, por favor, mostre-me o que você tem.", + "nextPhraseID": "S" + }, + { + "text": "Não, obrigado. Tchau.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "arnal_2", + "message": "(Arnal limpa a garganta)", + "replies": [ + { + "text": "N", + "nextPhraseID": "arnal_3" + } + ] + }, + { + "id": "arnal_3", + "message": "Bem-vindo a... *Tosse* ... minha loja. Gostaria... *Tosse* ... de ver o que tem disponível?", + "replies": [ + { + "text": "Sim, por favor, mostre-me o que você tem.", + "nextPhraseID": "S" + }, + { + "text": "Não, obrigado. Tchau.", + "nextPhraseID": "X" + }, + { + "text": "Você está bem?", + "nextPhraseID": "arnal_4" + }, + { + "text": "Fique longe de mim, eu não quero pegar o que é que você esteha infectado!", + "nextPhraseID": "X" + } + ] + }, + { + "id": "arnal_4", + "message": "Eu não sei o que ... *Tosse* ... aconteceu. Eu comecei a ficar tonto e enjoado. Agora, esta tosse é realmente irritante. Deve ter sido algo que eu comi. *Tosse*" + }, + { + "id": "skylenar", + "message": "Que você ande sempre com o Sombra, meu filho.", + "replies": [ + { + "text": "Você tem alguma coisa para negociar?", + "nextPhraseID": "S" + }, + { + "text": "O que você faz aqui?", + "nextPhraseID": "skylenar_1" + } + ] + }, + { + "id": "skylenar_1", + "message": "Eu forneço .. orientação para aqueles que a procuram. A Sombra nos guia. Ele nos mantém seguros e nos conforta quando dormimos.", + "replies": [ + { + "text": "N", + "nextPhraseID": "skylenar_2" + } + ] + }, + { + "id": "skylenar_2", + "message": "Ultimamente, parece Remgard está em extrema necessidade do conforto que a Sombra oferece.", + "replies": [ + { + "text": "Eu percebo. Tchau.", + "nextPhraseID": "X" + }, + { + "text": "Você tem alguma coisa para negociar?", + "nextPhraseID": "S" + } + ] + }, + { + "id": "atash", + "message": "A Sombra nos acompanha onde quer que vamos. Vá com a sombra do meu filho.", + "replies": [ + { + "text": "A Sombra esteja com você.", + "nextPhraseID": "X" + }, + { + "text": "O que for, tchau.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "remgard_guard1", + "message": "Eu estou de olho em você. Não faça nada estúpido." + }, + { + "id": "remgard_prison_guard", + "message": "Nem pense nisso." + }, + { + "id": "remgard_drunk1", + "message": "*burp* Ha ha! Nunca pensei que ela faria isso! Ou seria o contrário? Eu não me lembro." + }, + { + "id": "remgard_drunk2", + "message": "*burp* Este é o melhor lugar em todas as terras do norte!", + "replies": [ + { + "text": "N", + "nextPhraseID": "remgard_drunk2_2" + } + ] + }, + { + "id": "remgard_drunk2_2", + "message": "Oh, Olá. *Burp* Garoto, eu lhe digo, não vá à procura de problemas, mesmo se você acha que possa lidar com isso.", + "replies": [ + { + "text": "N", + "nextPhraseID": "remgard_drunk2_3" + } + ] + }, + { + "id": "remgard_drunk2_3", + "message": "Eu fiz uma vez, e acabei nessas cavernas horríveis de Monte Galmore.", + "replies": [ + { + "text": "N", + "nextPhraseID": "remgard_drunk2_4" + } + ] + }, + { + "id": "remgard_drunk2_4", + "message": "Lugar que torce sua mente. Eu digo a você, não vá lá, mesmo se você acha que você consegue!", + "replies": [ + { + "text": "Monte Galmore, onde é isso?", + "nextPhraseID": "remgard_drunk2_5" + }, + { + "text": "Eu vou manter isso em mente.", + "nextPhraseID": "X" + }, + { + "text": "Saia do meu caminho!", + "nextPhraseID": "X" + } + ] + }, + { + "id": "remgard_drunk2_5", + "message": "*burp* O que foi isso? Você estava dizendo alguma coisa?" + }, + { + "id": "remgard_farmer1", + "message": "Oh, Olá. Eu não posso falar agora, devo terminar o plantio dessas culturas." + }, + { + "id": "remgard_farmer2", + "message": "Espero que as terras sejam boas conosco nesta temporada." + }, + { + "id": "chael", + "message": "(Chael dá-lhe um olhar vazio)", + "replies": [ + { + "text": "N", + "nextPhraseID": "chael_2" + } + ] + }, + { + "id": "chael_2", + "message": "Chael corta lenha. Madeira faz Chael feliz." + }, + { + "id": "morgisia", + "message": "Guardas! Alguém invadiu meu quarto e está tentando roubar-me!", + "replies": [ + { + "text": "Isso mesmo. Entregue todos os seus pertences e você ainda pode viver.", + "nextPhraseID": "morgisia_1" + }, + { + "text": "Mas eu era apenas ..", + "nextPhraseID": "morgisia_1" + }, + { + "text": "Desculpe, eu pensei ..", + "nextPhraseID": "morgisia_1" + } + ] + }, + { + "id": "morgisia_1", + "message": "Socorro! Guardas!" + }, + { + "id": "easturlie", + "message": "Ei, esta é a minha casa. Saia daqui antes que eu chame os guardas!" + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_remgard_villagers2.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_remgard_villagers2.json new file mode 100644 index 000000000..535eab8c2 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_remgard_villagers2.json @@ -0,0 +1,68 @@ +[ + { + "id": "perester", + "message": "Se você estiver procurando por Duaina, ela está no quintal." + }, + { + "id": "freen", + "message": "Desculpe, estamos fechados. Se você quer praticar suas habilidades de leitura, por favor, volte outro dia. Se há um livro específico que você está procurando, eu poderia ser capaz de ajudá-lo.", + "replies": [ + { + "text": "Não, obrigado. Tchau.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "almars", + "message": "He he. Eles nunca saberão o que os atingiu.", + "replies": [ + { + "text": "N", + "nextPhraseID": "almars_1" + } + ] + }, + { + "id": "almars_1", + "message": "Oh, Olá! Não importa-me, eu estou apenas passeando por aqui. Nada de estranho nisso. Veja?" + }, + { + "id": "carthe", + "replies": [ + { + "nextPhraseID": "carthe_1", + "requires": { + "progress": "fiveidols:45" + } + }, + { + "nextPhraseID": "carthe_2" + } + ] + }, + { + "id": "carthe_1", + "message": "*tosse* Por favor, deixe-me. Eu não *tosse* fiz nada!" + }, + { + "id": "carthe_2", + "message": "Ei, o que você está fazendo aqui? Não faça nenhuma gracinha." + }, + { + "id": "emerei", + "message": "Nós não temos muitos visitantes aqui estes dias. Eu espero que você goste do que vê aqui em Remgard." + }, + { + "id": "janach", + "message": "Este não é lugar para crianças. É melhor sair." + }, + { + "id": "perlynn", + "message": "Veja isso: As colheitas já começaram a apodrecer. Argh, eu sabia que deveria ter trancado a porta quando tivemos a chance." + }, + { + "id": "maelf", + "message": "Ah, não é agradável esse lugar? O que mais alguém poderia desejar? Este lugar tem tudo o que um homem precisa - boa comida, uma cama quente e as pessoas para trocar histórias." + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_rogorn.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_rogorn.json new file mode 100644 index 000000000..3216c6b8a --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_rogorn.json @@ -0,0 +1,501 @@ +[ + { + "id": "rogorn_henchman", + "replies": [ + { + "nextPhraseID": "rogorn_henchman_atk", + "requires": { + "progress": "rogorn:40" + } + }, + { + "nextPhraseID": "rogorn_henchman_noatk", + "requires": { + "progress": "rogorn:45" + } + }, + { + "nextPhraseID": "rogorn_henchman_1" + } + ] + }, + { + "id": "rogorn_henchman_atk", + "message": "Pela sombra!", + "replies": [ + { + "text": "Lute!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "rogorn_henchman_noatk", + "message": "É bom ouvir que existem pelo menos algumas pessoas por aí, dispostos a tomar uma posição contraria a Feygard." + }, + { + "id": "rogorn_henchman_1", + "message": "Se você realmente esta aqui sozinho?" + }, + { + "id": "rogorn", + "replies": [ + { + "nextPhraseID": "rogorn_completed_1", + "requires": { + "progress": "rogorn:60" + } + }, + { + "nextPhraseID": "rogorn_attack_1", + "requires": { + "progress": "rogorn:40" + } + }, + { + "nextPhraseID": "rogorn_story_r_9", + "requires": { + "progress": "rogorn:45" + } + }, + { + "nextPhraseID": "rogorn_toldstory_1", + "requires": { + "progress": "rogorn:35" + } + }, + { + "nextPhraseID": "rogorn_first_1" + } + ] + }, + { + "id": "rogorn_first_1", + "message": "rapazes: olhem, um garotinho! Passeando aqui no deserto!", + "replies": [ + { + "text": "N", + "nextPhraseID": "rogorn_first_2" + } + ] + }, + { + "id": "rogorn_first_2", + "message": "Você realmente está aqui garoto? Estas áreas são perigosas.", + "replies": [ + { + "text": "Sei me cuidar.", + "nextPhraseID": "rogorn_first_3" + }, + { + "text": "Por que? O que tem por aqui?", + "nextPhraseID": "rogorn_first_4" + }, + { + "text": "Você está certo, é melhor eu ir embora.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "rogorn_first_3", + "message": "Eu aposto que você pode.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rogorn_first_6" + } + ] + }, + { + "id": "rogorn_first_4", + "message": "Bem, a oeste daqui não tem muito. Nenhuma cidade por perto, apenas o deserto duro e perigoso.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rogorn_first_5" + } + ] + }, + { + "id": "rogorn_first_5", + "message": "É claro, há torre de Carn se você viajar muito longe para oeste, mas você realmente não quer ir até lá.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rogorn_first_6" + } + ] + }, + { + "id": "rogorn_first_6", + "message": "Então, o que o traz a estas partes da terra?", + "replies": [ + { + "text": "Eu estou procurando um grupo de homens liderado por alguém com o nome de Rogorn. Você é ele?", + "nextPhraseID": "rogorn_story_1", + "requires": { + "progress": "rogorn:20" + } + }, + { + "text": "Basta procurar qualquer tesouro que pode revelar-se aqui.", + "nextPhraseID": "rogorn_first_7" + }, + { + "text": "Estou apenas explorando.", + "nextPhraseID": "rogorn_first_7" + } + ] + }, + { + "id": "rogorn_first_7", + "message": "Bem, continue procurando então." + }, + { + "id": "rogorn_story_1", + "message": "Isso depende, por que você quer saber?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "rogorn", + "value": 30 + } + ], + "replies": [ + { + "text": "Você está sendo procurado pela patrulha Feygard pelos crimes que cometeu.", + "nextPhraseID": "rogorn_story_2" + }, + { + "text": "Eu estou procurando para trazer justiça sempre que posso, e ouvi dizer que você precisando saldar suas dívidas com a justiça.", + "nextPhraseID": "rogorn_story_3" + }, + { + "text": "Fuiu enviado por alguns guardas em cima da guarita de Crossroads para procurar você.", + "nextPhraseID": "rogorn_story_6" + }, + { + "text": "Os guardas de Feygard estão procurando por você, e eu vim para te avisar.", + "nextPhraseID": "rogorn_story_12" + } + ] + }, + { + "id": "rogorn_story_2", + "message": "Hah! Nós? Crimes?", + "replies": [ + { + "text": "N", + "nextPhraseID": "rogorn_story_4" + } + ] + }, + { + "id": "rogorn_story_3", + "message": "Justiça? O que você sabe da justiça, garoto?", + "replies": [ + { + "text": "N", + "nextPhraseID": "rogorn_story_4" + } + ] + }, + { + "id": "rogorn_story_4", + "message": "Se há alguém que merece punição, certamente não somos nós. Pela Sombra, é aqueles esnobes de Feygard que precisam que alguém lhes ensine uma lição.", + "replies": [ + { + "text": "Não vou ouvir suas mentiras! Por Feygard!", + "nextPhraseID": "rogorn_attack_1" + }, + { + "text": "Fale tudo o que você quiser, eu descobri que você roubou Feygard, o que não é aceitável.", + "nextPhraseID": "rogorn_story_5" + }, + { + "text": "Qual é o seu lado da história, então?", + "nextPhraseID": "rogorn_story_r_1" + } + ] + }, + { + "id": "rogorn_story_5", + "message": "Eu te digo, não roubei nada daqueles esnobes.", + "replies": [ + { + "text": "Você está sendo procurado vivo ou morto pela patrulha Feygard. Por Feygard!", + "nextPhraseID": "rogorn_attack_1" + }, + { + "text": "Por que eles estão procurando você, então?", + "nextPhraseID": "rogorn_story_r_1" + } + ] + }, + { + "id": "rogorn_attack_1", + "message": "Eu esperava que não chegasse a isso. Pela sombra!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "rogorn", + "value": 40 + } + ], + "replies": [ + { + "text": "Vamos lutar!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "rogorn_story_6", + "message": "Falou com os guardas de Feygard hein? Diga-me, qual é a sua opinião de Feygard?", + "replies": [ + { + "text": "Eles parecem ter ideais honrosos da lei e da ordem, e eu respeito isso.", + "nextPhraseID": "rogorn_story_10" + }, + { + "text": "Seus ideais parecem ser um pouco opressivo das pessoas, o que eu não gosto.", + "nextPhraseID": "rogorn_story_9" + }, + { + "text": "Não tenho opinião, eu tento não me envolver em seus negócios.", + "nextPhraseID": "rogorn_story_7" + }, + { + "text": "Eu não tenho ideia.", + "nextPhraseID": "rogorn_story_8" + } + ] + }, + { + "id": "rogorn_story_7", + "message": "Interessante. Mas agora que você é parte disso, ao vir aqui para me procurar no nome deles, como é que isso se encaixa em sua falta de vontade de tomar algum partido?", + "replies": [ + { + "text": "Não vou ouvir suas mentiras! Por Feygard!", + "nextPhraseID": "rogorn_attack_1" + }, + { + "text": "Foi-me dito que você roubou de Feygard, o que não é aceitável.", + "nextPhraseID": "rogorn_story_5" + }, + { + "text": "Eu quero ouvir o seu lado da história.", + "nextPhraseID": "rogorn_story_r_1" + }, + { + "text": "Eu estou apenas procurando para ver se posso obter algum lucro com isso.", + "nextPhraseID": "rogorn_story_8" + }, + { + "text": "Eu não tenho ideia.", + "nextPhraseID": "rogorn_story_8" + } + ] + }, + { + "id": "rogorn_story_8", + "message": "Você deve perguntar em sua mente sobre quais são as suas prioridades. Diga a seus amigos Feygard que não seremos oprimidos por eles. A Sombra esteja com você, criança." + }, + { + "id": "rogorn_story_9", + "message": "Você tem esse direito. Eles estão sempre tentando tornar a vida difícil para nós pessoas comuns. Deixe-me dizer-lhe o meu lado da história.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rogorn_story_r_1" + } + ] + }, + { + "id": "rogorn_story_10", + "message": "A lei e a ordem? O que notamos é que somos sempre perseguidos por eles e nem sequer temos liberdade para viver a nossa vida da maneira que queremos.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rogorn_story_11" + } + ] + }, + { + "id": "rogorn_story_11", + "message": "Eles estão sempre nos procurando e tentando oprimir-nos de alguma forma. Sempre tentando fazer da nossa vida um pouco mais difícil.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rogorn_story_4" + } + ] + }, + { + "id": "rogorn_story_12", + "message": "É bom ouvir que ainda existem algumas pessoas que queiram fazer oposição contra Feygard. Deixe-me dizer-lhe o meu lado da história.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rogorn_story_r_1" + } + ] + }, + { + "id": "rogorn_story_r_1", + "message": "Eu e meus meninos aqui viajamos de nossa casa de Nor City para essas terras do norte, faz poucos dias.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rogorn_story_r_2" + } + ] + }, + { + "id": "rogorn_story_r_2", + "message": "Nós nunca tinha sido aqui antes. Nós apenas haviamos ouvido histórias sobre o quão duro os guardas de Feygard foram, e como eles colocaram sua preciosa lei acima de tudo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rogorn_story_r_3" + } + ] + }, + { + "id": "rogorn_story_r_3", + "message": "De qualquer forma, farejamos uma ótima oportunidade de negócio aqui no norte. Uma onde teríamos ao final um negócio muito rentável.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rogorn_story_r_4" + } + ] + }, + { + "id": "rogorn_story_r_4", + "message": "Então nós viemos até aqui para conduzir nossos negócios. Mas eu acho que os guardas de Feygard devem ter sido avisado sobre nossa vinda, uma vez que percebemos que estávamos sendo seguidos pelos guardas depois de um tempo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rogorn_story_r_5" + } + ] + }, + { + "id": "rogorn_story_r_5", + "message": "Não estando dispostos a arriscar-se desnecessariamente, e considerando os rumores que tinham sido nos dito sobre os guardas de lá, fizemos a única coisa razoável que poderíamos fazer - nós abandonamos o plano imediatamente e saimos, antes que pudéssemos realizar o negócio que tínhamos planejado .", + "replies": [ + { + "text": "N", + "nextPhraseID": "rogorn_story_r_6" + } + ] + }, + { + "id": "rogorn_story_r_6", + "message": "Mas algo deve ter perturbado os guardas por lá, de qualquer maneira. Agora ouvimos que somos acusados ​​de homicídio e roubo em Feygard, mesmo sem ter estado por lá.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "rogorn", + "value": 35 + } + ], + "replies": [ + { + "text": "Qual foi o seu negócio lá?", + "nextPhraseID": "rogorn_story_r_7" + }, + { + "text": "Não vou ouvir suas mentiras! Para Feygard!", + "nextPhraseID": "rogorn_attack_1" + }, + { + "text": "Sua história não faz sentido.", + "nextPhraseID": "rogorn_story_r_8" + }, + { + "text": "Eu acredito que sua história. Como posso ajudá-lo?", + "nextPhraseID": "rogorn_story_r_9" + } + ] + }, + { + "id": "rogorn_story_r_7", + "message": "Eu realmente não posso dizer. Nós fazemos o nosso negócio em nome da Nor City, e nosso negócio é nosso.", + "replies": [ + { + "text": "Não vou ouvir suas mentiras! Para Feygard!", + "nextPhraseID": "rogorn_attack_1" + }, + { + "text": "Sua história não faz sentido.", + "nextPhraseID": "rogorn_story_r_8" + }, + { + "text": "Eu acredito que sua história. Como posso ajudá-lo?", + "nextPhraseID": "rogorn_story_r_9" + } + ] + }, + { + "id": "rogorn_story_r_8", + "message": "O que você é, um espião para Feygard? Eu lhe disse, as acusações contra nós são falsas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rogorn_attack_1" + } + ] + }, + { + "id": "rogorn_story_r_9", + "message": "Obrigado por ouvir a nossa versão da história.", + "replies": [ + { + "text": "E agora? Eu fui enviado aqui para encontrá-lo por alguns guardas na guarita Crossroads.", + "nextPhraseID": "rogorn_story_r_10" + } + ] + }, + { + "id": "rogorn_story_r_10", + "message": "Você dizer aos guardas que você procurou por nós, mas não encontrou ninguém.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "rogorn", + "value": 45 + } + ], + "replies": [ + { + "text": "Vou fazer. Tchau.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "rogorn_toldstory_1", + "message": "Você está de volta.", + "replies": [ + { + "text": "Você pode me dizer o seu lado da história de novo?", + "nextPhraseID": "rogorn_story_r_1" + }, + { + "text": "Não vou ouvir suas mentiras! Você deve ser responsabilizado por seus crimes contra a Feygard!", + "nextPhraseID": "rogorn_story_r_8" + }, + { + "text": "Eu acredito que sua história. Como posso ajudá-lo?", + "nextPhraseID": "rogorn_story_r_9" + } + ] + }, + { + "id": "rogorn_completed_1", + "message": "Obrigado por ouvir a nossa versão da história." + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_rothses.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_rothses.json new file mode 100644 index 000000000..730ae55cb --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_rothses.json @@ -0,0 +1,564 @@ +[ + { + "id": "rothses", + "replies": [ + { + "nextPhraseID": "rothses_c1", + "requires": { + "progress": "remgard2:45" + } + }, + { + "nextPhraseID": "rothses_1" + } + ] + }, + { + "id": "rothses_c1", + "message": "O nosso herói entra em minha loja. Sinto-me honrado. Como posso ajudá-lo? Um novo conjunto de botas talvez, ou algumas luvas novas?", + "replies": [ + { + "text": "Deixe-me ver o que você tem para venda.", + "nextPhraseID": "S" + }, + { + "text": "Jhaeld me disse que você poderia me ajudar a melhorar meu equipamento.", + "nextPhraseID": "rothses_c2", + "requires": { + "progress": "remgard2:45" + } + } + ] + }, + { + "id": "rothses_c2", + "message": "Ah, sim, eu posso fazer modificações na maioria dos nossos equipamentos de defesa que eu vendo. Quer deixar-me olhar aquilo que você carrega para ver se há alguma coisa que eu possa melhorar para você?", + "replies": [ + { + "text": "Claro, vá em frente.", + "nextPhraseID": "rothses_imp_s0" + }, + { + "text": "Não, eu não quero que você mecha nas minhas coisas.", + "nextPhraseID": "rothses_c3" + }, + { + "text": "Talvez algum outro momento.", + "nextPhraseID": "rothses_c3" + } + ] + }, + { + "id": "rothses_c3", + "message": "Claro. Eu ficaria honrado em tê-lo de volta, se você mudar de ideia." + }, + { + "id": "rothses_1", + "message": "Oi. Como posso ajudá-lo? Um novo conjunto de botas talvez, ou algumas luvas novas?", + "replies": [ + { + "text": "Deixe-me ver o que você tem para venda.", + "nextPhraseID": "S" + }, + { + "text": "Jhaeld enviou-me para perguntar-lhe sobre as pessoas que desapareceram.", + "nextPhraseID": "rothses_3s", + "requires": { + "progress": "remgard:52" + } + }, + { + "text": "Como é está o seu negócio?", + "nextPhraseID": "rothses_2" + } + ] + }, + { + "id": "rothses_2", + "message": "Está tudo bem, eu acho. Não tão bom como eu gostaria que fosse, agora que as portas para a cidade estão fechadas. Mas as pessoas aqui ainda parecem precisar de novas peças de couro de vez em quando.", + "replies": [ + { + "text": "Deixe-me ver o que você tem para venda.", + "nextPhraseID": "S" + }, + { + "text": "Jhaeld enviou-me a perguntar-lhe sobre as pessoas que desapareceram.", + "nextPhraseID": "rothses_3s", + "requires": { + "progress": "remgard:52" + } + } + ] + }, + { + "id": "rothses_3s", + "replies": [ + { + "nextPhraseID": "rothses_19", + "requires": { + "progress": "remgard:64" + } + }, + { + "nextPhraseID": "rothses_3" + } + ] + }, + { + "id": "rothses_3", + "message": "Ah, eu não sei muito sobre isso. Engraçado você perguntar. (Rothses dá-lhe um olhar desconfiado)", + "replies": [ + { + "text": "Você tem certeza? Qualquer coisa que você saiba ou possa ter visto pode ser interessante.", + "nextPhraseID": "rothses_4" + } + ] + }, + { + "id": "rothses_4", + "message": "Bem, você talvez pense que eu vejo a maioria do que acontece por aqui, considerando a minha loja é esta perto de ponte que dá acesso a Remgard.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rothses_5" + } + ] + }, + { + "id": "rothses_5", + "message": "No entanto, eu não sei nada sobre isso. *Tosse*", + "replies": [ + { + "text": "Existe algo que você não está me dizendo?", + "nextPhraseID": "rothses_7" + }, + { + "text": "Será que os guardas lhe perguntaram sobre o que você sabe?", + "nextPhraseID": "rothses_6" + } + ] + }, + { + "id": "rothses_6", + "message": "Ah, sim, eles têm andado por aí perguntando isso a todos. Eu já disse a a eles sobre tudo o que sei.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rothses_7" + } + ] + }, + { + "id": "rothses_7", + "message": "Eu vi Bethir na noite antes dela desaparecer. Ela tinha alguns equipamentos para a venda. Nada fora do comum, no entanto.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rothses_8" + } + ] + }, + { + "id": "rothses_8", + "message": "Não vi onde ela foi depois disso.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rothses_9" + } + ] + }, + { + "id": "rothses_9", + "message": "Olha, eu disse tudo isso para os guardas antes. Você está insinuando alguma coisa?", + "replies": [ + { + "text": "Vou ficar de olho em você.", + "nextPhraseID": "rothses_jhaeld_s_1" + }, + { + "text": "Obrigado por sua cooperação.", + "nextPhraseID": "rothses_jhaeld_s_1" + } + ] + }, + { + "id": "rothses_jhaeld_s_1", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 64 + } + ], + "replies": [ + { + "nextPhraseID": "rothses_jhaeld_s_2", + "requires": { + "progress": "remgard:61" + } + }, + { + "nextPhraseID": "rothses_20" + } + ] + }, + { + "id": "rothses_jhaeld_s_2", + "replies": [ + { + "nextPhraseID": "rothses_jhaeld_s_3", + "requires": { + "progress": "remgard:62" + } + }, + { + "nextPhraseID": "rothses_20" + } + ] + }, + { + "id": "rothses_jhaeld_s_3", + "replies": [ + { + "nextPhraseID": "rothses_jhaeld_s_4", + "requires": { + "progress": "remgard:63" + } + }, + { + "nextPhraseID": "rothses_20" + } + ] + }, + { + "id": "rothses_jhaeld_s_4", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 70 + } + ], + "replies": [ + { + "nextPhraseID": "rothses_20" + } + ] + }, + { + "id": "rothses_19", + "message": "Olha, eu já lhe disse antes.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rothses_20" + } + ] + }, + { + "id": "rothses_20", + "message": "Agora, se você me der licença, tenho coisas para fazer." + }, + { + "id": "rothses_imp_s0", + "message": "Hum, deixe-me ver.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rothses_imp_s" + } + ] + }, + { + "id": "rothses_imp_s", + "replies": [ + { + "nextPhraseID": "rothses_imp_shield", + "requires": { + "item": { + "itemID": "remgard_shield_1", + "quantity": 1, + "requireType": 1 + } + } + }, + { + "nextPhraseID": "rothses_imp_shield_w", + "requires": { + "item": { + "itemID": "remgard_shield_1", + "quantity": 1, + "requireType": 2 + } + } + }, + { + "nextPhraseID": "rothses_imp_s3" + } + ] + }, + { + "id": "rothses_imp_s3", + "replies": [ + { + "nextPhraseID": "rothses_imp_gloves", + "requires": { + "item": { + "itemID": "gloves_combat1", + "quantity": 1, + "requireType": 1 + } + } + }, + { + "nextPhraseID": "rothses_imp_gloves_w", + "requires": { + "item": { + "itemID": "gloves_combat1", + "quantity": 1, + "requireType": 2 + } + } + }, + { + "nextPhraseID": "rothses_imp_s4" + } + ] + }, + { + "id": "rothses_imp_s4", + "replies": [ + { + "nextPhraseID": "rothses_imp_armour", + "requires": { + "item": { + "itemID": "armour_superior_chain", + "quantity": 1, + "requireType": 1 + } + } + }, + { + "nextPhraseID": "rothses_imp_armour_w", + "requires": { + "item": { + "itemID": "armour_superior_chain", + "quantity": 1, + "requireType": 2 + } + } + }, + { + "nextPhraseID": "rothses_imp_s5" + } + ] + }, + { + "id": "rothses_imp_s5", + "replies": [ + { + "nextPhraseID": "rothses_imp_n" + } + ] + }, + { + "id": "rothses_imp_n", + "message": "Não, você não parece ter nada que eu possa melhorar. Volte mais tarde e eu poderia ser capaz de ajudá-lo." + }, + { + "id": "rothses_imp_shield", + "message": "Você tem aí um escudo de Remgard que parece em bom estado. Por 700 moedas de ouro, eu sou capaz de melhorá-lo para que ele bloqueie golpes um pouco melhor.", + "replies": [ + { + "text": "Claro, aqui está o ouro.", + "nextPhraseID": "rothses_imp_shield_1", + "requires": { + "item": { + "itemID": "gold", + "quantity": 700, + "requireType": 0 + } + } + }, + { + "text": "Talvez mais tarde. Eu tenho alguma coisa que você pode melhorar?", + "nextPhraseID": "rothses_imp_s3" + } + ] + }, + { + "id": "rothses_imp_shield_1", + "replies": [ + { + "nextPhraseID": "rothses_imp_shield_2", + "requires": { + "item": { + "itemID": "remgard_shield_1", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "nextPhraseID": "rothses_imp_s3" + } + ] + }, + { + "id": "rothses_imp_shield_2", + "message": "Aqui está. Um escudo de Remgard melhorado.", + "rewards": [ + { + "rewardType": 1, + "rewardID": "remgard_shield_2" + } + ], + "replies": [ + { + "text": "Não tenho qualquer outra coisa que você pode melhorar?", + "nextPhraseID": "rothses_imp_s3" + } + ] + }, + { + "id": "rothses_imp_shield_w", + "message": "Você está equipado com um bom escudo de Remgard. Remova-o de suas mãos e eu poderia ser capaz de ajudá-lo a melhorar, se quiser.", + "replies": [ + { + "text": "Mais alguma coisa?", + "nextPhraseID": "rothses_imp_s3" + } + ] + }, + { + "id": "rothses_imp_gloves", + "message": "Essas parecem ser são algumas boas luvas de combate que você tem aí. Por 300 moedas de ouro, eu sou capaz de melhorá-las para que elas bloqueiem golpes um pouco melhor.", + "replies": [ + { + "text": "Claro, aqui está o ouro.", + "nextPhraseID": "rothses_imp_gloves_1", + "requires": { + "item": { + "itemID": "gold", + "quantity": 300, + "requireType": 0 + } + } + }, + { + "text": "Talvez mais tarde. Eu tenho alguma coisa que você pode melhorar?", + "nextPhraseID": "rothses_imp_s4" + } + ] + }, + { + "id": "rothses_imp_gloves_1", + "replies": [ + { + "nextPhraseID": "rothses_imp_gloves_2", + "requires": { + "item": { + "itemID": "gloves_combat1", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "nextPhraseID": "rothses_imp_s4" + } + ] + }, + { + "id": "rothses_imp_gloves_2", + "message": "Aqui está. Um par de luvas de combate melhoradas.", + "rewards": [ + { + "rewardType": 1, + "rewardID": "gloves_combat2" + } + ], + "replies": [ + { + "text": "Não tem qualquer outra coisa que você possa melhorar?", + "nextPhraseID": "rothses_imp_s4" + } + ] + }, + { + "id": "rothses_imp_gloves_w", + "message": "Essas são algumas boas luvas de combate que você está usando. Rema-as de suas mãos e eu poderia ser capaz de ajudá-la a melhorá-la, se quiser.", + "replies": [ + { + "text": "Mais alguma coisa?", + "nextPhraseID": "rothses_imp_s4" + } + ] + }, + { + "id": "rothses_imp_armour", + "message": "Agora, tem essa malha fina de boa aparência. Por 3000 moedas de ouro, eu sou capaz de melhorá-la para que não apenas bloquear melhor ataques, mas também dificultar menos seus ataques.", + "replies": [ + { + "text": "Claro, aqui está o ouro.", + "nextPhraseID": "rothses_imp_armour_1", + "requires": { + "item": { + "itemID": "gold", + "quantity": 3000, + "requireType": 0 + } + } + }, + { + "text": "Talvez mais tarde. Eu tenho mais alguma coisa que você pode melhorar?", + "nextPhraseID": "rothses_imp_s5" + } + ] + }, + { + "id": "rothses_imp_armour_1", + "replies": [ + { + "nextPhraseID": "rothses_imp_armour_2", + "requires": { + "item": { + "itemID": "armour_superior_chain", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "nextPhraseID": "rothses_imp_s5" + } + ] + }, + { + "id": "rothses_imp_armour_2", + "message": "Aqui está. Uma cota de malha melhorada.", + "rewards": [ + { + "rewardType": 1, + "rewardID": "armour_chain_remg" + } + ], + "replies": [ + { + "text": "Não tenho qualquer outra coisa que você pode melhorar?", + "nextPhraseID": "rothses_imp_s5" + } + ] + }, + { + "id": "rothses_imp_armour_w", + "message": "Agora, tem essa malha fina de boa aparência. Tire-a de seu peito para que eu possa ser capaz de ajudá-lo a melhorar, se quiser.", + "replies": [ + { + "text": "Mais alguma coisa?", + "nextPhraseID": "rothses_imp_s5" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_sign_ulirfendor.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_sign_ulirfendor.json new file mode 100644 index 000000000..baecec043 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_sign_ulirfendor.json @@ -0,0 +1,244 @@ +[ + { + "id": "sign_brimcave4", + "replies": [ + { + "nextPhraseID": "sign_ulirfendor_r", + "requires": { + "progress": "darkprotector:70" + } + }, + { + "nextPhraseID": "sign_ulirfendor_8", + "requires": { + "progress": "darkprotector:66" + } + }, + { + "nextPhraseID": "sign_ulirfendor_6", + "requires": { + "progress": "darkprotector:65" + } + }, + { + "nextPhraseID": "sign_ulirfendor_1" + } + ] + }, + { + "id": "sign_ulirfendor_1", + "message": "Na frente do santuário, você encontra um livro deitado na areia. 'Reflexões sobre rituais Kazaul'.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_ulirfendor_2" + } + ] + }, + { + "id": "sign_ulirfendor_2", + "message": "Você passa rapidamente os olhos pelo livro, e encontra vários cânticos e rituais de Kazaul.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_ulirfendor_3" + } + ] + }, + { + "id": "sign_ulirfendor_3", + "message": "Existe um rito em particular que sobressai: o que fala de artefatos antigos imbuídos pelo poder de Kazaul.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_ulirfendor_4" + } + ] + }, + { + "id": "sign_ulirfendor_4", + "message": "O ritual em si exige o coração de um lich e, à partir do texto sobre o ritual no livro, seria possível restaurar o capacete à sua antiga glória.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "darkprotector", + "value": 55 + } + ], + "replies": [ + { + "text": "Começou o ritual.", + "nextPhraseID": "sign_ulirfendor_5" + }, + { + "text": "Deixou o santuário sozinho.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "sign_ulirfendor_5", + "message": "Você coloca-se na frente do santuário, ajoelhado como os desenhos do livro mostram.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "darkprotector", + "value": 60 + } + ], + "replies": [ + { + "text": "Você coloca o capacete na frente do santuário", + "nextPhraseID": "sign_ulirfendor_6", + "requires": { + "item": { + "itemID": "helm_protector0", + "quantity": 1, + "requireType": 0 + } + } + } + ] + }, + { + "id": "sign_ulirfendor_6", + "message": "Você coloca o capacete no chão na frente de você, inclinando-o ligeiramente contra o santuário.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "darkprotector", + "value": 65 + } + ], + "replies": [ + { + "text": "Coloque o coração do lich em frente ao santuário", + "nextPhraseID": "sign_ulirfendor_7", + "requires": { + "item": { + "itemID": "toszylae_heart", + "quantity": 1, + "requireType": 0 + } + } + } + ] + }, + { + "id": "sign_ulirfendor_7", + "message": "Você coloca o coração do lich ao lado do capacete na frente do santuário.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "darkprotector", + "value": 66 + } + ], + "replies": [ + { + "text": "Você fala as palavras do ritual do livro", + "nextPhraseID": "sign_ulirfendor_8" + } + ] + }, + { + "id": "sign_ulirfendor_8", + "message": "Você começa a recitar as palavras da língua Kazaul do livro, tomando muito cuidado para dizer as palavras exatamente como o livro as descreve.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_ulirfendor_9" + } + ] + }, + { + "id": "sign_ulirfendor_9", + "message": "Conforme você recita as palavras, você percebe um brilho fraco vindo do santuário, e você tem a sensação estranha de que a areia no chão quase se movimenta por si só.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_ulirfendor_10" + } + ] + }, + { + "id": "sign_ulirfendor_10", + "message": "Os movimentos começam a ficar mais visíveis, quase como se houvesse algo rastejando sob a areia.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_ulirfendor_11" + } + ] + }, + { + "id": "sign_ulirfendor_11", + "message": "Conforme se aproxima o fim do ritual, o capacete cai para a frente, de bruços na areia.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_ulirfendor_12" + } + ] + }, + { + "id": "sign_ulirfendor_12", + "message": "Uma vez que você fala as palavras finais do ritual, o chão afunda um pouco na frente do santuário, enterrando parcialmente o capacete na areia.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_ulirfendor_13" + } + ] + }, + { + "id": "sign_ulirfendor_13", + "message": "Quando você o levanta e retira o pó da areia, você nota uma mudança na textura da peça que estava submersa na areia.", + "replies": [ + { + "text": "Você pega capacete", + "nextPhraseID": "sign_ulirfendor_14" + } + ] + }, + { + "id": "sign_ulirfendor_14", + "message": "Você tira o capacete, e examiná-o mais de perto.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "darkprotector", + "value": 70 + }, + { + "rewardType": 1, + "rewardID": "sign_ulirfendor", + "value": 0 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_ulirfendor_15" + } + ] + }, + { + "id": "sign_ulirfendor_15", + "message": "Ao seu lado, você percebe alguns ornamentos que não estavam lá antes. O capacete também passa um leve formigamento às mãos conforme você o segura.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_ulirfendor_16" + } + ] + }, + { + "id": "sign_ulirfendor_16", + "message": "Completar o ritual deve ter restaurado o capacete à sua antiga glória." + }, + { + "id": "sign_ulirfendor_r", + "message": "Você vê o santuário de Kazaul, onde realizou o ritual Kazaul." + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_sign_waterwaycave.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_sign_waterwaycave.json new file mode 100644 index 000000000..96b5f3a13 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_sign_waterwaycave.json @@ -0,0 +1,194 @@ +[ + { + "id": "sign_waterwaycave", + "message": "Você percebe uma leve brisa soprando através de seus tornozelos enquanto você está admirando a qualidade do tecido da bobina da corda.", + "replies": [ + { + "text": "Pegue a corda.", + "nextPhraseID": "sign_waterwaycave2" + }, + { + "text": "Deixe-a onde está.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "sign_waterwaycave2", + "message": "Apesar de seus esforços para pegar a corda, você acha que ela está passando pelo que parece ser uma rachadura na parede de pedra diante de você. Infelizmente, esta parece ser uma aventura para um outro dia." + }, + { + "id": "sign_bwm31", + "message": "(Você percebe alguns papéis rasgados no chão. Pela aparência delas, essas páginas parecem ter sido arrancadas de um grande diário)", + "replies": [ + { + "text": "Leia o diário.", + "nextPhraseID": "sign_bwm31_1" + } + ] + }, + { + "id": "sign_bwm31_1", + "message": "Brakas, dia 4. Por que, oh porque eu fui aventurar-me aqui?", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_bwm31_2" + } + ] + }, + { + "id": "sign_bwm31_2", + "message": "Essas coisas são fortes demais para mim. O primeiro grupo deles caiu muito facilmente, mas estas .. coisas .. por aqui são muito fortes para mim.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_bwm31_3" + } + ] + }, + { + "id": "sign_bwm31_3", + "message": "Agora estou quase sem poções também.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_bwm31_4" + } + ] + }, + { + "id": "sign_bwm31_4", + "message": "Enquanto estou escrevendo este diário, eu posso ouvi-los uivando fora da cabana. Eu preciso descansar um pouco mais antes que eu possa ter alguma chance para matar alguns deles novamente.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_bwm31_5" + } + ] + }, + { + "id": "sign_bwm31_5", + "message": "(O papel está cheio de sujeira, mas você ainda consegue ler a maior parte dele)", + "replies": [ + { + "text": "Continuar lendo.", + "nextPhraseID": "sign_bwm31_6" + } + ] + }, + { + "id": "sign_bwm31_6", + "message": "Brakas, dia 7. Pela Sombra, eu não posso nem descer a montanha agora! Essas coisas estão no caminho, e eu sou muito fraco para passar por eles agora.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_bwm31_7" + } + ] + }, + { + "id": "sign_bwm31_7", + "message": "Minhas poções agora estão todas esgotadas. Como vou sair daqui?!", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_bwm31_8" + } + ] + }, + { + "id": "sign_bwm31_8", + "message": "Estou ficando mais fraco. Devo descansar.", + "replies": [ + { + "text": "Continuar lendo.", + "nextPhraseID": "sign_bwm31_9" + } + ] + }, + { + "id": "sign_bwm31_9", + "message": "Brakas, dia 9. Sucesso! Eu consegui matar alguns dos monstros que estavam mais próximos da cabana, e alguns deles estavam carregando frascos de cura menor que eu consegui pegar!", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_bwm31_10" + } + ] + }, + { + "id": "sign_bwm31_10", + "message": "Eu não me lembro de estar tão feliz em ver algumas dessas poções!", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_bwm31_11" + } + ] + }, + { + "id": "sign_bwm31_11", + "message": "Com elas, eu poderia ser capaz de descer a montanha de novo!", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_bwm31_12" + } + ] + }, + { + "id": "sign_bwm31_12", + "message": "Ha ha, esses bastardos de Prim lá em baixo não vão se livrar de mim tão facilmente.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_bwm31_13" + } + ] + }, + { + "id": "sign_bwm31_13", + "message": "Talvez se eu recolher o suficiente dessas poções dos monstros próximos a essa cabana, eu possa ter o suficiente novamente para descer em segurança.", + "replies": [ + { + "text": "Continuar lendo.", + "nextPhraseID": "sign_bwm31_14" + } + ] + }, + { + "id": "sign_bwm31_14", + "message": "Brakas, dia 10. Eu já consegui reunir bastante poções de cura para se sentir confiante de que vou conseguir descer vivo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_bwm31_15" + } + ] + }, + { + "id": "sign_bwm31_15", + "message": "Eu só espero que essas cobras repugnantes fiquem longe de mim desta vez, com seu veneno desagradável.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_bwm31_16" + } + ] + }, + { + "id": "sign_bwm31_16", + "message": "Se a sorte estiver do meu lado, eu poderia até estar na segurança de casa ao anoitecer.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_bwm31_17" + } + ] + }, + { + "id": "sign_bwm31_17", + "message": "(o diário não tem mais páginas)" + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_signs_pre067.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_signs_pre067.json new file mode 100644 index 000000000..97819a1c0 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_signs_pre067.json @@ -0,0 +1,103 @@ +[ + { + "id": "keyarea_andor1", + "message": "Você deve falar com Mikhail primeiro." + }, + { + "id": "note_lodars", + "message": "No chão, você encontra um pedaço de papel com um monte de símbolos estranhos. Você pode mal pôde ler as palavras 'encontre-me no esconderijo de Lodar', mas você não tem certeza do que isso significa." + }, + { + "id": "keyarea_crossglen_smith", + "message": "Audir grita: Ei você, sai fora! Você não tem permissão para estar aí." + }, + { + "id": "sign_crossglen_cave", + "message": "A placa na parede está danificada em vários lugares. Você não pode entender o que está escrito." + }, + { + "id": "sign_wild1", + "message": "Oeste: Crossglen\nSul: Fallhaven\nNorte: Feygard" + }, + { + "id": "sign_notdone", + "message": "Este mapa ainda não está pronto. Por favor, aguarde uma versão mais nova do jogo." + }, + { + "id": "sign_wild3", + "message": "Oeste: Crossglen\nLeste: Fallhaven\nNorte: Feygard" + }, + { + "id": "sign_pitcave2", + "message": "Gandir está aqui, morto pela mão do seu ex-amigo Irogotu." + }, + { + "id": "sign_fallhaven1", + "message": "Bem-vindo ao Fallhaven. Cuidado com os batedores de carteiras!" + }, + { + "id": "key_fallhavenchurch", + "message": "Você não tem permissão para entrar nas catacumbas da igreja de Fallhaven sem permissão." + }, + { + "id": "arcir_basement_tornpage", + "message": "Você vê uma página rasgada de um livro intitulado 'Segredos de Calomyran'. Manchas de sangue nas bordas, e alguém tem rabiscou 'Larcal' nas palavras ensanguentadas.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "calomyran", + "value": 20 + } + ] + }, + { + "id": "arcir_basement_statue", + "message": "Elythara, mãe da luz. Proteja-nos da maldição da Sombra.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "arcir", + "value": 10 + } + ] + }, + { + "id": "fallhaven_tavern_room", + "message": "Você não tem permissão para usar outro quarto; apenas o que você alugou." + }, + { + "id": "fallhaven_derelict1", + "message": "Bucus gritas: Ei, você, fique longe daí!" + }, + { + "id": "sign_wild6", + "message": "Norte: Crossglen\nLeste: Fallhaven\nSul: Stoutford" + }, + { + "id": "sign_wild7", + "message": "Oeste: Stoutford\nNorte: Fallhaven" + }, + { + "id": "sign_wild10", + "message": "Norte: Fallhaven\nOeste: Stoutford" + }, + { + "id": "flagstone_key_demon", + "message": "O demônio irradia uma força que empurra você de volta, o que torna impossível se aproximar do demônio." + }, + { + "id": "flagstone_brokensteps", + "message": "Você percebe que este túnel parece ser cavado abaixo de Flagstone. Provavelmente o trabalho de um dos ex-prisioneiros de Flagstone.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "flagstone", + "value": 20 + } + ] + }, + { + "id": "sign_wild12", + "message": "Norte: Fallhaven\nLeste: Vilegard\nLeste: Nor City" + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_signs_v0611.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_signs_v0611.json new file mode 100644 index 000000000..4893461dc --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_signs_v0611.json @@ -0,0 +1,65 @@ +[ + { + "id": "remgard_tavern_room", + "message": "Você não tem permissão para entrar nesta sala até que você a alugue." + }, + { + "id": "sign_waterway6", + "message": "Sul: Brimhaven\nOeste: Loneford\nLeste: Brightport, Lago Laeroth" + }, + { + "id": "sign_waterway9", + "message": "Oeste: Loneford\nLeste: Brightport, Lago Laeroth" + }, + { + "id": "sign_waterway11", + "message": "Oeste: Loneford\nSul: Brightport" + }, + { + "id": "sign_remgard0", + "message": "Bem-vindo ao Lago Laeroth e à cidade de Remgard!" + }, + { + "id": "wild16_cave", + "message": "O mato é denso demais para você passar." + }, + { + "id": "sign_wild16", + "replies": [ + { + "nextPhraseID": "sign_wild16_r", + "requires": { + "progress": "kaverin:100" + } + }, + { + "nextPhraseID": "sign_wild16_1" + } + ] + }, + { + "id": "sign_wild16_r", + "message": "Você se espreme através da abertura estreita da caverna." + }, + { + "id": "sign_wild16_1", + "message": "Você se espreme através da abertura estreita da caverna. O ar viciado que paira pesado dentro da caverna úmida, que cheira a mofo e a papel antigo, enche o seu nariz.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kaverin", + "value": 100 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_wild16_2" + } + ] + }, + { + "id": "sign_wild16_2", + "message": "Esta deve ser a caverna que o mapa leva. Este deve ser o esconderijo do velho Vacor." + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_signs_v068.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_signs_v068.json new file mode 100644 index 000000000..6b610ddb7 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_signs_v068.json @@ -0,0 +1,30 @@ +[ + { + "id": "foaming_flask_tavern_room", + "message": "Você deve alugar o quarto antes que você possa entrar." + }, + { + "id": "sign_vilegard_n", + "message": "A placa diz:\nBem-vindo a Vilegard, a cidade mais amigável da vizinhança." + }, + { + "id": "sign_foamingflask", + "message": "Bem-vindo à taverna Foaming Flask!" + }, + { + "id": "sign_road1_nw", + "message": "Norte: Loneford\nLeste: Nor City\nOeste: Fallhaven" + }, + { + "id": "sign_road1_s", + "message": "Norte: Loneford\nLeste: Nor City\nSul: Vilegard" + }, + { + "id": "sign_oluag", + "message": "Você vê uma sepultura cavada recentemente." + }, + { + "id": "sign_road2", + "message": "Leste: Nor City\nOeste: Vilegard" + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_taevinn.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_taevinn.json new file mode 100644 index 000000000..f0a0d790d --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_taevinn.json @@ -0,0 +1,76 @@ +[ + { + "id": "taevinn", + "message": "Por favor, você tem que nos ajudar!", + "replies": [ + { + "text": "Você sabe alguma coisa sobre a doença?", + "nextPhraseID": "taevinn_1", + "requires": { + "progress": "loneford:11" + } + }, + { + "text": "O que há de errado?", + "nextPhraseID": "loneford_farmer0_1" + } + ] + }, + { + "id": "taevinn_1", + "message": "Eu vou te dizer o que eu sei. Tentamos seguir a lei por aqui. Sem regras e leis, como nós seríamos diferentes dos selvagens que vagueiam as terras do sul?", + "replies": [ + { + "text": "N", + "nextPhraseID": "taevinn_2" + } + ] + }, + { + "id": "taevinn_2", + "message": "Mas mesmo se nós aqui em Loneford mantivermo-nos tão calmo quanto possível, há sempre alguém que tem desejo de causar dano.", + "replies": [ + { + "text": "N", + "nextPhraseID": "taevinn_3" + } + ] + }, + { + "id": "taevinn_3", + "message": "Você já viu? Que Sienn tolo. Ele e seu 'animal de estimação' estão sempre tentando causar algum problema. Nós não podemos ter isso aqui na nossa amigável aldeia. Especialmente em tempos como estes, quando estamos tentando mostrar o nosso lado bom para os guardas magníficos de Feygard que estão aqui.", + "replies": [ + { + "text": "N", + "nextPhraseID": "taevinn_4" + } + ] + }, + { + "id": "taevinn_4", + "message": "Você sabe que eu tentei falar com ele várias vezes sobre seu chamado 'bichinho'? Eu realmente não consegui entender o que ele estava tentando me dizer, mas essa coisa sua quase tentou me matar, ele o fez!", + "replies": [ + { + "text": "N", + "nextPhraseID": "taevinn_5" + } + ] + }, + { + "id": "taevinn_5", + "message": "Eu digo a você, existe um mal em torno dele e daquilo que ele mantém em torno de si. Tenho certeza de que eles estão aprontando alguma coisa. Eles provavelmente causaram essa doença, de alguma forma. Talvez possa-se pegar algo contagiante daquela coisa de que ele mantém seu redor.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 24 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "loneford_ill_c_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_talion.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_talion.json new file mode 100644 index 000000000..b316af736 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_talion.json @@ -0,0 +1,121 @@ +[ + { + "id": "talion", + "replies": [ + { + "nextPhraseID": "talion_0", + "requires": { + "progress": "maggots:51" + } + }, + { + "nextPhraseID": "talion_cured_1", + "requires": { + "progress": "maggots:50" + } + }, + { + "nextPhraseID": "talion_cure_5", + "requires": { + "progress": "maggots:45" + } + }, + { + "nextPhraseID": "talion_infect_30", + "requires": { + "progress": "maggots:30" + } + }, + { + "nextPhraseID": "talion_infect_1", + "requires": { + "progress": "maggots:10" + } + }, + { + "nextPhraseID": "talion_0" + } + ] + }, + { + "id": "talion_0", + "message": "A Sombra esteja com você.", + "replies": [ + { + "text": "Você sabe alguma coisa sobre a doença aqui em Loneford?", + "nextPhraseID": "talion_1", + "requires": { + "progress": "loneford:11" + } + }, + { + "text": "Você tem alguma coisa para negociar?", + "nextPhraseID": "S" + }, + { + "text": "Que bênçãos você pode oferecer?", + "nextPhraseID": "talion_bless_1", + "requires": { + "progress": "maggots:51" + } + } + ] + }, + { + "id": "talion_1", + "message": "O povo de Loneford está muito interessado ​​em seguir a vontade de Feygard, seja ela qual for.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_2" + } + ] + }, + { + "id": "talion_2", + "message": "Normalmente, isso não seria um problema. Mas Lorde Geomyr parece ter algo contra a Sombra. Ele vai fazer o que puder para se opor a todas as ações que, de alguma forma, estenderem o alcance da Sombra.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_3" + } + ] + }, + { + "id": "talion_3", + "message": "Devido a isso, o povo de Loneford está agora ativamente abolindo o pensamento que a Sombra orienta suas vidas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_4" + } + ] + }, + { + "id": "talion_4", + "message": "As pessoas daqui preferem seguir a lei de Feygard a seguir os velhos caminhos.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_5" + } + ] + }, + { + "id": "talion_5", + "message": "Meu sentimento é que esta doença é causada pela sombra, como castigo para todos nós aqui em Loneford.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 23 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "loneford_ill_c_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_talion_2.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_talion_2.json new file mode 100644 index 000000000..b35c86253 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_talion_2.json @@ -0,0 +1,1005 @@ +[ + { + "id": "talion_infect_1", + "message": "Oh, o que aconteceu com você? Você não parece muito bem.", + "replies": [ + { + "text": "Eu fui infectado com algo por um lich de Kazaul.", + "nextPhraseID": "talion_infect_5" + }, + { + "text": "Um homem chamado Ulirfendor me disse que eu poderia estar infectado com vermes da podridão de Kazaul.", + "nextPhraseID": "talion_infect_2" + }, + { + "text": "Disseram-me para encontrá-lo, e que você poderia ser capaz de me ajudar.", + "nextPhraseID": "talion_infect_4" + } + ] + }, + { + "id": "talion_infect_2", + "message": "Ah, meu velho amigo, Ulirfendor. É bom saber que ele ainda está vivo. Mas o que foi que, disse? Vermes da podridão, né?", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_infect_3" + } + ] + }, + { + "id": "talion_infect_3", + "message": "Coisas desagradáveis, eles são. Eu tenho visto pessoas indo à loucura por causa das dores de estômago, e eu tenho visto pessoas sendo comidas vivas por dentro.", + "replies": [ + { + "text": "Você é capaz de me ajudar?", + "nextPhraseID": "talion_infect_4" + }, + { + "text": "Não é tão ruim assim. Eu já passei por coisas piores.", + "nextPhraseID": "talion_infect_4" + } + ] + }, + { + "id": "talion_infect_4", + "message": "É bom que você veio me ver. Eu posso ser capaz de ajudá-lo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_demon_1" + } + ] + }, + { + "id": "talion_infect_5", + "message": "Um lich de Kazaul hein? Então eu tenho certeza de que o que o aflige são os amaldiçoados vermes da podridão.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_infect_3" + } + ] + }, + { + "id": "talion_demon_1", + "message": "Só para ter certeza, você matou qualquer criatura que o infectou com isso, certo?", + "replies": [ + { + "text": "Sim, eu matei aquele lich.", + "nextPhraseID": "talion_demon_2", + "requires": { + "progress": "darkprotector:10" + } + }, + { + "text": "Não, eu não matei ainda.", + "nextPhraseID": "talion_demon_3" + } + ] + }, + { + "id": "talion_demon_2", + "message": "Bom. Então, eu sou capaz de ajudá-lo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_infect_6" + } + ] + }, + { + "id": "talion_demon_3", + "message": "Então é melhor você ir cuidar disso primeiro!", + "replies": [ + { + "text": "Ok, eu vou estar de volta uma vez que o lich estiver derrotado.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "talion_infect_6", + "message": "Mas há um pequeno problema. Veja você, normalmente, a minha fonte de poções e ingredientes estariam totalmente abastecida. No entanto, com este problema que temos aqui em Loneford, minhas fontes estão mais baixas do que jamais estiveram.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_infect_7" + } + ] + }, + { + "id": "talion_infect_7", + "message": "Eu não capaz de sair e reunir novos suprimentos por mim mesmo, com a doença e tudo mais.", + "replies": [ + { + "text": "Então, o que você pode fazer?", + "nextPhraseID": "talion_infect_8" + }, + { + "text": "Existe algo que eu possa fazer para ajudar?", + "nextPhraseID": "talion_infect_8" + }, + { + "text": "Bah! Então você é inútil para mim. Acho que você deveria ter se preparado melhor antes.", + "nextPhraseID": "talion_infect_9" + } + ] + }, + { + "id": "talion_infect_9", + "message": "Sim, eu suponho que eu deveria." + }, + { + "id": "talion_infect_8", + "message": "Quer saber, talvez, você possa sair e recolher alguns itens para mim. Com a sua condição, é importante que se apresse tanto quanto puder.", + "replies": [ + { + "text": "O que você gostaria que eu fizesse?", + "nextPhraseID": "talion_infect_11" + }, + { + "text": "Argh! As dores estão piorando! Não há nada que você possa fazer?", + "nextPhraseID": "talion_infect_10" + } + ] + }, + { + "id": "talion_infect_10", + "message": "Não, infelizmente não. Não com este alguns suprimentos. Sinto muito.", + "replies": [ + { + "text": "Certo. O que você gostaria que eu fizesse?", + "nextPhraseID": "talion_infect_11" + }, + { + "text": "Bah! Então você é inútil para mim. Acho que você deveria ter se preparado melhor antes .", + "nextPhraseID": "talion_infect_9" + } + ] + }, + { + "id": "talion_infect_11", + "message": "Para este trabalho especial de cura, eu preciso de ajuda em obter quatro itens.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_infect_12" + } + ] + }, + { + "id": "talion_infect_12", + "message": "Ou... bem... na verdade, oito itens no total, mas de quatro tipos diferentes. Eh... bem, você está pegando a ideia.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_infect_13" + } + ] + }, + { + "id": "talion_infect_13", + "message": "Enfim, o que você precisa para trazer mim é, antes de mais nada, alguns ossos mais frescos. Cinco ossos devem dar, eu acho. Certifique-se de que eles sejão frescos. Qualquer esqueleto velho vai servir, mas eu prefiro usar alguns ossos frescos de algum animal desagradável.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_infect_14" + } + ] + }, + { + "id": "talion_infect_14", + "message": "Em segundo lugar, eu vou precisar de alguma pele animal para juntar com isso. Dois pedaços de pêlos certamente deverão dar. Eu tenho certeza que qualquer pele animal velho do deserto fora da cidade vai servir.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_infect_15" + } + ] + }, + { + "id": "talion_infect_15", + "message": "Terceiro, vou precisar de uma glândula de veneno de uma criatura chamada Irdegh.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_infect_16" + } + ] + }, + { + "id": "talion_infect_16", + "message": "Agora, eu pessoalmente ainda não vi nenhum Irdegh, mas eu ouvi dizer que eles são criaturas particularmente desagradáveis. Venenosas como nada que eu tenha ouvido falar antes.", + "replies": [ + { + "text": "Ok, uma glândula de veneno Irdegh. Onde posso encontrar um?", + "nextPhraseID": "talion_infect_17" + }, + { + "text": "Entendi. Mais alguma coisa?", + "nextPhraseID": "talion_infect_18" + } + ] + }, + { + "id": "talion_infect_17", + "message": "Algumas pessoas têm comentado que viram alguns deles a uma boa distância ao leste, ao longo das pontes.", + "replies": [ + { + "text": "Mais alguma coisa?", + "nextPhraseID": "talion_infect_18" + } + ] + }, + { + "id": "talion_infect_18", + "message": "Por último, eu preciso de um frasco limpo e vazio para fazer a poção dentro. Eu ouvi dizer que o fabricante de porções de Fallhaven tem os melhores frascos disponíveis.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_infect_19" + } + ] + }, + { + "id": "talion_infect_19", + "message": "Traga-me essas coisas e eu vou ser capaz de ajudá-lo com a sua... condição.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "maggots", + "value": 30 + } + ], + "replies": [ + { + "text": "Muito bem, eu vou estar de volta em breve.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "talion_infect_30", + "message": "Você voltou. Você já reuniu as coisas que eu pedi?", + "replies": [ + { + "text": "O que é que eu devo mesmo coletar?", + "nextPhraseID": "talion_infect_11" + }, + { + "text": "Eu trouxe cinco ossos para você.", + "nextPhraseID": "talion_bone_s" + }, + { + "text": "Eu trouxe dois pedaços de pêlos para você.", + "nextPhraseID": "talion_hair_s" + }, + { + "text": "Eu trouxe uma glândula de veneno Irdegh para você.", + "nextPhraseID": "talion_irdegh_s" + }, + { + "text": "Eu trouxe um frasco vazio para você.", + "nextPhraseID": "talion_vial_s" + }, + { + "text": "Você sabe alguma coisa sobre a doença aqui em Loneford?", + "nextPhraseID": "talion_1", + "requires": { + "progress": "loneford:11" + } + }, + { + "text": "Você tem alguma coisa para negociar?", + "nextPhraseID": "S" + } + ] + }, + { + "id": "talion_infect_31", + "message": "Ainda preciso de mais alguns desses itens.", + "replies": [ + { + "text": "O que é que eu devo procurar mesmo?", + "nextPhraseID": "talion_infect_11" + }, + { + "text": "Eu trouxe cinco ossos para você.", + "nextPhraseID": "talion_bone_s" + }, + { + "text": "Eu trouxe dois pedaços de pêlos para você.", + "nextPhraseID": "talion_hair_s" + }, + { + "text": "Eu trouxe uma glândula de veneno Irdegh para você.", + "nextPhraseID": "talion_irdegh_s" + }, + { + "text": "Eu trouxe um frasco vazio para você.", + "nextPhraseID": "talion_vial_s" + } + ] + }, + { + "id": "talion_gather_r", + "message": "Não há necessidade, você já me trouxe isso antes. Mas obrigado assim mesmo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_gather_s" + } + ] + }, + { + "id": "talion_bone_s", + "replies": [ + { + "nextPhraseID": "talion_gather_r", + "requires": { + "progress": "maggots:40" + } + }, + { + "nextPhraseID": "talion_bone_1" + } + ] + }, + { + "id": "talion_bone_1", + "message": "Ah, bom. Por favor, dê-os a mim.", + "replies": [ + { + "text": "Aqui está.", + "nextPhraseID": "talion_bone_2", + "requires": { + "item": { + "itemID": "bone", + "quantity": 5, + "requireType": 0 + } + } + }, + { + "text": "Pensando bem, já volto.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "talion_bone_2", + "message": "Ah, bom. Por favor, dê-os a mim.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "maggots", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_gather_s" + } + ] + }, + { + "id": "talion_hair_s", + "replies": [ + { + "nextPhraseID": "talion_gather_r", + "requires": { + "progress": "maggots:41" + } + }, + { + "nextPhraseID": "talion_hair_1" + } + ] + }, + { + "id": "talion_hair_1", + "message": "Obrigado.", + "replies": [ + { + "text": "Aqui está.", + "nextPhraseID": "talion_hair_2", + "requires": { + "item": { + "itemID": "hair", + "quantity": 2, + "requireType": 0 + } + } + }, + { + "text": "Pensando bem, já volto.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "talion_hair_2", + "message": "Ah, bom. Por favor, dê-os para mim.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "maggots", + "value": 41 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_gather_s" + } + ] + }, + { + "id": "talion_irdegh_s", + "replies": [ + { + "nextPhraseID": "talion_gather_r", + "requires": { + "progress": "maggots:42" + } + }, + { + "nextPhraseID": "talion_irdegh_1" + } + ] + }, + { + "id": "talion_irdegh_1", + "message": "Obrigado.", + "replies": [ + { + "text": "Aqui está.", + "nextPhraseID": "talion_irdegh_2", + "requires": { + "item": { + "itemID": "irdegh", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Pensando bem, já volto.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "talion_irdegh_2", + "message": "Ah, bom. Por favor, dê-os para mim.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "maggots", + "value": 42 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_gather_s" + } + ] + }, + { + "id": "talion_vial_s", + "replies": [ + { + "nextPhraseID": "talion_gather_r", + "requires": { + "progress": "maggots:43" + } + }, + { + "nextPhraseID": "talion_vial_1" + } + ] + }, + { + "id": "talion_vial_1", + "message": "Obrigado.", + "replies": [ + { + "text": "Aqui está, um pequeno frasco vazio.", + "nextPhraseID": "talion_vial_2", + "requires": { + "item": { + "itemID": "vial_empty1", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Aqui está, um frasco vazio.", + "nextPhraseID": "talion_vial_2", + "requires": { + "item": { + "itemID": "vial_empty2", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Pensando bem, já volto.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "talion_vial_2", + "message": "Isso é tudo que eu preciso para curá-lo. Bom trabalho.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "maggots", + "value": 43 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_gather_s" + } + ] + }, + { + "id": "talion_gather_s", + "replies": [ + { + "nextPhraseID": "talion_gather_s2", + "requires": { + "progress": "maggots:40" + } + }, + { + "nextPhraseID": "talion_infect_31" + } + ] + }, + { + "id": "talion_gather_s2", + "replies": [ + { + "nextPhraseID": "talion_gather_s3", + "requires": { + "progress": "maggots:41" + } + }, + { + "nextPhraseID": "talion_infect_31" + } + ] + }, + { + "id": "talion_gather_s3", + "replies": [ + { + "nextPhraseID": "talion_gather_s4", + "requires": { + "progress": "maggots:42" + } + }, + { + "nextPhraseID": "talion_infect_31" + } + ] + }, + { + "id": "talion_gather_s4", + "replies": [ + { + "nextPhraseID": "talion_cure_1", + "requires": { + "progress": "maggots:43" + } + }, + { + "nextPhraseID": "talion_infect_31" + } + ] + }, + { + "id": "talion_cure_1", + "message": "Obrigado.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "maggots", + "value": 45 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_cure_2" + } + ] + }, + { + "id": "talion_cure_2", + "message": "Agora, vamos começar esta porção de cura. Eu só preciso moer isto... e misturar esses outros... e...", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_cure_3" + } + ] + }, + { + "id": "talion_cure_3", + "message": "Dê-me um minuto.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_cure_4" + } + ] + }, + { + "id": "talion_cure_4", + "message": "(Talião mistura os ingredientes juntos no frasco que você trouxe, com algumas folhas e frutos que tinha com ele)", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_cure_5" + } + ] + }, + { + "id": "talion_cure_5", + "message": "(Ele mistura por um bom tempo a poção completa)", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_cure_6" + } + ] + }, + { + "id": "talion_cure_6", + "message": "Aqui. Beba isso. Isso deve resolver.", + "replies": [ + { + "text": "Beba a poção", + "nextPhraseID": "talion_cure_7" + } + ] + }, + { + "id": "talion_cure_7", + "message": "(A poção tem um cheiro rançoso, mas você consegue engolir tudo. As cólicas estomacais reduzem, e você se sente que um dos vermes da podridão está rastejando em sua boca. Você rapidamente cospe o verme para dentro do frasco que estava vazio)", + "rewards": [ + { + "rewardType": 0, + "rewardID": "maggots", + "value": 50 + }, + { + "rewardType": 1, + "rewardID": "potion_rotworm", + "value": 0 + }, + { + "rewardType": 3, + "rewardID": "rotworm", + "value": -99 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_cured_1" + } + ] + }, + { + "id": "talion_cured_1", + "message": "Ah, parece que funcionou. Francamente, eu estava um pouco preocupado que isso talvez não tivesse funcionado, mas vê-lo cuspir aquele verme realmente confirma. Ha ha.", + "replies": [ + { + "text": "Eca! Essas coisas estavam dentro de mim?", + "nextPhraseID": "talion_cured_2" + }, + { + "text": "E agora?", + "nextPhraseID": "talion_cured_3" + } + ] + }, + { + "id": "talion_cured_2", + "message": "Sim. Desagradável, não são? * Rindo *", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_cured_3" + } + ] + }, + { + "id": "talion_cured_3", + "message": "Aquele verme você cuspiu, você deve se certificar de que você o guarde. Ele pode ser útil no futuro.", + "replies": [ + { + "text": "Para quê?", + "nextPhraseID": "talion_cured_4" + }, + { + "text": "Ok, vou segurá-lo.", + "nextPhraseID": "talion_cured_7" + }, + { + "text": "Eu acho que seria melhor colocá-lo sob minha bota.", + "nextPhraseID": "talion_cured_5" + } + ] + }, + { + "id": "talion_cured_4", + "message": "Bem, nunca se sabe. Algumas pessoas realmente gostam... de coisas exóticas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_cured_7" + } + ] + }, + { + "id": "talion_cured_5", + "message": "A escolha é sua, é claro.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_cured_7" + } + ] + }, + { + "id": "talion_cured_7", + "message": "Agora, eu sei que você deve ter passado por um bocado, para se infectar com essas coisas. Você parece o tipo aventureiro.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_cured_8" + } + ] + }, + { + "id": "talion_cured_8", + "message": "Vou te dizer, eu normalmente não ofereco isso aninguém, mas parece que você poderia precisar de ajuda.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_cured_9" + } + ] + }, + { + "id": "talion_cured_9", + "message": "Vendo como você conseguiu superar tudo isso, eu estaria disposto a oferecer-lhe ajuda ao dar-lhe bênçãos da Sombra, se você quiser.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "maggots", + "value": 51 + } + ], + "replies": [ + { + "text": "Bênçãos da Sombra?", + "nextPhraseID": "talion_cured_10" + } + ] + }, + { + "id": "talion_cured_10", + "message": "Sim. Bem .. por uma pequena taxa, é claro.", + "replies": [ + { + "text": "Que bênçãos você pode oferecer?", + "nextPhraseID": "talion_bless_1" + } + ] + }, + { + "id": "talion_bless_1", + "message": "Eu sou capaz lhe abençoar com as bêncãos da sombra para a força, para a regeneração ou para a precisão, ou até mesmo a bênção do guardião da Sombra.", + "replies": [ + { + "text": "Estou interessado na bênção de força da Sombra", + "nextPhraseID": "talion_bless_str_1" + }, + { + "text": "Estou interessado na bênção de regeneração da Sombra", + "nextPhraseID": "talion_bless_heal_1" + }, + { + "text": "Estou interessado na bênção de precisão da Sombra", + "nextPhraseID": "talion_bless_acc_1" + }, + { + "text": "Estou interessado na bênção do guardião da Sombra", + "nextPhraseID": "talion_bless_guard_1" + }, + { + "text": "Não importa.", + "nextPhraseID": "talion_0" + } + ] + }, + { + "id": "talion_bless_str_1", + "message": "A bênção de força da Sombra concede-lhe mais força ao ataque, aumentando assim a quantidade de dano que você faz em cada acertot. Eu posso lhe dar a bênção por 300 moedas de ouro.", + "replies": [ + { + "text": "Ok, eu vou dar-lhe as 300 moedas de ouro.", + "nextPhraseID": "talion_bless_str_2", + "requires": { + "item": { + "itemID": "gold", + "quantity": 300, + "requireType": 0 + } + } + }, + { + "text": "Não importa, vamos ver as outras bênçãos.", + "nextPhraseID": "talion_bless_1" + } + ] + }, + { + "id": "talion_bless_heal_1", + "message": "A bênção da regeneração da Sombra lentamente vai curá-lo de volta, se você se machucar. Eu posso lhe dar a bênção por 250 moedas de ouro.", + "replies": [ + { + "text": "Ok, eu vou dar-lhe 250 moedas de ouro.", + "nextPhraseID": "talion_bless_heal_2", + "requires": { + "item": { + "itemID": "gold", + "quantity": 250, + "requireType": 0 + } + } + }, + { + "text": "Não importa, vamos ver as outras bênçãos.", + "nextPhraseID": "talion_bless_1" + } + ] + }, + { + "id": "talion_bless_acc_1", + "message": "A bênção de precisão Sombra concede-lhe um sentido apurado de onde melhor para atacar seu oponente, aumentando assim a chance de um ataque bem sucedido enquanto luta. Eu posso lhe dar a bênção por 250 moedas de ouro.", + "replies": [ + { + "text": "Ok, eu vou dar-lhe 250 moedas de ouro.", + "nextPhraseID": "talion_bless_acc_2", + "requires": { + "item": { + "itemID": "gold", + "quantity": 250, + "requireType": 0 + } + } + }, + { + "text": "Não importa, vamos ver as outras bênçãos.", + "nextPhraseID": "talion_bless_1" + } + ] + }, + { + "id": "talion_bless_guard_1", + "message": "Ah, sim, a bênção do guardião do Sombra. A Sombra protege de lugares escuros, e mantém você seguro onde outros não poderiam ver. Eu posso lhe dar a bênção por 400 moedas de ouro.", + "replies": [ + { + "text": "Ok, eu vou dar-lhe 400 moedas de ouro.", + "nextPhraseID": "talion_bless_guard_2", + "requires": { + "item": { + "itemID": "gold", + "quantity": 400, + "requireType": 0 + } + } + }, + { + "text": "Não importa, vamos voltar a essas outras bênçãos.", + "nextPhraseID": "talion_bless_1" + } + ] + }, + { + "id": "talion_bless_str_2", + "message": "Muito bem. * Começa a cantar *", + "rewards": [ + { + "rewardType": 3, + "rewardID": "shadowbless_str", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_bless_2" + } + ] + }, + { + "id": "talion_bless_heal_2", + "message": "Muito bem. * Começa a cantar *", + "rewards": [ + { + "rewardType": 3, + "rewardID": "shadowbless_heal", + "value": 45 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_bless_2" + } + ] + }, + { + "id": "talion_bless_acc_2", + "message": "Muito bem. * Começa a cantar *", + "rewards": [ + { + "rewardType": 3, + "rewardID": "shadowbless_acc", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_bless_2" + } + ] + }, + { + "id": "talion_bless_guard_2", + "message": "Muito bem. * Começa a cantar *", + "rewards": [ + { + "rewardType": 3, + "rewardID": "shadowbless_guard", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_bless_2" + } + ] + }, + { + "id": "talion_bless_2", + "message": "Aqui. Eu espero que isso lhe seja útil em suas viagens.", + "replies": [ + { + "text": "Obrigado, adeus.", + "nextPhraseID": "X" + }, + { + "text": "Cai fora, garoto. Você não deveria estar aqui.", + "nextPhraseID": "talion_bless_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_thievesguild_1.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_thievesguild_1.json new file mode 100644 index 000000000..d47b6d51c --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_thievesguild_1.json @@ -0,0 +1,342 @@ +[ + { + "id": "thievesguild_thief_1", + "message": "Olá garoto.", + "replies": [ + { + "text": "Olá. Você sabe onde eu posso encontrar Umar?", + "nextPhraseID": "thievesguild_thief_4" + }, + { + "text": "Que lugar é esse?", + "nextPhraseID": "thievesguild_thief_2" + } + ] + }, + { + "id": "thievesguild_thief_2", + "message": "Esta é a sede da Corja dos Ladrões. Estamos seguros dos guardas de Fallhaven aqui.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thievesguild_thief_3" + } + ] + }, + { + "id": "thievesguild_thief_3", + "message": "Podemos fazer aquilo que quisermos. Contanto que Umar o permita.", + "replies": [ + { + "text": "Olá. Você sabe onde eu posso encontrar Umar?", + "nextPhraseID": "thievesguild_thief_4" + }, + { + "text": "Quem é Omar?", + "nextPhraseID": "thievesguild_thief_5" + } + ] + }, + { + "id": "thievesguild_thief_4", + "message": "Ele está, provavelmente, em seu quarto lá. * Apontando *", + "replies": [ + { + "text": "Obrigado.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "thievesguild_thief_5", + "message": "Umar é o líder da Corja. Ele decide as nossas regras e nos guia nas decisões morais.", + "replies": [ + { + "text": "Onde posso encontrá-lo?", + "nextPhraseID": "thievesguild_thief_4" + } + ] + }, + { + "id": "thievesguild_cook_1", + "message": "Olá, você quer alguma coisa?", + "replies": [ + { + "text": "Você se parece com o cozinheiro por aqui", + "nextPhraseID": "thievesguild_cook_2" + }, + { + "text": "Posso ver que alimentos você tem para vender?", + "nextPhraseID": "S" + }, + { + "text": "Farrik disse que você pode me preparar uma dose especial de hidromel", + "nextPhraseID": "thievesguild_select_1", + "requires": { + "progress": "farrik:20" + } + } + ] + }, + { + "id": "thievesguild_cook_2", + "message": "Isso mesmo. Alguém tem que manter esses bandidos alimentados.", + "replies": [ + { + "text": "Isto realmente cheira bem", + "nextPhraseID": "thievesguild_cook_3" + }, + { + "text": "Guisado! Isso parece nojento.", + "nextPhraseID": "thievesguild_cook_4" + }, + { + "text": "Não importa. Até logo", + "nextPhraseID": "X" + } + ] + }, + { + "id": "thievesguild_cook_3", + "message": "Obrigado. Este guisado parecendo muito bom.", + "replies": [ + { + "text": "Estou interessado em comprar algum", + "nextPhraseID": "S" + } + ] + }, + { + "id": "thievesguild_cook_4", + "message": "Sim, eu sei. Com ingredientes ruins, o que posso fazer? De qualquer forma, isso nos mantém alimentados.", + "replies": [ + { + "text": "Posso ver o alimento que você tem para venda?", + "nextPhraseID": "S" + } + ] + }, + { + "id": "thievesguild_cook_5", + "message": "Ah, claro. Preparado para tornar alguém um pouco sonolento, hein?", + "replies": [ + { + "text": "N", + "nextPhraseID": "thievesguild_cook_6" + } + ] + }, + { + "id": "thievesguild_cook_6", + "message": "Não se preocupe, não vou contar a ninguém. Fazer comida sonolenta é uma das minhas especialidades.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thievesguild_cook_7" + } + ] + }, + { + "id": "thievesguild_cook_7", + "message": "Dê-me um minuto para prepará-lo para você.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thievesguild_cook_8" + } + ] + }, + { + "id": "thievesguild_select_1", + "replies": [ + { + "nextPhraseID": "thievesguild_cook_10", + "requires": { + "progress": "farrik:25" + } + }, + { + "nextPhraseID": "thievesguild_cook_5" + } + ] + }, + { + "id": "thievesguild_cook_8", + "message": "Não. Isso deve funcionar. Tome.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 25 + }, + { + "rewardType": 1, + "rewardID": "sleepingmead" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "thievesguild_cook_9" + } + ] + }, + { + "id": "thievesguild_cook_10", + "message": "Sim, eu dei-lhe mais cedo a bebida preparada.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thievesguild_cook_9" + } + ] + }, + { + "id": "thievesguild_cook_9", + "message": "Tenha cuidado para não deixar nenhum resto em seus dedos. É muito potente.", + "replies": [ + { + "text": "Obrigado.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "thievesguild_pickpocket_1", + "message": "Olá.", + "replies": [ + { + "text": "Quem é você?", + "nextPhraseID": "thievesguild_pickpocket_2" + }, + { + "text": "Que lugar é esse?", + "nextPhraseID": "thievesguild_thief_2" + } + ] + }, + { + "id": "thievesguild_pickpocket_2", + "message": "Meu nome real não é importante. A maioria das pessoas me chamam de Quickfingers, que quer dizer, dedos leves.", + "replies": [ + { + "text": "Por que isso?", + "nextPhraseID": "thievesguild_pickpocket_3" + } + ] + }, + { + "id": "thievesguild_pickpocket_3", + "message": "Bem, eu tenho uma tendência a .. como direi isso .. adquirir certas coisas facilmente.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thievesguild_pickpocket_4" + } + ] + }, + { + "id": "thievesguild_pickpocket_4", + "message": "Coisas que anteriormente estavam na posse de outras pessoas.", + "replies": [ + { + "text": "Você quer dizer, como roubar?", + "nextPhraseID": "thievesguild_pickpocket_5" + } + ] + }, + { + "id": "thievesguild_pickpocket_5", + "message": "Não, não. Eu não chamaria isso de roubo. É mais uma transferência de propriedade. Para mim, é.", + "replies": [ + { + "text": "Isso soa muito como roubar para mim.", + "nextPhraseID": "thievesguild_pickpocket_6" + }, + { + "text": "Isso soa como uma boa justificativa.", + "nextPhraseID": "thievesguild_pickpocket_6" + } + ] + }, + { + "id": "thievesguild_pickpocket_6", + "message": "Afinal de contas, nós somos a Corja dos Ladrões. O que você esperava?" + }, + { + "id": "thievesguild_troublemaker_1", + "message": "Olá. Não conheço você de algum lugar?", + "replies": [ + { + "text": "Não, eu tenho certeza que nunca nos conhecemos.", + "nextPhraseID": "thievesguild_troublemaker_3" + }, + { + "text": "O que você faz aqui?", + "nextPhraseID": "thievesguild_troublemaker_2" + }, + { + "text": "Posso dar uma olhada em que suprimentos você tem disponível?", + "nextPhraseID": "S" + } + ] + }, + { + "id": "thievesguild_troublemaker_2", + "message": "Eu mantenho um olho em nossos suprimentos da Corja.", + "replies": [ + { + "text": "Posso dar uma olhada no que você tem disponível?", + "nextPhraseID": "S" + } + ] + }, + { + "id": "thievesguild_troublemaker_3", + "message": "Não, eu realmente conheço você.", + "replies": [ + { + "text": "Você deve ter me confundido com outra pessoa.", + "nextPhraseID": "thievesguild_troublemaker_4" + }, + { + "text": "Talvez você tenha me confundido com o meu irmão Andor.", + "nextPhraseID": "thievesguild_troublemaker_5" + } + ] + }, + { + "id": "thievesguild_troublemaker_4", + "message": "Sim, pode ser.", + "replies": [ + { + "text": "Você já viu meu irmão por aqui? Ele parece um pouco como eu.", + "nextPhraseID": "thievesguild_troublemaker_5" + } + ] + }, + { + "id": "thievesguild_troublemaker_5", + "message": "Ah, sim, agora que você mencionou. Teve aquele garoto zanzando por aqui, fazendo um monte de perguntas.", + "replies": [ + { + "text": "Você sabe o que ele estava procurando, ou o que ele estava fazendo?", + "nextPhraseID": "thievesguild_troublemaker_6" + } + ] + }, + { + "id": "thievesguild_troublemaker_6", + "message": "Não. Eu não sei. Eu fico de olho apenas nos suprimentos.", + "replies": [ + { + "text": "Ok, obrigado de qualquer maneira. Tchau.", + "nextPhraseID": "X" + }, + { + "text": "Bah, você é inútil. Tchau.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_thorin.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_thorin.json new file mode 100644 index 000000000..dc1449f24 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_thorin.json @@ -0,0 +1,373 @@ +[ + { + "id": "thorin", + "replies": [ + { + "nextPhraseID": "thorin_return_1", + "requires": { + "progress": "thorin:40" + } + }, + { + "nextPhraseID": "thorin_search_1", + "requires": { + "progress": "thorin:20" + } + }, + { + "nextPhraseID": "thorin_1" + } + ] + }, + { + "id": "thorin_1", + "message": "O que é isso, um visitante? Como isso é inesperado.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thorin_2" + } + ] + }, + { + "id": "thorin_2", + "message": "Diga-me, o que Thorin pode fazer por você?", + "replies": [ + { + "text": "O que você está fazendo aqui?", + "nextPhraseID": "thorin_what_1" + }, + { + "text": "Quem é você?", + "nextPhraseID": "thorin_who_1" + }, + { + "text": "Posso usar sua cama para lá para descansar?", + "nextPhraseID": "thorin_rest_1" + }, + { + "text": "Você tem alguma coisa para vender?", + "nextPhraseID": "thorin_trade_1" + } + ] + }, + { + "id": "thorin_what_1", + "message": "Oh, não muito. Bem, na verdade, eu estou à espera de alguém - ou melhor, algumas pessoas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thorin_story_1" + } + ] + }, + { + "id": "thorin_story_1", + "message": "Veja você, eu e meus companheiros coletores estávamos investigando a natureza venenosa dos Irdegh.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thorin_story_2" + } + ] + }, + { + "id": "thorin_story_2", + "message": "Aparentemente, eu fui o único que teve o cuidado suficiente ao manusear os nossos produtos.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thorin_story_3" + } + ] + }, + { + "id": "thorin_story_3", + "message": "Os outros adoeceram muito rápido, e se esconderam em uma caverna para descansar. No entanto, não haviam contado com esses insetos aqui.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thorin_story_4" + } + ] + }, + { + "id": "thorin_story_4", + "message": "Esses 'Scaradons' as criaturas são difíceis! Eles não parecem mesmo sofrer qualquer dano quando eu atinjo-os.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thorin_story_5" + } + ] + }, + { + "id": "thorin_story_5", + "message": "Então, é aqui onde estou agora. As pessoas que nos enviaram para investigar nos disseram para montar um acampamento se encontrarmos problemas, e elas viriam para nos ajudar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thorin_story_6" + } + ] + }, + { + "id": "thorin_story_6", + "message": "Até agora, você é o primeiro visitante aqui, já faz um bom tempo.", + "replies": [ + { + "text": "Você não parece chateado que seus amigos tenham morrido.", + "nextPhraseID": "thorin_story_6_1" + }, + { + "text": "Alguma coisa que eu possa fazer para ajudá-lo com isso?", + "nextPhraseID": "thorin_story_7" + }, + { + "text": "Azar. Eu aposto que a ajuda vai chegar a qualquer momento. Tchau.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "thorin_story_6_1", + "message": "Não, é apenas negócios. Apenas negócios.", + "replies": [ + { + "text": "Alguma coisa que eu possa fazer para ajudar?", + "nextPhraseID": "thorin_story_7" + }, + { + "text": "Azar. Eu aposto que seu resgate vai estar aqui a qualquer momento. Tchau.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "thorin_story_7", + "message": "Humm.. Sim, realmente há algo que você pode fazer por mim.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thorin_story_8" + } + ] + }, + { + "id": "thorin_story_8", + "message": "Os outros aos quais eu estava viajando, eles não entraram tão profundamente na caverna, mas foram atacados por esses insetos um pouco mais perto da entrada.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thorin_story_9" + } + ] + }, + { + "id": "thorin_story_9", + "message": "Considerando como eles morreram, eu estaria muito interessado em ver que efeitos os Irdegh e os Scaradons tiveram sobre eles.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thorin_story_10" + } + ] + }, + { + "id": "thorin_story_10", + "message": "Se você pudesse me encontrar seus restos mortais, eu ficaria muito grato. Talvez eu pudesse continuar minha investigação com base em seus restos mortais. Humm, sim, isso seria ótimo.", + "replies": [ + { + "text": "Claro, encontrarei seus restos mortais. Parece fácil o suficiente, eu vou fazê-lo.", + "nextPhraseID": "thorin_story_11" + }, + { + "text": "Eu adoro encontrar coisas mortas. Eu vou fazer isso.", + "nextPhraseID": "thorin_story_11" + }, + { + "text": "Hum, isso soa um pouco obscuro para mim. Eu não tenho certeza se eu deveria fazer isso.", + "nextPhraseID": "thorin_decline" + } + ] + }, + { + "id": "thorin_story_11", + "message": "Excelente. Me traga de volta os restos mortais de todos os seis. Eu iria procurar pessoalmente, se esses insetos não estivessem por lá.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "thorin", + "value": 20 + } + ] + }, + { + "id": "thorin_who_1", + "message": "Ah, eu não me apresentei, minhas desculpas. Sou Thorin.", + "replies": [ + { + "text": "O que você está fazendo aqui?", + "nextPhraseID": "thorin_what_1" + } + ] + }, + { + "id": "thorin_decline", + "message": "Pena. Bom dia para você, então." + }, + { + "id": "thorin_search_1", + "message": "Bem-vindo de volta. Você encontrou todos os seis?", + "replies": [ + { + "text": "Não, ainda não. Eu ainda estou procurando.", + "nextPhraseID": "thorin_search_2" + }, + { + "text": "Sim, isso é o que eu encontrei.", + "nextPhraseID": "thorin_search_c_1", + "requires": { + "item": { + "itemID": "thorin_bone", + "quantity": 6, + "requireType": 0 + } + } + }, + { + "text": "Posso usar sua cama para lá para descansar?", + "nextPhraseID": "thorin_rest_1" + }, + { + "text": "Você tem alguma coisa para vender?", + "nextPhraseID": "thorin_trade_1" + } + ] + }, + { + "id": "thorin_search_2", + "message": "Ok então. Por favor, retorne depois de ter encontrado todos eles. Eu iria procurar pessoalmente, se esses insetos não estivessem por lá." + }, + { + "id": "thorin_rest_1", + "replies": [ + { + "nextPhraseID": "thorin_rest_y", + "requires": { + "progress": "thorin:40" + } + }, + { + "nextPhraseID": "thorin_rest_n" + } + ] + }, + { + "id": "thorin_rest_y", + "message": "Por favor, vá em frente. Você pode descansar aqui tanto quanto quiser." + }, + { + "id": "thorin_rest_n", + "message": "A minha cama? Não, isso é meu. Talvez o deixe usar se você me ajudar com uma tarefa pequena.", + "replies": [ + { + "text": "O que é isso?", + "nextPhraseID": "thorin_story_1" + } + ] + }, + { + "id": "thorin_trade_1", + "replies": [ + { + "nextPhraseID": "thorin_trade_y", + "requires": { + "progress": "thorin:40" + } + }, + { + "nextPhraseID": "thorin_trade_n" + } + ] + }, + { + "id": "thorin_trade_y", + "message": "Ah, sim. O lado positivo desta caverna é que literalmente está rastejando com cadáveres desses insetos Scaradon.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thorin_trade_y2" + } + ] + }, + { + "id": "thorin_trade_y2", + "message": "Por acaso, aconteceu que, com a mistura certa, eles podem ser transformados em uma substância de cura.", + "replies": [ + { + "text": "Vamos ver o que você tem que trocar.", + "nextPhraseID": "S" + } + ] + }, + { + "id": "thorin_trade_n", + "message": "Não. Eu poderia ter algo para trocar, se você me ajudasse com uma tarefa pequena.", + "replies": [ + { + "text": "O que é isso?", + "nextPhraseID": "thorin_story_1" + } + ] + }, + { + "id": "thorin_search_c_1", + "message": "Obrigado. Eu teria ido me se esses insetos não estivessem lá. Isso ficaria muito mais fácil.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "thorin", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "thorin_search_c_2" + } + ] + }, + { + "id": "thorin_search_c_2", + "message": "Como um símbolo de meu apreço, você está convidado a usar a cama para descansar. Além disso, se você estiver interessado em cura, eu poderia ser capaz de lhe fornecer alguma ajuda.", + "replies": [ + { + "text": "Eu acho que deve usar a cama para descansar agora. Obrigado.", + "nextPhraseID": "X" + }, + { + "text": "Você tem alguma coisa para o negociar?", + "nextPhraseID": "thorin_trade_1" + }, + { + "text": "Você é bem-vindo. Tchau.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "thorin_return_1", + "message": "Retornou, meu amigo. O que Thorin pode fazer por você?", + "replies": [ + { + "text": "Posso usar sua cama para descansar?", + "nextPhraseID": "thorin_rest_1" + }, + { + "text": "Você tem alguma coisa para vender?", + "nextPhraseID": "thorin_trade_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_thorinbone.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_thorinbone.json new file mode 100644 index 000000000..47b8fb0af --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_thorinbone.json @@ -0,0 +1,308 @@ +[ + { + "id": "mountaincave_sleep", + "message": "Thorin grita com você: Ei, saia daí! Essa é a minha cama." + }, + { + "id": "remains_mcave_1", + "replies": [ + { + "nextPhraseID": "remains_mcave_a", + "requires": { + "progress": "thorin:31" + } + }, + { + "nextPhraseID": "remains_mcave_1b", + "requires": { + "progress": "thorin:20" + } + }, + { + "nextPhraseID": "remains_mcave_c" + } + ] + }, + { + "id": "remains_mcave_2", + "replies": [ + { + "nextPhraseID": "remains_mcave_a", + "requires": { + "progress": "thorin:32" + } + }, + { + "nextPhraseID": "remains_mcave_2b", + "requires": { + "progress": "thorin:20" + } + }, + { + "nextPhraseID": "remains_mcave_c" + } + ] + }, + { + "id": "remains_mcave_3", + "replies": [ + { + "nextPhraseID": "remains_mcave_a", + "requires": { + "progress": "thorin:33" + } + }, + { + "nextPhraseID": "remains_mcave_3b", + "requires": { + "progress": "thorin:20" + } + }, + { + "nextPhraseID": "remains_mcave_c" + } + ] + }, + { + "id": "remains_mcave_4", + "replies": [ + { + "nextPhraseID": "remains_mcave_a", + "requires": { + "progress": "thorin:34" + } + }, + { + "nextPhraseID": "remains_mcave_4b", + "requires": { + "progress": "thorin:20" + } + }, + { + "nextPhraseID": "remains_mcave_c" + } + ] + }, + { + "id": "remains_mcave_5", + "replies": [ + { + "nextPhraseID": "remains_mcave_a", + "requires": { + "progress": "thorin:35" + } + }, + { + "nextPhraseID": "remains_mcave_5b", + "requires": { + "progress": "thorin:20" + } + }, + { + "nextPhraseID": "remains_mcave_c" + } + ] + }, + { + "id": "remains_mcave_6", + "replies": [ + { + "nextPhraseID": "remains_mcave_a", + "requires": { + "progress": "thorin:36" + } + }, + { + "nextPhraseID": "remains_mcave_6b", + "requires": { + "progress": "thorin:20" + } + }, + { + "nextPhraseID": "remains_mcave_c" + } + ] + }, + { + "id": "remains_mcave_1b", + "message": "Você vé um monte de restos de esqueletos. Este deve ser um dos ex-companheiros de Thorin.", + "replies": [ + { + "text": "Deixe-o sozinho.", + "nextPhraseID": "X" + }, + { + "text": "Peguei um dos ossos.", + "nextPhraseID": "remains_mcave_1d" + } + ] + }, + { + "id": "remains_mcave_2b", + "message": "Você vê um monte de restos de esqueletos. Este deve ser um dos ex-companheiros de Thorin.", + "replies": [ + { + "text": "Deixe-o sozinho.", + "nextPhraseID": "X" + }, + { + "text": "Peguei um dos ossos.", + "nextPhraseID": "remains_mcave_2d" + } + ] + }, + { + "id": "remains_mcave_3b", + "message": "Você vê um monte de restos de esqueletos. Este deve ser um dos ex-companheiros de Thorin.", + "replies": [ + { + "text": "Deixe-o sozinho.", + "nextPhraseID": "X" + }, + { + "text": "Peguei um dos ossos.", + "nextPhraseID": "remains_mcave_3d" + } + ] + }, + { + "id": "remains_mcave_4b", + "message": "Você vê um monte de restos de esqueletos. Este deve ser um dos ex-companheiros de Thorin.", + "replies": [ + { + "text": "Deixe-o sozinho.", + "nextPhraseID": "X" + }, + { + "text": "Peguei um dos ossos.", + "nextPhraseID": "remains_mcave_4d" + } + ] + }, + { + "id": "remains_mcave_5b", + "message": "Você vê um monte de restos de esqueletos. Este deve ser um dos ex-companheiros de Thorin.", + "replies": [ + { + "text": "Deixe-o sozinho.", + "nextPhraseID": "X" + }, + { + "text": "Peguei um dos ossos.", + "nextPhraseID": "remains_mcave_5d" + } + ] + }, + { + "id": "remains_mcave_6b", + "message": "Você vê um monte de restos de esqueletos. Este deve ser um dos ex-companheiros de Thorin.", + "replies": [ + { + "text": "Deixe-o sozinho.", + "nextPhraseID": "X" + }, + { + "text": "Peguei um dos ossos.", + "nextPhraseID": "remains_mcave_6d" + } + ] + }, + { + "id": "remains_mcave_1d", + "message": "Você pega um dos ossos. Parece ter sido severamente danificado por algo corrosivo.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "thorin", + "value": 31 + }, + { + "rewardType": 1, + "rewardID": "thorin_bone" + } + ] + }, + { + "id": "remains_mcave_2d", + "message": "Você pega um dos ossos. Parece ter sido severamente danificado por algo corrosivo.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "thorin", + "value": 32 + }, + { + "rewardType": 1, + "rewardID": "thorin_bone" + } + ] + }, + { + "id": "remains_mcave_3d", + "message": "Você pega um dos ossos. Parece ter sido severamente danificado por algo corrosivo.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "thorin", + "value": 33 + }, + { + "rewardType": 1, + "rewardID": "thorin_bone" + } + ] + }, + { + "id": "remains_mcave_4d", + "message": "Você pega um dos ossos. Parece ter sido severamente danificado por algo corrosivo.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "thorin", + "value": 34 + }, + { + "rewardType": 1, + "rewardID": "thorin_bone" + } + ] + }, + { + "id": "remains_mcave_5d", + "message": "Você pega um dos ossos. Parece ter sido severamente danificado por algo corrosivo.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "thorin", + "value": 35 + }, + { + "rewardType": 1, + "rewardID": "thorin_bone" + } + ] + }, + { + "id": "remains_mcave_6d", + "message": "Você pega um dos ossos. Parece ter sido severamente danificado por algo corrosivo.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "thorin", + "value": 36 + }, + { + "rewardType": 1, + "rewardID": "thorin_bone" + } + ] + }, + { + "id": "remains_mcave_a", + "message": "Você vê um monte de restos de esqueletos, de onde você removeu algumas peças antes." + }, + { + "id": "remains_mcave_c", + "message": "Você vê um monte de restos de esqueletos." + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_tinlyn.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_tinlyn.json new file mode 100644 index 000000000..cd524bf7f --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_tinlyn.json @@ -0,0 +1,280 @@ +[ + { + "id": "tinlyn", + "replies": [ + { + "nextPhraseID": "tinlyn_killedsheep_0", + "requires": { + "progress": "benbyr:21" + } + }, + { + "nextPhraseID": "tinlyn_killedsheep_0", + "requires": { + "progress": "tinlyn:60" + } + }, + { + "nextPhraseID": "tinlyn_complete_1", + "requires": { + "progress": "tinlyn:31" + } + }, + { + "nextPhraseID": "tinlyn_complete_1", + "requires": { + "progress": "tinlyn:30" + } + }, + { + "nextPhraseID": "tinlyn_look_1", + "requires": { + "progress": "tinlyn:15" + } + }, + { + "nextPhraseID": "tinlyn_story_1" + } + ] + }, + { + "id": "tinlyn_killedsheep_0", + "replies": [ + { + "nextPhraseID": "tinlyn_killedsheep_0_1", + "requires": { + "progress": "tinlyn:10" + } + }, + { + "nextPhraseID": "tinlyn_killedsheep_1" + } + ] + }, + { + "id": "tinlyn_killedsheep_0_1", + "rewards": [ + { + "rewardType": 0, + "rewardID": "tinlyn", + "value": 60 + } + ], + "replies": [ + { + "nextPhraseID": "tinlyn_killedsheep_1" + } + ] + }, + { + "id": "tinlyn_killedsheep_1", + "message": "Você atacou minhas ovelhas! Fique longe de mim, assassino imundo!" + }, + { + "id": "tinlyn_complete_1", + "message": "Olá novamente. Obrigado por me ajudar a encontrar a minha ovelha perdida.", + "replies": [ + { + "text": "Eu conversei com Benbyr e ouvi a história sobre vocês dois.", + "nextPhraseID": "tinlyn_benbyr_1", + "requires": { + "progress": "benbyr:10" + } + } + ] + }, + { + "id": "tinlyn_story_1", + "message": "Olá. Você não gostaria de ajudar um velho pastor?", + "replies": [ + { + "text": "Qual é o problema?", + "nextPhraseID": "tinlyn_story_2" + } + ] + }, + { + "id": "tinlyn_story_2", + "message": "Veja você, eu estou com o meu rebanho de ovelhas aqui. Estes campos são excelentes pastagens para elas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tinlyn_story_3" + } + ] + }, + { + "id": "tinlyn_story_3", + "message": "Mas o problema é que perdi quatro delas. Agora eu não ousaria deixar as que eu ainda tenho na minha visão para ir buscar as perdidas.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "tinlyn", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "tinlyn_story_3_1" + } + ] + }, + { + "id": "tinlyn_story_3_1", + "replies": [ + { + "nextPhraseID": "tinlyn_story_6", + "requires": { + "progress": "tinlyn:15" + } + }, + { + "nextPhraseID": "tinlyn_story_4" + } + ] + }, + { + "id": "tinlyn_story_4", + "message": "Você estaria disposto a me ajudar a encontrá-las?", + "replies": [ + { + "text": "Não parece que exista alguma luta envolvida. Eu só faço coisas onde eu possa lutar com alguém.", + "nextPhraseID": "tinlyn_decline_1" + }, + { + "text": "Certamente, seria um prazer ajudar a um senhor de idade.", + "nextPhraseID": "tinlyn_story_5" + }, + { + "text": "O que eu ganho com isso?", + "nextPhraseID": "tinlyn_story_4_1" + } + ] + }, + { + "id": "tinlyn_decline_1", + "message": "Oh, bem, não custa perguntar." + }, + { + "id": "tinlyn_story_4_1", + "message": "Ganho? Meu agradecimento é claro.", + "replies": [ + { + "text": "Não parece que exista alguma luta envolvida. Eu só faço coisas onde eu possa lutar com alguém.", + "nextPhraseID": "tinlyn_decline_1" + }, + { + "text": "Claro, vou ajudá-lo a encontrar o seu rebanho.", + "nextPhraseID": "tinlyn_story_5" + }, + { + "text": "Não, obrigado, é melhor eu não me envolver nisso.", + "nextPhraseID": "tinlyn_decline_1" + } + ] + }, + { + "id": "tinlyn_story_5", + "message": "Bom, obrigado. Por favor, coloque esses sinos em torno de seus pescoços para que eu possa ouvi-las. Volte para mim depois de ter colocado os sinos ao redor do pescoço de cada uma das quatro ovelhas desaparecidas.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "tinlyn", + "value": 15 + }, + { + "rewardType": 1, + "rewardID": "tinlyn_bells" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "tinlyn_story_6" + } + ] + }, + { + "id": "tinlyn_story_6", + "message": "Volte para mim depois de ter colocado os sinos ao redor do pescoço de cada uma das quatro ovelhas desaparecidas." + }, + { + "id": "tinlyn_look_1", + "message": "Olá novamente. Você encontrou todas os quatro das minhas ovelhas faltantes?", + "replies": [ + { + "text": "Sim, encontrei todas eles.", + "nextPhraseID": "tinlyn_found_1", + "requires": { + "progress": "tinlyn:25" + } + }, + { + "text": "Ainda não. Eu ainda estou procurando.", + "nextPhraseID": "tinlyn_story_6" + }, + { + "text": "O que eu devo fazer mesmo?", + "nextPhraseID": "tinlyn_story_2" + }, + { + "text": "Eu conversei com Benbyr e ouvi a história sobre vocês dois.", + "nextPhraseID": "tinlyn_benbyr_1", + "requires": { + "progress": "benbyr:10" + } + } + ] + }, + { + "id": "tinlyn_found_1", + "message": "Sim, eu posso ouvir sons distantes dos sinos dos campos ao sul. Tenho certeza de que elas irão retornar aqui, agora que elas trazem os sinos.", + "replies": [ + { + "text": "Fico feliz em ajudar.", + "nextPhraseID": "tinlyn_found_3" + }, + { + "text": "Esse foi um trabalho duro. Que tal uma recompensa?", + "nextPhraseID": "tinlyn_found_2" + } + ] + }, + { + "id": "tinlyn_found_2", + "message": "Sinto muito, mas eu sou um simples pastor. Eu não tenho nenhuma riqueza ou bugigangas mágicas para lhe dar.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "tinlyn", + "value": 31 + } + ] + }, + { + "id": "tinlyn_found_3", + "message": "Obrigado por me ajudar", + "rewards": [ + { + "rewardType": 0, + "rewardID": "tinlyn", + "value": 30 + } + ] + }, + { + "id": "tinlyn_benbyr_1", + "message": "Ele ainda está aí? Eu pensei que os guardas haviam pego esse arruaceiro.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tinlyn_benbyr_2" + } + ] + }, + { + "id": "tinlyn_benbyr_2", + "message": "Enfim, eu não quero falar sobre isso. Eu deixei esse tipo de vida atrás de mim. Pastorear ovelhas é o que eu faço agora." + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_tinlyn_sheep.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_tinlyn_sheep.json new file mode 100644 index 000000000..d3f78e485 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_tinlyn_sheep.json @@ -0,0 +1,359 @@ +[ + { + "id": "tinlyn_lostsheep1", + "replies": [ + { + "nextPhraseID": "tinlyn_lostsheep_y", + "requires": { + "progress": "tinlyn:20" + } + }, + { + "nextPhraseID": "tinlyn_lostsheep1_n" + } + ] + }, + { + "id": "tinlyn_lostsheep2", + "replies": [ + { + "nextPhraseID": "tinlyn_lostsheep_y", + "requires": { + "progress": "tinlyn:21" + } + }, + { + "nextPhraseID": "tinlyn_lostsheep2_n" + } + ] + }, + { + "id": "tinlyn_lostsheep3", + "replies": [ + { + "nextPhraseID": "tinlyn_lostsheep_y", + "requires": { + "progress": "tinlyn:22" + } + }, + { + "nextPhraseID": "tinlyn_lostsheep3_n" + } + ] + }, + { + "id": "tinlyn_lostsheep4", + "replies": [ + { + "nextPhraseID": "tinlyn_lostsheep_y", + "requires": { + "progress": "tinlyn:23" + } + }, + { + "nextPhraseID": "tinlyn_lostsheep4_n" + } + ] + }, + { + "id": "tinlyn_lostsheep1_n", + "message": "Behehe!", + "replies": [ + { + "text": "Colocar os sinos de Tinlyn ao redor do pescoço das ovelhas", + "nextPhraseID": "tinlyn_lostsheep1_place", + "requires": { + "item": { + "itemID": "tinlyn_bells", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Atacar!", + "nextPhraseID": "tinlyn_lostsheep_atk", + "requires": { + "progress": "benbyr:20" + } + } + ] + }, + { + "id": "tinlyn_lostsheep2_n", + "message": "Behehe!", + "replies": [ + { + "text": "Colocar os sinos de Tinlyn ao redor do pescoço das ovelhas", + "nextPhraseID": "tinlyn_lostsheep2_place", + "requires": { + "item": { + "itemID": "tinlyn_bells", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Atacar!", + "nextPhraseID": "tinlyn_lostsheep_atk", + "requires": { + "progress": "benbyr:20" + } + } + ] + }, + { + "id": "tinlyn_lostsheep3_n", + "message": "Behehe!", + "replies": [ + { + "text": "Colocar os sinos de Tinlyn ao redor do pescoço das ovelhas", + "nextPhraseID": "tinlyn_lostsheep3_place", + "requires": { + "item": { + "itemID": "tinlyn_bells", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Atacar!", + "nextPhraseID": "tinlyn_lostsheep_atk", + "requires": { + "progress": "benbyr:20" + } + } + ] + }, + { + "id": "tinlyn_lostsheep4_n", + "message": "Behehe!", + "replies": [ + { + "text": "Colocar os sinos de Tinlyn ao redor do pescoço das ovelhas", + "nextPhraseID": "tinlyn_lostsheep4_place", + "requires": { + "item": { + "itemID": "tinlyn_bells", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Atacar!", + "nextPhraseID": "tinlyn_lostsheep_atk", + "requires": { + "progress": "benbyr:20" + } + } + ] + }, + { + "id": "tinlyn_lostsheep_y", + "message": "Behehe!", + "replies": [ + { + "text": "Atacar!", + "nextPhraseID": "tinlyn_lostsheep_atk", + "requires": { + "progress": "benbyr:20" + } + } + ] + }, + { + "id": "tinlyn_lostsheep1_place", + "rewards": [ + { + "rewardType": 0, + "rewardID": "tinlyn", + "value": 20 + } + ], + "replies": [ + { + "nextPhraseID": "tinlyn_lostsheep_check_1" + } + ] + }, + { + "id": "tinlyn_lostsheep2_place", + "rewards": [ + { + "rewardType": 0, + "rewardID": "tinlyn", + "value": 21 + } + ], + "replies": [ + { + "nextPhraseID": "tinlyn_lostsheep_check_1" + } + ] + }, + { + "id": "tinlyn_lostsheep3_place", + "rewards": [ + { + "rewardType": 0, + "rewardID": "tinlyn", + "value": 22 + } + ], + "replies": [ + { + "nextPhraseID": "tinlyn_lostsheep_check_1" + } + ] + }, + { + "id": "tinlyn_lostsheep4_place", + "rewards": [ + { + "rewardType": 0, + "rewardID": "tinlyn", + "value": 23 + } + ], + "replies": [ + { + "nextPhraseID": "tinlyn_lostsheep_check_1" + } + ] + }, + { + "id": "tinlyn_lostsheep_check_1", + "replies": [ + { + "nextPhraseID": "tinlyn_lostsheep_check_2", + "requires": { + "progress": "tinlyn:20" + } + }, + { + "nextPhraseID": "tinlyn_lostsheep_placed_2" + } + ] + }, + { + "id": "tinlyn_lostsheep_check_2", + "replies": [ + { + "nextPhraseID": "tinlyn_lostsheep_check_3", + "requires": { + "progress": "tinlyn:21" + } + }, + { + "nextPhraseID": "tinlyn_lostsheep_placed_2" + } + ] + }, + { + "id": "tinlyn_lostsheep_check_3", + "replies": [ + { + "nextPhraseID": "tinlyn_lostsheep_check_4", + "requires": { + "progress": "tinlyn:22" + } + }, + { + "nextPhraseID": "tinlyn_lostsheep_placed_2" + } + ] + }, + { + "id": "tinlyn_lostsheep_check_4", + "replies": [ + { + "nextPhraseID": "tinlyn_lostsheep_placed_1", + "requires": { + "progress": "tinlyn:23" + } + }, + { + "nextPhraseID": "tinlyn_lostsheep_placed_2" + } + ] + }, + { + "id": "tinlyn_lostsheep_placed_1", + "rewards": [ + { + "rewardType": 0, + "rewardID": "tinlyn", + "value": 25 + } + ], + "replies": [ + { + "nextPhraseID": "tinlyn_lostsheep_placed_2" + } + ] + }, + { + "id": "tinlyn_lostsheep_placed_2", + "message": "(Você coloca os sinos ao redor do pescoço das ovelhas.)" + }, + { + "id": "tinlyn_lostsheep_atk", + "replies": [ + { + "nextPhraseID": "tinlyn_lostsheep_atk1", + "requires": { + "progress": "tinlyn:10" + } + }, + { + "nextPhraseID": "tinlyn_sheep_atk" + } + ] + }, + { + "id": "tinlyn_lostsheep_atk1", + "rewards": [ + { + "rewardType": 0, + "rewardID": "tinlyn", + "value": 60 + } + ], + "replies": [ + { + "nextPhraseID": "tinlyn_sheep_atk" + } + ] + }, + { + "id": "tinlyn_sheep", + "message": "Behehe!", + "replies": [ + { + "text": "Atacar", + "nextPhraseID": "tinlyn_lostsheep_atk", + "requires": { + "progress": "benbyr:20" + } + } + ] + }, + { + "id": "tinlyn_sheep_atk", + "rewards": [ + { + "rewardType": 0, + "rewardID": "benbyr", + "value": 21 + } + ], + "replies": [ + { + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_toszylae.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_toszylae.json new file mode 100644 index 000000000..14c9cecae --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_toszylae.json @@ -0,0 +1,167 @@ +[ + { + "id": "toszylae", + "replies": [ + { + "nextPhraseID": "toszylae_10", + "requires": { + "progress": "toszylae:50" + } + }, + { + "nextPhraseID": "toszylae_1" + } + ] + }, + { + "id": "toszylae_1", + "message": "(O lich olha com seus olhos ardentes, e olha para os restos do guardião você derrotou)", + "replies": [ + { + "text": "N", + "nextPhraseID": "toszylae_2" + } + ] + }, + { + "id": "toszylae_2", + "message": "Kazaul'te vaarmun iktel urul. Klatam ku turum Kazaul'te?", + "replies": [ + { + "text": "N", + "nextPhraseID": "toszylae_3" + } + ] + }, + { + "id": "toszylae_3", + "message": "(O lich levanta as mãos em direção ao teto, cantando algo que você não pode entende)", + "replies": [ + { + "text": "N", + "nextPhraseID": "toszylae_4" + } + ] + }, + { + "id": "toszylae_4", + "message": "(Enquanto canta, lentamente abaixa suas mãos em sua direção, até que finalmente apontem para você)", + "replies": [ + { + "text": "N", + "nextPhraseID": "toszylae_5" + } + ] + }, + { + "id": "toszylae_5", + "message": "Klatam ku turum Kazaul'te.", + "replies": [ + { + "text": "N", + "nextPhraseID": "toszylae_6" + } + ] + }, + { + "id": "toszylae_6", + "message": "(Como se tivesse engolido mil agulhas, de repente você sente uma forte dor no estômago)", + "rewards": [ + { + "rewardType": 3, + "rewardID": "rotworm", + "value": 999 + }, + { + "rewardType": 0, + "rewardID": "maggots", + "value": 10 + }, + { + "rewardType": 0, + "rewardID": "toszylae", + "value": 50 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "toszylae_7" + } + ] + }, + { + "id": "toszylae_7", + "message": "(Você começa a sentir náuseas, e reviravoltas em seu estômago - como se ele tivesse vida própria)", + "replies": [ + { + "text": "N", + "nextPhraseID": "toszylae_8" + } + ] + }, + { + "id": "toszylae_8", + "message": "(A dor aumenta um pouco, e você começa a perceber que algo está se movendo dentro de você)", + "replies": [ + { + "text": "N", + "nextPhraseID": "toszylae_9" + } + ] + }, + { + "id": "toszylae_9", + "message": "(O lich deve ter infectado você com alguma coisa)", + "replies": [ + { + "text": "O que está acontecendo comigo!?", + "nextPhraseID": "toszylae_10" + } + ] + }, + { + "id": "toszylae_10", + "message": "(O lich parece gostar de vê-lo em dores)", + "replies": [ + { + "text": "Você vai pagar pelo que fez comigo!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "sign_toszylae", + "replies": [ + { + "nextPhraseID": "sign_toszylae_2", + "requires": { + "progress": "darkprotector:10" + } + }, + { + "nextPhraseID": "sign_toszylae_1" + } + ] + }, + { + "id": "sign_toszylae_1", + "message": "(Entre os restos do linch 'Toszylae ' que você derrotou, você encontra um capacete de aparência estranha)", + "rewards": [ + { + "rewardType": 0, + "rewardID": "darkprotector", + "value": 10 + }, + { + "rewardType": 1, + "rewardID": "sign_toszylae", + "value": 0 + } + ] + }, + { + "id": "sign_toszylae_2", + "message": "(Você vê os restos do linch 'Toszylae' que você derrotou.)" + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_toszylae_guard.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_toszylae_guard.json new file mode 100644 index 000000000..b9051785b --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_toszylae_guard.json @@ -0,0 +1,212 @@ +[ + { + "id": "toszylae_guard", + "replies": [ + { + "nextPhraseID": "toszylae_guard_8", + "requires": { + "progress": "toszylae:45" + } + }, + { + "nextPhraseID": "toszylae_guard_5", + "requires": { + "progress": "toszylae:42" + } + }, + { + "nextPhraseID": "toszylae_guard_1" + } + ] + }, + { + "id": "toszylae_guard_1", + "message": "(A criatura horripilante olha para baixo, dirigindo a você os seus olhos ardentes, e fala em voz sibilante)", + "replies": [ + { + "text": "N", + "nextPhraseID": "toszylae_guard_s" + } + ] + }, + { + "id": "toszylae_guard_s", + "replies": [ + { + "nextPhraseID": "toszylae_guard_3_1", + "requires": { + "progress": "toszylae:32" + } + }, + { + "nextPhraseID": "toszylae_guard_2_1", + "requires": { + "progress": "toszylae:15" + } + }, + { + "nextPhraseID": "toszylae_guard_1_1" + } + ] + }, + { + "id": "toszylae_guard_1_1", + "message": "O quê?", + "replies": [ + { + "text": "Kulauil hamar Urum Kazaul'te. Kazaul Hamat urul.", + "nextPhraseID": "toszylae_guard_1_n" + }, + { + "text": "Kazaul o quê?", + "nextPhraseID": "toszylae_guard_1_n" + } + ] + }, + { + "id": "toszylae_guard_1_n", + "message": "(A criatura se afasta)", + "replies": [ + { + "text": "Atacar!", + "nextPhraseID": "toszylae_guard_1_n2" + }, + { + "text": "Deixou a criatura", + "nextPhraseID": "X" + } + ] + }, + { + "id": "toszylae_guard_1_n2", + "message": "(Embora você tente fazer o seu ataque contra o guardião, seus braços permanecem retidos por uma força enorme)" + }, + { + "id": "toszylae_guard_2_1", + "message": "Kulauil hamar Urum Kazaul'te. Kazaul Hamat urul.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "toszylae", + "value": 20 + } + ], + "replies": [ + { + "text": "Esta deve ser a frase que Ulirfendor estava procurando.", + "nextPhraseID": "toszylae_guard_2_n" + } + ] + }, + { + "id": "toszylae_guard_2_n", + "message": "(A criatura se afasta)", + "replies": [ + { + "text": "Atacar!", + "nextPhraseID": "toszylae_guard_2_n2" + }, + { + "text": "Deixou a criatura", + "nextPhraseID": "X" + } + ] + }, + { + "id": "toszylae_guard_2_n2", + "message": "(Embora você tente fazer o seu ataque contra o guardião, seus braços permanecem retidos por uma força enorme)", + "rewards": [ + { + "rewardType": 0, + "rewardID": "toszylae", + "value": 21 + } + ] + }, + { + "id": "toszylae_guard_3_1", + "message": "Kulauil hamar Urum Kazaul'te. Kazaul Hamat urul.", + "replies": [ + { + "text": "Klaatu varmun ur Kazaul'te", + "nextPhraseID": "toszylae_guard_2_n" + }, + { + "text": "Klaatu ur Kazaul'te", + "nextPhraseID": "toszylae_guard_2_n" + }, + { + "text": "Klatam ur turum Kazaul'te", + "nextPhraseID": "toszylae_guard_4" + }, + { + "text": "Klaatu... Verata...n .. nick .. (o resto é superado pelo ruído de uma tosse bem-cronometrada)", + "nextPhraseID": "toszylae_guard_2_n" + } + ] + }, + { + "id": "toszylae_guard_4", + "message": "Kulum Kazaul.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "toszylae", + "value": 42 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "toszylae_guard_5" + } + ] + }, + { + "id": "toszylae_guard_5", + "message": "(Seus olhos pulsa em um brilho intenso quando a criatura começa a se mover em direção a você)", + "replies": [ + { + "text": "N", + "nextPhraseID": "toszylae_guard_6" + } + ] + }, + { + "id": "toszylae_guard_6", + "message": "(O Guardião dá um riso que faz o cabelo na parte de trás do seu pescoço se ouriçar)", + "replies": [ + { + "text": "N", + "nextPhraseID": "toszylae_guard_7" + } + ] + }, + { + "id": "toszylae_guard_7", + "message": "Kazaul'te vaarmun iktel urul.", + "replies": [ + { + "text": "N", + "nextPhraseID": "toszylae_guard_8" + } + ] + }, + { + "id": "toszylae_guard_8", + "message": "(Ela levanta suas garras parecidas com mãos para cima da cabeça, procurando ficar pronto para atacar em você)", + "rewards": [ + { + "rewardType": 0, + "rewardID": "toszylae", + "value": 45 + } + ], + "replies": [ + { + "text": "Atacar!", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_ulirfendor.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_ulirfendor.json new file mode 100644 index 000000000..ba1d18358 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_ulirfendor.json @@ -0,0 +1,1553 @@ +[ + { + "id": "ulirfendor", + "replies": [ + { + "nextPhraseID": "ulirfendor_dp_bless_6", + "requires": { + "progress": "darkprotector:40" + } + }, + { + "nextPhraseID": "ulirfendor_dp_bless_6", + "requires": { + "progress": "darkprotector:41" + } + }, + { + "nextPhraseID": "ulirfendor_helmet_keep3", + "requires": { + "progress": "darkprotector:51" + } + }, + { + "nextPhraseID": "ulirfendor_helmet_keep2", + "requires": { + "progress": "darkprotector:50" + } + }, + { + "nextPhraseID": "ulirfendor_dp_proc_16", + "requires": { + "progress": "darkprotector:35" + } + }, + { + "nextPhraseID": "ulirfendor_dp_proc_3", + "requires": { + "progress": "darkprotector:31" + } + }, + { + "nextPhraseID": "ulirfendor_dp_proc_1", + "requires": { + "progress": "darkprotector:30" + } + }, + { + "nextPhraseID": "ulirfendor_dp_return1", + "requires": { + "progress": "darkprotector:15" + } + }, + { + "nextPhraseID": "ulirfendor_cured_1", + "requires": { + "progress": "maggots:50" + } + }, + { + "nextPhraseID": "ulirfendor_infected_8", + "requires": { + "progress": "toszylae:60" + } + }, + { + "nextPhraseID": "ulirfendor_infected_1", + "requires": { + "progress": "toszylae:50" + } + }, + { + "nextPhraseID": "ulirfendor_findparts_10", + "requires": { + "progress": "toszylae:32" + } + }, + { + "nextPhraseID": "ulirfendor_findparts_6", + "requires": { + "progress": "toszylae:30" + } + }, + { + "nextPhraseID": "ulirfendor_findparts_1", + "requires": { + "progress": "toszylae:15" + } + }, + { + "nextPhraseID": "ulirfendor_4", + "requires": { + "progress": "toszylae:10" + } + }, + { + "nextPhraseID": "ulirfendor_1" + } + ] + }, + { + "id": "ulirfendor_1", + "message": "Não! Fique longe! Você não deve me derrotar!", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_2" + } + ] + }, + { + "id": "ulirfendor_2", + "message": "Oh, espere, você não é um deles. Você .. você não é uma daquelas crias.", + "replies": [ + { + "text": "Relaxe, eu não vim aqui para te machucar.", + "nextPhraseID": "ulirfendor_4" + }, + { + "text": "O que está havendo aqui?", + "nextPhraseID": "ulirfendor_4" + }, + { + "text": "Quem é você?", + "nextPhraseID": "ulirfendor_4" + } + ] + }, + { + "id": "ulirfendor_4", + "message": "Oh, há quanto tempo eu estive aqui? Eu não me lembro.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_5" + } + ] + }, + { + "id": "ulirfendor_5", + "message": "Não importa. Devo terminar meu trabalho aqui. Você vê este santuário aqui?", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_5_1" + } + ] + }, + { + "id": "ulirfendor_5_1", + "message": "Se meu entendimento está correto, este santuário é um remanescente de Kazaul.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_6" + } + ] + }, + { + "id": "ulirfendor_6", + "message": "Os escritos nele quase desapareceram, mas eu consegui ler algumas partes dele. Ele fala em uma língua antiga de Kazaul, mas nem todas as partes estão claras para mim.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_7" + } + ] + }, + { + "id": "ulirfendor_7", + "message": "Estou certo de que este santuário é parte da causa do porque essas... essas... coisas... que se escondem nesta caverna. Eu farei qualquer coisa ao meu alcance para derrotar qualquer mal que vem dele.", + "replies": [ + { + "text": "O que são essas criaturas?", + "nextPhraseID": "ulirfendor_8" + }, + { + "text": "Como é que essas criaturas não o atacam?", + "nextPhraseID": "ulirfendor_10" + }, + { + "text": "O que você traduziu até agora?", + "nextPhraseID": "ulirfendor_12" + } + ] + }, + { + "id": "ulirfendor_8", + "message": "Ah, os Allaceph. Eu não tinha visto nenhum faz muito tempo... até que entrei nesta caverna. Eles remanescentes dos guardiães do Kazaul.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_9" + } + ] + }, + { + "id": "ulirfendor_9", + "message": "Você já percebeu como eles parecem alimentar-se quem tenta combatê-los? Coisas amaldiçoadas, quase conseguiram uma parte de mim, bem que tentaram.", + "replies": [ + { + "text": "Como é que essas criaturas o atacam?", + "nextPhraseID": "ulirfendor_10" + }, + { + "text": "O que você já traduziu do santuário até agora?", + "nextPhraseID": "ulirfendor_12" + } + ] + }, + { + "id": "ulirfendor_10", + "message": "Eu coloquei uma bênção da Sombra sobre esta pequena ilha aqui, para que eu possa trabalhar sem interrupções. Estranhamente, parece ser muito eficaz sobre eles.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_11" + } + ] + }, + { + "id": "ulirfendor_11", + "message": "Eles parecem ser muito cautelosos com isso. Até agora, nem um sequer ousou se aproximar de mim. Mesmo aqueles lagartos traquinas estão mantendo sua distância.", + "replies": [ + { + "text": "O que são essas criaturas?", + "nextPhraseID": "ulirfendor_8" + }, + { + "text": "O que você já traduzil do santuário até agora?", + "nextPhraseID": "ulirfendor_12" + } + ] + }, + { + "id": "ulirfendor_12", + "message": "Fala de Kazaul e da miséria que se aproxima de alguém que se opõe à vontade de Kazaul.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_13" + } + ] + }, + { + "id": "ulirfendor_13", + "message": "Algo sobre re-nascimento de dentro dos seguidores. Não tenho certeza de que eu traduzi essa parte corretamente, mas eu acho que isso é o que diz. Definitivamente algo sobre re-nascimento ou nascimento.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_14" + } + ] + }, + { + "id": "ulirfendor_14", + "message": "Ele também fala de alguém ou alguma... coisa chamada 'Protetor Negro'. A maior parte do texto está faltando no santuário no entanto.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_15" + } + ] + }, + { + "id": "ulirfendor_15", + "message": "O que quer que isso signifique, parece importante. Também é óbvio que o 'Protetor Negro' traz poder para Kazaul e miséria a qualquer oposição.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_16" + } + ] + }, + { + "id": "ulirfendor_16", + "message": "Independentemente disso, ele deve ser parado, o que quer que isso signifique. Talvez isso se refira a algo mais profundo dentro dessa caverna. Eu não me aventurei mais na caverna ao leste, pois eu não poderia ter passado aquelas... coisas.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "toszylae", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_16_1" + } + ] + }, + { + "id": "ulirfendor_16_1", + "replies": [ + { + "nextPhraseID": "ulirfendor_19", + "requires": { + "progress": "toszylae:15" + } + }, + { + "nextPhraseID": "ulirfendor_17" + } + ] + }, + { + "id": "ulirfendor_17", + "message": "Perdoe-me, eu devo continuar traduzindo as poucas partes legíveis que restam nesse santuário.", + "replies": [ + { + "text": "Gostaria de alguma ajuda com isso?", + "nextPhraseID": "ulirfendor_18" + }, + { + "text": "Bem, boa sorte com isso.", + "nextPhraseID": "ulirfendor_bye" + } + ] + }, + { + "id": "ulirfendor_bye", + "message": "Obrigado. Tchau." + }, + { + "id": "ulirfendor_18", + "message": "Hm, talvez. Eu preciso descobrir o que esta última parte deve ser. Humm ..", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_19" + } + ] + }, + { + "id": "ulirfendor_19", + "message": "A última parte desta peça foi corroída da rocha. Ela começa com 'Kulauil hamar Urum Kazaul'te'. Mas, o que vem depois?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "toszylae", + "value": 11 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_19_1" + } + ] + }, + { + "id": "ulirfendor_19_1", + "replies": [ + { + "nextPhraseID": "ulirfendor_21", + "requires": { + "progress": "toszylae:15" + } + }, + { + "nextPhraseID": "ulirfendor_19_2" + } + ] + }, + { + "id": "ulirfendor_19_2", + "message": "Argh, se esta caverna não fosse tão úmida, eu aposto que o resto do texto ainda estaria lá.", + "replies": [ + { + "text": "Eu poderia ir procurar outras pistas sobre as partes que faltam, se você quiser.", + "nextPhraseID": "ulirfendor_20" + }, + { + "text": "Boa sorte com isso, adeus.", + "nextPhraseID": "ulirfendor_bye" + } + ] + }, + { + "id": "ulirfendor_20", + "message": "Claro, você pode fazer isso.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_21" + } + ] + }, + { + "id": "ulirfendor_21", + "message": "Eu olhei bem para todos os indícios, na parte oeste da caverna, mas não encontrei nenhum. Eu não entrei nas partes orientais da caverna, no entanto.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_22" + } + ] + }, + { + "id": "ulirfendor_22", + "message": "Além disso, devo avisá-lo que eu acredito que o santuário fala de uma poderosa criatura em algum lugar nesta caverna. Talvez se você encontrar aquela criatura, isso irá fornecer alguma pista sobre o que as está faltando. No entanto, você precisa ser cuidadoso.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "toszylae", + "value": 15 + } + ], + "replies": [ + { + "text": "Eu vou olhar na parte oriental da caverna então.", + "nextPhraseID": "ulirfendor_bye" + } + ] + }, + { + "id": "ulirfendor_findparts_1", + "message": "Olá novamente. Você encontrou nenhuma pista sobre o que está faltando?", + "replies": [ + { + "text": "Não, eu não encontrei nenhuma pista ainda.", + "nextPhraseID": "ulirfendor_findparts_2" + }, + { + "text": "Você pode me dizer novamente o que você já traduziu do santuário?", + "nextPhraseID": "ulirfendor_5_1" + }, + { + "text": "Sim, eu encontrei uma criatura no leste, que falava aquilo que você me disse.", + "nextPhraseID": "ulirfendor_findparts_3", + "requires": { + "progress": "toszylae:20" + } + } + ] + }, + { + "id": "ulirfendor_findparts_2", + "message": "Se você realmente quer ajudar, por favor, vá procurar por outras pistas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_21" + } + ] + }, + { + "id": "ulirfendor_findparts_3", + "message": "Ah bom, diga-me, você encontrou mais pistas?", + "replies": [ + { + "text": "Sim, a criatura também falou as palavras 'Kazaul Hamat urul', talvez isso seja parte do que faltava?", + "nextPhraseID": "ulirfendor_findparts_4" + } + ] + }, + { + "id": "ulirfendor_findparts_4", + "message": "Hmm. .. 'Hamat urul'.. Sim, claro! Isso é o que diz nas partes corroídas do santuário!", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_findparts_5" + } + ] + }, + { + "id": "ulirfendor_findparts_5", + "message": "Excelente trabalho meu amigo! Agora eu só preciso traduzi-lo.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "toszylae", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_findparts_6" + } + ] + }, + { + "id": "ulirfendor_findparts_6", + "message": "Gostaria de saber o que a frase inteira significa. 'Kulauil hamar Urum Kazaul'te. Kazaul Hamat urul' - essa é a parte que você ouviu falar da criatura.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_findparts_7" + } + ] + }, + { + "id": "ulirfendor_findparts_7", + "message": "A próxima parte é 'Klatam ur turum Kazaul'te', e eu não sei o que isso significa. Algo sobre entregar algum item?", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_findparts_8" + } + ] + }, + { + "id": "ulirfendor_findparts_8", + "message": "Talvez a criatura que você encontrou responda a essa frase, se você falar com ela? Se você quiser ajudar, você pode ir tenta falar essa frase para ela.", + "replies": [ + { + "text": "Claro, eu vou falar as palavras para a criatura.", + "nextPhraseID": "ulirfendor_findparts_9" + }, + { + "text": "De qualquer forma, eu irei fazê-lo. Mas eu espero que esta seja a última vez que eu tenha que fazer esse percurso!", + "nextPhraseID": "ulirfendor_findparts_9" + }, + { + "text": "De jeito nenhum, eu já o ajudei bastante até agora.", + "nextPhraseID": "ulirfendor_decline" + }, + { + "text": "Melhor eu não me envolver nisso.", + "nextPhraseID": "ulirfendor_decline" + } + ] + }, + { + "id": "ulirfendor_decline", + "message": "Não importa, eu vou encontrar por mim mesmo então. Obrigado por sua ajuda até agora. Tchau." + }, + { + "id": "ulirfendor_findparts_9", + "message": "Bom. Por favor, devolva o mais rápido possível.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "toszylae", + "value": 32 + } + ] + }, + { + "id": "ulirfendor_findparts_10", + "message": "Olá novamente. Você falou essas palavras para a criatura que você encontrou?", + "replies": [ + { + "text": "Conte-me novamente o que devo fazer.", + "nextPhraseID": "ulirfendor_findparts_6" + }, + { + "text": "Você pode repetir as palavras que eu deveria falar com o guardião?", + "nextPhraseID": "ulirfendor_findparts_11" + }, + { + "text": "Não, ainda não. Mas estou trabalhando nisso.", + "nextPhraseID": "ulirfendor_findparts_9" + }, + { + "text": "Sim, está feito.", + "nextPhraseID": "ulirfendor_findparts_12", + "requires": { + "progress": "toszylae:42" + } + } + ] + }, + { + "id": "ulirfendor_findparts_11", + "message": "Claro. É 'Klatam ur turum Kazaul'te'." + }, + { + "id": "ulirfendor_findparts_12", + "message": "Então, aconteceu alguma coisa?", + "replies": [ + { + "text": "A criatura começou a atacar-me.", + "nextPhraseID": "ulirfendor_findparts_13" + }, + { + "text": "Não, não aconteceu nada.", + "nextPhraseID": "ulirfendor_findparts_13" + } + ] + }, + { + "id": "ulirfendor_findparts_13", + "message": "Bem, você provavelmente deve investigar essa área um pouco mais. Estou certo de que há mais pistas de lá sobre o que este santuário fala." + }, + { + "id": "ulirfendor_infected_1", + "message": "(Ulirfendor dá-lhe um olhar aterrorizado)", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_infected_2" + } + ] + }, + { + "id": "ulirfendor_infected_2", + "message": "Você está de volta! Por favor me diga que você está bem! Por favor me diga nada aconteceu com você!", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_infected_3" + } + ] + }, + { + "id": "ulirfendor_infected_3", + "message": "Eu consegui traduzir a peça que falamos. Oh, o que eu fiz. Por favor, me diga que você está bem!", + "replies": [ + { + "text": "Não, eu não estou bem. Meu estômago está girando e eu me sinto mais fraco do que o habitual. Eu encontrei um lich lá que fez algo comigo.", + "nextPhraseID": "ulirfendor_infected_4" + } + ] + }, + { + "id": "ulirfendor_infected_4", + "message": "Nããão! O que eu fiz?", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_infected_5" + } + ] + }, + { + "id": "ulirfendor_infected_5", + "message": "Veja você, enquanto estava fora, eu consegui traduzir as palavras que falamos antes.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_infected_6" + } + ] + }, + { + "id": "ulirfendor_infected_6", + "message": "A parte que a criatura falou basicamente significa 'Nenhuma oferta é digna para Kazaul'.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_infected_7" + } + ] + }, + { + "id": "ulirfendor_infected_7", + "message": "E, a última parte, que eu fiz você falar com a criatura, 'Klatam ur turum Kazaul'te', significa 'Meu corpo para Kazaul'.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_infected_8" + } + ] + }, + { + "id": "ulirfendor_infected_8", + "message": "Oh, o que eu fiz? Eu fiz-lhe dizer isso, e agora você foi tocado pela sua essência vil.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "toszylae", + "value": 60 + } + ], + "replies": [ + { + "text": "Não é tão ruim assim. Eu já tive momentos piores.", + "nextPhraseID": "ulirfendor_infected_9" + }, + { + "text": "O que posso fazer para se livrar dessa maldição?", + "nextPhraseID": "ulirfendor_infected_9" + }, + { + "text": "É melhor ter um plano de como você deve retribuir-me para este truque!", + "nextPhraseID": "ulirfendor_infected_9" + }, + { + "text": "Eu pelo menos derrotei o lich que me infectou com esta coisa.", + "nextPhraseID": "ulirfendor_demon_s", + "requires": { + "progress": "darkprotector:10" + } + }, + { + "text": "Encontrei um capacete de aparência estranha entre os restos do lich que eu derrotei. Você sabe alguma coisa sobre isso?", + "nextPhraseID": "ulirfendor_helmet_s", + "requires": { + "progress": "toszylae:70" + } + } + ] + }, + { + "id": "ulirfendor_infected_9", + "message": "Deixe-me dar uma olhada em você.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_infected_10" + } + ] + }, + { + "id": "ulirfendor_infected_10", + "message": "Não... como poderia? Isso realmente existe?", + "replies": [ + { + "text": "O que é?", + "nextPhraseID": "ulirfendor_infected_11" + } + ] + }, + { + "id": "ulirfendor_infected_11", + "message": "Você mostra todos os sinais. Se isso for verdade, então você está em grande perigo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_infected_12" + } + ] + }, + { + "id": "ulirfendor_infected_12", + "message": "Há muito tempo atrás, li um livro sobre rituais Kazaul. A primeira parte de um certo ritual particular que li fala sobre 'o transportador', que supostamente está infectada com vermes da podridão de Kazaul.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_infected_13" + } + ] + }, + { + "id": "ulirfendor_infected_13", + "message": "Os vermes da podridão de Kazaul precisam de um ser vivo para alimentar-se, antes de seus ovos possam eclodir. Seus ovos podem matar lentamente uma pessoa por dentro, e os próprios vermes causam fraqueza ao transportador durante todo o processo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_infected_14" + } + ] + }, + { + "id": "ulirfendor_infected_14", + "message": "O ritual também descreve que o transportador é comido vivo pelos vermes da podridão e seus ovos. Além disso, o processo pode ter... digamos... um efeito incomum ao transportador.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_infected_15" + } + ] + }, + { + "id": "ulirfendor_infected_15", + "message": "Desnecessário dizer, você está em grande perigo, e você deve procurar ajuda imediatamente.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "maggots", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_infected_16" + } + ] + }, + { + "id": "ulirfendor_infected_16", + "message": "O ritual também descreve que o transportador é comido pelos vermes da podridão e pelos seus ovos o que, de fato, da à luz as criaturas dentro do seu corpo. Além disso, o processo pode ter.. digamos.. um efeito incomum no transportador antes que isso ocorra.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_infected_17" + } + ] + }, + { + "id": "ulirfendor_infected_17", + "message": "Você deve se apressar e procurar a ajuda de um dos sacerdotes da Sombra tão rápido quanto possível. Meu querido amigo Talião no templo de Loneford deve ser capaz de ajudá-lo.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "maggots", + "value": 21 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_infected_18_s" + } + ] + }, + { + "id": "ulirfendor_infected_18_s", + "replies": [ + { + "nextPhraseID": "ulirfendor_infected_18", + "requires": { + "progress": "toszylae:70" + } + }, + { + "nextPhraseID": "ulirfendor_infected_19" + } + ] + }, + { + "id": "ulirfendor_infected_18", + "message": "Procure-o imediatamente. Depressa! Você pode não deve ter muito tempo.", + "replies": [ + { + "text": "Ok, eu vou para Talião no templo de Loneford imediatamente. Tchau.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "ulirfendor_infected_19", + "message": "Gostaria também de dizer-lhe que é de grande importância que primeiro destrua qualquer criatura que o infectou com isso.", + "replies": [ + { + "text": "Ok, eu vou derrotar o lich primeiro. Tchau.", + "nextPhraseID": "X" + }, + { + "text": "Eu derroteu o lich nas profundezas da caverna oriental.", + "nextPhraseID": "ulirfendor_demon_s", + "requires": { + "progress": "darkprotector:10" + } + } + ] + }, + { + "id": "ulirfendor_demon_s", + "replies": [ + { + "nextPhraseID": "ulirfendor_demon_1", + "requires": { + "progress": "toszylae:70" + } + }, + { + "nextPhraseID": "ulirfendor_demon_d1" + } + ] + }, + { + "id": "ulirfendor_demon_1", + "message": "Sim, você disse-me que matou o lich. Excelente trabalho.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_demon_2" + } + ] + }, + { + "id": "ulirfendor_demon_2", + "message": "As pessoas das cidades vizinhas terão que o agradecer.", + "replies": [ + { + "text": "Não tem problema. Tchau.", + "nextPhraseID": "X" + }, + { + "text": "Encontrei um capacete de aparência estranha entre os restos de que lich. Você sabe alguma coisa sobre isso?", + "nextPhraseID": "ulirfendor_helmet_s", + "requires": { + "progress": "toszylae:70" + } + } + ] + }, + { + "id": "ulirfendor_demon_d1", + "message": "Ah, isso é uma boa notícia. Um lich que você diz? Com a sua ajuda, as pessoas das cidades vizinhas devem estar seguras do mal que o lich poderia ter causado até agora.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "toszylae", + "value": 70 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_demon_d2" + } + ] + }, + { + "id": "ulirfendor_demon_d2", + "message": "Muito obrigado pela sua ajuda!", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_demon_2" + } + ] + }, + { + "id": "ulirfendor_helmet_s", + "replies": [ + { + "nextPhraseID": "ulirfendor_helmet_1", + "requires": { + "progress": "maggots:50" + } + }, + { + "nextPhraseID": "ulirfendor_helmet_d1" + } + ] + }, + { + "id": "ulirfendor_helmet_d1", + "message": "Isso é muito interessante, mas parece que você tem assuntos mais urgentes para tratar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_infected_17" + } + ] + }, + { + "id": "ulirfendor_cured_1", + "message": "Eu estou contente em ver que você está parecendo melhor do que antes. Eu suponho que você conseguiu a ajuda que precisava de Talião em Loneford?", + "replies": [ + { + "text": "Sim, Talião me curou dessa coisa.", + "nextPhraseID": "ulirfendor_cured_2" + } + ] + }, + { + "id": "ulirfendor_cured_2", + "message": "Isso é bom ouvir. Eu espero que... essa coisa... não tenha quaisquer efeitos colaterais permanentes em você.", + "replies": [ + { + "text": "Eu derrotei o lich nas profundezas da caverna oriental.", + "nextPhraseID": "ulirfendor_demon_s", + "requires": { + "progress": "darkprotector:10" + } + }, + { + "text": "Encontrei um capacete de aparência estranha entre os restos daquele lich. Você sabe alguma coisa sobre isso?", + "nextPhraseID": "ulirfendor_helmet_s", + "requires": { + "progress": "toszylae:70" + } + } + ] + }, + { + "id": "ulirfendor_helmet_1", + "message": "Poderia ser? Humm. Deixe-me procurar aquela coisa.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_helmet_2" + } + ] + }, + { + "id": "ulirfendor_helmet_2", + "message": "Essas marcações sobre ele são muito peculiares. Ele foi encontrado com o lich da qual você falou?", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_helmet_3" + } + ] + }, + { + "id": "ulirfendor_helmet_3", + "message": "Humm.. Você quer saber, isso poderia realmente estar ligado àquilo na qual o santuário fala - O Protetor Negro", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_helmet_4" + } + ] + }, + { + "id": "ulirfendor_helmet_4", + "message": "Eu não estou certo de que o termo 'Protetor Negro' se refere. No começo eu pensei que poderia ser alguma criatura proteger alguma coisa, mas este capacete parece se encaixar melhor naquilo a qual o santuário descreve.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_helmet_5" + } + ] + }, + { + "id": "ulirfendor_helmet_5", + "message": "Poderia ser o capacete em si, ou que o capacete tem algum efeito sobre quem o usa, o que significa que o utilizador se torne no Protetor Negro.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_helmet_6" + } + ] + }, + { + "id": "ulirfendor_helmet_6", + "message": "No entanto, tenho quase certeza de que este artefato está ligado àquilo no qual este santuário descreve, e que o artefato é rico de influência Kazaul.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_helmet_7" + } + ] + }, + { + "id": "ulirfendor_helmet_7", + "message": "Como tal, iria certamente trazer miséria nas vizinhanças daquele a qual o carrega. Direta ou indiretamente, eu não sei.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_helmet_8" + } + ] + }, + { + "id": "ulirfendor_helmet_8", + "message": "Eu digo que devemos destruir esse item imediatamente para certificar-se de que estaremos para sempre livres dessa maldição de Kazaul e para certificar-nos de que não caia em mãos erradas.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "darkprotector", + "value": 15 + } + ], + "replies": [ + { + "text": "He he, um item poderoso que você diz? Quanto você acha que ele valha?", + "nextPhraseID": "ulirfendor_helmet_worth" + }, + { + "text": "O que devemos fazer, a fim de destruí-lo?", + "nextPhraseID": "ulirfendor_helmet_n2" + }, + { + "text": "Absolutamente. Eu farei qualquer coisa para proteger as pessoas de tal coisa.", + "nextPhraseID": "ulirfendor_helmet_n1" + }, + { + "text": "Interessante. Como alguém poderia se tornar poderoso vestindo esta coisa?", + "nextPhraseID": "ulirfendor_helmet_power" + } + ] + }, + { + "id": "ulirfendor_helmet_worth", + "message": "Vale!? Que diferença isso faria? Nós precisamos destruí-lo imediatamente!", + "replies": [ + { + "text": "Quanto poder teria algém vestindo esta coisa?", + "nextPhraseID": "ulirfendor_helmet_power" + }, + { + "text": "O que devemos fazer a fim de destruí-la?", + "nextPhraseID": "ulirfendor_helmet_n2" + }, + { + "text": "Não. Eu vou reservar esse item para mim, ao invés.", + "nextPhraseID": "ulirfendor_helmet_keep1" + } + ] + }, + { + "id": "ulirfendor_helmet_power", + "message": "Eu não quero nem pensar nisso. Iria, sem dúvida trazer miséria para os arredores de quem o usa. Nós devemos destruí-lo imediatamente!", + "replies": [ + { + "text": "He he, soa poderoso. Quanto você acha que isso vale?", + "nextPhraseID": "ulirfendor_helmet_worth" + }, + { + "text": "O que devemos fazer, a fim de destruí-la?", + "nextPhraseID": "ulirfendor_helmet_n2" + }, + { + "text": "Não. Eu vou manter esse item para mim, ao invés.", + "nextPhraseID": "ulirfendor_helmet_keep1" + } + ] + }, + { + "id": "ulirfendor_helmet_n1", + "message": "Fico feliz em ouvir isso.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_helmet_n2" + } + ] + }, + { + "id": "ulirfendor_helmet_n2", + "message": "Para destruí-lo, eu acho que será suficiente usar usar o que normalmente usamos quando removemos a marca de Kazaul - um frasco de purificar o espírito.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_helmet_n3" + } + ] + }, + { + "id": "ulirfendor_helmet_n3", + "message": "Felizmente, eu sempre carrego um pouco comigo, então, isso não será um problema.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_helmet_n4" + } + ] + }, + { + "id": "ulirfendor_helmet_n4", + "message": "O que pode ser um problema, porém, é a outra coisa que precisamos. Este artefato é provavelmente ligado a esse lich que o teve.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_helmet_n5" + } + ] + }, + { + "id": "ulirfendor_helmet_n5", + "message": "Vamos precisar de usar o frasco de espírito de purificação em algo poderoso que também tenha vindo do lich.", + "replies": [ + { + "text": "Eu consegui o coração do lich, poderia servir?", + "nextPhraseID": "ulirfendor_helmet_n6" + } + ] + }, + { + "id": "ulirfendor_helmet_n6", + "message": "O coração? Ah, sim, que certamente servirá.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "darkprotector", + "value": 26 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_helmet_n7" + } + ] + }, + { + "id": "ulirfendor_helmet_n7", + "message": "Rapidamente agora, dê-me o capacete e o coração do lich, e vou começar o procedimento.", + "replies": [ + { + "text": "Aqui está o capacete.", + "nextPhraseID": "ulirfendor_dp_proc_1", + "requires": { + "item": { + "itemID": "helm_protector0", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Eu acho que eu devo pensar melhor a respeito antes de começar.", + "nextPhraseID": "ulirfendor_helmet_n8" + }, + { + "text": "Não. Eu vou manter esse item para mim, ao invés.", + "nextPhraseID": "ulirfendor_helmet_keep1" + } + ] + }, + { + "id": "ulirfendor_helmet_n8", + "message": "Pense o que quiser, mas por favor apresse-se. Precisamos destruir essa coisa o mais rápido possível!" + }, + { + "id": "ulirfendor_dp_proc_1", + "message": "Obrigado. Agora, eu preciso que o coração do lich.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "darkprotector", + "value": 30 + } + ], + "replies": [ + { + "text": "Aqui está.", + "nextPhraseID": "ulirfendor_dp_proc_2", + "requires": { + "item": { + "itemID": "toszylae_heart", + "quantity": 1, + "requireType": 0 + } + } + } + ] + }, + { + "id": "ulirfendor_dp_proc_2", + "message": "Excelente. Vou começar o processo imediatamente.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "darkprotector", + "value": 31 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_proc_3" + } + ] + }, + { + "id": "ulirfendor_dp_proc_3", + "message": "(Ulirfendor coloca o capacete e o coração do lich no chão diante dele, e abre sua mochila de itens)", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_proc_4" + } + ] + }, + { + "id": "ulirfendor_dp_proc_4", + "message": "(Ele pega um frasco de couro de sua mochila e retira um frasco com um líquido claro, ligeiramente brilhoso)", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_proc_5" + } + ] + }, + { + "id": "ulirfendor_dp_proc_5", + "message": "(Ulirfendor derrama o conteúdo do frasco no capacete e no coração em movimentos circulares, tomando o cuidado para não o derramar ao chão)", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_proc_6" + } + ] + }, + { + "id": "ulirfendor_dp_proc_6", + "message": "Deve ser tão simples quanto isto realmente. Material poderoso isso.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_proc_7" + } + ] + }, + { + "id": "ulirfendor_dp_proc_7", + "message": "(A superfície do capacete parece congelar, quase como que tivesse uma camada de gelo)", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_proc_8" + } + ] + }, + { + "id": "ulirfendor_dp_proc_8", + "message": "(Depois de um tempo, pequenas fissuras aparecem na superfície, fazendo sons minúsculos ao aparecerem)", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_proc_9" + } + ] + }, + { + "id": "ulirfendor_dp_proc_9", + "message": "(As rachaduras começam a ficar maiores e mais densas ao longo da superfície, até que o capacete fique completamente coberto por elas)", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_proc_10" + } + ] + }, + { + "id": "ulirfendor_dp_proc_10", + "message": "Agora, veja isso. Eu adoro esta parte.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_proc_11" + } + ] + }, + { + "id": "ulirfendor_dp_proc_11", + "message": "(Ulirfendor mira com o pé e pisa o capacete com o salto de sua bota em um movimento poderoso.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_proc_12" + } + ] + }, + { + "id": "ulirfendor_dp_proc_12", + "message": "(O capacete quebra-se completamente, deixando apenas uma fina poeira.)", + "rewards": [ + { + "rewardType": 0, + "rewardID": "darkprotector", + "value": 35 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_proc_13" + } + ] + }, + { + "id": "ulirfendor_dp_proc_13", + "message": "Ha ha! Olha isso!", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_proc_14" + } + ] + }, + { + "id": "ulirfendor_dp_proc_14", + "message": "(Ele faz o mesmo com o coração que também parece ter ficado completamente congelado e coberto com rachaduras)", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_proc_15" + } + ] + }, + { + "id": "ulirfendor_dp_proc_15", + "message": "Ah, isso com certeza soa bem.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_proc_16" + } + ] + }, + { + "id": "ulirfendor_dp_proc_16", + "message": "Você, meu amigo, fez um grande feito aqui, hoje. Essa coisa teria trazido grande miséria se tivesse caído em mãos erradas.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_proc_17" + } + ] + }, + { + "id": "ulirfendor_dp_proc_17", + "message": "As pessoas das cidades vizinhas estão agora a salvo de qualquer miséria que o capacete teria trazido. Tudo graças a você!", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_proc_18" + } + ] + }, + { + "id": "ulirfendor_dp_proc_18", + "message": "Como um símbolo de meu apreço, eu estou disposto a conceder sobre você uma bênção da Sombra.", + "replies": [ + { + "text": "O que essa bênção faz?", + "nextPhraseID": "ulirfendor_dp_bless_2" + }, + { + "text": "Obrigado, mas isso não será necessário. Estou apenas feliz por ajudar.", + "nextPhraseID": "ulirfendor_dp_bless_1" + }, + { + "text": "Obrigado, por favor, vá em frente.", + "nextPhraseID": "ulirfendor_dp_bless_3" + } + ] + }, + { + "id": "ulirfendor_dp_bless_1", + "message": "Você realmente tem um grande coração.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "darkprotector", + "value": 41 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_bless_6" + } + ] + }, + { + "id": "ulirfendor_dp_bless_2", + "message": "A bênção vai lhe conceder o auxílio da sombra enquanto em combate, protegendo-o dos efeitos nocivos que o adversário poderia infligir sobre você.", + "replies": [ + { + "text": "Obrigado, mas isso não será necessário. Estou apenas feliz por ajudar.", + "nextPhraseID": "ulirfendor_dp_bless_1" + }, + { + "text": "Obrigado, por favor, vá em frente.", + "nextPhraseID": "ulirfendor_dp_bless_3" + } + ] + }, + { + "id": "ulirfendor_dp_bless_3", + "message": "Muito bem, vou dar-lhe a bênção escura da sombra.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_bless_4" + } + ] + }, + { + "id": "ulirfendor_dp_bless_4", + "message": "(Ulirfendor começa a cantar em uma língua que você não reconhece)", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_bless_5" + } + ] + }, + { + "id": "ulirfendor_dp_bless_5", + "message": "Não. Você agora tem a bênção escura da sombra em cima de você.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "darkprotector", + "value": 40 + }, + { + "rewardType": 2, + "rewardID": 20, + "value": 1 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_bless_6" + } + ] + }, + { + "id": "ulirfendor_dp_bless_6", + "message": "Obrigado mais uma vez por tudo o que fez aqui." + }, + { + "id": "ulirfendor_helmet_keep1", + "message": "O quê? Mantê-lo!? Você enlouqueceu? Nós precisamos destruí-lo para proteger o povo!", + "replies": [ + { + "text": "Quem pode saber o poder que eu poderia ganhar com isso? Eu vou manter isso para mim.", + "nextPhraseID": "ulirfendor_helmet_keep2" + }, + { + "text": "Ele pode valer muito. Eu vou manter isso para mim.", + "nextPhraseID": "ulirfendor_helmet_keep2" + }, + { + "text": "Eu acho que devo pensar melhor antes de começar.", + "nextPhraseID": "ulirfendor_helmet_n8" + } + ] + }, + { + "id": "ulirfendor_helmet_keep2", + "message": "O que é isso!? Eu sabia que havia algo errado com você a primeira vez que te vi.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "darkprotector", + "value": 50 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_helmet_keep3" + } + ] + }, + { + "id": "ulirfendor_helmet_keep3", + "message": "Pela sombra, eu vou o deter. O que for preciso. Você não vai viver para ver o dia seguinte!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "darkprotector", + "value": 51 + } + ], + "replies": [ + { + "text": "Atacar!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "ulirfendor_dp_return1", + "message": "Olá novamente. Você já pensou melhor sobre o que falamos antes?", + "replies": [ + { + "text": "O que você decidiu quanto à destruição do capacete?", + "nextPhraseID": "ulirfendor_helmet_8" + }, + { + "text": "Você pode me dizer novamente o que você pensa sobre esse capacete?", + "nextPhraseID": "ulirfendor_helmet_2" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_umar.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_umar.json new file mode 100644 index 000000000..5ae71e6b8 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_umar.json @@ -0,0 +1,346 @@ +[ + { + "id": "umar_select_1", + "replies": [ + { + "nextPhraseID": "umar_return_1", + "requires": { + "progress": "andor:51" + } + }, + { + "nextPhraseID": "umar_novisit_1" + } + ] + }, + { + "id": "umar_return_1", + "message": "Olá de novo, meu amigo.", + "replies": [ + { + "text": "Olá.", + "nextPhraseID": "umar_return_2" + }, + { + "text": "Prazer em conhecê-lo. Tchau.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "umar_return_2", + "message": "Posso ajudá-lo em mais alguma coisa?", + "replies": [ + { + "text": "Você pode repetir o que você disse sobre Andor?", + "nextPhraseID": "umar_5" + }, + { + "text": "Prazer em conhecê-lo. Tchau.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "umar_novisit_1", + "message": "Olá. Como foi a sua pesquisa?", + "replies": [ + { + "text": "Que busca?", + "nextPhraseID": "umar_2" + } + ] + }, + { + "id": "umar_2", + "message": "A última vez que conversamos, você pediu o caminho para o esconderijo de Lodar. Você o achou?", + "replies": [ + { + "text": "Nós nunca nos conhecemos.", + "nextPhraseID": "umar_3" + }, + { + "text": "Você deve estar me confundindo com meu irmão Andor. Nós somos muito parecidos.", + "nextPhraseID": "umar_4" + } + ] + }, + { + "id": "umar_3", + "message": "Oh. Parece que você me confundiu com outra pessoa.", + "replies": [ + { + "text": "Meu irmão e eu Andor somos muito parecidos.", + "nextPhraseID": "umar_4" + } + ] + }, + { + "id": "umar_4", + "message": "Sério? Não ligue para o que lhe disse antes.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 51 + } + ], + "replies": [ + { + "text": "Acho que isso significa que Andor esteve por aqui. O que ele estava fazendo?", + "nextPhraseID": "umar_5" + } + ] + }, + { + "id": "umar_5", + "message": "Ele veio aqui há um tempo atrás, fazendo um monte de perguntas sobre quais relações a Corja dos Ladrões têm com a Sombra e com a guarda real em Feygard.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_6" + } + ] + }, + { + "id": "umar_6", + "message": "Nós da Corja dos Ladrões realmente não ligamos muito para a Sombra. Nem para a guarda real.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_7" + } + ] + }, + { + "id": "umar_7", + "message": "Tentamos ficar acima de suas brigas e diferenças. Eles podem lutar o tanto que eles quiserem, mas o Corja dos Ladrões sobrevive a todos eles.", + "replies": [ + { + "text": "Qual é o conflito?", + "nextPhraseID": "umar_conflict_1" + }, + { + "text": "Conte-me mais sobre o que Andor perguntou.", + "nextPhraseID": "umar_andor_1" + } + ] + }, + { + "id": "umar_conflict_1", + "message": "Onde você esteve nos últimos dois anos? Você não sabe do conflito da cerveja?", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_conflict_2" + } + ] + }, + { + "id": "umar_conflict_2", + "message": "A guarda real, liderada pelo Lorde Geomyr em Feygard, estão tentando reduzir o recente aumento de atividades ilegais, e estão, portanto, impondo mais restrições sobre o que é permitido e o que não é.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_conflict_3" + } + ] + }, + { + "id": "umar_conflict_3", + "message": "Os sacerdotes da Sombra, principalmente baseados em Nor City, são contra as novas restrições, dizendo que elas limitam os caminhos que possam agradar a Sombra.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_conflict_4" + } + ] + }, + { + "id": "umar_conflict_4", + "message": "Por sua vez, o boato é que os sacerdotes do Sombra estejam planejando destruir o Lorde Geomyr e suas forças.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_conflict_5" + } + ] + }, + { + "id": "umar_conflict_5", + "message": "Além disso, o boato é que os sacerdotes do Sombra ainda estão fazendo seus rituais, apesar de estarem proibidos.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_conflict_6" + } + ] + }, + { + "id": "umar_conflict_6", + "message": "Lorde Geomyr e sua guarda real, por outro lado, estão dando o melhor de si para reger daforma que eles consideram correta.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_conflict_7" + } + ] + }, + { + "id": "umar_conflict_7", + "message": "Nós da Corja dos Ladrões tentamos não nos envolver no conflito. Nosso negócio está longe de ser afetado por tudo isso.", + "replies": [ + { + "text": "Obrigado por me contar.", + "nextPhraseID": "umar_return_2" + }, + { + "text": "Que seja, isso não me diz respeito.", + "nextPhraseID": "umar_return_2" + } + ] + }, + { + "id": "umar_andor_1", + "message": "Ele pediu o meu apoio, e perguntou-me como encontrar Lodar.", + "replies": [ + { + "text": "Quem é Lodar?", + "nextPhraseID": "umar_andor_2" + } + ] + }, + { + "id": "umar_andor_2", + "message": "Lodar? Ele é um dos nossos famosos fabricantes de poção da Corja dos Ladrões. Ele pode curar e fabricar todos os tipos de poções fortes para dormir e poções de cura.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_andor_3" + } + ] + }, + { + "id": "umar_andor_3", + "message": "Mas sua especialidade é, claro, seus venenos. Seu veneno pode prejudicar até mesmo o maior dos monstros.", + "replies": [ + { + "text": "O que Andor quer com ele?", + "nextPhraseID": "umar_andor_4" + } + ] + }, + { + "id": "umar_andor_4", + "message": "Eu não sei. Talvez ele estivesse à procura de uma poção.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 55 + } + ], + "replies": [ + { + "text": "Então, onde posso encontrar essa Lodar?", + "nextPhraseID": "umar_lodar_1" + } + ] + }, + { + "id": "umar_lodar_1", + "message": "Eu realmente não deveria dizer. Como chegar até ele é um dos nossos segredos bem guardados na corja. Seu refúgio é apenas acessível por nossos membros.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_lodar_2" + } + ] + }, + { + "id": "umar_lodar_2", + "message": "No entanto, ouvi dizer que você nos ajudou a encontrar a chave de Luthor. Isso é algo que temos tentado obter por um longo tempo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_lodar_3" + } + ] + }, + { + "id": "umar_lodar_3", + "message": "Ok, eu vou te dizer como chegar ao esconderijo de Lodar. Mas você tem que prometer mantê-lo em segredo. Não conte a ninguém. Nem mesmo àqueles que parecam ser membros da Corja dos Ladrões.", + "replies": [ + { + "text": "Ok, eu prometo mantê-lo em segredo.", + "nextPhraseID": "umar_lodar_4" + }, + { + "text": "Eu não posso dar nenhuma garantia, mas vou tentar.", + "nextPhraseID": "umar_lodar_4" + } + ] + }, + { + "id": "umar_lodar_4", + "message": "Bom. A coisa é, que você não só precisa apenas encontrar o lugar em si, mas você também precisa de pronunciar as palavras corretas para ser autorizado a entrar pelo guardião.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_lodar_5" + } + ] + }, + { + "id": "umar_lodar_5", + "message": "O único que entende a linguagem do guardião é o velho Ogam em Vilegard.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "lodar", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_lodar_6" + } + ] + }, + { + "id": "umar_lodar_6", + "message": "Você deve viajar para a cidade de Vilegard e encontrar Ogam. Ele pode ajudá-lo a encontrar as palavras certas para entrar no esconderijo de Lodar.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "lodar", + "value": 15 + } + ], + "replies": [ + { + "text": "Como faço para chegar ao Vilegard?", + "nextPhraseID": "umar_vilegard_1" + }, + { + "text": "Obrigado. Gostaria de lhe falar sobre outro assunto.", + "nextPhraseID": "umar_return_2" + }, + { + "text": "Obrigado, adeus.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "umar_vilegard_1", + "message": "Você viaja para sudeste de Fallhaven. Quando você chegar à estrada principal e a taberna Foaming Flask, dirija-se ao sul. Não é muito longe daqui, na direção sudeste.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_return_2" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_unzel2.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_unzel2.json new file mode 100644 index 000000000..484b46eb5 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_unzel2.json @@ -0,0 +1,80 @@ +[ + { + "id": "unzel_msg1", + "message": "Kaverin, meu velho amigo! É bom saber que ele ainda esteja vivo. Qual é a mensagem?", + "replies": [ + { + "text": "Aqui está.", + "nextPhraseID": "unzel_msg2", + "requires": { + "item": { + "itemID": "kaverin_message", + "quantity": 1, + "requireType": 0 + } + } + } + ] + }, + { + "id": "unzel_msg2", + "message": "Hummm, sim ... Vamos ver ... (Unzel abre a mensagem selada e a lê)", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kaverin", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_msg3" + } + ] + }, + { + "id": "unzel_msg3", + "message": "Sim, isso faz sentido com o que eu já vi.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_msg4" + } + ] + }, + { + "id": "unzel_msg4", + "message": "Obrigado por trazê-la para mim.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_msg5" + } + ] + }, + { + "id": "unzel_msg5", + "message": "A sua ajuda pode ser mais valiosa do que você imagina.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_msg6" + } + ] + }, + { + "id": "unzel_msg6", + "message": "Diga olá para o meu velho amigo Kaverin da próxima vez que você o ver, ok?" + }, + { + "id": "unzel_msg_r0", + "message": "Oi novamente. Obrigado pela sua ajuda combatendo Vacor e trazendo-me a mensagem de Kaverin.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_msg5" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_v0612graves.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_v0612graves.json new file mode 100644 index 000000000..25ca69143 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_v0612graves.json @@ -0,0 +1,246 @@ +[ + { + "id": "sign_wild3_grave", + "message": "Na cruz, se lê: Descanse em paz, meu amigo." + }, + { + "id": "sign_wild6_stump", + "message": "Você percebe que o toco da árvore é parcialmente oco, e parece um esconderijo excelente. Está vazio agora." + }, + { + "id": "sign_snakecave3_grave", + "message": "O terreno ao redor da sepultura está cheio de pequenos furos, provavelmente causados por algo que deslizou no caminho para o seu ninho lá adiante. A cruz tem algo escrito nela, mas você não consegue entender o que diz" + }, + { + "id": "sign_fallhaven_ne_grave1", + "message": "Aqui jaz Kargir o comerciante." + }, + { + "id": "sign_fallhaven_ne_grave2", + "message": "(A pedra está coberta com uma fina camada de musgo. A escrita na pedra corroeu e está completamente ilegível)" + }, + { + "id": "sign_fallhaven_ne_grave3", + "message": "Descanse com a Sombra, Berth-perna-única. Ela viveu uma vida plena, mas no final ela não conseguia suportar mais a doença que se abateu sobre ela." + }, + { + "id": "sign_fallhaven_ne_grave4", + "message": "Os restos de Kigrim estão aqui, depois que ele foi morto por lobos, ao sul de Fallhaven" + }, + { + "id": "sign_fallhaven_ne_grave5", + "message": "Gimlont, o corpulento, está aqui. Que possamos finalmente ficar livres de suas mãos engorduaradas que faziam parte de todos os nossos negócios." + }, + { + "id": "sign_fallhaven_ne_grave6", + "message": "Aqui jaz Terdar, o ferreiro. Que ele esteja sempre abraçado pelo conforto da Sombra." + }, + { + "id": "sign_fallhaven_ne_grave7", + "message": "Aqui jaz O'llath, elogiado por seus concidadãos de Fallhaven por seus deliciosos bolos." + }, + { + "id": "sign_fallhaven_ne_grave8", + "message": "Sidari, o lenhador, está aqui. Nós todos dissemos-lhe para ter cuidado com o machado dele, mas ele nunca nos escutou." + }, + { + "id": "sign_fallhaven_ne_grave9", + "message": "Tyngose, ​​o nobre, está aqui. Que seu legado nunca seja esquecido." + }, + { + "id": "sign_catacombs1_grave1", + "message": "Aqui jaz os restos do cavalo de Sir Eneryth, o Shadowsteed." + }, + { + "id": "sign_catacombs1_grave2", + "message": "Aqui jaz Sir Eneryth, da casa de Gellir. Filho de Sir Anarogas, e irmão mais velho de Sir Karthanir." + }, + { + "id": "sign_catacombs1_grave3", + "message": "Aqui jaz Sir Karthanir da casa de Gellir. Filho de Sir Anarogas, e irmão mais novo de Sir Eneryth." + }, + { + "id": "sign_catacombs1_grave4", + "message": "Aqui jaz Lady Gelythus da casa de Gellir. Esposa de Sir Eneryth, da casa de Gellir." + }, + { + "id": "sign_catacombs2_grave1", + "message": "Aqui jaz ta'Draiden, servo da Sombra na capela de Fallhaven." + }, + { + "id": "sign_catacombs2_grave2", + "message": "Aqui jaz ta'Tembas servo, da Sombra na capela de Fallhaven." + }, + { + "id": "sign_catacombs2_grave3", + "message": "Aqui jaz Elodam, servo do Senhor Eneryth, da casa de Gellir." + }, + { + "id": "sign_catacombs2_grave4", + "message": "Aqui jaz os restos mortais de Tragdas-caolho, empregado de Sir Eneryth da casa Gellir." + }, + { + "id": "sign_catacombs2_grave5", + "message": "Aqui jaz o gentil Lerythal. Que ela descanse com a Sombra4358" + }, + { + "id": "sign_catacombs2_grave6", + "message": "Here lies Kragnis the second, steward of the chapel of Fallhaven." + }, + { + "id": "sign_catacombs2_grave7", + "message": "The writing on the grave reads: Rest with the Shadow, my dearest." + }, + { + "id": "sign_catacombs2_papers1", + "message": "(No chão é o que se parece com algumas páginas arrancadas de um livro)" + }, + { + "id": "sign_catacombs2_papers2", + "message": "(Você encontra alguns papéis amassados ​​no chão, contendo notas rabiscadas sobre as belas artes da cerâmica. Você decide deixá-los onde está)" + }, + { + "id": "sign_catacombs3_grave1", + "message": "(O túmulo lê:. Aqui jaz Sir Anarogas da casa Gellir, filho de Gellir, o bravo)" + }, + { + "id": "sign_catacombs3_grave2", + "message": "(O fedor que vem do túmulo é insuportável. Algo deve ter perturbado o túmulo recentemente)" + }, + { + "id": "sign_catacombs4_grave1", + "message": "(Na cruz, lê-se:. Ta'Dreg está aqui, conselheiro da sombra do rei Luthor)" + }, + { + "id": "sign_catacombs4_grave2", + "message": "(O túmulo lê:.. Rei Luthor, nosso salvador e líder. O túmulo também está adornado com o selo dourado da casa de Luthor)" + }, + { + "id": "sign_hh3_papers", + "message": "Situado sob a estátua, você encontra alguns papéis com desenhos do que parecem esqueletos. Os desenhos parecem que foram feitos por uma criança, e você começa a se perguntar como eles poderiam ter acabado em um lugar como este. " + }, + { + "id": "sign_hh3_grave", + "message": "(Alguém escreveu as palavras 'Descanso' e 'Sombra' na cruz, com o que parece ser sangue seco)" + }, + { + "id": "sign_bwm30_grave", + "message": "(Na cruz lê-se: Descanse com a Sombra, minha querida)" + }, + { + "id": "sign_bwm33_grave", + "message": "(A lápide foi escrita em um idioma que você não entende)" + }, + { + "id": "sign_bwm52_grave1", + "message": "(Na cruz, lê-se:.. Aqui jaz Magnir, o comerciante. Outra vítima desses animais)" + }, + { + "id": "sign_bwm52_grave2", + "message": "(O túmulo parece que foi recentemente escavado)" + }, + { + "id": "sign_bwm52_grave3", + "message": "(A cruz diz: Aqui jaz Torkurt, servo leal do acampamento das Águas Negras)" + }, + { + "id": "sign_bwm52_grave4", + "message": "(Na cruz, lê-se:.. Aqui jaz o'Rani, o guerreiro mais feroz deste lado da montanha. Que ele descanse em paz)" + }, + { + "id": "sign_bwm52_grave5", + "message": "(Na cruz, lê-se:.. Viajante Sem nome encontrado no penhasco do lado, morto por um desses animais)" + }, + { + "id": "sign_bwm52_grave7", + "message": "(Na cruz, lê-se:. Aqui jaz Trombul, o famoso fabricante de porções)" + }, + { + "id": "sign_bwm52_grave6", + "message": "(Na cruz, lê-se:. Aqui jaz os restos de Antagnart, amado por ninguém, mas lembrado por todos)" + }, + { + "id": "sign_bwm52_papers1", + "message": "(No chão está o que se parece com algumas páginas arrancadas de um livro)" + }, + { + "id": "sign_bwm52_papers2", + "message": "(Você encontra um desenho primitivo de um dos dragões brancos, mas você decide não mantê-lo, uma vez que deve pertencer a alguém)" + }, + { + "id": "sign_pwcave1_grave", + "message": "(A cruz mostra lotes de pequenos recortes, como se alguém batesse repetidamente com um objeto afiado. Você mal consegue ler as palavras:... Descanse com a sombra, meu amigo, eu vou vingar-lhe dessas bestas)" + }, + { + "id": "sign_pwcave2a_grave", + "message": "(A cruz contém símbolos que você não pode entender)" + }, + { + "id": "sign_pwcave4_grave1", + "message": "(A cruz contém símbolos que você não pode entender. Parece que alguém começou a cavar esta cova recentemente, mas parou na metade.)" + }, + { + "id": "sign_pwcave4_grave2", + "message": "(A cruz contém símbolos que você não pode compreender e um desenho rude do que você acha que parece com uma besta Izthiel.)" + }, + { + "id": "sign_pwcave4_grave3", + "message": "(A cruz contém símbolos que você não pode compreender e um desenho rude do que você acha que parece com um sapo.)" + }, + { + "id": "sign_pwcave4_grave4", + "message": "(A cruz contém símbolos que você não pode compreender, mas você reconhece a palavra'Iqhan')" + }, + { + "id": "sign_pwcave4_grave5", + "message": "(A cruz contém símbolos que você não pode compreender e um desenho rude do que você acha que parece com uma espada.)" + }, + { + "id": "sign_pwcave4_grave6", + "message": "(A cruz contém símbolos que você não pode compreender e um desenho rude que não parece com nada que você já tenha visto antes.)" + }, + { + "id": "sign_pwcave4_grave7", + "message": "(A cruz contém símbolos que você não pode compreender e um desenho elaborado de uma caveira)" + }, + { + "id": "sign_waterway14_hole", + "message": "(você para para observar um buraco na parede perto do chão, grande o suficiente para caber algo dentro. O terreno aqui mostra marcas recentes de sapato, o que poderia indicar que o buraco na parede é um esconderijo de algum tipo. No entanto, parece estar vazio agora)" + }, + { + "id": "sign_waterway11e_grave", + "message": "(Na cruz, lê-se:.. Aqui jaz Telban, um querido amigo de muitos, e um inimigo temido por aqueles que não saldavam suas dívidas)" + }, + { + "id": "sign_mountaincave0_grave", + "message": "(Na cruz, lê-se:.. Tengil, o necessitado, está aqui, depois de ter sucumbido ao mais desagradável dos venenos. Descanse com a sombra, meu amigo)" + }, + { + "id": "sign_mountainlake1_grave", + "message": "(O solo ao redor da sepultura parece que foi parcialmente desenterrado por animais. Eles não parecem ter chegado a lugar algum ainda)" + }, + { + "id": "sign_waytobrim3_grave1", + "message": "Aqui jaz os restos de Ilirathos, mãe de dois." + }, + { + "id": "sign_waytobrim3_grave2", + "message": "Ke'roos está aqui. Ninguém o conhecia na vida, pois sempre foi muito reservado, mas todos nós somos-lhe gratos pelos presentes generosos que ele deixou em Brimhaven." + }, + { + "id": "sign_waytobrim3_grave3", + "message": "Aqui jaz Lawellyn, o fraco." + }, + { + "id": "sign_waytolake2_grave", + "message": "(A cruz está coberta com uma grossa camada de telhas de aranha. Você quer saber por que alguém iria escolher este lugar como um túmulo para seu descanso)" + }, + { + "id": "sign_lh1_grave", + "message": "(Mesmo que a madeira na cruz pareca ter sido cortada recentemente, você não vê sinais de algo que esteja enterrado aqu.)" + }, + { + "id": "sign_lh1_sign", + "message": "(Na parede, você vê uma placa que diz 'Traga-me o que eu não posso suportar, porque isso me torna mais forte'." + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_vacor2.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_vacor2.json new file mode 100644 index 000000000..da311763c --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_vacor2.json @@ -0,0 +1,237 @@ +[ + { + "id": "vacor_msg1", + "message": "O que é isso em suas mãos?! ... Eu reconheço que o selo!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kaverin", + "value": 70 + } + ], + "replies": [ + { + "text": "Você deve reconhecê-lo, eu achei essa mensagem com um dos associados a Unzel em Remgard.", + "nextPhraseID": "vacor_msg_a1" + }, + { + "text": "O quê? ... Oh, isso?", + "nextPhraseID": "vacor_msg_b1" + } + ] + }, + { + "id": "vacor_msg_a1", + "message": "Com certeza, ele não deu isso apenas a você!", + "replies": [ + { + "text": "Ele estava fazendo perguntas demais. Ele precisava ser silenciado.", + "nextPhraseID": "vacor_msg_a2" + } + ] + }, + { + "id": "vacor_msg_a2", + "message": "Então, você o matou? Certo?!", + "replies": [ + { + "text": "Kaverin está morto. Seu sangue ainda está em minhas botas.", + "nextPhraseID": "vacor_msg_3" + } + ] + }, + { + "id": "vacor_msg_b1", + "message": "Como esse documento foi chegar em suas mãos ?!", + "replies": [ + { + "text": "Um homem em Remgard, com o nome de Kaverin, perguntou-me sobre Unzel ...", + "nextPhraseID": "vacor_msg_b2" + } + ] + }, + { + "id": "vacor_msg_b2", + "message": "O que aconteceu, menino?!", + "replies": [ + { + "text": "Kaverin está morto. Seu sangue ainda está em minhas botas.", + "nextPhraseID": "vacor_msg_3" + } + ] + }, + { + "id": "vacor_msg_3", + "message": "Bom, talvez agora eu posso trabalhar no meu feitiço de elevação em paz ...", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_msg_4" + } + ] + }, + { + "id": "vacor_msg_4", + "message": "eu devo ter esse documento!", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_msg_5" + } + ] + }, + { + "id": "vacor_msg_5", + "message": "Eu preciso saber o que eles estão planejando!", + "replies": [ + { + "text": "Aqui, temos a mensagem.", + "nextPhraseID": "vacor_msg_8", + "requires": { + "item": { + "itemID": "kaverin_message", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "O que está nele para mim?", + "nextPhraseID": "vacor_msg_6" + } + ] + }, + { + "id": "vacor_msg_6", + "message": "Eu tenho uma reserva de poções escondida, longe a sudoeste.", + "replies": [ + { + "text": "Excelente, eu posso sempre usar mais suprimentos.", + "nextPhraseID": "vacor_msg_7" + } + ] + }, + { + "id": "vacor_msg_7", + "message": "Bom. Agora dê-me a mensagem.", + "replies": [ + { + "text": "Aqui está a mensagem, Vacor.", + "nextPhraseID": "vacor_msg_8", + "requires": { + "item": { + "itemID": "kaverin_message", + "quantity": 1, + "requireType": 0 + } + } + } + ] + }, + { + "id": "vacor_msg_8", + "message": "Aqui, pegue este mapa como compensação por seus problemas.", + "rewards": [ + { + "rewardType": 1, + "rewardID": "vacor_map" + }, + { + "rewardType": 0, + "rewardID": "kaverin", + "value": 75 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_msg_9" + } + ] + }, + { + "id": "vacor_msg_9", + "message": "Ele vai levar você longe para o sudoeste, com um dos meus esconderijos secretos ... onde uma reserva de poções está oculta.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_msg_10" + } + ] + }, + { + "id": "vacor_msg_10", + "message": "(O mapa mostra uma localização a noroeste da antiga prisão de Flagstone)", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kaverin", + "value": 90 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_msg_11" + } + ] + }, + { + "id": "vacor_msg_11", + "message": "Agora, vamos ver isso aqui.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_msg_12" + } + ] + }, + { + "id": "vacor_msg_12", + "message": "(Vacor abre a mensagem e inicia a leitura da mensagem selada)", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_msg_13" + } + ] + }, + { + "id": "vacor_msg_13", + "message": "Sim ... hum ... Sério?! *Murmura* ... Sim, é verdade ...", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_msg_14" + } + ] + }, + { + "id": "vacor_msg_14", + "message": "HA HA HA!!! O PODER LOGO SERÁ MEU!", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_msg_15" + } + ] + }, + { + "id": "vacor_msg_15", + "message": "HA HA HA! O PODER LOGO SERÁ MEU!", + "replies": [ + { + "text": "Excelente! A sombra deve ser parada!", + "nextPhraseID": "vacor_msg_16" + }, + { + "text": "Eu só queria uma recompensa ... Que estranho.", + "nextPhraseID": "vacor_msg_16" + } + ] + }, + { + "id": "vacor_msg_16", + "message": "Obrigado por me dar essa mensagem, mas agora, por favor me deixe. Tenho coisas mais importantes para fazer do que falar com você." + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_vilegard_erttu.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_vilegard_erttu.json new file mode 100644 index 000000000..79871f867 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_vilegard_erttu.json @@ -0,0 +1,97 @@ +[ + { + "id": "erttu_1", + "message": "Olá estrangeiro. Em geral, não gostamos de estranhos aqui em Vilegard, mas há algo em você que me parece familiar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "erttu_default" + } + ] + }, + { + "id": "erttu_default", + "message": "O que você quer falar?", + "replies": [ + { + "text": "Porque é que todos na Vilegard são tão desconfiados de estranhos?", + "nextPhraseID": "erttu_distrust_1", + "requires": { + "progress": "vilegard:10" + } + }, + { + "text": "O que você pode me dizer sobre Vilegard?", + "nextPhraseID": "erttu_vilegard_1" + } + ] + }, + { + "id": "erttu_distrust_1", + "message": "A maioria de nós que vivemos aqui em Vilegard têm uma história de confiar muito nas pessoas. No finall, essas pessoas nos feriram muito.", + "replies": [ + { + "text": "N", + "nextPhraseID": "erttu_distrust_2" + } + ] + }, + { + "id": "erttu_distrust_2", + "message": "Agora tendemos a suspeitar de todos,solicitando aos estrangeiros que vêm aqui que ganhem nossa confiança, ajudando-nos em primeiro lugar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "erttu_distrust_3" + } + ] + }, + { + "id": "erttu_distrust_3", + "message": "Além disso, outras pessoas geralmente olham atravessado para nós aqui em Vilegard por algum motivo. Especialmente aqueles esnobes de Feygard e das cidades do norte.", + "replies": [ + { + "text": "O que mais pode me dizer sobre Vilegard?", + "nextPhraseID": "erttu_vilegard_1" + } + ] + }, + { + "id": "erttu_vilegard_1", + "message": "Temos quase tudo o que precisamos aqui no Vilegard. Nosso centro da vila é a capela.", + "replies": [ + { + "text": "N", + "nextPhraseID": "erttu_vilegard_2" + } + ] + }, + { + "id": "erttu_vilegard_2", + "message": "A capela serve como nosso lugar de culto para a Sombra, e também como o nosso lugar para se reunir ao discutir questões maiores em nossa aldeia.", + "replies": [ + { + "text": "N", + "nextPhraseID": "erttu_vilegard_3" + } + ] + }, + { + "id": "erttu_vilegard_3", + "message": "Além da capela, temos uma taberna, um ferreiro e um armeiro.", + "replies": [ + { + "text": "Obrigado pela informação. Gostaria de lhe falar sobre outro assunto.", + "nextPhraseID": "erttu_default" + }, + { + "text": "Obrigado pela informação. Tchau.", + "nextPhraseID": "X" + }, + { + "text": "Uau, nada mais? Eu me pergunto o que estou fazendo em uma aldeia insignificante como esta.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_vilegard_shops.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_vilegard_shops.json new file mode 100644 index 000000000..403b6db49 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_vilegard_shops.json @@ -0,0 +1,99 @@ +[ + { + "id": "vilegard_armorer_select", + "replies": [ + { + "nextPhraseID": "vilegard_armorer_1", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "vilegard_shop_notrust" + } + ] + }, + { + "id": "vilegard_armorer_1", + "message": "Olá. Por favor, veja minha selecção de armaduras finas e escudos.", + "replies": [ + { + "text": "Deixe-me ver a sua lista de mercadorias", + "nextPhraseID": "S" + } + ] + }, + { + "id": "vilegard_smith_select", + "replies": [ + { + "nextPhraseID": "vilegard_smith_1", + "requires": { + "progress": "feygard_shipment:56" + } + }, + { + "nextPhraseID": "vilegard_smith_fg_2", + "requires": { + "progress": "feygard_shipment:55" + } + }, + { + "nextPhraseID": "vilegard_smith_1", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "vilegard_shop_notrust" + } + ] + }, + { + "id": "vilegard_smith_1", + "message": "Olá lá. Ouvi dizer que você nos ajudou aqui em Vilegard. Em que posso ajudá-lo?", + "replies": [ + { + "text": "Posso ver os itens que você tem para venda?", + "nextPhraseID": "S" + }, + { + "text": "Eu tenho um carregamento de itens de Feygard para você.", + "nextPhraseID": "vilegard_smith_fg_1", + "requires": { + "progress": "feygard_shipment:35", + "item": { + "itemID": "fg_ironsword", + "quantity": 10, + "requireType": 0 + } + } + } + ] + }, + { + "id": "vilegard_shop_notrust", + "message": "Você é um estrangeiro. Nós não gostamos de estrangeiros aqui em Vilegard. Por favor, deixe.", + "replies": [ + { + "text": "Porque é que todos em Vilegard são tão desconfiados de estranhos?", + "nextPhraseID": "vilegard_shop_notrust_2" + }, + { + "text": "Posso ver os itens que você tem para venda?", + "nextPhraseID": "vilegard_shop_notrust_2" + } + ] + }, + { + "id": "vilegard_shop_notrust_2", + "message": "Eu não confio em você. Você deve ir ver Jolnor na capela se você quer alguma simpatia.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vilegard", + "value": 10 + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_vilegard_tavern.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_vilegard_tavern.json new file mode 100644 index 000000000..f1d4f029a --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_vilegard_tavern.json @@ -0,0 +1,68 @@ +[ + { + "id": "dunla_default", + "message": "Você parece um cara inteligente. Precisa de algum suprimento?", + "replies": [ + { + "text": "Claro, deixe-me ver o que você tem disponível.", + "nextPhraseID": "S" + }, + { + "text": "O que você pode me dizer sobre si mesmo?", + "nextPhraseID": "dunla_1" + } + ] + }, + { + "id": "dunla_1", + "message": "Eu? Eu não sou ninguém. Você nem sequer me vê. Você certamente não falou comigo." + }, + { + "id": "tharwyn_select", + "replies": [ + { + "nextPhraseID": "tharwyn_1", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "vilegard_shop_notrust" + } + ] + }, + { + "id": "tharwyn_1", + "message": "Olá lá. Ouvi dizer que você ajudou Jolnor na capela. Você tem o meu agradecimento, amigo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tharwyn_2" + } + ] + }, + { + "id": "tharwyn_2", + "message": "Sente-se em qualquer lugar. O que eu posso fazer por você?", + "replies": [ + { + "text": "Mostre-me os alimentos que você possui.", + "nextPhraseID": "S" + } + ] + }, + { + "id": "vilegard_tavern_drunk_1", + "message": "Olhe! Um garoto perdido. Aqui, tome algum hidromel, garoto.", + "replies": [ + { + "text": "Não, obrigado.", + "nextPhraseID": "X" + }, + { + "text": "Cuidado com a língua, bêbado.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_vilegard_v0610.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_vilegard_v0610.json new file mode 100644 index 000000000..8e1105ae8 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_vilegard_v0610.json @@ -0,0 +1,118 @@ +[ + { + "id": "vilegard_smith_fg_1", + "message": "Oh, isso é muito inesperado, mas muito bem-vindo. Não vou questionar como você adquiriu esses itens, mas, ao invés, vez expressar a minha gratidão por trazê-los para mim.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "feygard_shipment", + "value": 55 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vilegard_smith_fg_2" + } + ] + }, + { + "id": "vilegard_smith_fg_2", + "message": "Obrigado por me trazer esses itens, eles serão mais úteis para nós aqui nas terras do sul, e, em particular, em Vilegard. Raramente chegam a nossas mãos esses itens de Feygard, de forma que eles são realmente bem-vindos.", + "replies": [ + { + "text": "Eu fui enviado para entregar esses itens para uma patrulha de Feygard acampada na taberna Foaming Flask.", + "nextPhraseID": "vilegard_smith_fg_3" + } + ] + }, + { + "id": "vilegard_smith_fg_3", + "message": "Em vez disso, você trouxe para mim. Você tem meu agradecimento.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vilegard_smith_fg_4" + } + ] + }, + { + "id": "vilegard_smith_fg_4", + "message": "Ah, isso significa que temos mais uma oportunidade aqui. E se você entregasse alguns outros itens, ao invés desses, para a patrulha de Feygard? Hah, isso vai realmente fazer o meu dia.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vilegard_smith_fg_5" + } + ] + }, + { + "id": "vilegard_smith_fg_5", + "message": "Eu poderia ter algo que lhe vai cair muito bem .. Deixe-me apenas encontrá-los.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vilegard_smith_fg_6" + } + ] + }, + { + "id": "vilegard_smith_fg_6", + "message": "Aqui estão eles. Ha ha, isto irá fazer muito bem para os esnobes enganadores de Feygard.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vilegard_smith_fg_7" + } + ] + }, + { + "id": "vilegard_smith_fg_7", + "message": "Tome esses itens e entregue-os onde você deveria entregar os itens originais que você me deu.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "feygard_shipment", + "value": 56 + }, + { + "rewardType": 1, + "rewardID": "vg_smith_fg_items" + } + ] + }, + { + "id": "ff_captain_vg_items_1", + "rewards": [ + { + "rewardType": 0, + "rewardID": "feygard_shipment", + "value": 60 + } + ], + "replies": [ + { + "nextPhraseID": "ff_captain_items_1" + } + ] + }, + { + "id": "ff_captain_fg_items_1", + "rewards": [ + { + "rewardType": 0, + "rewardID": "feygard_shipment", + "value": 50 + } + ], + "replies": [ + { + "nextPhraseID": "ff_captain_items_1" + } + ] + }, + { + "id": "ff_captain_items_1", + "message": "Excelente, eu tenho esperado por esses. Obrigado por trazê-los para mim." + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_vilegard_villagers.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_vilegard_villagers.json new file mode 100644 index 000000000..54d9b1f2e --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_vilegard_villagers.json @@ -0,0 +1,171 @@ +[ + { + "id": "vilegard_villager_1", + "replies": [ + { + "nextPhraseID": "vilegard_villager_friend", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "vilegard_villager_1_0" + } + ] + }, + { + "id": "vilegard_villager_1_0", + "message": "Olá. Quem é você? Você não é bem-vindo aqui em Vilegard.", + "replies": [ + { + "text": "Você viu meu irmão, Andor, por aqui?", + "nextPhraseID": "vilegard_villager_1_2" + } + ] + }, + { + "id": "vilegard_villager_1_2", + "message": "Não, eu não tenho certeza. Mesmo se eu tivesse, por que eu iria lhe dizer?" + }, + { + "id": "vilegard_villager_2", + "replies": [ + { + "nextPhraseID": "vilegard_villager_friend", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "vilegard_villager_2_0" + } + ] + }, + { + "id": "vilegard_villager_2_0", + "message": "pela Sombra, você é um estranho. Nós não gostamos de estrangeiros aqui.", + "replies": [ + { + "text": "Porque é que todos na Vilegard tanto medo de estranhos?", + "nextPhraseID": "vilegard_villager_5_1" + } + ] + }, + { + "id": "vilegard_villager_3", + "replies": [ + { + "nextPhraseID": "vilegard_villager_friend", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "vilegard_villager_3_0" + } + ] + }, + { + "id": "vilegard_villager_3_0", + "message": "Esta é Vilegard. Você não vai encontrar conforto aqui, estranho." + }, + { + "id": "vilegard_villager_4", + "replies": [ + { + "nextPhraseID": "vilegard_villager_friend", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "vilegard_villager_4_0" + } + ] + }, + { + "id": "vilegard_villager_4_0", + "message": "Você parece que outro garoto que correu por aqui. Provavelmente causando problemas, como sempre, estrangeiros.", + "replies": [ + { + "text": "Você viu meu irmão Andor?", + "nextPhraseID": "vilegard_villager_1_2" + }, + { + "text": "Eu não estou aqui para causar problemas.", + "nextPhraseID": "vilegard_villager_4_2" + }, + { + "text": "Ah, sim, eu também estou aqui para causar problemas.", + "nextPhraseID": "vilegard_villager_4_3" + } + ] + }, + { + "id": "vilegard_villager_4_2", + "message": "Não, eu tenho certeza que você é arruaceiro. Todo estrangeiro é igual." + }, + { + "id": "vilegard_villager_4_3", + "message": "Sim, eu sei. É por isso que nós não queremos o seu tipo por aqui. Você deve deixar Vilegard enquanto ainda pode." + }, + { + "id": "vilegard_villager_5", + "replies": [ + { + "nextPhraseID": "vilegard_villager_friend", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "vilegard_villager_5_0" + } + ] + }, + { + "id": "vilegard_villager_5_0", + "message": "Olá estrangeiro. Você parece perdido, isso é bom. Agora deixe Vilegard enquanto pode.", + "replies": [ + { + "text": "Porque é que todos em Vilegard tanto medo de estranhos?", + "nextPhraseID": "vilegard_villager_5_1" + } + ] + }, + { + "id": "vilegard_villager_5_1", + "message": "Eu não confio em você. Você deve procurar o Jolnor na capela se quer alguma simpatia.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vilegard", + "value": 10 + } + ] + }, + { + "id": "vilegard_villager_friend", + "message": "Olá. Ouvi dizer que você nos ajudou-nos, gente simples, aqui em Vilegard. Por favor, fique por quanto tempo você quiser amigo.", + "replies": [ + { + "text": "Obrigado. Você viu meu irmão Andor por aqui?", + "nextPhraseID": "vilegard_villager_friend_1" + }, + { + "text": "Obrigado. Vejo você mais tarde.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "vilegard_villager_friend_1", + "message": "Seu irmão? Não, eu não vi ninguém que se parece com você. Mas, novamente, eu nunca presto muita atenção em estranhos.", + "replies": [ + { + "text": "Obrigado, adeus.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_wilderness.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_wilderness.json new file mode 100644 index 000000000..fd28660e0 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_wilderness.json @@ -0,0 +1,74 @@ +[ + { + "id": "fallhaven_bandit", + "message": "Cai fora, garoto. Eu não tenho tempo para você.", + "replies": [ + { + "text": "Eu estou procurando por um pedaço do feitiço de elevação.", + "nextPhraseID": "fallhaven_bandit_2", + "requires": { + "progress": "vacor:20" + } + } + ] + }, + { + "id": "fallhaven_bandit_2", + "message": "Nãs! Vacor não irá ganhar o poder do feitiço de elevação!", + "replies": [ + { + "text": "Vamos lutar!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "bandit1", + "message": "O que temos aqui? Um andarilho perdido?", + "replies": [ + { + "text": "N", + "nextPhraseID": "bandit1_2" + } + ] + }, + { + "id": "bandit1_2", + "message": "Quanto é a sua vida vale para você? Dê-me 100 moedas de ouro e eu vou deixar você ir.", + "replies": [ + { + "text": "Ok ok. Aqui está o ouro. Por favor, não me machuque!", + "nextPhraseID": "bandit1_3", + "requires": { + "item": { + "itemID": "gold", + "quantity": 100, + "requireType": 0 + } + } + }, + { + "text": "Que tal lutarmos por ela?", + "nextPhraseID": "bandit1_4" + }, + { + "text": "Quanto vale sua vida?", + "nextPhraseID": "bandit1_4" + } + ] + }, + { + "id": "bandit1_3", + "message": "Tempos difíceis. Você está livre para ir." + }, + { + "id": "bandit1_4", + "message": "Ok, então, será pela sua vida. Vamos lutar. Eu estava ansioso para uma boa luta!", + "replies": [ + { + "text": "Vamos lutar!", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/conversationlist_wrye.json b/AndorsTrail/res/raw-pt-rBR/conversationlist_wrye.json new file mode 100644 index 000000000..7c77d50a1 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/conversationlist_wrye.json @@ -0,0 +1,488 @@ +[ + { + "id": "wrye_select_1", + "replies": [ + { + "nextPhraseID": "wrye_return_2", + "requires": { + "progress": "wrye:90" + } + }, + { + "nextPhraseID": "wrye_return_1", + "requires": { + "progress": "wrye:40" + } + }, + { + "nextPhraseID": "wrye_mourn_1" + } + ] + }, + { + "id": "wrye_return_1", + "message": "Bem-vindo de volta. Você já descobriu alguma coisa sobre meu filho, Rincel?", + "replies": [ + { + "text": "Você pode me contar a história sobre o que aconteceu de novo?", + "nextPhraseID": "wrye_mourn_5" + }, + { + "text": "Não, eu não encontrei nada ainda.", + "nextPhraseID": "wrye_story_14" + }, + { + "text": "Sim, eu descobri a história sobre o que aconteceu com ele.", + "nextPhraseID": "wrye_resolved_1", + "requires": { + "progress": "wrye:80" + } + } + ] + }, + { + "id": "wrye_return_2", + "message": "Bem-vindo de volta. Obrigado por sua ajuda para descobrir o que aconteceu com o meu filho.", + "replies": [ + { + "text": "A Sombra esteja com você.", + "nextPhraseID": "wrye_story_15" + }, + { + "text": "Você é bem-vindo.", + "nextPhraseID": "wrye_story_15" + } + ] + }, + { + "id": "wrye_mourn_1", + "message": "Sombra me ajuda.", + "replies": [ + { + "text": "Qual é o problema?", + "nextPhraseID": "wrye_mourn_2" + } + ] + }, + { + "id": "wrye_mourn_2", + "message": "Meu filho! Meu filho está desaparecido.", + "replies": [ + { + "text": "Jolnor disse que eu deveria vê-la sobre o seu filho.", + "nextPhraseID": "wrye_mourn_5", + "requires": { + "progress": "wrye:10" + } + }, + { + "text": "O que tem ele?", + "nextPhraseID": "wrye_mourn_3" + } + ] + }, + { + "id": "wrye_mourn_3", + "message": "Eu não quero falar sobre isso. Não com um estrangeiro como você.", + "replies": [ + { + "text": "Estrangeiro?", + "nextPhraseID": "wrye_mourn_4" + }, + { + "text": "Jolnor disse que eu deveria vê-la sobre o seu filho.", + "nextPhraseID": "wrye_mourn_5", + "requires": { + "progress": "wrye:10" + } + } + ] + }, + { + "id": "wrye_mourn_4", + "message": "Por favor, deixe-me.\n\nOh, que a Sombra cuide de mim." + }, + { + "id": "wrye_mourn_5", + "message": "Meu filho está morto, eu sei! E é culpa dos malditos guardas. Esses guardas com sua atitude esnobe típica de Feygard.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_mourn_6" + } + ] + }, + { + "id": "wrye_mourn_6", + "message": "No início, eles vêm com promessas de proteção e poder. Mas então você realmente começar a vê-los como eles são.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_mourn_7" + } + ] + }, + { + "id": "wrye_mourn_7", + "message": "Eu posso sentir isso em mim. A Sombra fala comigo. Ele está morto.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "wrye", + "value": 20 + } + ], + "replies": [ + { + "text": "Você pode me dizer o que aconteceu?", + "nextPhraseID": "wrye_story_1" + }, + { + "text": "O que você está falando?", + "nextPhraseID": "wrye_story_1" + }, + { + "text": "A Sombra esteja com você.", + "nextPhraseID": "wrye_mourn_8" + } + ] + }, + { + "id": "wrye_mourn_8", + "message": "Obrigado. A Sombra cuida de mim.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_1" + } + ] + }, + { + "id": "wrye_story_1", + "message": "Tudo começou com a vinda dos guardas Feygard.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_2" + } + ] + }, + { + "id": "wrye_story_2", + "message": "Eles tentaram pressionar todos em Vilegard para recrutar mais soldados.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_3" + } + ] + }, + { + "id": "wrye_story_3", + "message": "Os guardas dizem que precisam de mais apoio para ajudar a esmagar o suporto levante e sabotagem.", + "replies": [ + { + "text": "Como é que isso se relaciona com o seu filho?", + "nextPhraseID": "wrye_story_4" + }, + { + "text": "Você poderia ir direto ao ponto?", + "nextPhraseID": "wrye_story_4" + } + ] + }, + { + "id": "wrye_story_4", + "message": "Meu filho, Rincel, não parece se importar muito com as histórias que eles lhe contavam.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_5" + } + ] + }, + { + "id": "wrye_story_5", + "message": "Eu também disse Rincel o quão ruim seria, em minha opinião, se alistar para a guarda real.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_6" + } + ] + }, + { + "id": "wrye_story_6", + "message": "Os guardas ficaram dois dias a conversar com todo mundo aqui em Vilegard. Então eles deixaram. Eles foram para a cidade mais próxima, eu acho.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_7" + } + ] + }, + { + "id": "wrye_story_7", + "message": "Alguns dias se passaram, e de repente meu menino Rincel foi embora. Estou certo de aqueles guardas conseguiram convencê-lo de alguma forma, para juntar-se a eles.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_8" + } + ] + }, + { + "id": "wrye_story_8", + "message": "Ah como eu desprezo esses bastardos maldosos e esnobes de Feygard.", + "replies": [ + { + "text": "E agora?", + "nextPhraseID": "wrye_story_9" + } + ] + }, + { + "id": "wrye_story_9", + "message": "Isso se deu há várias semanas. Agora sinto um vazio por dentro. Eu sei, em meu interior, que alguma coisa aconteceu com meu filho Rincel.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_10" + } + ] + }, + { + "id": "wrye_story_10", + "message": "Temo que ele tenha morrido ou se ferido de alguma forma. Esses bastardos provavelmente conduziram-no para a sua própria morte.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "wrye", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_11" + } + ] + }, + { + "id": "wrye_story_11", + "message": "*soluço* A Sombra me ajude.", + "replies": [ + { + "text": "O que posso fazer para ajudar?", + "nextPhraseID": "wrye_story_13" + }, + { + "text": "Isso soa horrível. Tenho certeza de que você está imaginando coisas.", + "nextPhraseID": "wrye_story_13" + }, + { + "text": "Você tem prova de que as pessoas de Feygard estão envolvidas?", + "nextPhraseID": "wrye_story_12" + } + ] + }, + { + "id": "wrye_story_12", + "message": "Não, mas algo me diz que eles são os responsáveis. A Sombra fala comigo.", + "replies": [ + { + "text": "OK. Existe algo que eu possa fazer para ajudar?", + "nextPhraseID": "wrye_story_13" + }, + { + "text": "Você parece um pouco demasiado ocupada com a Sombra. Eu não quero participar disso.", + "nextPhraseID": "wrye_mourn_4" + }, + { + "text": "Eu provavelmente não deveria se envolver com isso, se isso significa que eu poderia perturbar o guarda real.", + "nextPhraseID": "wrye_mourn_4" + } + ] + }, + { + "id": "wrye_story_13", + "message": "Se você quer me ajudar, por favor, descobra o que aconteceu com o meu filho, Rincel.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "wrye", + "value": 40 + } + ], + "replies": [ + { + "text": "Alguma ideia de onde eu deveria olhar?", + "nextPhraseID": "wrye_story_16" + }, + { + "text": "OK. Eu vou procurar o seu filho. Espero que haja alguma recompensa por isso.", + "nextPhraseID": "wrye_story_14" + }, + { + "text": "Pela sombra, o seu filho vai ser vingado.", + "nextPhraseID": "wrye_story_14" + } + ] + }, + { + "id": "wrye_story_14", + "message": "Por favor, volte aqui, logo que você descobrir algo.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_15" + } + ] + }, + { + "id": "wrye_story_15", + "message": "Caminhe com a Sombra." + }, + { + "id": "wrye_story_16", + "message": "Eu acho que você poderia perguntar na taberna aqui em Vilegard, ou a taberna Foaming Flask, ao norte daqui.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "wrye", + "value": 41 + } + ], + "replies": [ + { + "text": "Pela sombra, o seu filho vai ser vingado.", + "nextPhraseID": "wrye_story_14" + }, + { + "text": "OK. Eu vou procurar o seu filho. Espero que haja alguma recompensa por isso.", + "nextPhraseID": "wrye_story_14" + }, + { + "text": "OK. Eu vou procurar o seu filho, de modo que você poderá saber o que aconteceu com ele.", + "nextPhraseID": "wrye_story_14" + } + ] + }, + { + "id": "wrye_resolved_1", + "message": "Por favor, diga-me o que aconteceu com ele!", + "replies": [ + { + "text": "Ele deixou Vilegard por sua própria vontade, porque ele queria ver a grande cidade de Feygard.", + "nextPhraseID": "wrye_resolved_2" + } + ] + }, + { + "id": "wrye_resolved_2", + "message": "Eu não acredito nisso.", + "replies": [ + { + "text": "Ele secretamente desejava ir para Feygard, mas não se atreveu a dizer.", + "nextPhraseID": "wrye_resolved_3" + } + ] + }, + { + "id": "wrye_resolved_3", + "message": "Realmente?", + "replies": [ + { + "text": "Mas ele nunca chegou longe. Ele foi atacado enquanto estava acampando de noite.", + "nextPhraseID": "wrye_resolved_4" + } + ] + }, + { + "id": "wrye_resolved_4", + "message": "Atacado?", + "replies": [ + { + "text": "Sim, ele não conseguiu enfrentar sozinho os monstros, e ficou gravemente ferido.", + "nextPhraseID": "wrye_resolved_5" + } + ] + }, + { + "id": "wrye_resolved_5", + "message": "Meu filho querido.", + "replies": [ + { + "text": "Eu conversei com um homem que o encontrou sangrando até a morte.", + "nextPhraseID": "wrye_resolved_6" + } + ] + }, + { + "id": "wrye_resolved_6", + "message": "Ele ainda estava vivo?", + "replies": [ + { + "text": "Sim, mas não por muito tempo. Ele não sobreviveu aos ferimentos. Ele agora está enterrado até o noroeste de Vilegard.", + "nextPhraseID": "wrye_resolved_7" + } + ] + }, + { + "id": "wrye_resolved_7", + "message": "Ah, meu pobre rapaz. O que eu fiz?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "wrye", + "value": 90 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_resolved_8" + } + ] + }, + { + "id": "wrye_resolved_8", + "message": "Sempre achei que ele compartilhava do meu ponto de vista com relação a esses esnobes Feygard.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_resolved_9" + } + ] + }, + { + "id": "wrye_resolved_9", + "message": "E agora ele não está mais entre nós.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_resolved_10" + } + ] + }, + { + "id": "wrye_resolved_10", + "message": "Obrigado, amigo, para descobrir o que aconteceu com ele e me dizendo a verdade.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_resolved_11" + } + ] + }, + { + "id": "wrye_resolved_11", + "message": "Ah, meu pobre rapaz.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_mourn_4" + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/itemlist_animal.json b/AndorsTrail/res/raw-pt-rBR/itemlist_animal.json new file mode 100644 index 000000000..b0ca317a4 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/itemlist_animal.json @@ -0,0 +1,58 @@ +[ + { + "id": "hair", + "iconID": "items_misc:48", + "name": "Pelo animal", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "insectwing", + "iconID": "items_misc:52", + "name": "Asa de inseto", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 3 + }, + { + "id": "bone", + "iconID": "items_misc:44", + "name": "Osso", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "claws", + "iconID": "items_misc:47", + "name": "Garras", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "shell", + "iconID": "items_misc:54", + "name": "Casca de inseto", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "gland", + "iconID": "actorconditions_1:60", + "name": "Glândula de veneno", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 15 + }, + { + "id": "rat_tail", + "iconID": "items_misc:38", + "name": "Rabo de ratazana", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 2 + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/itemlist_armour.json b/AndorsTrail/res/raw-pt-rBR/itemlist_armour.json new file mode 100644 index 000000000..b3e5b0c32 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/itemlist_armour.json @@ -0,0 +1,260 @@ +[ + { + "id": "shirt1", + "iconID": "items_armours:14", + "name": "Blusa de algodão", + "category": "bdy_clth", + "baseMarketCost": 16, + "equipEffect": { + "increaseBlockChance": 2 + } + }, + { + "id": "shirt2", + "iconID": "items_armours:14", + "name": "Blusa boa", + "category": "bdy_clth", + "baseMarketCost": 72, + "equipEffect": { + "increaseBlockChance": 5 + } + }, + { + "id": "shirt_dmgresist", + "iconID": "items_armours:15", + "name": "Blusa de couro reforçada", + "category": "bdy_lthr", + "displaytype": 4, + "baseMarketCost": 1633, + "equipEffect": { + "increaseBlockChance": 5, + "increaseDamageResistance": 1 + } + }, + { + "id": "armor1", + "iconID": "items_armours:15", + "name": "Armadura de couro", + "category": "bdy_lthr", + "baseMarketCost": 464, + "equipEffect": { + "increaseBlockChance": 8 + } + }, + { + "id": "armor2", + "iconID": "items_armours:15", + "name": "Armadura superior de couro", + "category": "bdy_lthr", + "baseMarketCost": 624, + "equipEffect": { + "increaseBlockChance": 9 + } + }, + { + "id": "armor3", + "iconID": "items_armours:16", + "name": "Armadura reforçada de couro", + "category": "bdy_lthr", + "baseMarketCost": 2407, + "equipEffect": { + "increaseBlockChance": 13 + } + }, + { + "id": "armor4", + "iconID": "items_armours:16", + "name": "Armadura superior reforçada de couro", + "category": "bdy_lthr", + "baseMarketCost": 3866, + "equipEffect": { + "increaseBlockChance": 15 + } + }, + { + "id": "hat1", + "iconID": "items_armours:21", + "name": "Chapéu verde", + "category": "hd_cloth", + "baseMarketCost": 13, + "equipEffect": { + "increaseBlockChance": 1 + } + }, + { + "id": "hat2", + "iconID": "items_armours:21", + "name": "Chapéu bom verde", + "category": "hd_cloth", + "baseMarketCost": 25, + "equipEffect": { + "increaseBlockChance": 2 + } + }, + { + "id": "hat3", + "iconID": "items_armours:24", + "name": "Capuz de couro crú", + "category": "hd_lthr", + "baseMarketCost": 72, + "equipEffect": { + "increaseBlockChance": 5 + } + }, + { + "id": "hat4", + "iconID": "items_armours:24", + "name": "Capuz de couro", + "category": "hd_lthr", + "baseMarketCost": 146, + "equipEffect": { + "increaseBlockChance": 6 + } + }, + { + "id": "gloves1", + "iconID": "items_armours:35", + "name": "Luvas de couro", + "category": "hnd_lthr", + "baseMarketCost": 23, + "equipEffect": { + "increaseBlockChance": 3 + } + }, + { + "id": "gloves2", + "iconID": "items_armours:35", + "name": "Luvas boas de couro", + "category": "hnd_lthr", + "baseMarketCost": 38, + "equipEffect": { + "increaseBlockChance": 4 + } + }, + { + "id": "gloves3", + "iconID": "items_armours:36", + "name": "Luvas de pele de cobra", + "category": "hnd_cloth", + "baseMarketCost": 72, + "equipEffect": { + "increaseBlockChance": 5 + } + }, + { + "id": "gloves4", + "iconID": "items_armours:36", + "name": "Luvas boas de pele de cobra", + "category": "hnd_cloth", + "baseMarketCost": 146, + "equipEffect": { + "increaseBlockChance": 6 + } + }, + { + "id": "shield1", + "iconID": "items_armours:0", + "name": "Broquel de madeira", + "category": "buckler", + "baseMarketCost": 72, + "equipEffect": { + "increaseAttackChance": -2, + "increaseBlockChance": 5 + } + }, + { + "id": "shield3", + "iconID": "items_armours:1", + "name": "Broquel de madeira reforçado", + "category": "buckler", + "baseMarketCost": 226, + "equipEffect": { + "increaseAttackChance": -5, + "increaseBlockChance": 7 + } + }, + { + "id": "shield4", + "iconID": "items_armours:2", + "name": "Escudo de madeira crua", + "category": "shld_wd_li", + "baseMarketCost": 464, + "equipEffect": { + "increaseAttackChance": -5, + "increaseBlockChance": 8 + } + }, + { + "id": "shield5", + "iconID": "items_armours:2", + "name": "Escudo de madeira superior", + "category": "shld_wd_li", + "baseMarketCost": 624, + "equipEffect": { + "increaseAttackChance": -4, + "increaseBlockChance": 9 + } + }, + { + "id": "boots1", + "iconID": "items_armours:28", + "name": "Botas de couro", + "category": "feet_lthr", + "baseMarketCost": 23, + "equipEffect": { + "increaseBlockChance": 3 + } + }, + { + "id": "boots2", + "iconID": "items_armours:28", + "name": "Botas de couro superiores", + "category": "feet_lthr", + "baseMarketCost": 38, + "equipEffect": { + "increaseBlockChance": 4 + } + }, + { + "id": "boots3", + "iconID": "items_armours:29", + "name": "Botas de pele de cobra", + "category": "feet_lthr", + "baseMarketCost": 146, + "equipEffect": { + "increaseBlockChance": 6 + } + }, + { + "id": "boots5", + "iconID": "items_armours:30", + "name": "Botas reforçadas", + "category": "feet_mtl_hv", + "baseMarketCost": 226, + "equipEffect": { + "increaseBlockChance": 7 + } + }, + { + "id": "gloves_attack1", + "iconID": "items_armours:35", + "name": "Luvas de ataque rápido", + "category": "hnd_lthr", + "baseMarketCost": 150, + "equipEffect": { + "increaseAttackChance": 15, + "increaseBlockChance": -9 + } + }, + { + "id": "gloves_attack2", + "iconID": "items_armours:35", + "name": "Luvas boas de ataque rápido", + "category": "hnd_lthr", + "baseMarketCost": 221, + "equipEffect": { + "increaseAttackChance": 17, + "increaseBlockChance": -9 + } + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/itemlist_food.json b/AndorsTrail/res/raw-pt-rBR/itemlist_food.json new file mode 100644 index 000000000..f7d42ffa7 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/itemlist_food.json @@ -0,0 +1,206 @@ +[ + { + "id": "apple_green", + "iconID": "items_consumables:2", + "name": "Maçã Verde", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 14, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 8, + "chance": 100 + } + ] + } + }, + { + "id": "apple_red", + "iconID": "items_consumables:3", + "name": "Maçã", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 22, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 12, + "chance": 100 + } + ] + } + }, + { + "id": "meat", + "iconID": "items_consumables:25", + "name": "Carne", + "category": "animal_e", + "hasManualPrice": 1, + "baseMarketCost": 29, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 2, + "duration": 12, + "chance": 100 + }, + { + "condition": "foodp", + "magnitude": 3, + "duration": 10, + "chance": 10 + } + ] + } + }, + { + "id": "meat_cooked", + "iconID": "items_consumables:27", + "name": "Carne cozida", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 78, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 3, + "duration": 11, + "chance": 100 + } + ] + } + }, + { + "id": "strawberry", + "iconID": "items_consumables:8", + "name": "Morango", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 3, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 2, + "chance": 100 + } + ] + } + }, + { + "id": "carrot", + "iconID": "items_consumables:15", + "name": "Cenoura", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 14, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 8, + "chance": 100 + } + ] + } + }, + { + "id": "bread", + "iconID": "items_consumables:21", + "name": "Pão", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 6, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 10, + "chance": 100 + } + ] + } + }, + { + "id": "mushroom", + "iconID": "items_consumables:19", + "name": "Cogumeno", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 3, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 2, + "chance": 100 + } + ] + } + }, + { + "id": "pear", + "iconID": "items_consumables:9", + "name": "Peira", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 14, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 8, + "chance": 100 + } + ] + } + }, + { + "id": "eggs", + "iconID": "items_consumables:20", + "name": "Ovos", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 10, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 6, + "chance": 100 + } + ] + } + }, + { + "id": "radish", + "iconID": "items_consumables:14", + "name": "Rabanete", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 6, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 4, + "chance": 100 + } + ] + } + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/itemlist_junk.json b/AndorsTrail/res/raw-pt-rBR/itemlist_junk.json new file mode 100644 index 000000000..2dc682940 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/itemlist_junk.json @@ -0,0 +1,50 @@ +[ + { + "id": "rock", + "iconID": "items_misc:28", + "name": "Pedra pequena", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 1 + }, + { + "id": "gem1", + "iconID": "items_misc:0", + "name": "Gema de vidro", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "gem2", + "iconID": "items_misc:1", + "name": "Gema de rubi", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 6 + }, + { + "id": "gem3", + "iconID": "items_misc:2", + "name": "Gema polida", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 8 + }, + { + "id": "gem4", + "iconID": "items_misc:3", + "name": "Gema lapidada", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 13 + }, + { + "id": "gem5", + "iconID": "items_misc:5", + "name": "Brilhante polido", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 15 + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/itemlist_money.json b/AndorsTrail/res/raw-pt-rBR/itemlist_money.json new file mode 100644 index 000000000..a277b772c --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/itemlist_money.json @@ -0,0 +1,10 @@ +[ + { + "id": "gold", + "iconID": "items_misc:10", + "name": "Moedas de ouro", + "category": "money", + "hasManualPrice": 1, + "baseMarketCost": 1 + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/itemlist_necklaces.json b/AndorsTrail/res/raw-pt-rBR/itemlist_necklaces.json new file mode 100644 index 000000000..713b75913 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/itemlist_necklaces.json @@ -0,0 +1,35 @@ +[ + { + "id": "jewel_fallhaven", + "iconID": "items_jewelry:6", + "name": "Jóia de Fallhaven", + "category": "neck", + "displaytype": 4, + "baseMarketCost": 3125, + "equipEffect": { + "increaseAttackCost": -1 + } + }, + { + "id": "necklace_shield1", + "iconID": "items_jewelry:7", + "name": "Colar do guardião", + "category": "neck", + "displaytype": 4, + "baseMarketCost": 935, + "equipEffect": { + "increaseBlockChance": 9 + } + }, + { + "id": "necklace_shield2", + "iconID": "items_jewelry:7", + "name": "Colar de blindagem", + "category": "neck", + "displaytype": 4, + "baseMarketCost": 1255, + "equipEffect": { + "increaseBlockChance": 12 + } + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/itemlist_potions.json b/AndorsTrail/res/raw-pt-rBR/itemlist_potions.json new file mode 100644 index 000000000..75a2d9a48 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/itemlist_potions.json @@ -0,0 +1,141 @@ +[ + { + "id": "vial_empty1", + "iconID": "items_consumables:56", + "name": "Frasco vazio pequeno", + "category": "flask", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "vial_empty2", + "iconID": "items_consumables:57", + "name": "Frasco vazio", + "category": "flask", + "hasManualPrice": 1, + "baseMarketCost": 4 + }, + { + "id": "vial_empty3", + "iconID": "items_consumables:59", + "name": "Odre vazio", + "category": "flask", + "hasManualPrice": 1, + "baseMarketCost": 6 + }, + { + "id": "vial_empty4", + "iconID": "items_consumables:58", + "name": "Garrafa de porção vazia", + "category": "flask", + "hasManualPrice": 1, + "baseMarketCost": 11 + }, + { + "id": "health_minor", + "iconID": "items_consumables:35", + "name": "Frasco pequeno de cura", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 5, + "useEffect": { + "increaseCurrentHP": { + "min": 5, + "max": 5 + } + } + }, + { + "id": "health_minor2", + "iconID": "items_consumables:35", + "name": "Porção pequena de cura", + "category": "pot", + "baseMarketCost": 18, + "useEffect": { + "increaseCurrentHP": { + "min": 5, + "max": 5 + } + } + }, + { + "id": "health", + "iconID": "items_consumables:49", + "name": "Porção regular de cura", + "category": "pot", + "baseMarketCost": 40, + "useEffect": { + "increaseCurrentHP": { + "min": 10, + "max": 10 + } + } + }, + { + "id": "health_major", + "iconID": "items_consumables:28", + "name": "Frasco maior de cura", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 210, + "useEffect": { + "increaseCurrentHP": { + "min": 40, + "max": 40 + } + } + }, + { + "id": "health_major2", + "iconID": "items_consumables:28", + "name": "Porção maior de cura", + "category": "pot", + "baseMarketCost": 280, + "useEffect": { + "increaseCurrentHP": { + "min": 40, + "max": 40 + } + } + }, + { + "id": "mead", + "iconID": "items_consumables:51", + "name": "Hidromel", + "category": "drink", + "baseMarketCost": 15, + "useEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "milk", + "iconID": "items_consumables:55", + "name": "Leite", + "category": "drink", + "baseMarketCost": 21, + "useEffect": { + "increaseCurrentHP": { + "min": 2, + "max": 2 + } + } + }, + { + "id": "bonemeal_potion", + "iconID": "items_consumables:34", + "name": "Porção de farinha óssea", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 45, + "useEffect": { + "increaseCurrentHP": { + "min": 40, + "max": 40 + } + } + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/itemlist_pre0610_unused.json b/AndorsTrail/res/raw-pt-rBR/itemlist_pre0610_unused.json new file mode 100644 index 000000000..89799a896 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/itemlist_pre0610_unused.json @@ -0,0 +1,58 @@ +[ + { + "id": "eye", + "iconID": "items_misc:45", + "name": "Olho", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 6 + }, + { + "id": "bat_wing", + "iconID": "items_misc:46", + "name": "Asa de morcego", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "feather", + "iconID": "items_misc:16", + "name": "Pena", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 6 + }, + { + "id": "red_feather", + "iconID": "items_misc:15", + "name": "Pena vermelha", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 11 + }, + { + "id": "clay", + "iconID": "actorconditions_1:9", + "name": "Punhado de argila", + "category": "other", + "hasManualPrice": 1, + "baseMarketCost": 1 + }, + { + "id": "gem6", + "iconID": "items_misc:4", + "name": "Gema cintilante", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 26 + }, + { + "id": "gem8", + "iconID": "actorconditions_1:50", + "name": "Gema brilhante", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 68 + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/itemlist_quest.json b/AndorsTrail/res/raw-pt-rBR/itemlist_quest.json new file mode 100644 index 000000000..480e07c37 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/itemlist_quest.json @@ -0,0 +1,188 @@ +[ + { + "id": "tail_caverat", + "iconID": "items_misc:38", + "name": "Rabo de ratazana das cavernas", + "category": "animal", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "tail_trainingrat", + "iconID": "items_misc:38", + "name": "Rabo de ratazana pequena", + "category": "animal", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "ring_mikhail", + "iconID": "items_jewelry:0", + "name": "Anel do Mikhail", + "category": "ring", + "baseMarketCost": 15, + "equipEffect": { + "increaseAttackChance": 10 + } + }, + { + "id": "neck_irogotu", + "iconID": "items_jewelry:7", + "name": "Colar do Irogotu", + "category": "neck", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 30, + "equipEffect": { + "increaseBlockChance": 5, + "increaseDamageResistance": 1 + } + }, + { + "id": "ring_gandir", + "iconID": "items_jewelry:0", + "name": "Anel do Gandir", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "dagger_venom", + "iconID": "items_weapons:17", + "name": "Adaga envenenada", + "category": "dagger", + "displaytype": 3, + "baseMarketCost": 15, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 10, + "increaseCriticalSkill": 5, + "setCriticalMultiplier": 2, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "key_luthor", + "iconID": "items_misc:21", + "name": "Chave do Luthor", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "calomyran_secrets", + "iconID": "items_books:0", + "name": "Segredos de Calomyran", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "heartstone", + "iconID": "items_misc:6", + "name": "Pedra do Coração", + "category": "gem", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "vacor_spell", + "iconID": "items_books:7", + "name": "Pedaço do feitiço de Vacor", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "ring_unzel", + "iconID": "items_jewelry:0", + "name": "Anel de Unzel", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "ring_vacor", + "iconID": "items_jewelry:0", + "name": "Anel de Vacor", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "boots_unzel", + "iconID": "items_armours:29", + "name": "botas defensivas de Unzel", + "category": "feet_lthr", + "displaytype": 3, + "baseMarketCost": 185, + "equipEffect": { + "increaseBlockChance": 8 + } + }, + { + "id": "boots_vacor", + "iconID": "items_armours:29", + "name": "botas de ataque de Vacor", + "category": "feet_lthr", + "displaytype": 3, + "baseMarketCost": 185, + "equipEffect": { + "increaseAttackChance": 9, + "increaseBlockChance": 2 + } + }, + { + "id": "necklace_flagstone", + "iconID": "items_jewelry:6", + "name": "Colar do diretor de Flagstone", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "packhide", + "iconID": "items_armours:15", + "name": "Veste de disfarçe de lobo", + "category": "bdy_hide", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 121, + "equipEffect": { + "increaseAttackChance": -15, + "increaseBlockChance": 2, + "increaseDamageResistance": 1 + } + }, + { + "id": "sword_flagstone", + "iconID": "items_weapons:7", + "name": "Orgulho de Flagstone", + "category": "lsword", + "displaytype": 3, + "baseMarketCost": 169, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 21, + "increaseCriticalSkill": 10, + "setCriticalMultiplier": 2, + "increaseAttackDamage": { + "min": 1, + "max": 6 + } + } + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/itemlist_rings.json b/AndorsTrail/res/raw-pt-rBR/itemlist_rings.json new file mode 100644 index 000000000..a0aa90e9c --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/itemlist_rings.json @@ -0,0 +1,124 @@ +[ + { + "id": "ring_dmg1", + "iconID": "items_jewelry:0", + "name": "Anel de dano +1", + "category": "ring", + "baseMarketCost": 215, + "equipEffect": { + "increaseAttackDamage": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "ring_dmg2", + "iconID": "items_jewelry:1", + "name": "Anel de dano +2", + "category": "ring", + "baseMarketCost": 398, + "equipEffect": { + "increaseAttackDamage": { + "min": 2, + "max": 2 + } + } + }, + { + "id": "ring_dmg5", + "iconID": "items_jewelry:2", + "name": "Anel de dano +5", + "category": "ring", + "displaytype": 4, + "baseMarketCost": 2014, + "equipEffect": { + "increaseAttackDamage": { + "min": 5, + "max": 5 + } + } + }, + { + "id": "ring_dmg6", + "iconID": "items_jewelry:3", + "name": "Anel de dano +6", + "category": "ring", + "displaytype": 4, + "baseMarketCost": 3186, + "equipEffect": { + "increaseAttackDamage": { + "min": 6, + "max": 6 + } + } + }, + { + "id": "ring_block1", + "iconID": "items_jewelry:0", + "name": "Anel de bloqueio leve", + "category": "ring", + "displaytype": 4, + "baseMarketCost": 1239, + "equipEffect": { + "increaseBlockChance": 10 + } + }, + { + "id": "ring_block2", + "iconID": "items_jewelry:0", + "name": "Anel de bloqueio polido", + "category": "ring", + "displaytype": 4, + "baseMarketCost": 3866, + "equipEffect": { + "increaseBlockChance": 15 + } + }, + { + "id": "ring_atkch1", + "iconID": "items_jewelry:0", + "name": "Anel do golpe certeiro", + "category": "ring", + "baseMarketCost": 215, + "equipEffect": { + "increaseAttackChance": 15 + } + }, + { + "id": "ring1", + "iconID": "items_jewelry:0", + "name": "Anel mundano", + "category": "ring", + "hasManualPrice": 1, + "baseMarketCost": 13, + "equipEffect": { + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "ring2", + "iconID": "items_jewelry:0", + "name": "Anel polido", + "category": "ring", + "hasManualPrice": 1, + "baseMarketCost": 21, + "equipEffect": { + "increaseBlockChance": 1 + } + }, + { + "id": "ring_jinxed1", + "iconID": "items_jewelry:2", + "name": "Anel de resistência a dano amaldiçoado", + "category": "ring", + "baseMarketCost": 229, + "equipEffect": { + "increaseBlockChance": -9, + "increaseDamageResistance": 1 + } + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/itemlist_v0610_1.json b/AndorsTrail/res/raw-pt-rBR/itemlist_v0610_1.json new file mode 100644 index 000000000..4c8fd4b47 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/itemlist_v0610_1.json @@ -0,0 +1,1021 @@ +[ + { + "id": "dagger_shadow_priests", + "iconID": "items_weapons:17", + "name": "Adaga dos sacerdotes da Sombra", + "category": "dagger", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 15, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 20, + "increaseCriticalSkill": 20, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "sword_hard_iron", + "iconID": "items_weapons:0", + "name": "Espada reforçada de ferro", + "category": "lsword", + "hasManualPrice": 0, + "baseMarketCost": 369, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 15, + "increaseAttackDamage": { + "min": 2, + "max": 4 + } + } + }, + { + "id": "club_fine_wooden", + "iconID": "items_weapons:42", + "name": "Clava boa de madeira", + "category": "club", + "hasManualPrice": 0, + "baseMarketCost": 245, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 12, + "increaseAttackDamage": { + "min": 0, + "max": 7 + } + } + }, + { + "id": "axe_fine_iron", + "iconID": "items_weapons:56", + "name": "Machado bom de ferro", + "category": "axe", + "hasManualPrice": 0, + "baseMarketCost": 365, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 9, + "increaseAttackDamage": { + "min": 4, + "max": 6 + } + } + }, + { + "id": "longsword_hard_iron", + "iconID": "items_weapons:1", + "name": "Espada comprida reforçada de ferro", + "category": "lsword", + "hasManualPrice": 0, + "baseMarketCost": 362, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 14, + "increaseAttackDamage": { + "min": 2, + "max": 6 + } + } + }, + { + "id": "broadsword_fine_iron", + "iconID": "items_weapons:5", + "name": "Espada larga de ferro boa", + "category": "bsword", + "hasManualPrice": 0, + "baseMarketCost": 422, + "equipEffect": { + "increaseAttackCost": 7, + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 4, + "max": 10 + } + } + }, + { + "id": "dagger_sharp_steel", + "iconID": "items_weapons:14", + "name": "Adaga afiada de aço", + "category": "dagger", + "hasManualPrice": 0, + "baseMarketCost": 1428, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 24, + "increaseAttackDamage": { + "min": 2, + "max": 4 + } + } + }, + { + "id": "sword_balanced_steel", + "iconID": "items_weapons:7", + "name": "Espada balanceada de ferro", + "category": "lsword", + "hasManualPrice": 0, + "baseMarketCost": 2797, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 32, + "increaseAttackDamage": { + "min": 3, + "max": 7 + } + } + }, + { + "id": "broadsword_fine_steel", + "iconID": "items_weapons:6", + "name": "Espada comprida de ferro boa", + "category": "bsword", + "hasManualPrice": 0, + "baseMarketCost": 1206, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 20, + "increaseAttackDamage": { + "min": 4, + "max": 11 + } + } + }, + { + "id": "sword_defenders", + "iconID": "items_weapons:2", + "name": "Lâmina do Defensor", + "category": "lsword", + "hasManualPrice": 0, + "baseMarketCost": 1711, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 26, + "increaseAttackDamage": { + "min": 3, + "max": 7 + }, + "increaseBlockChance": 3 + } + }, + { + "id": "sword_villains", + "iconID": "items_weapons:16", + "name": "Lâmina do Vilão", + "category": "ssword", + "hasManualPrice": 0, + "baseMarketCost": 1665, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 20, + "increaseCriticalSkill": 5, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "sword_challengers", + "iconID": "items_weapons:1", + "name": "Espada de ferro do desafiante", + "category": "lsword", + "hasManualPrice": 0, + "baseMarketCost": 785, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 20, + "increaseAttackDamage": { + "min": 2, + "max": 6 + } + } + }, + { + "id": "sword_fencing", + "iconID": "items_weapons:13", + "name": "Lâmina de Esgrima", + "category": "rapier", + "hasManualPrice": 0, + "baseMarketCost": 922, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 14, + "increaseAttackDamage": { + "min": 2, + "max": 5 + }, + "increaseBlockChance": 5 + } + }, + { + "id": "club_brutal", + "iconID": "items_weapons:44", + "name": "Maça", + "category": "mace", + "hasManualPrice": 0, + "baseMarketCost": 2522, + "equipEffect": { + "increaseAttackCost": 7, + "increaseAttackChance": 20, + "increaseCriticalSkill": 5, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 2, + "max": 21 + } + } + }, + { + "id": "axe_gutsplitter", + "iconID": "items_weapons:58", + "name": "Separador de Intestino", + "category": "axe2h", + "hasManualPrice": 0, + "baseMarketCost": 2733, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 21, + "increaseAttackDamage": { + "min": 7, + "max": 17 + } + } + }, + { + "id": "hammer_skullcrusher", + "iconID": "items_weapons:45", + "name": "Triturador de Crânios", + "category": "hammer2h", + "hasManualPrice": 0, + "baseMarketCost": 3142, + "equipEffect": { + "increaseAttackCost": 7, + "increaseAttackChance": 20, + "increaseCriticalSkill": 5, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 0, + "max": 26 + } + } + }, + { + "id": "shield_crude_wooden", + "iconID": "items_armours:0", + "name": "Broquel de madeira crua", + "category": "buckler", + "hasManualPrice": 0, + "baseMarketCost": 31, + "equipEffect": { + "increaseBlockChance": 1 + } + }, + { + "id": "shield_cracked_wooden", + "iconID": "items_armours:0", + "name": "Broquel de madeira rachado", + "category": "buckler", + "hasManualPrice": 0, + "baseMarketCost": 34, + "equipEffect": { + "increaseAttackChance": -2, + "increaseBlockChance": 2 + } + }, + { + "id": "shield_wooden_buckler", + "iconID": "items_armours:0", + "name": "Broquel de madeira de segunda mão", + "category": "buckler", + "hasManualPrice": 0, + "baseMarketCost": 92, + "equipEffect": { + "increaseAttackChance": -2, + "increaseBlockChance": 3 + } + }, + { + "id": "shield_wooden", + "iconID": "items_armours:2", + "name": "Escudo de madeira", + "category": "shld_wd_li", + "hasManualPrice": 0, + "baseMarketCost": 514, + "equipEffect": { + "increaseAttackChance": -4, + "increaseBlockChance": 8 + } + }, + { + "id": "shield_wooden_defender", + "iconID": "items_armours:2", + "name": "Defensor de madeira", + "category": "shld_wd_li", + "hasManualPrice": 0, + "baseMarketCost": 1996, + "equipEffect": { + "increaseAttackChance": -8, + "increaseCriticalSkill": -5, + "increaseBlockChance": 14, + "increaseDamageResistance": 1 + } + }, + { + "id": "hat_hard_leather", + "iconID": "items_armours:24", + "name": "Capuz de couro reforçado", + "category": "hd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 648, + "equipEffect": { + "increaseAttackChance": -3, + "increaseCriticalSkill": -1, + "increaseBlockChance": 8 + } + }, + { + "id": "hat_fine_leather", + "iconID": "items_armours:24", + "name": "Capuz de couro bom", + "category": "hd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 846, + "equipEffect": { + "increaseAttackChance": -3, + "increaseCriticalSkill": -2, + "increaseBlockChance": 9 + } + }, + { + "id": "hat_leather_vision", + "iconID": "items_armours:24", + "name": "Capuz de couro com visão reduzida", + "category": "hd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 971, + "equipEffect": { + "increaseAttackChance": -3, + "increaseCriticalSkill": -4, + "increaseBlockChance": 10 + } + }, + { + "id": "helm_crude_iron", + "iconID": "items_armours:25", + "name": "Elmo de ferro crú", + "category": "hd_mtl_hv", + "hasManualPrice": 0, + "baseMarketCost": 1120, + "equipEffect": { + "increaseAttackChance": -3, + "increaseCriticalSkill": -5, + "increaseBlockChance": 11 + } + }, + { + "id": "shirt_torn", + "iconID": "items_armours:14", + "name": "Camisa Rasgada", + "category": "bdy_clth", + "hasManualPrice": 0, + "baseMarketCost": 92, + "equipEffect": { + "increaseAttackChance": -2, + "increaseBlockChance": 3 + } + }, + { + "id": "shirt_weathered", + "iconID": "items_armours:14", + "name": "Camisa desbotada", + "category": "bdy_clth", + "hasManualPrice": 0, + "baseMarketCost": 125, + "equipEffect": { + "increaseAttackChance": -1, + "increaseBlockChance": 3 + } + }, + { + "id": "shirt_patched_cloth", + "iconID": "items_armours:14", + "name": "Camisa remendada", + "category": "bdy_clth", + "hasManualPrice": 0, + "baseMarketCost": 208, + "equipEffect": { + "increaseBlockChance": 4 + } + }, + { + "id": "armour_crude_leather", + "iconID": "items_armours:16", + "name": "Armadura de couro crú", + "category": "bdy_lthr", + "hasManualPrice": 0, + "baseMarketCost": 514, + "equipEffect": { + "increaseAttackChance": -4, + "increaseBlockChance": 8 + } + }, + { + "id": "armour_firm_leather", + "iconID": "items_armours:16", + "name": "Armadura firme de couro", + "category": "bdy_lthr", + "hasManualPrice": 0, + "baseMarketCost": 417, + "equipEffect": { + "increaseMoveCost": 1, + "increaseBlockChance": 8 + } + }, + { + "id": "armour_rigid_leather", + "iconID": "items_armours:16", + "name": "Armadura rígida de couro", + "category": "bdy_lthr", + "hasManualPrice": 0, + "baseMarketCost": 625, + "equipEffect": { + "increaseMoveCost": 1, + "increaseAttackChance": -1, + "increaseBlockChance": 9 + } + }, + { + "id": "armour_rigid_chain", + "iconID": "items_armours:17", + "name": "Cota de malha rígida", + "category": "chmail", + "hasManualPrice": 0, + "baseMarketCost": 4667, + "equipEffect": { + "increaseAttackCost": 1, + "increaseAttackChance": -5, + "increaseBlockChance": 23 + } + }, + { + "id": "armour_superior_chain", + "iconID": "items_armours:17", + "name": "Cota de malha superior", + "category": "chmail", + "hasManualPrice": 0, + "baseMarketCost": 5992, + "equipEffect": { + "increaseAttackChance": -9, + "increaseBlockChance": 23 + } + }, + { + "id": "armour_chain_champ", + "iconID": "items_armours:17", + "name": "Cota de malha do campeão", + "category": "chmail", + "hasManualPrice": 0, + "baseMarketCost": 6808, + "equipEffect": { + "increaseMaxHP": 2, + "increaseAttackChance": -9, + "increaseCriticalSkill": -5, + "increaseBlockChance": 24 + } + }, + { + "id": "armour_leather_villain", + "iconID": "items_armours:16", + "name": "armadura de couro do vilão", + "category": "bdy_lthr", + "hasManualPrice": 0, + "baseMarketCost": 3700, + "equipEffect": { + "increaseMoveCost": -1, + "increaseAttackChance": -4, + "increaseCriticalSkill": 3, + "increaseBlockChance": 15 + } + }, + { + "id": "armour_misfortune", + "iconID": "items_armours:15", + "name": "Blusa de couro do infortúnio", + "category": "bdy_lthr", + "hasManualPrice": 0, + "baseMarketCost": 2459, + "equipEffect": { + "increaseAttackChance": -5, + "increaseAttackDamage": { + "min": -1, + "max": -1 + }, + "increaseBlockChance": 15 + } + }, + { + "id": "gloves_barbrawler", + "iconID": "items_armours:35", + "name": "Luvas de arruaçeiros de bar", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 95, + "equipEffect": { + "increaseAttackChance": 5, + "increaseBlockChance": 2 + } + }, + { + "id": "gloves_fumbling", + "iconID": "items_armours:35", + "name": "Luvas de desastrados", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": -432, + "equipEffect": { + "increaseAttackChance": -5, + "increaseBlockChance": 1 + } + }, + { + "id": "gloves_crude_cloth", + "iconID": "items_armours:35", + "name": "Luvas de pele crua", + "category": "hnd_cloth", + "hasManualPrice": 0, + "baseMarketCost": 31, + "equipEffect": { + "increaseBlockChance": 1 + } + }, + { + "id": "gloves_crude_leather", + "iconID": "items_armours:35", + "name": "Luvas de couro crú", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 180, + "equipEffect": { + "increaseAttackChance": -4, + "increaseBlockChance": 6 + } + }, + { + "id": "gloves_troublemaker", + "iconID": "items_armours:36", + "name": "Luvas do Arruaçeiro", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 501, + "equipEffect": { + "increaseMaxHP": 1, + "increaseAttackChance": 7, + "increaseCriticalSkill": 4, + "increaseBlockChance": 4 + } + }, + { + "id": "gloves_guards", + "iconID": "items_armours:37", + "name": "Luvas dos Guardas", + "category": "hnd_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 636, + "equipEffect": { + "increaseMaxHP": 3, + "increaseAttackChance": 3, + "increaseBlockChance": 5 + } + }, + { + "id": "gloves_leather_attack", + "iconID": "items_armours:35", + "name": "Luvas de couro para ataque", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 510, + "equipEffect": { + "increaseMaxHP": 3, + "increaseAttackChance": 13, + "increaseBlockChance": -2 + } + }, + { + "id": "gloves_woodcutter", + "iconID": "items_armours:35", + "name": "Luvas de lenhador", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 426, + "equipEffect": { + "increaseMaxHP": 3, + "increaseAttackChance": 8, + "increaseBlockChance": 1 + } + }, + { + "id": "boots_crude_leather", + "iconID": "items_armours:28", + "name": "Botas de couro crú", + "category": "feet_lthr", + "hasManualPrice": 0, + "baseMarketCost": 31, + "equipEffect": { + "increaseBlockChance": 1 + } + }, + { + "id": "boots_sewn", + "iconID": "items_armours:28", + "name": "Sapato costurado", + "category": "feet_clth", + "hasManualPrice": 0, + "baseMarketCost": 73, + "equipEffect": { + "increaseBlockChance": 2 + } + }, + { + "id": "boots_coward", + "iconID": "items_armours:28", + "name": "Botas do covarde", + "category": "feet_lthr", + "hasManualPrice": 0, + "baseMarketCost": 933, + "equipEffect": { + "increaseMoveCost": -1, + "increaseBlockChance": 2 + } + }, + { + "id": "boots_hard_leather", + "iconID": "items_armours:30", + "name": "Botas de couro reforçado", + "category": "feet_lthr", + "hasManualPrice": 0, + "baseMarketCost": 626, + "equipEffect": { + "increaseMoveCost": 1, + "increaseAttackChance": -4, + "increaseBlockChance": 10 + } + }, + { + "id": "boots_defender", + "iconID": "items_armours:30", + "name": "Botas do defensor", + "category": "feet_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 1190, + "equipEffect": { + "increaseMaxHP": 2, + "increaseBlockChance": 9 + } + }, + { + "id": "necklace_shield_0", + "iconID": "items_jewelry:7", + "name": "Colar de proteção fraca", + "category": "neck", + "hasManualPrice": 0, + "baseMarketCost": 131, + "equipEffect": { + "increaseBlockChance": 3 + } + }, + { + "id": "necklace_strike", + "iconID": "items_jewelry:6", + "name": "Colar do ataque", + "category": "neck", + "hasManualPrice": 0, + "baseMarketCost": 832, + "equipEffect": { + "increaseMaxHP": 5, + "increaseCriticalSkill": 5 + } + }, + { + "id": "necklace_defender_stone", + "iconID": "items_jewelry:7", + "name": "Pedra do defensor", + "category": "neck", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 1325, + "equipEffect": { + "increaseDamageResistance": 1 + } + }, + { + "id": "necklace_protector", + "iconID": "items_jewelry:7", + "name": "Colar do protetor", + "category": "neck", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 3207, + "equipEffect": { + "increaseMaxHP": 5, + "increaseDamageResistance": 2 + } + }, + { + "id": "ring_crude_combat", + "iconID": "items_jewelry:0", + "name": "Anel de combate crú", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 44, + "equipEffect": { + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "ring_crude_surehit", + "iconID": "items_jewelry:0", + "name": "Anel crú do tiro certeiro", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 52, + "equipEffect": { + "increaseAttackChance": 7 + } + }, + { + "id": "ring_crude_block", + "iconID": "items_jewelry:0", + "name": "Anel de bloqueio crú", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 73, + "equipEffect": { + "increaseBlockChance": 2 + } + }, + { + "id": "ring_rough_life", + "iconID": "items_jewelry:0", + "name": "Anel grosseiro da força vital", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 100, + "equipEffect": { + "increaseMaxHP": 1 + } + }, + { + "id": "ring_fumbling", + "iconID": "items_jewelry:0", + "name": "Anel do desastrado", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": -463, + "equipEffect": { + "increaseAttackChance": -5 + } + }, + { + "id": "ring_rough_damage", + "iconID": "items_jewelry:0", + "name": "Anel de dano grosseiro", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 56, + "equipEffect": { + "increaseAttackDamage": { + "min": 0, + "max": 2 + } + } + }, + { + "id": "ring_barbrawler", + "iconID": "items_jewelry:0", + "name": "Anel dos arruaçeiros de bar", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 222, + "equipEffect": { + "increaseAttackChance": 12, + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "ring_dmg_3", + "iconID": "items_jewelry:0", + "name": "Anel de dano +3", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 624, + "equipEffect": { + "increaseAttackDamage": { + "min": 3, + "max": 3 + } + } + }, + { + "id": "ring_life", + "iconID": "items_jewelry:0", + "name": "Anel da força vital", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 557, + "equipEffect": { + "increaseMaxHP": 5 + } + }, + { + "id": "ring_taverbrawler", + "iconID": "items_jewelry:0", + "name": "Anel dos arruaçeiros de tavernas", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 314, + "equipEffect": { + "increaseAttackChance": 12, + "increaseAttackDamage": { + "min": 0, + "max": 3 + } + } + }, + { + "id": "ring_defender", + "iconID": "items_jewelry:0", + "name": "Anel do defensor", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 755, + "equipEffect": { + "increaseAttackChance": -6, + "increaseBlockChance": 11 + } + }, + { + "id": "ring_challenger", + "iconID": "items_jewelry:0", + "name": "Anel do desafiante", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 408, + "equipEffect": { + "increaseAttackChance": 12, + "increaseBlockChance": 4 + } + }, + { + "id": "ring_dmg_4", + "iconID": "items_jewelry:2", + "name": "Anel de dano +4", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 1168, + "equipEffect": { + "increaseAttackDamage": { + "min": 4, + "max": 4 + } + } + }, + { + "id": "ring_troublemaker", + "iconID": "items_jewelry:2", + "name": "Anel do Arruaçeiro", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 797, + "equipEffect": { + "increaseAttackChance": 15, + "increaseAttackDamage": { + "min": 2, + "max": 4 + } + } + }, + { + "id": "ring_guardian", + "iconID": "items_jewelry:2", + "name": "Anel do guardião", + "category": "ring", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 1489, + "equipEffect": { + "increaseAttackChance": 19, + "increaseAttackDamage": { + "min": 3, + "max": 5 + } + } + }, + { + "id": "ring_block", + "iconID": "items_jewelry:2", + "name": "Anel de bloqueio", + "category": "ring", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 2192, + "equipEffect": { + "increaseBlockChance": 13 + } + }, + { + "id": "ring_backstab", + "iconID": "items_jewelry:2", + "name": "Anel do caluniador", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 1363, + "equipEffect": { + "increaseAttackChance": 17, + "increaseCriticalSkill": 7, + "increaseBlockChance": 3 + } + }, + { + "id": "ring_polished_combat", + "iconID": "items_jewelry:2", + "name": "Anel de combate polido", + "category": "ring", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 1346, + "equipEffect": { + "increaseMaxHP": 5, + "increaseAttackChance": 15, + "increaseAttackDamage": { + "min": 1, + "max": 5 + } + } + }, + { + "id": "ring_villain", + "iconID": "items_jewelry:2", + "name": "Anel do vilão", + "category": "ring", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 2750, + "equipEffect": { + "increaseMaxHP": 4, + "increaseAttackChance": 25, + "increaseAttackDamage": { + "min": 3, + "max": 6 + } + } + }, + { + "id": "ring_polished_backstab", + "iconID": "items_jewelry:2", + "name": "Anel polido do caluniador", + "category": "ring", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 2731, + "equipEffect": { + "increaseAttackChance": 21, + "increaseCriticalSkill": 7, + "increaseAttackDamage": { + "min": 4, + "max": 4 + } + } + }, + { + "id": "ring_protector", + "iconID": "items_jewelry:4", + "name": "Anel do protetor", + "category": "ring", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 3744, + "equipEffect": { + "increaseMaxHP": 3, + "increaseAttackChance": 20, + "increaseAttackDamage": { + "min": 0, + "max": 3 + }, + "increaseBlockChance": 14 + } + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/itemlist_v0610_2.json b/AndorsTrail/res/raw-pt-rBR/itemlist_v0610_2.json new file mode 100644 index 000000000..416da8814 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/itemlist_v0610_2.json @@ -0,0 +1,190 @@ +[ + { + "id": "erinith_book", + "iconID": "items_books:0", + "name": "Livro de Erinith", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "hadracor_waspwing", + "iconID": "items_misc:52", + "name": "Asa de vespa gigante", + "category": "animal", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "tinlyn_bells", + "iconID": "items_necklaces_1:10", + "name": "Sino da ovelha de Tinlyn", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "tinlyn_sheep_meat", + "iconID": "items_consumables:25", + "name": "Carne de ovelha de Tinlyn", + "category": "animal", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "rogorn_qitem", + "iconID": "items_books:7", + "name": "Parte de uma pintura", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "fg_ironsword", + "iconID": "items_weapons:0", + "name": "Espada de ferro de Feygard", + "category": "lsword", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 1, + "max": 5 + } + } + }, + { + "id": "fg_ironsword_d", + "iconID": "items_weapons:0", + "name": "Espada de ferro de Feygard degradada", + "category": "lsword", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": -50 + } + }, + { + "id": "buceth_vial", + "iconID": "items_consumables:47", + "name": "Frasco com líquido vital de Buceth", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "chaosreaper", + "iconID": "items_weapons:49", + "name": "Ceifeiro do Caos", + "category": "scepter", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 339, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": -30, + "increaseAttackDamage": { + "min": 0, + "max": 2 + } + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 5, + "duration": 3, + "chance": 50 + } + ] + } + }, + { + "id": "izthiel_claw", + "iconID": "items_misc:47", + "name": "Garra de Izthiel", + "category": "animal_e", + "hasManualPrice": 1, + "baseMarketCost": 1, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 3, + "duration": 6, + "chance": 100 + }, + { + "condition": "foodp", + "magnitude": 3, + "duration": 10, + "chance": 20 + } + ] + } + }, + { + "id": "iqhan_pendant", + "iconID": "items_necklaces_1:2", + "name": "Pingente de Iqhan", + "category": "neck", + "hasManualPrice": 1, + "baseMarketCost": 10, + "equipEffect": { + "increaseAttackChance": 6 + } + }, + { + "id": "shadowfang", + "iconID": "items_weapons_3:41", + "name": "Presa das Sombras", + "category": "ssword", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 512, + "equipEffect": { + "increaseMaxHP": -20, + "increaseAttackCost": 4, + "increaseAttackChance": 40, + "increaseAttackDamage": { + "min": 2, + "max": 5 + } + }, + "hitEffect": { + "conditionsSource": [ + { + "condition": "fatigue_minor", + "magnitude": 1, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "gloves_life", + "iconID": "items_armours_2:1", + "name": "Luvas da força vital", + "category": "hnd_lthr", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 390, + "equipEffect": { + "increaseMaxHP": 9, + "increaseAttackChance": 5, + "increaseBlockChance": 3 + } + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/itemlist_v0611_1.json b/AndorsTrail/res/raw-pt-rBR/itemlist_v0611_1.json new file mode 100644 index 000000000..bbc21e142 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/itemlist_v0611_1.json @@ -0,0 +1,477 @@ +[ + { + "id": "pot_focus_dmg", + "iconID": "items_consumables:39", + "name": "Porção de dano na precisão", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 272, + "useEffect": { + "conditionsSource": [ + { + "condition": "focus_dmg", + "magnitude": 1, + "duration": 4, + "chance": 100 + } + ] + } + }, + { + "id": "pot_focus_dmg2", + "iconID": "items_consumables:39", + "name": "Porção forte de dano na precisão", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 630, + "useEffect": { + "conditionsSource": [ + { + "condition": "focus_dmg", + "magnitude": 2, + "duration": 4, + "chance": 100 + } + ] + } + }, + { + "id": "pot_focus_ac", + "iconID": "items_consumables:37", + "name": "Porção de aumento da precisão", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 210, + "useEffect": { + "conditionsSource": [ + { + "condition": "focus_ac", + "magnitude": 1, + "duration": 4, + "chance": 100 + } + ] + } + }, + { + "id": "pot_focus_ac2", + "iconID": "items_consumables:37", + "name": "Porção forte de aumento da precisão", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 618, + "useEffect": { + "conditionsSource": [ + { + "condition": "focus_ac", + "magnitude": 2, + "duration": 4, + "chance": 100 + } + ] + } + }, + { + "id": "pot_scaradon", + "iconID": "items_consumables:48", + "name": "Extrato de Scaradon", + "category": "pot", + "hasManualPrice": 0, + "baseMarketCost": 28, + "useEffect": { + "increaseCurrentHP": { + "min": 5, + "max": 10 + } + } + }, + { + "id": "remgard_shield_1", + "iconID": "items_armours_3:24", + "name": "Escudo de Remgard", + "category": "shld_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 2189, + "equipEffect": { + "increaseAttackChance": -3, + "increaseBlockChance": 9, + "increaseDamageResistance": 1 + } + }, + { + "id": "remgard_shield_2", + "iconID": "items_armours_3:24", + "name": "Escudo de combate de Remgard", + "category": "shld_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 2720, + "equipEffect": { + "increaseAttackChance": -3, + "increaseBlockChance": 11, + "increaseDamageResistance": 1 + } + }, + { + "id": "helm_combat1", + "iconID": "items_armours:25", + "name": "Elmo de combate", + "category": "hd_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 455, + "equipEffect": { + "increaseAttackChance": 5, + "increaseBlockChance": 6 + } + }, + { + "id": "helm_combat2", + "iconID": "items_armours:25", + "name": "Elmo de combate avançado", + "category": "hd_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 485, + "equipEffect": { + "increaseAttackChance": 7, + "increaseBlockChance": 6 + } + }, + { + "id": "helm_combat3", + "iconID": "items_armours:26", + "name": "Elmo de combate de Remgard", + "category": "hd_mtl_hv", + "hasManualPrice": 0, + "baseMarketCost": 1540, + "equipEffect": { + "increaseMaxHP": 1, + "increaseAttackChance": -3, + "increaseCriticalSkill": -5, + "increaseBlockChance": 12 + } + }, + { + "id": "helm_redeye1", + "iconID": "items_armours:24", + "name": "Capuz dos olhos vermelhos", + "category": "hd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 1, + "equipEffect": { + "increaseMaxHP": -5, + "increaseBlockChance": 8 + } + }, + { + "id": "helm_redeye2", + "iconID": "items_armours:24", + "name": "Capuz dos olhos ensanguentados", + "category": "hd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 1, + "equipEffect": { + "increaseMaxHP": -5, + "increaseAttackDamage": { + "min": 0, + "max": 1 + }, + "increaseBlockChance": 8 + } + }, + { + "id": "helm_defend1", + "iconID": "items_armours_3:31", + "name": "Elmo do defensor", + "category": "hd_mtl_hv", + "hasManualPrice": 0, + "baseMarketCost": 1975, + "equipEffect": { + "increaseAttackChance": -3, + "increaseBlockChance": 8, + "increaseDamageResistance": 1 + } + }, + { + "id": "helm_protector0", + "iconID": "items_armours_3:31", + "name": "Elmo de aparência estranha", + "category": "hd_mtl_li", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxHP": -9, + "increaseAttackDamage": { + "min": 0, + "max": 1 + }, + "increaseBlockChance": 5 + } + }, + { + "id": "helm_protector", + "iconID": "items_armours_3:31", + "name": "Protetor Negro", + "category": "hd_mtl_li", + "displaytype": 3, + "hasManualPrice": 0, + "baseMarketCost": 3119, + "equipEffect": { + "increaseMaxHP": -6, + "increaseAttackDamage": { + "min": 0, + "max": 1 + }, + "increaseBlockChance": 13, + "increaseDamageResistance": 1 + } + }, + { + "id": "armour_chain_remg", + "iconID": "items_armours_3:13", + "name": "Cota de malha de Remgard", + "category": "chmail", + "hasManualPrice": 0, + "baseMarketCost": 8927, + "equipEffect": { + "increaseAttackChance": -7, + "increaseBlockChance": 25 + } + }, + { + "id": "armour_cvest1", + "iconID": "items_armours_3:5", + "name": "Veste de combate", + "category": "bdy_lt", + "hasManualPrice": 0, + "baseMarketCost": 1116, + "equipEffect": { + "increaseAttackChance": 15, + "increaseBlockChance": 8 + } + }, + { + "id": "armour_cvest2", + "iconID": "items_armours_3:5", + "name": "Veste de combate de Remgard", + "category": "bdy_lt", + "hasManualPrice": 0, + "baseMarketCost": 1244, + "equipEffect": { + "increaseAttackChance": 17, + "increaseBlockChance": 8 + } + }, + { + "id": "gloves_leather1", + "iconID": "items_armours:38", + "name": "Luvas de couro reforçadas", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 757, + "equipEffect": { + "increaseMaxHP": 3, + "increaseAttackChance": 2, + "increaseBlockChance": 6 + } + }, + { + "id": "gloves_arulir", + "iconID": "items_armours_2:1", + "name": "Luvas de pele de Arulir", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 1793, + "equipEffect": { + "increaseAttackChance": -3, + "increaseBlockChance": 7, + "increaseDamageResistance": 1 + } + }, + { + "id": "gloves_combat1", + "iconID": "items_armours:36", + "name": "Luvas de combate", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 956, + "equipEffect": { + "increaseMaxHP": 4, + "increaseAttackChance": -5, + "increaseBlockChance": 9 + } + }, + { + "id": "gloves_combat2", + "iconID": "items_armours:36", + "name": "Luvas de combate melhoradas", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 1204, + "equipEffect": { + "increaseMaxHP": 4, + "increaseAttackChance": -5, + "increaseBlockChance": 10 + } + }, + { + "id": "gloves_remgard1", + "iconID": "items_armours:37", + "name": "Luvas de briga de Remgard", + "category": "hnd_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 1205, + "equipEffect": { + "increaseMaxHP": 4, + "increaseBlockChance": 8 + } + }, + { + "id": "gloves_remgard2", + "iconID": "items_armours:37", + "name": "Luvas encantadas de Remgard", + "category": "hnd_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 1326, + "equipEffect": { + "increaseMaxHP": 5, + "increaseAttackChance": 2, + "increaseBlockChance": 8 + } + }, + { + "id": "gloves_guard1", + "iconID": "items_armours:38", + "name": "Luvas do guardião", + "category": "hnd_lthr", + "hasManualPrice": 1, + "baseMarketCost": 601, + "equipEffect": { + "increaseAttackChance": -9, + "increaseCriticalSkill": -5, + "increaseBlockChance": 14 + } + }, + { + "id": "boots_combat1", + "iconID": "items_armours:30", + "name": "Botas de combate", + "category": "feet_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackChance": 7, + "increaseBlockChance": 7 + } + }, + { + "id": "boots_combat2", + "iconID": "items_armours:30", + "name": "Botas de combate melhoradas", + "category": "feet_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackChance": 7, + "increaseBlockChance": 11 + } + }, + { + "id": "boots_remgard1", + "iconID": "items_armours:31", + "name": "Botas de Remgard", + "category": "feet_mtl_hv", + "hasManualPrice": 0, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxHP": 4, + "increaseBlockChance": 12 + } + }, + { + "id": "boots_guard1", + "iconID": "items_armours:31", + "name": "Botas do guardião", + "category": "feet_mtl_hv", + "hasManualPrice": 0, + "baseMarketCost": 0, + "equipEffect": { + "increaseBlockChance": 7, + "increaseDamageResistance": 1 + } + }, + { + "id": "boots_brawler", + "iconID": "items_armours_3:38", + "name": "Botas dos arruaçeiros de bar", + "category": "feet_lthr", + "hasManualPrice": 0, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxHP": 2, + "increaseCriticalSkill": 4, + "increaseBlockChance": 7 + } + }, + { + "id": "marrowtaint", + "iconID": "items_necklaces_1:9", + "name": "Tintura de medula", + "category": "neck", + "displaytype": 3, + "hasManualPrice": 0, + "baseMarketCost": 4760, + "equipEffect": { + "increaseMaxHP": 5, + "increaseAttackCost": -1, + "increaseAttackChance": 9, + "increaseBlockChance": 9 + } + }, + { + "id": "valugha_gown", + "iconID": "items_armours_3:2", + "name": "Robe de seda de Valugha", + "category": "bdy_clth", + "displaytype": 3, + "hasManualPrice": 0, + "baseMarketCost": 3109, + "equipEffect": { + "increaseMaxHP": 5, + "increaseMoveCost": -1, + "increaseAttackChance": 30, + "increaseBlockChance": -10 + } + }, + { + "id": "valugha_hat", + "iconID": "items_armours_3:1", + "name": "Chapéu de pele de Valugha", + "category": "hd_cloth", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 648, + "equipEffect": { + "increaseMaxHP": 3, + "increaseMoveCost": -1, + "increaseAttackChance": 15, + "increaseAttackDamage": { + "min": -2, + "max": -2 + }, + "increaseBlockChance": -5 + } + }, + { + "id": "hat_crit", + "iconID": "items_armours_3:0", + "name": "Chapel de lenhador com penas", + "category": "hd_cloth", + "displaytype": 3, + "hasManualPrice": 0, + "baseMarketCost": 1, + "equipEffect": { + "increaseCriticalSkill": 4, + "increaseBlockChance": -5 + } + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/itemlist_v0611_2.json b/AndorsTrail/res/raw-pt-rBR/itemlist_v0611_2.json new file mode 100644 index 000000000..873a25a93 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/itemlist_v0611_2.json @@ -0,0 +1,71 @@ +[ + { + "id": "thorin_bone", + "iconID": "items_misc:44", + "name": "osso mastigado", + "category": "animal", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "spider", + "iconID": "items_misc:40", + "name": "Aranha morta", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 1 + }, + { + "id": "irdegh", + "iconID": "items_misc:49", + "name": "Glândula de veneno de Irdegh", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 5 + }, + { + "id": "arulir_skin", + "iconID": "items_misc:39", + "name": "Pele de Arulir", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 4 + }, + { + "id": "algangror_rat", + "iconID": "items_misc:38", + "name": "Rabo de ratazana com visual estralho", + "category": "animal", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "oegyth", + "iconID": "items_misc:35", + "name": "Cristal Oegyth", + "category": "gem", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "toszylae_heart", + "iconID": "items_misc:6", + "name": "Coração de demônio", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "potion_rotworm", + "iconID": "items_consumables:63", + "name": "Podridão de Kazaul", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/itemlist_v0611_3.json b/AndorsTrail/res/raw-pt-rBR/itemlist_v0611_3.json new file mode 100644 index 000000000..20f9e0e6f --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/itemlist_v0611_3.json @@ -0,0 +1,47 @@ +[ + { + "id": "lyson_marrow", + "iconID": "items_consumables:63", + "name": "Porção de estrato de medula de Lyson", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "algangror_idol", + "iconID": "items_misc_2:220", + "name": "Ídolo pequeno", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "algangror_ring", + "iconID": "items_rings_1:11", + "name": "Anel de Algangror", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "kaverin_message", + "iconID": "items_books:7", + "name": "Mensagem selada de Kaverin", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "vacor_map", + "iconID": "items_books:9", + "name": "Mapa para o esconderijo antigo de Vacor", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/itemlist_v068.json b/AndorsTrail/res/raw-pt-rBR/itemlist_v068.json new file mode 100644 index 000000000..f1bd64d08 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/itemlist_v068.json @@ -0,0 +1,190 @@ +[ + { + "id": "armor_chain1", + "iconID": "items_armours:17", + "name": "Cota de malha enferrujada", + "category": "chmail", + "baseMarketCost": 3629, + "equipEffect": { + "increaseAttackChance": -9, + "increaseBlockChance": 20 + } + }, + { + "id": "armor_chain2", + "iconID": "items_armours:17", + "name": "Cota de malha oridnária", + "category": "chmail", + "baseMarketCost": 4191, + "equipEffect": { + "increaseAttackChance": -10, + "increaseBlockChance": 22 + } + }, + { + "id": "hat_leather1", + "iconID": "items_armours:24", + "name": "Chapel ordinário de couro", + "category": "hd_lthr", + "baseMarketCost": 261, + "equipEffect": { + "increaseAttackChance": -2, + "increaseBlockChance": 7 + } + }, + { + "id": "sleepingmead", + "iconID": "items_consumables:51", + "name": "Hidromel com sonífero", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "ffguard_qitem", + "iconID": "items_jewelry:0", + "name": "Anel da patrulha de Feygard", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "shield6", + "iconID": "items_armours:3", + "name": "Escudo retangular de madeira", + "category": "shld_twr", + "baseMarketCost": 952, + "equipEffect": { + "increaseAttackChance": -6, + "increaseBlockChance": 12 + } + }, + { + "id": "shield7", + "iconID": "items_armours:3", + "name": "Escudo retangular de madeira reforçado", + "category": "shld_twr", + "baseMarketCost": 1538, + "equipEffect": { + "increaseAttackChance": -6, + "increaseBlockChance": 14 + } + }, + { + "id": "club_wood1", + "iconID": "items_weapons:44", + "name": "Clava pesada de ferro", + "category": "mace", + "baseMarketCost": 950, + "equipEffect": { + "increaseAttackCost": 8, + "increaseAttackChance": 15, + "increaseCriticalSkill": 5, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 2, + "max": 11 + } + } + }, + { + "id": "club_wood2", + "iconID": "items_weapons:44", + "name": "Clava pesada palanciado de ferro", + "category": "mace", + "baseMarketCost": 2194, + "equipEffect": { + "increaseAttackCost": 7, + "increaseAttackChance": 10, + "increaseCriticalSkill": 10, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 2, + "max": 11 + } + } + }, + { + "id": "gloves_grip", + "iconID": "items_armours:35", + "name": "Luvas para melhor pegada", + "category": "hnd_lthr", + "baseMarketCost": 471, + "equipEffect": { + "increaseAttackChance": 9, + "increaseBlockChance": 1 + } + }, + { + "id": "gloves_fancy", + "iconID": "items_armours:35", + "name": "Luvas ideais", + "category": "hnd_cloth", + "baseMarketCost": 78, + "equipEffect": { + "increaseAttackChance": 5 + } + }, + { + "id": "ring_crit1", + "iconID": "items_jewelry:0", + "name": "Anel de ataque", + "category": "ring", + "displaytype": 4, + "baseMarketCost": 2921, + "equipEffect": { + "increaseCriticalSkill": 5 + } + }, + { + "id": "ring_crit2", + "iconID": "items_jewelry:0", + "name": "Anel de ataque viciado", + "category": "ring", + "displaytype": 4, + "baseMarketCost": 3455, + "equipEffect": { + "increaseAttackChance": -3, + "increaseCriticalSkill": 7 + } + }, + { + "id": "armor_stone", + "iconID": "items_armours:17", + "name": "Couraça de pedra", + "category": "bdy_hv", + "displaytype": 3, + "baseMarketCost": 52, + "equipEffect": { + "increaseAttackCost": 2, + "increaseBlockChance": 22, + "increaseDamageResistance": 1 + } + }, + { + "id": "ring_shadow0", + "iconID": "items_jewelry:2", + "name": "Anel menor das Sombras", + "category": "ring", + "displaytype": 2, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackChance": 25, + "increaseCriticalSkill": 6, + "increaseAttackDamage": { + "min": 4, + "max": 7 + }, + "increaseBlockChance": 5, + "addedConditions": [ + { + "condition": "regen", + "magnitude": 1 + } + ] + } + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/itemlist_v069.json b/AndorsTrail/res/raw-pt-rBR/itemlist_v069.json new file mode 100644 index 000000000..6cc3bec92 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/itemlist_v069.json @@ -0,0 +1,464 @@ +[ + { + "id": "rapier_lifesteal", + "iconID": "items_weapons:71", + "name": "Florete de roubo vital", + "category": "rapier", + "displaytype": 2, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxHP": 5, + "increaseAttackCost": 5, + "increaseAttackChance": 21, + "increaseAttackDamage": { + "min": 1, + "max": 6 + } + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 0, + "max": 3 + } + }, + "killEffect": { + "increaseCurrentHP": { + "min": 3, + "max": 3 + } + } + }, + { + "id": "dagger_barbed", + "iconID": "items_weapons:17", + "name": "Adaga enfarpada", + "category": "dagger", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 15, + "increaseBlockChance": 5 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "bleeding_wound", + "magnitude": 1, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "elytharan_redeemer", + "iconID": "items_weapons:70", + "name": "Elytharan redentora", + "category": "2hsword", + "displaytype": 2, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxAP": 2, + "increaseAttackCost": 5, + "increaseAttackChance": 25, + "increaseAttackDamage": { + "min": 3, + "max": 8 + }, + "increaseBlockChance": 5, + "addedConditions": [ + { + "condition": "bless", + "magnitude": 1 + } + ] + } + }, + { + "id": "clouded_rage", + "iconID": "items_weapons:71", + "name": "Espada da raiva das Sombras", + "category": "rapier", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 21, + "increaseAttackDamage": { + "min": 3, + "max": 6 + }, + "increaseBlockChance": 5 + }, + "killEffect": { + "conditionsSource": [ + { + "condition": "rage_minor", + "magnitude": 1, + "duration": 1, + "chance": 50 + } + ] + } + }, + { + "id": "shadow_slayer", + "iconID": "items_weapons:60", + "name": "Matador das Sombras", + "category": "axe2h", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxAP": 2, + "increaseAttackCost": 7, + "increaseAttackChance": 25, + "increaseCriticalSkill": 10, + "setCriticalMultiplier": 2, + "increaseAttackDamage": { + "min": 5, + "max": 9 + } + }, + "killEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "ring_shadow_embrace", + "iconID": "items_jewelry:0", + "name": "Anel do Abraço das Sombras", + "category": "ring", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxHP": 20, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 2, + "max": 2 + } + } + }, + { + "id": "bwm_dagger", + "iconID": "items_weapons:19", + "name": "Adaga das Águas Negras", + "category": "dagger", + "displaytype": 4, + "hasManualPrice": 1, + "baseMarketCost": 539, + "equipEffect": { + "increaseAttackCost": 3, + "increaseAttackChance": 40, + "increaseAttackDamage": { + "min": 1, + "max": 1 + }, + "increaseBlockChance": 5, + "addedConditions": [ + { + "condition": "blackwater_misery", + "magnitude": 1 + } + ] + } + }, + { + "id": "bwm_dagger_venom", + "iconID": "items_weapons:19", + "name": "Adaga das Águas Negras envenenada", + "category": "dagger", + "displaytype": 4, + "hasManualPrice": 1, + "baseMarketCost": 1552, + "equipEffect": { + "increaseAttackCost": 3, + "increaseAttackChance": 45, + "increaseAttackDamage": { + "min": 1, + "max": 1 + }, + "addedConditions": [ + { + "condition": "blackwater_misery", + "magnitude": 1 + } + ] + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_weak", + "magnitude": 1, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "bwm_ironsword", + "iconID": "items_weapons:0", + "name": "Espada de ferro das Águas Negras", + "category": "lsword", + "displaytype": 4, + "hasManualPrice": 1, + "baseMarketCost": 1224, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 50, + "increaseAttackDamage": { + "min": 3, + "max": 7 + }, + "increaseBlockChance": 5, + "addedConditions": [ + { + "condition": "blackwater_misery", + "magnitude": 1 + } + ] + } + }, + { + "id": "bwm_leather_armour", + "iconID": "items_armours:15", + "name": "Armadura de couro das Águas Negras", + "category": "bdy_lthr", + "displaytype": 4, + "hasManualPrice": 1, + "baseMarketCost": 2551, + "equipEffect": { + "increaseBlockChance": 25, + "increaseDamageResistance": 1, + "addedConditions": [ + { + "condition": "blackwater_misery", + "magnitude": 1 + } + ] + } + }, + { + "id": "bwm_leather_cap", + "iconID": "items_armours:24", + "name": "Capuz de couro das Águas Negras", + "category": "hd_lthr", + "displaytype": 4, + "hasManualPrice": 1, + "baseMarketCost": 722, + "equipEffect": { + "increaseMaxHP": 5, + "increaseBlockChance": 21, + "addedConditions": [ + { + "condition": "blackwater_misery", + "magnitude": 1 + } + ] + } + }, + { + "id": "bwm_combat_ring", + "iconID": "items_jewelry:2", + "name": "Anel de combate das Águas Negras", + "category": "ring", + "displaytype": 4, + "hasManualPrice": 1, + "baseMarketCost": 595, + "equipEffect": { + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 0, + "max": 7 + }, + "addedConditions": [ + { + "condition": "blackwater_misery", + "magnitude": 1 + } + ] + } + }, + { + "id": "bwm_brew", + "iconID": "items_consumables:51", + "name": "Lodo das Águas Negras", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 57, + "useEffect": { + "increaseCurrentHP": { + "min": 15, + "max": 15 + }, + "conditionsSource": [ + { + "condition": "intoxicated", + "magnitude": 1, + "duration": 10, + "chance": 100 + } + ] + } + }, + { + "id": "woodcutter_hatchet", + "iconID": "items_weapons:57", + "name": "Machadinha de lenhador", + "category": "axe", + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 9, + "increaseAttackDamage": { + "min": 6, + "max": 12 + } + } + }, + { + "id": "woodcutter_boots", + "iconID": "items_armours:30", + "name": "Botas de lenhador", + "category": "feet_lthr", + "baseMarketCost": 873, + "equipEffect": { + "increaseMaxHP": 1, + "increaseAttackChance": 3, + "increaseBlockChance": 8 + } + }, + { + "id": "heavy_club", + "iconID": "items_weapons:44", + "name": "Clava Pesada", + "category": "mace", + "baseMarketCost": 1229, + "equipEffect": { + "increaseAttackCost": 7, + "increaseAttackChance": 15, + "increaseCriticalSkill": 5, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 2, + "max": 15 + } + } + }, + { + "id": "pot_speed_1", + "iconID": "items_consumables:41", + "name": "Porção pequena de velocidade", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 261, + "useEffect": { + "conditionsSource": [ + { + "condition": "speed_minor", + "magnitude": 1, + "duration": 5, + "chance": 100 + } + ] + } + }, + { + "id": "pot_poison_weak", + "iconID": "items_consumables:40", + "name": "Veneno fraco", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 125, + "useEffect": { + "conditionsSource": [ + { + "condition": "poison_weak", + "magnitude": 1, + "duration": 5, + "chance": 100 + } + ] + } + }, + { + "id": "pot_poison_weak_antidote", + "iconID": "items_consumables:54", + "name": "Antídoto para veneno fraco", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 337, + "useEffect": { + "conditionsSource": [ + { + "condition": "poison_weak", + "magnitude": -99, + "chance": 100 + } + ] + } + }, + { + "id": "pot_bleeding_ointment", + "iconID": "items_consumables:35", + "name": "Pomada para fechamento de feridas", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 310, + "useEffect": { + "conditionsSource": [ + { + "condition": "bleeding_wound", + "magnitude": -99, + "chance": 100 + } + ] + } + }, + { + "id": "pot_fatigue_restore", + "iconID": "items_consumables:41", + "name": "Restaurador de fatiga", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 210, + "useEffect": { + "conditionsSource": [ + { + "condition": "fatigue_minor", + "magnitude": -99, + "chance": 100 + } + ] + } + }, + { + "id": "pot_blind_rage", + "iconID": "items_consumables:63", + "name": "Porção para fúria cega", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 495, + "useEffect": { + "conditionsSource": [ + { + "condition": "rage_minor", + "magnitude": 1, + "duration": 5, + "chance": 100 + } + ] + } + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/itemlist_v069_2.json b/AndorsTrail/res/raw-pt-rBR/itemlist_v069_2.json new file mode 100644 index 000000000..3c1128f78 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/itemlist_v069_2.json @@ -0,0 +1,38 @@ +[ + { + "id": "rusted_iron_sword", + "iconID": "items_weapons:0", + "name": "Espada rústica de ferro", + "category": "lsword", + "baseMarketCost": 52, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "broken_buckler", + "iconID": "items_armours:0", + "name": "Broquel de madeira quebrado", + "category": "buckler", + "baseMarketCost": 120, + "equipEffect": { + "increaseAttackChance": -5, + "increaseBlockChance": 1 + } + }, + { + "id": "used_gloves", + "iconID": "items_armours:35", + "name": "Luvas sujas de sangue", + "category": "hnd_lthr", + "baseMarketCost": 56, + "equipEffect": { + "increaseBlockChance": 1 + } + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/itemlist_v069_questitems.json b/AndorsTrail/res/raw-pt-rBR/itemlist_v069_questitems.json new file mode 100644 index 000000000..fbd415ad2 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/itemlist_v069_questitems.json @@ -0,0 +1,58 @@ +[ + { + "id": "bwm_claws", + "iconID": "items_misc:47", + "name": "Garra de dragão branco", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 35 + }, + { + "id": "bwm_permit", + "iconID": "items_books:8", + "name": "Credenciais forjadas para Águas Negras", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "bjorgur_dagger", + "iconID": "items_weapons:14", + "name": "Adaga de família de Bjorgur", + "category": "dagger", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackCost": 5 + } + }, + { + "id": "q_kazaul_vial", + "iconID": "items_consumables:57", + "name": "Porção de purificação do espírito", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "guthbered_id", + "iconID": "items_jewelry:0", + "name": "Anel de Guthbered", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "harlenn_id", + "iconID": "items_jewelry:0", + "name": "Anel de Harlenn", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/itemlist_weapons.json b/AndorsTrail/res/raw-pt-rBR/itemlist_weapons.json new file mode 100644 index 000000000..24e5862e2 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/itemlist_weapons.json @@ -0,0 +1,255 @@ +[ + { + "id": "club1", + "iconID": "items_weapons:42", + "name": "Clava de madeira", + "category": "club", + "baseMarketCost": 7, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "club3", + "iconID": "items_weapons:44", + "name": "Clava de ferro", + "category": "mace", + "baseMarketCost": 253, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 2, + "max": 7 + } + } + }, + { + "id": "ironsword0", + "iconID": "items_weapons:0", + "name": "Espada de ferro crú", + "category": "lsword", + "baseMarketCost": 12, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "hammer0", + "iconID": "items_weapons:45", + "name": "Martelo de ferro", + "category": "hammer", + "baseMarketCost": 12, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "hammer1", + "iconID": "items_weapons:45", + "name": "Martelo gigante", + "category": "hammer2h", + "baseMarketCost": 121, + "equipEffect": { + "increaseAttackCost": 10, + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 4, + "max": 7 + } + } + }, + { + "id": "dagger0", + "iconID": "items_weapons:14", + "name": "Adaga de ferro", + "category": "dagger", + "baseMarketCost": 12, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "dagger1", + "iconID": "items_weapons:14", + "name": "Adaga afiada de ferro", + "category": "dagger", + "baseMarketCost": 53, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 20, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "dagger2", + "iconID": "items_weapons:14", + "name": "Adaga superior de ferro", + "category": "dagger", + "baseMarketCost": 70, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 25, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "shortsword1", + "iconID": "items_weapons:15", + "name": "Espada curta de ferro", + "category": "ssword", + "baseMarketCost": 78, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 15, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "ironsword1", + "iconID": "items_weapons:0", + "name": "Espada de ferro", + "category": "lsword", + "baseMarketCost": 78, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 1, + "max": 3 + } + } + }, + { + "id": "ironsword2", + "iconID": "items_weapons:1", + "name": "Espada comprida de ferro", + "category": "lsword", + "baseMarketCost": 121, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 1, + "max": 4 + } + } + }, + { + "id": "broadsword1", + "iconID": "items_weapons:5", + "name": "Espada larga de ferro", + "category": "bsword", + "baseMarketCost": 251, + "equipEffect": { + "increaseAttackCost": 7, + "increaseAttackChance": 2, + "increaseAttackDamage": { + "min": 1, + "max": 10 + } + } + }, + { + "id": "broadsword2", + "iconID": "items_weapons:6", + "name": "Espada larga de aço", + "category": "bsword", + "baseMarketCost": 582, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 15, + "increaseAttackDamage": { + "min": 3, + "max": 10 + } + } + }, + { + "id": "steelsword1", + "iconID": "items_weapons:7", + "name": "Espada de aço", + "category": "lsword", + "baseMarketCost": 874, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 24, + "increaseAttackDamage": { + "min": 3, + "max": 7 + } + } + }, + { + "id": "axe1", + "iconID": "items_weapons:56", + "name": "Machado de lenhador", + "category": "axe", + "baseMarketCost": 24, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 1, + "max": 3 + } + } + }, + { + "id": "axe2", + "iconID": "items_weapons:56", + "name": "Machado de ferro", + "category": "axe", + "baseMarketCost": 312, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 2, + "max": 5 + } + } + }, + { + "id": "quickdagger1", + "iconID": "items_weapons:14", + "name": "Adaga de ataque rápido", + "category": "dagger", + "displaytype": 4, + "baseMarketCost": 512, + "equipEffect": { + "increaseAttackCost": 3, + "increaseAttackChance": 20, + "increaseBlockChance": -20 + } + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/monsterlist_crossglen_animals.json b/AndorsTrail/res/raw-pt-rBR/monsterlist_crossglen_animals.json new file mode 100644 index 000000000..b3fc83fa5 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/monsterlist_crossglen_animals.json @@ -0,0 +1,469 @@ +[ + { + "id": "tiny_rat", + "iconID": "monsters_rats:0", + "name": "Ratazana pequena", + "spawnGroup": "trainingrat", + "monsterClass": 4, + "unique": 1, + "maxHP": 2, + "attackCost": 10, + "attackChance": 50, + "droplistID": "trainingrat", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "cave_rat", + "iconID": "monsters_rats:1", + "name": "Ratazana-das-cavernas", + "spawnGroup": "crossglen_caverat", + "monsterClass": 4, + "maxHP": 5, + "attackCost": 10, + "attackChance": 90, + "droplistID": "rat", + "attackDamage": { + "min": 2, + "max": 2 + } + }, + { + "id": "tough_cave_rat", + "iconID": "monsters_rats:1", + "name": "Ratazana-das-cavernas resistente", + "spawnGroup": "crossglen_caverat2", + "monsterClass": 4, + "maxHP": 5, + "attackCost": 5, + "attackChance": 90, + "droplistID": "rat", + "attackDamage": { + "min": 3, + "max": 3 + } + }, + { + "id": "strong_cave_rat", + "iconID": "monsters_rats:3", + "name": "Ratazana-das-cavernas forte", + "spawnGroup": "crossglen_caveboss", + "monsterClass": 4, + "unique": 1, + "maxHP": 20, + "attackCost": 5, + "attackChance": 100, + "blockChance": 10, + "droplistID": "caveratboss", + "attackDamage": { + "min": 2, + "max": 4 + } + }, + { + "id": "black_ant", + "iconID": "monsters_insects:0", + "name": "Formiga preta", + "spawnGroup": "crossglen_ant", + "monsterClass": 1, + "maxHP": 3, + "attackCost": 10, + "attackChance": 70, + "droplistID": "insect", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "small_wasp", + "iconID": "monsters_insects:1", + "name": "Vespa pequena", + "spawnGroup": "crossglen_wasp", + "monsterClass": 1, + "maxHP": 4, + "attackCost": 10, + "attackChance": 70, + "droplistID": "wasp", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "beetle", + "iconID": "monsters_insects:4", + "name": "Escaravelho", + "spawnGroup": "crossglen_beetle", + "monsterClass": 1, + "maxHP": 4, + "attackCost": 10, + "attackChance": 70, + "droplistID": "insect", + "attackDamage": { + "min": 3, + "max": 3 + } + }, + { + "id": "forest_wasp", + "iconID": "monsters_insects:1", + "name": "Vespa-das-florestas", + "spawnGroup": "forestwasp", + "monsterClass": 1, + "maxHP": 6, + "attackCost": 10, + "attackChance": 70, + "droplistID": "wasp", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "forest_ant", + "iconID": "monsters_insects:0", + "name": "Formiga-das-florestas", + "spawnGroup": "forestant", + "monsterClass": 1, + "maxHP": 4, + "attackCost": 10, + "attackChance": 90, + "blockChance": 10, + "droplistID": "insect", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "yellow_forest_ant", + "iconID": "monsters_insects:2", + "name": "Formiga-das-florestas amarela", + "spawnGroup": "forestant", + "monsterClass": 1, + "maxHP": 5, + "attackCost": 10, + "attackChance": 100, + "blockChance": 15, + "droplistID": "insect", + "attackDamage": { + "min": 2, + "max": 2 + } + }, + { + "id": "small_rabid_dog", + "iconID": "monsters_dogs:1", + "name": "Cão raivoso pequeno", + "spawnGroup": "forestdog", + "monsterClass": 4, + "maxHP": 6, + "attackCost": 10, + "attackChance": 90, + "droplistID": "canine", + "attackDamage": { + "min": 2, + "max": 2 + } + }, + { + "id": "forest_snake", + "iconID": "monsters_snakes:1", + "name": "Cobra-das-florestas", + "spawnGroup": "forestsnake", + "monsterClass": 7, + "maxHP": 7, + "attackCost": 10, + "attackChance": 110, + "blockChance": 10, + "droplistID": "snake", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "young_cave_snake", + "iconID": "monsters_snakes:3", + "name": "Cobra-das-cavernas jovem", + "spawnGroup": "cavesnake1", + "monsterClass": 7, + "maxHP": 8, + "attackCost": 5, + "attackChance": 110, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 10, + "droplistID": "snake", + "attackDamage": { + "min": 2, + "max": 2 + } + }, + { + "id": "cave_snake", + "iconID": "monsters_snakes:3", + "name": "Cobra-das-cavernas", + "spawnGroup": "cavesnake1", + "monsterClass": 7, + "maxHP": 12, + "attackCost": 5, + "attackChance": 110, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 15, + "droplistID": "snake", + "attackDamage": { + "min": 2, + "max": 2 + } + }, + { + "id": "venomous_cave_snake", + "iconID": "monsters_snakes:3", + "name": "Cobra-das-cavernas venenosa", + "spawnGroup": "cavesnake2", + "monsterClass": 7, + "maxHP": 15, + "maxAP": 10, + "attackCost": 5, + "attackChance": 110, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 10, + "droplistID": "snake", + "attackDamage": { + "min": 2, + "max": 2 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_weak", + "magnitude": 1, + "duration": 1, + "chance": 10 + } + ] + } + }, + { + "id": "tough_cave_snake", + "iconID": "monsters_snakes:3", + "name": "Cobra-das-cavernas resistente", + "spawnGroup": "cavesnake2", + "monsterClass": 7, + "maxHP": 21, + "attackCost": 5, + "attackChance": 110, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 15, + "droplistID": "snake", + "attackDamage": { + "min": 2, + "max": 2 + } + }, + { + "id": "basilisk", + "iconID": "monsters_rats:4", + "name": "Basilisco", + "spawnGroup": "cavesnake2_boss", + "monsterClass": 7, + "maxHP": 40, + "attackCost": 7, + "attackChance": 40, + "blockChance": 50, + "damageResistance": 2, + "droplistID": "cavecritter", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "snake_servant", + "iconID": "monsters_liches:0", + "name": "Cobra servo", + "spawnGroup": "cavesnake3", + "monsterClass": 6, + "maxHP": 35, + "attackCost": 5, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 3, + "blockChance": 10, + "damageResistance": 1, + "droplistID": "lich1", + "attackDamage": { + "min": 2, + "max": 3 + } + }, + { + "id": "snake_master", + "iconID": "monsters_liches:1", + "name": "Cobra mestre", + "spawnGroup": "cavesnake3_boss", + "monsterClass": 6, + "unique": 1, + "maxHP": 55, + "attackCost": 5, + "attackChance": 60, + "criticalSkill": 200, + "criticalMultiplier": 3, + "blockChance": 10, + "damageResistance": 4, + "droplistID": "snakemaster", + "phraseID": "snakemaster", + "attackDamage": { + "min": 1, + "max": 4 + } + }, + { + "id": "rabid_boar", + "iconID": "monsters_dogs:6", + "name": "Javali raivoso", + "spawnGroup": "forestboar", + "monsterClass": 4, + "maxHP": 20, + "attackCost": 5, + "attackChance": 110, + "blockChance": 30, + "droplistID": "canineboss", + "attackDamage": { + "min": 3, + "max": 3 + } + }, + { + "id": "rabid_fox", + "iconID": "monsters_dogs:3", + "name": "Raposa raivosa", + "spawnGroup": "fox1", + "monsterClass": 4, + "maxHP": 25, + "attackCost": 5, + "attackChance": 100, + "blockChance": 50, + "droplistID": "canine", + "attackDamage": { + "min": 3, + "max": 3 + } + }, + { + "id": "yellow_cave_ant", + "iconID": "monsters_insects:2", + "name": "Formiga-das-cavernas amarela", + "spawnGroup": "pitcave1", + "monsterClass": 1, + "maxHP": 20, + "attackCost": 3, + "attackChance": 30, + "blockChance": 80, + "droplistID": "insect", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "young_teeth_critter", + "iconID": "monsters_misc:0", + "name": "Monstro-dos-dentes jovem", + "spawnGroup": "pitcave2", + "monsterClass": 7, + "maxHP": 15, + "attackCost": 2, + "attackChance": 50, + "blockChance": 70, + "droplistID": "cavecritter", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "teeth_critter", + "iconID": "monsters_misc:0", + "name": "Monstro-dos-dentes", + "spawnGroup": "pitcave2", + "monsterClass": 7, + "maxHP": 25, + "attackCost": 2, + "attackChance": 60, + "criticalSkill": 10, + "criticalMultiplier": 3, + "blockChance": 70, + "droplistID": "cavecritter", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "young_minotaur", + "iconID": "monsters_misc:5", + "name": "Minotauro jovem", + "spawnGroup": "pitcave2", + "monsterClass": 5, + "maxHP": 45, + "attackCost": 6, + "attackChance": 20, + "criticalSkill": 40, + "criticalMultiplier": 3, + "blockChance": 50, + "damageResistance": 2, + "droplistID": "cavemonster", + "attackDamage": { + "min": 4, + "max": 4 + } + }, + { + "id": "strong_minotaur", + "iconID": "monsters_misc:5", + "name": "Minotauro forte", + "spawnGroup": "pitcave2_boss", + "monsterClass": 5, + "maxHP": 53, + "attackCost": 6, + "attackChance": 40, + "criticalSkill": 50, + "criticalMultiplier": 3, + "blockChance": 50, + "damageResistance": 2, + "droplistID": "cavemonster", + "attackDamage": { + "min": 5, + "max": 5 + } + }, + { + "id": "irogotu", + "iconID": "monsters_liches:0", + "name": "Irogotu", + "spawnGroup": "pitcave_boss", + "monsterClass": 6, + "unique": 1, + "maxHP": 61, + "attackCost": 3, + "attackChance": 50, + "criticalSkill": 40, + "criticalMultiplier": 3, + "blockChance": 70, + "damageResistance": 4, + "droplistID": "irogotu", + "phraseID": "irogotu", + "attackDamage": { + "min": 2, + "max": 5 + } + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/monsterlist_crossglen_npcs.json b/AndorsTrail/res/raw-pt-rBR/monsterlist_crossglen_npcs.json new file mode 100644 index 000000000..a55be1306 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/monsterlist_crossglen_npcs.json @@ -0,0 +1,119 @@ +[ + { + "id": "mikhail", + "iconID": "monsters_mage2:0", + "name": "Mikhail", + "spawnGroup": "mikhail", + "monsterClass": 0, + "phraseID": "mikhail_start_select" + }, + { + "id": "leta", + "iconID": "monsters_men:2", + "name": "Leta", + "spawnGroup": "leta", + "monsterClass": 0, + "phraseID": "leta1" + }, + { + "id": "audir", + "iconID": "monsters_men:0", + "name": "Audir", + "spawnGroup": "audir", + "monsterClass": 0, + "droplistID": "shop_audir", + "phraseID": "audir1" + }, + { + "id": "arambold", + "iconID": "monsters_men:3", + "name": "Arambold", + "spawnGroup": "arambold", + "monsterClass": 0, + "droplistID": "shop_arambold", + "phraseID": "arambold1" + }, + { + "id": "tharal", + "iconID": "monsters_men:4", + "name": "Tharal", + "spawnGroup": "tharal", + "monsterClass": 0, + "droplistID": "shop_tharal", + "phraseID": "tharal1" + }, + { + "id": "drunk", + "iconID": "monsters_rltiles3:14", + "name": "Bêbedo", + "spawnGroup": "drunk", + "monsterClass": 0, + "phraseID": "drunk1" + }, + { + "id": "mara", + "iconID": "monsters_men:7", + "name": "Mara", + "spawnGroup": "mara", + "monsterClass": 0, + "droplistID": "shop_mara", + "phraseID": "mara1" + }, + { + "id": "gruil", + "iconID": "monsters_rogue1:0", + "name": "Gruil", + "spawnGroup": "gruil", + "monsterClass": 0, + "droplistID": "shop_gruil", + "phraseID": "gruil1" + }, + { + "id": "leonid", + "iconID": "monsters_men:3", + "name": "Leonid", + "spawnGroup": "leonid", + "monsterClass": 0, + "phraseID": "leonid1" + }, + { + "id": "farmer", + "iconID": "monsters_man1:0", + "name": "Agricultor", + "spawnGroup": "crossglen_farmer1", + "monsterClass": 0, + "phraseID": "farm1" + }, + { + "id": "tired_farmer", + "iconID": "monsters_man1:0", + "name": "Agricultor cansado", + "spawnGroup": "crossglen_farmer2", + "monsterClass": 0, + "phraseID": "farm2" + }, + { + "id": "oromir", + "iconID": "monsters_man1:0", + "name": "Oromir", + "spawnGroup": "oromir", + "monsterClass": 0, + "phraseID": "oromir1" + }, + { + "id": "odair", + "iconID": "monsters_men:8", + "name": "Odair", + "spawnGroup": "odair", + "monsterClass": 0, + "phraseID": "odair1" + }, + { + "id": "jan", + "iconID": "monsters_rltiles3:14", + "name": "Jan", + "spawnGroup": "jan", + "monsterClass": 0, + "phraseID": "jan_start_select" + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/monsterlist_fallhaven_animals.json b/AndorsTrail/res/raw-pt-rBR/monsterlist_fallhaven_animals.json new file mode 100644 index 000000000..db4a8f01e --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/monsterlist_fallhaven_animals.json @@ -0,0 +1,292 @@ +[ + { + "id": "lost_spirit", + "iconID": "monsters_rltiles2:45", + "name": "Espírito perdido", + "spawnGroup": "minorhaunt1", + "monsterClass": 8, + "maxHP": 15, + "attackCost": 10, + "attackChance": 50, + "blockChance": 10, + "damageResistance": 3, + "droplistID": "haunt", + "phraseID": "haunt", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "lost_soul", + "iconID": "monsters_rltiles2:45", + "name": "Alma perdida", + "spawnGroup": "minorhaunt2", + "monsterClass": 8, + "maxHP": 15, + "attackCost": 10, + "attackChance": 50, + "blockChance": 10, + "damageResistance": 4, + "droplistID": "haunt", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "haunting", + "iconID": "monsters_ghost1:0", + "name": "Assombração", + "spawnGroup": "haunt3", + "monsterClass": 8, + "maxHP": 31, + "maxAP": 10, + "moveCost": 10, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 30, + "damageResistance": 1, + "droplistID": "haunt", + "attackDamage": { + "min": 1, + "max": 5 + } + }, + { + "id": "skeletal_warrior", + "iconID": "monsters_skeleton1:0", + "name": "Esqueleto guerreiro", + "spawnGroup": "skeleton1", + "monsterClass": 3, + "maxHP": 52, + "maxAP": 10, + "moveCost": 10, + "attackCost": 5, + "attackChance": 60, + "blockChance": 40, + "damageResistance": 1, + "droplistID": "skeleton", + "attackDamage": { + "min": 1, + "max": 3 + } + }, + { + "id": "skeletal_master", + "iconID": "monsters_skeleton2:0", + "name": "Esqueleto mestre", + "spawnGroup": "skeletonmaster", + "monsterClass": 3, + "maxHP": 52, + "maxAP": 10, + "moveCost": 10, + "attackCost": 5, + "attackChance": 70, + "blockChance": 30, + "damageResistance": 2, + "droplistID": "skeleton", + "attackDamage": { + "min": 1, + "max": 3 + } + }, + { + "id": "skeleton", + "iconID": "monsters_skeleton1:0", + "name": "Esqueleto", + "spawnGroup": "skeleton1", + "monsterClass": 3, + "maxHP": 35, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 60, + "blockChance": 40, + "droplistID": "skeleton", + "attackDamage": { + "min": 1, + "max": 4 + } + }, + { + "id": "guardian_of_the_catacombs", + "iconID": "monsters_rltiles2:45", + "name": "Guardião das catacumbas", + "spawnGroup": "catacombguard1", + "monsterClass": 8, + "unique": 1, + "maxHP": 6, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 10, + "blockChance": 10, + "damageResistance": 3, + "droplistID": "catacombguard", + "phraseID": "catacombguard", + "attackDamage": { + "min": 1, + "max": 6 + } + }, + { + "id": "catacomb_rat", + "iconID": "monsters_rats:0", + "name": "Ratazana-das-catacumbas", + "spawnGroup": "catacombrat1", + "monsterClass": 4, + "maxHP": 15, + "maxAP": 10, + "moveCost": 10, + "attackCost": 3, + "attackChance": 60, + "blockChance": 40, + "droplistID": "catacombrat", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "large_catacomb_rat", + "iconID": "monsters_rats:3", + "name": "Ratazana-das-catacumbas grande", + "spawnGroup": "catacombrat1", + "monsterClass": 4, + "maxHP": 21, + "maxAP": 10, + "moveCost": 10, + "attackCost": 3, + "attackChance": 60, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 40, + "droplistID": "catacombrat", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "ghostly_visage", + "iconID": "monsters_ghost1:0", + "name": "Visão fantasmagórica", + "spawnGroup": "catacombguard2", + "monsterClass": 8, + "maxHP": 16, + "maxAP": 10, + "moveCost": 10, + "attackCost": 5, + "attackChance": 20, + "blockChance": 20, + "damageResistance": 2, + "droplistID": "catacombguard", + "attackDamage": { + "min": 1, + "max": 4 + } + }, + { + "id": "spectre", + "iconID": "monsters_rltiles2:45", + "name": "Espectro", + "spawnGroup": "catacombguard2", + "monsterClass": 8, + "maxHP": 15, + "maxAP": 10, + "moveCost": 10, + "attackCost": 3, + "attackChance": 50, + "blockChance": 60, + "damageResistance": 2, + "droplistID": "catacombguard", + "attackDamage": { + "min": 1, + "max": 5 + } + }, + { + "id": "apparition", + "iconID": "monsters_rltiles2:45", + "name": "Apraição", + "spawnGroup": "catacombguard3", + "monsterClass": 8, + "maxHP": 17, + "maxAP": 10, + "moveCost": 10, + "attackCost": 3, + "blockChance": 70, + "damageResistance": 2, + "droplistID": "catacombguard", + "attackDamage": { + "min": 1, + "max": 5 + } + }, + { + "id": "shade", + "iconID": "monsters_ghost1:0", + "name": "Sombra", + "spawnGroup": "catacombguard3", + "monsterClass": 8, + "maxHP": 16, + "maxAP": 10, + "moveCost": 10, + "attackCost": 5, + "attackChance": 20, + "blockChance": 20, + "damageResistance": 3, + "droplistID": "catacombguard", + "attackDamage": { + "min": 1, + "max": 4 + } + }, + { + "id": "young_gargoyle", + "iconID": "monsters_misc:2", + "name": "Gárgula jovem", + "spawnGroup": "catacombguard3", + "monsterClass": 3, + "maxHP": 35, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 110, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 70, + "damageResistance": 1, + "droplistID": "catacombguard", + "attackDamage": { + "min": 2, + "max": 5 + } + }, + { + "id": "ghost_of_luthor", + "iconID": "monsters_liches:2", + "name": "Fantasma de Luthor", + "spawnGroup": "luthor", + "monsterClass": 6, + "unique": 1, + "maxHP": 86, + "maxAP": 10, + "moveCost": 10, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 15, + "criticalMultiplier": 2, + "blockChance": 50, + "damageResistance": 3, + "droplistID": "luthor", + "phraseID": "luthor", + "attackDamage": { + "min": 2, + "max": 5 + } + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/monsterlist_fallhaven_npcs.json b/AndorsTrail/res/raw-pt-rBR/monsterlist_fallhaven_npcs.json new file mode 100644 index 000000000..a9e990465 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/monsterlist_fallhaven_npcs.json @@ -0,0 +1,333 @@ +[ + { + "id": "warden", + "iconID": "monsters_men:3", + "name": "Director", + "spawnGroup": "fallhaven_warden", + "monsterClass": 0, + "phraseID": "fallhaven_warden_select_1" + }, + { + "id": "guard", + "iconID": "monsters_rltiles3:14", + "name": "Guarda", + "spawnGroup": "fallhaven_guard", + "monsterClass": 0, + "phraseID": "fallhaven_guard" + }, + { + "id": "acolyte", + "iconID": "monsters_men:4", + "name": "Acólito", + "spawnGroup": "fallhaven_priest", + "monsterClass": 0, + "phraseID": "fallhaven_priest" + }, + { + "id": "bearded_citizen", + "iconID": "monsters_man1:0", + "name": "Cidadão barbudo", + "spawnGroup": "fallhaven_citizen1", + "monsterClass": 0, + "phraseID": "fallhaven_citizen1" + }, + { + "id": "old_citizen", + "iconID": "monsters_men:2", + "name": "Cidadão idoso", + "spawnGroup": "fallhaven_citizen2", + "monsterClass": 0, + "phraseID": "fallhaven_citizen2" + }, + { + "id": "tired_citizen", + "iconID": "monsters_men:7", + "name": "Cidadão cansado", + "spawnGroup": "fallhaven_citizen4", + "monsterClass": 0, + "phraseID": "fallhaven_citizen4" + }, + { + "id": "citizen", + "iconID": "monsters_man1:0", + "name": "Cidadão", + "spawnGroup": "fallhaven_citizen3", + "monsterClass": 0, + "phraseID": "fallhaven_citizen3" + }, + { + "id": "grumpy_citizen", + "iconID": "monsters_men:2", + "name": "Cidadão irritado", + "spawnGroup": "fallhaven_citizen5", + "monsterClass": 0, + "phraseID": "fallhaven_citizen5" + }, + { + "id": "blond_citizen", + "iconID": "monsters_men:7", + "name": "Cidadão louro", + "spawnGroup": "fallhaven_citizen6", + "monsterClass": 0, + "phraseID": "fallhaven_citizen6" + }, + { + "id": "bucus", + "iconID": "monsters_rogue1:0", + "name": "Bucus", + "spawnGroup": "bucus", + "monsterClass": 0, + "phraseID": "bucus_welcome" + }, + { + "id": "drunkard", + "iconID": "monsters_men:0", + "name": "Alcoólico", + "spawnGroup": "fallhaven_drunk", + "monsterClass": 0, + "phraseID": "fallhaven_drunk" + }, + { + "id": "old_man", + "iconID": "monsters_men:5", + "name": "Idoso", + "spawnGroup": "fallhaven_oldman", + "monsterClass": 0, + "phraseID": "fallhaven_oldman" + }, + { + "id": "nocmar", + "iconID": "monsters_men:8", + "name": "Nocmar", + "spawnGroup": "nocmar", + "monsterClass": 0, + "droplistID": "nocmar", + "phraseID": "nocmar" + }, + { + "id": "prisoner", + "iconID": "monsters_rogue1:0", + "name": "Prisioneiro", + "spawnGroup": "fallhaven_prisoner", + "monsterClass": 0, + "maxHP": 1, + "maxAP": 1, + "moveCost": 1, + "attackCost": 1, + "attackChance": 0 + }, + { + "id": "ganos", + "iconID": "monsters_rogue1:0", + "name": "Ganos", + "spawnGroup": "ganos", + "monsterClass": 0, + "droplistID": "shop_ganos", + "phraseID": "ganos" + }, + { + "id": "arcir", + "iconID": "monsters_mage2:0", + "name": "Arcir", + "spawnGroup": "arcir", + "monsterClass": 0, + "phraseID": "arcir_start" + }, + { + "id": "athamyr", + "iconID": "monsters_men:4", + "name": "Athamyr", + "spawnGroup": "athamyr", + "monsterClass": 0, + "phraseID": "athamyr" + }, + { + "id": "thoronir", + "iconID": "monsters_men2:8", + "name": "Thoronir", + "spawnGroup": "thoronir", + "monsterClass": 0, + "droplistID": "shop_thoronir", + "phraseID": "thoronir_default" + }, + { + "id": "chapelgoer", + "iconID": "monsters_men:6", + "name": "Beato", + "spawnGroup": "chapelgoer", + "monsterClass": 0, + "phraseID": "chapelgoer" + }, + { + "id": "potion_merchant", + "iconID": "monsters_mage2:0", + "name": "Mercador de poções", + "spawnGroup": "fallhaven_potions", + "monsterClass": 0, + "droplistID": "shop_fallhaven_potions", + "phraseID": "fallhaven_potions" + }, + { + "id": "tailor", + "iconID": "monsters_men2:0", + "name": "Alfaiate", + "spawnGroup": "fallhaven_clothes", + "monsterClass": 0, + "droplistID": "shop_fallhaven_clothes", + "phraseID": "fallhaven_clothes" + }, + { + "id": "bela", + "iconID": "monsters_men:7", + "name": "Bela", + "spawnGroup": "bela", + "monsterClass": 0, + "droplistID": "shop_bela", + "phraseID": "bela" + }, + { + "id": "larcal", + "iconID": "monsters_men2:2", + "name": "Larcal", + "spawnGroup": "larcal", + "monsterClass": 0, + "unique": 1, + "maxHP": 51, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 25, + "blockChance": 50, + "droplistID": "larcal", + "phraseID": "larcal", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "gaela", + "iconID": "monsters_men2:9", + "name": "Gaela", + "spawnGroup": "gaela", + "monsterClass": 0, + "phraseID": "gaela" + }, + { + "id": "unnmir", + "iconID": "monsters_mage2:0", + "name": "Unnmir", + "spawnGroup": "unnmir", + "monsterClass": 0, + "phraseID": "unnmir" + }, + { + "id": "rigmor", + "iconID": "monsters_men:1", + "name": "Rigmor", + "spawnGroup": "rigmor", + "monsterClass": 0, + "phraseID": "rigmor" + }, + { + "id": "jakrar", + "iconID": "monsters_men2:2", + "name": "Jakrar", + "spawnGroup": "fallhaven_lumberjack", + "monsterClass": 0, + "phraseID": "fallhaven_lumberjack" + }, + { + "id": "alaun", + "iconID": "monsters_mage2:0", + "name": "Alaun", + "spawnGroup": "alaun", + "monsterClass": 0, + "phraseID": "alaun" + }, + { + "id": "busy_farmer", + "iconID": "monsters_man1:0", + "name": "Agricultor atarefado", + "spawnGroup": "fallhaven_farmer1", + "monsterClass": 0, + "phraseID": "fallhaven_farmer1" + }, + { + "id": "old_farmer", + "iconID": "monsters_mage2:0", + "name": "Agricultor idoso", + "spawnGroup": "fallhaven_farmer2", + "monsterClass": 0, + "phraseID": "fallhaven_farmer2" + }, + { + "id": "khorand", + "iconID": "monsters_men:3", + "name": "Khorand", + "spawnGroup": "khorand", + "monsterClass": 0, + "phraseID": "khorand" + }, + { + "id": "vacor", + "iconID": "monsters_mage:0", + "name": "Vacor", + "spawnGroup": "vacor", + "monsterClass": 0, + "unique": 1, + "maxHP": 72, + "attackCost": 5, + "attackChance": 110, + "blockChance": 40, + "damageResistance": 2, + "droplistID": "vacor", + "phraseID": "vacor", + "attackDamage": { + "min": 4, + "max": 8 + } + }, + { + "id": "unzel", + "iconID": "monsters_men:8", + "name": "Unzel", + "spawnGroup": "unzel", + "monsterClass": 0, + "unique": 1, + "maxHP": 59, + "attackCost": 10, + "attackChance": 80, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 40, + "damageResistance": 2, + "droplistID": "unzel", + "phraseID": "unzel", + "attackDamage": { + "min": 5, + "max": 9 + } + }, + { + "id": "shady_bandit", + "iconID": "monsters_men2:9", + "name": "Bandido", + "spawnGroup": "fallhaven_bandit", + "monsterClass": 0, + "unique": 1, + "maxHP": 45, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 50, + "damageResistance": 2, + "droplistID": "fallhaven_bandit", + "phraseID": "fallhaven_bandit", + "attackDamage": { + "min": 3, + "max": 9 + } + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/monsterlist_v0610_monsters1.json b/AndorsTrail/res/raw-pt-rBR/monsterlist_v0610_monsters1.json new file mode 100644 index 000000000..e1fe952c3 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/monsterlist_v0610_monsters1.json @@ -0,0 +1,494 @@ +[ + { + "id": "young_larval_burrower", + "iconID": "monsters_rltiles2:164", + "name": "Larva-escavadora jovem", + "spawnGroup": "larva_1", + "monsterClass": 1, + "maxHP": 30, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 35, + "criticalMultiplier": 3, + "blockChance": 25, + "droplistID": "larva_1", + "attackDamage": { + "min": 1, + "max": 6 + } + }, + { + "id": "larval_burrower", + "iconID": "monsters_rltiles2:164", + "name": "Larva-escavadora", + "spawnGroup": "larva_2", + "monsterClass": 1, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 35, + "criticalMultiplier": 3, + "blockChance": 25, + "droplistID": "larva_2", + "attackDamage": { + "min": 1, + "max": 6 + } + }, + { + "id": "larval_boss", + "iconID": "monsters_rltiles2:164", + "name": "Larva-escavadora forte", + "spawnGroup": "larva_boss", + "monsterClass": 1, + "unique": 1, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 35, + "criticalMultiplier": 3, + "blockChance": 25, + "droplistID": "larva_boss", + "attackDamage": { + "min": 1, + "max": 6 + } + }, + { + "id": "rivertroll", + "iconID": "monsters_rltiles1:104", + "name": "Duende-dos-rios", + "spawnGroup": "rivertroll", + "monsterClass": 5, + "unique": 1, + "maxHP": 210, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 30, + "criticalMultiplier": 4, + "blockChance": 65, + "damageResistance": 7, + "droplistID": "rivertroll", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "grass_ant", + "iconID": "monsters_insects:0", + "name": "Formigra-das-pradarias", + "spawnGroup": "fieldcritter_0", + "monsterClass": 1, + "maxHP": 29, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 80, + "droplistID": "fieldcritter_0", + "attackDamage": { + "min": 0, + "max": 4 + } + }, + { + "id": "grass_ant2", + "iconID": "monsters_insects:2", + "name": "Formiga-das-pradarias resistente", + "spawnGroup": "fieldcritter_0", + "monsterClass": 1, + "maxHP": 29, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "droplistID": "fieldcritter_0", + "attackDamage": { + "min": 1, + "max": 5 + } + }, + { + "id": "grass_beetle", + "iconID": "monsters_insects:4", + "name": "Escaravelho-das-pradarias", + "spawnGroup": "fieldcritter_1", + "monsterClass": 1, + "maxHP": 34, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 120, + "blockChance": 80, + "damageResistance": 3, + "droplistID": "fieldcritter_1", + "attackDamage": { + "min": 0, + "max": 5 + } + }, + { + "id": "grass_beetle2", + "iconID": "monsters_insects:4", + "name": "Escaravelho-das-pradarias resistente", + "spawnGroup": "fieldcritter_1", + "monsterClass": 1, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 125, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "fieldcritter_1", + "attackDamage": { + "min": 1, + "max": 6 + } + }, + { + "id": "grass_snake", + "iconID": "monsters_rltiles2:25", + "name": "Cobra-das-pradarias", + "spawnGroup": "fieldcritter_2", + "monsterClass": 7, + "maxHP": 36, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 80, + "droplistID": "fieldcritter_2", + "attackDamage": { + "min": 0, + "max": 6 + } + }, + { + "id": "grass_snake2", + "iconID": "monsters_rltiles2:25", + "name": "Cobra-das-pradarias resistente", + "spawnGroup": "fieldcritter_2", + "monsterClass": 7, + "maxHP": 38, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "droplistID": "fieldcritter_2", + "attackDamage": { + "min": 1, + "max": 7 + } + }, + { + "id": "grass_lizard", + "iconID": "monsters_rltiles2:114", + "name": "Lagarto-das-pradarias", + "spawnGroup": "fieldcritter_3", + "monsterClass": 7, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 80, + "damageResistance": 3, + "droplistID": "fieldcritter_3", + "attackDamage": { + "min": 0, + "max": 8 + } + }, + { + "id": "grass_lizard2", + "iconID": "monsters_rltiles2:117", + "name": "Lagarto-das-pradarias negro", + "spawnGroup": "fieldcritter_3", + "monsterClass": 7, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "fieldcritter_3", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "keknazar", + "iconID": "monsters_misc:9", + "name": "Keknazar", + "spawnGroup": "keknazar", + "monsterClass": 7, + "unique": 1, + "maxHP": 90, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 50, + "criticalSkill": 20, + "criticalMultiplier": 3, + "blockChance": 70, + "damageResistance": 8, + "droplistID": "keknazar", + "phraseID": "keknazar", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "crossroads_rat", + "iconID": "monsters_rats:0", + "name": "Ratazana", + "spawnGroup": "crossroads_rat", + "monsterClass": 4, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 50, + "blockChance": 30, + "droplistID": "rat", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "fieldwasp_0", + "iconID": "monsters_insects:1", + "name": "Vespa-das-florestas frenética", + "spawnGroup": "fieldwasp_0", + "monsterClass": 1, + "maxHP": 29, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 95, + "droplistID": "fieldwasp", + "attackDamage": { + "min": 2, + "max": 6 + } + }, + { + "id": "fieldwasp_1", + "iconID": "monsters_insects:1", + "name": "Vespa-das-florestas frenética", + "spawnGroup": "fieldwasp_1", + "monsterClass": 1, + "maxHP": 32, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 70, + "criticalMultiplier": 3, + "blockChance": 125, + "droplistID": "fieldwasp", + "attackDamage": { + "min": 2, + "max": 6 + } + }, + { + "id": "fieldwasp_2", + "iconID": "monsters_insects:1", + "name": "Vespa-das-florestas frenética", + "spawnGroup": "fieldwasp_2", + "monsterClass": 1, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 75, + "criticalMultiplier": 3, + "blockChance": 130, + "droplistID": "fieldwasp", + "attackDamage": { + "min": 2, + "max": 6 + } + }, + { + "id": "izthiel_1", + "iconID": "monsters_rltiles2:51", + "name": "Izthiel jovem", + "spawnGroup": "izthiel_1", + "monsterClass": 7, + "maxHP": 40, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "blockChance": 57, + "damageResistance": 5, + "droplistID": "izthiel", + "attackDamage": { + "min": 2, + "max": 7 + } + }, + { + "id": "izthiel_2", + "iconID": "monsters_rltiles2:49", + "name": "Izthiel", + "spawnGroup": "izthiel_2", + "monsterClass": 7, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "blockChance": 58, + "damageResistance": 6, + "droplistID": "izthiel", + "attackDamage": { + "min": 2, + "max": 7 + } + }, + { + "id": "izthiel_3", + "iconID": "monsters_rltiles2:48", + "name": "Izthiel forte", + "spawnGroup": "izthiel_3", + "monsterClass": 7, + "maxHP": 52, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "blockChance": 60, + "damageResistance": 8, + "droplistID": "izthiel", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "bleeding_wound", + "magnitude": 2, + "duration": 4, + "chance": 40 + } + ] + } + }, + { + "id": "izthiel_4", + "iconID": "monsters_rltiles2:52", + "name": "Izthiel guardião", + "spawnGroup": "izthiel_4", + "monsterClass": 7, + "maxHP": 54, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 60, + "damageResistance": 11, + "droplistID": "izthiel_4", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "bleeding_wound", + "magnitude": 3, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "frog_1", + "iconID": "monsters_rltiles1:131", + "name": "Sapo-dos-rios", + "spawnGroup": "frog_1", + "monsterClass": 7, + "maxHP": 15, + "maxAP": 10, + "moveCost": 5, + "attackCost": 2, + "attackChance": 150, + "blockChance": 45, + "droplistID": "frog", + "attackDamage": { + "min": 0, + "max": 5 + } + }, + { + "id": "frog_2", + "iconID": "monsters_rltiles1:131", + "name": "Sapo-dos-rios resistente", + "spawnGroup": "frog_2", + "monsterClass": 7, + "maxHP": 17, + "maxAP": 10, + "moveCost": 5, + "attackCost": 2, + "attackChance": 160, + "blockChance": 49, + "droplistID": "frog", + "attackDamage": { + "min": 0, + "max": 5 + } + }, + { + "id": "frog_3", + "iconID": "monsters_rltiles1:130", + "name": "Sapo-dos-rios venenoso", + "spawnGroup": "frog_3", + "monsterClass": 7, + "maxHP": 21, + "maxAP": 10, + "moveCost": 5, + "attackCost": 2, + "attackChance": 165, + "blockChance": 55, + "droplistID": "frog_3", + "attackDamage": { + "min": 0, + "max": 5 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_weak", + "magnitude": 2, + "duration": 5, + "chance": 30 + } + ] + } + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/monsterlist_v0610_monsters2.json b/AndorsTrail/res/raw-pt-rBR/monsterlist_v0610_monsters2.json new file mode 100644 index 000000000..d060ab7cf --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/monsterlist_v0610_monsters2.json @@ -0,0 +1,450 @@ +[ + { + "id": "iqhan_1a", + "iconID": "monsters_rltiles2:96", + "name": "Iqhan escravo operário", + "spawnGroup": "iqhan_1", + "monsterClass": 0, + "maxHP": 55, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 110, + "blockChance": 70, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "iqhan_1b", + "iconID": "monsters_rltiles2:96", + "name": "Iqhan escravo servo", + "spawnGroup": "iqhan_1", + "monsterClass": 0, + "maxHP": 57, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "criticalSkill": 15, + "criticalMultiplier": 2, + "blockChance": 70, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "iqhan_2a", + "iconID": "monsters_rltiles2:97", + "name": "Iqhan escravo guarda", + "spawnGroup": "iqhan_2", + "monsterClass": 0, + "maxHP": 59, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 130, + "criticalSkill": 15, + "criticalMultiplier": 2, + "blockChance": 70, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "iqhan_2b", + "iconID": "monsters_rltiles2:97", + "name": "Iqhan escravo", + "spawnGroup": "iqhan_2", + "monsterClass": 0, + "maxHP": 62, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 130, + "criticalSkill": 15, + "criticalMultiplier": 2, + "blockChance": 70, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 10 + } + }, + { + "id": "iqhan_3a", + "iconID": "monsters_rltiles2:128", + "name": "Iqhan escravo guerreiro", + "spawnGroup": "iqhan_3", + "monsterClass": 0, + "maxHP": 65, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 140, + "criticalSkill": 15, + "criticalMultiplier": 2, + "blockChance": 70, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 11 + } + }, + { + "id": "iqhan_3b", + "iconID": "monsters_rltiles2:129", + "name": "Iqhan mestre", + "spawnGroup": "iqhan_3", + "monsterClass": 0, + "maxHP": 67, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 140, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 12 + } + }, + { + "id": "iqhan_4a", + "iconID": "monsters_rltiles2:129", + "name": "Iqhan mestre", + "spawnGroup": "iqhan_4", + "monsterClass": 0, + "maxHP": 69, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 140, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 13 + } + }, + { + "id": "iqhan_4b", + "iconID": "monsters_rltiles2:133", + "name": "Iqhan mestre", + "spawnGroup": "iqhan_4", + "monsterClass": 0, + "maxHP": 71, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 140, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "iqhan", + "attackDamage": { + "min": 2, + "max": 15 + } + }, + { + "id": "iqhan_ch_1a", + "iconID": "monsters_rltiles2:135", + "name": "Iqhan invocador do caos", + "spawnGroup": "iqhan_ch_1", + "monsterClass": 0, + "maxHP": 73, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 140, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "iqhan", + "attackDamage": { + "min": 2, + "max": 15 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 2, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "iqhan_ch_1b", + "iconID": "monsters_rltiles2:135", + "name": "Iqhan invocador do caos", + "spawnGroup": "iqhan_ch_1", + "monsterClass": 0, + "maxHP": 75, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "iqhan", + "attackDamage": { + "min": 2, + "max": 14 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 2, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "iqhan_ch_2a", + "iconID": "monsters_rltiles2:134", + "name": "Iqhan servo do caos", + "spawnGroup": "iqhan_ch_2", + "monsterClass": 0, + "maxHP": 78, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "iqhan", + "attackDamage": { + "min": 2, + "max": 14 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 4, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "iqhan_ch_2b", + "iconID": "monsters_rltiles2:134", + "name": "Iqhan servo do caos", + "spawnGroup": "iqhan_ch_2", + "monsterClass": 0, + "maxHP": 79, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "criticalSkill": 25, + "criticalMultiplier": 2, + "blockChance": 75, + "droplistID": "iqhan", + "attackDamage": { + "min": 2, + "max": 13 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 4, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "iqhan_ch_3a", + "iconID": "monsters_rltiles2:136", + "name": "Iqhan mestre do caos", + "spawnGroup": "iqhan_ch_3", + "monsterClass": 0, + "maxHP": 83, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 170, + "criticalSkill": 25, + "criticalMultiplier": 2, + "blockChance": 75, + "droplistID": "iqhan_master", + "attackDamage": { + "min": 2, + "max": 13 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 4, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "iqhan_ch_3b", + "iconID": "monsters_rltiles2:137", + "name": "Iqhan mestre do caos", + "spawnGroup": "iqhan_ch_3", + "monsterClass": 0, + "maxHP": 85, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 170, + "criticalSkill": 25, + "criticalMultiplier": 2, + "blockChance": 75, + "droplistID": "iqhan_master", + "attackDamage": { + "min": 2, + "max": 13 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 4, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "iqhan_chb_1a", + "iconID": "monsters_rltiles1:19", + "name": "Iqhan besta do caos", + "spawnGroup": "iqhan_chb_1", + "monsterClass": 3, + "maxHP": 122, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 150, + "criticalSkill": 10, + "criticalMultiplier": 3, + "blockChance": 45, + "damageResistance": 9, + "droplistID": "iqhan_beast", + "attackDamage": { + "min": 0, + "max": 15 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 5, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "iqhan_chb_1b", + "iconID": "monsters_rltiles1:19", + "name": "Iqhan besta do caos", + "spawnGroup": "iqhan_chb_1", + "monsterClass": 3, + "maxHP": 140, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 150, + "criticalSkill": 10, + "criticalMultiplier": 3, + "blockChance": 45, + "damageResistance": 9, + "droplistID": "iqhan_beast", + "attackDamage": { + "min": 0, + "max": 15 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 5, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "iqhan_greeter", + "iconID": "monsters_men:8", + "name": "Rancent", + "spawnGroup": "iqhan_greeter", + "monsterClass": 0, + "unique": 1, + "phraseID": "iqhan_greeter" + }, + { + "id": "iqhan_boss", + "iconID": "monsters_rltiles1:5", + "name": "Iqhan escravagista do caos", + "spawnGroup": "iqhan_boss", + "monsterClass": 6, + "unique": 1, + "maxHP": 120, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 170, + "criticalSkill": 30, + "criticalMultiplier": 2, + "blockChance": 75, + "damageResistance": 2, + "droplistID": "iqhan_boss", + "phraseID": "iqhan_boss", + "attackDamage": { + "min": 2, + "max": 13 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 7, + "duration": 5, + "chance": 50 + }, + { + "condition": "chaotic_curse", + "magnitude": 3, + "duration": 5, + "chance": 50 + } + ] + } + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/monsterlist_v0610_npcs1.json b/AndorsTrail/res/raw-pt-rBR/monsterlist_v0610_npcs1.json new file mode 100644 index 000000000..530b683ec --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/monsterlist_v0610_npcs1.json @@ -0,0 +1,582 @@ +[ + { + "id": "lostsheep1", + "iconID": "monsters_karvis2:8", + "name": "Ovelha", + "spawnGroup": "tinlyn_lostsheep1", + "monsterClass": 4, + "unique": 1, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 10, + "blockChance": 5, + "droplistID": "tinlyn_sheep", + "phraseID": "tinlyn_lostsheep1", + "attackDamage": { + "min": 0, + "max": 1 + } + }, + { + "id": "lostsheep2", + "iconID": "monsters_karvis2:8", + "name": "Ovelha", + "spawnGroup": "tinlyn_lostsheep2", + "monsterClass": 4, + "unique": 1, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 10, + "blockChance": 5, + "droplistID": "tinlyn_sheep", + "phraseID": "tinlyn_lostsheep2", + "attackDamage": { + "min": 0, + "max": 1 + } + }, + { + "id": "lostsheep3", + "iconID": "monsters_karvis2:8", + "name": "Ovelha", + "spawnGroup": "tinlyn_lostsheep3", + "monsterClass": 4, + "unique": 1, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 10, + "blockChance": 5, + "droplistID": "tinlyn_sheep", + "phraseID": "tinlyn_lostsheep3", + "attackDamage": { + "min": 0, + "max": 1 + } + }, + { + "id": "lostsheep4", + "iconID": "monsters_karvis2:8", + "name": "Ovelha", + "spawnGroup": "tinlyn_lostsheep4", + "monsterClass": 4, + "unique": 1, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 10, + "blockChance": 5, + "droplistID": "tinlyn_sheep", + "phraseID": "tinlyn_lostsheep4", + "attackDamage": { + "min": 0, + "max": 1 + } + }, + { + "id": "sheep1", + "iconID": "monsters_karvis2:8", + "name": "Ovelha", + "spawnGroup": "tinlyn_sheep", + "monsterClass": 4, + "unique": 1, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 10, + "blockChance": 5, + "droplistID": "tinlyn_sheep", + "phraseID": "tinlyn_sheep", + "attackDamage": { + "min": 0, + "max": 1 + } + }, + { + "id": "ailshara", + "iconID": "monsters_men:8", + "name": "Ailshara", + "spawnGroup": "ailshara", + "monsterClass": 0, + "droplistID": "shop_ailshara", + "phraseID": "ailshara" + }, + { + "id": "arngyr", + "iconID": "monsters_rltiles1:65", + "name": "Arngyr", + "spawnGroup": "arngyr", + "monsterClass": 0, + "phraseID": "arngyr" + }, + { + "id": "benbyr", + "iconID": "monsters_rltiles1:74", + "name": "Benbyr", + "spawnGroup": "benbyr", + "monsterClass": 0, + "phraseID": "benbyr" + }, + { + "id": "celdar", + "iconID": "monsters_rltiles1:94", + "name": "Celdar", + "spawnGroup": "celdar", + "monsterClass": 0, + "phraseID": "celdar" + }, + { + "id": "conren", + "iconID": "monsters_karvis2:5", + "name": "Conren", + "spawnGroup": "conren", + "monsterClass": 0, + "phraseID": "conren" + }, + { + "id": "crossroads_backguard", + "iconID": "monsters_rltiles1:76", + "name": "Guarda", + "spawnGroup": "crossroads_backguard", + "monsterClass": 0, + "unique": 1, + "phraseID": "crossroads_backguard" + }, + { + "id": "crossroads_guard", + "iconID": "monsters_rltiles1:76", + "name": "Guarda", + "spawnGroup": "crossroads_guard", + "monsterClass": 0, + "phraseID": "crossroads_guard" + }, + { + "id": "crossroads_sleepguard", + "iconID": "monsters_rltiles1:76", + "name": "Guarda", + "spawnGroup": "crossroads_sleepguard", + "monsterClass": 0, + "phraseID": "crossroads_sleepguard" + }, + { + "id": "crossroads_guest", + "iconID": "monsters_rltiles1:83", + "name": "Visitante", + "spawnGroup": "crossroads_guest", + "monsterClass": 0, + "phraseID": "crossroads_guest" + }, + { + "id": "erinith", + "iconID": "monsters_rltiles1:82", + "name": "Erinith", + "spawnGroup": "erinith", + "monsterClass": 0, + "phraseID": "erinith" + }, + { + "id": "fanamor", + "iconID": "monsters_men:7", + "name": "Fanamor", + "spawnGroup": "fanamor", + "monsterClass": 0, + "phraseID": "fanamor" + }, + { + "id": "feygard_bridgeguard", + "iconID": "monsters_men2:4", + "name": "Guarda da ponte de Feygard", + "spawnGroup": "feygard_bridgeguard", + "monsterClass": 0, + "phraseID": "feygard_bridgeguard" + }, + { + "id": "fieldwasp_unique", + "iconID": "monsters_insects:1", + "name": "Vespa-das-florestas frenética", + "spawnGroup": "fieldwasp_unique", + "monsterClass": 1, + "unique": 1, + "maxHP": 70, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 200, + "criticalMultiplier": 3, + "blockChance": 150, + "droplistID": "fieldwasp_unique", + "attackDamage": { + "min": 2, + "max": 6 + } + }, + { + "id": "gallain", + "iconID": "monsters_man1:0", + "name": "Gallain", + "spawnGroup": "gallain", + "monsterClass": 0, + "droplistID": "shop_gallain", + "phraseID": "gallain" + }, + { + "id": "gandoren", + "iconID": "monsters_rltiles1:69", + "name": "Gandoren", + "spawnGroup": "gandoren", + "monsterClass": 0, + "phraseID": "gandoren" + }, + { + "id": "grimion", + "iconID": "monsters_men2:2", + "name": "Grimion", + "spawnGroup": "grimion", + "monsterClass": 0, + "droplistID": "shop_grimion", + "phraseID": "grimion" + }, + { + "id": "hadracor", + "iconID": "monsters_men2:2", + "name": "Hadracor", + "spawnGroup": "hadracor", + "monsterClass": 0, + "droplistID": "shop_hadracor", + "phraseID": "hadracor" + }, + { + "id": "kuldan", + "iconID": "monsters_rltiles1:85", + "name": "Kuldan", + "spawnGroup": "kuldan", + "monsterClass": 0, + "phraseID": "kuldan" + }, + { + "id": "kuldan_guard", + "iconID": "monsters_rltiles3:14", + "name": "Guarda de Kuldan", + "spawnGroup": "kuldan_guard", + "monsterClass": 0, + "phraseID": "kuldan_guard" + }, + { + "id": "landa", + "iconID": "monsters_men:0", + "name": "Landa", + "spawnGroup": "landa", + "monsterClass": 0, + "phraseID": "landa" + }, + { + "id": "loneford_chapelguard", + "iconID": "monsters_rltiles1:78", + "name": "Guarda da capela", + "spawnGroup": "loneford_chapelguard", + "monsterClass": 0, + "phraseID": "loneford_chapelguard" + }, + { + "id": "loneford_farmer0", + "iconID": "monsters_karvis2:1", + "name": "Agricultor", + "spawnGroup": "loneford_farmer0", + "monsterClass": 0, + "phraseID": "loneford_farmer0" + }, + { + "id": "loneford_guard0", + "iconID": "monsters_rltiles3:14", + "name": "Guarda", + "spawnGroup": "loneford_guard0", + "monsterClass": 0, + "phraseID": "loneford_guard0" + }, + { + "id": "loneford_tavern_patron", + "iconID": "monsters_karvis2:2", + "name": "Taberneiro", + "spawnGroup": "loneford_tavern_patron", + "monsterClass": 0, + "phraseID": "loneford_tavern_patron" + }, + { + "id": "loneford_villager0", + "iconID": "monsters_karvis2:0", + "name": "Aldeão", + "spawnGroup": "loneford_villager0", + "monsterClass": 0, + "phraseID": "loneford_villager0" + }, + { + "id": "loneford_villager1", + "iconID": "monsters_karvis2:1", + "name": "Aldeão", + "spawnGroup": "loneford_villager1", + "monsterClass": 0, + "phraseID": "loneford_villager1" + }, + { + "id": "loneford_villager2", + "iconID": "monsters_karvis2:3", + "name": "Aldeão", + "spawnGroup": "loneford_villager2", + "monsterClass": 0, + "phraseID": "loneford_villager2" + }, + { + "id": "loneford_villager3", + "iconID": "monsters_karvis2:5", + "name": "Aldeão", + "spawnGroup": "loneford_villager3", + "monsterClass": 0, + "phraseID": "loneford_villager3" + }, + { + "id": "loneford_villager4", + "iconID": "monsters_men:2", + "name": "Aldeão", + "spawnGroup": "loneford_villager4", + "monsterClass": 0, + "phraseID": "loneford_villager4" + }, + { + "id": "loneford_wellguard", + "iconID": "monsters_rltiles1:72", + "name": "Guarda", + "spawnGroup": "loneford_wellguard", + "monsterClass": 0, + "phraseID": "loneford_wellguard" + }, + { + "id": "mienn", + "iconID": "monsters_rltiles1:87", + "name": "Mienn", + "spawnGroup": "mienn", + "monsterClass": 0, + "phraseID": "mienn" + }, + { + "id": "minarra", + "iconID": "monsters_rltiles1:86", + "name": "Minarra", + "spawnGroup": "minarra", + "monsterClass": 0, + "droplistID": "shop_minarra", + "phraseID": "minarra" + }, + { + "id": "puny_warehouserat", + "iconID": "monsters_rats:1", + "name": "Ratazana-dos-celeiros", + "spawnGroup": "puny_warehouserat", + "monsterClass": 4, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 50, + "blockChance": 30, + "droplistID": "rat", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "rolwynn", + "iconID": "monsters_rltiles1:77", + "name": "Rolwynn", + "spawnGroup": "rolwynn", + "monsterClass": 0, + "phraseID": "rolwynn" + }, + { + "id": "sienn", + "iconID": "monsters_rltiles1:66", + "name": "Sienn", + "spawnGroup": "sienn", + "monsterClass": 0, + "phraseID": "sienn" + }, + { + "id": "sienn_pet", + "iconID": "monsters_misc:0", + "name": "Animal de estimação de Sienn", + "spawnGroup": "sienn_pet", + "monsterClass": 7, + "phraseID": "sienn_pet" + }, + { + "id": "siola", + "iconID": "monsters_rltiles1:90", + "name": "Siola", + "spawnGroup": "siola", + "monsterClass": 0, + "droplistID": "shop_siola", + "phraseID": "siola" + }, + { + "id": "taevinn", + "iconID": "monsters_karvis2:5", + "name": "Taevinn", + "spawnGroup": "taevinn", + "monsterClass": 0, + "phraseID": "taevinn" + }, + { + "id": "talion", + "iconID": "monsters_men2:8", + "name": "Talion", + "spawnGroup": "talion", + "monsterClass": 0, + "droplistID": "shop_talion", + "phraseID": "talion" + }, + { + "id": "telund", + "iconID": "monsters_rltiles1:74", + "name": "Telund", + "spawnGroup": "telund", + "monsterClass": 0, + "phraseID": "telund" + }, + { + "id": "tinlyn", + "iconID": "monsters_karvis2:7", + "name": "Tinlyn", + "spawnGroup": "tinlyn", + "monsterClass": 0, + "phraseID": "tinlyn" + }, + { + "id": "wallach", + "iconID": "monsters_rltiles1:75", + "name": "Wallach", + "spawnGroup": "wallach", + "monsterClass": 0, + "phraseID": "wallach" + }, + { + "id": "woodcutter_0", + "iconID": "monsters_men:0", + "name": "Lenhador", + "spawnGroup": "woodcutter_0", + "monsterClass": 0, + "phraseID": "woodcutter_0" + }, + { + "id": "woodcutter_2", + "iconID": "monsters_men:0", + "name": "Lenhador", + "spawnGroup": "woodcutter_2", + "monsterClass": 0, + "phraseID": "woodcutter_2" + }, + { + "id": "woodcutter_3", + "iconID": "monsters_men2:2", + "name": "Lenhador", + "spawnGroup": "woodcutter_3", + "monsterClass": 0, + "phraseID": "woodcutter_3" + }, + { + "id": "woodcutter_4", + "iconID": "monsters_rltiles1:93", + "name": "Lenhador", + "spawnGroup": "woodcutter_4", + "monsterClass": 0, + "phraseID": "woodcutter_4" + }, + { + "id": "woodcutter_5", + "iconID": "monsters_men2:2", + "name": "Lenhador", + "spawnGroup": "woodcutter_5", + "monsterClass": 0, + "phraseID": "woodcutter_5" + }, + { + "id": "rogorn", + "iconID": "monsters_rltiles1:63", + "name": "Rogorn", + "spawnGroup": "rogorn", + "monsterClass": 0, + "unique": 1, + "maxHP": 145, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "blockChance": 120, + "damageResistance": 5, + "droplistID": "rogorn", + "phraseID": "rogorn", + "attackDamage": { + "min": 5, + "max": 9 + } + }, + { + "id": "rogorn_henchman", + "iconID": "monsters_rogue1:0", + "name": "Escudeiro de Rogorn", + "spawnGroup": "rogorn_henchman", + "monsterClass": 0, + "unique": 1, + "maxHP": 130, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "blockChance": 120, + "damageResistance": 4, + "droplistID": "rogorn_henchman", + "phraseID": "rogorn_henchman", + "attackDamage": { + "min": 5, + "max": 8 + } + }, + { + "id": "buceth", + "iconID": "monsters_men2:7", + "name": "Buceth", + "spawnGroup": "buceth", + "monsterClass": 0, + "unique": 1, + "maxHP": 75, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 200, + "criticalMultiplier": 2, + "blockChance": 120, + "damageResistance": 4, + "droplistID": "buceth", + "phraseID": "buceth", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "gauward", + "iconID": "monsters_mage2:0", + "name": "Gauward", + "spawnGroup": "gauward", + "monsterClass": 0, + "phraseID": "gauward" + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/monsterlist_v0611_monsters1.json b/AndorsTrail/res/raw-pt-rBR/monsterlist_v0611_monsters1.json new file mode 100644 index 000000000..37197929d --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/monsterlist_v0611_monsters1.json @@ -0,0 +1,1862 @@ +[ + { + "id": "cbeetle_1", + "iconID": "monsters_rltiles2:63", + "name": "Besouro-carniça jovem", + "spawnGroup": "scaradon_1", + "monsterClass": 1, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "blockChance": 30, + "damageResistance": 9, + "droplistID": "scaradon", + "attackDamage": { + "min": 0, + "max": 5 + } + }, + { + "id": "cbeetle_2", + "iconID": "monsters_rltiles2:63", + "name": "Besouro-carniça", + "spawnGroup": "scaradon_1", + "monsterClass": 1, + "maxHP": 51, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 75, + "blockChance": 30, + "damageResistance": 9, + "droplistID": "scaradon", + "attackDamage": { + "min": 0, + "max": 5 + } + }, + { + "id": "scaradon_1", + "iconID": "monsters_rltiles1:98", + "name": "Scaradon jovem", + "spawnGroup": "scaradon_1", + "monsterClass": 1, + "maxHP": 32, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 50, + "blockChance": 30, + "damageResistance": 15, + "droplistID": "scaradon", + "attackDamage": { + "min": 0, + "max": 4 + } + }, + { + "id": "scaradon_2", + "iconID": "monsters_rltiles1:98", + "name": "Scaradon pequeno", + "spawnGroup": "scaradon_2", + "monsterClass": 1, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 50, + "blockChance": 30, + "damageResistance": 15, + "droplistID": "scaradon", + "attackDamage": { + "min": 1, + "max": 4 + } + }, + { + "id": "scaradon_3", + "iconID": "monsters_rltiles1:97", + "name": "Scaradon", + "spawnGroup": "scaradon_2", + "monsterClass": 1, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 50, + "blockChance": 30, + "damageResistance": 17, + "droplistID": "scaradon", + "attackDamage": { + "min": 0, + "max": 4 + } + }, + { + "id": "scaradon_4", + "iconID": "monsters_rltiles1:97", + "name": "Scaradon resistente", + "spawnGroup": "scaradon_2", + "monsterClass": 1, + "maxHP": 37, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 50, + "blockChance": 30, + "damageResistance": 17, + "droplistID": "scaradon", + "attackDamage": { + "min": 1, + "max": 4 + } + }, + { + "id": "scaradon_5", + "iconID": "monsters_rltiles1:97", + "name": "Scaradon casca-dura", + "spawnGroup": "scaradon_3", + "monsterClass": 1, + "maxHP": 38, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 50, + "blockChance": 30, + "damageResistance": 18, + "droplistID": "scaradon_b", + "attackDamage": { + "min": 1, + "max": 5 + } + }, + { + "id": "mwolf_1", + "iconID": "monsters_dogs:3", + "name": "Filhote de lobo da montanha", + "spawnGroup": "mwolf_1", + "monsterClass": 4, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 80, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 40, + "damageResistance": 3, + "droplistID": "mwolf", + "attackDamage": { + "min": 2, + "max": 7 + } + }, + { + "id": "mwolf_2", + "iconID": "monsters_dogs:3", + "name": "Lobo da montanha jovem", + "spawnGroup": "mwolf_1", + "monsterClass": 4, + "maxHP": 52, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 80, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 44, + "damageResistance": 3, + "droplistID": "mwolf", + "attackDamage": { + "min": 3, + "max": 7 + } + }, + { + "id": "mwolf_3", + "iconID": "monsters_dogs:2", + "name": "Raposa da montanha jovem", + "spawnGroup": "mwolf_1", + "monsterClass": 4, + "maxHP": 56, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 80, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 48, + "damageResistance": 4, + "droplistID": "mwolf", + "attackDamage": { + "min": 3, + "max": 7 + } + }, + { + "id": "mwolf_4", + "iconID": "monsters_dogs:2", + "name": "Raposa da montanha", + "spawnGroup": "mwolf_2", + "monsterClass": 4, + "maxHP": 60, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 85, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 52, + "damageResistance": 4, + "droplistID": "mwolf", + "attackDamage": { + "min": 3, + "max": 8 + } + }, + { + "id": "mwolf_5", + "iconID": "monsters_dogs:2", + "name": "Raposa da montanha feroz", + "spawnGroup": "mwolf_2", + "monsterClass": 4, + "maxHP": 64, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 85, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 54, + "damageResistance": 5, + "droplistID": "mwolf", + "attackDamage": { + "min": 3, + "max": 8 + } + }, + { + "id": "mwolf_6", + "iconID": "monsters_dogs:4", + "name": "Lobo da montanha raivoso", + "spawnGroup": "mwolf_2", + "monsterClass": 4, + "maxHP": 67, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 56, + "damageResistance": 5, + "droplistID": "mwolf", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "mwolf_7", + "iconID": "monsters_dogs:4", + "name": "Lobo da montanha forte", + "spawnGroup": "mwolf_3", + "monsterClass": 4, + "maxHP": 73, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 57, + "damageResistance": 6, + "droplistID": "mwolf", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "mwolf_8", + "iconID": "monsters_dogs:4", + "name": "Lobo da montanha feroz", + "spawnGroup": "mwolf_3", + "monsterClass": 4, + "maxHP": 78, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 59, + "damageResistance": 6, + "droplistID": "mwolf_b", + "attackDamage": { + "min": 3, + "max": 10 + } + }, + { + "id": "mbrute_1", + "iconID": "monsters_rltiles2:35", + "name": "Besta da monhtanha jovem", + "spawnGroup": "mbrute_1", + "monsterClass": 5, + "maxHP": 148, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 0, + "max": 14 + } + }, + { + "id": "mbrute_2", + "iconID": "monsters_rltiles2:35", + "name": "Besta da monhtanha fraca", + "spawnGroup": "mbrute_1", + "monsterClass": 5, + "maxHP": 157, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 0, + "max": 14 + } + }, + { + "id": "mbrute_3", + "iconID": "monsters_rltiles2:36", + "name": "Besta da monhtanha forrada de branco", + "spawnGroup": "mbrute_1", + "monsterClass": 5, + "maxHP": 166, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 0, + "max": 14 + } + }, + { + "id": "mbrute_4", + "iconID": "monsters_rltiles2:35", + "name": "Besta da monhtanha", + "spawnGroup": "mbrute_2", + "monsterClass": 5, + "maxHP": 175, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 0, + "max": 14 + } + }, + { + "id": "mbrute_5", + "iconID": "monsters_rltiles2:36", + "name": "Besta da monhtanha larga", + "spawnGroup": "mbrute_2", + "monsterClass": 5, + "maxHP": 184, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 0, + "max": 14 + } + }, + { + "id": "mbrute_6", + "iconID": "monsters_rltiles2:34", + "name": "Besta da monhtanha rápida", + "spawnGroup": "mbrute_2", + "monsterClass": 5, + "maxHP": 82, + "maxAP": 12, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 0, + "max": 14 + } + }, + { + "id": "mbrute_7", + "iconID": "monsters_rltiles2:34", + "name": "Besta da monhtanha veloz", + "spawnGroup": "mbrute_3", + "monsterClass": 5, + "maxHP": 93, + "maxAP": 12, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 0, + "max": 15 + } + }, + { + "id": "mbrute_8", + "iconID": "monsters_rltiles2:34", + "name": "Besta da monhtanha agressiva", + "spawnGroup": "mbrute_3", + "monsterClass": 5, + "maxHP": 104, + "maxAP": 12, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 1, + "max": 15 + } + }, + { + "id": "mbrute_9", + "iconID": "monsters_rltiles2:33", + "name": "Besta da monhtanha forte", + "spawnGroup": "mbrute_3", + "monsterClass": 5, + "maxHP": 115, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 1, + "max": 15 + } + }, + { + "id": "mbrute_10", + "iconID": "monsters_rltiles2:33", + "name": "Besta da monhtanha resistente", + "spawnGroup": "mbrute_4", + "monsterClass": 5, + "maxHP": 126, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 2, + "max": 15 + } + }, + { + "id": "mbrute_11", + "iconID": "monsters_rltiles2:33", + "name": "Besta da monhtanha destemida", + "spawnGroup": "mbrute_4", + "monsterClass": 5, + "maxHP": 137, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute_b", + "attackDamage": { + "min": 2, + "max": 15 + } + }, + { + "id": "mbrute_12", + "iconID": "monsters_rltiles2:33", + "name": "Besta da monhtanha enfurecida", + "spawnGroup": "mbrute_4", + "monsterClass": 5, + "maxHP": 148, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 3, + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute_b", + "attackDamage": { + "min": 2, + "max": 16 + } + }, + { + "id": "erumen_1", + "iconID": "monsters_rltiles2:114", + "name": "Lagarto Erumem jovem", + "spawnGroup": "erumen_1", + "monsterClass": 7, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "erumen", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "erumen_2", + "iconID": "monsters_rltiles2:114", + "name": "Lagarto Erumem malhado", + "spawnGroup": "erumen_1", + "monsterClass": 7, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "erumen", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "erumen_3", + "iconID": "monsters_rltiles2:114", + "name": "Lagarto Erumem", + "spawnGroup": "erumen_2", + "monsterClass": 7, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "erumen", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "erumen_4", + "iconID": "monsters_rltiles2:115", + "name": "Lagarto Erumem forte", + "spawnGroup": "erumen_2", + "monsterClass": 7, + "maxHP": 79, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "erumen", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "erumen_5", + "iconID": "monsters_rltiles2:115", + "name": "Lagarto Erumem vil", + "spawnGroup": "erumen_3", + "monsterClass": 7, + "maxHP": 89, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "erumen", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "erumen_6", + "iconID": "monsters_rltiles2:117", + "name": "Lagarto Erumem resistente", + "spawnGroup": "erumen_3", + "monsterClass": 7, + "maxHP": 91, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 90, + "damageResistance": 8, + "droplistID": "erumen", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "erumen_7", + "iconID": "monsters_rltiles2:117", + "name": "Lagarto Erumem endurecido", + "spawnGroup": "erumen_4", + "monsterClass": 7, + "maxHP": 93, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 90, + "damageResistance": 12, + "droplistID": "erumen_b", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "plaguesp_1", + "iconID": "monsters_rltiles2:61", + "name": "Réptil-praga fraco", + "spawnGroup": "plaguespider_1", + "monsterClass": 1, + "maxHP": 55, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 140, + "droplistID": "plaguespider", + "attackDamage": { + "min": 1, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 1, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 1, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_2", + "iconID": "monsters_rltiles2:61", + "name": "Réptil-praga", + "spawnGroup": "plaguespider_1", + "monsterClass": 1, + "maxHP": 57, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 140, + "droplistID": "plaguespider", + "attackDamage": { + "min": 1, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 3, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 2, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_3", + "iconID": "monsters_rltiles2:61", + "name": "Réptil-praga robusto", + "spawnGroup": "plaguespider_1", + "monsterClass": 1, + "maxHP": 59, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 140, + "droplistID": "plaguespider", + "attackDamage": { + "min": 1, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 3, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 2, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_4", + "iconID": "monsters_rltiles2:61", + "name": "Réptil-praga preto", + "spawnGroup": "plaguespider_2", + "monsterClass": 1, + "maxHP": 61, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 150, + "droplistID": "plaguespider", + "attackDamage": { + "min": 1, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 4, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 3, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_5", + "iconID": "monsters_rltiles2:151", + "name": "Percevejo-praga", + "spawnGroup": "plaguespider_2", + "monsterClass": 1, + "maxHP": 62, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 150, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 4, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 3, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_6", + "iconID": "monsters_rltiles2:151", + "name": "Percevejo-praga de de casca dura", + "spawnGroup": "plaguespider_2", + "monsterClass": 1, + "maxHP": 63, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 150, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 5, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 4, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_7", + "iconID": "monsters_rltiles2:151", + "name": "Percevejo-praga resistente", + "spawnGroup": "plaguespider_3", + "monsterClass": 1, + "maxHP": 64, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 70, + "criticalMultiplier": 3, + "blockChance": 155, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 5, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 4, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_8", + "iconID": "monsters_rltiles2:153", + "name": "Percevejo-praga peludo", + "spawnGroup": "plaguespider_3", + "monsterClass": 1, + "maxHP": 65, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 70, + "criticalMultiplier": 3, + "blockChance": 155, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 6, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 5, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "plaguesp_9", + "iconID": "monsters_rltiles2:153", + "name": "Percevejo-praga peludo resistente", + "spawnGroup": "plaguespider_3", + "monsterClass": 1, + "maxHP": 66, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 70, + "criticalMultiplier": 3, + "blockChance": 160, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 6, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 5, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "plaguesp_10", + "iconID": "monsters_rltiles2:151", + "name": "Percevejo-praga vil", + "spawnGroup": "plaguespider_4", + "monsterClass": 1, + "maxHP": 67, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 85, + "criticalSkill": 70, + "criticalMultiplier": 3, + "blockChance": 160, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 6, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 5, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "plaguesp_11", + "iconID": "monsters_rltiles2:153", + "name": "Percevejo-praga aninhando", + "spawnGroup": "plaguespider_4", + "monsterClass": 1, + "maxHP": 68, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 85, + "criticalSkill": 70, + "criticalMultiplier": 3, + "blockChance": 165, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 6, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 5, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "plaguesp_12", + "iconID": "monsters_rltiles2:38", + "name": "Servo Percevejo-praga", + "spawnGroup": "plaguespider_5", + "monsterClass": 6, + "maxHP": 65, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 85, + "criticalSkill": 120, + "criticalMultiplier": 3, + "blockChance": 165, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 7, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 6, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "plaguesp_13", + "iconID": "monsters_rltiles2:38", + "name": "Mestre Percevejo-praga", + "spawnGroup": "plaguespider_6", + "monsterClass": 6, + "maxHP": 65, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 85, + "criticalSkill": 120, + "criticalMultiplier": 3, + "blockChance": 175, + "damageResistance": 2, + "droplistID": "plaguespider_b", + "attackDamage": { + "min": 2, + "max": 8 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 7, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 6, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "allaceph_1", + "iconID": "monsters_rltiles2:101", + "name": "Allaceph jovem", + "spawnGroup": "allaceph_1", + "monsterClass": 2, + "maxHP": 90, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 105, + "damageResistance": 1, + "droplistID": "allaceph", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 4, + "max": 4 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 2, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "allaceph_2", + "iconID": "monsters_rltiles2:101", + "name": "Allaceph", + "spawnGroup": "allaceph_1", + "monsterClass": 2, + "maxHP": 94, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 105, + "damageResistance": 1, + "droplistID": "allaceph", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 4, + "max": 4 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 2, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "allaceph_3", + "iconID": "monsters_rltiles2:102", + "name": "Allaceph forte", + "spawnGroup": "allaceph_2", + "monsterClass": 2, + "maxHP": 101, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 105, + "damageResistance": 2, + "droplistID": "allaceph", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 4, + "max": 4 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 2, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "allaceph_4", + "iconID": "monsters_rltiles2:102", + "name": "Allaceph resistente", + "spawnGroup": "allaceph_2", + "monsterClass": 2, + "maxHP": 111, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 110, + "damageResistance": 2, + "droplistID": "allaceph", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 4, + "max": 4 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 3, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "allaceph_5", + "iconID": "monsters_rltiles2:103", + "name": "Allaceph radiante", + "spawnGroup": "allaceph_3", + "monsterClass": 2, + "maxHP": 124, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 110, + "damageResistance": 3, + "droplistID": "allaceph_b", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 6, + "max": 6 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 3, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "allaceph_6", + "iconID": "monsters_rltiles2:103", + "name": "Ancião Allaceph", + "spawnGroup": "allaceph_3", + "monsterClass": 2, + "maxHP": 133, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 115, + "damageResistance": 3, + "droplistID": "allaceph_b", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 7, + "max": 7 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 3, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "vaeregh_1", + "iconID": "monsters_rltiles1:42", + "name": "Vaeregh", + "spawnGroup": "allaceph_4", + "monsterClass": 2, + "maxHP": 149, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 120, + "damageResistance": 4, + "droplistID": "allaceph", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 10, + "max": 10 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 4, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "irdegh_sp_1", + "iconID": "monsters_rltiles2:26", + "name": "Irdegh filhote", + "spawnGroup": "irdegh_spawn", + "monsterClass": 7, + "maxHP": 57, + "maxAP": 12, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 80, + "droplistID": "irdegh_spawn", + "attackDamage": { + "min": 0, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_irdegh", + "magnitude": 2, + "duration": 3, + "chance": 10 + } + ] + } + }, + { + "id": "irdegh_sp_2", + "iconID": "monsters_rltiles2:26", + "name": "Irdegh filhote", + "spawnGroup": "irdegh_spawn", + "monsterClass": 7, + "maxHP": 68, + "maxAP": 12, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 80, + "droplistID": "irdegh_spawn", + "attackDamage": { + "min": 0, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_irdegh", + "magnitude": 2, + "duration": 3, + "chance": 10 + } + ] + } + }, + { + "id": "irdegh_1", + "iconID": "monsters_rltiles2:15", + "name": "Irdegh", + "spawnGroup": "irdegh_1", + "monsterClass": 7, + "maxHP": 115, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 60, + "damageResistance": 10, + "droplistID": "irdegh", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_irdegh", + "magnitude": 3, + "duration": 4, + "chance": 50 + } + ] + } + }, + { + "id": "irdegh_2", + "iconID": "monsters_rltiles2:15", + "name": "Irdegh venenoso", + "spawnGroup": "irdegh_2", + "monsterClass": 7, + "maxHP": 120, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 60, + "damageResistance": 11, + "droplistID": "irdegh", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_irdegh", + "magnitude": 3, + "duration": 4, + "chance": 50 + } + ] + } + }, + { + "id": "irdegh_3", + "iconID": "monsters_rltiles2:14", + "name": "Irdegh farpado", + "spawnGroup": "irdegh_3", + "monsterClass": 7, + "maxHP": 125, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 60, + "damageResistance": 11, + "droplistID": "irdegh", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_irdegh", + "magnitude": 3, + "duration": 4, + "chance": 50 + } + ] + } + }, + { + "id": "irdegh_4", + "iconID": "monsters_rltiles2:14", + "name": "Irdegh farpado ancião", + "spawnGroup": "irdegh_4", + "monsterClass": 7, + "maxHP": 130, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "criticalSkill": 30, + "criticalMultiplier": 2, + "blockChance": 60, + "damageResistance": 14, + "droplistID": "irdegh_b", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_irdegh", + "magnitude": 3, + "duration": 4, + "chance": 70 + } + ] + } + }, + { + "id": "maonit_1", + "iconID": "monsters_rltiles1:104", + "name": "Troll Maonit", + "spawnGroup": "maonit_1", + "monsterClass": 5, + "maxHP": 255, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 10, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 4, + "droplistID": "maonit", + "attackDamage": { + "min": 1, + "max": 20 + } + }, + { + "id": "maonit_2", + "iconID": "monsters_rltiles1:104", + "name": "Troll Maonit gigante", + "spawnGroup": "maonit_1", + "monsterClass": 5, + "maxHP": 270, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 10, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 4, + "droplistID": "maonit", + "attackDamage": { + "min": 1, + "max": 20 + } + }, + { + "id": "maonit_3", + "iconID": "monsters_rltiles1:104", + "name": "Troll Maonit forte", + "spawnGroup": "maonit_2", + "monsterClass": 5, + "maxHP": 285, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 20, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 5, + "droplistID": "maonit", + "attackDamage": { + "min": 1, + "max": 20 + } + }, + { + "id": "maonit_4", + "iconID": "monsters_rltiles1:107", + "name": "Besta Maonit", + "spawnGroup": "maonit_2", + "monsterClass": 5, + "maxHP": 290, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 20, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 5, + "droplistID": "maonit", + "attackDamage": { + "min": 1, + "max": 20 + } + }, + { + "id": "maonit_5", + "iconID": "monsters_rltiles1:107", + "name": "Besta Maonit resistente", + "spawnGroup": "maonit_3", + "monsterClass": 5, + "maxHP": 310, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 6, + "droplistID": "maonit", + "attackDamage": { + "min": 1, + "max": 20 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "stunned", + "magnitude": 1, + "duration": 3, + "chance": 10 + } + ] + } + }, + { + "id": "maonit_6", + "iconID": "monsters_rltiles1:107", + "name": "Besta Maonit resistente", + "spawnGroup": "maonit_3", + "monsterClass": 5, + "maxHP": 320, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 6, + "droplistID": "maonit", + "attackDamage": { + "min": 1, + "max": 20 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "stunned", + "magnitude": 1, + "duration": 3, + "chance": 10 + } + ] + } + }, + { + "id": "arulir_1", + "iconID": "monsters_rltiles1:13", + "name": "Arulir", + "spawnGroup": "arulir_1", + "monsterClass": 5, + "maxHP": 325, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 8, + "droplistID": "arulir", + "attackDamage": { + "min": 1, + "max": 20 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "stunned", + "magnitude": 1, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "arulir_2", + "iconID": "monsters_rltiles1:13", + "name": "Arulir gigante", + "spawnGroup": "arulir_1", + "monsterClass": 5, + "maxHP": 330, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 8, + "droplistID": "arulir", + "attackDamage": { + "min": 1, + "max": 20 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "stunned", + "magnitude": 1, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "burrower_1", + "iconID": "monsters_rltiles2:164", + "name": "Burrower larval da caverna", + "spawnGroup": "burrower_1", + "monsterClass": 1, + "maxHP": 30, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 95, + "blockChance": 80, + "damageResistance": 2, + "droplistID": "burrower", + "attackDamage": { + "min": 1, + "max": 25 + } + }, + { + "id": "burrower_2", + "iconID": "monsters_rltiles2:164", + "name": "Burrower da caverna", + "spawnGroup": "burrower_1", + "monsterClass": 1, + "maxHP": 37, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 95, + "blockChance": 80, + "damageResistance": 2, + "droplistID": "burrower", + "attackDamage": { + "min": 1, + "max": 25 + } + }, + { + "id": "burrower_3", + "iconID": "monsters_rltiles2:165", + "name": "Burrower larval forte", + "spawnGroup": "burrower_2", + "monsterClass": 1, + "maxHP": 44, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 95, + "blockChance": 80, + "damageResistance": 2, + "droplistID": "burrower", + "attackDamage": { + "min": 1, + "max": 25 + } + }, + { + "id": "burrower_4", + "iconID": "monsters_rltiles2:165", + "name": "Burrower larval gigante", + "spawnGroup": "burrower_3", + "monsterClass": 1, + "maxHP": 75, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 95, + "blockChance": 80, + "damageResistance": 2, + "droplistID": "burrower", + "attackDamage": { + "min": 1, + "max": 25 + } + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/monsterlist_v0611_npcs1.json b/AndorsTrail/res/raw-pt-rBR/monsterlist_v0611_npcs1.json new file mode 100644 index 000000000..7cecfd4bb --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/monsterlist_v0611_npcs1.json @@ -0,0 +1,176 @@ +[ + { + "id": "ulirfendor", + "iconID": "monsters_rltiles1:84", + "name": "Ulirfendor", + "spawnGroup": "ulirfendor", + "monsterClass": 0, + "unique": 1, + "maxHP": 288, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 30, + "criticalMultiplier": 2, + "blockChance": 60, + "damageResistance": 6, + "droplistID": "ulirfendor", + "phraseID": "ulirfendor", + "attackDamage": { + "min": 1, + "max": 16 + } + }, + { + "id": "gylew", + "iconID": "monsters_mage2:0", + "name": "Gylew", + "spawnGroup": "gylew", + "monsterClass": 0, + "phraseID": "gylew" + }, + { + "id": "gylew_henchman", + "iconID": "monsters_men:8", + "name": "Escudeiro de Gylew", + "spawnGroup": "gylew_henchman", + "monsterClass": 0, + "phraseID": "gylew_henchman" + }, + { + "id": "toszylae", + "iconID": "monsters_liches:1", + "name": "Toszylae", + "spawnGroup": "toszylae", + "monsterClass": 6, + "unique": 1, + "maxHP": 207, + "maxAP": 8, + "moveCost": 5, + "attackCost": 2, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 120, + "damageResistance": 4, + "droplistID": "toszylae", + "phraseID": "toszylae", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 6, + "max": 6 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 3, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "toszylae_guard", + "iconID": "monsters_rltiles1:20", + "name": "Guardião radiante", + "spawnGroup": "toszylae_guard", + "monsterClass": 2, + "unique": 1, + "maxHP": 320, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 120, + "damageResistance": 4, + "droplistID": "toszylae_guard", + "phraseID": "toszylae_guard", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 5, + "max": 5 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 2, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "thorin", + "iconID": "monsters_rltiles1:66", + "name": "Thorin", + "spawnGroup": "thorin", + "monsterClass": 0, + "droplistID": "shop_thorin", + "phraseID": "thorin" + }, + { + "id": "lonelyhouse_sp", + "iconID": "monsters_rats:1", + "name": "Ratazana de porão", + "spawnGroup": "lonelyhouse_sp", + "monsterClass": 4, + "unique": 1, + "maxHP": 79, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 180, + "damageResistance": 4, + "droplistID": "lonelyhouse_sp", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "algangror", + "iconID": "monsters_rltiles1:68", + "name": "Algangror", + "spawnGroup": "algangror", + "monsterClass": 0, + "unique": 1, + "maxHP": 241, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 200, + "criticalMultiplier": 2, + "blockChance": 120, + "damageResistance": 4, + "droplistID": "algangror", + "phraseID": "algangror", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "remgard_bridge", + "iconID": "monsters_men2:4", + "name": "Vigia da ponte", + "spawnGroup": "remgard_bridge", + "monsterClass": 0, + "unique": 1, + "phraseID": "remgard_bridge" + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/monsterlist_v0611_npcs2.json b/AndorsTrail/res/raw-pt-rBR/monsterlist_v0611_npcs2.json new file mode 100644 index 000000000..d93ee567c --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/monsterlist_v0611_npcs2.json @@ -0,0 +1,580 @@ +[ + { + "id": "ingus", + "iconID": "monsters_rltiles1:94", + "name": "Ingus", + "spawnGroup": "ingus", + "monsterClass": 0, + "phraseID": "ingus" + }, + { + "id": "elwyl", + "iconID": "monsters_rltiles3:17", + "name": "Elwyl", + "spawnGroup": "elwyl", + "monsterClass": 0, + "phraseID": "elwyl" + }, + { + "id": "elwel", + "iconID": "monsters_rltiles3:17", + "name": "Elwel", + "spawnGroup": "elwel", + "monsterClass": 0, + "phraseID": "elwel" + }, + { + "id": "hjaldar", + "iconID": "monsters_rltiles1:70", + "name": "Hjaldar", + "spawnGroup": "hjaldar", + "monsterClass": 0, + "droplistID": "shop_hjaldar", + "phraseID": "hjaldar" + }, + { + "id": "norath", + "iconID": "monsters_ld1:8", + "name": "Norath", + "spawnGroup": "norath", + "monsterClass": 0, + "phraseID": "norath" + }, + { + "id": "rothses", + "iconID": "monsters_ld1:14", + "name": "Rothses", + "spawnGroup": "rothses", + "monsterClass": 0, + "droplistID": "shop_rothses", + "phraseID": "rothses" + }, + { + "id": "duaina", + "iconID": "monsters_ld1:154", + "name": "Duaina", + "spawnGroup": "duaina", + "monsterClass": 0, + "phraseID": "duaina" + }, + { + "id": "rg_villager1", + "iconID": "monsters_ld1:132", + "name": "Cidadão comum", + "spawnGroup": "remgard_villager1", + "monsterClass": 0, + "phraseID": "remgard_villager1" + }, + { + "id": "rg_villager2", + "iconID": "monsters_ld1:20", + "name": "Cidadão comum", + "spawnGroup": "remgard_villager2", + "monsterClass": 0, + "phraseID": "remgard_villager2" + }, + { + "id": "rg_villager3", + "iconID": "monsters_ld1:134", + "name": "Cidadão comum", + "spawnGroup": "remgard_villager3", + "monsterClass": 0, + "phraseID": "remgard_villager3" + }, + { + "id": "jhaeld", + "iconID": "monsters_mage:0", + "name": "Jhaeld", + "spawnGroup": "jhaeld", + "monsterClass": 0, + "phraseID": "jhaeld" + }, + { + "id": "krell", + "iconID": "monsters_men2:6", + "name": "Krell", + "spawnGroup": "krell", + "monsterClass": 0, + "phraseID": "krell" + }, + { + "id": "elythom_kn1", + "iconID": "monsters_men:3", + "name": "Cavaleiro de Elythom", + "spawnGroup": "elythom_knight1", + "monsterClass": 0, + "phraseID": "elythom_knight1" + }, + { + "id": "elythom_kn2", + "iconID": "monsters_men:3", + "name": "Cavaleiro de Elythom", + "spawnGroup": "elythom_knight2", + "monsterClass": 0, + "phraseID": "elythom_knight2" + }, + { + "id": "almars", + "iconID": "monsters_rogue1:0", + "name": "Almars", + "spawnGroup": "almars", + "monsterClass": 0, + "phraseID": "almars" + }, + { + "id": "arghes", + "iconID": "monsters_rogue1:0", + "name": "Arghes", + "spawnGroup": "arghes", + "monsterClass": 0, + "droplistID": "shop_arghes", + "phraseID": "arghes" + }, + { + "id": "arnal", + "iconID": "monsters_ld1:28", + "name": "Arnal", + "spawnGroup": "arnal", + "monsterClass": 0, + "droplistID": "shop_arnal", + "phraseID": "arnal" + }, + { + "id": "atash", + "iconID": "monsters_ld1:38", + "name": "Aatash", + "spawnGroup": "atash", + "monsterClass": 0, + "phraseID": "atash" + }, + { + "id": "caeda", + "iconID": "monsters_ld1:145", + "name": "Caeda", + "spawnGroup": "caeda", + "monsterClass": 0, + "phraseID": "caeda" + }, + { + "id": "carthe", + "iconID": "monsters_man1:0", + "name": "Carthe", + "spawnGroup": "carthe", + "monsterClass": 0, + "phraseID": "carthe" + }, + { + "id": "chael", + "iconID": "monsters_men:0", + "name": "Chael", + "spawnGroup": "chael", + "monsterClass": 0, + "phraseID": "chael" + }, + { + "id": "easturlie", + "iconID": "monsters_men:6", + "name": "Easturlie", + "spawnGroup": "easturlie", + "monsterClass": 0, + "phraseID": "easturlie" + }, + { + "id": "emerei", + "iconID": "monsters_ld1:27", + "name": "Emerei", + "spawnGroup": "emerei", + "monsterClass": 0, + "phraseID": "emerei" + }, + { + "id": "ervelyn", + "iconID": "monsters_ld1:228", + "name": "Ervelyn", + "spawnGroup": "ervelyn", + "monsterClass": 0, + "droplistID": "shop_ervelyn", + "phraseID": "ervelyn" + }, + { + "id": "freen", + "iconID": "monsters_rltiles1:77", + "name": "Freen", + "spawnGroup": "freen", + "monsterClass": 0, + "phraseID": "freen" + }, + { + "id": "janach", + "iconID": "monsters_rltiles3:8", + "name": "Janach", + "spawnGroup": "janach", + "monsterClass": 0, + "phraseID": "janach" + }, + { + "id": "kendelow", + "iconID": "monsters_man1:0", + "name": "Kendelow", + "spawnGroup": "kendelow", + "monsterClass": 0, + "droplistID": "shop_kendelow", + "phraseID": "kendelow" + }, + { + "id": "larni", + "iconID": "monsters_ld1:26", + "name": "Larni", + "spawnGroup": "larni", + "monsterClass": 0, + "phraseID": "larni" + }, + { + "id": "maelf", + "iconID": "monsters_ld1:53", + "name": "Maelf", + "spawnGroup": "maelf", + "monsterClass": 0, + "phraseID": "maelf" + }, + { + "id": "morgisia", + "iconID": "monsters_rltiles3:5", + "name": "Morgisia", + "spawnGroup": "morgisia", + "monsterClass": 0, + "phraseID": "morgisia" + }, + { + "id": "perester", + "iconID": "monsters_rltiles3:18", + "name": "Perester", + "spawnGroup": "perester", + "monsterClass": 0, + "phraseID": "perester" + }, + { + "id": "perlynn", + "iconID": "monsters_mage2:0", + "name": "Perlynn", + "spawnGroup": "perlynn", + "monsterClass": 0, + "phraseID": "perlynn" + }, + { + "id": "reinkarr", + "iconID": "monsters_rltiles1:66", + "name": "Reinkarr", + "spawnGroup": "reinkarr", + "monsterClass": 0, + "phraseID": "reinkarr" + }, + { + "id": "remgard_d1", + "iconID": "monsters_ld1:18", + "name": "Hóspede da taverna", + "spawnGroup": "remgard_drunk", + "monsterClass": 0, + "phraseID": "remgard_drunk1" + }, + { + "id": "remgard_d2", + "iconID": "monsters_rltiles2:81", + "name": "Hóspede da taverna", + "spawnGroup": "remgard_drunk", + "monsterClass": 0, + "phraseID": "remgard_drunk2" + }, + { + "id": "remgard_farmer1", + "iconID": "monsters_ld1:26", + "name": "Fazendeiro", + "spawnGroup": "remgard_farmer1", + "monsterClass": 0, + "phraseID": "remgard_farmer1" + }, + { + "id": "remgard_farmer2", + "iconID": "monsters_ld1:220", + "name": "Fazendeiro", + "spawnGroup": "remgard_farmer2", + "monsterClass": 0, + "phraseID": "remgard_farmer2" + }, + { + "id": "remgard_g1", + "iconID": "monsters_ld1:4", + "name": "Guarda", + "spawnGroup": "remgard_guard", + "monsterClass": 0, + "phraseID": "fallhaven_guard" + }, + { + "id": "remgard_g2", + "iconID": "monsters_ld1:5", + "name": "Guarda", + "spawnGroup": "remgard_guard", + "monsterClass": 0, + "phraseID": "blackwater_guard1" + }, + { + "id": "remgard_g3", + "iconID": "monsters_ld1:67", + "name": "Guarda", + "spawnGroup": "remgard_guard2", + "monsterClass": 0, + "phraseID": "remgard_guard1" + }, + { + "id": "remgard_pg", + "iconID": "monsters_ld1:11", + "name": "Guarda da Prisão", + "spawnGroup": "remgard_prison_guard", + "monsterClass": 0, + "phraseID": "remgard_prison_guard" + }, + { + "id": "rg_villager4", + "iconID": "monsters_ld1:164", + "name": "Cidadão comum", + "spawnGroup": "remgard_villager4", + "monsterClass": 0, + "phraseID": "remgard_villager4" + }, + { + "id": "rg_villager5", + "iconID": "monsters_ld1:148", + "name": "Cidadão comum", + "spawnGroup": "remgard_villager5", + "monsterClass": 0, + "phraseID": "remgard_villager5" + }, + { + "id": "rg_villager6", + "iconID": "monsters_ld1:188", + "name": "Cidadão comum", + "spawnGroup": "remgard_villager6", + "monsterClass": 0, + "phraseID": "remgard_villager6" + }, + { + "id": "rg_villager7", + "iconID": "monsters_ld1:10", + "name": "Cidadão comum", + "spawnGroup": "remgard_villager7", + "monsterClass": 0, + "phraseID": "remgard_villager7" + }, + { + "id": "rg_villager8", + "iconID": "monsters_rltiles3:18", + "name": "Cidadão comum", + "spawnGroup": "remgard_villager8", + "monsterClass": 0, + "phraseID": "remgard_villager8" + }, + { + "id": "skylenar", + "iconID": "monsters_ld1:3", + "name": "Skylenar", + "spawnGroup": "skylenar", + "monsterClass": 0, + "droplistID": "shop_skylenar", + "phraseID": "skylenar" + }, + { + "id": "taylin", + "iconID": "monsters_rltiles1:74", + "name": "Taylin", + "spawnGroup": "taylin", + "monsterClass": 0, + "phraseID": "taylin" + }, + { + "id": "petdog", + "iconID": "monsters_dogs:0", + "name": "Cachorro", + "spawnGroup": "petdog", + "monsterClass": 4, + "phraseID": "petdog" + }, + { + "id": "kaverin", + "iconID": "monsters_ld1:100", + "name": "Kaverin", + "spawnGroup": "kaverin", + "monsterClass": 5, + "unique": 1, + "maxHP": 320, + "maxAP": 5, + "moveCost": 5, + "attackCost": 3, + "attackChance": 65, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 90, + "damageResistance": 6, + "droplistID": "kaverin", + "phraseID": "kaverin", + "attackDamage": { + "min": 1, + "max": 20 + } + }, + { + "id": "izthiel_cr", + "iconID": "monsters_rltiles2:52", + "name": "Guardião de Izthiel", + "spawnGroup": "izthiel_cr", + "monsterClass": 7, + "unique": 1, + "maxHP": 354, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 60, + "damageResistance": 11, + "droplistID": "oegyth1", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "bleeding_wound", + "magnitude": 3, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "burrower_cr", + "iconID": "monsters_rltiles2:165", + "name": "Burrower larval gigante", + "spawnGroup": "burrower_cr", + "monsterClass": 1, + "unique": 1, + "maxHP": 175, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 95, + "blockChance": 80, + "damageResistance": 2, + "droplistID": "oegyth1", + "attackDamage": { + "min": 1, + "max": 25 + } + }, + { + "id": "allaceph_cr", + "iconID": "monsters_rltiles2:103", + "name": "Ancião Allaceph", + "spawnGroup": "allaceph_cr", + "monsterClass": 2, + "unique": 1, + "maxHP": 333, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 115, + "damageResistance": 3, + "droplistID": "oegyth1", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 7, + "max": 7 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 3, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_cr", + "iconID": "monsters_rltiles2:38", + "name": "Mestre rogador de pragas", + "spawnGroup": "plaguespider_cr", + "monsterClass": 6, + "unique": 1, + "maxHP": 365, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 85, + "criticalSkill": 160, + "criticalMultiplier": 3, + "blockChance": 175, + "damageResistance": 2, + "droplistID": "oegyth1", + "attackDamage": { + "min": 2, + "max": 8 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 4, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 3, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "maonit_cr", + "iconID": "monsters_rltiles1:107", + "name": "Maonit forte bruto", + "spawnGroup": "maonit_cr", + "monsterClass": 5, + "unique": 1, + "maxHP": 620, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 6, + "droplistID": "oegyth1", + "attackDamage": { + "min": 1, + "max": 20 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "stunned", + "magnitude": 1, + "duration": 3, + "chance": 10 + } + ] + } + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/monsterlist_v068_npcs.json b/AndorsTrail/res/raw-pt-rBR/monsterlist_v068_npcs.json new file mode 100644 index 000000000..df5e132d4 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/monsterlist_v068_npcs.json @@ -0,0 +1,423 @@ +[ + { + "id": "smug_looking_thief", + "iconID": "monsters_men2:9", + "name": "Ladrão presunçoso", + "spawnGroup": "tg_thief", + "monsterClass": 0, + "phraseID": "thievesguild_thief_1" + }, + { + "id": "thieves_guild_cook", + "iconID": "monsters_men:0", + "name": "Cozinheiro da guilda de ladrões", + "spawnGroup": "tg_cook", + "monsterClass": 0, + "droplistID": "shop_thieves_guild_cook", + "phraseID": "thievesguild_cook_1" + }, + { + "id": "pickpocket", + "iconID": "monsters_men:7", + "name": "Carteirista", + "spawnGroup": "pickpocket", + "monsterClass": 0, + "phraseID": "thievesguild_pickpocket_1" + }, + { + "id": "troublemaker", + "iconID": "monsters_men:8", + "name": "Arruaceiro", + "spawnGroup": "troublemaker", + "monsterClass": 0, + "droplistID": "shop_troublemaker", + "phraseID": "thievesguild_troublemaker_1" + }, + { + "id": "farrik", + "iconID": "monsters_rogue1:0", + "name": "Farrik", + "spawnGroup": "farrik", + "monsterClass": 0, + "phraseID": "farrik_select_1" + }, + { + "id": "umar", + "iconID": "monsters_man1:0", + "name": "Umar", + "spawnGroup": "umar", + "monsterClass": 0, + "phraseID": "umar_select_1" + }, + { + "id": "kaori", + "iconID": "monsters_men:7", + "name": "Kaori", + "spawnGroup": "kaori", + "monsterClass": 0, + "phraseID": "kaori_start" + }, + { + "id": "old_vilegard_villager", + "iconID": "monsters_men:0", + "name": "Aldeão idoso de Vilegard", + "spawnGroup": "vilegard_villager_1", + "monsterClass": 0, + "phraseID": "vilegard_villager_1" + }, + { + "id": "grumpy_vilegard_villager", + "iconID": "monsters_men:5", + "name": "Aldeão irritado de Vilegard", + "spawnGroup": "vilegard_villager_2", + "monsterClass": 0, + "phraseID": "vilegard_villager_2" + }, + { + "id": "vilegard_citizen", + "iconID": "monsters_men:1", + "name": "Cidadão de Vilegard", + "spawnGroup": "vilegard_villager_3", + "monsterClass": 0, + "phraseID": "vilegard_villager_3" + }, + { + "id": "vilegard_resident", + "iconID": "monsters_men2:0", + "name": "Residente de Vilegard", + "spawnGroup": "vilegard_villager_4", + "monsterClass": 0, + "phraseID": "vilegard_villager_4" + }, + { + "id": "vilegard_woman", + "iconID": "monsters_men:6", + "name": "Mulher de Vilegard", + "spawnGroup": "vilegard_villager_5", + "monsterClass": 0, + "phraseID": "vilegard_villager_5" + }, + { + "id": "erttu", + "iconID": "monsters_mage2:0", + "name": "Erttu", + "spawnGroup": "erttu", + "monsterClass": 0, + "phraseID": "erttu_1" + }, + { + "id": "dunla", + "iconID": "monsters_rogue1:0", + "name": "Dunla", + "spawnGroup": "dunla", + "monsterClass": 0, + "droplistID": "shop_dunla", + "phraseID": "dunla_default" + }, + { + "id": "tharwyn", + "iconID": "monsters_men:7", + "name": "Tharwyn", + "spawnGroup": "tharwyn", + "monsterClass": 0, + "droplistID": "shop_tharwyn", + "phraseID": "tharwyn_select" + }, + { + "id": "tavern_guest", + "iconID": "monsters_men:0", + "name": "Visitante da taberna", + "spawnGroup": "vg_tavern_drunk", + "monsterClass": 0, + "phraseID": "vilegard_tavern_drunk_1" + }, + { + "id": "jolnor", + "iconID": "monsters_men2:8", + "name": "Jolnor", + "spawnGroup": "jolnor", + "monsterClass": 0, + "droplistID": "shop_jolnor", + "phraseID": "jolnor_select_1" + }, + { + "id": "alynndir", + "iconID": "monsters_mage2:0", + "name": "Alynndir", + "spawnGroup": "alynndir", + "monsterClass": 0, + "droplistID": "shop_alynndir", + "phraseID": "alynndir_1" + }, + { + "id": "vilegard_armorer", + "iconID": "monsters_mage2:0", + "name": "Armeiro de Vilegard", + "spawnGroup": "vg_armorer", + "monsterClass": 0, + "droplistID": "shop_vg_armorer", + "phraseID": "vilegard_armorer_select" + }, + { + "id": "vilegard_smith", + "iconID": "monsters_mage2:0", + "name": "Ferreiro de Vilegard", + "spawnGroup": "vg_smith", + "monsterClass": 0, + "droplistID": "shop_vg_smith", + "phraseID": "vilegard_smith_select" + }, + { + "id": "ogam", + "iconID": "monsters_men:0", + "name": "Ogam", + "spawnGroup": "ogam", + "monsterClass": 0, + "phraseID": "ogam_1" + }, + { + "id": "foaming_flask_cook", + "iconID": "monsters_men:0", + "name": "Cozinheiro do Foaming Flask", + "spawnGroup": "ff_cook", + "monsterClass": 0, + "phraseID": "ff_cook_1" + }, + { + "id": "torilo", + "iconID": "monsters_men2:9", + "name": "Torilo", + "spawnGroup": "torilo", + "monsterClass": 0, + "droplistID": "shop_torilo", + "phraseID": "torilo_1" + }, + { + "id": "ambelie", + "iconID": "monsters_men:6", + "name": "Ambelie", + "spawnGroup": "ambelie", + "monsterClass": 0, + "phraseID": "ambelie_1" + }, + { + "id": "feygard_patrol", + "iconID": "monsters_rltiles3:14", + "name": "Patrulha de Feygard", + "spawnGroup": "ff_guard", + "monsterClass": 0, + "phraseID": "ff_guard_1" + }, + { + "id": "feygard_patrol_captain", + "iconID": "monsters_men:3", + "name": "Capitão de patrulha de Feygard", + "spawnGroup": "ff_captain", + "monsterClass": 0, + "phraseID": "ff_captain_1" + }, + { + "id": "feygard_patrol_watch", + "iconID": "monsters_rltiles3:14", + "name": "Vigia de patrulha de Feygard", + "spawnGroup": "ff_outsideguard", + "monsterClass": 0, + "unique": 1, + "maxHP": 80, + "attackCost": 5, + "attackChance": 70, + "blockChance": 80, + "damageResistance": 3, + "droplistID": "ff_outsideguard", + "phraseID": "ff_outsideguard_select", + "attackDamage": { + "min": 2, + "max": 7 + } + }, + { + "id": "wrye", + "iconID": "monsters_men:6", + "name": "Wrye", + "spawnGroup": "wrye", + "monsterClass": 0, + "phraseID": "wrye_select_1" + }, + { + "id": "oluag", + "iconID": "monsters_men:8", + "name": "Oluag", + "spawnGroup": "oluag", + "monsterClass": 0, + "phraseID": "oluag_1" + }, + { + "id": "cave_dwelling_boar", + "iconID": "monsters_dogs:6", + "name": "Javali-das-cavernas", + "spawnGroup": "caveboar1", + "monsterClass": 4, + "maxHP": 35, + "attackCost": 5, + "attackChance": 70, + "blockChance": 60, + "damageResistance": 3, + "droplistID": "canine2", + "attackDamage": { + "min": 3, + "max": 8 + } + }, + { + "id": "hardshell_beetle", + "iconID": "monsters_insects:4", + "name": "Escaravelho de casca dura", + "spawnGroup": "beetle2", + "monsterClass": 1, + "maxHP": 25, + "attackCost": 5, + "attackChance": 50, + "blockChance": 40, + "damageResistance": 9, + "droplistID": "beetle2", + "attackDamage": { + "min": 0, + "max": 5 + } + }, + { + "id": "young_shadow_gargoyle", + "iconID": "monsters_misc:1", + "name": "Gárgula-das-sombras jovem", + "spawnGroup": "shadowgarg1", + "monsterClass": 3, + "maxHP": 35, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 8, + "criticalMultiplier": 3, + "blockChance": 75, + "damageResistance": 3, + "droplistID": "shadowgarg1", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "fledgling_shadow_gargoyle", + "iconID": "monsters_misc:1", + "name": "Gárgula-das-sombras inexperiente", + "spawnGroup": "shadowgarg1", + "monsterClass": 3, + "maxHP": 36, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 8, + "criticalMultiplier": 3, + "blockChance": 75, + "damageResistance": 3, + "droplistID": "shadowgarg1", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "shadow_gargoyle", + "iconID": "monsters_misc:2", + "name": "Gárgula-das-sombras", + "spawnGroup": "shadowgarg2", + "monsterClass": 3, + "maxHP": 37, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 8, + "criticalMultiplier": 3, + "blockChance": 85, + "damageResistance": 3, + "droplistID": "shadowgarg1", + "attackDamage": { + "min": 4, + "max": 10 + } + }, + { + "id": "tough_shadow_gargoyle", + "iconID": "monsters_misc:2", + "name": "Gárgula-das-sobras resistente", + "spawnGroup": "shadowgarg2", + "monsterClass": 3, + "maxHP": 37, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 8, + "criticalMultiplier": 3, + "blockChance": 85, + "damageResistance": 4, + "droplistID": "shadowgarg2", + "attackDamage": { + "min": 4, + "max": 10 + } + }, + { + "id": "shadow_gargoyle_trainer", + "iconID": "monsters_liches:0", + "name": "Gárgula-das-sombras instrutora", + "spawnGroup": "shadowgarg3", + "monsterClass": 6, + "maxHP": 35, + "attackCost": 5, + "attackChance": 90, + "criticalSkill": 12, + "criticalMultiplier": 3, + "blockChance": 90, + "damageResistance": 5, + "droplistID": "shadowgarg3", + "attackDamage": { + "min": 3, + "max": 6 + } + }, + { + "id": "shadow_gargoyle_master", + "iconID": "monsters_liches:1", + "name": "Gárgula-das-sombras mestre", + "spawnGroup": "shadowgarg4", + "monsterClass": 6, + "maxHP": 35, + "attackCost": 5, + "attackChance": 125, + "criticalSkill": 12, + "criticalMultiplier": 3, + "blockChance": 90, + "damageResistance": 5, + "droplistID": "shadowgarg3", + "attackDamage": { + "min": 3, + "max": 6 + } + }, + { + "id": "maelveon", + "iconID": "monsters_liches:2", + "name": "Maelveon", + "spawnGroup": "maelveon", + "monsterClass": 6, + "unique": 1, + "maxHP": 55, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 15, + "criticalMultiplier": 3, + "blockChance": 90, + "damageResistance": 5, + "droplistID": "maelveon", + "phraseID": "maelveon", + "attackDamage": { + "min": 0, + "max": 12 + } + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/monsterlist_v069_monsters.json b/AndorsTrail/res/raw-pt-rBR/monsterlist_v069_monsters.json new file mode 100644 index 000000000..9337a4256 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/monsterlist_v069_monsters.json @@ -0,0 +1,646 @@ +[ + { + "id": "puny_caverat", + "iconID": "monsters_rats:0", + "name": "Ratazana-das-cavernas", + "spawnGroup": "puny_caverat", + "monsterClass": 4, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 50, + "blockChance": 30, + "droplistID": "rat", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "rabid_hound", + "iconID": "monsters_rltiles2:108", + "name": "Cão raivoso", + "spawnGroup": "forestwolf2", + "monsterClass": 4, + "maxHP": 40, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 110, + "blockChance": 30, + "droplistID": "canine", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "vicious_hound", + "iconID": "monsters_rltiles2:110", + "name": "Cão feroz", + "spawnGroup": "forestboar4", + "monsterClass": 4, + "maxHP": 31, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 150, + "blockChance": 60, + "damageResistance": 3, + "droplistID": "canineboss", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "mountain_wolf", + "iconID": "monsters_rltiles2:109", + "name": "Lobo-das-montanhas", + "spawnGroup": "primwolf1", + "monsterClass": 4, + "maxHP": 49, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 150, + "blockChance": 60, + "damageResistance": 3, + "droplistID": "canine", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "hatchling_white_wyrm", + "iconID": "monsters_rltiles1:118", + "name": "Cria de wyrm branco", + "spawnGroup": "wyrm_1", + "monsterClass": 7, + "maxHP": 41, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 75, + "blockChance": 130, + "damageResistance": 5, + "droplistID": "wyrm_1", + "attackDamage": { + "min": 4, + "max": 10 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "fatigue_minor", + "magnitude": 1, + "duration": 5, + "chance": 10 + } + ] + } + }, + { + "id": "young_white_wyrm", + "iconID": "monsters_rltiles1:118", + "name": "Wyrm branco jovem", + "spawnGroup": "wyrm_2", + "monsterClass": 7, + "maxHP": 47, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 75, + "blockChance": 130, + "damageResistance": 5, + "droplistID": "wyrm_2", + "attackDamage": { + "min": 4, + "max": 10 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "fatigue_minor", + "magnitude": 1, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "white_wyrm", + "iconID": "monsters_rltiles1:119", + "name": "Wyrm branco", + "spawnGroup": "wyrm_3", + "monsterClass": 7, + "maxHP": 55, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 75, + "blockChance": 130, + "damageResistance": 5, + "droplistID": "wyrm_3", + "attackDamage": { + "min": 4, + "max": 10 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "fatigue_minor", + "magnitude": 1, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "young_aulaeth", + "iconID": "monsters_rltiles2:176", + "name": "Aulaeth jovem", + "spawnGroup": "wyrm_1", + "monsterClass": 5, + "maxHP": 105, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 40, + "blockChance": 30, + "damageResistance": 5, + "droplistID": "aulaeth", + "attackDamage": { + "min": 0, + "max": 4 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "aulaeth", + "iconID": "monsters_rltiles2:58", + "name": "Aulaeth", + "spawnGroup": "wyrm_2", + "monsterClass": 5, + "maxHP": 120, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 40, + "blockChance": 40, + "damageResistance": 6, + "droplistID": "aulaeth", + "attackDamage": { + "min": 0, + "max": 5 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "strong_aulaeth", + "iconID": "monsters_rltiles2:58", + "name": "Aulaeth forte", + "spawnGroup": "wyrm_3", + "monsterClass": 5, + "maxHP": 135, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 40, + "blockChance": 35, + "damageResistance": 6, + "droplistID": "aulaeth", + "attackDamage": { + "min": 0, + "max": 5 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "wyrm_trainer", + "iconID": "monsters_rltiles2:0", + "name": "Wyrm instrutor", + "spawnGroup": "wyrm_4", + "monsterClass": 6, + "maxHP": 69, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "blockChance": 90, + "damageResistance": 4, + "droplistID": "wyrm_4", + "attackDamage": { + "min": 2, + "max": 9 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + }, + "conditionsTarget": [ + { + "condition": "fatigue_minor", + "magnitude": 1, + "duration": 10, + "chance": 70 + } + ] + } + }, + { + "id": "wyrm_apprentice", + "iconID": "monsters_rltiles2:0", + "name": "Wyrm aprendiz", + "spawnGroup": "wyrm_4", + "monsterClass": 6, + "maxHP": 69, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 140, + "blockChance": 90, + "damageResistance": 4, + "droplistID": "wyrm_4", + "attackDamage": { + "min": 2, + "max": 9 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + }, + "conditionsTarget": [ + { + "condition": "fatigue_minor", + "magnitude": 1, + "duration": 10, + "chance": 70 + } + ] + } + }, + { + "id": "young_gornaud", + "iconID": "monsters_rltiles2:29", + "name": "Gornaud jovem", + "spawnGroup": "gornaud_1", + "monsterClass": 5, + "maxHP": 70, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "blockChance": 50, + "droplistID": "gornaud_1", + "attackDamage": { + "min": 0, + "max": 15 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "dazed", + "magnitude": 1, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "gornaud", + "iconID": "monsters_rltiles2:29", + "name": "Gornaud", + "spawnGroup": "gornaud_2", + "monsterClass": 5, + "maxHP": 95, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "blockChance": 50, + "damageResistance": 4, + "droplistID": "gornaud_2", + "attackDamage": { + "min": 0, + "max": 15 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "dazed", + "magnitude": 1, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "strong_gornaud", + "iconID": "monsters_rltiles2:30", + "name": "Gornaud forte", + "spawnGroup": "gornaud_3", + "monsterClass": 5, + "maxHP": 95, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "blockChance": 50, + "damageResistance": 5, + "droplistID": "gornaud_3", + "attackDamage": { + "min": 0, + "max": 15 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "dazed", + "magnitude": 1, + "duration": 5, + "chance": 70 + } + ] + } + }, + { + "id": "slithering_venomfang", + "iconID": "monsters_snakes:2", + "name": "Venomfang rastejante", + "spawnGroup": "gornaud_1", + "monsterClass": 7, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 90, + "damageResistance": 2, + "droplistID": "cave_serpent", + "attackDamage": { + "min": 1, + "max": 2 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_weak", + "magnitude": 1, + "duration": 2, + "chance": 20 + } + ] + } + }, + { + "id": "scaled_venomfang", + "iconID": "monsters_snakes:3", + "name": "Venomfang escamosa", + "spawnGroup": "gornaud_2", + "monsterClass": 7, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "blockChance": 90, + "damageResistance": 2, + "droplistID": "cave_serpent", + "attackDamage": { + "min": 2, + "max": 4 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_weak", + "magnitude": 1, + "duration": 2, + "chance": 50 + } + ] + } + }, + { + "id": "tough_venomfang", + "iconID": "monsters_snakes:3", + "name": "Venomfang resistente", + "spawnGroup": "gornaud_3", + "monsterClass": 7, + "maxHP": 41, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "blockChance": 90, + "damageResistance": 2, + "droplistID": "cave_serpent", + "attackDamage": { + "min": 2, + "max": 5 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_weak", + "magnitude": 1, + "duration": 2, + "chance": 50 + } + ] + } + }, + { + "id": "restless_dead", + "iconID": "monsters_rltiles1:47", + "name": "Morto irrequieto", + "spawnGroup": "restless_dead_1", + "monsterClass": 8, + "maxHP": 25, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 50, + "criticalSkill": 80, + "criticalMultiplier": 2, + "blockChance": 140, + "damageResistance": 3, + "droplistID": "restless_dead_1", + "attackDamage": { + "min": 0, + "max": 3 + } + }, + { + "id": "grave_spawn", + "iconID": "monsters_rltiles1:49", + "name": "Ente-das-sepulturas", + "spawnGroup": "restless_dead_1", + "monsterClass": 2, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 110, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 35, + "damageResistance": 3, + "droplistID": "restless_dead_1", + "attackDamage": { + "min": 2, + "max": 5 + } + }, + { + "id": "restless_apparition", + "iconID": "monsters_rltiles1:47", + "name": "Aparição irrequieta", + "spawnGroup": "restless_dead_2", + "monsterClass": 8, + "maxHP": 29, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 10, + "damageResistance": 1, + "droplistID": "restless_dead_2", + "attackDamage": { + "min": 2, + "max": 6 + } + }, + { + "id": "skeletal_reaper", + "iconID": "monsters_rltiles1:27", + "name": "Esqueleto ceifador", + "spawnGroup": "restless_dead_2", + "monsterClass": 3, + "maxHP": 15, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 150, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 110, + "droplistID": "restless_dead_2", + "attackDamage": { + "min": 0, + "max": 9 + } + }, + { + "id": "kazaul_spawn", + "iconID": "monsters_rltiles1:41", + "name": "Kazaul ente", + "spawnGroup": "kazaul_1", + "monsterClass": 2, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 50, + "criticalMultiplier": 2, + "blockChance": 90, + "damageResistance": 1, + "droplistID": "kazaul_1", + "attackDamage": { + "min": 3, + "max": 5 + } + }, + { + "id": "kazaul_imp", + "iconID": "monsters_rltiles1:45", + "name": "Kazaul duende", + "spawnGroup": "kazaul_2", + "monsterClass": 2, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 105, + "damageResistance": 1, + "droplistID": "kazaul_2", + "attackDamage": { + "min": 3, + "max": 7 + } + }, + { + "id": "kazaul_guardian", + "iconID": "monsters_rltiles1:42", + "name": "Kazaul guardião", + "spawnGroup": "kazaul_guardian", + "monsterClass": 2, + "unique": 1, + "maxHP": 95, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 90, + "damageResistance": 3, + "droplistID": "kazaul_guardian", + "phraseID": "kazaul_guardian", + "attackDamage": { + "min": 3, + "max": 8 + } + }, + { + "id": "graverobber", + "iconID": "monsters_karvis2:3", + "name": "Saqueador-de-túmulos", + "spawnGroup": "bjorgur_bandit", + "monsterClass": 0, + "unique": 1, + "maxHP": 62, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 120, + "blockChance": 72, + "damageResistance": 1, + "droplistID": "bjorgur_bandit", + "phraseID": "bjorgur_bandit", + "attackDamage": { + "min": 2, + "max": 6 + } + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/monsterlist_v069_npcs.json b/AndorsTrail/res/raw-pt-rBR/monsterlist_v069_npcs.json new file mode 100644 index 000000000..27f60141c --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/monsterlist_v069_npcs.json @@ -0,0 +1,536 @@ +[ + { + "id": "agent1", + "iconID": "monsters_men:4", + "name": "Agente", + "spawnGroup": "bwm_agent_1", + "monsterClass": 0, + "unique": 1, + "phraseID": "bwm_agent_1_start" + }, + { + "id": "agent2", + "iconID": "monsters_men:4", + "name": "Agente", + "spawnGroup": "bwm_agent_2", + "monsterClass": 0, + "unique": 1, + "phraseID": "bwm_agent_2_start" + }, + { + "id": "agent3", + "iconID": "monsters_men:4", + "name": "Agente", + "spawnGroup": "bwm_agent_3", + "monsterClass": 0, + "unique": 1, + "phraseID": "bwm_agent_3_start" + }, + { + "id": "agent4", + "iconID": "monsters_men:4", + "name": "Agente", + "spawnGroup": "bwm_agent_4", + "monsterClass": 0, + "unique": 1, + "phraseID": "bwm_agent_4_start" + }, + { + "id": "agent5", + "iconID": "monsters_men:4", + "name": "Agente", + "spawnGroup": "bwm_agent_5", + "monsterClass": 0, + "unique": 1, + "phraseID": "bwm_agent_5_start" + }, + { + "id": "agent6", + "iconID": "monsters_men:4", + "name": "Agente", + "spawnGroup": "bwm_agent_6", + "monsterClass": 0, + "unique": 1, + "phraseID": "bwm_agent_6_start" + }, + { + "id": "arghest", + "iconID": "monsters_rltiles2:81", + "name": "Arghest", + "spawnGroup": "arghest", + "monsterClass": 0, + "phraseID": "arghest_start" + }, + { + "id": "tonis", + "iconID": "monsters_rltiles1:67", + "name": "Tonis", + "spawnGroup": "tonis", + "monsterClass": 0, + "phraseID": "tonis_start" + }, + { + "id": "moyra", + "iconID": "monsters_rltiles1:74", + "name": "Moyra", + "spawnGroup": "moyra", + "monsterClass": 0, + "phraseID": "moyra_1" + }, + { + "id": "prim_citizen", + "iconID": "monsters_karvis2:6", + "name": "Cidadão de Prim", + "spawnGroup": "prim_commoner1", + "monsterClass": 0, + "phraseID": "prim_commoner1" + }, + { + "id": "prim_commoner", + "iconID": "monsters_rltiles1:68", + "name": "Plebeu de Prim", + "spawnGroup": "prim_commoner2", + "monsterClass": 0, + "phraseID": "prim_commoner2" + }, + { + "id": "prim_resident", + "iconID": "monsters_karvis2:2", + "name": "Habitante de Prim", + "spawnGroup": "prim_commoner3", + "monsterClass": 0, + "phraseID": "prim_commoner3" + }, + { + "id": "prim_evoker", + "iconID": "monsters_rltiles1:84", + "name": "Invocador de Prim", + "spawnGroup": "prim_commoner4", + "monsterClass": 0, + "phraseID": "prim_commoner4" + }, + { + "id": "laecca", + "iconID": "monsters_rltiles1:72", + "name": "Laecca", + "spawnGroup": "laecca", + "monsterClass": 0, + "phraseID": "laecca_1" + }, + { + "id": "prim_cook", + "iconID": "monsters_karvis2:0", + "name": "Cozinheiro de Prim", + "spawnGroup": "prim_cook", + "monsterClass": 0, + "phraseID": "prim_cook_start" + }, + { + "id": "prim_visitor", + "iconID": "monsters_rltiles1:63", + "name": "Visitante de Prim", + "spawnGroup": "prim_innguest", + "monsterClass": 0, + "phraseID": "prim_innguest" + }, + { + "id": "birgil", + "iconID": "monsters_rltiles2:81", + "name": "Birgil", + "spawnGroup": "birgil", + "monsterClass": 0, + "droplistID": "shop_birgil", + "phraseID": "birgil_1" + }, + { + "id": "prim_tavern_guest", + "iconID": "monsters_rltiles1:106", + "name": "Visitante da taberna de Prim", + "spawnGroup": "prim_tavern_guest1", + "monsterClass": 0, + "phraseID": "prim_tavern_guest1" + }, + { + "id": "prim_tavern_regular", + "iconID": "monsters_rltiles1:106", + "name": "Cliente da taberna de Prim", + "spawnGroup": "prim_tavern_guest2", + "monsterClass": 0, + "phraseID": "prim_tavern_guest2" + }, + { + "id": "prim_bar_guest", + "iconID": "monsters_rltiles1:106", + "name": "Visitante do bar de Prim", + "spawnGroup": "prim_tavern_guest3", + "monsterClass": 0, + "phraseID": "prim_tavern_guest3" + }, + { + "id": "prim_bar_regular", + "iconID": "monsters_rltiles1:106", + "name": "Cliente do bar de Prim", + "spawnGroup": "prim_tavern_guest4", + "monsterClass": 0, + "phraseID": "prim_tavern_guest4" + }, + { + "id": "prim_armorer", + "iconID": "monsters_rltiles1:88", + "name": "Armeiro de Prim", + "spawnGroup": "prim_armorer", + "monsterClass": 0, + "droplistID": "shop_prim_armorer", + "phraseID": "prim_armorer" + }, + { + "id": "jueth", + "iconID": "monsters_men2:0", + "name": "Jueth", + "spawnGroup": "prim_tailor", + "monsterClass": 0, + "phraseID": "prim_tailor" + }, + { + "id": "bjorgur", + "iconID": "monsters_karvis2:7", + "name": "Bjorgur", + "spawnGroup": "bjorgur", + "monsterClass": 0, + "phraseID": "bjorgur_start" + }, + { + "id": "prim_prisoner", + "iconID": "monsters_rltiles2:81", + "name": "Prisioneiro de Prim", + "spawnGroup": "prim_prisoner", + "monsterClass": 0, + "phraseID": "prim_guard1" + }, + { + "id": "fulus", + "iconID": "monsters_karvis2:3", + "name": "Fulus", + "spawnGroup": "fulus", + "monsterClass": 0, + "phraseID": "fulus_start" + }, + { + "id": "guthbered", + "iconID": "monsters_rltiles1:92", + "name": "Guthbered", + "spawnGroup": "guthbered", + "monsterClass": 0, + "unique": 1, + "maxHP": 80, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "guthbered", + "phraseID": "guthbered_start", + "attackDamage": { + "min": 4, + "max": 9 + } + }, + { + "id": "guthbereds_bodyguard", + "iconID": "monsters_rltiles1:76", + "name": "Guarda-costas de Guthbered", + "spawnGroup": "guthbered_guard", + "monsterClass": 0, + "phraseID": "guthbered_guard" + }, + { + "id": "prim_weapon_guard", + "iconID": "monsters_rltiles1:65", + "name": "Guarda-armas de Prim", + "spawnGroup": "prim_guard1", + "monsterClass": 0, + "phraseID": "prim_guard1" + }, + { + "id": "prim_sentry", + "iconID": "monsters_rltiles3:14", + "name": "Sentinela de Prim", + "spawnGroup": "prim_guard2", + "monsterClass": 0, + "phraseID": "prim_guard2" + }, + { + "id": "prim_guard", + "iconID": "monsters_rltiles1:65", + "name": "Guarda de Prim", + "spawnGroup": "prim_guard4", + "monsterClass": 0, + "phraseID": "prim_guard4" + }, + { + "id": "tired_prim_guard", + "iconID": "monsters_rltiles1:76", + "name": "Guarda de Prim cansado", + "spawnGroup": "prim_guard3", + "monsterClass": 0, + "phraseID": "prim_guard3" + }, + { + "id": "prim_treasury_guard", + "iconID": "monsters_rltiles1:69", + "name": "Guarda do Tesouro de Prim", + "spawnGroup": "prim_treasury_guard", + "monsterClass": 0, + "phraseID": "prim_treasury_guard" + }, + { + "id": "samar", + "iconID": "monsters_rltiles2:93", + "name": "Samar", + "spawnGroup": "prim_priest", + "monsterClass": 0, + "droplistID": "shop_samar", + "phraseID": "prim_priest" + }, + { + "id": "prim_priestly_acolyte", + "iconID": "monsters_rltiles1:83", + "name": "Acólito sacerdotal de Prim", + "spawnGroup": "prim_acolyte", + "monsterClass": 0, + "phraseID": "prim_acolyte" + }, + { + "id": "studying_prim_pupil", + "iconID": "monsters_rltiles1:74", + "name": "Pupilo em estudo de Prim", + "spawnGroup": "prim_pupil1", + "monsterClass": 0, + "phraseID": "prim_pupil1" + }, + { + "id": "reading_prim_pupil", + "iconID": "monsters_rltiles1:74", + "name": "Pupilo em leitura de Prim", + "spawnGroup": "prim_pupil2", + "monsterClass": 0, + "phraseID": "prim_pupil2" + }, + { + "id": "prim_pupil", + "iconID": "monsters_rltiles1:74", + "name": "Pupilo de Prim", + "spawnGroup": "prim_pupil3", + "monsterClass": 0, + "phraseID": "prim_pupil3" + }, + { + "id": "blackwater_entrance_guard", + "iconID": "monsters_rltiles3:14", + "name": "Guarda da entrada de Blackwater", + "spawnGroup": "blackwater_entranceguard", + "monsterClass": 0, + "maxHP": 30, + "maxAP": 10, + "phraseID": "blackwater_entranceguard" + }, + { + "id": "blackwater_dinner_guest", + "iconID": "monsters_karvis2:2", + "name": "Convidado de jantar de Blackwater", + "spawnGroup": "blackwater_guest1", + "monsterClass": 0, + "maxHP": 20, + "maxAP": 10, + "phraseID": "blackwater_guest1" + }, + { + "id": "blackwater_inhabitant", + "iconID": "monsters_man1:0", + "name": "Habitante de Blackwater", + "spawnGroup": "blackwater_guest2", + "monsterClass": 0, + "maxHP": 10, + "maxAP": 10, + "phraseID": "blackwater_guest2" + }, + { + "id": "blackwater_cook", + "iconID": "monsters_karvis2:0", + "name": "Cozinheiro de Blackwater", + "spawnGroup": "blackwater_cook", + "monsterClass": 0, + "phraseID": "blackwater_cook" + }, + { + "id": "keneg", + "iconID": "monsters_rltiles1:86", + "name": "Keneg", + "spawnGroup": "keneg", + "monsterClass": 0, + "phraseID": "keneg" + }, + { + "id": "mazeg", + "iconID": "monsters_rltiles1:85", + "name": "Mazeg", + "spawnGroup": "mazeg", + "monsterClass": 0, + "droplistID": "shop_mazeg", + "phraseID": "mazeg" + }, + { + "id": "waeges", + "iconID": "monsters_rltiles1:88", + "name": "Waeges", + "spawnGroup": "waeges", + "monsterClass": 0, + "droplistID": "shop_waeges", + "phraseID": "waeges" + }, + { + "id": "blackwater_fighter", + "iconID": "monsters_rltiles1:66", + "name": "Lutador de Blackwater", + "spawnGroup": "blackwater_fighter", + "monsterClass": 0, + "phraseID": "blackwater_fighter" + }, + { + "id": "ungorm", + "iconID": "monsters_rltiles1:83", + "name": "Ungorm", + "spawnGroup": "ungorm", + "monsterClass": 0, + "phraseID": "ungorm" + }, + { + "id": "blackwater_pupil", + "iconID": "monsters_rltiles1:74", + "name": "Pupilo de Blackwater", + "spawnGroup": "blackwater_pupil", + "monsterClass": 0, + "phraseID": "blackwater_pupil" + }, + { + "id": "laede", + "iconID": "monsters_rltiles1:81", + "name": "Laede", + "spawnGroup": "blackwater_sleephall", + "monsterClass": 0, + "phraseID": "laede" + }, + { + "id": "herec", + "iconID": "monsters_men2:9", + "name": "Herec", + "spawnGroup": "herec", + "monsterClass": 0, + "droplistID": "shop_herec", + "phraseID": "herec_start" + }, + { + "id": "iducus", + "iconID": "monsters_rltiles1:87", + "name": "Iducus", + "spawnGroup": "iducus", + "monsterClass": 0, + "droplistID": "shop_iducus", + "phraseID": "iducus" + }, + { + "id": "blackwater_priest", + "iconID": "monsters_rltiles1:80", + "name": "Prior de Blackwater", + "spawnGroup": "blackwater_priest", + "monsterClass": 0, + "phraseID": "blackwater_priest" + }, + { + "id": "studying_blackwater_priest", + "iconID": "monsters_rltiles1:84", + "name": "Prior em estudo de Blackwater", + "spawnGroup": "blackwater_pupil", + "monsterClass": 0, + "phraseID": "blackwater_pupil" + }, + { + "id": "blackwater_guard", + "iconID": "monsters_rltiles1:76", + "name": "Guarda de Blackwater", + "spawnGroup": "blackwater_guard1", + "monsterClass": 0, + "phraseID": "blackwater_guard1" + }, + { + "id": "blackwater_border_patrol", + "iconID": "monsters_rltiles1:76", + "name": "Patrulha de fronteira de Blackwater", + "spawnGroup": "blackwater_guard2", + "monsterClass": 0, + "phraseID": "blackwater_guard2" + }, + { + "id": "harlenns_bodyguard", + "iconID": "monsters_rltiles1:76", + "name": "Guarda-costas de Harlenn", + "spawnGroup": "blackwater_bossguard", + "monsterClass": 0, + "phraseID": "blackwater_bossguard" + }, + { + "id": "blackwater_chamber_guard", + "iconID": "monsters_men:3", + "name": "Guarda de câmara de Blackwater", + "spawnGroup": "blackwater_throneguard", + "monsterClass": 0, + "unique": 1, + "phraseID": "blackwater_throneguard" + }, + { + "id": "harlenn", + "iconID": "monsters_men2:6", + "name": "Harlenn", + "spawnGroup": "harlenn", + "monsterClass": 0, + "unique": 1, + "maxHP": 80, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "harlenn", + "phraseID": "harlenn_start", + "attackDamage": { + "min": 4, + "max": 9 + } + }, + { + "id": "throdna", + "iconID": "monsters_men2:4", + "name": "Throdna", + "spawnGroup": "throdna", + "monsterClass": 0, + "phraseID": "throdna_start" + }, + { + "id": "throdnas_guard", + "iconID": "monsters_rltiles1:85", + "name": "Guarda de Throdna", + "spawnGroup": "throdna_guard", + "monsterClass": 0, + "phraseID": "throdna_guard" + }, + { + "id": "blackwater_mage", + "iconID": "monsters_rltiles1:80", + "name": "Mago de Blackwater", + "spawnGroup": "blackwater_acolyte", + "monsterClass": 0, + "phraseID": "blackwater_acolyte" + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/monsterlist_wilderness.json b/AndorsTrail/res/raw-pt-rBR/monsterlist_wilderness.json new file mode 100644 index 000000000..c2c90c330 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/monsterlist_wilderness.json @@ -0,0 +1,513 @@ +[ + { + "id": "wild_fox", + "iconID": "monsters_dogs:3", + "name": "Raposa selvagem", + "spawnGroup": "fox2", + "monsterClass": 4, + "maxHP": 25, + "attackCost": 5, + "attackChance": 100, + "blockChance": 40, + "droplistID": "canine", + "attackDamage": { + "min": 4, + "max": 5 + } + }, + { + "id": "stinging_wasp", + "iconID": "monsters_insects:1", + "name": "Vespa picante", + "spawnGroup": "forestwasp2", + "monsterClass": 1, + "maxHP": 15, + "attackCost": 10, + "attackChance": 150, + "blockChance": 60, + "droplistID": "wasp", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "wild_boar", + "iconID": "monsters_dogs:6", + "name": "Javali selvagem", + "spawnGroup": "forestboar2", + "monsterClass": 4, + "maxHP": 20, + "attackCost": 5, + "attackChance": 110, + "blockChance": 30, + "droplistID": "canineboss", + "attackDamage": { + "min": 3, + "max": 3 + } + }, + { + "id": "forest_beetle", + "iconID": "monsters_insects:4", + "name": "Escaravelho-das-florestas", + "spawnGroup": "forestbeetle", + "monsterClass": 1, + "maxHP": 14, + "attackCost": 10, + "attackChance": 150, + "blockChance": 60, + "damageResistance": 2, + "droplistID": "insect", + "attackDamage": { + "min": 2, + "max": 4 + } + }, + { + "id": "wolf", + "iconID": "monsters_dogs:4", + "name": "Lobo", + "spawnGroup": "forestwolf1", + "monsterClass": 4, + "maxHP": 30, + "maxAP": 10, + "moveCost": 3, + "attackCost": 5, + "attackChance": 110, + "blockChance": 30, + "droplistID": "canine", + "attackDamage": { + "min": 3, + "max": 6 + } + }, + { + "id": "forest_serpent", + "iconID": "monsters_snakes:4", + "name": "Serpente-das-florestas", + "spawnGroup": "forestserpent1", + "monsterClass": 7, + "maxHP": 20, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "criticalSkill": 30, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "snake2", + "attackDamage": { + "min": 2, + "max": 3 + } + }, + { + "id": "vicious_forest_serpent", + "iconID": "monsters_snakes:4", + "name": "Serpente-das-florestas feroz", + "spawnGroup": "forestserpent2", + "monsterClass": 7, + "maxHP": 27, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "criticalSkill": 30, + "criticalMultiplier": 2, + "blockChance": 50, + "droplistID": "snake2", + "attackDamage": { + "min": 3, + "max": 4 + } + }, + { + "id": "anklebiter", + "iconID": "monsters_dogs:6", + "name": "Morde-calcanhares", + "spawnGroup": "forestboar3", + "monsterClass": 4, + "maxHP": 31, + "attackCost": 5, + "attackChance": 150, + "blockChance": 60, + "damageResistance": 3, + "droplistID": "canine2", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "flagstone_sentry", + "iconID": "monsters_men:3", + "name": "Sentinela de Flagstone", + "spawnGroup": "flagstone_sentry", + "monsterClass": 0, + "phraseID": "flagstone_sentry" + }, + { + "id": "escaped_prisoner", + "iconID": "monsters_men:0", + "name": "Prisioneiro em fuga", + "spawnGroup": "prisoner1", + "monsterClass": 0, + "unique": 1, + "maxHP": 15, + "attackCost": 10, + "attackChance": 50, + "blockChance": 20, + "droplistID": "prisoner", + "phraseID": "prisoner1", + "attackDamage": { + "min": 3, + "max": 7 + } + }, + { + "id": "starving_prisoner", + "iconID": "monsters_misc:11", + "name": "Prisioneiro esfomeado", + "spawnGroup": "prisoner2", + "monsterClass": 0, + "unique": 1, + "maxHP": 10, + "attackCost": 3, + "attackChance": 60, + "blockChance": 60, + "droplistID": "prisoner", + "phraseID": "prisoner2", + "attackDamage": { + "min": 3, + "max": 5 + } + }, + { + "id": "bone_warrior", + "iconID": "monsters_skeleton1:0", + "name": "Ossudo guerreiro", + "spawnGroup": "skeleton2", + "monsterClass": 3, + "maxHP": 32, + "attackCost": 5, + "attackChance": 120, + "blockChance": 60, + "damageResistance": 2, + "droplistID": "skeleton2", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "bone_champion", + "iconID": "monsters_skeleton1:0", + "name": "Ossudo campeão", + "spawnGroup": "skeleton3", + "monsterClass": 3, + "maxHP": 49, + "attackCost": 5, + "attackChance": 130, + "blockChance": 60, + "damageResistance": 2, + "droplistID": "skeleton3", + "attackDamage": { + "min": 4, + "max": 9 + } + }, + { + "id": "undead_warden", + "iconID": "monsters_liches:0", + "name": "Director morto-vivo", + "spawnGroup": "flagstone_guard0", + "monsterClass": 6, + "unique": 1, + "maxHP": 57, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "damageResistance": 1, + "droplistID": "flagstone_guard0", + "phraseID": "flagstone_guard0", + "attackDamage": { + "min": 4, + "max": 8 + } + }, + { + "id": "cave_guardian", + "iconID": "monsters_rltiles1:16", + "name": "Guardião da caverna", + "spawnGroup": "flagstone_guard1", + "monsterClass": 2, + "unique": 1, + "maxHP": 61, + "attackCost": 5, + "attackChance": 150, + "criticalSkill": 10, + "criticalMultiplier": 3, + "blockChance": 90, + "damageResistance": 2, + "droplistID": "flagstone_guard1", + "phraseID": "flagstone_guard1", + "attackDamage": { + "min": 4, + "max": 10 + } + }, + { + "id": "winged_demon", + "iconID": "monsters_demon1:0", + "name": "Demónio voador", + "spawnGroup": "flagstone_guard2", + "size": "2x2", + "monsterClass": 2, + "unique": 1, + "maxHP": 82, + "attackCost": 5, + "attackChance": 90, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 70, + "damageResistance": 5, + "droplistID": "flagstone_guard2", + "phraseID": "flagstone_guard2", + "attackDamage": { + "min": 4, + "max": 12 + } + }, + { + "id": "narael", + "iconID": "monsters_man1:0", + "name": "Narael", + "spawnGroup": "narael", + "monsterClass": 0, + "phraseID": "narael" + }, + { + "id": "rotting_corpse", + "iconID": "monsters_zombie1:0", + "name": "Cadáver putrefacto", + "spawnGroup": "undead1", + "monsterClass": 6, + "maxHP": 71, + "attackCost": 10, + "attackChance": 30, + "criticalSkill": 50, + "criticalMultiplier": 2, + "blockChance": 30, + "damageResistance": 2, + "droplistID": "undead1", + "phraseID": "zombie1", + "attackDamage": { + "min": 2, + "max": 5 + } + }, + { + "id": "walking_corpse", + "iconID": "monsters_zombie1:0", + "name": "Cadáver andante", + "spawnGroup": "undead1", + "monsterClass": 6, + "maxHP": 90, + "attackCost": 10, + "attackChance": 30, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 30, + "damageResistance": 2, + "droplistID": "undead1", + "attackDamage": { + "min": 2, + "max": 4 + } + }, + { + "id": "gargoyle", + "iconID": "monsters_misc:2", + "name": "Gárgula", + "spawnGroup": "undead1", + "monsterClass": 3, + "maxHP": 47, + "attackCost": 10, + "attackChance": 110, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 70, + "damageResistance": 2, + "droplistID": "undead1", + "attackDamage": { + "min": 3, + "max": 7 + } + }, + { + "id": "fledgling_gargoyle", + "iconID": "monsters_misc:1", + "name": "Gágula inexperiente", + "spawnGroup": "undead1", + "monsterClass": 3, + "maxHP": 35, + "attackCost": 10, + "attackChance": 110, + "blockChance": 60, + "damageResistance": 2, + "droplistID": "undead1", + "attackDamage": { + "min": 3, + "max": 6 + } + }, + { + "id": "large_cave_rat", + "iconID": "monsters_rats:3", + "name": "Ratazana-das-cavernas grande", + "spawnGroup": "undeadrat1", + "monsterClass": 4, + "maxHP": 21, + "maxAP": 10, + "moveCost": 10, + "attackCost": 3, + "attackChance": 60, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 40, + "droplistID": "catacombrat", + "attackDamage": { + "min": 3, + "max": 4 + } + }, + { + "id": "pack_leader", + "iconID": "monsters_dogs:5", + "name": "Chefe da matilha", + "spawnGroup": "pack_boss", + "monsterClass": 4, + "unique": 1, + "maxHP": 65, + "attackCost": 5, + "attackChance": 90, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 40, + "damageResistance": 4, + "droplistID": "pack_boss", + "attackDamage": { + "min": 2, + "max": 10 + } + }, + { + "id": "pack_hunter", + "iconID": "monsters_dogs:4", + "name": "Caçador da matilha", + "spawnGroup": "pack3", + "monsterClass": 4, + "maxHP": 45, + "attackCost": 5, + "attackChance": 90, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 40, + "damageResistance": 3, + "droplistID": "pack3", + "attackDamage": { + "min": 2, + "max": 7 + } + }, + { + "id": "rabid_wolf", + "iconID": "monsters_dogs:4", + "name": "Lobo raivoso", + "spawnGroup": "pack2", + "monsterClass": 4, + "maxHP": 42, + "attackCost": 5, + "attackChance": 90, + "blockChance": 50, + "damageResistance": 3, + "droplistID": "pack2", + "attackDamage": { + "min": 2, + "max": 6 + } + }, + { + "id": "fledgling_wolf", + "iconID": "monsters_dogs:3", + "name": "Lobo inexperiente", + "spawnGroup": "pack2", + "monsterClass": 4, + "maxHP": 42, + "attackCost": 3, + "attackChance": 70, + "blockChance": 50, + "damageResistance": 3, + "droplistID": "pack2", + "attackDamage": { + "min": 2, + "max": 5 + } + }, + { + "id": "young_wolf", + "iconID": "monsters_dogs:4", + "name": "Lobo jovem", + "spawnGroup": "pack1", + "monsterClass": 4, + "maxHP": 35, + "attackCost": 3, + "attackChance": 60, + "blockChance": 30, + "damageResistance": 2, + "droplistID": "pack1", + "attackDamage": { + "min": 2, + "max": 5 + } + }, + { + "id": "hunting_dog", + "iconID": "monsters_dogs:2", + "name": "Cão de caça", + "spawnGroup": "pack1", + "monsterClass": 4, + "maxHP": 25, + "attackCost": 5, + "attackChance": 60, + "blockChance": 50, + "droplistID": "pack1", + "attackDamage": { + "min": 2, + "max": 5 + } + }, + { + "id": "highwayman", + "iconID": "monsters_men:8", + "name": "Salteador", + "spawnGroup": "bandit1", + "monsterClass": 0, + "maxHP": 54, + "attackCost": 5, + "attackChance": 90, + "criticalSkill": 50, + "criticalMultiplier": 2, + "blockChance": 30, + "damageResistance": 2, + "droplistID": "bandit1", + "phraseID": "bandit1", + "attackDamage": { + "min": 2, + "max": 4 + } + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/questlist.json b/AndorsTrail/res/raw-pt-rBR/questlist.json new file mode 100644 index 000000000..e988dcbe2 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/questlist.json @@ -0,0 +1,387 @@ +[ + { + "id": "andor", + "name": "Busca por Andor", + "showInLog": 1, + "stages": [ + { + "progress": 1, + "logText": "Meu pai Mikhail diz que Andor não foi para casa desde ontem. Eu devo ir procurá-lo na aldeia.", + "finishesQuest": 0 + }, + { + "progress": 10, + "logText": "Leonid diz-me que ele viu Andor falando Gruil. Eu devo ir perguntar Gruil se ele sabe mais.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Gruil quer que eu traga uma glândula de veneno. Então, ele talvez fale mais. Ele me diz que apenas algumas cobras venenosas tem tal glândula", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Gruil diz que Andor estava procurando alguém chamado Umar. Eu devo ir perguntar a seu amigo Gaela em Fallhaven para o leste", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Eu conversei com Gaela em Fallhaven. Ele me diz para ir ver Bucus e perguntar sobre a corja dos ladrões", + "finishesQuest": 0 + }, + { + "progress": 50, + "logText": "Bucus permitiu-me entrar no portal da casa abandonada em Fallhaven. Eu devo ir falar com Umar", + "finishesQuest": 0 + }, + { + "progress": 51, + "logText": "Umar da corja dos ladrões de Fallhaven reconheceu-me, mas deve ter me confundido com Andor. Aparentemente, Andor foi até lá para vê-lo", + "finishesQuest": 0 + }, + { + "progress": 55, + "logText": "Umar disse-me que Andor foi ver um fabricante de poção chamada Lodar. Eu devo procurar seu esconderijo", + "finishesQuest": 0 + }, + { + "progress": 61, + "logText": "Eu ouvi uma história em Loneford, onde parece que Andor esteve Loneford, e que ele pode ter algo a ver com a doença que as pessoas estão sofrendo de lá. Eu não tenho certeza se ele realmente era Andor. Se fosse Andor, por que ele teria feito o povo de Loneford doente?", + "finishesQuest": 0 + } + ] + }, + { + "id": "mikhail_bread", + "name": "Pão para o Café da manhã", + "showInLog": 1, + "stages": [ + { + "progress": 100, + "logText": "Eu trouxe o pão para Mikhail.", + "finishesQuest": 1 + }, + { + "progress": 10, + "logText": "Mikhail quer que eu vá comprar um pão de Mara na prefeitura.", + "finishesQuest": 0 + } + ] + }, + { + "id": "mikhail_rats", + "name": "Ratazanas!", + "showInLog": 1, + "stages": [ + { + "progress": 100, + "logText": "Eu matei as duas ratazanas do nosso jardim.", + "rewardExperience": 20, + "finishesQuest": 1 + }, + { + "progress": 10, + "logText": "Mikhail quer que eu vá procurar por ratazanas no nosso jardim. Eu devo matar as ratazanas no nosso jardim e voltar para Mikhail. Se eu me machucar, eu posso voltar para a cama e descansar para recuperar minha saúde.", + "finishesQuest": 0 + } + ] + }, + { + "id": "leta", + "name": "Marido sumido", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Leta em Crossglen quer que eu procure por seu marido Oromir.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Eu descobri Oromir em Crossglen, escondendo-se de sua esposa Leta.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "Eu disse Leta que Oromir está escondido na aldeia Crossglen.", + "rewardExperience": 50, + "finishesQuest": 1 + } + ] + }, + { + "id": "odair", + "name": "Infestação de ratazanas", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Odair quer que eu limpe a caverna de abastecimento em Crossglen de ratazanas. Em particular, eu devo matar a ratazana grande e voltar para Odair.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "Ajudei Odair a exterminar as ratazanas da caverna de abastecimento em Crossglen.", + "rewardExperience": 300, + "finishesQuest": 1 + } + ] + }, + { + "id": "bonemeal", + "name": "Substâncias proibidas", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Leonid na prefeitura de Crossglen disse-me que houve um distúrbio na vila há algumas semanas. Aparentemente, o Lorde Geomyr proibiu todo o uso de farinha de ossos como substância de cura\n\nTharal, o sacerdote da vila deve saber mais.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Tharal não quer falar sobre farinha de ossos. Eu poderia ser capaz de persuadi-lo, trazendo-lhe 5 asas de insetos.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Tharal me diz que farinha de ossos é uma substância de cura muito potente, e é muito ruim que não seja mais permitida. Eu devo ir ver Thoronir em Fallhaven se eu quiser saber mais. Devo dizer-lhe a senha 'Brilho da Sombra'.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Conversei com Thoronir em Fallhaven. Ele pode ser capaz de misturar-me uma poção de ossos se eu trazê-lo cinco ossos de esqueleto. Deve haver alguns esqueletos em uma casa abandonada ao norte de Fallhaven.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "Eu trouxe os ossos para Thoronir. Ele agora é capaz de fornecer-me porções de farinha de ossos\nEu devo ter cuidado ao usá-los, porém, visto que Lorde Geomyr proibiu seu uso.", + "rewardExperience": 900, + "finishesQuest": 1 + } + ] + }, + { + "id": "jan", + "name": "Amigos em queda", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Jan me conta sua história, onde ele e seus dois amigos e Gandir Irogotu, entraram em um buraco para escavar um tesouro escondido, mas eles começaram a brigar e Irogotu matou Gandir em sua raiva \nEu devo trazer de volta Gandir o anel de Irogotu, e ver Jan quando o tiver.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "Irogotu está morto. Eu trouxe a Jano anel de Gandir, and vingança sobre seu amigo.", + "rewardExperience": 1500, + "finishesQuest": 1 + } + ] + }, + { + "id": "bucus", + "name": "Chave de Luthor", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Bucus em Fallhaven pode saber algo sobre Andor. Ele quer que eu traga-lhe a chave de Luthor das catacumbas da igreja de Fallhaven.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "As catacumbas igreja Fallhaven estão fechadas. Athamyr é o único tanto com permissão e bravura para entrar neles. Eu pretendo ir vê-lo em sua casa ao sudoeste da igreja.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Athamyr quer que eu traga um pouco de carne cozida, então talvez ele vai falar mais.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Eu trouxe um pouco de carne cozida para Athamyr.", + "rewardExperience": 700, + "finishesQuest": 0 + }, + { + "progress": 50, + "logText": "Athamyr me deu permissão para entrar nas catacumbas abaixo da igreja Fallhaven.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "Eu trouxe Bucus a chave de Luthor.", + "rewardExperience": 2150, + "finishesQuest": 1 + } + ] + }, + { + "id": "fallhavendrunk", + "name": "Estória de bêbado", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Um bêbado fora da taverna de Fallhaven começou a me contar sua história, mas quer que lhe traga algum hidromel. Apesar disso, eu não sei se a sua história vai levar a algum lugar.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "O bêbado disse-me que ele costumava viajar com Unnmir. Eu devo ir falar com Unnmir.", + "finishesQuest": 1 + } + ] + }, + { + "id": "calomyran", + "name": "Segredos de Calomyran", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Um velho parado no meio de Fallhaven perdeu seu livro 'Segredos de Calomyran'. Ele pediu para eu procurar o livro. Talvez esteja na casa de Arcir ao sul?", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Encontrei uma página rasgada de um livro chamado 'Segredos de Calomyran' com o nome 'Larcal' escrito nele.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "Eu retornei o livro de volta ao velho.", + "rewardExperience": 600, + "finishesQuest": 1 + } + ] + }, + { + "id": "nocmar", + "name": "Tesouros perdidos", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Unnmir me disse que ele costumava ser um aventureiro, e me deu uma dica para ir ver Nocmar. Sua casa é a sudoeste da taverna de Fallhaven.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Nocmar me dise que ele costumava ser um ferreiro. Mas o Lorde Geomyr proibiu o uso do Aço do Coração. Assim, ele não pode forjar mais suas armas\nSe eu puder encontrar uma Pedra do Coração e trazê-la para Nocmar, ele deve ser capaz de forjar com o Aço do Coração novamente.", + "finishesQuest": 0 + }, + { + "progress": 200, + "logText": "Eu trouxe uma heartstone para Nocmar. Ele deve ter itens heartsteel disponíveis agora.", + "rewardExperience": 1200, + "finishesQuest": 1 + } + ] + }, + { + "id": "flagstone", + "name": "Segredos antigos", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Eu conheci um sentinela do lado de fora de uma fortaleza chamada Flagstone. O guarda disse-me que Flagstone costumava ser um campo de prisioneiros para os trabalhadores fugitivos do Monte Galmore. Recentemente, tem havido um aumento de monstros saindo de Flagstone. Eu devo investigar a origem dos monstros mortos-vivos. O guarda disse-me para voltar a ele se eu precisar de ajuda.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Encontrei um tunel escavado em baixo de Flagstone que parece levar a uma caverna mais larga. A caverna é guardada por um demônio que não permite nenhuma aproximação. Talvez o sentinela fora de Flagstone saiba mais.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "O sentinela dise que o antigo diretor tinha um colar que ele sempre usava. O colar tem provavelmente as palavras necessárias para abordar o demônio. Eu devo mostrar para o guarda de decifrar qualquer mensagem sobre o colar, uma vez que eu o encontre.", + "finishesQuest": 0 + }, + { + "progress": 31, + "logText": "Encontrei o antigo diretor de Flagstone no nível superior. Eu devo voltar para o guarda agora.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Aprendi as palavras necessárias para abordar o demônio no subsolo de de Flagstone: 'A Sombra da luz do dia'.", + "rewardExperience": 1600, + "finishesQuest": 0 + }, + { + "progress": 50, + "logText": "Nas profundezas de Flagstrone, encontrei a fonte da infestação mortos-vivos: uma criatura nascida do sofrimento dos ex-prisioneiros de Flagstone.", + "finishesQuest": 0 + }, + { + "progress": 60, + "logText": "Encontrei um prisioneiro, Narael, vivo nas profundezas Laje. Narael era uma vez um cidadão de Nor City. Ele está fraco demais para andar por si mesmo, mas se eu puder encontrar sua esposa em Nor City, eu provavelmente serei recompensado.", + "rewardExperience": 2100, + "finishesQuest": 1 + } + ] + }, + { + "id": "vacor", + "name": "Partes perdidas", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Um mago chamado Vacor no sudoeste Fallhaven vem tentando lançar um feitiço de ruptura.\nAparentemente, tem algo errado com ele, pois ele aparenta estar muito obsecado com seu feitiço. Está relacionado a ele ganhar um certo poder com isso.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Vacor quer que eu traga as quatro peças do feitiço que ele alega ter sido roubado dele. Os quatro bandidos deve estar em algum lugar ao sul de Fallhaven.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Eu trouxe as quatro peças do feitiço de ruptura para Vacor.", + "rewardExperience": 1200, + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Vacor conta-me que seu ex-aprendiz Unzel tinha começado a questionar Vacor. Vacor agora quer que eu mate Unzel. Eu devo ser capaz de encontrá-lo no sudeste, fora dos limites de Fallhaven. Eu devo trazer o anel de Vacor qundo o matar.", + "finishesQuest": 0 + }, + { + "progress": 50, + "logText": "Unzel dá-me a opção de ficar ao lado dele ou de Vacor.", + "finishesQuest": 0 + }, + { + "progress": 51, + "logText": "Eu escolhi o lado de Unzel. Eu devo ir para sudoeste Fallhaven falar com Vacor sobre Unzel e a Sombra.", + "finishesQuest": 0 + }, + { + "progress": 53, + "logText": "Começei uma luta com Unzel. Eu devo trazer seu anel a Vacor uma vez que ele esteja morto.", + "finishesQuest": 0 + }, + { + "progress": 54, + "logText": "Começei uma luta com Vacor. Eu devo trazer seu anel a Unzel uma vez que ele esteja morto.", + "finishesQuest": 0 + }, + { + "progress": 60, + "logText": "Eu matei Unzel e disse Vacor sobre a escritura.", + "rewardExperience": 1600, + "finishesQuest": 1 + }, + { + "progress": 61, + "logText": "Eu matei Vacor e disse Unzel sobre a escritura.", + "rewardExperience": 1600, + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/questlist_v0610.json b/AndorsTrail/res/raw-pt-rBR/questlist_v0610.json new file mode 100644 index 000000000..0b7c4fb04 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/questlist_v0610.json @@ -0,0 +1,352 @@ +[ + { + "id": "erinith", + "name": "Ferida profunda", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "À nordeste da aldeia Crossglen, conheci Erinith que estava acampando. Aparentemente, ele foi atacado durante a noite e perdeu um livro." + }, + { + "progress": 20, + "logText": "Eu concordei em ajudar Erinith a encontrar seu livro. Ele me disse que o jogou entre algumas árvores a norte de seu acampamento." + }, + { + "progress": 21, + "logText": "Eu concordei em ajudar Erinith encontrar seu livro em troca de 200 moedas de ouro. Ele me disse que o jogou entre algumas árvores para o norte de seu acampamento." + }, + { + "progress": 30, + "logText": "eu voltei com o livro para Erinith.", + "rewardExperience": 2000 + }, + { + "progress": 31, + "logText": "Ele também precisa de ajuda com a sua ferida que não parece quere curar. Ou eu devo trazê-lo uma poção maior de saúde, ou quatro poções regulares de saúde." + }, + { + "progress": 40, + "logText": "Eu dei Erinith uma poção de farinha de ossos para curar a ferida. Ele ficou com medo de usá-la, uma vez que são proibidas pelo Lorde Geomyr." + }, + { + "progress": 41, + "logText": "Eu dei Erinith uma poção maior de saúde para curar a ferida." + }, + { + "progress": 42, + "logText": "Eu dei Erinith quatro poções regulares de saúde para curar a ferida." + }, + { + "progress": 50, + "logText": "O ferimento cicatrizou completamente e Erinith me agradeceu por toda a ajuda.", + "rewardExperience": 1500, + "finishesQuest": 1 + } + ] + }, + { + "id": "hadracor", + "name": "Terra Devastada", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Na estrada para Carn Tower, oeste da guarita encruzilhada, eu conheci um grupo de lenhadores liderados por Hadracor. Hadracor quer ajuda para se vingar de algumas vespas que os atacavam enquanto eles estavam derrubando a floresta. Para ajudá-los a se vingar, eu devo procurar as vespas gigantes perto de seu acampamento e trazer pelo menos cinco asas de vespas gigantes." + }, + { + "progress": 20, + "logText": "Eu trouxe cinco asas de vespas gigantes para Hadracor." + }, + { + "progress": 21, + "logText": "Eu trouxe seis asas de vespas gigantes para Hadracor. Pela ajuda, ele deu-me um par de luvas." + }, + { + "progress": 30, + "logText": "Hadracor agradeceu-me por ajudar a ele e aos outros lenhadores a se vingar das vespas. Em troca, ele ofereceu-me trocar comigo alguns de seus itens.", + "finishesQuest": 1 + } + ] + }, + { + "id": "tinlyn", + "name": "Lost ovelhas", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Na estrada para Feygard, perto da ponte Feygard, eu conheci um pastor chamado Tinlyn. Tinlyn me disse que quatro de suas ovelhas se desviaram e que ele não vai ousar deixar o restante ovelhas para procurar eles." + }, + { + "progress": 15, + "logText": "Eu concordei em ajudar a encontrar o seu Tinlyn quatro ovelhas perdidas." + }, + { + "progress": 20, + "logText": "Eu encontrei uma das ovelhas perdidas da Tinlyn." + }, + { + "progress": 21, + "logText": "Eu encontrei uma das ovelhas perdidas da Tinlyn." + }, + { + "progress": 22, + "logText": "Eu encontrei uma das ovelhas perdidas da Tinlyn." + }, + { + "progress": 23, + "logText": "Eu encontrei uma das ovelhas perdidas da Tinlyn." + }, + { + "progress": 25, + "logText": "Eu encontrei todas as quatro ovelhas perdidas da Tinlyn." + }, + { + "progress": 30, + "logText": "Tinlyn agradeceu-me para encontrar as ovelhas perdidas.", + "rewardExperience": 3500, + "finishesQuest": 1 + }, + { + "progress": 31, + "logText": "Tinlyn agradeceu-me para encontrar as ovelhas perdidas, mas ele não tinha nenhuma recompensa para me dar.", + "rewardExperience": 2000, + "finishesQuest": 1 + }, + { + "progress": 60, + "logText": "Eu ataquei pelo menos uma das ovelhas perdidas de Tinlyn. Portanto, sou incapaz de devolvêr todas elas para Tinlyn.", + "finishesQuest": 1 + } + ] + }, + { + "id": "benbyr", + "name": "Violência gratuita", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Eu conheci Benbyr no lado de fora da guarita de Crossroads. Ele quer se vingar de um antigo 'parceiro de negócios' seu - Tinlyn. Benbyr quer que eu mate todas as ovelhas de Tinlyn." + }, + { + "progress": 20, + "logText": "Eu concordei em ajudar Benbyr, encontrando todas as ovelhas de Tinlyn e matando todas as oito. Eu devo procurá-las nos campos a noroeste da guarita de Crossroads." + }, + { + "progress": 21, + "logText": "Eu comecei a atacar as ovelhas. Eu devo voltar para Benbyr quando terminar de matar todas os oito." + }, + { + "progress": 30, + "logText": "Benbyr ficou radiante ao saber que todas as ovelhas de Tinlyn estão mortas.", + "rewardExperience": 5200, + "finishesQuest": 1 + }, + { + "progress": 60, + "logText": "Eu não quis ajudar Benbyr matando ovelhas.", + "finishesQuest": 1 + } + ] + }, + { + "id": "rogorn", + "name": "O caminho é claro para mim", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Minarra na torre na guarita de Crossroads viu um bando de malandros indo a oeste da guarita se dirigindo para Carn Tower. Minarra tem certeza de que correspondem à descrição de alguns homens cujas cabeças foram colocadas a prêmio pela patrulha de Feygard. Se estes são os homens que Minarra pensa, eles são supostamente liderados pelo selvagem e particularmente cruel Rogorn." + }, + { + "progress": 20, + "logText": "Eu estou ajudando Minarra a encontrar o bando de malandros. Eu devo viajar pela estrada a oeste da guarita de Crossroads em direção a Carn Tower e procurar por eles. Eles supostamente roubaram três pedaços de uma pintura valiosa e são procurados vivos ou mortos por seus crimes." + }, + { + "progress": 21, + "logText": "Minarra também me diz que eu não posso confiar em qualquer coisa que eu ouça deles. Em particular, qualquer coisa vinda de Rogorn deve ser vista com grande desconfiança." + }, + { + "progress": 30, + "logText": "Eu encontrei os bandidos na estrada nm direção oeste de Carn Tower, liderados por Rogorn." + }, + { + "progress": 35, + "logText": "Rogorn me diz que eles foram injustamente acusados de assassinato e de roubo em Feygard, quando eles mesmos nunca tinham sequer estado Feygard." + }, + { + "progress": 40, + "logText": "eu decidi atacar Rogorn e seu bando de malandros. Eu devo voltar para Minarra com as três partes da pintura, uma vez que eles estejam mortos." + }, + { + "progress": 45, + "logText": "Eu decidi não atacar Rogorn e seu bando de bandidos, mas sim informar a Minarra que ela deve ter confundido os homens que ele viu com alguma outra pessoa." + }, + { + "progress": 50, + "logText": "Minarra agradeceu-me para lidar com os ladrões, e disse-me que os meus serviços para Feygard serão apreciados." + }, + { + "progress": 55, + "logText": "Depois de contar Minarra que ele deve ter confundido os homens com outra pessoa, ela pareceu um pouco desconfiado, mas me agradeceu por ajudá-lo a resolver esse assunto." + }, + { + "progress": 60, + "logText": "Eu ajudei Minarra com sua tarefa.", + "finishesQuest": 1 + } + ] + }, + { + "id": "feygard_shipment", + "name": "Recados de Feygard", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "eu conheci Gandoren, o capitão de guarda na guarita de Crossroads. Ele me contou sobre alguns problemas em Loneford, que forçaram os guardas a estarem ainda mais alerta do que o usual. Devido a isso, eles não podem fazer trocar mensagens regularmente entre si, precisando de ajuda com algumas tarefas básicas." + }, + { + "progress": 20, + "logText": "Gandoren quer que eu o ajude a transportar um carregamento de 10 espadas de ferro para outro posto da guarda ao sul." + }, + { + "progress": 21, + "logText": "Eu concordei em ajudar Gandoren a transportar o carregamento, como um serviço para Feygard." + }, + { + "progress": 22, + "logText": "Meio à contragosto concordei em ajudar Gandoren a transportar o carregamento." + }, + { + "progress": 25, + "logText": "Eu devo entregar a remessa para o capitão patrulha Feygard, hospedado na taberna Floaming Flask." + }, + { + "progress": 26, + "logText": "Gandoren me disse que Ailshara manifestou algum interesse nos transportes de Feygard, e pediu-me para ficar longe dela." + }, + { + "progress": 30, + "logText": "Ailshara está realmente interessada no transporte, e quer que eu ajude, ao invés, Nor City com suprimentos." + }, + { + "progress": 35, + "logText": "Se eu quero ajudar Ailshara e Nor City, eu devo entregar a remessa para o ferreiro em Vilegard." + }, + { + "progress": 50, + "logText": "Eu entreguei a remessa para o capitão da patrulha de Feygard na taberna Foaming Flask. Eu devo ir contar a Gandoren na guarita Crossroads que a remessa for entregue." + }, + { + "progress": 55, + "logText": "Eu entreguei o carregamento para o ferreiro em Vilegard." + }, + { + "progress": 56, + "logText": "O ferreiro Vilegard me deu um carregamento de itens degradados que eu devo entregar ao capitão da patrulha Feygard na taberna Foaming Flask em vez dos normais." + }, + { + "progress": 60, + "logText": "Eu entreguei o embarque de itens degradados ao capitão da patrulha de Feygard na taberna Foaming Flask. Eu devo ir contar Gandoren na guarita Crossroads que a remessa foi entregue." + }, + { + "progress": 80, + "logText": "Gandoren me agradeceu por ajudá-lo entregar a remessa.", + "rewardExperience": 4000, + "finishesQuest": 1 + }, + { + "progress": 81, + "logText": "Gandoren me agradeceu por ajudá-lo entregar a remessa. Ele não suspeitou de nada. Preciso também informar a Ailshara." + }, + { + "progress": 82, + "logText": "Relatei sobre a remessa à Ailshara.", + "rewardExperience": 4000, + "finishesQuest": 1 + } + ] + }, + { + "id": "loneford", + "name": "Flui através das veias", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Eu ouvi uma história sobre Loneford. Aparentemente, muitas pessoas ficaram doentes por lá recentemente, e alguns têm até mesmo morrido. A causa ainda é desconhecida." + }, + { + "progress": 11, + "logText": "Eu devo investigar o que poderia ter causado a doença no povo de Loneford. Para coletar pistas, eu devo perguntar aos cidadãos de Loneford e nas regiões circunvizinhas sobre o que eles acham que é a causa." + }, + { + "progress": 21, + "logText": "Os guardas na guarita de Crossroads estão certos de que a doença em Loneford é causada por alguma sabotagem feito pelos sacerdotes ou pessoas de Nor City." + }, + { + "progress": 22, + "logText": "Alguns moradores em Loneford acreditam que a doença seja causada pelos guardas de Feygard, em algum esquema para fazer o povo sofrer ainda mais do que eles já têm." + }, + { + "progress": 23, + "logText": "Talião, o sacerdote capela em Loneford, acha que a doença é trabalho da Sombra, como punição pela falta Loneford de devoção para a Sombra." + }, + { + "progress": 24, + "logText": "Taevinn em Loneford é certo que Sienn no celeiro sudeste tem algo a ver com a doença. Aparentemente, Sienn mantém pertod e si um animal de estimação que abordou Taevinn de uma maneira ameaçadora várias vezes." + }, + { + "progress": 25, + "logText": "Eu devo ir ver Landa na taberna de Loneford. Há rumores de que ela viu algo que não se atreve a contar para ninguém." + }, + { + "progress": 30, + "logText": "Landa, inicialmente, confundiu-me com outra pessoa. Ela, aparentemente, viu um menino fazendo alguma coisa perto cidade bem durante a noite antes que a doença come cassasse. Ela estava com medo de falar para mim na primeira vez, pois ela pensou que eu parecia como menino que tinha visto. Poderia ter sido Andor que ela viu?" + }, + { + "progress": 31, + "logText": "Além disso, na noite seguinte à em que ela viu o menino no poço, viu Buceth recolher amostras de água no poço. Estranhamente, Buceth não ficou doente como os outros na aldeia." + }, + { + "progress": 35, + "logText": "Eu devo ir perguntar a Buceth, na capela de Loneford, sobre o que ele estava fazendo por lá, e se ele sabe alguma coisa a respeito de Andor." + }, + { + "progress": 41, + "logText": "Eu subornei Buceth a falar comigo." + }, + { + "progress": 42, + "logText": "Eu disse a Buceth que estou pronto para seguir a Sombra." + }, + { + "progress": 45, + "logText": "Buceth me diz que ele foi designado pelos sacerdotes de Nor City para garantir que a Sombra lance seu brilho sobre Loneford. Aparentemente, os sacerdotes enviaram um menino para fazer alguns negócios em Loneford, e Buceth foi encarregado de recolher algumas amostras da água do poço." + }, + { + "progress": 50, + "logText": "Eu ataquei Buceth. Eu devo trazer qualquer evidência de que Buceth tenha com ele para Kuldan, o capitão da guarda que está na casa comprida, em Loneford." + }, + { + "progress": 54, + "logText": "Eu dei o frasco que Buceth tinha com ele para Kuldan, o capitão da guarda em Loneford." + }, + { + "progress": 55, + "logText": "Kuldan agradeceu-me para resolver o mistério da doença em Loneford. Eles vão começar a trazer em água, juntamente com auxílio de Feygard para que não seja mais necessário beber água do poço à partir de agora. Kuldan também me disse para procurar o taifeiro do castelo de Feygard se eu precisar de ajuda.", + "rewardExperience": 15000, + "finishesQuest": 1 + }, + { + "progress": 60, + "logText": "Eu prometi para manter a história de Buceth em segredo. Se Andor era de fato aqui, ele deve ter tido um bom motivo para fazer o que fez. Buceth também me disse para visitar o guardião da capela na cidade nem se eu quiser saber mais sobre a Sombra.", + "rewardExperience": 15000, + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/questlist_v0611.json b/AndorsTrail/res/raw-pt-rBR/questlist_v0611.json new file mode 100644 index 000000000..0faf3afab --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/questlist_v0611.json @@ -0,0 +1,82 @@ +[ + { + "id": "thorin", + "name": "Pedaços", + "showInLog": 1, + "stages": [ + { + "progress": 20, + "logText": "Em uma caverna ao leste, eu encontrei um homem chamado Thorin, que quer que eu o ajude a encontrar os restos mortais de seus antigos companheiros de viagem. Eu devo encontrar os restos de todos os seis deles e devolvê-los a ele." + }, + { + "progress": 31, + "logText": "Eu encontrei alguns restos de esqueletos na mesma caverna em que encontrei com Thorin" + }, + { + "progress": 32, + "logText": "Eu encontrei alguns restos de esqueletos na mesma caverna em que encontrei com Thorin" + }, + { + "progress": 33, + "logText": "Eu encontrei alguns restos de esqueletos na mesma caverna em que encontrei com Thorin" + }, + { + "progress": 34, + "logText": "Eu encontrei alguns restos de esqueletos na mesma caverna em que encontrei com Thorin" + }, + { + "progress": 35, + "logText": "Eu encontrei alguns restos de esqueletos na mesma caverna em que encontrei com Thorin" + }, + { + "progress": 36, + "logText": "Eu encontrei alguns restos de esqueletos na mesma caverna em que encontrei com Thorin" + }, + { + "progress": 40, + "logText": "Thorin agradeceu-me por ajudá-lo. Em troca, ele me permitiu usar sua cama para descansar, e está disposto a vender-me algumas das suas poções.", + "rewardExperience": 4000, + "finishesQuest": 1 + } + ] + }, + { + "id": "algangror", + "name": "De Ratazanas e Homens", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Em uma casa solitária em uma península na margem norte do lago Laeroth nas montanhas ao norte-leste, conheci uma mulher chamada Algangror." + }, + { + "progress": 11, + "logText": "Ela tem um problema com ratazanas e precisa de ajuda para lidar com algumas delas que estão presas em seu porão." + }, + { + "progress": 15, + "logText": "Eu concordei em ajudar Algangror a lidar com seus roedores. Eu devo retornar a vê-la quando matar todos os seis roedores em seu porão." + }, + { + "progress": 20, + "logText": "Algangror me agradeceu por ajudá-la com o seu problema.", + "rewardExperience": 5000 + }, + { + "progress": 21, + "logText": "Ela também me disse para não falar com ninguém em Remgard sobre seu paradeiro. Aparentemente, eles estão procurando por ela por algum motivo que ela não quer contar. Sob nenhuma circunstância que eu devo dizer a ninguém onde ela está.", + "finishesQuest": 1 + }, + { + "progress": 100, + "logText": "Não vou ajudar Algangror com sua tarefa.", + "finishesQuest": 1 + }, + { + "progress": 101, + "logText": "Algangror não vai falar comigo, e eu não poderei ajudá-la com sua tarefa.", + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/questlist_v0611_2.json b/AndorsTrail/res/raw-pt-rBR/questlist_v0611_2.json new file mode 100644 index 000000000..05c300285 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/questlist_v0611_2.json @@ -0,0 +1,257 @@ +[ + { + "id": "toszylae", + "name": "Uma carregador involuntário", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Na estrada entre Loneford e Brimhaven, eu encontrei o leito seco de um antigo lago com uma grande caverna embaixo. Lá no fundo da caverna, eu conheci Ulirfendor - um sacerdote da Sombra de Brimhaven. Ulirfendor está tentando traduzir as inscrições em um santuário de Kazaul, e comentou que ela fala do 'Protetor Negro', mas ele não tem certeza do que se refere. O que quer que seja, ele está determinado que isso deve ser interrompido." + }, + { + "progress": 11, + "logText": "Ulirfendor precisa de ajuda para descobrir algumas das peças que faltam na inscrição do santuário. Está escrito: 'Kulauil hamar Urum Kazaul'te', mas o restante encontra-se completamente corroído na rocha." + }, + { + "progress": 15, + "logText": "Eu concordei em ajudar Ulirfendor a descobrir as partes que faltam na inscrição. Ulirfendor acredita que o santuário fala de uma poderosa criatura que vive mais profundamente dentro do calabouço. Talvez isso poderia fornecer alguma pista sobre o que está nas partes faltantes." + }, + { + "progress": 20, + "logText": "Bem no fundo da masmorra, eu encontrei um guardião radiante, guardando algum outro ser. O guardião proferiu a frase 'Kulauil hamar Urum Kazaul'te. Kazaul hamat urul'. Isto deve ser o que Ulirfendor estava procurando. Eu devo voltar a ele agora." + }, + { + "progress": 21, + "logText": "Eu tentei atacar o guardião, mas fui incapaz de chegar até ele. Alguma força poderosa me segurou. Talvez Ulirfendor saiba mais." + }, + { + "progress": 30, + "logText": "Ulirfendor ficou muito satisfeito ao ouvir que eu descobri as partes faltantes na inscrição.", + "rewardExperience": 2000 + }, + { + "progress": 32, + "logText": "Ele também me disse o resto da inscrição, mas não sei o que significa. Eu devo voltar para o guardião e proferir as palavras que Ulirfendor me disse." + }, + { + "progress": 42, + "logText": "Proferi as palavras para o guardião.", + "rewardExperience": 5000 + }, + { + "progress": 45, + "logText": "O guardião deu um largo e frio sorriso, e começou a me atacar." + }, + { + "progress": 50, + "logText": "Derrotei o guardião e fui junto ao linch 'Toszylae'. O lich conseguiu infectar-me com alguma coisa. Devo matar o lich e voltar para Ulirfendor." + }, + { + "progress": 60, + "logText": "Ulirfendor disse-me que ele tinha conseguido traduzir as partes da inscrição que o guardião me disse. Aparentemente, o que o guardião me disse significa aproximadamente 'Meu corpo para Kazaul'. Ulirfendor estava muito preocupado com o que isso significa para mim, e ficou muito perturbado ao dizer-me tais palavras." + }, + { + "progress": 70, + "logText": "Ulirfendor estava muito feliz em saber que eu consegui derrotar o lich. Com o lich derrotado, as pessoas nas áreas circundantes devem estar seguras agora.", + "rewardExperience": 20000, + "finishesQuest": 1 + } + ] + }, + { + "id": "darkprotector", + "name": "O Protetor Negro", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Eu encontrei um capacete de aparência estranha que tomei de 'Toszylae' o lich ao derrotá-lo. Eu devo perguntar a Ulirfendor se ele sabe alguma coisa sobre isso." + }, + { + "progress": 15, + "logText": "Ulirfendor, na mesma masmorra, acha que este artefato é o mesmo citado no santuário, e que vai trazer miséria nos arredores de quem o carrega. Ele quer que eu o ajude a destruí-lo imediatamente." + }, + { + "progress": 26, + "logText": "Para destruir o artefato, eu preciso dar o capacete e o coração do lich para Ulirfendor." + }, + { + "progress": 30, + "logText": "Eu dei o capacete para Ulirfendor." + }, + { + "progress": 31, + "logText": "Eu dei o coração do lich para Ulirfendor." + }, + { + "progress": 35, + "logText": "Ulirfendor destruiu o artefato. As pessoas das cidades vizinhas estão a salvo de qualquer miséria o capacete teria trazido." + }, + { + "progress": 40, + "logText": "Pela ajuda, tanto com o linch quanto com o capacete, Ulirfendor me deu a bênção escura da sombra.", + "rewardExperience": 15000, + "finishesQuest": 1 + }, + { + "progress": 41, + "logText": "Pela ajuda, tanto com o linch quanto com o capacete, Ulirfendor queria me dar a bênção escura da sombra, mas eu recusei.", + "rewardExperience": 35000, + "finishesQuest": 1 + }, + { + "progress": 50, + "logText": "Eu decidi manter o capacete comigo. Quem sabe o poder que eu poderia ganhar com isso." + }, + { + "progress": 51, + "logText": "Ulirfendor atacou-me por manter o capacete." + }, + { + "progress": 55, + "logText": "Eu encontrei um livro dentro do santuário onde Ulirfendor estava. O livro fala de um ritual que irá restaurar ao capacete para o seu verdadeiro poder. Eu devo completar o ritual do santuário, se eu quiser usar o capacete." + }, + { + "progress": 60, + "logText": "Eu comecei o ritual Kazaul." + }, + { + "progress": 65, + "logText": "Eu coloquei o capacete na frente do santuário de Kazaul." + }, + { + "progress": 66, + "logText": "Eu coloquei o coração do lich na frente do santuário de Kazaul." + }, + { + "progress": 70, + "logText": "O ritual está completo, e eu restaurei o poder do capacete para sua antiga glória.", + "rewardExperience": 5000, + "finishesQuest": 1 + } + ] + }, + { + "id": "maggots", + "name": "Eu tenho algo dentro de mim", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Na parte mais profunda de uma caverna, eu encontrei um lich de Kazaul. De alguma forma, o lich conseguiu infectar-me com as coisas que rastejam dentro de minha barriga! Eu preciso encontrar alguma maneira de se livrar dessas coisas dentro de mim. Eu devo ir falar com Ulirfendor, ou buscar ajuda em uma das capelas." + }, + { + "progress": 20, + "logText": "Ulirfendor me dise que ele leu algo sobre vermes da podridão, que se alimentam de tecidos vivos. Eles causar o que ele chamou de efeitos 'incomuns' em quem os transporta, e seus ovos pode matar lentamente uma pessoa de dentro prá fora. Eu devo procurar ajuda imediatamente, antes que seja tarde demais." + }, + { + "progress": 21, + "logText": "Ulirfendor dise-me que um dos sacerdotes da Sombra deve ser capaz de me ajudar. Eu devo ir visitar Talião na capela em Loneford enquanto há tempo." + }, + { + "progress": 30, + "logText": "Talião, em Loneford, disse-me que, para ser curado da minha doença, eu vou precisar lhe trazer quatro coisas. O que é necessário são cinco ossos, dois pedaços de pêlo, uma glândula de veneno Irdegh e um frasco vazio. Ossos e pele provavelmente podem ser encontrados em algum animal no deserto, e a glândula de veneno pode ser encontrada em um dos Irdeghs que foram vistos a leste." + }, + { + "progress": 40, + "logText": "Eu trouxe os cinco ossos para Talião." + }, + { + "progress": 41, + "logText": "eu trouxe os dois pedaços de pelo para Talião." + }, + { + "progress": 42, + "logText": "Eu trouxe uma glândula de veneno Irdegh para Talião." + }, + { + "progress": 43, + "logText": "Eu trouxe um frasco vazio para Talião." + }, + { + "progress": 45, + "logText": "Eu já trouxe todas as peças que Talião precisa, a fim de curar-me destas coisas." + }, + { + "progress": 50, + "logText": "Talião me curou-me dos vermes da podridão de Kazaul. Eu consegui colocar um dos vermes da podridão em um frasco vazio, e Talião disse-me que isso seria muito valioso. Eu não posso imaginar por quê.", + "rewardExperience": 30000 + }, + { + "progress": 51, + "logText": "Por causa da minha antiga doença, Talião concordou em me ajudar, colocando bênçãos da Sombra em mim, sempre que eu quiser, por uma certa quantia.", + "finishesQuest": 1 + } + ] + }, + { + "id": "sisterfight", + "name": "Uma diferença de opinião", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Eu ouvi uma história sobre duas irmãs briguentas em Remgard, Elwel e Elwyl. Aparentemente, elas têm mantido as pessoas acordadas durante a noite com a maneira como eles gritam umas com as outras. Eu devo ir visitá-las em sua casa na costa sul da cidade de Remgard." + }, + { + "progress": 20, + "logText": "Eu conversei com Elwyl, uma das irmãs Elwille em Remgard. Ela está furiosa com a irmã por que ela não concorda mesmo com o mais simples dos fatos. Aparentemente, elas têm suas divergências uma com a outra ao longo de vários anos." + }, + { + "progress": 21, + "logText": "Elwel não vai falar comigo." + }, + { + "progress": 30, + "logText": "Uma questão que as irmãs discordam sobre atualmente é a cor de uma certa poção que o fabricante de porções da cidade Hjaldar costumava fazer. Elwyl diz que a poção de foco precisão que Hjaldar fazia era uma poção azul, mas Elwel insiste que a poção tinha uma coloração esverdeada." + }, + { + "progress": 31, + "logText": "Elwyl quer que eu pegue uma poção de foco de precisão com Hjaldar, aqui em Remgard, para que ela possa finalmente mostrar a Elwel que ela está errada." + }, + { + "progress": 40, + "logText": "Eu conversei com Hjaldar em Remgard. Hjaldar já não faz poções desde o seu fornecimento de extrato de medula de Lyson acabou." + }, + { + "progress": 41, + "logText": "Aparentemente, Mazeg, um velho amigo de Hjaldar, certamente tem algum extrato de medula de Lyson para vender. Infelizmente, ele não sabe onde Mazeg vive atualmente. Ele só sabe que Mazeg viajou muito para o oeste, desde seu último encontro." + }, + { + "progress": 45, + "logText": "Eu devo encontrar Mazeg e obter algum extrato de medula de Lyson para que Hjaldar possa começar a fazer poções novamente." + }, + { + "progress": 50, + "logText": "Eu conversei com Mazeg no assentamento Montanha das Águas Negras. Ele está disposto a vender-me o extrato de medula Lyson por 800 moedas de ouro." + }, + { + "progress": 51, + "logText": "Eu conversei com Mazeg no assentamento Montanha das Águas Negras. Como eu havia ajudado anteriormente as pessoas da Montanha das Águas Negras, ele está disposto a vender-me um frasco de extrato de medula de Lyson por apenas 400 moedas de ouro." + }, + { + "progress": 55, + "logText": "Eu comprei de Marzeg o extrato de medula de Lyson. Eu devo voltar para Remgard e dar a Hjaldar." + }, + { + "progress": 60, + "logText": "Hjaldar me agradeceu por trazê-lo o extrato de medula.", + "rewardExperience": 15000 + }, + { + "progress": 61, + "logText": "Hjaldar agora pode criar poções de novo, e está disposto a vender-me. Ele até me deu algumas das primeiras poções que ele fez. Eu devo ir visitar as irmãs Elwille aqui em Remgard novamente, e mostrar-lhes uma poção de foco precisão." + }, + { + "progress": 70, + "logText": "Eu dei uma poção de foco precisão para Elwyl." + }, + { + "progress": 71, + "logText": "Infelizmente, não conseguir fazer a briga diminuir. Pelo contrário, elas parecem estar com mais raiva uma da outra agora, já que âmbas erraram a cor.", + "rewardExperience": 9000, + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/questlist_v0611_3.json b/AndorsTrail/res/raw-pt-rBR/questlist_v0611_3.json new file mode 100644 index 000000000..0ced37bdf --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/questlist_v0611_3.json @@ -0,0 +1,296 @@ +[ + { + "id": "remgard", + "name": "Tudo em ordem", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Cheguei na ponte que dá acesso à cidade de Remgard. De acordo com o guarda da ponte, a cidade está fechada para estrangeiros, e ninguém está autorizado a sair. Eles estão investigando alguns desaparecimentos de alguns dos habitantes da cidade." + }, + { + "progress": 15, + "logText": "Eu ofereci minha ajuda para ajudar o povo do Remgard a investigar o que aconteceu com os desaparecidos." + }, + { + "progress": 20, + "logText": "O guarda da ponte, que pediu-me para investigar uma casa abandonada ao leste, ao longo da costa norte do lago. Eu devo ter cuidado com qualquer habitantes que possam estar lá." + }, + { + "progress": 30, + "logText": "Eu relatei ao guarda da ponte que eu conheci Algangror na casa abandonada.", + "rewardExperience": 3000 + }, + { + "progress": 31, + "logText": "Eu relatei ao guarda ponte que a casa abandonada estava vazia.", + "rewardExperience": 3000 + }, + { + "progress": 35, + "logText": "Foi-me concedida a entrada em Remgard. Eu devo visitar Jhaeld, o ancião da cidade, para falar sobre o que o próximo passo devo dar. Jhaeld provavelmente pode ser encontrado na taberna no sudeste." + }, + { + "progress": 40, + "logText": "Jhaeld foi bastante arrogante, mas me disse que eles tiveram alguns problemas com algumas pessoas que desapareceram recentemente. Ele não têm idéia do que pode ter causado isso." + }, + { + "progress": 50, + "logText": "Devo visitar quatro pessoas em Remgard, e perguntar-lhes sobre quaisquer pistas a respeito do que pode ter acontecido com as pessoas desaparecidas." + }, + { + "progress": 51, + "logText": "Primeiro é Norath, cuja esposa, Bethir, desapareceu. Norath pode ser encontrado na casa da fazenda a sudoeste." + }, + { + "progress": 52, + "logText": "Em segundo lugar, eu devo ir falar com os Cavaleiros de Elythom, aqui na taverna." + }, + { + "progress": 53, + "logText": "Em terceiro lugar, eu devo ir falar com a anciã Duaina em sua casa, ao sul." + }, + { + "progress": 54, + "logText": "Por último, eu devo falar com Rothses, o armeiro. Ele mora no lado oeste da cidade." + }, + { + "progress": 59, + "logText": "Eu tentei dizer a Jhaeld sobre Algangror, mas ele me dispensou fazend como se não tivess escutado." + }, + { + "progress": 61, + "logText": "Eu conversei com Norath. Ele e sua esposa brigaram recentemente, mas ele não tem idéia do que pode ter acontecido com ela." + }, + { + "progress": 62, + "logText": "Os Cavaleiros de Elythom na taberna Remgard disseram que um dos seus cavaleiros desapareceu recentemente. Ninguém notou nada quando ele desapareceu, no entanto." + }, + { + "progress": 63, + "logText": "Duaina me viu em suas visões. Eu não entendi tudo o que ela falou, mas as partes que eram claras eram de que eu e Andor somos partes de um grande enredo. Eu me pergunto o que isso significa. Ela não falou de quaisquer pessoas desaparecidas, no entanto, não que eu pudesse entender o que ela fala, de qualquer forma." + }, + { + "progress": 64, + "logText": "Rothses disse-me que Bethir a visitou na noite antes do desaparecimento, para vender alguns equipamentos. Ele não a viu para onde foi depois disso." + }, + { + "progress": 70, + "logText": "Eu já falei com todas as pessoas Jhaeld ordenou que eu conversasse, mas não obteve qualquer informação de nenhum deles sobre o que poderia ter acontecido com as pessoas desaparecidas. Eu devo voltar para Jhaeld e perguntar quais são os próximos passos." + }, + { + "progress": 75, + "logText": "Jhaeld estava realmente chateado que eu não consegui nada de novo com as pessoas às quais ele me enviou para conversar.", + "rewardExperience": 15000 + }, + { + "progress": 80, + "logText": "Se eu ainda quero ajudar Jhaeld e as pessoas de Remgard, eu devo procurar pistas em outros lugares.", + "finishesQuest": 1 + }, + { + "progress": 110, + "logText": "Jhaeld não quer falar comigo. Eu não vou ajudá-lo a descobrir o que aconteceu com as pessoas desaparecidas de Remgard.", + "finishesQuest": 1 + } + ] + }, + { + "id": "remgard2", + "name": "O que é que o mau cheiro?", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Eu disse a Jhaeld, o ancião da aldeia em Remgard, a respeito de uma mulher chamada Algangror, que vive na casa abandonada ao leste, ao longo da costa norte do lago próximo a Remgard." + }, + { + "progress": 20, + "logText": "Jhaeld me disse que ele prefere não lidar com ela, já que ele acredita que ela é muito perigosa. Para o bem de seus guardas, ele não irá correr o risco de lutar contra ela, visto que ele está com medo do que poderia acontecer com todos eles." + }, + { + "progress": 21, + "logText": "Se eu quero ajudar Jhaeld e as pessoas de Remgard, eu devo encontrar uma maneira de fazer Algangror desaparecer. Ele também adverte que eu seja extremamente cuidadoso." + }, + { + "progress": 30, + "logText": "Algangror admitiu para mim que foi ela que fez algumas pessoas desaparecem de Remgard. No entanto, ela não quis me dizer o que aconteceu com eles." + }, + { + "progress": 35, + "logText": "Eu comecei a atacar Algangror. Eu devo voltar para Jhaeld com a prova de sua derrota, após sua morte." + }, + { + "progress": 40, + "logText": "Eu disse a Jhaeld que derrotei Algangror." + }, + { + "progress": 41, + "logText": "Jhaeld ficou muito satisfeito ao ouvir a boa notícia. O povo de Remgard agora deve estar seguro, e da cidade pode ser aberta a estrangeiros novamente." + }, + { + "progress": 45, + "logText": "Por ajudar o povo do Remgard a encontrar a causa das pessoas desaparecidas, Jhaeld aconselhou-me a procurar Rothses. Ele pode ser capaz de melhorar um pouco do meu equipamento.", + "rewardExperience": 21000, + "finishesQuest": 1 + }, + { + "progress": 46, + "logText": "Ervelyn, o alfaiate Remgard, deu-me um chapéu de penas como agradecimento por ajudar o povo do Remgard a descobrir o que aconteceu com as pessoas desaparecidas." + } + ] + }, + { + "id": "fiveidols", + "name": "Os cinco ídolos", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Algangror quer que eu a ajude com uma tarefa. Ela não pode descrever a natureza da tarefa, ou a lógica por trás dela. Se eu ajudá-la, ela prometeu me dar seu colar encantado, que, aparentemente, vale muito." + }, + { + "progress": 20, + "logText": "Eu concordei em ajudar Algangror com sua tarefa." + }, + { + "progress": 30, + "logText": "Algangror quer que eu coloque cinco ídolos perto de cinco pessoas diferentes em Remgard. Os ídolos deve ser colocados perto dos leitos destas cinco pessoas, e devem estar escondidos de modo que eles não possam ser facilmente encontrados." + }, + { + "progress": 31, + "logText": "A primeira pessoa é Jhaeld, o ancião da aldeia, que pode ser encontrado na taverna Remgard." + }, + { + "progress": 32, + "logText": "Em segundo lugar, eu devo colocar um ídolo ao lado da cama de Larni, o agricultor, que vive em uma das cabines do norte em Remgard." + }, + { + "progress": 33, + "logText": "A terceira pessoa é o fabricante de armas Arnal, que vive no noroeste de Remgard." + }, + { + "progress": 34, + "logText": "A quarta é Emerei, que pode ser encontradp a sudeste de Remgard." + }, + { + "progress": 35, + "logText": "A quinta pessoa é Carthe. Carthe vive na costa leste da Remgard, perto da taverna." + }, + { + "progress": 37, + "logText": "Eu não deve contar a ninguém da minha tarefa, ou da colocação dos ídolos." + }, + { + "progress": 41, + "logText": "Eu coloquei um ídolo na cama de Jhaeld." + }, + { + "progress": 42, + "logText": "Eu coloquei um ídolo na cama do fazendeiro Larni." + }, + { + "progress": 43, + "logText": "Eu coloquei um ídolo na cama de Arnal." + }, + { + "progress": 44, + "logText": "Eu coloquei um ídolo na cama de Emerei." + }, + { + "progress": 45, + "logText": "Eu coloquei um ídolo na cama de Carthe." + }, + { + "progress": 50, + "logText": "Todos os ídolos foram colocados nas camas das pessoas que Algangror me disse para visitar. Eu devo voltar a ver Algangror." + }, + { + "progress": 51, + "logText": "Algangror agradeceu-me por ajudá-la." + }, + { + "progress": 60, + "logText": "Ela contou-me sua história, e como ela costumava viver na cidade, mas foi perseguida por suas crenças. Segundo ela, a perseguição foi totalmente injustificada, uma vez que ela não faz mal para as pessoas." + }, + { + "progress": 61, + "logText": "Para vingar-se da cidade de Remgard, ela conseguiu atrair algumas pessoas para sua cabana e transformá-las em ratazanas." + }, + { + "progress": 70, + "logText": "Por ajudá-la com as tarefas que ela não poderia realizar sozinha, Algangror me deu seu colar encantado, 'Marrowtaint'.", + "rewardExperience": 21000, + "finishesQuest": 1 + }, + { + "progress": 100, + "logText": "Eu decidi não ajudar Algangror com sua tarefa.", + "finishesQuest": 1 + } + ] + }, + { + "id": "kaverin", + "name": "Velhos amigos?", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Eu conheci Kaverin em Remgard, que, aparentemente, é um velho conhecido de Unzel, que vive próximo a Fallhaven." + }, + { + "progress": 20, + "logText": "Kaverin quer que eu entrege uma mensagem para Unzel." + }, + { + "progress": 21, + "logText": "Eu quis ajudar Kaverin.", + "finishesQuest": 1 + }, + { + "progress": 22, + "logText": "Eu concordei em entregar a mensagem." + }, + { + "progress": 25, + "logText": "Kaverin deu-me a mensagem de que ele quer que eu entregue a Unzel." + }, + { + "progress": 30, + "logText": "Eu entreguei a mensagem a Unzel. Eu devo voltar para Kaverin em Remgard." + }, + { + "progress": 40, + "logText": "Kaverin agradeceu-me por entregar a mensagem para Unzel.", + "rewardExperience": 10000 + }, + { + "progress": 45, + "logText": "Em troca, Kaverin me deu um mapa antigo que tinha adquirido. Aparentemente, ele leva para o esconderijo antigo de Vacor." + }, + { + "progress": 60, + "logText": "Kaverin ficou furioso com o fato de que eu matei Unzel, e ajudei Vacor. Ele começou a me atacar. Devo voltar para Vacor vez que Kaverin esteja morto." + }, + { + "progress": 70, + "logText": "Kaverin estava carregando uma mensagem lacrada. Vacor reconheceu imediatamente o selo, e parecia muito interessado nele." + }, + { + "progress": 75, + "logText": "Eu dei a Vacor a mensagem de que Kaverin estava carregando. Em troca, Vacor me deu um mapa antigo, que leva a seu antigo esconderijo.", + "rewardExperience": 10000 + }, + { + "progress": 90, + "logText": "Eu devo tentar encontrar o esconderijo antigo de Vacor, na estrada para o oeste da antiga prisão de Flagstone, a sudoeste de Fallhaven." + }, + { + "progress": 100, + "logText": "Eu encontrei o antigo esconderijo de Vacor.", + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/questlist_v068.json b/AndorsTrail/res/raw-pt-rBR/questlist_v068.json new file mode 100644 index 000000000..59661fbad --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/questlist_v068.json @@ -0,0 +1,211 @@ +[ + { + "id": "farrik", + "name": "Visita noturna", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Farrik na corja de ladrões de Fallhaven contou-me sobre um plano para ajudar um colega de crimes a fugir da prisão Fallhaven.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Farrik na corja de ladrões de Fallhaven deu-me detalhes do plano, e eu aceitei a tarefa de ajudá-lo. O capitão da guarda, aparentemente, tem um problema com a bebida. O plano é que eu lhe dê uma dose de hidromel preparada pelo cozinheiro da corja dos ladrões que vai colocaro capitão da guarda para dormir na prisão. Pode ser necessário subornar o capitão da guarda.", + "finishesQuest": 0 + }, + { + "progress": 25, + "logText": "Peguei o hidromel preparado junto ao cozinheiro da corja dos ladrões.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Eu disse Farrik que eu não concordo totalmente com o seu plano. Eu poderia dizer o capitão da guarda sobre seu plano sombrio.", + "finishesQuest": 0 + }, + { + "progress": 32, + "logText": "Eu dei o hidromel preparado para o capitão da guarda.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Eu disse ao capitão da guarda do plano que os ladrões têm para libertar o seu amigo.", + "finishesQuest": 0 + }, + { + "progress": 50, + "logText": "O capitão da guarda quer que eu diga os ladrões que a segurança será reduzida nessa noite. Poderíamos ser capazes de capturar alguns dos ladrões.", + "finishesQuest": 0 + }, + { + "progress": 60, + "logText": "Consegui subornar o capitão da guarda a beber o hidromel preparado. Ele deve estar apagado durante a noite, permitindo que os ladrões para libertem seu amigo.", + "finishesQuest": 0 + }, + { + "progress": 70, + "logText": "Farrik recompensou-me para ajudar a corja dos ladrões.", + "rewardExperience": 1500, + "finishesQuest": 1 + }, + { + "progress": 80, + "logText": "Eu disse Farrik que a segurança será reduzido essa noite.", + "finishesQuest": 0 + }, + { + "progress": 90, + "logText": "O capitão da guarda agradeceu-me por ajudar seu plano para pegar os ladrões. Ele disse que também vai contar outros guardas que eu o ajudei.", + "rewardExperience": 1700, + "finishesQuest": 1 + } + ] + }, + { + "id": "lodar", + "name": "Uma porção perdida", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Eu devo encontrar um fabricante de poção chamado Lodar. Umar da corja dos ladrões de Fallhaven disse-me que eu que vou precisar de saber as palavras certas para passar por um guardião, a fim de alcançar o esconderijo de Lodar.", + "finishesQuest": 0 + }, + { + "progress": 15, + "logText": "Umar disse-me que eu devo ir ver alguém chamado Ogam em Vilegard. Ogam pode fornecer-me as palavras certas para alcançar o esconderijo de Lodar.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Eu visitei Ogam no sudoeste de Vilegard. Ele estava falando algo que pareciam enigmas. Eu mal pude conseguir alguns detalhes quando eu perguntei sobre refúgio de Lodar. 'A meio caminho entre a sombra e a luz. Formações rochosas.' E as palavras 'Brilho da Sombra' estavam entre as coisas que ele disse. Eu não sei o que isso quer dizer.", + "finishesQuest": 0 + } + ] + }, + { + "id": "vilegard", + "name": "Confiando em um estrangeiro", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "O povo de Vilegard é muito desconfiado de estranhos. Disseram-me para ir ver Jolnor na capela de Vilegard se eu quiser ganhar a confiança deles.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Eu conversei com Jolnor na capela de Vilegard. Ele sugere que eu ajude três pessoas influentes, a fim de ganhar a confiança das pessoas em Vilegard. Eu devo ajudar Kaori, Wrye e o próprio Jolnor em Vilegard.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Eu ajudei as três pessoas em Vilegard que Jolnor sugeriu. Agora o povo de Vilegard deve confiar mais em mim.", + "rewardExperience": 2100, + "finishesQuest": 1 + } + ] + }, + { + "id": "kaori", + "name": "Recados de Kaori", + "showInLog": 1, + "stages": [ + { + "progress": 5, + "logText": "Jolnor da capela de Vilegard quer que eu fale com Kaori no norte de Vilegard, para ver se ela quer alguma ajuda.", + "finishesQuest": 0 + }, + { + "progress": 10, + "logText": "Kaori no norte Vilegard quer que eu traga para ela 10 poções de farinha de osso.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Eu trouxe 10 porções de farinha de ossos para Kaori.", + "rewardExperience": 520, + "finishesQuest": 1 + } + ] + }, + { + "id": "wrye", + "name": "Causa incerta", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Jolnor da capela de Vilegard quer que eu fale com Wrye no norte de Vilegard. Ela aparentemente perdeu o filho recentemente.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Wrye no norte Vilegard me diz que seu filho Rincel desapareceu. Ela acha que ele morreu ou se encontra gravemente ferido.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Wrye me diz que ela acha que a guarda real de Feygard está envolvida em seu desaparecimento, e que ele foi recrutado pela guarda.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Wrye quer que eu vá em busca de pistas sobre o paradeiro de seu filho.", + "finishesQuest": 0 + }, + { + "progress": 41, + "logText": "Eu devo olhar na taverna de Vilegard e na taverna Foaming Flask, ao norte de Vilegard.", + "rewardExperience": 200, + "finishesQuest": 0 + }, + { + "progress": 42, + "logText": "Eu escutei que um menino esteve na taberna Foaming Flask tempos atrás. Aparentemente, ele deixou a taverna, dirigindo-se a algum lugar no oeste.", + "finishesQuest": 0 + }, + { + "progress": 80, + "logText": "Ao noroeste de Vilegard, eu encontrei um homem que tinha visto Rincel combater alguns monstros. Rincel aparentemente deixou Vilegard por sua própria vontade para conhecer a cidade de Feygard. Eu devo contar a Wrye no norte Vilegard o que aconteceu com seu filho.", + "finishesQuest": 0 + }, + { + "progress": 90, + "logText": "Eu disse Wrye a verdade sobre o desaparecimento do filho dela.", + "rewardExperience": 520, + "finishesQuest": 1 + } + ] + }, + { + "id": "jolnor", + "name": "Espiões em Foaming Flask", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Jolnor da capela de Vilegard contou-me sobre um guarda postado no lado de fora da taverna Foaming Flask. Ele acha que é um espião para a guarda real de Feygard. Ele quer que eu faça o guarda desaparecer, da forma que eu julgar melhor. A taberna fica ao norte de Vilegard.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Eu convenci o guarda na porta da taberna Foaming Flask a sair após o fim de seu turno.", + "finishesQuest": 0 + }, + { + "progress": 21, + "logText": "Eu comecei uma briga com o guarda fora da taverna Foaming Flask. Eu devo levar o anel do guarda da guarda real de Feygard para Jolnor uma vez que ele esteja morto para mostrar Jolnor que ele desapareceu.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Eu disse Jolnor que o guarda se foi.", + "rewardExperience": 630, + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt-rBR/questlist_v069.json b/AndorsTrail/res/raw-pt-rBR/questlist_v069.json new file mode 100644 index 000000000..83d03cdd0 --- /dev/null +++ b/AndorsTrail/res/raw-pt-rBR/questlist_v069.json @@ -0,0 +1,368 @@ +[ + { + "id": "bwm_agent", + "name": "O agente e a besta", + "showInLog": 1, + "stages": [ + { + "progress": 1, + "logText": "Eu conheci um homem em busca de ajuda para a sua colonia, a 'Montanha das Águas Negras'. Supostamente, sua colônia está sendo atacada por monstros e bandidos, e eles precisam de ajuda do exterior." + }, + { + "progress": 5, + "logText": "Concordei em ajudar o homem e a Montanha das Águas negras a lidar com o problema." + }, + { + "progress": 10, + "logText": "O homem disse-me para encontrá-lo do outro lado da mina que desabou. Ele vai rastejar através da mina e eu vou descer para a mina escura abandonada." + }, + { + "progress": 20, + "logText": "Caminhei pela mina escura abandonada, e encontrei o homem no outro lado. Ele parecia muito ansioso, dizendo-me para ir direto para o leste, uma vez que eu saísse da mina. Eu devo encontrar o homem na base da montanha ao leste." + }, + { + "progress": 25, + "logText": "Eu ouvi uma história sobre Prim e colônia da Montanha das Águas Negras estarem lutando uns contra os outros." + }, + { + "progress": 30, + "logText": "Devo seguir o caminho ao longo da montanha até alcançar a colônia da Montanha das Águas Negras." + }, + { + "progress": 40, + "logText": "Encontrei novamente o homem no meu caminho para a Montanha das Águas Negras. Devo seguir em frente até a montanha." + }, + { + "progress": 50, + "logText": "Eu subi até as partes cobertas de neve da Montanha das Águas Negras. O homem disse-me para avançar na montanha. Aparentemente, a colônia da Montanha das Águas Negras está próximo." + }, + { + "progress": 60, + "logText": "Alcancei a colônia da Montanha das Águas Negras. Eu devo encontrar e conversar com seu mestre batalha, Harlenn." + }, + { + "progress": 65, + "logText": "Falei com Harlenn da colônia da Montanha das Águas Negras. Aparentemente, o assentamento está sob ataque de uma série de monstros, os dragões Aulaeth e dragões brancos. Mais que isso, eles estão sendo atacados pelo povo de Prim." + }, + { + "progress": 66, + "logText": "Harlenn acha que as pessoas de Prim estão por trás dos ataques de monstro de alguma forma." + }, + { + "progress": 70, + "logText": "Harlenn quer que eu deixe uma mensagem para Guthbered de Prim: Ou as pessoas de Prim param seus ataques à colônia da Montanha das Águas Negras, ou eles terão guerra. Eu devo falar com Guthbered em Prim." + }, + { + "progress": 80, + "logText": "Guthbered nega que o povo de Prim tenha relação com os ataques de monstros no povoamento de Montanha das Águas Negras. Eu devo falar com Harlenn" + }, + { + "progress": 90, + "logText": "Harlenn tem certeza de que o povo de Prim está por trás dos ataques de alguma forma." + }, + { + "progress": 95, + "logText": "Harlenn quer que retorne a Prim e procure por sinais de que eles estão se preparando para um ataque à colônia. Eu devo procurar pistas ao redor de onde está Guthbered." + }, + { + "progress": 100, + "logText": "Eu encontrei alguns planos em Prim para recrutar mercenários e atacar a colônia da Montanha das Águas Negras. Eu devo falar com Harlenn imediatamente." + }, + { + "progress": 110, + "logText": "Harlenn agradeceu-me por investigar os planos de ataque.", + "rewardExperience": 1150 + }, + { + "progress": 120, + "logText": "Por conta dos planos para ataques à colônia da Montanha das Águas Negras, Harlenn quer que eu mate Guthbered em Prim." + }, + { + "progress": 130, + "logText": "Eu iniciei a luta com com Guthbered." + }, + { + "progress": 131, + "logText": "Eu disse Guthbered que foi enviado para matá-lo, mas eu iria deixá-lo viver. Ele agradeceu-me profundamente, e deixou Prim.", + "rewardExperience": 2100 + }, + { + "progress": 149, + "logText": "Eu disse que Harlenn Guthbered se foi." + }, + { + "progress": 150, + "logText": "Harlenn agradeceu-me pela ajuda prestada. Felizmente, os ataques contra a colônia da Montanha de Águas Negras devem parar agora.", + "rewardExperience": 5000 + }, + { + "progress": 240, + "logText": "Ganhei a confiança da colônia da Montanha de Águas Negras. Todos os serviços devem estar disponíveis para eu usar.", + "finishesQuest": 1 + }, + { + "progress": 250, + "logText": "Eu decidi não ajudar a colônia da Montanha de Águas Negras.", + "finishesQuest": 1 + }, + { + "progress": 251, + "logText": "Desde que eu estou ajudando Prim, Harlenn não quer mais falar comigo.", + "finishesQuest": 1 + } + ] + }, + { + "id": "prim_innquest", + "name": "Bem Descansado", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Eu conversei com o cozinheiro em Prim, na base da Montanha das Águas Negras. Há um quarto na pousada para alugar, mas está atualmente alugado para Arghest. Eu devo falar com Arghest para ver se ele ainda quer continuar alugando o quarto. O cozinheiro disse-me que o encontrarei a sudoeste de Prim." + }, + { + "progress": 20, + "logText": "Eu conversei com Arghest sobre o quarto na pousada. Ele ainda está interessado em mantê-lo como uma opção para descanso. Mas ele me disse que provavelmente poderia ser persuadido a deixar-me usá-lo se eu o compensá-lo suficientemente." + }, + { + "progress": 30, + "logText": "Arghest quer que eu lhe traga 5 garrafas de leite. Eu provavelmente poderei encontrar um pouco de leite em qualquer uma das aldeias maiores." + }, + { + "progress": 40, + "logText": "Eu trouxe o leite para Arghest. Ele concordou em deixar-me usar o quarto na pousada Prim. Eu poderei finalmente descansar agora. Eu devo falar com o cozinheiro da pousada.", + "rewardExperience": 500 + }, + { + "progress": 50, + "logText": "Eu expliquei para o cozinheiro que eu tenho permissão de Arghest por usar o quarto de dormir.", + "finishesQuest": 1 + } + ] + }, + { + "id": "prim_hunt", + "name": "Intenções obscuras", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Próximo à mina parcialmente soterrada, no caminho para a Montanha das Águas Negras, conheci um homem da aldeia de Prim. Ele pediu-me para ajudá-los." + }, + { + "progress": 11, + "logText": "A aldeia de Prim necessita da ajuda de alguém de fora para lidar com ataques de alguns monstros. Eu devo falar com Guthbered em Prim a respeito dessa ajuda." + }, + { + "progress": 15, + "logText": "Guthbered pode ser encontrado na prefeitura de Prim. Eu devo procurar uma casa de pedra ao centro da cidade." + }, + { + "progress": 20, + "logText": "Eu Guthbered contou-me uma história sobre Prim. Prim esteve recentemente sob constante ataque do assentamento da Montanha das Águas Negras." + }, + { + "progress": 25, + "logText": "Guthbered quer que eu vá até o assentamento no topo da Montanha das Águas Negras e perguntar a Harlenn, ministro da guerra, por que (ou se) eles têm convocado os monstros Gornaud contra Prim." + }, + { + "progress": 30, + "logText": "Eu conversei com Harlenn sobre os ataques a Prim. Ele nega que as pessoas do assentamento da Montanha das Águas Negras tenha algo a ver com eles. Eu devo falar com Guthbered de Prim novamente." + }, + { + "progress": 40, + "logText": "Guthbered ainda acredita que as pessoas no assentamento Águas Negras tenham algo a ver com os ataques." + }, + { + "progress": 50, + "logText": "Guthbered quer que eu vá procurar por indícios de que as pessoas do assentamento da Montanha das Águas Negras estejam se preparando para um ataque em grande escala a Prim. Eu devo procurar pistas perto dos aposentos privados de Harlenn, certificanto-me que eu não seja visto." + }, + { + "progress": 60, + "logText": "Eu encontrei alguns papéis em torno de aposentos privados do Harlenn delineando um plano para atacar Prim. Eu devo falar com Guthbered imediatamente." + }, + { + "progress": 70, + "logText": "Guthbered me agradeceu por ajudá-lo a encontrar evidências dos planos para um ataque.", + "rewardExperience": 1150 + }, + { + "progress": 80, + "logText": "A fim de por fim aos ataques à Prim, Guthbered quer que eu mate Harlenn no assentamento da Montanha das Águas Negras." + }, + { + "progress": 90, + "logText": "Eu comecei uma briga com Harlenn." + }, + { + "progress": 91, + "logText": "Eu disse que à Harlenn que fui enviado para matá-lo, mas eu vou deixá-lo viver. Ele agradeceu-me profundamente, e deixou o assentamento.", + "rewardExperience": 2100 + }, + { + "progress": 99, + "logText": "Eu disse para Guthbered que Harlenn se foi." + }, + { + "progress": 100, + "logText": "Guthbered me agradeceu pela ajuda que dei a Prim. Felizmente, os ataques a Prim devem parar agora. Como agradecimento, Guthbered me deu alguns itens e uma autorização forjada para que eu possa entrar na câmara interna-se no assentamento Montanha das Águas Negras.", + "rewardExperience": 5000 + }, + { + "progress": 140, + "logText": "Eu mostrei a autorização forjada para a guarda e deixaram-me passar para a câmara interior." + }, + { + "progress": 240, + "logText": "Agora que ganhei a confiança de Prim, todos os serviços devem estar disponíveis para eu usar.", + "finishesQuest": 1 + }, + { + "progress": 250, + "logText": "Eu decidi não ajudar o povo do Prim.", + "finishesQuest": 1 + }, + { + "progress": 251, + "logText": "Desde que eu estou ajudando o assentamento da Montanha das Águas Negras, Guthbered não quer mais falar comigo.", + "finishesQuest": 1 + } + ] + }, + { + "id": "kazaul", + "name": "Luzes na escuridão", + "showInLog": 1, + "stages": [ + { + "progress": 8, + "logText": "Eu consegui caminhar até a câmara interna no assentamento Montanha das Águas Negras e encontrei um grupo de magos liderados por um homem chamado Throdna." + }, + { + "progress": 9, + "logText": "Throdna parece muito interessado em alguém (ou algo assim) chamado Kazaul, e em particular em um ritual realizado em seu nome." + }, + { + "progress": 10, + "logText": "Eu concordei em ajudar Throdna a obter mais informações sobre o ritual, procurando por pedaços do ritual que, aparentemente, estão espalhadas por toda a montanha. Eu devo procurar as partes do ritual Kazaul no caminho de desce montanha a baixo até Prim." + }, + { + "progress": 11, + "logText": "Eu preciso encontrar as duas partes do canto e os três pedaços que descrevem o ritual em si, e voltar ao Throdna uma vez que encontre tudo." + }, + { + "progress": 21, + "logText": "Eu encontrei a primeira metade do canto para o ritual Kazaul." + }, + { + "progress": 22, + "logText": "Eu encontrei a segunda metade do canto para o ritual Kazaul." + }, + { + "progress": 25, + "logText": "Eu encontrei a primeira parte do ritual Kazaul." + }, + { + "progress": 26, + "logText": "Eu encontrei a segunda parte do ritual Kazaul." + }, + { + "progress": 27, + "logText": "Eu encontrei a terceira peça do ritual Kazaul." + }, + { + "progress": 30, + "logText": "Throdna agradeceu-me para encontrar todas as partes do ritual.", + "rewardExperience": 3600 + }, + { + "progress": 40, + "logText": "Throdna quer que eu ponha um fim o que esteja levando à ascensão de Kazaul que está acontecendo perto da Montanha das Águas Negras. Há um templo na base da montanha que eu devo investigar mais perto." + }, + { + "progress": 41, + "logText": "Eu recebi um frasco de purificador de espírito que Throdna quere que eu aplique no santuário de Kazaul. Eu devo voltar para Throdna quando eu encontrar o santuário e o tiver purificado." + }, + { + "progress": 50, + "logText": "No santuário na base da Montanha das Águas Negras, eu conheci um guardião de Kazaul. Ao recitar os versos do canto ritual, eu fui capaz de fazer o guardião me atacar." + }, + { + "progress": 60, + "logText": "Eu purifiquei o santuário de Kazaul.", + "rewardExperience": 3200 + }, + { + "progress": 100, + "logText": "Eu esperava ganhar algum tipo de retorno de Throdna por ajudá-lo a aprender mais sobre o ritual de purificação do santuário. Mas ele parece mais preocupado em divagar sobre Kazaul. Eu não ganho nenhum retorno com as suas divagações.", + "finishesQuest": 1 + } + ] + }, + { + "id": "bwm_wyrms", + "name": "Sem fraqueza", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Herec, no segundo nível do assentamento da Montanha das Águas Negras está pesquisando sobre os dragões brancos fora do assentamento. Ele quer que eu o traga 5 garras de dragão branco para que ele possa continuar a sua pesquisa. Aparentemente, apenas alguns dos dragões tem essas garras. Vou ter que matar alguns para encontrá-las." + }, + { + "progress": 20, + "logText": "Eu dei as cinco garras de dragões brancos para Herec." + }, + { + "progress": 30, + "logText": "Herec acabou de fazer uma poção de restauração fadiga, que tornará muito útil lutar contra os dragões no futuro.", + "rewardExperience": 1500, + "finishesQuest": 1 + } + ] + }, + { + "id": "bjorgur_grave", + "name": "Acordando da letargia", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Bjorgur de Prim, na base da Montanha das Águas Negras, pensa que alguma coisa tem perturbado o túmulo de seus pais, a sudoeste de Prim, fora da mina de Elm." + }, + { + "progress": 15, + "logText": "Bjorgur quer que eu vá verificar o túmulo, e certifique-se punhal de sua família ainda esteja seguro no túmulo." + }, + { + "progress": 20, + "logText": "Fulus em Prim está interessado em obter punhal Bjorgur da família que o avô de Bjorgur possuia." + }, + { + "progress": 30, + "logText": "Eu conheci um homem que empunhava uma adaga de aparência estranha nas partes baixas de um túmulo a sudoeste de Prim. Ele deve ter roubado este punhal do túmulo." + }, + { + "progress": 40, + "logText": "Eu coloquei o punhal de volta em seu lugar no túmulo. Estranhamente, os mortos-vivos inquietos parecem muito menos inquietos agora.", + "rewardExperience": 200 + }, + { + "progress": 50, + "logText": "Bjorgur agradeceu-me por minha ajuda. Ele me disse que eu devo também procurar seus parentes em Feygard.", + "rewardExperience": 1100, + "finishesQuest": 1 + }, + { + "progress": 51, + "logText": "Eu disse a Fulus que eu ajudei Bjorgur a retornar a adaga família ao seu lugar original." + }, + { + "progress": 60, + "logText": "Eu dei punhal Bjorgur da família para Fulus. Ele me agradeceu por trazê-lo a ele, e me recompensou generosamente.", + "rewardExperience": 1700, + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw-pt/actorconditions_v0610.json b/AndorsTrail/res/raw-pt/actorconditions_v0610.json new file mode 100644 index 000000000..d41b80f59 --- /dev/null +++ b/AndorsTrail/res/raw-pt/actorconditions_v0610.json @@ -0,0 +1,27 @@ +[ + { + "id": "chaotic_grip", + "iconID": "actorconditions_1:96", + "name": "Aperto caótico", + "category": 1, + "abilityEffect": { + "increaseBlockChance": -10, + "increaseDamageResistance": -1 + } + }, + { + "id": "chaotic_curse", + "iconID": "actorconditions_1:89", + "name": "Maldição caótica", + "category": 1, + "abilityEffect": { + "increaseMaxAP": -1, + "increaseAttackDamage": { + "min": -1, + "max": -1 + }, + "increaseBlockChance": -10, + "increaseDamageResistance": -1 + } + } +] diff --git a/AndorsTrail/res/raw-pt/actorconditions_v069.json b/AndorsTrail/res/raw-pt/actorconditions_v069.json new file mode 100644 index 000000000..3e936f6cf --- /dev/null +++ b/AndorsTrail/res/raw-pt/actorconditions_v069.json @@ -0,0 +1,52 @@ +[ + { + "id": "bless", + "iconID": "actorconditions_1:41", + "name": "Benção", + "category": 0, + "isPositive": 1, + "abilityEffect": { + "increaseAttackChance": 5 + } + }, + { + "id": "poison_weak", + "iconID": "actorconditions_1:60", + "name": "Veneno Fraco", + "category": 3, + "roundEffect": { + "visualEffectID": 2, + "increaseCurrentHP": { + "min": -1, + "max": -1 + } + } + }, + { + "id": "str", + "iconID": "actorconditions_1:70", + "name": "Força", + "category": 2, + "isPositive": 1, + "abilityEffect": { + "increaseAttackDamage": { + "min": 2, + "max": 2 + } + } + }, + { + "id": "regen", + "iconID": "actorconditions_1:35", + "name": "Regeneração das Sombras", + "category": 0, + "isPositive": 1, + "roundEffect": { + "visualEffectID": 1, + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + } +] diff --git a/AndorsTrail/res/raw-pt/actorconditions_v069_bwm.json b/AndorsTrail/res/raw-pt/actorconditions_v069_bwm.json new file mode 100644 index 000000000..8e4ec84f3 --- /dev/null +++ b/AndorsTrail/res/raw-pt/actorconditions_v069_bwm.json @@ -0,0 +1,101 @@ +[ + { + "id": "speed_minor", + "iconID": "actorconditions_1:87", + "name": "Velocidade menor", + "category": 2, + "isPositive": 1, + "abilityEffect": { + "increaseMaxAP": 2 + } + }, + { + "id": "fatigue_minor", + "iconID": "actorconditions_1:14", + "name": "Fadiga menor", + "category": 2, + "abilityEffect": { + "increaseMoveCost": 2, + "increaseAttackCost": 2, + "increaseAttackDamage": { + "min": -1, + "max": -1 + } + } + }, + { + "id": "feebleness_minor", + "iconID": "actorconditions_1:74", + "name": "Fraqueza de arma menor", + "category": 1, + "abilityEffect": { + "increaseAttackDamage": { + "min": -3, + "max": -3 + } + } + }, + { + "id": "bleeding_wound", + "iconID": "actorconditions_2:0", + "name": "Ferida aberta", + "category": 3, + "isStacking": 1, + "roundEffect": { + "visualEffectID": 0, + "increaseCurrentHP": { + "min": -1, + "max": -1 + } + } + }, + { + "id": "rage_minor", + "iconID": "actorconditions_1:90", + "name": "Fúria menor", + "category": 1, + "isPositive": 1, + "abilityEffect": { + "increaseMaxHP": 35, + "increaseAttackChance": 60, + "increaseBlockChance": -90, + "increaseDamageResistance": -1 + } + }, + { + "id": "blackwater_misery", + "iconID": "actorconditions_1:58", + "name": "Tormento das águas-negras", + "category": 3, + "abilityEffect": { + "increaseAttackCost": 1, + "increaseAttackChance": -50, + "increaseCriticalSkill": -50 + } + }, + { + "id": "intoxicated", + "iconID": "actorconditions_2:1", + "name": "Intoxicado", + "category": 1, + "isPositive": 1, + "abilityEffect": { + "increaseMaxHP": 15, + "increaseAttackCost": 1, + "increaseAttackChance": -30, + "increaseAttackDamage": { + "min": 4, + "max": 4 + } + } + }, + { + "id": "dazed", + "iconID": "actorconditions_1:65", + "name": "Atordoado", + "category": 1, + "abilityEffect": { + "increaseBlockChance": -40 + } + } +] diff --git a/AndorsTrail/res/raw-pt/monsterlist_crossglen_animals.json b/AndorsTrail/res/raw-pt/monsterlist_crossglen_animals.json new file mode 100644 index 000000000..eaba25a89 --- /dev/null +++ b/AndorsTrail/res/raw-pt/monsterlist_crossglen_animals.json @@ -0,0 +1,469 @@ +[ + { + "id": "tiny_rat", + "iconID": "monsters_rats:0", + "name": "Ratazana pequena", + "spawnGroup": "trainingrat", + "monsterClass": 4, + "unique": 1, + "maxHP": 2, + "attackCost": 10, + "attackChance": 50, + "droplistID": "trainingrat", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "cave_rat", + "iconID": "monsters_rats:1", + "name": "Ratazana-das-cavernas", + "spawnGroup": "crossglen_caverat", + "monsterClass": 4, + "maxHP": 5, + "attackCost": 10, + "attackChance": 90, + "droplistID": "rat", + "attackDamage": { + "min": 2, + "max": 2 + } + }, + { + "id": "tough_cave_rat", + "iconID": "monsters_rats:1", + "name": "Ratazana-das-cavernas resistente", + "spawnGroup": "crossglen_caverat2", + "monsterClass": 4, + "maxHP": 5, + "attackCost": 5, + "attackChance": 90, + "droplistID": "rat", + "attackDamage": { + "min": 3, + "max": 3 + } + }, + { + "id": "strong_cave_rat", + "iconID": "monsters_rats:3", + "name": "Ratazana-das-cavernas forte", + "spawnGroup": "crossglen_caveboss", + "monsterClass": 4, + "unique": 1, + "maxHP": 20, + "attackCost": 5, + "attackChance": 100, + "blockChance": 10, + "droplistID": "caveratboss", + "attackDamage": { + "min": 2, + "max": 4 + } + }, + { + "id": "black_ant", + "iconID": "monsters_insects:0", + "name": "Formiga preta", + "spawnGroup": "crossglen_ant", + "monsterClass": 1, + "maxHP": 3, + "attackCost": 10, + "attackChance": 70, + "droplistID": "insect", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "small_wasp", + "iconID": "monsters_insects:1", + "name": "Vespa pequena", + "spawnGroup": "crossglen_wasp", + "monsterClass": 1, + "maxHP": 4, + "attackCost": 10, + "attackChance": 70, + "droplistID": "wasp", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "beetle", + "iconID": "monsters_insects:4", + "name": "Escaravelho", + "spawnGroup": "crossglen_beetle", + "monsterClass": 1, + "maxHP": 4, + "attackCost": 10, + "attackChance": 70, + "droplistID": "insect", + "attackDamage": { + "min": 3, + "max": 3 + } + }, + { + "id": "forest_wasp", + "iconID": "monsters_insects:1", + "name": "Vespa-das-florestas", + "spawnGroup": "forestwasp", + "monsterClass": 1, + "maxHP": 6, + "attackCost": 10, + "attackChance": 70, + "droplistID": "wasp", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "forest_ant", + "iconID": "monsters_insects:0", + "name": "Formiga-das-florestas", + "spawnGroup": "forestant", + "monsterClass": 1, + "maxHP": 4, + "attackCost": 10, + "attackChance": 90, + "blockChance": 10, + "droplistID": "insect", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "yellow_forest_ant", + "iconID": "monsters_insects:2", + "name": "Formiga-das-florestas amarela", + "spawnGroup": "forestant", + "monsterClass": 1, + "maxHP": 5, + "attackCost": 10, + "attackChance": 100, + "blockChance": 15, + "droplistID": "insect", + "attackDamage": { + "min": 2, + "max": 2 + } + }, + { + "id": "small_rabid_dog", + "iconID": "monsters_dogs:1", + "name": "Cão raivoso pequeno", + "spawnGroup": "forestdog", + "monsterClass": 4, + "maxHP": 6, + "attackCost": 10, + "attackChance": 90, + "droplistID": "canine", + "attackDamage": { + "min": 2, + "max": 2 + } + }, + { + "id": "forest_snake", + "iconID": "monsters_snakes:1", + "name": "Cobra-das-florestas", + "spawnGroup": "forestsnake", + "monsterClass": 7, + "maxHP": 7, + "attackCost": 10, + "attackChance": 110, + "blockChance": 10, + "droplistID": "snake", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "young_cave_snake", + "iconID": "monsters_snakes:3", + "name": "Cobra-das-cavernas jovem", + "spawnGroup": "cavesnake1", + "monsterClass": 7, + "maxHP": 8, + "attackCost": 5, + "attackChance": 110, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 10, + "droplistID": "snake", + "attackDamage": { + "min": 2, + "max": 2 + } + }, + { + "id": "cave_snake", + "iconID": "monsters_snakes:3", + "name": "Cobra-das-cavernas", + "spawnGroup": "cavesnake1", + "monsterClass": 7, + "maxHP": 12, + "attackCost": 5, + "attackChance": 110, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 15, + "droplistID": "snake", + "attackDamage": { + "min": 2, + "max": 2 + } + }, + { + "id": "venomous_cave_snake", + "iconID": "monsters_snakes:3", + "name": "Cobra-das-cavernas venenosa", + "spawnGroup": "cavesnake2", + "monsterClass": 7, + "maxHP": 15, + "maxAP": 10, + "attackCost": 5, + "attackChance": 110, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 10, + "droplistID": "snake", + "attackDamage": { + "min": 2, + "max": 2 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_weak", + "magnitude": 1, + "duration": 1, + "chance": 10 + } + ] + } + }, + { + "id": "tough_cave_snake", + "iconID": "monsters_snakes:3", + "name": "Cobra-das-cavernas resistente", + "spawnGroup": "cavesnake2", + "monsterClass": 7, + "maxHP": 21, + "attackCost": 5, + "attackChance": 110, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 15, + "droplistID": "snake", + "attackDamage": { + "min": 2, + "max": 2 + } + }, + { + "id": "basilisk", + "iconID": "monsters_rats:4", + "name": "Basilisk", + "spawnGroup": "cavesnake2_boss", + "monsterClass": 7, + "maxHP": 40, + "attackCost": 7, + "attackChance": 40, + "blockChance": 50, + "damageResistance": 2, + "droplistID": "cavecritter", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "snake_servant", + "iconID": "monsters_liches:0", + "name": "Cobra servo", + "spawnGroup": "cavesnake3", + "monsterClass": 6, + "maxHP": 35, + "attackCost": 5, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 3, + "blockChance": 10, + "damageResistance": 1, + "droplistID": "lich1", + "attackDamage": { + "min": 2, + "max": 3 + } + }, + { + "id": "snake_master", + "iconID": "monsters_liches:1", + "name": "Cobra mestre", + "spawnGroup": "cavesnake3_boss", + "monsterClass": 6, + "unique": 1, + "maxHP": 55, + "attackCost": 5, + "attackChance": 60, + "criticalSkill": 200, + "criticalMultiplier": 3, + "blockChance": 10, + "damageResistance": 4, + "droplistID": "snakemaster", + "phraseID": "snakemaster", + "attackDamage": { + "min": 1, + "max": 4 + } + }, + { + "id": "rabid_boar", + "iconID": "monsters_dogs:6", + "name": "Javali raivoso", + "spawnGroup": "forestboar", + "monsterClass": 4, + "maxHP": 20, + "attackCost": 5, + "attackChance": 110, + "blockChance": 30, + "droplistID": "canineboss", + "attackDamage": { + "min": 3, + "max": 3 + } + }, + { + "id": "rabid_fox", + "iconID": "monsters_dogs:3", + "name": "Raposa raivosa", + "spawnGroup": "fox1", + "monsterClass": 4, + "maxHP": 25, + "attackCost": 5, + "attackChance": 100, + "blockChance": 50, + "droplistID": "canine", + "attackDamage": { + "min": 3, + "max": 3 + } + }, + { + "id": "yellow_cave_ant", + "iconID": "monsters_insects:2", + "name": "Formiga-das-cavernas amarela", + "spawnGroup": "pitcave1", + "monsterClass": 1, + "maxHP": 20, + "attackCost": 3, + "attackChance": 30, + "blockChance": 80, + "droplistID": "insect", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "young_teeth_critter", + "iconID": "monsters_misc:0", + "name": "Monstro-dos-dentes jovem", + "spawnGroup": "pitcave2", + "monsterClass": 7, + "maxHP": 15, + "attackCost": 2, + "attackChance": 50, + "blockChance": 70, + "droplistID": "cavecritter", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "teeth_critter", + "iconID": "monsters_misc:0", + "name": "Monstro-dos-dentes", + "spawnGroup": "pitcave2", + "monsterClass": 7, + "maxHP": 25, + "attackCost": 2, + "attackChance": 60, + "criticalSkill": 10, + "criticalMultiplier": 3, + "blockChance": 70, + "droplistID": "cavecritter", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "young_minotaur", + "iconID": "monsters_misc:5", + "name": "Minotauro jovem", + "spawnGroup": "pitcave2", + "monsterClass": 5, + "maxHP": 45, + "attackCost": 6, + "attackChance": 20, + "criticalSkill": 40, + "criticalMultiplier": 3, + "blockChance": 50, + "damageResistance": 2, + "droplistID": "cavemonster", + "attackDamage": { + "min": 4, + "max": 4 + } + }, + { + "id": "strong_minotaur", + "iconID": "monsters_misc:5", + "name": "Minotauro forte", + "spawnGroup": "pitcave2_boss", + "monsterClass": 5, + "maxHP": 53, + "attackCost": 6, + "attackChance": 40, + "criticalSkill": 50, + "criticalMultiplier": 3, + "blockChance": 50, + "damageResistance": 2, + "droplistID": "cavemonster", + "attackDamage": { + "min": 5, + "max": 5 + } + }, + { + "id": "irogotu", + "iconID": "monsters_liches:0", + "name": "Irogotu", + "spawnGroup": "pitcave_boss", + "monsterClass": 6, + "unique": 1, + "maxHP": 61, + "attackCost": 3, + "attackChance": 50, + "criticalSkill": 40, + "criticalMultiplier": 3, + "blockChance": 70, + "damageResistance": 4, + "droplistID": "irogotu", + "phraseID": "irogotu", + "attackDamage": { + "min": 2, + "max": 5 + } + } +] diff --git a/AndorsTrail/res/raw-pt/monsterlist_crossglen_npcs.json b/AndorsTrail/res/raw-pt/monsterlist_crossglen_npcs.json new file mode 100644 index 000000000..a55be1306 --- /dev/null +++ b/AndorsTrail/res/raw-pt/monsterlist_crossglen_npcs.json @@ -0,0 +1,119 @@ +[ + { + "id": "mikhail", + "iconID": "monsters_mage2:0", + "name": "Mikhail", + "spawnGroup": "mikhail", + "monsterClass": 0, + "phraseID": "mikhail_start_select" + }, + { + "id": "leta", + "iconID": "monsters_men:2", + "name": "Leta", + "spawnGroup": "leta", + "monsterClass": 0, + "phraseID": "leta1" + }, + { + "id": "audir", + "iconID": "monsters_men:0", + "name": "Audir", + "spawnGroup": "audir", + "monsterClass": 0, + "droplistID": "shop_audir", + "phraseID": "audir1" + }, + { + "id": "arambold", + "iconID": "monsters_men:3", + "name": "Arambold", + "spawnGroup": "arambold", + "monsterClass": 0, + "droplistID": "shop_arambold", + "phraseID": "arambold1" + }, + { + "id": "tharal", + "iconID": "monsters_men:4", + "name": "Tharal", + "spawnGroup": "tharal", + "monsterClass": 0, + "droplistID": "shop_tharal", + "phraseID": "tharal1" + }, + { + "id": "drunk", + "iconID": "monsters_rltiles3:14", + "name": "Bêbedo", + "spawnGroup": "drunk", + "monsterClass": 0, + "phraseID": "drunk1" + }, + { + "id": "mara", + "iconID": "monsters_men:7", + "name": "Mara", + "spawnGroup": "mara", + "monsterClass": 0, + "droplistID": "shop_mara", + "phraseID": "mara1" + }, + { + "id": "gruil", + "iconID": "monsters_rogue1:0", + "name": "Gruil", + "spawnGroup": "gruil", + "monsterClass": 0, + "droplistID": "shop_gruil", + "phraseID": "gruil1" + }, + { + "id": "leonid", + "iconID": "monsters_men:3", + "name": "Leonid", + "spawnGroup": "leonid", + "monsterClass": 0, + "phraseID": "leonid1" + }, + { + "id": "farmer", + "iconID": "monsters_man1:0", + "name": "Agricultor", + "spawnGroup": "crossglen_farmer1", + "monsterClass": 0, + "phraseID": "farm1" + }, + { + "id": "tired_farmer", + "iconID": "monsters_man1:0", + "name": "Agricultor cansado", + "spawnGroup": "crossglen_farmer2", + "monsterClass": 0, + "phraseID": "farm2" + }, + { + "id": "oromir", + "iconID": "monsters_man1:0", + "name": "Oromir", + "spawnGroup": "oromir", + "monsterClass": 0, + "phraseID": "oromir1" + }, + { + "id": "odair", + "iconID": "monsters_men:8", + "name": "Odair", + "spawnGroup": "odair", + "monsterClass": 0, + "phraseID": "odair1" + }, + { + "id": "jan", + "iconID": "monsters_rltiles3:14", + "name": "Jan", + "spawnGroup": "jan", + "monsterClass": 0, + "phraseID": "jan_start_select" + } +] diff --git a/AndorsTrail/res/raw-pt/monsterlist_fallhaven_animals.json b/AndorsTrail/res/raw-pt/monsterlist_fallhaven_animals.json new file mode 100644 index 000000000..db4a8f01e --- /dev/null +++ b/AndorsTrail/res/raw-pt/monsterlist_fallhaven_animals.json @@ -0,0 +1,292 @@ +[ + { + "id": "lost_spirit", + "iconID": "monsters_rltiles2:45", + "name": "Espírito perdido", + "spawnGroup": "minorhaunt1", + "monsterClass": 8, + "maxHP": 15, + "attackCost": 10, + "attackChance": 50, + "blockChance": 10, + "damageResistance": 3, + "droplistID": "haunt", + "phraseID": "haunt", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "lost_soul", + "iconID": "monsters_rltiles2:45", + "name": "Alma perdida", + "spawnGroup": "minorhaunt2", + "monsterClass": 8, + "maxHP": 15, + "attackCost": 10, + "attackChance": 50, + "blockChance": 10, + "damageResistance": 4, + "droplistID": "haunt", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "haunting", + "iconID": "monsters_ghost1:0", + "name": "Assombração", + "spawnGroup": "haunt3", + "monsterClass": 8, + "maxHP": 31, + "maxAP": 10, + "moveCost": 10, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 30, + "damageResistance": 1, + "droplistID": "haunt", + "attackDamage": { + "min": 1, + "max": 5 + } + }, + { + "id": "skeletal_warrior", + "iconID": "monsters_skeleton1:0", + "name": "Esqueleto guerreiro", + "spawnGroup": "skeleton1", + "monsterClass": 3, + "maxHP": 52, + "maxAP": 10, + "moveCost": 10, + "attackCost": 5, + "attackChance": 60, + "blockChance": 40, + "damageResistance": 1, + "droplistID": "skeleton", + "attackDamage": { + "min": 1, + "max": 3 + } + }, + { + "id": "skeletal_master", + "iconID": "monsters_skeleton2:0", + "name": "Esqueleto mestre", + "spawnGroup": "skeletonmaster", + "monsterClass": 3, + "maxHP": 52, + "maxAP": 10, + "moveCost": 10, + "attackCost": 5, + "attackChance": 70, + "blockChance": 30, + "damageResistance": 2, + "droplistID": "skeleton", + "attackDamage": { + "min": 1, + "max": 3 + } + }, + { + "id": "skeleton", + "iconID": "monsters_skeleton1:0", + "name": "Esqueleto", + "spawnGroup": "skeleton1", + "monsterClass": 3, + "maxHP": 35, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 60, + "blockChance": 40, + "droplistID": "skeleton", + "attackDamage": { + "min": 1, + "max": 4 + } + }, + { + "id": "guardian_of_the_catacombs", + "iconID": "monsters_rltiles2:45", + "name": "Guardião das catacumbas", + "spawnGroup": "catacombguard1", + "monsterClass": 8, + "unique": 1, + "maxHP": 6, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 10, + "blockChance": 10, + "damageResistance": 3, + "droplistID": "catacombguard", + "phraseID": "catacombguard", + "attackDamage": { + "min": 1, + "max": 6 + } + }, + { + "id": "catacomb_rat", + "iconID": "monsters_rats:0", + "name": "Ratazana-das-catacumbas", + "spawnGroup": "catacombrat1", + "monsterClass": 4, + "maxHP": 15, + "maxAP": 10, + "moveCost": 10, + "attackCost": 3, + "attackChance": 60, + "blockChance": 40, + "droplistID": "catacombrat", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "large_catacomb_rat", + "iconID": "monsters_rats:3", + "name": "Ratazana-das-catacumbas grande", + "spawnGroup": "catacombrat1", + "monsterClass": 4, + "maxHP": 21, + "maxAP": 10, + "moveCost": 10, + "attackCost": 3, + "attackChance": 60, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 40, + "droplistID": "catacombrat", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "ghostly_visage", + "iconID": "monsters_ghost1:0", + "name": "Visão fantasmagórica", + "spawnGroup": "catacombguard2", + "monsterClass": 8, + "maxHP": 16, + "maxAP": 10, + "moveCost": 10, + "attackCost": 5, + "attackChance": 20, + "blockChance": 20, + "damageResistance": 2, + "droplistID": "catacombguard", + "attackDamage": { + "min": 1, + "max": 4 + } + }, + { + "id": "spectre", + "iconID": "monsters_rltiles2:45", + "name": "Espectro", + "spawnGroup": "catacombguard2", + "monsterClass": 8, + "maxHP": 15, + "maxAP": 10, + "moveCost": 10, + "attackCost": 3, + "attackChance": 50, + "blockChance": 60, + "damageResistance": 2, + "droplistID": "catacombguard", + "attackDamage": { + "min": 1, + "max": 5 + } + }, + { + "id": "apparition", + "iconID": "monsters_rltiles2:45", + "name": "Apraição", + "spawnGroup": "catacombguard3", + "monsterClass": 8, + "maxHP": 17, + "maxAP": 10, + "moveCost": 10, + "attackCost": 3, + "blockChance": 70, + "damageResistance": 2, + "droplistID": "catacombguard", + "attackDamage": { + "min": 1, + "max": 5 + } + }, + { + "id": "shade", + "iconID": "monsters_ghost1:0", + "name": "Sombra", + "spawnGroup": "catacombguard3", + "monsterClass": 8, + "maxHP": 16, + "maxAP": 10, + "moveCost": 10, + "attackCost": 5, + "attackChance": 20, + "blockChance": 20, + "damageResistance": 3, + "droplistID": "catacombguard", + "attackDamage": { + "min": 1, + "max": 4 + } + }, + { + "id": "young_gargoyle", + "iconID": "monsters_misc:2", + "name": "Gárgula jovem", + "spawnGroup": "catacombguard3", + "monsterClass": 3, + "maxHP": 35, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 110, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 70, + "damageResistance": 1, + "droplistID": "catacombguard", + "attackDamage": { + "min": 2, + "max": 5 + } + }, + { + "id": "ghost_of_luthor", + "iconID": "monsters_liches:2", + "name": "Fantasma de Luthor", + "spawnGroup": "luthor", + "monsterClass": 6, + "unique": 1, + "maxHP": 86, + "maxAP": 10, + "moveCost": 10, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 15, + "criticalMultiplier": 2, + "blockChance": 50, + "damageResistance": 3, + "droplistID": "luthor", + "phraseID": "luthor", + "attackDamage": { + "min": 2, + "max": 5 + } + } +] diff --git a/AndorsTrail/res/raw-pt/monsterlist_fallhaven_npcs.json b/AndorsTrail/res/raw-pt/monsterlist_fallhaven_npcs.json new file mode 100644 index 000000000..a9e990465 --- /dev/null +++ b/AndorsTrail/res/raw-pt/monsterlist_fallhaven_npcs.json @@ -0,0 +1,333 @@ +[ + { + "id": "warden", + "iconID": "monsters_men:3", + "name": "Director", + "spawnGroup": "fallhaven_warden", + "monsterClass": 0, + "phraseID": "fallhaven_warden_select_1" + }, + { + "id": "guard", + "iconID": "monsters_rltiles3:14", + "name": "Guarda", + "spawnGroup": "fallhaven_guard", + "monsterClass": 0, + "phraseID": "fallhaven_guard" + }, + { + "id": "acolyte", + "iconID": "monsters_men:4", + "name": "Acólito", + "spawnGroup": "fallhaven_priest", + "monsterClass": 0, + "phraseID": "fallhaven_priest" + }, + { + "id": "bearded_citizen", + "iconID": "monsters_man1:0", + "name": "Cidadão barbudo", + "spawnGroup": "fallhaven_citizen1", + "monsterClass": 0, + "phraseID": "fallhaven_citizen1" + }, + { + "id": "old_citizen", + "iconID": "monsters_men:2", + "name": "Cidadão idoso", + "spawnGroup": "fallhaven_citizen2", + "monsterClass": 0, + "phraseID": "fallhaven_citizen2" + }, + { + "id": "tired_citizen", + "iconID": "monsters_men:7", + "name": "Cidadão cansado", + "spawnGroup": "fallhaven_citizen4", + "monsterClass": 0, + "phraseID": "fallhaven_citizen4" + }, + { + "id": "citizen", + "iconID": "monsters_man1:0", + "name": "Cidadão", + "spawnGroup": "fallhaven_citizen3", + "monsterClass": 0, + "phraseID": "fallhaven_citizen3" + }, + { + "id": "grumpy_citizen", + "iconID": "monsters_men:2", + "name": "Cidadão irritado", + "spawnGroup": "fallhaven_citizen5", + "monsterClass": 0, + "phraseID": "fallhaven_citizen5" + }, + { + "id": "blond_citizen", + "iconID": "monsters_men:7", + "name": "Cidadão louro", + "spawnGroup": "fallhaven_citizen6", + "monsterClass": 0, + "phraseID": "fallhaven_citizen6" + }, + { + "id": "bucus", + "iconID": "monsters_rogue1:0", + "name": "Bucus", + "spawnGroup": "bucus", + "monsterClass": 0, + "phraseID": "bucus_welcome" + }, + { + "id": "drunkard", + "iconID": "monsters_men:0", + "name": "Alcoólico", + "spawnGroup": "fallhaven_drunk", + "monsterClass": 0, + "phraseID": "fallhaven_drunk" + }, + { + "id": "old_man", + "iconID": "monsters_men:5", + "name": "Idoso", + "spawnGroup": "fallhaven_oldman", + "monsterClass": 0, + "phraseID": "fallhaven_oldman" + }, + { + "id": "nocmar", + "iconID": "monsters_men:8", + "name": "Nocmar", + "spawnGroup": "nocmar", + "monsterClass": 0, + "droplistID": "nocmar", + "phraseID": "nocmar" + }, + { + "id": "prisoner", + "iconID": "monsters_rogue1:0", + "name": "Prisioneiro", + "spawnGroup": "fallhaven_prisoner", + "monsterClass": 0, + "maxHP": 1, + "maxAP": 1, + "moveCost": 1, + "attackCost": 1, + "attackChance": 0 + }, + { + "id": "ganos", + "iconID": "monsters_rogue1:0", + "name": "Ganos", + "spawnGroup": "ganos", + "monsterClass": 0, + "droplistID": "shop_ganos", + "phraseID": "ganos" + }, + { + "id": "arcir", + "iconID": "monsters_mage2:0", + "name": "Arcir", + "spawnGroup": "arcir", + "monsterClass": 0, + "phraseID": "arcir_start" + }, + { + "id": "athamyr", + "iconID": "monsters_men:4", + "name": "Athamyr", + "spawnGroup": "athamyr", + "monsterClass": 0, + "phraseID": "athamyr" + }, + { + "id": "thoronir", + "iconID": "monsters_men2:8", + "name": "Thoronir", + "spawnGroup": "thoronir", + "monsterClass": 0, + "droplistID": "shop_thoronir", + "phraseID": "thoronir_default" + }, + { + "id": "chapelgoer", + "iconID": "monsters_men:6", + "name": "Beato", + "spawnGroup": "chapelgoer", + "monsterClass": 0, + "phraseID": "chapelgoer" + }, + { + "id": "potion_merchant", + "iconID": "monsters_mage2:0", + "name": "Mercador de poções", + "spawnGroup": "fallhaven_potions", + "monsterClass": 0, + "droplistID": "shop_fallhaven_potions", + "phraseID": "fallhaven_potions" + }, + { + "id": "tailor", + "iconID": "monsters_men2:0", + "name": "Alfaiate", + "spawnGroup": "fallhaven_clothes", + "monsterClass": 0, + "droplistID": "shop_fallhaven_clothes", + "phraseID": "fallhaven_clothes" + }, + { + "id": "bela", + "iconID": "monsters_men:7", + "name": "Bela", + "spawnGroup": "bela", + "monsterClass": 0, + "droplistID": "shop_bela", + "phraseID": "bela" + }, + { + "id": "larcal", + "iconID": "monsters_men2:2", + "name": "Larcal", + "spawnGroup": "larcal", + "monsterClass": 0, + "unique": 1, + "maxHP": 51, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 25, + "blockChance": 50, + "droplistID": "larcal", + "phraseID": "larcal", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "gaela", + "iconID": "monsters_men2:9", + "name": "Gaela", + "spawnGroup": "gaela", + "monsterClass": 0, + "phraseID": "gaela" + }, + { + "id": "unnmir", + "iconID": "monsters_mage2:0", + "name": "Unnmir", + "spawnGroup": "unnmir", + "monsterClass": 0, + "phraseID": "unnmir" + }, + { + "id": "rigmor", + "iconID": "monsters_men:1", + "name": "Rigmor", + "spawnGroup": "rigmor", + "monsterClass": 0, + "phraseID": "rigmor" + }, + { + "id": "jakrar", + "iconID": "monsters_men2:2", + "name": "Jakrar", + "spawnGroup": "fallhaven_lumberjack", + "monsterClass": 0, + "phraseID": "fallhaven_lumberjack" + }, + { + "id": "alaun", + "iconID": "monsters_mage2:0", + "name": "Alaun", + "spawnGroup": "alaun", + "monsterClass": 0, + "phraseID": "alaun" + }, + { + "id": "busy_farmer", + "iconID": "monsters_man1:0", + "name": "Agricultor atarefado", + "spawnGroup": "fallhaven_farmer1", + "monsterClass": 0, + "phraseID": "fallhaven_farmer1" + }, + { + "id": "old_farmer", + "iconID": "monsters_mage2:0", + "name": "Agricultor idoso", + "spawnGroup": "fallhaven_farmer2", + "monsterClass": 0, + "phraseID": "fallhaven_farmer2" + }, + { + "id": "khorand", + "iconID": "monsters_men:3", + "name": "Khorand", + "spawnGroup": "khorand", + "monsterClass": 0, + "phraseID": "khorand" + }, + { + "id": "vacor", + "iconID": "monsters_mage:0", + "name": "Vacor", + "spawnGroup": "vacor", + "monsterClass": 0, + "unique": 1, + "maxHP": 72, + "attackCost": 5, + "attackChance": 110, + "blockChance": 40, + "damageResistance": 2, + "droplistID": "vacor", + "phraseID": "vacor", + "attackDamage": { + "min": 4, + "max": 8 + } + }, + { + "id": "unzel", + "iconID": "monsters_men:8", + "name": "Unzel", + "spawnGroup": "unzel", + "monsterClass": 0, + "unique": 1, + "maxHP": 59, + "attackCost": 10, + "attackChance": 80, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 40, + "damageResistance": 2, + "droplistID": "unzel", + "phraseID": "unzel", + "attackDamage": { + "min": 5, + "max": 9 + } + }, + { + "id": "shady_bandit", + "iconID": "monsters_men2:9", + "name": "Bandido", + "spawnGroup": "fallhaven_bandit", + "monsterClass": 0, + "unique": 1, + "maxHP": 45, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 50, + "damageResistance": 2, + "droplistID": "fallhaven_bandit", + "phraseID": "fallhaven_bandit", + "attackDamage": { + "min": 3, + "max": 9 + } + } +] diff --git a/AndorsTrail/res/raw-pt/monsterlist_v0610_monsters1.json b/AndorsTrail/res/raw-pt/monsterlist_v0610_monsters1.json new file mode 100644 index 000000000..e1fe952c3 --- /dev/null +++ b/AndorsTrail/res/raw-pt/monsterlist_v0610_monsters1.json @@ -0,0 +1,494 @@ +[ + { + "id": "young_larval_burrower", + "iconID": "monsters_rltiles2:164", + "name": "Larva-escavadora jovem", + "spawnGroup": "larva_1", + "monsterClass": 1, + "maxHP": 30, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 35, + "criticalMultiplier": 3, + "blockChance": 25, + "droplistID": "larva_1", + "attackDamage": { + "min": 1, + "max": 6 + } + }, + { + "id": "larval_burrower", + "iconID": "monsters_rltiles2:164", + "name": "Larva-escavadora", + "spawnGroup": "larva_2", + "monsterClass": 1, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 35, + "criticalMultiplier": 3, + "blockChance": 25, + "droplistID": "larva_2", + "attackDamage": { + "min": 1, + "max": 6 + } + }, + { + "id": "larval_boss", + "iconID": "monsters_rltiles2:164", + "name": "Larva-escavadora forte", + "spawnGroup": "larva_boss", + "monsterClass": 1, + "unique": 1, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 35, + "criticalMultiplier": 3, + "blockChance": 25, + "droplistID": "larva_boss", + "attackDamage": { + "min": 1, + "max": 6 + } + }, + { + "id": "rivertroll", + "iconID": "monsters_rltiles1:104", + "name": "Duende-dos-rios", + "spawnGroup": "rivertroll", + "monsterClass": 5, + "unique": 1, + "maxHP": 210, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 30, + "criticalMultiplier": 4, + "blockChance": 65, + "damageResistance": 7, + "droplistID": "rivertroll", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "grass_ant", + "iconID": "monsters_insects:0", + "name": "Formigra-das-pradarias", + "spawnGroup": "fieldcritter_0", + "monsterClass": 1, + "maxHP": 29, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 80, + "droplistID": "fieldcritter_0", + "attackDamage": { + "min": 0, + "max": 4 + } + }, + { + "id": "grass_ant2", + "iconID": "monsters_insects:2", + "name": "Formiga-das-pradarias resistente", + "spawnGroup": "fieldcritter_0", + "monsterClass": 1, + "maxHP": 29, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "droplistID": "fieldcritter_0", + "attackDamage": { + "min": 1, + "max": 5 + } + }, + { + "id": "grass_beetle", + "iconID": "monsters_insects:4", + "name": "Escaravelho-das-pradarias", + "spawnGroup": "fieldcritter_1", + "monsterClass": 1, + "maxHP": 34, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 120, + "blockChance": 80, + "damageResistance": 3, + "droplistID": "fieldcritter_1", + "attackDamage": { + "min": 0, + "max": 5 + } + }, + { + "id": "grass_beetle2", + "iconID": "monsters_insects:4", + "name": "Escaravelho-das-pradarias resistente", + "spawnGroup": "fieldcritter_1", + "monsterClass": 1, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 125, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "fieldcritter_1", + "attackDamage": { + "min": 1, + "max": 6 + } + }, + { + "id": "grass_snake", + "iconID": "monsters_rltiles2:25", + "name": "Cobra-das-pradarias", + "spawnGroup": "fieldcritter_2", + "monsterClass": 7, + "maxHP": 36, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 80, + "droplistID": "fieldcritter_2", + "attackDamage": { + "min": 0, + "max": 6 + } + }, + { + "id": "grass_snake2", + "iconID": "monsters_rltiles2:25", + "name": "Cobra-das-pradarias resistente", + "spawnGroup": "fieldcritter_2", + "monsterClass": 7, + "maxHP": 38, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "droplistID": "fieldcritter_2", + "attackDamage": { + "min": 1, + "max": 7 + } + }, + { + "id": "grass_lizard", + "iconID": "monsters_rltiles2:114", + "name": "Lagarto-das-pradarias", + "spawnGroup": "fieldcritter_3", + "monsterClass": 7, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 80, + "damageResistance": 3, + "droplistID": "fieldcritter_3", + "attackDamage": { + "min": 0, + "max": 8 + } + }, + { + "id": "grass_lizard2", + "iconID": "monsters_rltiles2:117", + "name": "Lagarto-das-pradarias negro", + "spawnGroup": "fieldcritter_3", + "monsterClass": 7, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "fieldcritter_3", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "keknazar", + "iconID": "monsters_misc:9", + "name": "Keknazar", + "spawnGroup": "keknazar", + "monsterClass": 7, + "unique": 1, + "maxHP": 90, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 50, + "criticalSkill": 20, + "criticalMultiplier": 3, + "blockChance": 70, + "damageResistance": 8, + "droplistID": "keknazar", + "phraseID": "keknazar", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "crossroads_rat", + "iconID": "monsters_rats:0", + "name": "Ratazana", + "spawnGroup": "crossroads_rat", + "monsterClass": 4, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 50, + "blockChance": 30, + "droplistID": "rat", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "fieldwasp_0", + "iconID": "monsters_insects:1", + "name": "Vespa-das-florestas frenética", + "spawnGroup": "fieldwasp_0", + "monsterClass": 1, + "maxHP": 29, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 95, + "droplistID": "fieldwasp", + "attackDamage": { + "min": 2, + "max": 6 + } + }, + { + "id": "fieldwasp_1", + "iconID": "monsters_insects:1", + "name": "Vespa-das-florestas frenética", + "spawnGroup": "fieldwasp_1", + "monsterClass": 1, + "maxHP": 32, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 70, + "criticalMultiplier": 3, + "blockChance": 125, + "droplistID": "fieldwasp", + "attackDamage": { + "min": 2, + "max": 6 + } + }, + { + "id": "fieldwasp_2", + "iconID": "monsters_insects:1", + "name": "Vespa-das-florestas frenética", + "spawnGroup": "fieldwasp_2", + "monsterClass": 1, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 75, + "criticalMultiplier": 3, + "blockChance": 130, + "droplistID": "fieldwasp", + "attackDamage": { + "min": 2, + "max": 6 + } + }, + { + "id": "izthiel_1", + "iconID": "monsters_rltiles2:51", + "name": "Izthiel jovem", + "spawnGroup": "izthiel_1", + "monsterClass": 7, + "maxHP": 40, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "blockChance": 57, + "damageResistance": 5, + "droplistID": "izthiel", + "attackDamage": { + "min": 2, + "max": 7 + } + }, + { + "id": "izthiel_2", + "iconID": "monsters_rltiles2:49", + "name": "Izthiel", + "spawnGroup": "izthiel_2", + "monsterClass": 7, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "blockChance": 58, + "damageResistance": 6, + "droplistID": "izthiel", + "attackDamage": { + "min": 2, + "max": 7 + } + }, + { + "id": "izthiel_3", + "iconID": "monsters_rltiles2:48", + "name": "Izthiel forte", + "spawnGroup": "izthiel_3", + "monsterClass": 7, + "maxHP": 52, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "blockChance": 60, + "damageResistance": 8, + "droplistID": "izthiel", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "bleeding_wound", + "magnitude": 2, + "duration": 4, + "chance": 40 + } + ] + } + }, + { + "id": "izthiel_4", + "iconID": "monsters_rltiles2:52", + "name": "Izthiel guardião", + "spawnGroup": "izthiel_4", + "monsterClass": 7, + "maxHP": 54, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 60, + "damageResistance": 11, + "droplistID": "izthiel_4", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "bleeding_wound", + "magnitude": 3, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "frog_1", + "iconID": "monsters_rltiles1:131", + "name": "Sapo-dos-rios", + "spawnGroup": "frog_1", + "monsterClass": 7, + "maxHP": 15, + "maxAP": 10, + "moveCost": 5, + "attackCost": 2, + "attackChance": 150, + "blockChance": 45, + "droplistID": "frog", + "attackDamage": { + "min": 0, + "max": 5 + } + }, + { + "id": "frog_2", + "iconID": "monsters_rltiles1:131", + "name": "Sapo-dos-rios resistente", + "spawnGroup": "frog_2", + "monsterClass": 7, + "maxHP": 17, + "maxAP": 10, + "moveCost": 5, + "attackCost": 2, + "attackChance": 160, + "blockChance": 49, + "droplistID": "frog", + "attackDamage": { + "min": 0, + "max": 5 + } + }, + { + "id": "frog_3", + "iconID": "monsters_rltiles1:130", + "name": "Sapo-dos-rios venenoso", + "spawnGroup": "frog_3", + "monsterClass": 7, + "maxHP": 21, + "maxAP": 10, + "moveCost": 5, + "attackCost": 2, + "attackChance": 165, + "blockChance": 55, + "droplistID": "frog_3", + "attackDamage": { + "min": 0, + "max": 5 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_weak", + "magnitude": 2, + "duration": 5, + "chance": 30 + } + ] + } + } +] diff --git a/AndorsTrail/res/raw-pt/monsterlist_v0610_monsters2.json b/AndorsTrail/res/raw-pt/monsterlist_v0610_monsters2.json new file mode 100644 index 000000000..0750a9ddc --- /dev/null +++ b/AndorsTrail/res/raw-pt/monsterlist_v0610_monsters2.json @@ -0,0 +1,450 @@ +[ + { + "id": "iqhan_1a", + "iconID": "monsters_rltiles2:96", + "name": "Iqhan escravo operário", + "spawnGroup": "iqhan_1", + "monsterClass": 0, + "maxHP": 55, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 110, + "blockChance": 70, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "iqhan_1b", + "iconID": "monsters_rltiles2:96", + "name": "Iqhan escravo servo", + "spawnGroup": "iqhan_1", + "monsterClass": 0, + "maxHP": 57, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "criticalSkill": 15, + "criticalMultiplier": 2, + "blockChance": 70, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "iqhan_2a", + "iconID": "monsters_rltiles2:97", + "name": "Iqhan escravo guarda", + "spawnGroup": "iqhan_2", + "monsterClass": 0, + "maxHP": 59, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 130, + "criticalSkill": 15, + "criticalMultiplier": 2, + "blockChance": 70, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "iqhan_2b", + "iconID": "monsters_rltiles2:97", + "name": "Iqhan escravo", + "spawnGroup": "iqhan_2", + "monsterClass": 0, + "maxHP": 62, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 130, + "criticalSkill": 15, + "criticalMultiplier": 2, + "blockChance": 70, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 10 + } + }, + { + "id": "iqhan_3a", + "iconID": "monsters_rltiles2:128", + "name": "Iqhan escravo guerreiro", + "spawnGroup": "iqhan_3", + "monsterClass": 0, + "maxHP": 65, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 140, + "criticalSkill": 15, + "criticalMultiplier": 2, + "blockChance": 70, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 11 + } + }, + { + "id": "iqhan_3b", + "iconID": "monsters_rltiles2:129", + "name": "Iqhan mestre", + "spawnGroup": "iqhan_3", + "monsterClass": 0, + "maxHP": 67, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 140, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 12 + } + }, + { + "id": "iqhan_4a", + "iconID": "monsters_rltiles2:129", + "name": "Iqhan mestre", + "spawnGroup": "iqhan_4", + "monsterClass": 0, + "maxHP": 69, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 140, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 13 + } + }, + { + "id": "iqhan_4b", + "iconID": "monsters_rltiles2:133", + "name": "Iqhan mestre", + "spawnGroup": "iqhan_4", + "monsterClass": 0, + "maxHP": 71, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 140, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "iqhan", + "attackDamage": { + "min": 2, + "max": 15 + } + }, + { + "id": "iqhan_ch_1a", + "iconID": "monsters_rltiles2:135", + "name": "Iqhan invocador do caos", + "spawnGroup": "iqhan_ch_1", + "monsterClass": 0, + "maxHP": 73, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 140, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "iqhan", + "attackDamage": { + "min": 2, + "max": 15 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 2, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "iqhan_ch_1b", + "iconID": "monsters_rltiles2:135", + "name": "Iqhan invocador do caos", + "spawnGroup": "iqhan_ch_1", + "monsterClass": 0, + "maxHP": 75, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "iqhan", + "attackDamage": { + "min": 2, + "max": 14 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 2, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "iqhan_ch_2a", + "iconID": "monsters_rltiles2:134", + "name": "Iqhan servo do caos", + "spawnGroup": "iqhan_ch_2", + "monsterClass": 0, + "maxHP": 78, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "iqhan", + "attackDamage": { + "min": 2, + "max": 14 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 4, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "iqhan_ch_2b", + "iconID": "monsters_rltiles2:134", + "name": "Iqhan servo do caos", + "spawnGroup": "iqhan_ch_2", + "monsterClass": 0, + "maxHP": 79, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "criticalSkill": 25, + "criticalMultiplier": 2, + "blockChance": 75, + "droplistID": "iqhan", + "attackDamage": { + "min": 2, + "max": 13 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 4, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "iqhan_ch_3a", + "iconID": "monsters_rltiles2:136", + "name": "Iqhan mestre do caos", + "spawnGroup": "iqhan_ch_3", + "monsterClass": 0, + "maxHP": 83, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 170, + "criticalSkill": 25, + "criticalMultiplier": 2, + "blockChance": 75, + "droplistID": "iqhan_master", + "attackDamage": { + "min": 2, + "max": 13 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 4, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "iqhan_ch_3b", + "iconID": "monsters_rltiles2:137", + "name": "Iqhan mestre do caos", + "spawnGroup": "iqhan_ch_3", + "monsterClass": 0, + "maxHP": 85, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 170, + "criticalSkill": 25, + "criticalMultiplier": 2, + "blockChance": 75, + "droplistID": "iqhan_master", + "attackDamage": { + "min": 2, + "max": 13 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 4, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "iqhan_chb_1a", + "iconID": "monsters_rltiles1:19", + "name": "Iqhan besta do caos", + "spawnGroup": "iqhan_chb_1", + "monsterClass": 3, + "maxHP": 122, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 150, + "criticalSkill": 10, + "criticalMultiplier": 3, + "blockChance": 45, + "damageResistance": 9, + "droplistID": "iqhan_beast", + "attackDamage": { + "min": 0, + "max": 15 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 5, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "iqhan_chb_1b", + "iconID": "monsters_rltiles1:19", + "name": "Iqhan besta do caos", + "spawnGroup": "iqhan_chb_1", + "monsterClass": 3, + "maxHP": 140, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 150, + "criticalSkill": 10, + "criticalMultiplier": 3, + "blockChance": 45, + "damageResistance": 9, + "droplistID": "iqhan_beast", + "attackDamage": { + "min": 0, + "max": 15 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 5, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "iqhan_greeter", + "iconID": "monsters_men:8", + "name": "Rancent", + "spawnGroup": "iqhan_greeter", + "monsterClass": 0, + "unique": 1, + "phraseID": "iqhan_greeter" + }, + { + "id": "iqhan_boss", + "iconID": "monsters_rltiles1:5", + "name": "Iqhan esclavagista do caos", + "spawnGroup": "iqhan_boss", + "monsterClass": 6, + "unique": 1, + "maxHP": 120, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 170, + "criticalSkill": 30, + "criticalMultiplier": 2, + "blockChance": 75, + "damageResistance": 2, + "droplistID": "iqhan_boss", + "phraseID": "iqhan_boss", + "attackDamage": { + "min": 2, + "max": 13 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 7, + "duration": 5, + "chance": 50 + }, + { + "condition": "chaotic_curse", + "magnitude": 3, + "duration": 5, + "chance": 50 + } + ] + } + } +] diff --git a/AndorsTrail/res/raw-pt/monsterlist_v0610_npcs1.json b/AndorsTrail/res/raw-pt/monsterlist_v0610_npcs1.json new file mode 100644 index 000000000..530b683ec --- /dev/null +++ b/AndorsTrail/res/raw-pt/monsterlist_v0610_npcs1.json @@ -0,0 +1,582 @@ +[ + { + "id": "lostsheep1", + "iconID": "monsters_karvis2:8", + "name": "Ovelha", + "spawnGroup": "tinlyn_lostsheep1", + "monsterClass": 4, + "unique": 1, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 10, + "blockChance": 5, + "droplistID": "tinlyn_sheep", + "phraseID": "tinlyn_lostsheep1", + "attackDamage": { + "min": 0, + "max": 1 + } + }, + { + "id": "lostsheep2", + "iconID": "monsters_karvis2:8", + "name": "Ovelha", + "spawnGroup": "tinlyn_lostsheep2", + "monsterClass": 4, + "unique": 1, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 10, + "blockChance": 5, + "droplistID": "tinlyn_sheep", + "phraseID": "tinlyn_lostsheep2", + "attackDamage": { + "min": 0, + "max": 1 + } + }, + { + "id": "lostsheep3", + "iconID": "monsters_karvis2:8", + "name": "Ovelha", + "spawnGroup": "tinlyn_lostsheep3", + "monsterClass": 4, + "unique": 1, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 10, + "blockChance": 5, + "droplistID": "tinlyn_sheep", + "phraseID": "tinlyn_lostsheep3", + "attackDamage": { + "min": 0, + "max": 1 + } + }, + { + "id": "lostsheep4", + "iconID": "monsters_karvis2:8", + "name": "Ovelha", + "spawnGroup": "tinlyn_lostsheep4", + "monsterClass": 4, + "unique": 1, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 10, + "blockChance": 5, + "droplistID": "tinlyn_sheep", + "phraseID": "tinlyn_lostsheep4", + "attackDamage": { + "min": 0, + "max": 1 + } + }, + { + "id": "sheep1", + "iconID": "monsters_karvis2:8", + "name": "Ovelha", + "spawnGroup": "tinlyn_sheep", + "monsterClass": 4, + "unique": 1, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 10, + "blockChance": 5, + "droplistID": "tinlyn_sheep", + "phraseID": "tinlyn_sheep", + "attackDamage": { + "min": 0, + "max": 1 + } + }, + { + "id": "ailshara", + "iconID": "monsters_men:8", + "name": "Ailshara", + "spawnGroup": "ailshara", + "monsterClass": 0, + "droplistID": "shop_ailshara", + "phraseID": "ailshara" + }, + { + "id": "arngyr", + "iconID": "monsters_rltiles1:65", + "name": "Arngyr", + "spawnGroup": "arngyr", + "monsterClass": 0, + "phraseID": "arngyr" + }, + { + "id": "benbyr", + "iconID": "monsters_rltiles1:74", + "name": "Benbyr", + "spawnGroup": "benbyr", + "monsterClass": 0, + "phraseID": "benbyr" + }, + { + "id": "celdar", + "iconID": "monsters_rltiles1:94", + "name": "Celdar", + "spawnGroup": "celdar", + "monsterClass": 0, + "phraseID": "celdar" + }, + { + "id": "conren", + "iconID": "monsters_karvis2:5", + "name": "Conren", + "spawnGroup": "conren", + "monsterClass": 0, + "phraseID": "conren" + }, + { + "id": "crossroads_backguard", + "iconID": "monsters_rltiles1:76", + "name": "Guarda", + "spawnGroup": "crossroads_backguard", + "monsterClass": 0, + "unique": 1, + "phraseID": "crossroads_backguard" + }, + { + "id": "crossroads_guard", + "iconID": "monsters_rltiles1:76", + "name": "Guarda", + "spawnGroup": "crossroads_guard", + "monsterClass": 0, + "phraseID": "crossroads_guard" + }, + { + "id": "crossroads_sleepguard", + "iconID": "monsters_rltiles1:76", + "name": "Guarda", + "spawnGroup": "crossroads_sleepguard", + "monsterClass": 0, + "phraseID": "crossroads_sleepguard" + }, + { + "id": "crossroads_guest", + "iconID": "monsters_rltiles1:83", + "name": "Visitante", + "spawnGroup": "crossroads_guest", + "monsterClass": 0, + "phraseID": "crossroads_guest" + }, + { + "id": "erinith", + "iconID": "monsters_rltiles1:82", + "name": "Erinith", + "spawnGroup": "erinith", + "monsterClass": 0, + "phraseID": "erinith" + }, + { + "id": "fanamor", + "iconID": "monsters_men:7", + "name": "Fanamor", + "spawnGroup": "fanamor", + "monsterClass": 0, + "phraseID": "fanamor" + }, + { + "id": "feygard_bridgeguard", + "iconID": "monsters_men2:4", + "name": "Guarda da ponte de Feygard", + "spawnGroup": "feygard_bridgeguard", + "monsterClass": 0, + "phraseID": "feygard_bridgeguard" + }, + { + "id": "fieldwasp_unique", + "iconID": "monsters_insects:1", + "name": "Vespa-das-florestas frenética", + "spawnGroup": "fieldwasp_unique", + "monsterClass": 1, + "unique": 1, + "maxHP": 70, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 200, + "criticalMultiplier": 3, + "blockChance": 150, + "droplistID": "fieldwasp_unique", + "attackDamage": { + "min": 2, + "max": 6 + } + }, + { + "id": "gallain", + "iconID": "monsters_man1:0", + "name": "Gallain", + "spawnGroup": "gallain", + "monsterClass": 0, + "droplistID": "shop_gallain", + "phraseID": "gallain" + }, + { + "id": "gandoren", + "iconID": "monsters_rltiles1:69", + "name": "Gandoren", + "spawnGroup": "gandoren", + "monsterClass": 0, + "phraseID": "gandoren" + }, + { + "id": "grimion", + "iconID": "monsters_men2:2", + "name": "Grimion", + "spawnGroup": "grimion", + "monsterClass": 0, + "droplistID": "shop_grimion", + "phraseID": "grimion" + }, + { + "id": "hadracor", + "iconID": "monsters_men2:2", + "name": "Hadracor", + "spawnGroup": "hadracor", + "monsterClass": 0, + "droplistID": "shop_hadracor", + "phraseID": "hadracor" + }, + { + "id": "kuldan", + "iconID": "monsters_rltiles1:85", + "name": "Kuldan", + "spawnGroup": "kuldan", + "monsterClass": 0, + "phraseID": "kuldan" + }, + { + "id": "kuldan_guard", + "iconID": "monsters_rltiles3:14", + "name": "Guarda de Kuldan", + "spawnGroup": "kuldan_guard", + "monsterClass": 0, + "phraseID": "kuldan_guard" + }, + { + "id": "landa", + "iconID": "monsters_men:0", + "name": "Landa", + "spawnGroup": "landa", + "monsterClass": 0, + "phraseID": "landa" + }, + { + "id": "loneford_chapelguard", + "iconID": "monsters_rltiles1:78", + "name": "Guarda da capela", + "spawnGroup": "loneford_chapelguard", + "monsterClass": 0, + "phraseID": "loneford_chapelguard" + }, + { + "id": "loneford_farmer0", + "iconID": "monsters_karvis2:1", + "name": "Agricultor", + "spawnGroup": "loneford_farmer0", + "monsterClass": 0, + "phraseID": "loneford_farmer0" + }, + { + "id": "loneford_guard0", + "iconID": "monsters_rltiles3:14", + "name": "Guarda", + "spawnGroup": "loneford_guard0", + "monsterClass": 0, + "phraseID": "loneford_guard0" + }, + { + "id": "loneford_tavern_patron", + "iconID": "monsters_karvis2:2", + "name": "Taberneiro", + "spawnGroup": "loneford_tavern_patron", + "monsterClass": 0, + "phraseID": "loneford_tavern_patron" + }, + { + "id": "loneford_villager0", + "iconID": "monsters_karvis2:0", + "name": "Aldeão", + "spawnGroup": "loneford_villager0", + "monsterClass": 0, + "phraseID": "loneford_villager0" + }, + { + "id": "loneford_villager1", + "iconID": "monsters_karvis2:1", + "name": "Aldeão", + "spawnGroup": "loneford_villager1", + "monsterClass": 0, + "phraseID": "loneford_villager1" + }, + { + "id": "loneford_villager2", + "iconID": "monsters_karvis2:3", + "name": "Aldeão", + "spawnGroup": "loneford_villager2", + "monsterClass": 0, + "phraseID": "loneford_villager2" + }, + { + "id": "loneford_villager3", + "iconID": "monsters_karvis2:5", + "name": "Aldeão", + "spawnGroup": "loneford_villager3", + "monsterClass": 0, + "phraseID": "loneford_villager3" + }, + { + "id": "loneford_villager4", + "iconID": "monsters_men:2", + "name": "Aldeão", + "spawnGroup": "loneford_villager4", + "monsterClass": 0, + "phraseID": "loneford_villager4" + }, + { + "id": "loneford_wellguard", + "iconID": "monsters_rltiles1:72", + "name": "Guarda", + "spawnGroup": "loneford_wellguard", + "monsterClass": 0, + "phraseID": "loneford_wellguard" + }, + { + "id": "mienn", + "iconID": "monsters_rltiles1:87", + "name": "Mienn", + "spawnGroup": "mienn", + "monsterClass": 0, + "phraseID": "mienn" + }, + { + "id": "minarra", + "iconID": "monsters_rltiles1:86", + "name": "Minarra", + "spawnGroup": "minarra", + "monsterClass": 0, + "droplistID": "shop_minarra", + "phraseID": "minarra" + }, + { + "id": "puny_warehouserat", + "iconID": "monsters_rats:1", + "name": "Ratazana-dos-celeiros", + "spawnGroup": "puny_warehouserat", + "monsterClass": 4, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 50, + "blockChance": 30, + "droplistID": "rat", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "rolwynn", + "iconID": "monsters_rltiles1:77", + "name": "Rolwynn", + "spawnGroup": "rolwynn", + "monsterClass": 0, + "phraseID": "rolwynn" + }, + { + "id": "sienn", + "iconID": "monsters_rltiles1:66", + "name": "Sienn", + "spawnGroup": "sienn", + "monsterClass": 0, + "phraseID": "sienn" + }, + { + "id": "sienn_pet", + "iconID": "monsters_misc:0", + "name": "Animal de estimação de Sienn", + "spawnGroup": "sienn_pet", + "monsterClass": 7, + "phraseID": "sienn_pet" + }, + { + "id": "siola", + "iconID": "monsters_rltiles1:90", + "name": "Siola", + "spawnGroup": "siola", + "monsterClass": 0, + "droplistID": "shop_siola", + "phraseID": "siola" + }, + { + "id": "taevinn", + "iconID": "monsters_karvis2:5", + "name": "Taevinn", + "spawnGroup": "taevinn", + "monsterClass": 0, + "phraseID": "taevinn" + }, + { + "id": "talion", + "iconID": "monsters_men2:8", + "name": "Talion", + "spawnGroup": "talion", + "monsterClass": 0, + "droplistID": "shop_talion", + "phraseID": "talion" + }, + { + "id": "telund", + "iconID": "monsters_rltiles1:74", + "name": "Telund", + "spawnGroup": "telund", + "monsterClass": 0, + "phraseID": "telund" + }, + { + "id": "tinlyn", + "iconID": "monsters_karvis2:7", + "name": "Tinlyn", + "spawnGroup": "tinlyn", + "monsterClass": 0, + "phraseID": "tinlyn" + }, + { + "id": "wallach", + "iconID": "monsters_rltiles1:75", + "name": "Wallach", + "spawnGroup": "wallach", + "monsterClass": 0, + "phraseID": "wallach" + }, + { + "id": "woodcutter_0", + "iconID": "monsters_men:0", + "name": "Lenhador", + "spawnGroup": "woodcutter_0", + "monsterClass": 0, + "phraseID": "woodcutter_0" + }, + { + "id": "woodcutter_2", + "iconID": "monsters_men:0", + "name": "Lenhador", + "spawnGroup": "woodcutter_2", + "monsterClass": 0, + "phraseID": "woodcutter_2" + }, + { + "id": "woodcutter_3", + "iconID": "monsters_men2:2", + "name": "Lenhador", + "spawnGroup": "woodcutter_3", + "monsterClass": 0, + "phraseID": "woodcutter_3" + }, + { + "id": "woodcutter_4", + "iconID": "monsters_rltiles1:93", + "name": "Lenhador", + "spawnGroup": "woodcutter_4", + "monsterClass": 0, + "phraseID": "woodcutter_4" + }, + { + "id": "woodcutter_5", + "iconID": "monsters_men2:2", + "name": "Lenhador", + "spawnGroup": "woodcutter_5", + "monsterClass": 0, + "phraseID": "woodcutter_5" + }, + { + "id": "rogorn", + "iconID": "monsters_rltiles1:63", + "name": "Rogorn", + "spawnGroup": "rogorn", + "monsterClass": 0, + "unique": 1, + "maxHP": 145, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "blockChance": 120, + "damageResistance": 5, + "droplistID": "rogorn", + "phraseID": "rogorn", + "attackDamage": { + "min": 5, + "max": 9 + } + }, + { + "id": "rogorn_henchman", + "iconID": "monsters_rogue1:0", + "name": "Escudeiro de Rogorn", + "spawnGroup": "rogorn_henchman", + "monsterClass": 0, + "unique": 1, + "maxHP": 130, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "blockChance": 120, + "damageResistance": 4, + "droplistID": "rogorn_henchman", + "phraseID": "rogorn_henchman", + "attackDamage": { + "min": 5, + "max": 8 + } + }, + { + "id": "buceth", + "iconID": "monsters_men2:7", + "name": "Buceth", + "spawnGroup": "buceth", + "monsterClass": 0, + "unique": 1, + "maxHP": 75, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 200, + "criticalMultiplier": 2, + "blockChance": 120, + "damageResistance": 4, + "droplistID": "buceth", + "phraseID": "buceth", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "gauward", + "iconID": "monsters_mage2:0", + "name": "Gauward", + "spawnGroup": "gauward", + "monsterClass": 0, + "phraseID": "gauward" + } +] diff --git a/AndorsTrail/res/raw-pt/monsterlist_v068_npcs.json b/AndorsTrail/res/raw-pt/monsterlist_v068_npcs.json new file mode 100644 index 000000000..df5e132d4 --- /dev/null +++ b/AndorsTrail/res/raw-pt/monsterlist_v068_npcs.json @@ -0,0 +1,423 @@ +[ + { + "id": "smug_looking_thief", + "iconID": "monsters_men2:9", + "name": "Ladrão presunçoso", + "spawnGroup": "tg_thief", + "monsterClass": 0, + "phraseID": "thievesguild_thief_1" + }, + { + "id": "thieves_guild_cook", + "iconID": "monsters_men:0", + "name": "Cozinheiro da guilda de ladrões", + "spawnGroup": "tg_cook", + "monsterClass": 0, + "droplistID": "shop_thieves_guild_cook", + "phraseID": "thievesguild_cook_1" + }, + { + "id": "pickpocket", + "iconID": "monsters_men:7", + "name": "Carteirista", + "spawnGroup": "pickpocket", + "monsterClass": 0, + "phraseID": "thievesguild_pickpocket_1" + }, + { + "id": "troublemaker", + "iconID": "monsters_men:8", + "name": "Arruaceiro", + "spawnGroup": "troublemaker", + "monsterClass": 0, + "droplistID": "shop_troublemaker", + "phraseID": "thievesguild_troublemaker_1" + }, + { + "id": "farrik", + "iconID": "monsters_rogue1:0", + "name": "Farrik", + "spawnGroup": "farrik", + "monsterClass": 0, + "phraseID": "farrik_select_1" + }, + { + "id": "umar", + "iconID": "monsters_man1:0", + "name": "Umar", + "spawnGroup": "umar", + "monsterClass": 0, + "phraseID": "umar_select_1" + }, + { + "id": "kaori", + "iconID": "monsters_men:7", + "name": "Kaori", + "spawnGroup": "kaori", + "monsterClass": 0, + "phraseID": "kaori_start" + }, + { + "id": "old_vilegard_villager", + "iconID": "monsters_men:0", + "name": "Aldeão idoso de Vilegard", + "spawnGroup": "vilegard_villager_1", + "monsterClass": 0, + "phraseID": "vilegard_villager_1" + }, + { + "id": "grumpy_vilegard_villager", + "iconID": "monsters_men:5", + "name": "Aldeão irritado de Vilegard", + "spawnGroup": "vilegard_villager_2", + "monsterClass": 0, + "phraseID": "vilegard_villager_2" + }, + { + "id": "vilegard_citizen", + "iconID": "monsters_men:1", + "name": "Cidadão de Vilegard", + "spawnGroup": "vilegard_villager_3", + "monsterClass": 0, + "phraseID": "vilegard_villager_3" + }, + { + "id": "vilegard_resident", + "iconID": "monsters_men2:0", + "name": "Residente de Vilegard", + "spawnGroup": "vilegard_villager_4", + "monsterClass": 0, + "phraseID": "vilegard_villager_4" + }, + { + "id": "vilegard_woman", + "iconID": "monsters_men:6", + "name": "Mulher de Vilegard", + "spawnGroup": "vilegard_villager_5", + "monsterClass": 0, + "phraseID": "vilegard_villager_5" + }, + { + "id": "erttu", + "iconID": "monsters_mage2:0", + "name": "Erttu", + "spawnGroup": "erttu", + "monsterClass": 0, + "phraseID": "erttu_1" + }, + { + "id": "dunla", + "iconID": "monsters_rogue1:0", + "name": "Dunla", + "spawnGroup": "dunla", + "monsterClass": 0, + "droplistID": "shop_dunla", + "phraseID": "dunla_default" + }, + { + "id": "tharwyn", + "iconID": "monsters_men:7", + "name": "Tharwyn", + "spawnGroup": "tharwyn", + "monsterClass": 0, + "droplistID": "shop_tharwyn", + "phraseID": "tharwyn_select" + }, + { + "id": "tavern_guest", + "iconID": "monsters_men:0", + "name": "Visitante da taberna", + "spawnGroup": "vg_tavern_drunk", + "monsterClass": 0, + "phraseID": "vilegard_tavern_drunk_1" + }, + { + "id": "jolnor", + "iconID": "monsters_men2:8", + "name": "Jolnor", + "spawnGroup": "jolnor", + "monsterClass": 0, + "droplistID": "shop_jolnor", + "phraseID": "jolnor_select_1" + }, + { + "id": "alynndir", + "iconID": "monsters_mage2:0", + "name": "Alynndir", + "spawnGroup": "alynndir", + "monsterClass": 0, + "droplistID": "shop_alynndir", + "phraseID": "alynndir_1" + }, + { + "id": "vilegard_armorer", + "iconID": "monsters_mage2:0", + "name": "Armeiro de Vilegard", + "spawnGroup": "vg_armorer", + "monsterClass": 0, + "droplistID": "shop_vg_armorer", + "phraseID": "vilegard_armorer_select" + }, + { + "id": "vilegard_smith", + "iconID": "monsters_mage2:0", + "name": "Ferreiro de Vilegard", + "spawnGroup": "vg_smith", + "monsterClass": 0, + "droplistID": "shop_vg_smith", + "phraseID": "vilegard_smith_select" + }, + { + "id": "ogam", + "iconID": "monsters_men:0", + "name": "Ogam", + "spawnGroup": "ogam", + "monsterClass": 0, + "phraseID": "ogam_1" + }, + { + "id": "foaming_flask_cook", + "iconID": "monsters_men:0", + "name": "Cozinheiro do Foaming Flask", + "spawnGroup": "ff_cook", + "monsterClass": 0, + "phraseID": "ff_cook_1" + }, + { + "id": "torilo", + "iconID": "monsters_men2:9", + "name": "Torilo", + "spawnGroup": "torilo", + "monsterClass": 0, + "droplistID": "shop_torilo", + "phraseID": "torilo_1" + }, + { + "id": "ambelie", + "iconID": "monsters_men:6", + "name": "Ambelie", + "spawnGroup": "ambelie", + "monsterClass": 0, + "phraseID": "ambelie_1" + }, + { + "id": "feygard_patrol", + "iconID": "monsters_rltiles3:14", + "name": "Patrulha de Feygard", + "spawnGroup": "ff_guard", + "monsterClass": 0, + "phraseID": "ff_guard_1" + }, + { + "id": "feygard_patrol_captain", + "iconID": "monsters_men:3", + "name": "Capitão de patrulha de Feygard", + "spawnGroup": "ff_captain", + "monsterClass": 0, + "phraseID": "ff_captain_1" + }, + { + "id": "feygard_patrol_watch", + "iconID": "monsters_rltiles3:14", + "name": "Vigia de patrulha de Feygard", + "spawnGroup": "ff_outsideguard", + "monsterClass": 0, + "unique": 1, + "maxHP": 80, + "attackCost": 5, + "attackChance": 70, + "blockChance": 80, + "damageResistance": 3, + "droplistID": "ff_outsideguard", + "phraseID": "ff_outsideguard_select", + "attackDamage": { + "min": 2, + "max": 7 + } + }, + { + "id": "wrye", + "iconID": "monsters_men:6", + "name": "Wrye", + "spawnGroup": "wrye", + "monsterClass": 0, + "phraseID": "wrye_select_1" + }, + { + "id": "oluag", + "iconID": "monsters_men:8", + "name": "Oluag", + "spawnGroup": "oluag", + "monsterClass": 0, + "phraseID": "oluag_1" + }, + { + "id": "cave_dwelling_boar", + "iconID": "monsters_dogs:6", + "name": "Javali-das-cavernas", + "spawnGroup": "caveboar1", + "monsterClass": 4, + "maxHP": 35, + "attackCost": 5, + "attackChance": 70, + "blockChance": 60, + "damageResistance": 3, + "droplistID": "canine2", + "attackDamage": { + "min": 3, + "max": 8 + } + }, + { + "id": "hardshell_beetle", + "iconID": "monsters_insects:4", + "name": "Escaravelho de casca dura", + "spawnGroup": "beetle2", + "monsterClass": 1, + "maxHP": 25, + "attackCost": 5, + "attackChance": 50, + "blockChance": 40, + "damageResistance": 9, + "droplistID": "beetle2", + "attackDamage": { + "min": 0, + "max": 5 + } + }, + { + "id": "young_shadow_gargoyle", + "iconID": "monsters_misc:1", + "name": "Gárgula-das-sombras jovem", + "spawnGroup": "shadowgarg1", + "monsterClass": 3, + "maxHP": 35, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 8, + "criticalMultiplier": 3, + "blockChance": 75, + "damageResistance": 3, + "droplistID": "shadowgarg1", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "fledgling_shadow_gargoyle", + "iconID": "monsters_misc:1", + "name": "Gárgula-das-sombras inexperiente", + "spawnGroup": "shadowgarg1", + "monsterClass": 3, + "maxHP": 36, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 8, + "criticalMultiplier": 3, + "blockChance": 75, + "damageResistance": 3, + "droplistID": "shadowgarg1", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "shadow_gargoyle", + "iconID": "monsters_misc:2", + "name": "Gárgula-das-sombras", + "spawnGroup": "shadowgarg2", + "monsterClass": 3, + "maxHP": 37, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 8, + "criticalMultiplier": 3, + "blockChance": 85, + "damageResistance": 3, + "droplistID": "shadowgarg1", + "attackDamage": { + "min": 4, + "max": 10 + } + }, + { + "id": "tough_shadow_gargoyle", + "iconID": "monsters_misc:2", + "name": "Gárgula-das-sobras resistente", + "spawnGroup": "shadowgarg2", + "monsterClass": 3, + "maxHP": 37, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 8, + "criticalMultiplier": 3, + "blockChance": 85, + "damageResistance": 4, + "droplistID": "shadowgarg2", + "attackDamage": { + "min": 4, + "max": 10 + } + }, + { + "id": "shadow_gargoyle_trainer", + "iconID": "monsters_liches:0", + "name": "Gárgula-das-sombras instrutora", + "spawnGroup": "shadowgarg3", + "monsterClass": 6, + "maxHP": 35, + "attackCost": 5, + "attackChance": 90, + "criticalSkill": 12, + "criticalMultiplier": 3, + "blockChance": 90, + "damageResistance": 5, + "droplistID": "shadowgarg3", + "attackDamage": { + "min": 3, + "max": 6 + } + }, + { + "id": "shadow_gargoyle_master", + "iconID": "monsters_liches:1", + "name": "Gárgula-das-sombras mestre", + "spawnGroup": "shadowgarg4", + "monsterClass": 6, + "maxHP": 35, + "attackCost": 5, + "attackChance": 125, + "criticalSkill": 12, + "criticalMultiplier": 3, + "blockChance": 90, + "damageResistance": 5, + "droplistID": "shadowgarg3", + "attackDamage": { + "min": 3, + "max": 6 + } + }, + { + "id": "maelveon", + "iconID": "monsters_liches:2", + "name": "Maelveon", + "spawnGroup": "maelveon", + "monsterClass": 6, + "unique": 1, + "maxHP": 55, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 15, + "criticalMultiplier": 3, + "blockChance": 90, + "damageResistance": 5, + "droplistID": "maelveon", + "phraseID": "maelveon", + "attackDamage": { + "min": 0, + "max": 12 + } + } +] diff --git a/AndorsTrail/res/raw-pt/monsterlist_v069_monsters.json b/AndorsTrail/res/raw-pt/monsterlist_v069_monsters.json new file mode 100644 index 000000000..9337a4256 --- /dev/null +++ b/AndorsTrail/res/raw-pt/monsterlist_v069_monsters.json @@ -0,0 +1,646 @@ +[ + { + "id": "puny_caverat", + "iconID": "monsters_rats:0", + "name": "Ratazana-das-cavernas", + "spawnGroup": "puny_caverat", + "monsterClass": 4, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 50, + "blockChance": 30, + "droplistID": "rat", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "rabid_hound", + "iconID": "monsters_rltiles2:108", + "name": "Cão raivoso", + "spawnGroup": "forestwolf2", + "monsterClass": 4, + "maxHP": 40, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 110, + "blockChance": 30, + "droplistID": "canine", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "vicious_hound", + "iconID": "monsters_rltiles2:110", + "name": "Cão feroz", + "spawnGroup": "forestboar4", + "monsterClass": 4, + "maxHP": 31, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 150, + "blockChance": 60, + "damageResistance": 3, + "droplistID": "canineboss", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "mountain_wolf", + "iconID": "monsters_rltiles2:109", + "name": "Lobo-das-montanhas", + "spawnGroup": "primwolf1", + "monsterClass": 4, + "maxHP": 49, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 150, + "blockChance": 60, + "damageResistance": 3, + "droplistID": "canine", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "hatchling_white_wyrm", + "iconID": "monsters_rltiles1:118", + "name": "Cria de wyrm branco", + "spawnGroup": "wyrm_1", + "monsterClass": 7, + "maxHP": 41, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 75, + "blockChance": 130, + "damageResistance": 5, + "droplistID": "wyrm_1", + "attackDamage": { + "min": 4, + "max": 10 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "fatigue_minor", + "magnitude": 1, + "duration": 5, + "chance": 10 + } + ] + } + }, + { + "id": "young_white_wyrm", + "iconID": "monsters_rltiles1:118", + "name": "Wyrm branco jovem", + "spawnGroup": "wyrm_2", + "monsterClass": 7, + "maxHP": 47, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 75, + "blockChance": 130, + "damageResistance": 5, + "droplistID": "wyrm_2", + "attackDamage": { + "min": 4, + "max": 10 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "fatigue_minor", + "magnitude": 1, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "white_wyrm", + "iconID": "monsters_rltiles1:119", + "name": "Wyrm branco", + "spawnGroup": "wyrm_3", + "monsterClass": 7, + "maxHP": 55, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 75, + "blockChance": 130, + "damageResistance": 5, + "droplistID": "wyrm_3", + "attackDamage": { + "min": 4, + "max": 10 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "fatigue_minor", + "magnitude": 1, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "young_aulaeth", + "iconID": "monsters_rltiles2:176", + "name": "Aulaeth jovem", + "spawnGroup": "wyrm_1", + "monsterClass": 5, + "maxHP": 105, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 40, + "blockChance": 30, + "damageResistance": 5, + "droplistID": "aulaeth", + "attackDamage": { + "min": 0, + "max": 4 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "aulaeth", + "iconID": "monsters_rltiles2:58", + "name": "Aulaeth", + "spawnGroup": "wyrm_2", + "monsterClass": 5, + "maxHP": 120, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 40, + "blockChance": 40, + "damageResistance": 6, + "droplistID": "aulaeth", + "attackDamage": { + "min": 0, + "max": 5 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "strong_aulaeth", + "iconID": "monsters_rltiles2:58", + "name": "Aulaeth forte", + "spawnGroup": "wyrm_3", + "monsterClass": 5, + "maxHP": 135, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 40, + "blockChance": 35, + "damageResistance": 6, + "droplistID": "aulaeth", + "attackDamage": { + "min": 0, + "max": 5 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "wyrm_trainer", + "iconID": "monsters_rltiles2:0", + "name": "Wyrm instrutor", + "spawnGroup": "wyrm_4", + "monsterClass": 6, + "maxHP": 69, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "blockChance": 90, + "damageResistance": 4, + "droplistID": "wyrm_4", + "attackDamage": { + "min": 2, + "max": 9 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + }, + "conditionsTarget": [ + { + "condition": "fatigue_minor", + "magnitude": 1, + "duration": 10, + "chance": 70 + } + ] + } + }, + { + "id": "wyrm_apprentice", + "iconID": "monsters_rltiles2:0", + "name": "Wyrm aprendiz", + "spawnGroup": "wyrm_4", + "monsterClass": 6, + "maxHP": 69, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 140, + "blockChance": 90, + "damageResistance": 4, + "droplistID": "wyrm_4", + "attackDamage": { + "min": 2, + "max": 9 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + }, + "conditionsTarget": [ + { + "condition": "fatigue_minor", + "magnitude": 1, + "duration": 10, + "chance": 70 + } + ] + } + }, + { + "id": "young_gornaud", + "iconID": "monsters_rltiles2:29", + "name": "Gornaud jovem", + "spawnGroup": "gornaud_1", + "monsterClass": 5, + "maxHP": 70, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "blockChance": 50, + "droplistID": "gornaud_1", + "attackDamage": { + "min": 0, + "max": 15 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "dazed", + "magnitude": 1, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "gornaud", + "iconID": "monsters_rltiles2:29", + "name": "Gornaud", + "spawnGroup": "gornaud_2", + "monsterClass": 5, + "maxHP": 95, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "blockChance": 50, + "damageResistance": 4, + "droplistID": "gornaud_2", + "attackDamage": { + "min": 0, + "max": 15 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "dazed", + "magnitude": 1, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "strong_gornaud", + "iconID": "monsters_rltiles2:30", + "name": "Gornaud forte", + "spawnGroup": "gornaud_3", + "monsterClass": 5, + "maxHP": 95, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "blockChance": 50, + "damageResistance": 5, + "droplistID": "gornaud_3", + "attackDamage": { + "min": 0, + "max": 15 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "dazed", + "magnitude": 1, + "duration": 5, + "chance": 70 + } + ] + } + }, + { + "id": "slithering_venomfang", + "iconID": "monsters_snakes:2", + "name": "Venomfang rastejante", + "spawnGroup": "gornaud_1", + "monsterClass": 7, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 90, + "damageResistance": 2, + "droplistID": "cave_serpent", + "attackDamage": { + "min": 1, + "max": 2 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_weak", + "magnitude": 1, + "duration": 2, + "chance": 20 + } + ] + } + }, + { + "id": "scaled_venomfang", + "iconID": "monsters_snakes:3", + "name": "Venomfang escamosa", + "spawnGroup": "gornaud_2", + "monsterClass": 7, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "blockChance": 90, + "damageResistance": 2, + "droplistID": "cave_serpent", + "attackDamage": { + "min": 2, + "max": 4 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_weak", + "magnitude": 1, + "duration": 2, + "chance": 50 + } + ] + } + }, + { + "id": "tough_venomfang", + "iconID": "monsters_snakes:3", + "name": "Venomfang resistente", + "spawnGroup": "gornaud_3", + "monsterClass": 7, + "maxHP": 41, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "blockChance": 90, + "damageResistance": 2, + "droplistID": "cave_serpent", + "attackDamage": { + "min": 2, + "max": 5 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_weak", + "magnitude": 1, + "duration": 2, + "chance": 50 + } + ] + } + }, + { + "id": "restless_dead", + "iconID": "monsters_rltiles1:47", + "name": "Morto irrequieto", + "spawnGroup": "restless_dead_1", + "monsterClass": 8, + "maxHP": 25, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 50, + "criticalSkill": 80, + "criticalMultiplier": 2, + "blockChance": 140, + "damageResistance": 3, + "droplistID": "restless_dead_1", + "attackDamage": { + "min": 0, + "max": 3 + } + }, + { + "id": "grave_spawn", + "iconID": "monsters_rltiles1:49", + "name": "Ente-das-sepulturas", + "spawnGroup": "restless_dead_1", + "monsterClass": 2, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 110, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 35, + "damageResistance": 3, + "droplistID": "restless_dead_1", + "attackDamage": { + "min": 2, + "max": 5 + } + }, + { + "id": "restless_apparition", + "iconID": "monsters_rltiles1:47", + "name": "Aparição irrequieta", + "spawnGroup": "restless_dead_2", + "monsterClass": 8, + "maxHP": 29, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 10, + "damageResistance": 1, + "droplistID": "restless_dead_2", + "attackDamage": { + "min": 2, + "max": 6 + } + }, + { + "id": "skeletal_reaper", + "iconID": "monsters_rltiles1:27", + "name": "Esqueleto ceifador", + "spawnGroup": "restless_dead_2", + "monsterClass": 3, + "maxHP": 15, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 150, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 110, + "droplistID": "restless_dead_2", + "attackDamage": { + "min": 0, + "max": 9 + } + }, + { + "id": "kazaul_spawn", + "iconID": "monsters_rltiles1:41", + "name": "Kazaul ente", + "spawnGroup": "kazaul_1", + "monsterClass": 2, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 50, + "criticalMultiplier": 2, + "blockChance": 90, + "damageResistance": 1, + "droplistID": "kazaul_1", + "attackDamage": { + "min": 3, + "max": 5 + } + }, + { + "id": "kazaul_imp", + "iconID": "monsters_rltiles1:45", + "name": "Kazaul duende", + "spawnGroup": "kazaul_2", + "monsterClass": 2, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 105, + "damageResistance": 1, + "droplistID": "kazaul_2", + "attackDamage": { + "min": 3, + "max": 7 + } + }, + { + "id": "kazaul_guardian", + "iconID": "monsters_rltiles1:42", + "name": "Kazaul guardião", + "spawnGroup": "kazaul_guardian", + "monsterClass": 2, + "unique": 1, + "maxHP": 95, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 90, + "damageResistance": 3, + "droplistID": "kazaul_guardian", + "phraseID": "kazaul_guardian", + "attackDamage": { + "min": 3, + "max": 8 + } + }, + { + "id": "graverobber", + "iconID": "monsters_karvis2:3", + "name": "Saqueador-de-túmulos", + "spawnGroup": "bjorgur_bandit", + "monsterClass": 0, + "unique": 1, + "maxHP": 62, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 120, + "blockChance": 72, + "damageResistance": 1, + "droplistID": "bjorgur_bandit", + "phraseID": "bjorgur_bandit", + "attackDamage": { + "min": 2, + "max": 6 + } + } +] diff --git a/AndorsTrail/res/raw-pt/monsterlist_v069_npcs.json b/AndorsTrail/res/raw-pt/monsterlist_v069_npcs.json new file mode 100644 index 000000000..27f60141c --- /dev/null +++ b/AndorsTrail/res/raw-pt/monsterlist_v069_npcs.json @@ -0,0 +1,536 @@ +[ + { + "id": "agent1", + "iconID": "monsters_men:4", + "name": "Agente", + "spawnGroup": "bwm_agent_1", + "monsterClass": 0, + "unique": 1, + "phraseID": "bwm_agent_1_start" + }, + { + "id": "agent2", + "iconID": "monsters_men:4", + "name": "Agente", + "spawnGroup": "bwm_agent_2", + "monsterClass": 0, + "unique": 1, + "phraseID": "bwm_agent_2_start" + }, + { + "id": "agent3", + "iconID": "monsters_men:4", + "name": "Agente", + "spawnGroup": "bwm_agent_3", + "monsterClass": 0, + "unique": 1, + "phraseID": "bwm_agent_3_start" + }, + { + "id": "agent4", + "iconID": "monsters_men:4", + "name": "Agente", + "spawnGroup": "bwm_agent_4", + "monsterClass": 0, + "unique": 1, + "phraseID": "bwm_agent_4_start" + }, + { + "id": "agent5", + "iconID": "monsters_men:4", + "name": "Agente", + "spawnGroup": "bwm_agent_5", + "monsterClass": 0, + "unique": 1, + "phraseID": "bwm_agent_5_start" + }, + { + "id": "agent6", + "iconID": "monsters_men:4", + "name": "Agente", + "spawnGroup": "bwm_agent_6", + "monsterClass": 0, + "unique": 1, + "phraseID": "bwm_agent_6_start" + }, + { + "id": "arghest", + "iconID": "monsters_rltiles2:81", + "name": "Arghest", + "spawnGroup": "arghest", + "monsterClass": 0, + "phraseID": "arghest_start" + }, + { + "id": "tonis", + "iconID": "monsters_rltiles1:67", + "name": "Tonis", + "spawnGroup": "tonis", + "monsterClass": 0, + "phraseID": "tonis_start" + }, + { + "id": "moyra", + "iconID": "monsters_rltiles1:74", + "name": "Moyra", + "spawnGroup": "moyra", + "monsterClass": 0, + "phraseID": "moyra_1" + }, + { + "id": "prim_citizen", + "iconID": "monsters_karvis2:6", + "name": "Cidadão de Prim", + "spawnGroup": "prim_commoner1", + "monsterClass": 0, + "phraseID": "prim_commoner1" + }, + { + "id": "prim_commoner", + "iconID": "monsters_rltiles1:68", + "name": "Plebeu de Prim", + "spawnGroup": "prim_commoner2", + "monsterClass": 0, + "phraseID": "prim_commoner2" + }, + { + "id": "prim_resident", + "iconID": "monsters_karvis2:2", + "name": "Habitante de Prim", + "spawnGroup": "prim_commoner3", + "monsterClass": 0, + "phraseID": "prim_commoner3" + }, + { + "id": "prim_evoker", + "iconID": "monsters_rltiles1:84", + "name": "Invocador de Prim", + "spawnGroup": "prim_commoner4", + "monsterClass": 0, + "phraseID": "prim_commoner4" + }, + { + "id": "laecca", + "iconID": "monsters_rltiles1:72", + "name": "Laecca", + "spawnGroup": "laecca", + "monsterClass": 0, + "phraseID": "laecca_1" + }, + { + "id": "prim_cook", + "iconID": "monsters_karvis2:0", + "name": "Cozinheiro de Prim", + "spawnGroup": "prim_cook", + "monsterClass": 0, + "phraseID": "prim_cook_start" + }, + { + "id": "prim_visitor", + "iconID": "monsters_rltiles1:63", + "name": "Visitante de Prim", + "spawnGroup": "prim_innguest", + "monsterClass": 0, + "phraseID": "prim_innguest" + }, + { + "id": "birgil", + "iconID": "monsters_rltiles2:81", + "name": "Birgil", + "spawnGroup": "birgil", + "monsterClass": 0, + "droplistID": "shop_birgil", + "phraseID": "birgil_1" + }, + { + "id": "prim_tavern_guest", + "iconID": "monsters_rltiles1:106", + "name": "Visitante da taberna de Prim", + "spawnGroup": "prim_tavern_guest1", + "monsterClass": 0, + "phraseID": "prim_tavern_guest1" + }, + { + "id": "prim_tavern_regular", + "iconID": "monsters_rltiles1:106", + "name": "Cliente da taberna de Prim", + "spawnGroup": "prim_tavern_guest2", + "monsterClass": 0, + "phraseID": "prim_tavern_guest2" + }, + { + "id": "prim_bar_guest", + "iconID": "monsters_rltiles1:106", + "name": "Visitante do bar de Prim", + "spawnGroup": "prim_tavern_guest3", + "monsterClass": 0, + "phraseID": "prim_tavern_guest3" + }, + { + "id": "prim_bar_regular", + "iconID": "monsters_rltiles1:106", + "name": "Cliente do bar de Prim", + "spawnGroup": "prim_tavern_guest4", + "monsterClass": 0, + "phraseID": "prim_tavern_guest4" + }, + { + "id": "prim_armorer", + "iconID": "monsters_rltiles1:88", + "name": "Armeiro de Prim", + "spawnGroup": "prim_armorer", + "monsterClass": 0, + "droplistID": "shop_prim_armorer", + "phraseID": "prim_armorer" + }, + { + "id": "jueth", + "iconID": "monsters_men2:0", + "name": "Jueth", + "spawnGroup": "prim_tailor", + "monsterClass": 0, + "phraseID": "prim_tailor" + }, + { + "id": "bjorgur", + "iconID": "monsters_karvis2:7", + "name": "Bjorgur", + "spawnGroup": "bjorgur", + "monsterClass": 0, + "phraseID": "bjorgur_start" + }, + { + "id": "prim_prisoner", + "iconID": "monsters_rltiles2:81", + "name": "Prisioneiro de Prim", + "spawnGroup": "prim_prisoner", + "monsterClass": 0, + "phraseID": "prim_guard1" + }, + { + "id": "fulus", + "iconID": "monsters_karvis2:3", + "name": "Fulus", + "spawnGroup": "fulus", + "monsterClass": 0, + "phraseID": "fulus_start" + }, + { + "id": "guthbered", + "iconID": "monsters_rltiles1:92", + "name": "Guthbered", + "spawnGroup": "guthbered", + "monsterClass": 0, + "unique": 1, + "maxHP": 80, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "guthbered", + "phraseID": "guthbered_start", + "attackDamage": { + "min": 4, + "max": 9 + } + }, + { + "id": "guthbereds_bodyguard", + "iconID": "monsters_rltiles1:76", + "name": "Guarda-costas de Guthbered", + "spawnGroup": "guthbered_guard", + "monsterClass": 0, + "phraseID": "guthbered_guard" + }, + { + "id": "prim_weapon_guard", + "iconID": "monsters_rltiles1:65", + "name": "Guarda-armas de Prim", + "spawnGroup": "prim_guard1", + "monsterClass": 0, + "phraseID": "prim_guard1" + }, + { + "id": "prim_sentry", + "iconID": "monsters_rltiles3:14", + "name": "Sentinela de Prim", + "spawnGroup": "prim_guard2", + "monsterClass": 0, + "phraseID": "prim_guard2" + }, + { + "id": "prim_guard", + "iconID": "monsters_rltiles1:65", + "name": "Guarda de Prim", + "spawnGroup": "prim_guard4", + "monsterClass": 0, + "phraseID": "prim_guard4" + }, + { + "id": "tired_prim_guard", + "iconID": "monsters_rltiles1:76", + "name": "Guarda de Prim cansado", + "spawnGroup": "prim_guard3", + "monsterClass": 0, + "phraseID": "prim_guard3" + }, + { + "id": "prim_treasury_guard", + "iconID": "monsters_rltiles1:69", + "name": "Guarda do Tesouro de Prim", + "spawnGroup": "prim_treasury_guard", + "monsterClass": 0, + "phraseID": "prim_treasury_guard" + }, + { + "id": "samar", + "iconID": "monsters_rltiles2:93", + "name": "Samar", + "spawnGroup": "prim_priest", + "monsterClass": 0, + "droplistID": "shop_samar", + "phraseID": "prim_priest" + }, + { + "id": "prim_priestly_acolyte", + "iconID": "monsters_rltiles1:83", + "name": "Acólito sacerdotal de Prim", + "spawnGroup": "prim_acolyte", + "monsterClass": 0, + "phraseID": "prim_acolyte" + }, + { + "id": "studying_prim_pupil", + "iconID": "monsters_rltiles1:74", + "name": "Pupilo em estudo de Prim", + "spawnGroup": "prim_pupil1", + "monsterClass": 0, + "phraseID": "prim_pupil1" + }, + { + "id": "reading_prim_pupil", + "iconID": "monsters_rltiles1:74", + "name": "Pupilo em leitura de Prim", + "spawnGroup": "prim_pupil2", + "monsterClass": 0, + "phraseID": "prim_pupil2" + }, + { + "id": "prim_pupil", + "iconID": "monsters_rltiles1:74", + "name": "Pupilo de Prim", + "spawnGroup": "prim_pupil3", + "monsterClass": 0, + "phraseID": "prim_pupil3" + }, + { + "id": "blackwater_entrance_guard", + "iconID": "monsters_rltiles3:14", + "name": "Guarda da entrada de Blackwater", + "spawnGroup": "blackwater_entranceguard", + "monsterClass": 0, + "maxHP": 30, + "maxAP": 10, + "phraseID": "blackwater_entranceguard" + }, + { + "id": "blackwater_dinner_guest", + "iconID": "monsters_karvis2:2", + "name": "Convidado de jantar de Blackwater", + "spawnGroup": "blackwater_guest1", + "monsterClass": 0, + "maxHP": 20, + "maxAP": 10, + "phraseID": "blackwater_guest1" + }, + { + "id": "blackwater_inhabitant", + "iconID": "monsters_man1:0", + "name": "Habitante de Blackwater", + "spawnGroup": "blackwater_guest2", + "monsterClass": 0, + "maxHP": 10, + "maxAP": 10, + "phraseID": "blackwater_guest2" + }, + { + "id": "blackwater_cook", + "iconID": "monsters_karvis2:0", + "name": "Cozinheiro de Blackwater", + "spawnGroup": "blackwater_cook", + "monsterClass": 0, + "phraseID": "blackwater_cook" + }, + { + "id": "keneg", + "iconID": "monsters_rltiles1:86", + "name": "Keneg", + "spawnGroup": "keneg", + "monsterClass": 0, + "phraseID": "keneg" + }, + { + "id": "mazeg", + "iconID": "monsters_rltiles1:85", + "name": "Mazeg", + "spawnGroup": "mazeg", + "monsterClass": 0, + "droplistID": "shop_mazeg", + "phraseID": "mazeg" + }, + { + "id": "waeges", + "iconID": "monsters_rltiles1:88", + "name": "Waeges", + "spawnGroup": "waeges", + "monsterClass": 0, + "droplistID": "shop_waeges", + "phraseID": "waeges" + }, + { + "id": "blackwater_fighter", + "iconID": "monsters_rltiles1:66", + "name": "Lutador de Blackwater", + "spawnGroup": "blackwater_fighter", + "monsterClass": 0, + "phraseID": "blackwater_fighter" + }, + { + "id": "ungorm", + "iconID": "monsters_rltiles1:83", + "name": "Ungorm", + "spawnGroup": "ungorm", + "monsterClass": 0, + "phraseID": "ungorm" + }, + { + "id": "blackwater_pupil", + "iconID": "monsters_rltiles1:74", + "name": "Pupilo de Blackwater", + "spawnGroup": "blackwater_pupil", + "monsterClass": 0, + "phraseID": "blackwater_pupil" + }, + { + "id": "laede", + "iconID": "monsters_rltiles1:81", + "name": "Laede", + "spawnGroup": "blackwater_sleephall", + "monsterClass": 0, + "phraseID": "laede" + }, + { + "id": "herec", + "iconID": "monsters_men2:9", + "name": "Herec", + "spawnGroup": "herec", + "monsterClass": 0, + "droplistID": "shop_herec", + "phraseID": "herec_start" + }, + { + "id": "iducus", + "iconID": "monsters_rltiles1:87", + "name": "Iducus", + "spawnGroup": "iducus", + "monsterClass": 0, + "droplistID": "shop_iducus", + "phraseID": "iducus" + }, + { + "id": "blackwater_priest", + "iconID": "monsters_rltiles1:80", + "name": "Prior de Blackwater", + "spawnGroup": "blackwater_priest", + "monsterClass": 0, + "phraseID": "blackwater_priest" + }, + { + "id": "studying_blackwater_priest", + "iconID": "monsters_rltiles1:84", + "name": "Prior em estudo de Blackwater", + "spawnGroup": "blackwater_pupil", + "monsterClass": 0, + "phraseID": "blackwater_pupil" + }, + { + "id": "blackwater_guard", + "iconID": "monsters_rltiles1:76", + "name": "Guarda de Blackwater", + "spawnGroup": "blackwater_guard1", + "monsterClass": 0, + "phraseID": "blackwater_guard1" + }, + { + "id": "blackwater_border_patrol", + "iconID": "monsters_rltiles1:76", + "name": "Patrulha de fronteira de Blackwater", + "spawnGroup": "blackwater_guard2", + "monsterClass": 0, + "phraseID": "blackwater_guard2" + }, + { + "id": "harlenns_bodyguard", + "iconID": "monsters_rltiles1:76", + "name": "Guarda-costas de Harlenn", + "spawnGroup": "blackwater_bossguard", + "monsterClass": 0, + "phraseID": "blackwater_bossguard" + }, + { + "id": "blackwater_chamber_guard", + "iconID": "monsters_men:3", + "name": "Guarda de câmara de Blackwater", + "spawnGroup": "blackwater_throneguard", + "monsterClass": 0, + "unique": 1, + "phraseID": "blackwater_throneguard" + }, + { + "id": "harlenn", + "iconID": "monsters_men2:6", + "name": "Harlenn", + "spawnGroup": "harlenn", + "monsterClass": 0, + "unique": 1, + "maxHP": 80, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "harlenn", + "phraseID": "harlenn_start", + "attackDamage": { + "min": 4, + "max": 9 + } + }, + { + "id": "throdna", + "iconID": "monsters_men2:4", + "name": "Throdna", + "spawnGroup": "throdna", + "monsterClass": 0, + "phraseID": "throdna_start" + }, + { + "id": "throdnas_guard", + "iconID": "monsters_rltiles1:85", + "name": "Guarda de Throdna", + "spawnGroup": "throdna_guard", + "monsterClass": 0, + "phraseID": "throdna_guard" + }, + { + "id": "blackwater_mage", + "iconID": "monsters_rltiles1:80", + "name": "Mago de Blackwater", + "spawnGroup": "blackwater_acolyte", + "monsterClass": 0, + "phraseID": "blackwater_acolyte" + } +] diff --git a/AndorsTrail/res/raw-pt/monsterlist_wilderness.json b/AndorsTrail/res/raw-pt/monsterlist_wilderness.json new file mode 100644 index 000000000..c2c90c330 --- /dev/null +++ b/AndorsTrail/res/raw-pt/monsterlist_wilderness.json @@ -0,0 +1,513 @@ +[ + { + "id": "wild_fox", + "iconID": "monsters_dogs:3", + "name": "Raposa selvagem", + "spawnGroup": "fox2", + "monsterClass": 4, + "maxHP": 25, + "attackCost": 5, + "attackChance": 100, + "blockChance": 40, + "droplistID": "canine", + "attackDamage": { + "min": 4, + "max": 5 + } + }, + { + "id": "stinging_wasp", + "iconID": "monsters_insects:1", + "name": "Vespa picante", + "spawnGroup": "forestwasp2", + "monsterClass": 1, + "maxHP": 15, + "attackCost": 10, + "attackChance": 150, + "blockChance": 60, + "droplistID": "wasp", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "wild_boar", + "iconID": "monsters_dogs:6", + "name": "Javali selvagem", + "spawnGroup": "forestboar2", + "monsterClass": 4, + "maxHP": 20, + "attackCost": 5, + "attackChance": 110, + "blockChance": 30, + "droplistID": "canineboss", + "attackDamage": { + "min": 3, + "max": 3 + } + }, + { + "id": "forest_beetle", + "iconID": "monsters_insects:4", + "name": "Escaravelho-das-florestas", + "spawnGroup": "forestbeetle", + "monsterClass": 1, + "maxHP": 14, + "attackCost": 10, + "attackChance": 150, + "blockChance": 60, + "damageResistance": 2, + "droplistID": "insect", + "attackDamage": { + "min": 2, + "max": 4 + } + }, + { + "id": "wolf", + "iconID": "monsters_dogs:4", + "name": "Lobo", + "spawnGroup": "forestwolf1", + "monsterClass": 4, + "maxHP": 30, + "maxAP": 10, + "moveCost": 3, + "attackCost": 5, + "attackChance": 110, + "blockChance": 30, + "droplistID": "canine", + "attackDamage": { + "min": 3, + "max": 6 + } + }, + { + "id": "forest_serpent", + "iconID": "monsters_snakes:4", + "name": "Serpente-das-florestas", + "spawnGroup": "forestserpent1", + "monsterClass": 7, + "maxHP": 20, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "criticalSkill": 30, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "snake2", + "attackDamage": { + "min": 2, + "max": 3 + } + }, + { + "id": "vicious_forest_serpent", + "iconID": "monsters_snakes:4", + "name": "Serpente-das-florestas feroz", + "spawnGroup": "forestserpent2", + "monsterClass": 7, + "maxHP": 27, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "criticalSkill": 30, + "criticalMultiplier": 2, + "blockChance": 50, + "droplistID": "snake2", + "attackDamage": { + "min": 3, + "max": 4 + } + }, + { + "id": "anklebiter", + "iconID": "monsters_dogs:6", + "name": "Morde-calcanhares", + "spawnGroup": "forestboar3", + "monsterClass": 4, + "maxHP": 31, + "attackCost": 5, + "attackChance": 150, + "blockChance": 60, + "damageResistance": 3, + "droplistID": "canine2", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "flagstone_sentry", + "iconID": "monsters_men:3", + "name": "Sentinela de Flagstone", + "spawnGroup": "flagstone_sentry", + "monsterClass": 0, + "phraseID": "flagstone_sentry" + }, + { + "id": "escaped_prisoner", + "iconID": "monsters_men:0", + "name": "Prisioneiro em fuga", + "spawnGroup": "prisoner1", + "monsterClass": 0, + "unique": 1, + "maxHP": 15, + "attackCost": 10, + "attackChance": 50, + "blockChance": 20, + "droplistID": "prisoner", + "phraseID": "prisoner1", + "attackDamage": { + "min": 3, + "max": 7 + } + }, + { + "id": "starving_prisoner", + "iconID": "monsters_misc:11", + "name": "Prisioneiro esfomeado", + "spawnGroup": "prisoner2", + "monsterClass": 0, + "unique": 1, + "maxHP": 10, + "attackCost": 3, + "attackChance": 60, + "blockChance": 60, + "droplistID": "prisoner", + "phraseID": "prisoner2", + "attackDamage": { + "min": 3, + "max": 5 + } + }, + { + "id": "bone_warrior", + "iconID": "monsters_skeleton1:0", + "name": "Ossudo guerreiro", + "spawnGroup": "skeleton2", + "monsterClass": 3, + "maxHP": 32, + "attackCost": 5, + "attackChance": 120, + "blockChance": 60, + "damageResistance": 2, + "droplistID": "skeleton2", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "bone_champion", + "iconID": "monsters_skeleton1:0", + "name": "Ossudo campeão", + "spawnGroup": "skeleton3", + "monsterClass": 3, + "maxHP": 49, + "attackCost": 5, + "attackChance": 130, + "blockChance": 60, + "damageResistance": 2, + "droplistID": "skeleton3", + "attackDamage": { + "min": 4, + "max": 9 + } + }, + { + "id": "undead_warden", + "iconID": "monsters_liches:0", + "name": "Director morto-vivo", + "spawnGroup": "flagstone_guard0", + "monsterClass": 6, + "unique": 1, + "maxHP": 57, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "damageResistance": 1, + "droplistID": "flagstone_guard0", + "phraseID": "flagstone_guard0", + "attackDamage": { + "min": 4, + "max": 8 + } + }, + { + "id": "cave_guardian", + "iconID": "monsters_rltiles1:16", + "name": "Guardião da caverna", + "spawnGroup": "flagstone_guard1", + "monsterClass": 2, + "unique": 1, + "maxHP": 61, + "attackCost": 5, + "attackChance": 150, + "criticalSkill": 10, + "criticalMultiplier": 3, + "blockChance": 90, + "damageResistance": 2, + "droplistID": "flagstone_guard1", + "phraseID": "flagstone_guard1", + "attackDamage": { + "min": 4, + "max": 10 + } + }, + { + "id": "winged_demon", + "iconID": "monsters_demon1:0", + "name": "Demónio voador", + "spawnGroup": "flagstone_guard2", + "size": "2x2", + "monsterClass": 2, + "unique": 1, + "maxHP": 82, + "attackCost": 5, + "attackChance": 90, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 70, + "damageResistance": 5, + "droplistID": "flagstone_guard2", + "phraseID": "flagstone_guard2", + "attackDamage": { + "min": 4, + "max": 12 + } + }, + { + "id": "narael", + "iconID": "monsters_man1:0", + "name": "Narael", + "spawnGroup": "narael", + "monsterClass": 0, + "phraseID": "narael" + }, + { + "id": "rotting_corpse", + "iconID": "monsters_zombie1:0", + "name": "Cadáver putrefacto", + "spawnGroup": "undead1", + "monsterClass": 6, + "maxHP": 71, + "attackCost": 10, + "attackChance": 30, + "criticalSkill": 50, + "criticalMultiplier": 2, + "blockChance": 30, + "damageResistance": 2, + "droplistID": "undead1", + "phraseID": "zombie1", + "attackDamage": { + "min": 2, + "max": 5 + } + }, + { + "id": "walking_corpse", + "iconID": "monsters_zombie1:0", + "name": "Cadáver andante", + "spawnGroup": "undead1", + "monsterClass": 6, + "maxHP": 90, + "attackCost": 10, + "attackChance": 30, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 30, + "damageResistance": 2, + "droplistID": "undead1", + "attackDamage": { + "min": 2, + "max": 4 + } + }, + { + "id": "gargoyle", + "iconID": "monsters_misc:2", + "name": "Gárgula", + "spawnGroup": "undead1", + "monsterClass": 3, + "maxHP": 47, + "attackCost": 10, + "attackChance": 110, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 70, + "damageResistance": 2, + "droplistID": "undead1", + "attackDamage": { + "min": 3, + "max": 7 + } + }, + { + "id": "fledgling_gargoyle", + "iconID": "monsters_misc:1", + "name": "Gágula inexperiente", + "spawnGroup": "undead1", + "monsterClass": 3, + "maxHP": 35, + "attackCost": 10, + "attackChance": 110, + "blockChance": 60, + "damageResistance": 2, + "droplistID": "undead1", + "attackDamage": { + "min": 3, + "max": 6 + } + }, + { + "id": "large_cave_rat", + "iconID": "monsters_rats:3", + "name": "Ratazana-das-cavernas grande", + "spawnGroup": "undeadrat1", + "monsterClass": 4, + "maxHP": 21, + "maxAP": 10, + "moveCost": 10, + "attackCost": 3, + "attackChance": 60, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 40, + "droplistID": "catacombrat", + "attackDamage": { + "min": 3, + "max": 4 + } + }, + { + "id": "pack_leader", + "iconID": "monsters_dogs:5", + "name": "Chefe da matilha", + "spawnGroup": "pack_boss", + "monsterClass": 4, + "unique": 1, + "maxHP": 65, + "attackCost": 5, + "attackChance": 90, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 40, + "damageResistance": 4, + "droplistID": "pack_boss", + "attackDamage": { + "min": 2, + "max": 10 + } + }, + { + "id": "pack_hunter", + "iconID": "monsters_dogs:4", + "name": "Caçador da matilha", + "spawnGroup": "pack3", + "monsterClass": 4, + "maxHP": 45, + "attackCost": 5, + "attackChance": 90, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 40, + "damageResistance": 3, + "droplistID": "pack3", + "attackDamage": { + "min": 2, + "max": 7 + } + }, + { + "id": "rabid_wolf", + "iconID": "monsters_dogs:4", + "name": "Lobo raivoso", + "spawnGroup": "pack2", + "monsterClass": 4, + "maxHP": 42, + "attackCost": 5, + "attackChance": 90, + "blockChance": 50, + "damageResistance": 3, + "droplistID": "pack2", + "attackDamage": { + "min": 2, + "max": 6 + } + }, + { + "id": "fledgling_wolf", + "iconID": "monsters_dogs:3", + "name": "Lobo inexperiente", + "spawnGroup": "pack2", + "monsterClass": 4, + "maxHP": 42, + "attackCost": 3, + "attackChance": 70, + "blockChance": 50, + "damageResistance": 3, + "droplistID": "pack2", + "attackDamage": { + "min": 2, + "max": 5 + } + }, + { + "id": "young_wolf", + "iconID": "monsters_dogs:4", + "name": "Lobo jovem", + "spawnGroup": "pack1", + "monsterClass": 4, + "maxHP": 35, + "attackCost": 3, + "attackChance": 60, + "blockChance": 30, + "damageResistance": 2, + "droplistID": "pack1", + "attackDamage": { + "min": 2, + "max": 5 + } + }, + { + "id": "hunting_dog", + "iconID": "monsters_dogs:2", + "name": "Cão de caça", + "spawnGroup": "pack1", + "monsterClass": 4, + "maxHP": 25, + "attackCost": 5, + "attackChance": 60, + "blockChance": 50, + "droplistID": "pack1", + "attackDamage": { + "min": 2, + "max": 5 + } + }, + { + "id": "highwayman", + "iconID": "monsters_men:8", + "name": "Salteador", + "spawnGroup": "bandit1", + "monsterClass": 0, + "maxHP": 54, + "attackCost": 5, + "attackChance": 90, + "criticalSkill": 50, + "criticalMultiplier": 2, + "blockChance": 30, + "damageResistance": 2, + "droplistID": "bandit1", + "phraseID": "bandit1", + "attackDamage": { + "min": 2, + "max": 4 + } + } +] diff --git a/AndorsTrail/res/raw-ru/actorconditions_v0610.json b/AndorsTrail/res/raw-ru/actorconditions_v0610.json new file mode 100644 index 000000000..4c65eab0e --- /dev/null +++ b/AndorsTrail/res/raw-ru/actorconditions_v0610.json @@ -0,0 +1,27 @@ +[ + { + "id": "chaotic_grip", + "iconID": "actorconditions_1:96", + "name": "Хаотический спазм", + "category": 1, + "abilityEffect": { + "increaseBlockChance": -10, + "increaseDamageResistance": -1 + } + }, + { + "id": "chaotic_curse", + "iconID": "actorconditions_1:89", + "name": "Хаотическое проклятие", + "category": 1, + "abilityEffect": { + "increaseMaxAP": -1, + "increaseAttackDamage": { + "min": -1, + "max": -1 + }, + "increaseBlockChance": -10, + "increaseDamageResistance": -1 + } + } +] diff --git a/AndorsTrail/res/raw-ru/actorconditions_v0611.json b/AndorsTrail/res/raw-ru/actorconditions_v0611.json new file mode 100644 index 000000000..7b7d2801a --- /dev/null +++ b/AndorsTrail/res/raw-ru/actorconditions_v0611.json @@ -0,0 +1,78 @@ +[ + { + "id": "contagion", + "iconID": "actorconditions_1:58", + "name": "Блохи", + "category": 3, + "abilityEffect": { + "increaseAttackChance": -10, + "increaseAttackDamage": { + "min": -1, + "max": -1 + } + } + }, + { + "id": "blister", + "iconID": "actorconditions_1:15", + "name": "Ожог кожи", + "category": 3, + "roundEffect": { + "visualEffectID": 0, + "increaseCurrentHP": { + "min": -1, + "max": -1 + } + } + }, + { + "id": "stunned", + "iconID": "actorconditions_1:95", + "name": "Оглушение", + "category": 2, + "abilityEffect": { + "increaseMaxAP": -2, + "increaseMoveCost": 8, + "increaseAttackCost": 5 + } + }, + { + "id": "focus_dmg", + "iconID": "actorconditions_1:70", + "name": "Улучшение урона", + "category": 1, + "isPositive": 1, + "abilityEffect": { + "increaseAttackCost": 1, + "increaseAttackDamage": { + "min": 3, + "max": 3 + } + } + }, + { + "id": "focus_ac", + "iconID": "actorconditions_1:98", + "name": "Улучшение точности", + "category": 1, + "isPositive": 1, + "abilityEffect": { + "increaseAttackCost": 1, + "increaseAttackChance": 40 + } + }, + { + "id": "poison_irdegh", + "iconID": "actorconditions_1:60", + "name": "Яд ирдега", + "category": 3, + "isStacking": 1, + "roundEffect": { + "visualEffectID": 2, + "increaseCurrentHP": { + "min": -1, + "max": -1 + } + } + } +] diff --git a/AndorsTrail/res/raw-ru/actorconditions_v0611_2.json b/AndorsTrail/res/raw-ru/actorconditions_v0611_2.json new file mode 100644 index 000000000..7aaa85d6a --- /dev/null +++ b/AndorsTrail/res/raw-ru/actorconditions_v0611_2.json @@ -0,0 +1,97 @@ +[ + { + "id": "rotworm", + "iconID": "actorconditions_1:82", + "name": "Kazaul rotworms", + "category": 2, + "abilityEffect": { + "increaseMaxHP": -15, + "increaseMaxAP": -3, + "increaseDamageResistance": -1 + } + }, + { + "id": "shadowbless_str", + "iconID": "actorconditions_1:70", + "name": "Благословение силы Тени", + "category": 0, + "isPositive": 1, + "abilityEffect": { + "increaseAttackDamage": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "shadowbless_heal", + "iconID": "actorconditions_1:35", + "name": "Благословение регенерации Тени", + "category": 0, + "isPositive": 1, + "roundEffect": { + "visualEffectID": 1, + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "shadowbless_acc", + "iconID": "actorconditions_1:98", + "name": "Благословение аккуратности Тени", + "category": 0, + "isPositive": 1, + "abilityEffect": { + "increaseAttackChance": 30 + } + }, + { + "id": "shadowbless_guard", + "iconID": "actorconditions_1:91", + "name": "Благословение защитника Тени", + "category": 0, + "isPositive": 1, + "abilityEffect": { + "increaseMaxHP": 30, + "increaseDamageResistance": 1 + } + }, + { + "id": "crit1", + "iconID": "actorconditions_1:89", + "name": "Внутреннее кровотечение", + "category": 2, + "isStacking": 1, + "abilityEffect": { + "increaseAttackCost": 1, + "increaseAttackChance": -50, + "increaseAttackDamage": { + "min": -3, + "max": -3 + } + } + }, + { + "id": "crit2", + "iconID": "actorconditions_1:89", + "name": "Перелом", + "category": 2, + "isStacking": 1, + "abilityEffect": { + "increaseBlockChance": -50, + "increaseDamageResistance": -2 + } + }, + { + "id": "concussion", + "iconID": "actorconditions_1:80", + "name": "Сотрясение", + "category": 2, + "isStacking": 1, + "abilityEffect": { + "increaseAttackChance": -30 + } + } +] diff --git a/AndorsTrail/res/raw-ru/actorconditions_v069.json b/AndorsTrail/res/raw-ru/actorconditions_v069.json new file mode 100644 index 000000000..f0b1bc425 --- /dev/null +++ b/AndorsTrail/res/raw-ru/actorconditions_v069.json @@ -0,0 +1,52 @@ +[ + { + "id": "bless", + "iconID": "actorconditions_1:41", + "name": "Благословление", + "category": 0, + "isPositive": 1, + "abilityEffect": { + "increaseAttackChance": 5 + } + }, + { + "id": "poison_weak", + "iconID": "actorconditions_1:60", + "name": "Слабый яд", + "category": 3, + "roundEffect": { + "visualEffectID": 2, + "increaseCurrentHP": { + "min": -1, + "max": -1 + } + } + }, + { + "id": "str", + "iconID": "actorconditions_1:70", + "name": "Сила", + "category": 2, + "isPositive": 1, + "abilityEffect": { + "increaseAttackDamage": { + "min": 2, + "max": 2 + } + } + }, + { + "id": "regen", + "iconID": "actorconditions_1:35", + "name": "Регенерация Тени", + "category": 0, + "isPositive": 1, + "roundEffect": { + "visualEffectID": 1, + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + } +] diff --git a/AndorsTrail/res/raw-ru/actorconditions_v069_bwm.json b/AndorsTrail/res/raw-ru/actorconditions_v069_bwm.json new file mode 100644 index 000000000..75601f703 --- /dev/null +++ b/AndorsTrail/res/raw-ru/actorconditions_v069_bwm.json @@ -0,0 +1,101 @@ +[ + { + "id": "speed_minor", + "iconID": "actorconditions_1:87", + "name": "Малая скорость", + "category": 2, + "isPositive": 1, + "abilityEffect": { + "increaseMaxAP": 2 + } + }, + { + "id": "fatigue_minor", + "iconID": "actorconditions_1:14", + "name": "Малая усталость", + "category": 2, + "abilityEffect": { + "increaseMoveCost": 2, + "increaseAttackCost": 2, + "increaseAttackDamage": { + "min": -1, + "max": -1 + } + } + }, + { + "id": "feebleness_minor", + "iconID": "actorconditions_1:74", + "name": "Малая слабость оружия", + "category": 1, + "abilityEffect": { + "increaseAttackDamage": { + "min": -3, + "max": -3 + } + } + }, + { + "id": "bleeding_wound", + "iconID": "actorconditions_2:0", + "name": "Кровоточащая рана", + "category": 3, + "isStacking": 1, + "roundEffect": { + "visualEffectID": 0, + "increaseCurrentHP": { + "min": -1, + "max": -1 + } + } + }, + { + "id": "rage_minor", + "iconID": "actorconditions_1:90", + "name": "Малая ярость берсерка", + "category": 1, + "isPositive": 1, + "abilityEffect": { + "increaseMaxHP": 35, + "increaseAttackChance": 60, + "increaseBlockChance": -90, + "increaseDamageResistance": -1 + } + }, + { + "id": "blackwater_misery", + "iconID": "actorconditions_1:58", + "name": "Блеквотское страдание", + "category": 3, + "abilityEffect": { + "increaseAttackCost": 1, + "increaseAttackChance": -50, + "increaseCriticalSkill": -50 + } + }, + { + "id": "intoxicated", + "iconID": "actorconditions_2:1", + "name": "Опьянение", + "category": 1, + "isPositive": 1, + "abilityEffect": { + "increaseMaxHP": 15, + "increaseAttackCost": 1, + "increaseAttackChance": -30, + "increaseAttackDamage": { + "min": 4, + "max": 4 + } + } + }, + { + "id": "dazed", + "iconID": "actorconditions_1:65", + "name": "Ошеломление", + "category": 1, + "abilityEffect": { + "increaseBlockChance": -40 + } + } +] diff --git a/AndorsTrail/res/raw-ru/conversationlist_crossglen.json b/AndorsTrail/res/raw-ru/conversationlist_crossglen.json new file mode 100644 index 000000000..a678b9cba --- /dev/null +++ b/AndorsTrail/res/raw-ru/conversationlist_crossglen.json @@ -0,0 +1,140 @@ +[ + { + "id": "audir1", + "message": "Добро пожаловать в мой магазин!\n\nПожалуйста посмотри мой ассортимент.", + "replies": [ + { + "text": "Магазин", + "nextPhraseID": "S" + } + ] + }, + { + "id": "arambold1", + "message": "О боже, я когда-нибудь получу покой с этими орущими пьяницами?\n\nКто-то должен с этим разобраться.", + "replies": [ + { + "text": "Отдых", + "nextPhraseID": "arambold2" + }, + { + "text": "Торговать", + "nextPhraseID": "S" + } + ] + }, + { + "id": "arambold2", + "message": "Конечно друг, можешь поспать здесь.\n\nВыбирай любую кровать.", + "replies": [ + { + "text": "Спасибо, пока", + "nextPhraseID": "X" + } + ] + }, + { + "id": "drunk1", + "message": "Пей пей пей, пей еще больше.\nПей пей пей на пол меньше лей.\n\nЭй друг, давай к нам за стол, побухаем?", + "replies": [ + { + "text": "Нет, спасибо", + "nextPhraseID": "X" + }, + { + "text": "Как-нибудь в другой раз.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "mara_default", + "message": "Не обращайте внимания на этих пьяниц, они всегда вызывают проблемы.\n\nХотите перекусить?", + "replies": [ + { + "text": "Торговать", + "nextPhraseID": "S" + } + ] + }, + { + "id": "mara1", + "replies": [ + { + "nextPhraseID": "mara_thanks", + "requires": { + "progress": "odair:100" + } + }, + { + "nextPhraseID": "mara_default" + } + ] + }, + { + "id": "mara_thanks", + "message": "Я слышала вы помогли Одаиру очистить старые продовольственные пещеры. Спасибо большое, скоро мы начнем их использовать снова.", + "replies": [ + { + "text": "Всегда пожалуйста", + "nextPhraseID": "mara_default" + } + ] + }, + { + "id": "farm1", + "message": "Пожалуйста не беспокойте меня, я занят работой.", + "replies": [ + { + "text": "Брат", + "nextPhraseID": "farm_andor" + } + ] + }, + { + "id": "farm2", + "message": "Что?! Не видишь что я занят? Иди и побеспокой кого-нибудь еще.", + "replies": [ + { + "text": "Брат", + "nextPhraseID": "farm_andor" + } + ] + }, + { + "id": "farm_andor", + "message": "Эндор? Нет, я не видел его в последнее время." + }, + { + "id": "snakemaster", + "message": "Ну и ну, кто тут такой? Посетитель, как мило. Я впечатлен, ты дошел до сюда через всех моих Фаворитов.\n\nТеперь приготовься к смерти, заморыш.", + "replies": [ + { + "text": "В бой!", + "nextPhraseID": "F" + }, + { + "text": "Это мы еще посмотрим кто кого.", + "nextPhraseID": "F" + }, + { + "text": "Пожалуйста, не трогай меня!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "haunt", + "message": "О смертный, освободи меня из этого проклятого мира!", + "replies": [ + { + "text": "Оставить", + "nextPhraseID": "F" + }, + { + "text": "Ты имеешь в виду, убить тебя?", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-ru/conversationlist_crossglen_gruil.json b/AndorsTrail/res/raw-ru/conversationlist_crossglen_gruil.json new file mode 100644 index 000000000..8760f5283 --- /dev/null +++ b/AndorsTrail/res/raw-ru/conversationlist_crossglen_gruil.json @@ -0,0 +1,118 @@ +[ + { + "id": "gruil1", + "message": "Псс, эй.\n\nХочешь торговать?", + "replies": [ + { + "text": "Торговать", + "nextPhraseID": "S" + }, + { + "text": "Брат", + "nextPhraseID": "gruil_select", + "requires": { + "progress": "andor:10" + } + } + ] + }, + { + "id": "gruil_select", + "replies": [ + { + "nextPhraseID": "gruil_return", + "requires": { + "progress": "andor:30" + } + }, + { + "nextPhraseID": "gruil2" + } + ] + }, + { + "id": "gruil2", + "message": "Твой брат? Ах, ты имеешь в виду Эндора? Я могу знать кое-что, но эта информация будет тебе дорого стоить. Принеси мне железу одной из ядовитых змей и, возможно, я тебе скажу.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 20 + } + ], + "replies": [ + { + "text": "Я принес", + "nextPhraseID": "gruil_complete", + "requires": { + "item": { + "itemID": "gland", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Хорошо, пока", + "nextPhraseID": "X" + } + ] + }, + { + "id": "gruil_complete", + "message": "Большое спасибо друг. Это очень хорошо.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "gruil_andor1" + } + ] + }, + { + "id": "gruil_return", + "message": "Слушай парень, я расскажу тебе.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gruil_andor1" + } + ] + }, + { + "id": "gruil_andor1", + "message": "Я разговаривал с ним вчера. Он спросил, знаю ли я кого-то по имени Умар или нечто подобное. Я не имею понятия о ком он говорил.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gruil_andor2" + } + ] + }, + { + "id": "gruil_andor2", + "message": "Казалось, он действительно чем-то расстроен и очень торопится. Что-то еще о Гильдии Воров в Фоллхейвене.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gruil_andor3" + } + ] + }, + { + "id": "gruil_andor3", + "message": "Это все что я знаю. Может поспрашиваеш в Фоллхейвене. Найди моего друга Гаела, он, обычно, много чего знает.", + "replies": [ + { + "text": "Пока", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-ru/conversationlist_crossglen_leonid.json b/AndorsTrail/res/raw-ru/conversationlist_crossglen_leonid.json new file mode 100644 index 000000000..308f0f1dd --- /dev/null +++ b/AndorsTrail/res/raw-ru/conversationlist_crossglen_leonid.json @@ -0,0 +1,201 @@ +[ + { + "id": "leonid1", + "message": "Привет пацан. Ты ведь сын Михаила, не так ли? У тебя еще есть брат.\n\nЯ Леонид, управляющий деревни Кроссглен.", + "replies": [ + { + "text": "Брат", + "nextPhraseID": "leonid_andor" + }, + { + "text": "Кроссглен", + "nextPhraseID": "leonid_crossglen" + }, + { + "text": "Пока", + "nextPhraseID": "leonid_bye" + } + ] + }, + { + "id": "leonid_andor", + "message": "Твоего брата? Нет, я не видел его сегодня. Кажется я видел его здесь вчера, он разговаривал с Груилом. Может он знает?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 10 + } + ], + "replies": [ + { + "text": "Спасибо", + "nextPhraseID": "leonid_continue" + }, + { + "text": "Пока", + "nextPhraseID": "leonid_bye" + } + ] + }, + { + "id": "leonid_continue", + "message": "Могу я еще чем нибудь помочь?", + "replies": [ + { + "text": "Брат", + "nextPhraseID": "leonid_andor" + }, + { + "text": "Кроссглен", + "nextPhraseID": "leonid_crossglen" + }, + { + "text": "Пока", + "nextPhraseID": "leonid_bye" + } + ] + }, + { + "id": "leonid_crossglen", + "message": "Как ты знаешь, это деревня Кроссглен. Мы фермерская община.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen1" + } + ] + }, + { + "id": "leonid_crossglen1", + "message": "У нас есть Аудир, с его кузницей на юго-западе, хижина Леты и ее мужа на западе, эта ратуша и хижина твоего отца на северо-западе.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen2" + } + ] + }, + { + "id": "leonid_crossglen2", + "message": "Вот в принципе и всё. Мы стараемся жить мирно.", + "replies": [ + { + "text": "Последние события", + "nextPhraseID": "leonid_crossglen3" + }, + { + "text": "Назад", + "nextPhraseID": "leonid_continue" + } + ] + }, + { + "id": "leonid_crossglen3", + "message": "Были некоторые беспорядки несколько недель назад, которые вы могли заметить. Некоторые жители участвовали в митинге против нового указа Лорда Геомира.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen4" + } + ] + }, + { + "id": "leonid_crossglen4", + "message": "Лорд Геомир выступил с заявлением о незаконном использовании Костной муки, как исцеляющего вещества. Некоторые жители утверждают, что мы должны выступить против слова Лорда Геомира и по-прежнему использовать ее сами.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen4_1" + } + ] + }, + { + "id": "leonid_crossglen4_1", + "message": "Фарал, наш священник, особенно расстроился и предложил сделать что-то c Лордом Геомиром.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen5" + } + ] + }, + { + "id": "leonid_crossglen5", + "message": "Другие жители утверждают, что мы должны придерживаться желания Лорда Геомира желания.\n\nЛично я еще не решил на чьей я стороне.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen6" + } + ] + }, + { + "id": "leonid_crossglen6", + "message": "С одной стороны, Лорд Геомир поддерживает Долину Креста большим количеством охраны. *указывает на солдат в зале*", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen7" + } + ] + }, + { + "id": "leonid_crossglen7", + "message": "Но, с другой стороны, налоги и жесткие правила, что разрешено, а что нет действительно сильно ударили по деревне.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen8" + } + ] + }, + { + "id": "leonid_crossglen8", + "message": "Кто-то должен идти к замку Геомира и поговорить с управляющим о нашей ситуации здесь, в Кроссглене.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "crossglen", + "value": 1 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen9" + } + ] + }, + { + "id": "leonid_crossglen9", + "message": "В то же время, мы запретили любое использование костной муки, как исцеляющего вещества.", + "replies": [ + { + "text": "Назад", + "nextPhraseID": "leonid_continue" + }, + { + "text": "Пока", + "nextPhraseID": "leonid_bye" + } + ] + }, + { + "id": "leonid_bye", + "message": "Да прибудет с тобой Тень.", + "replies": [ + { + "text": "Выход", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-ru/conversationlist_crossglen_leta.json b/AndorsTrail/res/raw-ru/conversationlist_crossglen_leta.json new file mode 100644 index 000000000..661e54158 --- /dev/null +++ b/AndorsTrail/res/raw-ru/conversationlist_crossglen_leta.json @@ -0,0 +1,110 @@ +[ + { + "id": "leta1", + "message": "Эй, это мой дом, проваливай от сюда!", + "replies": [ + { + "text": "Но я просто...", + "nextPhraseID": "leta2" + }, + { + "text": "Оромир", + "nextPhraseID": "leta_oromir_select" + } + ] + }, + { + "id": "leta2", + "message": "Давай парень, проваливай из моего дома!", + "replies": [ + { + "text": "Оромир", + "nextPhraseID": "leta_oromir_select" + } + ] + }, + { + "id": "leta_oromir_select", + "replies": [ + { + "nextPhraseID": "leta_oromir_complete2", + "requires": { + "progress": "leta:100" + } + }, + { + "nextPhraseID": "leta_oromir1" + } + ] + }, + { + "id": "leta_oromir1", + "message": "Слышал что-нибудь о моем муже? Он должен был помогать на ферме сегодня, но он отлынивает, как обычно.\nВздох.", + "replies": [ + { + "text": "Нет, не слышал", + "nextPhraseID": "leta_oromir2" + }, + { + "text": "Найти его", + "nextPhraseID": "leta_oromir_complete", + "requires": { + "progress": "leta:20" + } + } + ] + }, + { + "id": "leta_oromir2", + "message": "Если увидишь его, скажи ему что бы поторапливался обратно и помог мне с работой по дому.\nА теперь проваливай!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "leta", + "value": 10 + } + ] + }, + { + "id": "leta_oromir_complete", + "message": "Он прячется? Он выбрал неправильный путь. Пойду покажу ему, кто в доме хозяин.\nСпасибо что дал знать.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "leta", + "value": 100 + } + ] + }, + { + "id": "leta_oromir_complete2", + "message": "Спасибо за помощь с Оромиром. Я отправлюсь за ним через минуту." + }, + { + "id": "oromir1", + "message": "Ой ты меня напугал.\nПривет.", + "replies": [ + { + "text": "Привет", + "nextPhraseID": "oromir2" + } + ] + }, + { + "id": "oromir2", + "message": "Я скрываюсь от своей жены Леты. Она вечно ворчит на меня за то, что не помогаю на ферме. Пожалуйста, не говори ей где я.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "leta", + "value": 20 + } + ], + "replies": [ + { + "text": "Конечно", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-ru/conversationlist_crossglen_odair.json b/AndorsTrail/res/raw-ru/conversationlist_crossglen_odair.json new file mode 100644 index 000000000..27da9bb2c --- /dev/null +++ b/AndorsTrail/res/raw-ru/conversationlist_crossglen_odair.json @@ -0,0 +1,161 @@ +[ + { + "id": "odair1", + "message": "О, это ты. Ты один из братьев. Всегда вас путал.", + "replies": [ + { + "text": "N", + "nextPhraseID": "odair_select" + } + ] + }, + { + "id": "odair_select", + "replies": [ + { + "nextPhraseID": "odair_complete2", + "requires": { + "progress": "odair:100" + } + }, + { + "nextPhraseID": "odair_continue", + "requires": { + "progress": "odair:10" + } + }, + { + "nextPhraseID": "odair2" + } + ] + }, + { + "id": "odair2", + "message": "Хм, возможно ты будешь мне полезен. Сможешь помочь мне с небольшим делом, как ты думаешь?", + "replies": [ + { + "text": "Что за дело?", + "nextPhraseID": "odair3" + }, + { + "text": "Пока", + "nextPhraseID": "odair3" + } + ] + }, + { + "id": "odair3", + "message": "Недавно я пошел к пещере *указывает на запад*, чтобы проверить, наши поставки. Но, пещера была зараженна крысами.", + "replies": [ + { + "text": "N", + "nextPhraseID": "odair4" + } + ] + }, + { + "id": "odair4", + "message": "В частности, я видел одну крысу, что была больше других. Как ты думаешь, сможешь помочь мне с моей задачей?", + "replies": [ + { + "text": "Конечно", + "nextPhraseID": "odair5" + }, + { + "text": "Нет, извини", + "nextPhraseID": "odair5" + }, + { + "text": "Нет уж, как-нибудь обойдусь", + "nextPhraseID": "odair_cowards" + } + ] + }, + { + "id": "odair5", + "message": "Ты должен войти в эту пещеру и убить большую крысу, таким образом, возможно, мы сможем остановить распространение крыс в пещере и начать использовать её снова, как наши пещеры поставок.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "odair", + "value": 10 + } + ], + "replies": [ + { + "text": "Хорошо", + "nextPhraseID": "X" + }, + { + "text": "Ну уж нет", + "nextPhraseID": "odair_cowards" + } + ] + }, + { + "id": "odair_cowards", + "message": "Ничего удивительного. Ты и твой брат всегда были трусами.", + "replies": [ + { + "text": "Пока", + "nextPhraseID": "X" + } + ] + }, + { + "id": "odair_continue", + "message": "Ты убил большую крысу в пещере к западу отсюда?", + "replies": [ + { + "text": "Да", + "nextPhraseID": "odair_complete", + "requires": { + "item": { + "itemID": "tail_caverat", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Что?", + "nextPhraseID": "odair5" + }, + { + "text": "Еще нет", + "nextPhraseID": "odair_cowards" + } + ] + }, + { + "id": "odair_complete", + "message": "Большое спасибо тебе за помощь парень! Может быть, ты и твой брат не столь трусливы, как я думал. Вот, возьми эти монеты за твою помощь.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "odair", + "value": 100 + }, + { + "rewardType": 1, + "rewardID": "gold20" + } + ], + "replies": [ + { + "text": "Спасибо", + "nextPhraseID": "X" + } + ] + }, + { + "id": "odair_complete2", + "message": "Спасибо за помощь, ешё раз. Теперь мы можем начать использовать эти пещеры, как наши пещеры поставок снова.", + "replies": [ + { + "text": "Пока", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-ru/conversationlist_crossglen_tharal.json b/AndorsTrail/res/raw-ru/conversationlist_crossglen_tharal.json new file mode 100644 index 000000000..2ac2d0441 --- /dev/null +++ b/AndorsTrail/res/raw-ru/conversationlist_crossglen_tharal.json @@ -0,0 +1,138 @@ +[ + { + "id": "tharal1", + "message": "Сиянии Тени озаряет твой путь, сын мой.", + "replies": [ + { + "text": "Торговать", + "nextPhraseID": "S" + }, + { + "text": "Костная мука", + "nextPhraseID": "tharal_bonemeal_select", + "requires": { + "progress": "bonemeal:10" + } + } + ] + }, + { + "id": "tharal_bonemeal_select", + "replies": [ + { + "nextPhraseID": "tharal_bonemeal4", + "requires": { + "progress": "bonemeal:30" + } + }, + { + "nextPhraseID": "tharal_bonemeal1" + } + ] + }, + { + "id": "tharal_bonemeal1", + "message": "Костная мука? Мы не должны говорить об этом. Никто не должен. Приказ Лорда Геомира.", + "replies": [ + { + "text": "Ну пожаалуйста?", + "nextPhraseID": "tharal_bonemeal2_1" + } + ] + }, + { + "id": "tharal_bonemeal2_1", + "message": "Нет, мы в самом деле не должны говорить об этом.", + "replies": [ + { + "text": "Ой, ну расскажи", + "nextPhraseID": "tharal_bonemeal2" + } + ] + }, + { + "id": "tharal_bonemeal2", + "message": "Что же, если ты действительно хочешь это знать. Принеси мне 5 крыльев насекомых, которые я использую для создания зелья и может быть мы поговорим.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 20 + } + ], + "replies": [ + { + "text": "Я сделал это", + "nextPhraseID": "tharal_bonemeal3", + "requires": { + "item": { + "itemID": "insectwing", + "quantity": 5, + "requireType": 0 + } + } + }, + { + "text": "Хорошо", + "nextPhraseID": "X" + } + ] + }, + { + "id": "tharal_bonemeal3", + "message": "Спасибо парень. Я знал, что могу рассчитывать на тебя.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "tharal_bonemeal4" + } + ] + }, + { + "id": "tharal_bonemeal4", + "message": "Ах да, Костная мука. Смешанная с правильными компонентами она может быть одним из наиболее эффективных исцеляющих средств.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tharal_bonemeal5" + } + ] + }, + { + "id": "tharal_bonemeal5", + "message": "Раньше мы ее часто использовали. Но сейчас этот ублюдок, Лорд Геомир, запретил ее использование.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tharal_bonemeal6" + } + ] + }, + { + "id": "tharal_bonemeal6", + "message": "Как я должен лечить людей сейчас? Использовать обычные лечебные зелья? Черт, это так не эффективно.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tharal_bonemeal7" + } + ] + }, + { + "id": "tharal_bonemeal7", + "message": "Если ты заинтересован - я знаю, что кто-то до сих пор поставляет Костную муку. Иди и поговори с Форониром, священником в Фоллхейвене. Скажи ему пароль 'Сияние Тени'.", + "replies": [ + { + "text": "Спасибо, пока", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-ru/conversationlist_fallhaven.json b/AndorsTrail/res/raw-ru/conversationlist_fallhaven.json new file mode 100644 index 000000000..bcd96baa2 --- /dev/null +++ b/AndorsTrail/res/raw-ru/conversationlist_fallhaven.json @@ -0,0 +1,206 @@ +[ + { + "id": "fallhaven_citizen1", + "message": "Эй, привет. Хорошая погода, не так ли?", + "replies": [ + { + "text": "Брат", + "nextPhraseID": "fallhaven_andor_1" + } + ] + }, + { + "id": "fallhaven_citizen2", + "message": "Здрасть. Ты что-то хотел?", + "replies": [ + { + "text": "Брат", + "nextPhraseID": "fallhaven_andor_2" + } + ] + }, + { + "id": "fallhaven_citizen3", + "message": "Прив. Чем могу помочь?", + "replies": [ + { + "text": "Брат", + "nextPhraseID": "fallhaven_andor_3" + } + ] + }, + { + "id": "fallhaven_citizen4", + "message": "Ты, парень, из деревни Кроссглен, так?", + "replies": [ + { + "text": "Брат", + "nextPhraseID": "fallhaven_andor_4" + } + ] + }, + { + "id": "fallhaven_citizen5", + "message": "Прочь с дороги, крестьянин." + }, + { + "id": "fallhaven_citizen6", + "message": "Доброго дня вам.", + "replies": [ + { + "text": "Брат", + "nextPhraseID": "fallhaven_andor_6" + } + ] + }, + { + "id": "fallhaven_andor_1", + "message": "Нет, прости. я никого не видел в округе." + }, + { + "id": "fallhaven_andor_2", + "message": "Еще один пацан говоришь? Хм, дай подумать.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_andor_1" + } + ] + }, + { + "id": "fallhaven_andor_3", + "message": "Хм, я видел кого-то несколько дней назад. Но не могу вспомнить точно." + }, + { + "id": "fallhaven_andor_4", + "message": "Ах да, еще один парень из Кроссглена был здесь несколько дней назад. Не уверен что он подходит под описание.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_andor_4_1" + } + ] + }, + { + "id": "fallhaven_andor_4_1", + "message": "За ним следили какие-то темные люди. Больше ничего не видел." + }, + { + "id": "fallhaven_andor_6", + "message": "Неа. Не видел." + }, + { + "id": "fallhaven_guard", + "message": "Держись по дальше от проблем." + }, + { + "id": "fallhaven_priest", + "message": "Да прибудет с тобой Тень.", + "replies": [ + { + "text": "Тень", + "nextPhraseID": "priest_shadow_1" + } + ] + }, + { + "id": "priest_shadow_1", + "message": "Тень защищает нас. Тень оберегает нас когда мы спим.", + "replies": [ + { + "text": "N", + "nextPhraseID": "priest_shadow_2" + } + ] + }, + { + "id": "priest_shadow_2", + "message": "Она следует за нами куда бы мы не шли. Следуй с Тенью, сын мой.", + "replies": [ + { + "text": "Пока", + "nextPhraseID": "X" + }, + { + "text": "Все, до свидания", + "nextPhraseID": "X" + } + ] + }, + { + "id": "rigmor", + "message": "Ну привет! Маленький уродец.", + "replies": [ + { + "text": "Брат", + "nextPhraseID": "rigmor_1" + }, + { + "text": "Пока", + "nextPhraseID": "rigmor_leave_select" + } + ] + }, + { + "id": "rigmor_1", + "message": "Говоришь твой брат? Его зовут Эндор? Нет. Не встречала никого похожего.", + "replies": [ + { + "text": "Пока", + "nextPhraseID": "rigmor_leave_select" + } + ] + }, + { + "id": "rigmor_leave_select", + "replies": [ + { + "nextPhraseID": "rigmor_thanks", + "requires": { + "progress": "calomyran:100" + } + }, + { + "nextPhraseID": "X" + } + ] + }, + { + "id": "rigmor_thanks", + "message": "Я слышала, что вы помогли моему старику найди его книгу, спасибо. Он говорил об этой книге несколько недель. Бедняжка, у него тенденция забывать вещи.", + "replies": [ + { + "text": "Пока", + "nextPhraseID": "X" + }, + { + "text": "Не спускай с него глаз или с ним может случиться что-нибудь плохое.", + "nextPhraseID": "X" + }, + { + "text": "Все, что я сделал, я сделал только ради денег.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_clothes", + "message": "Приветствую в моём магазине. Пожалуйста оцени богатый выбор одежды и ювелирных изделий.", + "replies": [ + { + "text": "Торговать", + "nextPhraseID": "S" + } + ] + }, + { + "id": "fallhaven_potions", + "message": "Добро пожаловать в мой магазин. У меня широкий выбор зелий на все случаи жизни.", + "replies": [ + { + "text": "Торговать", + "nextPhraseID": "S" + } + ] + } +] diff --git a/AndorsTrail/res/raw-ru/conversationlist_fallhaven_arcir.json b/AndorsTrail/res/raw-ru/conversationlist_fallhaven_arcir.json new file mode 100644 index 000000000..f53548341 --- /dev/null +++ b/AndorsTrail/res/raw-ru/conversationlist_fallhaven_arcir.json @@ -0,0 +1,153 @@ +[ + { + "id": "arcir_start", + "message": "Здравствуйте. Я Арсир.", + "replies": [ + { + "text": "Элифара", + "nextPhraseID": "arcir_elythara_1", + "requires": { + "progress": "arcir:10" + } + }, + { + "text": "Книги", + "nextPhraseID": "arcir_books_1" + } + ] + }, + { + "id": "arcir_anythingelse", + "message": "Хотите узнать еще что нибудь?", + "replies": [ + { + "text": "Элифара", + "nextPhraseID": "arcir_elythara_1", + "requires": { + "progress": "arcir:10" + } + }, + { + "text": "Книги", + "nextPhraseID": "arcir_books_1" + } + ] + }, + { + "id": "arcir_elythara_1", + "message": "Вы, думаю, видели статую в подвале?\n\nДа, Элифара мой защитник.", + "replies": [ + { + "text": "Назад", + "nextPhraseID": "arcir_anythingelse" + } + ] + }, + { + "id": "arcir_books_1", + "message": "Я нахожу море удовольствия в своих книгах. В них накоплены знания многих поколений.", + "replies": [ + { + "text": "Секреты Каломирана", + "nextPhraseID": "arcir_calomyran_select", + "requires": { + "progress": "calomyran:10" + } + }, + { + "text": "Назад", + "nextPhraseID": "arcir_anythingelse" + } + ] + }, + { + "id": "arcir_calomyran_1", + "message": "'Секреты Каломирана'? Хм, да, я думаю, у меня есть одна в подвале.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_calomyran_2" + } + ] + }, + { + "id": "arcir_calomyran_2", + "message": "Старик Бенрадас приходил ко мне на прошлой неделе, хотел продать мне эту книгу. Поскольку это не совсем мой тип книги - я отказался.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_calomyran_3" + } + ] + }, + { + "id": "arcir_calomyran_3", + "message": "Казалось, он расстроен тем, что мне не нравится его книга, и бросил ее в меня, когда выскочил из дома.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_calomyran_4" + } + ] + }, + { + "id": "arcir_calomyran_4", + "message": "Бедный Бенрадас, он, вероятно, забыл, что оставил ее здесь. Он имеет тенденцию забывать вещи.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_anythingelse" + } + ] + }, + { + "id": "arcir_calomyran_5", + "message": "Ты спускался вниз, но не нашел ее? Говоришь записка? Я думаю кто-то был в моем доме.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_calomyran_6" + } + ] + }, + { + "id": "arcir_calomyran_select", + "replies": [ + { + "nextPhraseID": "arcir_calomyran_complete", + "requires": { + "progress": "calomyran:100" + } + }, + { + "nextPhraseID": "arcir_calomyran_5", + "requires": { + "progress": "calomyran:20" + } + }, + { + "nextPhraseID": "arcir_calomyran_1" + } + ] + }, + { + "id": "arcir_calomyran_complete", + "message": "Я слышал, ты нашел ее и отдал обратно старику Бенрадасу. Спасибо. Он имеет тенденцию забывать вещи.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_anythingelse" + } + ] + }, + { + "id": "arcir_calomyran_6", + "message": "Что сказано в записке?\n\nЛаркал.. Я так и знал. Вечно от него проблемы. Он, обычно, в амбаре на востоке от сюда.", + "replies": [ + { + "text": "Спасибо, пока", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-ru/conversationlist_fallhaven_athamyr.json b/AndorsTrail/res/raw-ru/conversationlist_fallhaven_athamyr.json new file mode 100644 index 000000000..10f736bed --- /dev/null +++ b/AndorsTrail/res/raw-ru/conversationlist_fallhaven_athamyr.json @@ -0,0 +1,115 @@ +[ + { + "id": "athamyr", + "message": "Следуй с Тенью.", + "replies": [ + { + "text": "Катакомбы", + "nextPhraseID": "athamyr_select", + "requires": { + "progress": "bucus:20" + } + } + ] + }, + { + "id": "athamyr_1", + "message": "Да, я спускался в катакомбы под церковью.", + "replies": [ + { + "text": "N", + "nextPhraseID": "athamyr_2" + } + ] + }, + { + "id": "athamyr_2", + "message": "Но я единственный, кто имеет право и мужество, чтобы войти туда.", + "replies": [ + { + "text": "Право?", + "nextPhraseID": "athamyr_3" + } + ] + }, + { + "id": "athamyr_3", + "message": "Хочешь спуститься в катакомбы? Хм, возможно мы сможем договориться.", + "replies": [ + { + "text": "N", + "nextPhraseID": "athamyr_4" + } + ] + }, + { + "id": "athamyr_4", + "message": "Принеси мне того, прекрасно приготовленного, мяса из таверны и ты получишь свое разрешение на вход в катакомбы под церковью.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 30 + } + ], + "replies": [ + { + "text": "Вот твое мясо", + "nextPhraseID": "athamyr_complete", + "requires": { + "item": { + "itemID": "meat_cooked", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Пока", + "nextPhraseID": "X" + } + ] + }, + { + "id": "athamyr_complete_2", + "message": "Спасибо за помощь. Я разрешаю тебе спуститься в катакомбы под Церковью.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 50 + } + ] + }, + { + "id": "athamyr_select", + "replies": [ + { + "nextPhraseID": "athamyr_complete_2", + "requires": { + "progress": "bucus:40" + } + }, + { + "nextPhraseID": "athamyr_1" + } + ] + }, + { + "id": "athamyr_complete", + "message": "Спасибо, это будет приятно.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "athamyr_complete_2" + } + ] + } +] diff --git a/AndorsTrail/res/raw-ru/conversationlist_fallhaven_bucus.json b/AndorsTrail/res/raw-ru/conversationlist_fallhaven_bucus.json new file mode 100644 index 000000000..b1a21605d --- /dev/null +++ b/AndorsTrail/res/raw-ru/conversationlist_fallhaven_bucus.json @@ -0,0 +1,236 @@ +[ + { + "id": "bucus_welcome", + "message": "Приветствую снова, добро пожаловать в... Ой погоди, я принял тебя за другово.", + "replies": [ + { + "text": "Брат", + "nextPhraseID": "bucus_andor_select" + }, + { + "text": "Гильдия Воров", + "nextPhraseID": "bucus_thieves_select" + } + ] + }, + { + "id": "bucus_andor_select", + "replies": [ + { + "nextPhraseID": "bucus_umar_1", + "requires": { + "progress": "bucus:100" + } + }, + { + "nextPhraseID": "bucus_andor_no_1" + } + ] + }, + { + "id": "bucus_andor_no_1", + "message": "Интересный, вопрос. И что если видел? Почему я должен говорить тебе?", + "replies": [ + { + "text": "N", + "nextPhraseID": "bucus_andor_no_2" + } + ] + }, + { + "id": "bucus_andor_no_2", + "message": "Нет, я не скажу тебе. Пожалуйста, отвали." + }, + { + "id": "bucus_thieves_select", + "replies": [ + { + "nextPhraseID": "bucus_thieves_complete_3", + "requires": { + "progress": "bucus:100" + } + }, + { + "nextPhraseID": "bucus_thieves_continue", + "requires": { + "progress": "bucus:10" + } + }, + { + "nextPhraseID": "bucus_thieves_select2" + } + ] + }, + { + "id": "bucus_thieves_select2", + "replies": [ + { + "nextPhraseID": "bucus_thieves_1", + "requires": { + "progress": "andor:40" + } + }, + { + "nextPhraseID": "bucus_thieves_no" + } + ] + }, + { + "id": "bucus_thieves_no", + "message": "Фх, что? Нет, я незнаю ничего об этом." + }, + { + "id": "bucus_umar_1", + "message": "Хорошо парень. Ты заслужил мое уважение. Да, я видел парня подходящего под описание, он пробегал здесь пару дней назад.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bucus_umar_2" + } + ] + }, + { + "id": "bucus_umar_2", + "message": "Я незнаю сколько он здесь пробыл. Но задавал он слишком много вопросов. Прям как ты. *хихикает*", + "replies": [ + { + "text": "N", + "nextPhraseID": "bucus_umar_3" + } + ] + }, + { + "id": "bucus_umar_3", + "message": "В любом случае, это все что я знаю. Тебе стоит поговорить с Умаром, возможно он знает больше. Он в люке, спускайся.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 50 + } + ], + "replies": [ + { + "text": "Хорошо, пока", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bucus_thieves_1", + "message": "Кто тебе это сказал? Аррргх.\n\nЛадно, ты нашел нас. И что теперь?", + "replies": [ + { + "text": "Вступить", + "nextPhraseID": "bucus_thieves_2" + } + ] + }, + { + "id": "bucus_thieves_2", + "message": "Хах! Вступить в гильдию воров?! Ты?!\n\nТы забавный парень.", + "replies": [ + { + "text": "Я серьезно!", + "nextPhraseID": "bucus_thieves_3" + }, + { + "text": "Пока", + "nextPhraseID": "bucus_thieves_3" + } + ] + }, + { + "id": "bucus_thieves_3", + "message": "Ладно, вот что я скажу тебе, парень. Выполни мое поручение и, возможно, я расскажу тебе больше.", + "replies": [ + { + "text": "Поручение?", + "nextPhraseID": "bucus_thieves_4" + }, + { + "text": "Пока", + "nextPhraseID": "bucus_thieves_4" + } + ] + }, + { + "id": "bucus_thieves_4", + "message": "Принеси мне ключ Лютора и тогда поговорим. Я ничего незнаю об этом ключе, но ходят слухи, что он находится где-то в катакомбах под Фоллхейвенской церковью.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 10 + } + ], + "replies": [ + { + "text": "Хорошо", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bucus_thieves_continue", + "message": "Как продвигаются поиски ключа Лютора?", + "replies": [ + { + "text": "Расскажи еще раз", + "nextPhraseID": "bucus_thieves_4" + }, + { + "text": "Я нашел его", + "nextPhraseID": "bucus_thieves_complete_1", + "requires": { + "item": { + "itemID": "key_luthor", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Пока", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bucus_thieves_complete_1", + "message": "Здорово, ты и в правду достал ключ Лютора? Я не думал что тебе это по силам.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 100 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "bucus_thieves_complete_2" + } + ] + }, + { + "id": "bucus_thieves_complete_2", + "message": "Ну что же парень.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bucus_thieves_complete_3" + } + ] + }, + { + "id": "bucus_thieves_complete_3", + "message": "Давай поговорим. Что ты хочешь узнать?", + "replies": [ + { + "text": "Брат", + "nextPhraseID": "bucus_umar_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw-ru/conversationlist_fallhaven_church.json b/AndorsTrail/res/raw-ru/conversationlist_fallhaven_church.json new file mode 100644 index 000000000..20cacc558 --- /dev/null +++ b/AndorsTrail/res/raw-ru/conversationlist_fallhaven_church.json @@ -0,0 +1,265 @@ +[ + { + "id": "chapelgoer", + "message": "Тень, обними меня." + }, + { + "id": "thoronir_default", + "message": "Грейся в Тени, сын мой.", + "replies": [ + { + "text": "Тень", + "nextPhraseID": "thoronir_shadow_1" + }, + { + "text": "Церковь", + "nextPhraseID": "thoronir_church_1" + }, + { + "text": "Торговать", + "nextPhraseID": "thoronir_trade_bonemeal", + "requires": { + "progress": "bonemeal:100" + } + } + ] + }, + { + "id": "thoronir_shadow_1", + "message": "Тень оберегает нас от опасностей ночи. Она бережет наш покой, пока мы спим.", + "replies": [ + { + "text": "Сияние Тени", + "nextPhraseID": "thoronir_tharal_select", + "requires": { + "progress": "bonemeal:30" + } + }, + { + "text": "Назад", + "nextPhraseID": "thoronir_default" + }, + { + "text": "Пока", + "nextPhraseID": "thoronir_default" + } + ] + }, + { + "id": "thoronir_church_1", + "message": "Это наша часовня богослужения в Фоллхейвене. Все общины обращаются к нам за поддержкой.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thoronir_church_2" + } + ] + }, + { + "id": "thoronir_church_2", + "message": "Эта церковь стоит уже сотни лет, и была сохранена в безопасности от расхитителей могил.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thoronir_church_3" + } + ] + }, + { + "id": "thoronir_tharal_select", + "replies": [ + { + "nextPhraseID": "thoronir_trade_bonemeal", + "requires": { + "progress": "bonemeal:100" + } + }, + { + "nextPhraseID": "thoronir_tharal_1" + } + ] + }, + { + "id": "thoronir_tharal_1", + "message": "Сияние Тени с нами, сын мой. Это мой старый друг Фарал из Кроссглена тебя послал?", + "replies": [ + { + "text": "Далее", + "nextPhraseID": "thoronir_tharal_2" + } + ] + }, + { + "id": "thoronir_church_3", + "message": "Катакомбы под церковью это последнее пристанище великих лидеров прошлого. Наш великий Лютор, по слухам, тоже там похоронен.", + "replies": [ + { + "text": "Войти", + "nextPhraseID": "thoronir_church_4", + "requires": { + "progress": "bucus:10" + } + }, + { + "text": "Назад", + "nextPhraseID": "thoronir_default" + } + ] + }, + { + "id": "thoronir_church_4", + "message": "Никому не дозволено входить в катакомбы, за исключением Афамира, моего ученика. Он единственный, кто был там за последние годы.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 20 + } + ], + "replies": [ + { + "text": "Назад", + "nextPhraseID": "thoronir_default" + } + ] + }, + { + "id": "thoronir_tharal_2", + "message": "Шшшшш, мы не должны говорить громко о Костной муке. Как ты знаешь, Лорд Геомир наложил запрет на ее использование.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thoronir_tharal_3" + } + ] + }, + { + "id": "thoronir_tharal_3", + "message": "Когда запрет пришел, я не посмел сохранить ни чего, так что я выбросил все. Довольно глупый поступок, когда я оглядываюсь на него.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thoronir_tharal_4" + } + ] + }, + { + "id": "thoronir_tharal_4", + "message": "Как думаешь, смог бы ты найти мне 5 костей скелета, которые я смогу использовать для смешивания зелья из Костной муки? Костная мука является очень мощным средством в исцелении старых ран.", + "replies": [ + { + "text": "Конечно", + "nextPhraseID": "thoronir_tharal_5" + }, + { + "text": "Готово!", + "nextPhraseID": "thoronir_tharal_complete", + "requires": { + "item": { + "itemID": "bone", + "quantity": 5, + "requireType": 0 + } + } + } + ] + }, + { + "id": "thoronir_tharal_5", + "message": "Спасибо тебе, возвращайся скорее. Я слышал, что некоторая нежить водится возле старого заброшенного дома, к северу от Фоллхейвена. Может быть, ты сможешь найти кости там?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 40 + } + ], + "replies": [ + { + "text": "Назад", + "nextPhraseID": "thoronir_default" + } + ] + }, + { + "id": "thoronir_tharal_complete", + "message": "Спасибо тебе, эти кости великолепны. Теперь я могу приступить к изготовлению зелья для тебя.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 100 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "thoronir_complete_2" + } + ] + }, + { + "id": "thoronir_complete_2", + "message": "Дай мне некоторое время на приготовление. Это очень мощное лечебное зелье." + }, + { + "id": "thoronir_trade_bonemeal", + "message": "Зелье из Костной муки готово. Пожалуйста, используйте его с осторожностью, и не позволяйте охранникам заметить вас. Нам, на самом деле, не разрешено использовать его.", + "replies": [ + { + "text": "Торговать", + "nextPhraseID": "S" + }, + { + "text": "Назад", + "nextPhraseID": "thoronir_default" + } + ] + }, + { + "id": "catacombguard", + "message": "Возвратись, пока еще можешь, смертный. Это не место для тебя. Здесь тебя ждет только смерть.", + "replies": [ + { + "text": "Уйти", + "nextPhraseID": "X" + }, + { + "text": "Продолжить", + "nextPhraseID": "catacombguard1" + }, + { + "text": " С Тенью, ты не остановишь меня.", + "nextPhraseID": "catacombguard1" + } + ] + }, + { + "id": "catacombguard1", + "message": "Нееет, ты не сможешь пройти!", + "replies": [ + { + "text": "В бой!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "luthor", + "message": "*хисссс* Что за смертный осмелился потревожить мой сон?", + "replies": [ + { + "text": "В бой!", + "nextPhraseID": "F" + }, + { + "text": "Наконец, достойный бой! Я ждал этого.", + "nextPhraseID": "F" + }, + { + "text": "Что ж, давай покончим с этим.", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-ru/conversationlist_fallhaven_drunk.json b/AndorsTrail/res/raw-ru/conversationlist_fallhaven_drunk.json new file mode 100644 index 000000000..b77b57b44 --- /dev/null +++ b/AndorsTrail/res/raw-ru/conversationlist_fallhaven_drunk.json @@ -0,0 +1,219 @@ +[ + { + "id": "fallhaven_drunk", + "message": "Нет проблем. Нет сееерр! Не причиняю больше никаких проблем. Я сижу здесь, снаружи.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_2" + } + ] + }, + { + "id": "fallhaven_drunk_2", + "message": "Подожди, кто ты такой? Ты из стражи?", + "replies": [ + { + "text": "Да", + "nextPhraseID": "fallhaven_drunk_3_1" + }, + { + "text": "Нет", + "nextPhraseID": "fallhaven_drunk_3_2" + } + ] + }, + { + "id": "fallhaven_drunk_3_1", + "message": "Ой, сэр. Я не причиняю больше проблем, видите? Сижу снаружи, как вы и сказали, хорошо?", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_4" + } + ] + }, + { + "id": "fallhaven_drunk_3_2", + "message": "Уфф, хорошо. Этот стражник вышвырнул меня из таверны. Если я его снова встречу, я покажу ему кузькину мать.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_4" + } + ] + }, + { + "id": "fallhaven_drunk_4", + "message": "Бухать, бухать, бухать с утра до ночи. Бухать, бухать .. Что, опять?", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_5" + } + ] + }, + { + "id": "fallhaven_drunk_5", + "message": "Ты что-то сказал? Ик... Где был? Ик.. Да, мы были в этом подземелье.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_6" + } + ] + }, + { + "id": "fallhaven_drunk_6", + "message": "Или это был дом? Ик... Я не помню.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_7" + } + ] + }, + { + "id": "fallhaven_drunk_7", + "message": "Нет нет, это было снаружи! Теперь я вспомнил.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_7_select" + } + ] + }, + { + "id": "fallhaven_drunk_7_select", + "replies": [ + { + "nextPhraseID": "fallhaven_drunk_11", + "requires": { + "progress": "fallhavendrunk:100" + } + }, + { + "nextPhraseID": "fallhaven_drunk_8" + } + ] + }, + { + "id": "fallhaven_drunk_8", + "message": "Вот где мы..\n\nЭй, куда делся мой эль? Достанешь его для меня?", + "replies": [ + { + "text": "Да", + "nextPhraseID": "fallhaven_drunk_9_1" + }, + { + "text": "Нет", + "nextPhraseID": "fallhaven_drunk_9_2" + } + ] + }, + { + "id": "fallhaven_drunk_9_1", + "message": "Верни мне его! Или иди и купи другой.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fallhavendrunk", + "value": 10 + } + ], + "replies": [ + { + "text": "Вот твой эль", + "nextPhraseID": "fallhaven_drunk_10", + "requires": { + "item": { + "itemID": "mead", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Пока", + "nextPhraseID": "X" + }, + { + "text": "Нет. Пожалуй, я не стану тебе помогать. Пока.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_drunk_9_2", + "message": "Я должен его выпить. Можешь принести еще один?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fallhavendrunk", + "value": 10 + } + ], + "replies": [ + { + "text": "Вот, держи", + "nextPhraseID": "fallhaven_drunk_10", + "requires": { + "item": { + "itemID": "mead", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Пока", + "nextPhraseID": "X" + }, + { + "text": "Нет. Пожалуй, я не стану тебе помогать. Пока.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_drunk_10", + "message": "О светлый напиток радости. Да прибудет ссс т-тобой теень парень. *делает большие глаза*", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_11" + } + ] + }, + { + "id": "fallhaven_drunk_11", + "message": "*делает большой глоток эля*\n\nЭто божественно!", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_12" + } + ] + }, + { + "id": "fallhaven_drunk_12", + "message": "Да, я и Унмир видели хорошие времена. Иди спроси его сам, он, как правило, в амбаре на востоке отсюда. Интересно, где сейчас эти сокровища.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fallhavendrunk", + "value": 100 + } + ], + "replies": [ + { + "text": "Пока", + "nextPhraseID": "X" + }, + { + "text": "Спасибо за историю. До свидания.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-ru/conversationlist_fallhaven_gaela.json b/AndorsTrail/res/raw-ru/conversationlist_fallhaven_gaela.json new file mode 100644 index 000000000..d32848fc5 --- /dev/null +++ b/AndorsTrail/res/raw-ru/conversationlist_fallhaven_gaela.json @@ -0,0 +1,84 @@ +[ + { + "id": "gaela", + "replies": [ + { + "nextPhraseID": "gaela_r", + "requires": { + "progress": "andor:40" + } + }, + { + "nextPhraseID": "gaela_0" + } + ] + }, + { + "id": "gaela_r", + "message": " Здравствуйте еще раз. Я надеюсь, что вы найдете то, что ищете." + }, + { + "id": "gaela_0", + "message": "Свифт - мой клинок. Отравленный моим языком. Или это было наоборот?", + "replies": [ + { + "text": "Воры", + "nextPhraseID": "gaela_1" + } + ] + }, + { + "id": "gaela_1", + "message": "Да, мы воры, имеем сильное влияние в Фоллхейвене.", + "replies": [ + { + "text": "Далее", + "nextPhraseID": "gaela_2", + "requires": { + "progress": "andor:30" + } + } + ] + }, + { + "id": "gaela_2", + "message": "Я слышал, что ты помог Груилу, представителю гильдии в Кроссглене.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gaela_3" + } + ] + }, + { + "id": "gaela_3", + "message": "Так же я слышал, что ты ищешь кого-то. Я мог бы тебе помочь.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gaela_4" + } + ] + }, + { + "id": "gaela_4", + "message": "Тебе нужно поговорить с Букусом в заброшенном доме немного юго-западней от сюда. Скажи ему ты хочешь узнать больше о Гильдии Воров.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 40 + } + ], + "replies": [ + { + "text": "Пасиб", + "nextPhraseID": "gaela_5" + } + ] + }, + { + "id": "gaela_5", + "message": "Считай, что это сделано в обмен твою на помощь Груилу." + } +] diff --git a/AndorsTrail/res/raw-ru/conversationlist_fallhaven_larcal.json b/AndorsTrail/res/raw-ru/conversationlist_fallhaven_larcal.json new file mode 100644 index 000000000..f1f1d4e75 --- /dev/null +++ b/AndorsTrail/res/raw-ru/conversationlist_fallhaven_larcal.json @@ -0,0 +1,85 @@ +[ + { + "id": "larcal", + "message": "У меня нет на тебя времени ,парень. Исчезни.", + "replies": [ + { + "text": "Секреты Каломирана", + "nextPhraseID": "larcal_1", + "requires": { + "progress": "calomyran:20" + } + } + ] + }, + { + "id": "larcal_1", + "message": "Ну и ну, что тут у нас? Ты намекаешь, что я был в подвале Арсира?", + "replies": [ + { + "text": "N", + "nextPhraseID": "larcal_2" + } + ] + }, + { + "id": "larcal_2", + "message": "Что же, может и был. Но книга все равно моя.", + "replies": [ + { + "text": "N", + "nextPhraseID": "larcal_3" + } + ] + }, + { + "id": "larcal_3", + "message": "Послушай, давай решим все мирно. Ты уходишь и забываешь об этой книге, и тогда ты еще поживешь.", + "replies": [ + { + "text": "Уйти", + "nextPhraseID": "larcal_4" + }, + { + "text": "Нет", + "nextPhraseID": "larcal_5" + } + ] + }, + { + "id": "larcal_4", + "message": "Хороший мальчик. А теперь проваливай." + }, + { + "id": "larcal_5", + "message": "Слушай, ты начинаешь раздражать меня пацан. Проваливай пока это еще возможно.", + "replies": [ + { + "text": "Уйти", + "nextPhraseID": "X" + }, + { + "text": "Только с книгой", + "nextPhraseID": "larcal_6" + } + ] + }, + { + "id": "larcal_6", + "message": "Ты все еще здесь? Хорошо, если тебе так нужна эта книга, то попробуй забрать ее у меня!", + "replies": [ + { + "text": "В бой!", + "nextPhraseID": "F" + }, + { + "text": "Уйти", + "nextPhraseID": "F" + }, + { + "text": " Очень хорошо. Я уйду.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-ru/conversationlist_fallhaven_nocmar.json b/AndorsTrail/res/raw-ru/conversationlist_fallhaven_nocmar.json new file mode 100644 index 000000000..dde115a8c --- /dev/null +++ b/AndorsTrail/res/raw-ru/conversationlist_fallhaven_nocmar.json @@ -0,0 +1,258 @@ +[ + { + "id": "nocmar", + "message": "Привет. Я Нокмар.", + "replies": [ + { + "text": "Торговать", + "nextPhraseID": "nocmar_trade_select" + }, + { + "text": "Унмир", + "nextPhraseID": "nocmar_quest_select", + "requires": { + "progress": "nocmar:10" + } + }, + { + "text": "Пока", + "nextPhraseID": "X" + } + ] + }, + { + "id": "nocmar_quest_select", + "replies": [ + { + "nextPhraseID": "nocmar_complete_5", + "requires": { + "progress": "nocmar:200" + } + }, + { + "nextPhraseID": "nocmar_continue", + "requires": { + "progress": "nocmar:20" + } + }, + { + "nextPhraseID": "nocmar_quest" + } + ] + }, + { + "id": "nocmar_trade_select", + "replies": [ + { + "nextPhraseID": "S", + "requires": { + "progress": "nocmar:200" + } + }, + { + "nextPhraseID": "nocmar_trade_1" + } + ] + }, + { + "id": "nocmar_trade_1", + "message": "Мне нечем торговать. Раньше у меня было много вещей на продажу, но в настоящее время мне не позволено продавать что-либо.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_trade_2" + } + ] + }, + { + "id": "nocmar_trade_2", + "message": "Я был одним из лучших кузнецов в Фоллхейвене. Затем этот ублюдок Лорд Геомир запретил мне использовать Сердечную сталь.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_trade_3" + } + ] + }, + { + "id": "nocmar_trade_3", + "message": "По его приказу, никому в Фоллхейвене не разрешается иметь оружие из сердечной стали. А так же продавать его.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_trade_4" + } + ] + }, + { + "id": "nocmar_trade_4", + "message": "Теперь я вынужден прятать то оружие, что у меня осталось. И не осмеливаюсь продать его кому-либо.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_trade_4_1" + } + ] + }, + { + "id": "nocmar_trade_4_1", + "message": "Я не видел сияния сердечной стали уже несколько лет, со времен указа Лорда Геомира.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_trade_5" + } + ] + }, + { + "id": "nocmar_trade_5", + "message": "Так что, к сожалению, я не могу продать вам ни одно из моих оружий." + }, + { + "id": "nocmar_quest", + "message": "Тебя послал Унмир? Я думаю, это должно быть важно.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nocmar", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_quest_1" + } + ] + }, + { + "id": "nocmar_quest_1", + "message": "Хорошо, это старое оружие потеряло внутреннее свечение, ведь оно не использовалось долгое время.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_quest_2" + } + ] + }, + { + "id": "nocmar_quest_2", + "message": "Что бы заставить его снова сиять нам нужен сердечный камень.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_quest_3" + } + ] + }, + { + "id": "nocmar_quest_3", + "message": "Годами мы бились с личами из Подземья. Я не представляю где сейчас на них охотятся.", + "replies": [ + { + "text": "Подземье?", + "nextPhraseID": "nocmar_quest_4" + } + ] + }, + { + "id": "nocmar_quest_4", + "message": "Подземье: пристанице потерянных душ. Отправляйся на юг в пещеры Гномов. Следуй на ужасный запах.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_quest_5" + } + ] + }, + { + "id": "nocmar_quest_5", + "message": "Опасайся Личей в Подземье, если они еще там. Эти твари могут убить итебя одним своим запахом." + }, + { + "id": "nocmar_continue", + "message": "Ты нашел Сердечный камень?", + "replies": [ + { + "text": "Да", + "nextPhraseID": "nocmar_complete", + "requires": { + "item": { + "itemID": "heartstone", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Камень?", + "nextPhraseID": "nocmar_quest_1" + }, + { + "text": "Еще нет", + "nextPhraseID": "nocmar_continue_2" + } + ] + }, + { + "id": "nocmar_continue_2", + "message": "Пожалуйста, продолжайте искать. Унмир, должно быть, планирует что-то важное для тебя." + }, + { + "id": "nocmar_complete", + "message": "О Тени! Ты и в правду добыл сердечный камень. Я и не думал что доживу до дня, когда снова смогу увидеть его.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nocmar", + "value": 200 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_complete_2" + } + ] + }, + { + "id": "nocmar_complete_2", + "message": "Видишь сияние? Оно буквально пульсирует.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_complete_3" + } + ] + }, + { + "id": "nocmar_complete_3", + "message": "Быстрее. Заставим оружие снова сиять.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_complete_4" + } + ] + }, + { + "id": "nocmar_complete_4", + "message": "*Нокмар кладет сердечный камень среди оружия из сердечной стали*", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_complete_5" + } + ] + }, + { + "id": "nocmar_complete_5", + "message": "Ты видишь это? Сердечная сталь снова сияет.", + "replies": [ + { + "text": "Торговать", + "nextPhraseID": "S" + } + ] + } +] diff --git a/AndorsTrail/res/raw-ru/conversationlist_fallhaven_oldman.json b/AndorsTrail/res/raw-ru/conversationlist_fallhaven_oldman.json new file mode 100644 index 000000000..32a312e28 --- /dev/null +++ b/AndorsTrail/res/raw-ru/conversationlist_fallhaven_oldman.json @@ -0,0 +1,151 @@ +[ + { + "id": "fallhaven_oldman", + "replies": [ + { + "nextPhraseID": "fallhaven_oldman_complete_2", + "requires": { + "progress": "calomyran:100" + } + }, + { + "nextPhraseID": "fallhaven_oldman_continue", + "requires": { + "progress": "calomyran:10" + } + }, + { + "nextPhraseID": "fallhaven_oldman_1" + } + ] + }, + { + "id": "fallhaven_oldman_1", + "message": "Не могли бы вы помочь старому человеку?", + "replies": [ + { + "text": "Конечно", + "nextPhraseID": "fallhaven_oldman_2" + }, + { + "text": "Пока", + "nextPhraseID": "fallhaven_oldman_2" + }, + { + "text": "Нет, я не хочу помогать старикам вроде тебя. Пока.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_oldman_2", + "message": "Я потерял очень важную, для меня, книгу.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_oldman_3" + } + ] + }, + { + "id": "fallhaven_oldman_3", + "message": "Я носил ее вчера с собой. А теперь не могу найти.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_oldman_4" + } + ] + }, + { + "id": "fallhaven_oldman_4", + "message": "Я никогда не теряю вещи! Я думаю ее кто-то украл у меня.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_oldman_5" + } + ] + }, + { + "id": "fallhaven_oldman_5", + "message": "Не могли бы вы поискать её? Она называется 'Секреты Каломирана'.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_oldman_6" + } + ] + }, + { + "id": "fallhaven_oldman_6", + "message": "Я не представляю где она может быть. Вам следует поговорить с Арсиром, он, кажется, очень любит книги. *указывает на дом на юге*", + "rewards": [ + { + "rewardType": 0, + "rewardID": "calomyran", + "value": 10 + } + ], + "replies": [ + { + "text": "Пока", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_oldman_continue", + "message": "Как продвигаются поиски моей книги? Она называется 'Секреты Каломирана'. Ты нашел ее?", + "replies": [ + { + "text": "Да", + "nextPhraseID": "fallhaven_oldman_complete", + "requires": { + "item": { + "itemID": "calomyran_secrets", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Нет", + "nextPhraseID": "fallhaven_oldman_6" + }, + { + "text": "Книга?", + "nextPhraseID": "fallhaven_oldman_2" + } + ] + }, + { + "id": "fallhaven_oldman_complete", + "message": "Моя книга! Спасибо тебе, спасибо! Где она была? Нет, не говори мне. Вот, возми несколько монет за беспокойство.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "calomyran", + "value": 100 + }, + { + "rewardType": 1, + "rewardID": "gold51" + } + ], + "replies": [ + { + "text": "Пока", + "nextPhraseID": "X" + }, + { + "text": " Наконец, немного золота. До свидания.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_oldman_complete_2", + "message": "Спасибо тебе большое за возвращение моей книги!" + } +] diff --git a/AndorsTrail/res/raw-ru/conversationlist_fallhaven_south.json b/AndorsTrail/res/raw-ru/conversationlist_fallhaven_south.json new file mode 100644 index 000000000..21639bba3 --- /dev/null +++ b/AndorsTrail/res/raw-ru/conversationlist_fallhaven_south.json @@ -0,0 +1,52 @@ +[ + { + "id": "fallhaven_lumberjack", + "message": "Привет, я Джакрар.", + "replies": [ + { + "text": "Бревна", + "nextPhraseID": "fallhaven_lumberjack_2" + } + ] + }, + { + "id": "fallhaven_lumberjack_2", + "message": "Да, я дровосек. Нужна отличная древесина? Я могу достать ее." + }, + { + "id": "alaun", + "message": "Привет. Я Алан. Чем могу помочь?", + "replies": [ + { + "text": "Брат", + "nextPhraseID": "alaun_2" + } + ] + }, + { + "id": "alaun_2", + "message": "Говориш ты ищешь своего брата? Похож на тебя? Хм.", + "replies": [ + { + "text": "N", + "nextPhraseID": "alaun_3" + } + ] + }, + { + "id": "alaun_3", + "message": "Нет, не могу никого вспомнить, подходящего под описание. Может стоит поискать его в Кроссглене, что на западе от сюда." + }, + { + "id": "fallhaven_farmer1", + "message": "Приветствую. Пожалуйста не отвлекай меня, у меня много работы." + }, + { + "id": "fallhaven_farmer2", + "message": "Привет. Не мог бы ты свалить отсюда? Я пытаюсь работать." + }, + { + "id": "khorand", + "message": "Эй, ты, не вздумай трогать ящики. Я слежу за тобой!" + } +] diff --git a/AndorsTrail/res/raw-ru/conversationlist_fallhaven_tavern.json b/AndorsTrail/res/raw-ru/conversationlist_fallhaven_tavern.json new file mode 100644 index 000000000..0e24515ab --- /dev/null +++ b/AndorsTrail/res/raw-ru/conversationlist_fallhaven_tavern.json @@ -0,0 +1,107 @@ +[ + { + "id": "bela", + "message": "Добро пожаловать в таверну Фоллхейвена. Присаживайтесь за любой столик.", + "replies": [ + { + "text": "Торговать", + "nextPhraseID": "S" + }, + { + "text": "Комната", + "nextPhraseID": "bela_room_select" + } + ] + }, + { + "id": "bela_room_1", + "message": "Комната стоит 10 золотых в сутки.", + "replies": [ + { + "text": "Я беру", + "nextPhraseID": "bela_room_2", + "requires": { + "item": { + "itemID": "gold", + "quantity": 10, + "requireType": 0 + } + } + }, + { + "text": "Назад", + "nextPhraseID": "bela" + } + ] + }, + { + "id": "bela_room_2", + "message": "Спасибо. Ваша комната последняя по коридору.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fallhaventavern", + "value": 10 + } + ], + "replies": [ + { + "text": "Назад", + "nextPhraseID": "bela" + }, + { + "text": "Пока", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bela_room_3", + "message": "Я надеюсь комната вас устроит. Это последняя комната по коридору.", + "replies": [ + { + "text": "Назад", + "nextPhraseID": "bela" + }, + { + "text": "Пока", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bela_room_select", + "replies": [ + { + "nextPhraseID": "bela_room_3", + "requires": { + "progress": "fallhaventavern:10" + } + }, + { + "nextPhraseID": "bela_room_1" + } + ] + }, + { + "id": "ganos", + "message": "YТы мне кого-то напоминаешь.", + "replies": [ + { + "text": "Торговать", + "nextPhraseID": "S" + }, + { + "text": "Гильдия Воров", + "nextPhraseID": "ganos_1", + "requires": { + "progress": "andor:30" + } + } + ] + }, + { + "id": "ganos_1", + "message": "Гильдия воров? Откуда мне знать? По-твоему я похож на вора?! Хрррф." + } +] diff --git a/AndorsTrail/res/raw-ru/conversationlist_fallhaven_unnmir.json b/AndorsTrail/res/raw-ru/conversationlist_fallhaven_unnmir.json new file mode 100644 index 000000000..8f2664c26 --- /dev/null +++ b/AndorsTrail/res/raw-ru/conversationlist_fallhaven_unnmir.json @@ -0,0 +1,174 @@ +[ + { + "id": "unnmir", + "replies": [ + { + "nextPhraseID": "unnmir_r", + "requires": { + "progress": "nocmar:10" + } + }, + { + "nextPhraseID": "unnmir_0" + } + ] + }, + { + "id": "unnmir_r", + "message": "Hello again. You should go talk to Nocmar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_13" + } + ] + }, + { + "id": "unnmir_0", + "message": "Эй, привет!", + "replies": [ + { + "text": "История пьяницы", + "nextPhraseID": "unnmir_1", + "requires": { + "progress": "fallhavendrunk:100" + } + } + ] + }, + { + "id": "unnmir_1", + "message": "Этот старый пьянчуга у таверны рассказал тебе историю, не так ли?", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_2" + } + ] + }, + { + "id": "unnmir_2", + "message": "Это старая история. Мы путешествовали вместе несколько лет назад.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_3" + } + ] + }, + { + "id": "unnmir_3", + "message": "Это были настоящие приключения, мечи и магия.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_4" + } + ] + }, + { + "id": "unnmir_4", + "message": "Но мы перестали. Незнаю почему, возможно мы просто устали от жизни в пути. Мы осели здесь, в Фоллхейвене.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_5" + } + ] + }, + { + "id": "unnmir_5", + "message": "Приятный маленьки городок. Только вот много воров вокруг, но меня они не беспокоят.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_6" + } + ] + }, + { + "id": "unnmir_6", + "message": "Ну, а какова твоя история, парень? Что ты забыл в Фоллхейвене?", + "replies": [ + { + "text": "Брат", + "nextPhraseID": "unnmir_7" + } + ] + }, + { + "id": "unnmir_7", + "message": "Да да, я видел его. Твой брат, наверно, спустился в какое-нибудь подземелье в поисках приключений. *закатыват глаза*", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_8" + } + ] + }, + { + "id": "unnmir_8", + "message": "Или отправился в один из больших городов на севере.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_9" + } + ] + }, + { + "id": "unnmir_9", + "message": "Не могу сказать, что я виню его за желание увидеть мир.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_10" + } + ] + }, + { + "id": "unnmir_10", + "message": "Эй, постой, ты тоже ищешь приключений?", + "replies": [ + { + "text": "Да", + "nextPhraseID": "unnmir_11" + }, + { + "text": "Нет, не ищу", + "nextPhraseID": "unnmir_12" + } + ] + }, + { + "id": "unnmir_11", + "message": "Мило. Я намекну тебе. *хихикает*. Найди Нокмара в западной части города. Скажи что я прислал тебя.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nocmar", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_13" + } + ] + }, + { + "id": "unnmir_12", + "message": "Умный выбор. Приключения оставляют много шрамов. Ты понимаешь о чем я." + }, + { + "id": "unnmir_13", + "message": "Его дом юго-западней таверны.", + "replies": [ + { + "text": "Пасиб", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-ru/conversationlist_fallhaven_unzel.json b/AndorsTrail/res/raw-ru/conversationlist_fallhaven_unzel.json new file mode 100644 index 000000000..e87e735df --- /dev/null +++ b/AndorsTrail/res/raw-ru/conversationlist_fallhaven_unzel.json @@ -0,0 +1,326 @@ +[ + { + "id": "unzel_1", + "message": "Привет. Я Унзел.", + "replies": [ + { + "text": "Лагерь", + "nextPhraseID": "unzel_2" + }, + { + "text": "Вакор", + "nextPhraseID": "unzel_3", + "requires": { + "progress": "vacor:40" + } + } + ] + }, + { + "id": "unzel_2", + "message": "а, это мой лагерь. Приятное местечко, не так ли?", + "replies": [ + { + "text": "Пока", + "nextPhraseID": "X" + } + ] + }, + { + "id": "unzel_3", + "message": "Тебя послал Вакор? Я понимал что рано или поздно он пришлет кого-нибудь.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_4" + } + ] + }, + { + "id": "unzel_4", + "message": "Ну что же. Убей меня если должен, или позволь мне рассказать свою сторону этой истории.", + "replies": [ + { + "text": "В бой!", + "nextPhraseID": "unzel_fight" + }, + { + "text": "История", + "nextPhraseID": "unzel_5" + } + ] + }, + { + "id": "unzel_fight", + "message": "Ну хорошо, начнем нашу битву.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 53 + } + ], + "replies": [ + { + "text": "В бой!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "unzel_5", + "message": "Спасибо за то что решил выслушать.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_10" + } + ] + }, + { + "id": "unzel_10", + "message": "Вакор и я путешествовали вместе. Но он стал одержим созданием заклинаний.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_11" + } + ] + }, + { + "id": "unzel_11", + "message": "Он начал интересоваться Тенью. Я знаю, что должен был попытаться остановить его.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_12" + } + ] + }, + { + "id": "unzel_12", + "message": "Я начал расспрашивать его о причине интереса, но он отмалчивался.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_13" + } + ] + }, + { + "id": "unzel_13", + "message": "Через некоторое время он стал одержим мыслью о Заклинании разрыва, говорил что оно дарует ему неограниченную силу против Тени.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_14" + } + ] + }, + { + "id": "unzel_14", + "message": "Было только одно, что я мог сделать. Я должен был оставить его и положить конец изготовлению Заклинания разрыва.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_15" + } + ] + }, + { + "id": "unzel_15", + "message": "Я послал несколько друзей забрать у него заклинание.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_16_select" + } + ] + }, + { + "id": "unzel_16_select", + "replies": [ + { + "nextPhraseID": "unzel_16_2", + "requires": { + "progress": "vacor:50" + } + }, + { + "nextPhraseID": "unzel_16_1" + } + ] + }, + { + "id": "unzel_16_1", + "message": "И вот мы здесь.", + "replies": [ + { + "text": "Бандиты", + "nextPhraseID": "unzel_17" + } + ] + }, + { + "id": "unzel_16_2", + "message": "И вот мы здесь.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_19" + } + ] + }, + { + "id": "unzel_17", + "message": "Что? Ты убил моих друзей? Ох, я чувствую как во мне закипает ярость.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_18" + } + ] + }, + { + "id": "unzel_18", + "message": "Но я понимаю, что это все дело рук Вакора. Я дам тебе выбор. Выбирай разумно.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_19" + } + ] + }, + { + "id": "unzel_19", + "message": "Или ты на стороне Вакора и его заклинания, или ты поможешь мне расквитаться с ним. Так на чьей ты стороне?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 50 + } + ], + "replies": [ + { + "text": "Я с тобой", + "nextPhraseID": "unzel_20" + }, + { + "text": "Вакор", + "nextPhraseID": "unzel_fight" + } + ] + }, + { + "id": "unzel_20", + "message": "Спасибо тебе, друг мой. Мы защитим Тень от Вакора.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 51 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_21" + } + ] + }, + { + "id": "unzel_21", + "message": "Ты должен поговорить с ним о Тени." + }, + { + "id": "unzel_return_1", + "message": "С возвращением. Ты поговорил с Вакором?", + "replies": [ + { + "text": "Да", + "nextPhraseID": "unzel_30", + "requires": { + "item": { + "itemID": "ring_vacor", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Вакор?", + "nextPhraseID": "X" + } + ] + }, + { + "id": "unzel_30", + "message": "Ты убил его? Прими мою благодарность, друг. Теперь мы в безопасности. Вот, Возми эти монеты за твою помощь.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 61 + }, + { + "rewardType": 1, + "rewardID": "gold200" + } + ], + "replies": [ + { + "text": "Пока", + "nextPhraseID": "X" + }, + { + "text": "Thank you.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "unzel_40", + "message": "Спасибо за помощь. Мы спасены от заклинания Вакора.", + "replies": [ + { + "text": "У меня есть послание для тебя от Каверина из Ремгарда", + "nextPhraseID": "unzel_msg1", + "requires": { + "progress": "kaverin:25", + "item": { + "itemID": "kaverin_message", + "quantity": 1, + "requireType": 1 + } + } + } + ] + }, + { + "id": "unzel", + "replies": [ + { + "nextPhraseID": "unzel_msg_r0", + "requires": { + "progress": "kaverin:30" + } + }, + { + "nextPhraseID": "unzel_40", + "requires": { + "progress": "vacor:61" + } + }, + { + "nextPhraseID": "unzel_return_1", + "requires": { + "progress": "vacor:51" + } + }, + { + "nextPhraseID": "unzel_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw-ru/conversationlist_fallhaven_vacor.json b/AndorsTrail/res/raw-ru/conversationlist_fallhaven_vacor.json new file mode 100644 index 000000000..70139120a --- /dev/null +++ b/AndorsTrail/res/raw-ru/conversationlist_fallhaven_vacor.json @@ -0,0 +1,604 @@ +[ + { + "id": "vacor", + "replies": [ + { + "nextPhraseID": "vacor_return_complete0", + "requires": { + "progress": "vacor:60" + } + }, + { + "nextPhraseID": "vacor_return2", + "requires": { + "progress": "vacor:40" + } + }, + { + "nextPhraseID": "vacor_42", + "requires": { + "progress": "vacor:30" + } + }, + { + "nextPhraseID": "vacor_select1" + } + ] + }, + { + "id": "vacor_select1", + "replies": [ + { + "nextPhraseID": "vacor_return1", + "requires": { + "progress": "vacor:20" + } + }, + { + "nextPhraseID": "vacor_begin" + } + ] + }, + { + "id": "vacor_begin", + "message": "Привет.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_2" + } + ] + }, + { + "id": "vacor_2", + "message": "Юный авантюрист? Хм. Возможно ты будешь мне полезен.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_3" + } + ] + }, + { + "id": "vacor_3", + "message": "Готов ли ты помочь мне?", + "replies": [ + { + "text": "Конечно", + "nextPhraseID": "vacor_4" + }, + { + "text": "Нет", + "nextPhraseID": "vacor_bah" + } + ] + }, + { + "id": "vacor_bah", + "message": "Черт, жалкое существо. Я знал, что не стоит тебя просить. А теперь оставь меня." + }, + { + "id": "vacor_4", + "message": "Долгое время, я работал над Заклинанием разрыва и много читал об этом.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_5" + } + ] + }, + { + "id": "vacor_5", + "message": "Заклинание могло открыть, так сказать, новые возможности.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_6" + } + ] + }, + { + "id": "vacor_6", + "message": "Эм, да, Заклинание разрыва открывает кое-что. Гм.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_7" + } + ] + }, + { + "id": "vacor_7", + "message": "Так что я усердно работал над получением последней части для него.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_8" + } + ] + }, + { + "id": "vacor_8", + "message": "Потом вдруг, банда головорезов пришла сюда и начала запугивать меня.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_9" + } + ] + }, + { + "id": "vacor_9", + "message": "Они сказали, что они посланники Тени, и настаивали, что бы я прекратил работу над заклинанием.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_10" + } + ] + }, + { + "id": "vacor_10", + "message": "Нелепо, не правда ли? Я был настолько близок к получению силы!", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_11" + } + ] + }, + { + "id": "vacor_11", + "message": "О, я мог бы быть сильным. Мое дорогое Заклинание.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_12" + } + ] + }, + { + "id": "vacor_12", + "message": "В любом случае, я как раз собирался закончить последнюю часть моего Заклинаниея разрыва, когда бандиты пришли и ограбили меня.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_13" + } + ] + }, + { + "id": "vacor_13", + "message": "Бандиты взяли мой рецепт для заклинания и скрылись, прежде чем я успел позвать стражу.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_14" + } + ] + }, + { + "id": "vacor_14", + "message": "Теперь я не могу вспомнить, последнюю его часть.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_15" + } + ] + }, + { + "id": "vacor_15", + "message": "Как вы думаете, могли бы помочь мне найти его? Тогда бы я наконец-то получил бы силу!", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_16" + } + ] + }, + { + "id": "vacor_16", + "message": "Вы, конечно же, будете соответствующим образом вознаграждены.", + "replies": [ + { + "text": "Я помогу", + "nextPhraseID": "vacor_17" + }, + { + "text": "Думаю нет", + "nextPhraseID": "vacor_17" + }, + { + "text": "Нет, спасибо, это похоже то, с чем бы я предпочел не связываться.", + "nextPhraseID": "vacor_bah" + } + ] + }, + { + "id": "vacor_17", + "message": "Я знал, что не стоило довер... Подождите, что? На самом деле вы сказали 'да'? Ха, ну и ну.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_18" + } + ] + }, + { + "id": "vacor_18", + "message": "Хорошо, найди четыре части моего Заклинания разрыва, что украли бандиты, и принеси их ко мне.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_19" + } + ] + }, + { + "id": "vacor_19", + "message": "Было четверо бандитов, и все они направились на юг от Фоллхейвена, после того как на меня напали.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_20" + } + ] + }, + { + "id": "vacor_20", + "message": "Вы должны отыскать четырех бандитов южнее Фоллхейвена.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_21" + } + ] + }, + { + "id": "vacor_21", + "message": "Пожалуйста поторопитесь! Мне так хочется открыть раскол .. Эм, я подразумеваю закончить заклинание. Ничего странного в этом, правда?" + }, + { + "id": "vacor_return1", + "message": "Снова здравствуйте. Как продвигаются поиски частей моего Заклинания разрыва?", + "replies": [ + { + "text": "Готово", + "nextPhraseID": "vacor_40", + "requires": { + "item": { + "itemID": "vacor_spell", + "quantity": 4, + "requireType": 0 + } + } + }, + { + "text": "Частей?", + "nextPhraseID": "vacor_18" + }, + { + "text": "Пока", + "nextPhraseID": "vacor_4" + } + ] + }, + { + "id": "vacor_40", + "message": "О, ты нашел все части? Скорее, Дай их мне.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_41" + } + ] + }, + { + "id": "vacor_41", + "message": "Да, это те самые, украденные, части.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_42" + } + ] + }, + { + "id": "vacor_42", + "message": "Теперь я должен закончить заклинание и открыть Теневой разлом .. эмм я имел в виду новые возможности. Да, именно это я и сказал.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_43" + } + ] + }, + { + "id": "vacor_43", + "message": "Есть одна проблемма, перед тем как я смогу продолжить работу над заклинанием, это мой глупый помошник Унзел.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_44" + } + ] + }, + { + "id": "vacor_44", + "message": "Унзел поступил ко мне в ученики уже очень давно. Но он начал меня раздражать своими вопросами и разговорами о морали.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_45" + } + ] + }, + { + "id": "vacor_45", + "message": "Он говорит что мое занятие заклинаниями нарушает волю Тени.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_46" + } + ] + }, + { + "id": "vacor_46", + "message": "Хах, Тень. Какую пользу мы когда-либо имели от Тени?", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_47" + } + ] + }, + { + "id": "vacor_47", + "message": "Я однажды закончу Заклинание разрыва и мы будем избавлены от Тени.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_48" + } + ] + }, + { + "id": "vacor_48", + "message": "В любом случае. Я чую что это Унзел натравил на меня тех бандитов, и если его не остановить возможны и другие проблеммы.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_49" + } + ] + }, + { + "id": "vacor_49", + "message": "Я хочу что бы ты нашел Унзела и убил его для меня. Возможно он сейчас где-то на юго-западе от Фоллхейвена.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_50" + } + ] + }, + { + "id": "vacor_50", + "message": "Принеси мне его перстень в качестве доказательства, что ты убил его.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_51" + } + ] + }, + { + "id": "vacor_51", + "message": "А теперь торопись, я не могу долго ждать. Сила должна быть МОЕЙ!" + }, + { + "id": "vacor_return2", + "message": "Снова здравствуйте. Как продвигается наше дело?", + "replies": [ + { + "text": "Унзел", + "nextPhraseID": "vacor_return2_2" + }, + { + "text": "Дело?", + "nextPhraseID": "vacor_43" + } + ] + }, + { + "id": "vacor_return2_2", + "message": "Ты убил Унзела? Принеси мне его перстень, когда убьешь.", + "replies": [ + { + "text": "Убил", + "nextPhraseID": "vacor_60", + "requires": { + "item": { + "itemID": "ring_unzel", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Shadow", + "nextPhraseID": "vacor_70", + "requires": { + "progress": "vacor:51" + } + } + ] + }, + { + "id": "vacor_60", + "message": "Уха-ха, Унзел мертв! Это исчадье морали!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 60 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_61" + } + ] + }, + { + "id": "vacor_61", + "message": "Я вижу кровь на твоих сапогах. Я надеюсь что ты убил и его приспешников.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_62" + } + ] + }, + { + "id": "vacor_62", + "message": "Это замечательный день. Скоро я получу силу!", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_63" + } + ] + }, + { + "id": "vacor_63", + "message": "Вот, возми эти монеты за твою помощь.", + "rewards": [ + { + "rewardType": 1, + "rewardID": "gold200" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_64" + } + ] + }, + { + "id": "vacor_64", + "message": "А теперь оставь меня, я должен подготовиться к созданию заклинания." + }, + { + "id": "vacor_return_complete0", + "replies": [ + { + "nextPhraseID": "vacor_msg_16", + "requires": { + "progress": "kaverin:90" + } + }, + { + "nextPhraseID": "vacor_msg_9", + "requires": { + "progress": "kaverin:75" + } + }, + { + "nextPhraseID": "vacor_msg1", + "requires": { + "progress": "kaverin:60", + "item": { + "itemID": "kaverin_message", + "quantity": 1, + "requireType": 1 + } + } + }, + { + "nextPhraseID": "vacor_return_complete" + } + ] + }, + { + "id": "vacor_return_complete", + "message": "Снова здравствуй, мой ассасин. Скоро я закончу свое Заклинание разрыва." + }, + { + "id": "vacor_70", + "message": "Что? Он поведал тебе историю? И ты конечно же поверил ему?", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_71" + } + ] + }, + { + "id": "vacor_71", + "message": "Я даю тебе один шанс. Или ты убиваешь Унзела и получаешь свои деньги. Или ты будешь иметь честь познать мою силу!", + "replies": [ + { + "text": "В бой!", + "nextPhraseID": "vacor_72" + }, + { + "text": "Уйти", + "nextPhraseID": "X" + } + ] + }, + { + "id": "vacor_72", + "message": "Ха, ничтожное создание. Я знал, что не стоит доверять тебе. Теперь ты умрешь вместе со своей драгоценной Тенью.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 54 + } + ], + "replies": [ + { + "text": "В бой!", + "nextPhraseID": "F" + }, + { + "text": "Тебя надо остановить.", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-ru/conversationlist_flagstone.json b/AndorsTrail/res/raw-ru/conversationlist_flagstone.json new file mode 100644 index 000000000..65bc09924 --- /dev/null +++ b/AndorsTrail/res/raw-ru/conversationlist_flagstone.json @@ -0,0 +1,586 @@ +[ + { + "id": "zombie1", + "message": "Свежее мясо!", + "replies": [ + { + "text": "В бой!", + "nextPhraseID": "F" + }, + { + "text": " Фу, что ты такое? Что за запах?", + "nextPhraseID": "F" + } + ] + }, + { + "id": "prisoner1", + "message": "Неееет, я больше не отправлюсь в тюрьму!", + "replies": [ + { + "text": "В бой!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "prisoner2", + "message": "Aaaa! Кто здесь? Я не отдамся в рабство!", + "replies": [ + { + "text": "В бой!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "flagstone_guard0", + "message": "О, еще один смертный. Приготовься пополнить собой ряды нежити!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "flagstone", + "value": 31 + } + ], + "replies": [ + { + "text": "В бой!", + "nextPhraseID": "F" + }, + { + "text": "Приготовься умереть еще раз.", + "nextPhraseID": "F" + } + ] + }, + { + "id": "flagstone_guard1", + "message": "Сдохни смертный!", + "replies": [ + { + "text": "В бой!", + "nextPhraseID": "F" + }, + { + "text": "Приготовься к встрече с моим мечом.", + "nextPhraseID": "F" + } + ] + }, + { + "id": "flagstone_guard2", + "message": "Что, здесь есть смертный которого не коснулась моя рука?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "flagstone", + "value": 50 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_guard2_2" + } + ] + }, + { + "id": "flagstone_guard2_2", + "message": "Ты, кажется, очень вкусный и мягкий, хочешь быть частью праздника?", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_guard2_3" + } + ] + }, + { + "id": "flagstone_guard2_3", + "message": "Да, я думаю, будешь. Моя армия нежити распространится далеко за пределы Флагстоуна, как только я разделаюсь с тобой.", + "replies": [ + { + "text": "В бой!", + "nextPhraseID": "F" + }, + { + "text": "Нет! Эта земля должна быть защищена от нежити!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "flagstone_sentry", + "replies": [ + { + "nextPhraseID": "flagstone_sentry_return4", + "requires": { + "progress": "flagstone:60" + } + }, + { + "nextPhraseID": "flagstone_sentry_return3", + "requires": { + "progress": "flagstone:40" + } + }, + { + "nextPhraseID": "flagstone_sentry_select0" + } + ] + }, + { + "id": "flagstone_sentry_select0", + "replies": [ + { + "nextPhraseID": "flagstone_sentry_return2", + "requires": { + "progress": "flagstone:30" + } + }, + { + "nextPhraseID": "flagstone_sentry_return1", + "requires": { + "progress": "flagstone:10" + } + }, + { + "nextPhraseID": "flagstone_sentry_1" + } + ] + }, + { + "id": "flagstone_sentry_1", + "message": "Стой! Кто здесь? Никто не смеет приближаться к Флагстоуну.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_2" + } + ] + }, + { + "id": "flagstone_sentry_2", + "message": "Тебе лучше вернуться назад, пока еще можешь.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_3" + } + ] + }, + { + "id": "flagstone_sentry_3", + "message": "Флагстоун был захвачен нежитью, и я стою здесь чтобы не дать нежити покинуть его.", + "replies": [ + { + "text": "Далее", + "nextPhraseID": "flagstone_sentry_4" + } + ] + }, + { + "id": "flagstone_sentry_4", + "message": "Флагстоун раньше был лагерем для беглых каторжников из Горы Галмор, когда там велись раскопки.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_5" + } + ] + }, + { + "id": "flagstone_sentry_5", + "message": "Но однажды раскопки прекратили и лагерь потерял смысл своего назначения.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_6" + } + ] + }, + { + "id": "flagstone_sentry_6", + "message": "Лорду в то время было плевать на заключенных, которые были в Флагстоуне, поэтому он оставил их там.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_7" + } + ] + }, + { + "id": "flagstone_sentry_7", + "message": "Надзиратель, оставшийся в Флагстоуне, был ответственным человеком и продолжал управлять лагерем так же, как и до закрытия каменоломни.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_8" + } + ] + }, + { + "id": "flagstone_sentry_8", + "message": "В течении многих лет, никто не обращал внимание на Флагстоун. За исключением отдельных докладов от путешественников, слышавших страшные крики исходящие из лагеря.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_9" + } + ] + }, + { + "id": "flagstone_sentry_9", + "message": "Вплоть до недавнего времени, когда произошло увеличение активности в Флагстоуне. Нежить начала появляться в больших количествах.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_10" + } + ] + }, + { + "id": "flagstone_sentry_10", + "message": "И вот я здесь. Мой долг охранять дороги от нежити, чтобы они не распространились на другие области, кроме Флагстоуна.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_11" + } + ] + }, + { + "id": "flagstone_sentry_11", + "message": "Таким образом, я бы посоветовал тебе оставить свое занятие, если не хочешь быть захвачен нежитью.", + "replies": [ + { + "text": "Расследование", + "nextPhraseID": "flagstone_sentry_12" + }, + { + "text": "Уйти", + "nextPhraseID": "X" + } + ] + }, + { + "id": "flagstone_sentry_12", + "message": "Ты действительно уверен, что хочешь пройти? Ну, хорошо.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_13" + } + ] + }, + { + "id": "flagstone_sentry_13", + "message": "Я не буду мешать тебе, но и горевать тоже не буду, если ты никогда не вернешся.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_14" + } + ] + }, + { + "id": "flagstone_sentry_14", + "message": "Продолжай свой путь. Дай мне знать, если чем-нибудь смогу помочь.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_15" + } + ] + }, + { + "id": "flagstone_sentry_15", + "message": "Возвращайся сюда, если тебе понадобится мой совет.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "flagstone", + "value": 10 + } + ], + "replies": [ + { + "text": "Уйти", + "nextPhraseID": "X" + } + ] + }, + { + "id": "flagstone_sentry_return1", + "message": "Снова здравствуй. Ты вошел в Флагстоун? Я удивлен что ты вернулся.", + "replies": [ + { + "text": "Флагстоун?", + "nextPhraseID": "flagstone_sentry_4" + }, + { + "text": "Демон", + "nextPhraseID": "flagstone_sentry_20", + "requires": { + "progress": "flagstone:20" + } + } + ] + }, + { + "id": "flagstone_sentry_20", + "message": "Стражник-демон говоришь? Это тревожные новости, так как это означает, что крупные силы стоят за всем этим.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_21" + } + ] + }, + { + "id": "flagstone_sentry_21", + "message": "Ты нашел бывшего старосту Флагстоуна? Надзиратель все время носил с собой ожерелье.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_22" + } + ] + }, + { + "id": "flagstone_sentry_22", + "message": "Он очень берёг его. Может быть, ожерелье являлось своего рода ключом?", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_23" + } + ] + }, + { + "id": "flagstone_sentry_23", + "message": "Если ты найдешь надзирателя и получишь ожерелье, то, пожалуйста, вернись сюда, и я помогу тебе расшифровать любое сообщение, которое, возможно, найдем на нем.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "flagstone", + "value": 30 + } + ], + "replies": [ + { + "text": "Нашел", + "nextPhraseID": "flagstone_sentry_40", + "requires": { + "item": { + "itemID": "necklace_flagstone", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Демон", + "nextPhraseID": "flagstone_sentry_20" + }, + { + "text": "Уйти", + "nextPhraseID": "X" + } + ] + }, + { + "id": "flagstone_sentry_return2", + "message": "Привет опять. Ты нашел бывшего надзирателя в Флагстоуне?", + "replies": [ + { + "text": "Надзиратель", + "nextPhraseID": "flagstone_sentry_23" + }, + { + "text": "Кого?", + "nextPhraseID": "flagstone_sentry_3" + } + ] + }, + { + "id": "flagstone_sentry_40", + "message": "Ты нашел ожерелье? Хорошо. Дай его мне.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "flagstone", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_41" + } + ] + }, + { + "id": "flagstone_sentry_41", + "message": "Давайка посмотрим. Ах да, как я и думал. Ожерелье содержит шифр.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_42" + } + ] + }, + { + "id": "flagstone_sentry_42", + "message": "'Дневная Тень'. Скорее всего так. Ты должен попробовать сказать эту фразу стражнику, возможно это пароль.", + "replies": [ + { + "text": "Уйти", + "nextPhraseID": "X" + } + ] + }, + { + "id": "flagstone_sentry_return3", + "message": "Привет привет. Как идут поиски источника нежити в Флагстоуне?", + "replies": [ + { + "text": "Никак", + "nextPhraseID": "flagstone_sentry_43" + } + ] + }, + { + "id": "flagstone_sentry_43", + "message": "Что же, продолжай искать. Возвращайся сюда, если тебе понадобится мой совет." + }, + { + "id": "flagstone_sentry_return4", + "message": "Привет привет. Кажется, что-то произошло во Флагстоуне, что-то, что сделало нежить слабее. Я уверен, что нужно поблагодарить тебя за это." + }, + { + "id": "narael", + "message": "Спасибо тебе, спасибо за освобождение меня от этого монстра.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_select" + } + ] + }, + { + "id": "narael_select", + "replies": [ + { + "nextPhraseID": "narael_9", + "requires": { + "progress": "flagstone:60" + } + }, + { + "nextPhraseID": "narael_1" + } + ] + }, + { + "id": "narael_1", + "message": "Я был в плену здесь так долго, что, кажется, прошла целая вечность.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_2" + } + ] + }, + { + "id": "narael_2", + "message": "Ах, что они сделали со мной. Большое вам спасибо за освобождение.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_3" + } + ] + }, + { + "id": "narael_3", + "message": "Я был одним из жителей Нора, и работал в каменоломнях Горы Галмор.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_4" + } + ] + }, + { + "id": "narael_4", + "message": "Но в один прекрасный день я захотел бросить работу и вернуться к моей жене.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_5" + } + ] + }, + { + "id": "narael_5", + "message": "Но офицер не позволил мне, и я был направлен в Флагстоун, как заключенный, за неподчинение приказам.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_6" + } + ] + }, + { + "id": "narael_6", + "message": "Если бы я только смог увидеть мою жену еще раз. Но вряд ли это получится, у меня не достаточно сил, даже чтобы покинуть это место.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_7" + } + ] + }, + { + "id": "narael_7", + "message": "Я думаю, что моя судьба погибнуть здесь. Но как свободный человек, по крайней мере.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_8" + } + ] + }, + { + "id": "narael_8", + "message": "Теперь оставь меня на едине с судьбой. У меня нет сил, чтобы покинуть это место.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "flagstone", + "value": 60 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_9" + } + ] + }, + { + "id": "narael_9", + "message": "Если встретишь мою жену Таурум в г.Нор, пожалуйста, скажи ей, что я жив и что я не забыл о ней.", + "replies": [ + { + "text": "Пока", + "nextPhraseID": "X" + }, + { + "text": "Хорошо, скажу. Да прибудет с тобой Тень.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw-ru/conversationlist_jan.json b/AndorsTrail/res/raw-ru/conversationlist_jan.json new file mode 100644 index 000000000..7c7c0c403 --- /dev/null +++ b/AndorsTrail/res/raw-ru/conversationlist_jan.json @@ -0,0 +1,350 @@ +[ + { + "id": "jan_start_select", + "replies": [ + { + "nextPhraseID": "jan_complete2", + "requires": { + "progress": "jan:100" + } + }, + { + "nextPhraseID": "jan_return", + "requires": { + "progress": "jan:10" + } + }, + { + "nextPhraseID": "jan_default" + } + ] + }, + { + "id": "jan_default", + "message": "Привет парень. Пожалуйста, оставь меня в моём трауре.", + "replies": [ + { + "text": "Что случилось?", + "nextPhraseID": "jan_default2" + }, + { + "text": "Хорошо, пока", + "nextPhraseID": "jan_default2" + }, + { + "text": "Ok, bye", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_default2", + "message": "Ох, это так грустно. Я не хочу говорить об этом.", + "replies": [ + { + "text": "Расскажи", + "nextPhraseID": "jan_default3" + }, + { + "text": "Хорошо, пока", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_default3", + "message": "Что-же, я думаю можно сказать тебе. Ты кажешся неплохим парнем.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default4" + } + ] + }, + { + "id": "jan_default4", + "message": "Я, мой друг Гандир и его друг Ирогот пришли сюда копать эту яму. Мы слышали что там было скрыто сокровище.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default5" + } + ] + }, + { + "id": "jan_default5", + "message": "Мы начали копать и, наконец, прорвались к системе пещер. Вот тогда мы и обнаружили их. Тварей и жуков.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default6" + } + ] + }, + { + "id": "jan_default6", + "message": "Ах эти твари. Черт сволочи. Чуть не убили меня.\n\nЯ и Гандир сказали Ироготу, что мы должны прервать раскопки, пока мы еще целы.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default7" + } + ] + }, + { + "id": "jan_default7", + "message": "Но Ирогот хотел идти глубже, в подземелье. Он и Гандир не смогли договориться и начали драться.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default8" + } + ] + }, + { + "id": "jan_default8", + "message": "Вот что случилось.\n\n*рыдает*\n\nАх, что мы наделали?", + "replies": [ + { + "text": "Далее", + "nextPhraseID": "jan_default9" + } + ] + }, + { + "id": "jan_default9", + "message": "Ирогот убил Гандира собственными руками. Видел бы ты огонь в его глазах. Казалось, он наслаждался.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default10" + } + ] + }, + { + "id": "jan_default10", + "message": "Я бежал и не осмелился вернуться туда из-за тварей и Ирогота.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default11" + } + ] + }, + { + "id": "jan_default11", + "message": "Чертов Ирогот. Если бы только я мог добраться до него. Я бы показал ему где раки зимуют.", + "replies": [ + { + "text": "Далее", + "nextPhraseID": "jan_default11_1" + } + ] + }, + { + "id": "jan_default11_1", + "message": "Думаешь сможешь помочь мне?", + "replies": [ + { + "text": "Я помогу", + "nextPhraseID": "jan_default12" + }, + { + "text": "Пока", + "nextPhraseID": "jan_default12" + }, + { + "text": "No thanks, I would rather not be involved in this. It sounds dangerous.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_default12", + "message": "Правда? Думаешь сможешь? Хм, может быть. Остерегайся тех жуков, они очень крепкие ублюдки.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "jan", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default13" + } + ] + }, + { + "id": "jan_default13", + "message": "Если ты и правда хочешь помочь, найди Ирогота в пещерах и верни мне кольцо Гандира.", + "replies": [ + { + "text": "Конечно", + "nextPhraseID": "jan_default14" + }, + { + "text": "История", + "nextPhraseID": "jan_background" + }, + { + "text": "Пока", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_default14", + "message": "Возвращайся когда закончишь. Верни мне кольцо Гандира. Забери его у Ирогота в пещерах.", + "replies": [ + { + "text": "Хорошо, пока", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_return", + "message": "Привет опять, парень. Ты нашел Ирогота в пещерах?", + "replies": [ + { + "text": "Еще нет", + "nextPhraseID": "jan_default14" + }, + { + "text": "История", + "nextPhraseID": "jan_background" + }, + { + "text": "Да", + "nextPhraseID": "jan_complete", + "requires": { + "item": { + "itemID": "ring_gandir", + "quantity": 1, + "requireType": 0 + } + } + } + ] + }, + { + "id": "jan_background", + "message": "Разве ты не слушал первый раз, когда я рассказывал тебе историю? Хочешь что бы я рассказал тебе её еще раз?", + "replies": [ + { + "text": "Да", + "nextPhraseID": "jan_default3" + }, + { + "text": "Нет", + "nextPhraseID": "jan_default4" + }, + { + "text": "Нет, не волнуйся, я все хорошо помню.", + "nextPhraseID": "jan_default14" + } + ] + }, + { + "id": "jan_complete2", + "message": "Спасибо за дело с Ироготом! Я твой вечный должник.", + "replies": [ + { + "text": "Пока", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_complete", + "message": "Постой! Ведь ты вошел туда и вернулся живым? Как тебе это удалось? Ничего себе, я чуть не умер от страха собираясь к этой пещере.\n\nО, спасибо тебе большое за возвращение мне кольца Гандира! Теперь у меня есть хоть что-то на память о нем.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "jan", + "value": 100 + } + ], + "replies": [ + { + "text": "Пока", + "nextPhraseID": "X" + }, + { + "text": "Да прибудет с тобой Тень. Прощай.", + "nextPhraseID": "X" + }, + { + "text": "Как бы то ни было, я сделал это только для трофея.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "irogotu", + "message": "Ну привет тебе. Неизвестный авантюрист. Это МОЯ ПЕЩЕРА. Сокровище будет МОЁ!", + "replies": [ + { + "text": "Гандир", + "nextPhraseID": "irogotu1", + "requires": { + "progress": "jan:10" + } + } + ] + }, + { + "id": "irogotu1", + "message": "Этот щенок Гандир? Он стоял у меня на пути. Я просто использовал его в качестве инструмента чтоб докопать до пещер.", + "replies": [ + { + "text": "N", + "nextPhraseID": "irogotu2" + } + ] + }, + { + "id": "irogotu2", + "message": "На самом деле я его никогда не любил.", + "replies": [ + { + "text": "Кольцо", + "nextPhraseID": "irogotu3" + }, + { + "text": "Jan упоминала что-то про кольцо?", + "nextPhraseID": "irogotu3" + } + ] + }, + { + "id": "irogotu3", + "message": "НЕТ! Ты не получишь его. Оно мое! А что касается тебя, парень, зачем ты пришел сюда и беспокоишь меня?!", + "replies": [ + { + "text": "Колечко", + "nextPhraseID": "irogotu4" + }, + { + "text": "Отдай мне это кольцо, и тогда, возможно, мы оба выйдем отсюда живыми.", + "nextPhraseID": "irogotu4" + } + ] + }, + { + "id": "irogotu4", + "message": "Нет. Если оно тебе так нужно попробуй забрать его силой, но я должен предупредить тебя - я очень силен. По этому я бы не советовал тебе тягаться со мной.", + "replies": [ + { + "text": "В бой!", + "nextPhraseID": "F" + }, + { + "text": "Уйти", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-ru/conversationlist_mikhail.json b/AndorsTrail/res/raw-ru/conversationlist_mikhail.json new file mode 100644 index 000000000..3593812fc --- /dev/null +++ b/AndorsTrail/res/raw-ru/conversationlist_mikhail.json @@ -0,0 +1,350 @@ +[ + { + "id": "mikhail_start_select", + "replies": [ + { + "nextPhraseID": "mikhail_start_select2", + "requires": { + "progress": "mikhail_bread:100" + } + }, + { + "nextPhraseID": "mikhail_bread_continue", + "requires": { + "progress": "mikhail_bread:10" + } + }, + { + "nextPhraseID": "mikhail_start_select2" + } + ] + }, + { + "id": "mikhail_start_select2", + "replies": [ + { + "nextPhraseID": "mikhail_start_select_default", + "requires": { + "progress": "mikhail_rats:100" + } + }, + { + "nextPhraseID": "mikhail_rats_continue", + "requires": { + "progress": "mikhail_rats:10" + } + }, + { + "nextPhraseID": "mikhail_start_select_default" + } + ] + }, + { + "id": "mikhail_start_select_default", + "replies": [ + { + "nextPhraseID": "mikhail_visited", + "requires": { + "progress": "andor:1" + } + }, + { + "nextPhraseID": "mikhail_gamestart" + } + ] + }, + { + "id": "mikhail_gamestart", + "message": "Отлично, ты проснулся.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_visited" + } + ] + }, + { + "id": "mikhail_visited", + "message": "Я нигде не могу найти твоего брата. Он не вернулся, с тех пор как ушел вчера.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 1 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail3" + } + ] + }, + { + "id": "mikhail3", + "message": "Неважно, он, наверное, скоро вернется.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_default", + "message": "Можешь мне помочь кое в чем?", + "replies": [ + { + "text": "Помощь", + "nextPhraseID": "mikhail_tasks" + }, + { + "text": "Брат", + "nextPhraseID": "mikhail_andor1" + } + ] + }, + { + "id": "mikhail_tasks", + "message": "О да, есть некоторые вещи в которых мне нужна помощь.", + "replies": [ + { + "text": "Хлеб", + "nextPhraseID": "mikhail_bread_select" + }, + { + "text": "Крысы", + "nextPhraseID": "mikhail_rats_select" + }, + { + "text": "Назад", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_andor1", + "message": "Как я говорил, Эндор ушел вчера и до сих пор не вернулся. Я начинаю беспокоиться за него. Пожалуйста, иди и поищи своего брата, он сказал что скоро вернется.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_andor2" + } + ] + }, + { + "id": "mikhail_andor2", + "message": "Может он снова отправился в пещеры и потерялся. Или он в подвале у Леты снова тренируется со своим деревянным мечом. Пожалуйста, поищи его в городе.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_bread_select", + "replies": [ + { + "nextPhraseID": "mikhail_bread_complete2", + "requires": { + "progress": "mikhail_bread:100" + } + }, + { + "nextPhraseID": "mikhail_bread_continue", + "requires": { + "progress": "mikhail_bread:10" + } + }, + { + "nextPhraseID": "mikhail_bread_start" + } + ] + }, + { + "id": "mikhail_bread_start", + "message": "Ой, я совсем забыл. Если у тебя есть время, пожалуйста найди Мару в ратуше и купи мне немного хлеба.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "mikhail_bread", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_bread_continue", + "message": "Ты купил хлеб у Мары в ратуше, о котором я просил?", + "replies": [ + { + "text": "Да, вот", + "nextPhraseID": "mikhail_bread_complete", + "requires": { + "item": { + "itemID": "bread", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Нет еще", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_bread_complete", + "message": "Большое спасибо, теперь я смогу позавтракать. Вот, возми несколько монет за твою помощь.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "mikhail_bread", + "value": 100 + }, + { + "rewardType": 1, + "rewardID": "gold20" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_bread_complete2", + "message": "Спасибо, еще раз, за хлеб.", + "replies": [ + { + "text": "Пожалуйста", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_rats_select", + "replies": [ + { + "nextPhraseID": "mikhail_rats_complete2", + "requires": { + "progress": "mikhail_rats:100" + } + }, + { + "nextPhraseID": "mikhail_rats_continue", + "requires": { + "progress": "mikhail_rats:10" + } + }, + { + "nextPhraseID": "mikhail_rats_start" + } + ] + }, + { + "id": "mikhail_rats_start", + "message": "Я видел несколько крыс в огороде. Не мог бы ты поискать их? Пожалуйста, убей всех крыс, которых увидишь.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "mikhail_rats", + "value": 10 + } + ], + "replies": [ + { + "text": "Готово", + "nextPhraseID": "mikhail_rats_complete", + "requires": { + "item": { + "itemID": "tail_trainingrat", + "quantity": 2, + "requireType": 0 + } + } + }, + { + "text": "Конечно", + "nextPhraseID": "mikhail_rats_start2" + } + ] + }, + { + "id": "mikhail_rats_start2", + "message": "Если пострадаешь от крыс, то возвращайся и отдохни в кровати. Это поможет восстановить силы.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_rats_start3" + } + ] + }, + { + "id": "mikhail_rats_start3", + "message": "Так же не забудь проверить свой инвентарь. У тебя, наверное, еще сохранилось кольцо, которое я тебе подарил. Убедись что надел его.", + "replies": [ + { + "text": "Хорошо", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_rats_continue", + "message": "Ты убил крыс в огороде?", + "replies": [ + { + "text": "Да", + "nextPhraseID": "mikhail_rats_complete", + "requires": { + "item": { + "itemID": "tail_trainingrat", + "quantity": 2, + "requireType": 0 + } + } + }, + { + "text": "Еще нет", + "nextPhraseID": "mikhail_rats_start2" + } + ] + }, + { + "id": "mikhail_rats_complete", + "message": "Вау, Спасибо за твою помощь!\n\nЕсли устал, используй кровать для отдыха. Это поможет восстановить твои силы.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "mikhail_rats", + "value": 100 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_rats_complete2", + "message": "Спасибо, еще раз, за помощь с крысами.\n\nЕсли устал, используй кровать для отдыха. Это поможет восстановить твои силы.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + } +] diff --git a/AndorsTrail/res/raw-ru/conversationlist_wilderness.json b/AndorsTrail/res/raw-ru/conversationlist_wilderness.json new file mode 100644 index 000000000..b4d9c5202 --- /dev/null +++ b/AndorsTrail/res/raw-ru/conversationlist_wilderness.json @@ -0,0 +1,74 @@ +[ + { + "id": "fallhaven_bandit", + "message": "Исчезни пацан. У меня нет на тебя времени.", + "replies": [ + { + "text": "Заклинание разрыва", + "nextPhraseID": "fallhaven_bandit_2", + "requires": { + "progress": "vacor:20" + } + } + ] + }, + { + "id": "fallhaven_bandit_2", + "message": "Нет! Вакор не получит силу заклинания разрыва!", + "replies": [ + { + "text": "В бой!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "bandit1", + "message": "Что у нас здесь? Потерявшийся странник?", + "replies": [ + { + "text": "N", + "nextPhraseID": "bandit1_2" + } + ] + }, + { + "id": "bandit1_2", + "message": "Сколько стоит твоя жизнь? Гони 100 золотых и я позволю тебе уйти.", + "replies": [ + { + "text": "Вот, возмите", + "nextPhraseID": "bandit1_3", + "requires": { + "item": { + "itemID": "gold", + "quantity": 100, + "requireType": 0 + } + } + }, + { + "text": "Нет", + "nextPhraseID": "bandit1_4" + }, + { + "text": "А сколько стоит твоя?", + "nextPhraseID": "bandit1_4" + } + ] + }, + { + "id": "bandit1_3", + "message": "Проклятое время. Можешь идти." + }, + { + "id": "bandit1_4", + "message": "Ну что же, это твоя жизнь. Давай сразимся. Я в предвкушении хорошей драки!", + "replies": [ + { + "text": "В бой!", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw-ru/itemlist_animal.json b/AndorsTrail/res/raw-ru/itemlist_animal.json new file mode 100644 index 000000000..460cc31fb --- /dev/null +++ b/AndorsTrail/res/raw-ru/itemlist_animal.json @@ -0,0 +1,58 @@ +[ + { + "id": "hair", + "iconID": "items_misc:48", + "name": "Шерсть животного", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "insectwing", + "iconID": "items_misc:52", + "name": "Крыло насекомого", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 3 + }, + { + "id": "bone", + "iconID": "items_misc:44", + "name": "Кость", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "claws", + "iconID": "items_misc:47", + "name": "Коготь", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "shell", + "iconID": "items_misc:54", + "name": "Оболочка насекомого", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "gland", + "iconID": "actorconditions_1:60", + "name": "Ядовитая железа", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 15 + }, + { + "id": "rat_tail", + "iconID": "items_misc:38", + "name": "Хвост крысы", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 2 + } +] diff --git a/AndorsTrail/res/raw-ru/itemlist_armour.json b/AndorsTrail/res/raw-ru/itemlist_armour.json new file mode 100644 index 000000000..2d63344ec --- /dev/null +++ b/AndorsTrail/res/raw-ru/itemlist_armour.json @@ -0,0 +1,260 @@ +[ + { + "id": "shirt1", + "iconID": "items_armours:14", + "name": "Хлопковая рубаха", + "category": "bdy_clth", + "baseMarketCost": 16, + "equipEffect": { + "increaseBlockChance": 2 + } + }, + { + "id": "shirt2", + "iconID": "items_armours:14", + "name": "Первоклассная рубаха", + "category": "bdy_clth", + "baseMarketCost": 72, + "equipEffect": { + "increaseBlockChance": 5 + } + }, + { + "id": "shirt_dmgresist", + "iconID": "items_armours:15", + "name": "Рубаха из грубой кожи", + "category": "bdy_lthr", + "displaytype": 4, + "baseMarketCost": 1633, + "equipEffect": { + "increaseBlockChance": 5, + "increaseDamageResistance": 1 + } + }, + { + "id": "armor1", + "iconID": "items_armours:15", + "name": "Кожаная броня", + "category": "bdy_lthr", + "baseMarketCost": 464, + "equipEffect": { + "increaseBlockChance": 8 + } + }, + { + "id": "armor2", + "iconID": "items_armours:15", + "name": "Превосходная кожаная броня", + "category": "bdy_lthr", + "baseMarketCost": 624, + "equipEffect": { + "increaseBlockChance": 9 + } + }, + { + "id": "armor3", + "iconID": "items_armours:16", + "name": "Жесткая кожаная броня", + "category": "bdy_lthr", + "baseMarketCost": 2407, + "equipEffect": { + "increaseBlockChance": 13 + } + }, + { + "id": "armor4", + "iconID": "items_armours:16", + "name": "Превосходная жесткая кожаная броня", + "category": "bdy_lthr", + "baseMarketCost": 3866, + "equipEffect": { + "increaseBlockChance": 15 + } + }, + { + "id": "hat1", + "iconID": "items_armours:21", + "name": "Зеленая шапка", + "category": "hd_cloth", + "baseMarketCost": 13, + "equipEffect": { + "increaseBlockChance": 1 + } + }, + { + "id": "hat2", + "iconID": "items_armours:21", + "name": "Первоклассная зеленая шапка", + "category": "hd_cloth", + "baseMarketCost": 25, + "equipEffect": { + "increaseBlockChance": 2 + } + }, + { + "id": "hat3", + "iconID": "items_armours:24", + "name": "Скверная кожаная шапка", + "category": "hd_lthr", + "baseMarketCost": 72, + "equipEffect": { + "increaseBlockChance": 5 + } + }, + { + "id": "hat4", + "iconID": "items_armours:24", + "name": "Шапка из кожи", + "category": "hd_lthr", + "baseMarketCost": 146, + "equipEffect": { + "increaseBlockChance": 6 + } + }, + { + "id": "gloves1", + "iconID": "items_armours:35", + "name": "Кожаные перчатки", + "category": "hnd_lthr", + "baseMarketCost": 23, + "equipEffect": { + "increaseBlockChance": 3 + } + }, + { + "id": "gloves2", + "iconID": "items_armours:35", + "name": "Первоклассные кожаные перчатки", + "category": "hnd_lthr", + "baseMarketCost": 38, + "equipEffect": { + "increaseBlockChance": 4 + } + }, + { + "id": "gloves3", + "iconID": "items_armours:36", + "name": "Перчатки из змеиной кожи", + "category": "hnd_cloth", + "baseMarketCost": 72, + "equipEffect": { + "increaseBlockChance": 5 + } + }, + { + "id": "gloves4", + "iconID": "items_armours:36", + "name": "Первоклассные перчатки из змеиной кожи", + "category": "hnd_cloth", + "baseMarketCost": 146, + "equipEffect": { + "increaseBlockChance": 6 + } + }, + { + "id": "shield1", + "iconID": "items_armours:0", + "name": "Деревянный круглый щит", + "category": "buckler", + "baseMarketCost": 72, + "equipEffect": { + "increaseAttackChance": -2, + "increaseBlockChance": 5 + } + }, + { + "id": "shield3", + "iconID": "items_armours:1", + "name": "Усиленный деревянный круглый щит", + "category": "buckler", + "baseMarketCost": 226, + "equipEffect": { + "increaseAttackChance": -5, + "increaseBlockChance": 7 + } + }, + { + "id": "shield4", + "iconID": "items_armours:2", + "name": "Скверный деревянный щит", + "category": "shld_wd_li", + "baseMarketCost": 464, + "equipEffect": { + "increaseAttackChance": -5, + "increaseBlockChance": 8 + } + }, + { + "id": "shield5", + "iconID": "items_armours:2", + "name": "Превосходный деревянный щит", + "category": "shld_wd_li", + "baseMarketCost": 624, + "equipEffect": { + "increaseAttackChance": -4, + "increaseBlockChance": 9 + } + }, + { + "id": "boots1", + "iconID": "items_armours:28", + "name": "Кожаные сапоги", + "category": "feet_lthr", + "baseMarketCost": 23, + "equipEffect": { + "increaseBlockChance": 3 + } + }, + { + "id": "boots2", + "iconID": "items_armours:28", + "name": "Превосходные кожаные сапоги", + "category": "feet_lthr", + "baseMarketCost": 38, + "equipEffect": { + "increaseBlockChance": 4 + } + }, + { + "id": "boots3", + "iconID": "items_armours:29", + "name": "Сапоги из змеиной кожи", + "category": "feet_lthr", + "baseMarketCost": 146, + "equipEffect": { + "increaseBlockChance": 6 + } + }, + { + "id": "boots5", + "iconID": "items_armours:30", + "name": "Усиленные сапоги", + "category": "feet_mtl_hv", + "baseMarketCost": 226, + "equipEffect": { + "increaseBlockChance": 7 + } + }, + { + "id": "gloves_attack1", + "iconID": "items_armours:35", + "name": "Перчатки быстрой атаки", + "category": "hnd_lthr", + "baseMarketCost": 150, + "equipEffect": { + "increaseAttackChance": 15, + "increaseBlockChance": -9 + } + }, + { + "id": "gloves_attack2", + "iconID": "items_armours:35", + "name": "Первоклассные перчатки быстрой атаки", + "category": "hnd_lthr", + "baseMarketCost": 221, + "equipEffect": { + "increaseAttackChance": 17, + "increaseBlockChance": -9 + } + } +] diff --git a/AndorsTrail/res/raw-ru/itemlist_food.json b/AndorsTrail/res/raw-ru/itemlist_food.json new file mode 100644 index 000000000..38701979f --- /dev/null +++ b/AndorsTrail/res/raw-ru/itemlist_food.json @@ -0,0 +1,206 @@ +[ + { + "id": "apple_green", + "iconID": "items_consumables:2", + "name": "Зеленое яблоко", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 14, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 8, + "chance": 100 + } + ] + } + }, + { + "id": "apple_red", + "iconID": "items_consumables:3", + "name": "Красное яблоко", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 22, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 12, + "chance": 100 + } + ] + } + }, + { + "id": "meat", + "iconID": "items_consumables:25", + "name": "Мясо", + "category": "animal_e", + "hasManualPrice": 1, + "baseMarketCost": 29, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 2, + "duration": 12, + "chance": 100 + }, + { + "condition": "foodp", + "magnitude": 3, + "duration": 10, + "chance": 10 + } + ] + } + }, + { + "id": "meat_cooked", + "iconID": "items_consumables:27", + "name": "Приготовленное мясо", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 78, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 3, + "duration": 11, + "chance": 100 + } + ] + } + }, + { + "id": "strawberry", + "iconID": "items_consumables:8", + "name": "Клубника", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 3, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 2, + "chance": 100 + } + ] + } + }, + { + "id": "carrot", + "iconID": "items_consumables:15", + "name": "Морковь", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 14, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 8, + "chance": 100 + } + ] + } + }, + { + "id": "bread", + "iconID": "items_consumables:21", + "name": "Хлеб", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 6, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 10, + "chance": 100 + } + ] + } + }, + { + "id": "mushroom", + "iconID": "items_consumables:19", + "name": "Гриб", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 3, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 2, + "chance": 100 + } + ] + } + }, + { + "id": "pear", + "iconID": "items_consumables:9", + "name": "Груша", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 14, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 8, + "chance": 100 + } + ] + } + }, + { + "id": "eggs", + "iconID": "items_consumables:20", + "name": "Яйца", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 10, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 6, + "chance": 100 + } + ] + } + }, + { + "id": "radish", + "iconID": "items_consumables:14", + "name": "Редиска", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 6, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 4, + "chance": 100 + } + ] + } + } +] diff --git a/AndorsTrail/res/raw-ru/itemlist_junk.json b/AndorsTrail/res/raw-ru/itemlist_junk.json new file mode 100644 index 000000000..7cf16ac0e --- /dev/null +++ b/AndorsTrail/res/raw-ru/itemlist_junk.json @@ -0,0 +1,50 @@ +[ + { + "id": "rock", + "iconID": "items_misc:28", + "name": "Камушек", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 1 + }, + { + "id": "gem1", + "iconID": "items_misc:0", + "name": "Стекляшка", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "gem2", + "iconID": "items_misc:1", + "name": "Самоцвет", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 6 + }, + { + "id": "gem3", + "iconID": "items_misc:2", + "name": "Полированный самоцвет", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 8 + }, + { + "id": "gem4", + "iconID": "items_misc:3", + "name": "Ограненный камень", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 13 + }, + { + "id": "gem5", + "iconID": "items_misc:5", + "name": "Полированный сверкающий камень", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 15 + } +] diff --git a/AndorsTrail/res/raw-ru/itemlist_money.json b/AndorsTrail/res/raw-ru/itemlist_money.json new file mode 100644 index 000000000..8267cdd1c --- /dev/null +++ b/AndorsTrail/res/raw-ru/itemlist_money.json @@ -0,0 +1,10 @@ +[ + { + "id": "gold", + "iconID": "items_misc:10", + "name": "Золото", + "category": "money", + "hasManualPrice": 1, + "baseMarketCost": 1 + } +] diff --git a/AndorsTrail/res/raw-ru/itemlist_necklaces.json b/AndorsTrail/res/raw-ru/itemlist_necklaces.json new file mode 100644 index 000000000..846dfded8 --- /dev/null +++ b/AndorsTrail/res/raw-ru/itemlist_necklaces.json @@ -0,0 +1,35 @@ +[ + { + "id": "jewel_fallhaven", + "iconID": "items_jewelry:6", + "name": "Драгоценность Фоллхейвена", + "category": "neck", + "displaytype": 4, + "baseMarketCost": 3125, + "equipEffect": { + "increaseAttackCost": -1 + } + }, + { + "id": "necklace_shield1", + "iconID": "items_jewelry:7", + "name": "Ожерелье стражника", + "category": "neck", + "displaytype": 4, + "baseMarketCost": 935, + "equipEffect": { + "increaseBlockChance": 9 + } + }, + { + "id": "necklace_shield2", + "iconID": "items_jewelry:7", + "name": "Защитное ожерелье", + "category": "neck", + "displaytype": 4, + "baseMarketCost": 1255, + "equipEffect": { + "increaseBlockChance": 12 + } + } +] diff --git a/AndorsTrail/res/raw-ru/itemlist_potions.json b/AndorsTrail/res/raw-ru/itemlist_potions.json new file mode 100644 index 000000000..9f3c59ff3 --- /dev/null +++ b/AndorsTrail/res/raw-ru/itemlist_potions.json @@ -0,0 +1,141 @@ +[ + { + "id": "vial_empty1", + "iconID": "items_consumables:56", + "name": "Пустая склянка", + "category": "flask", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "vial_empty2", + "iconID": "items_consumables:57", + "name": "Пустой пузырек", + "category": "flask", + "hasManualPrice": 1, + "baseMarketCost": 4 + }, + { + "id": "vial_empty3", + "iconID": "items_consumables:59", + "name": "Пустой флакон", + "category": "flask", + "hasManualPrice": 1, + "baseMarketCost": 6 + }, + { + "id": "vial_empty4", + "iconID": "items_consumables:58", + "name": "Пустая бутыль", + "category": "flask", + "hasManualPrice": 1, + "baseMarketCost": 11 + }, + { + "id": "health_minor", + "iconID": "items_consumables:35", + "name": "Малый пузырек здоровья", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 5, + "useEffect": { + "increaseCurrentHP": { + "min": 5, + "max": 5 + } + } + }, + { + "id": "health_minor2", + "iconID": "items_consumables:35", + "name": "Малое зелье здоровья", + "category": "pot", + "baseMarketCost": 18, + "useEffect": { + "increaseCurrentHP": { + "min": 5, + "max": 5 + } + } + }, + { + "id": "health", + "iconID": "items_consumables:49", + "name": "Обычное зелье здоровья", + "category": "pot", + "baseMarketCost": 40, + "useEffect": { + "increaseCurrentHP": { + "min": 10, + "max": 10 + } + } + }, + { + "id": "health_major", + "iconID": "items_consumables:28", + "name": "Большая бутыль здоровья", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 210, + "useEffect": { + "increaseCurrentHP": { + "min": 40, + "max": 40 + } + } + }, + { + "id": "health_major2", + "iconID": "items_consumables:28", + "name": "Большое зелье здоровья", + "category": "pot", + "baseMarketCost": 280, + "useEffect": { + "increaseCurrentHP": { + "min": 40, + "max": 40 + } + } + }, + { + "id": "mead", + "iconID": "items_consumables:51", + "name": "Медовуха", + "category": "drink", + "baseMarketCost": 15, + "useEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "milk", + "iconID": "items_consumables:55", + "name": "Молоко", + "category": "drink", + "baseMarketCost": 21, + "useEffect": { + "increaseCurrentHP": { + "min": 2, + "max": 2 + } + } + }, + { + "id": "bonemeal_potion", + "iconID": "items_consumables:34", + "name": "Зелье из костной муки", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 45, + "useEffect": { + "increaseCurrentHP": { + "min": 40, + "max": 40 + } + } + } +] diff --git a/AndorsTrail/res/raw-ru/itemlist_pre0610_unused.json b/AndorsTrail/res/raw-ru/itemlist_pre0610_unused.json new file mode 100644 index 000000000..04586b564 --- /dev/null +++ b/AndorsTrail/res/raw-ru/itemlist_pre0610_unused.json @@ -0,0 +1,58 @@ +[ + { + "id": "eye", + "iconID": "items_misc:45", + "name": "Глаз", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 6 + }, + { + "id": "bat_wing", + "iconID": "items_misc:46", + "name": "Крыло летучей мыши", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "feather", + "iconID": "items_misc:16", + "name": "Перо", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 6 + }, + { + "id": "red_feather", + "iconID": "items_misc:15", + "name": "Красное перо", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 11 + }, + { + "id": "clay", + "iconID": "actorconditions_1:9", + "name": "Комок глины", + "category": "other", + "hasManualPrice": 1, + "baseMarketCost": 1 + }, + { + "id": "gem6", + "iconID": "items_misc:4", + "name": "Мерцающий драгоценный камень", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 26 + }, + { + "id": "gem8", + "iconID": "actorconditions_1:50", + "name": "Брильянт", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 68 + } +] diff --git a/AndorsTrail/res/raw-ru/itemlist_quest.json b/AndorsTrail/res/raw-ru/itemlist_quest.json new file mode 100644 index 000000000..7af6dd829 --- /dev/null +++ b/AndorsTrail/res/raw-ru/itemlist_quest.json @@ -0,0 +1,188 @@ +[ + { + "id": "tail_caverat", + "iconID": "items_misc:38", + "name": "Хвост пещерной крысы", + "category": "animal", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "tail_trainingrat", + "iconID": "items_misc:38", + "name": "Хвост малой крысы", + "category": "animal", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "ring_mikhail", + "iconID": "items_jewelry:0", + "name": "Кольцо Михаила", + "category": "ring", + "baseMarketCost": 15, + "equipEffect": { + "increaseAttackChance": 10 + } + }, + { + "id": "neck_irogotu", + "iconID": "items_jewelry:7", + "name": "Ожерелье Ирогота", + "category": "neck", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 30, + "equipEffect": { + "increaseBlockChance": 5, + "increaseDamageResistance": 1 + } + }, + { + "id": "ring_gandir", + "iconID": "items_jewelry:0", + "name": "Кольцо Гандира", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "dagger_venom", + "iconID": "items_weapons:17", + "name": "Отравленный кинжал", + "category": "dagger", + "displaytype": 3, + "baseMarketCost": 15, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 10, + "increaseCriticalSkill": 5, + "setCriticalMultiplier": 2, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "key_luthor", + "iconID": "items_misc:21", + "name": "Ключ Лютора", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "calomyran_secrets", + "iconID": "items_books:0", + "name": "Секреты Каломирана", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "heartstone", + "iconID": "items_misc:6", + "name": "Камень-сердце", + "category": "gem", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "vacor_spell", + "iconID": "items_books:7", + "name": "Часть заклинания Вакора", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "ring_unzel", + "iconID": "items_jewelry:0", + "name": "Кольцо Унзела", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "ring_vacor", + "iconID": "items_jewelry:0", + "name": "Кольцо Вакора", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "boots_unzel", + "iconID": "items_armours:29", + "name": "Сапоги обороны Унзела", + "category": "feet_lthr", + "displaytype": 3, + "baseMarketCost": 185, + "equipEffect": { + "increaseBlockChance": 8 + } + }, + { + "id": "boots_vacor", + "iconID": "items_armours:29", + "name": "Сапоги атаки Вакора", + "category": "feet_lthr", + "displaytype": 3, + "baseMarketCost": 185, + "equipEffect": { + "increaseAttackChance": 9, + "increaseBlockChance": 2 + } + }, + { + "id": "necklace_flagstone", + "iconID": "items_jewelry:6", + "name": "Ожерелье надзирателя Флагстоуна", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "packhide", + "iconID": "items_armours:15", + "name": "Куртка из шкур", + "category": "bdy_hide", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 121, + "equipEffect": { + "increaseAttackChance": -15, + "increaseBlockChance": 2, + "increaseDamageResistance": 1 + } + }, + { + "id": "sword_flagstone", + "iconID": "items_weapons:7", + "name": "Сокровище Флагстоуна", + "category": "lsword", + "displaytype": 3, + "baseMarketCost": 169, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 21, + "increaseCriticalSkill": 10, + "setCriticalMultiplier": 2, + "increaseAttackDamage": { + "min": 1, + "max": 6 + } + } + } +] diff --git a/AndorsTrail/res/raw-ru/itemlist_rings.json b/AndorsTrail/res/raw-ru/itemlist_rings.json new file mode 100644 index 000000000..e6c33e9e6 --- /dev/null +++ b/AndorsTrail/res/raw-ru/itemlist_rings.json @@ -0,0 +1,124 @@ +[ + { + "id": "ring_dmg1", + "iconID": "items_jewelry:0", + "name": "Кольцо урона +1", + "category": "ring", + "baseMarketCost": 215, + "equipEffect": { + "increaseAttackDamage": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "ring_dmg2", + "iconID": "items_jewelry:1", + "name": "Кольцо урона +2", + "category": "ring", + "baseMarketCost": 398, + "equipEffect": { + "increaseAttackDamage": { + "min": 2, + "max": 2 + } + } + }, + { + "id": "ring_dmg5", + "iconID": "items_jewelry:2", + "name": "Кольцо урона +5", + "category": "ring", + "displaytype": 4, + "baseMarketCost": 2014, + "equipEffect": { + "increaseAttackDamage": { + "min": 5, + "max": 5 + } + } + }, + { + "id": "ring_dmg6", + "iconID": "items_jewelry:3", + "name": "Кольцо урона +6", + "category": "ring", + "displaytype": 4, + "baseMarketCost": 3186, + "equipEffect": { + "increaseAttackDamage": { + "min": 6, + "max": 6 + } + } + }, + { + "id": "ring_block1", + "iconID": "items_jewelry:0", + "name": "Малое кольцо защиты", + "category": "ring", + "displaytype": 4, + "baseMarketCost": 1239, + "equipEffect": { + "increaseBlockChance": 10 + } + }, + { + "id": "ring_block2", + "iconID": "items_jewelry:0", + "name": "Блестящее кольцо защиты", + "category": "ring", + "displaytype": 4, + "baseMarketCost": 3866, + "equipEffect": { + "increaseBlockChance": 15 + } + }, + { + "id": "ring_atkch1", + "iconID": "items_jewelry:0", + "name": "Кольцо атаки", + "category": "ring", + "baseMarketCost": 215, + "equipEffect": { + "increaseAttackChance": 15 + } + }, + { + "id": "ring1", + "iconID": "items_jewelry:0", + "name": "Обычное кольцо", + "category": "ring", + "hasManualPrice": 1, + "baseMarketCost": 13, + "equipEffect": { + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "ring2", + "iconID": "items_jewelry:0", + "name": "Блестящее кольцо", + "category": "ring", + "hasManualPrice": 1, + "baseMarketCost": 21, + "equipEffect": { + "increaseBlockChance": 1 + } + }, + { + "id": "ring_jinxed1", + "iconID": "items_jewelry:2", + "name": "Порченое кольцо защиты от урона", + "category": "ring", + "baseMarketCost": 229, + "equipEffect": { + "increaseBlockChance": -9, + "increaseDamageResistance": 1 + } + } +] diff --git a/AndorsTrail/res/raw-ru/itemlist_v0610_1.json b/AndorsTrail/res/raw-ru/itemlist_v0610_1.json new file mode 100644 index 000000000..1c091b752 --- /dev/null +++ b/AndorsTrail/res/raw-ru/itemlist_v0610_1.json @@ -0,0 +1,1021 @@ +[ + { + "id": "dagger_shadow_priests", + "iconID": "items_weapons:17", + "name": "Кинжал священников Тени", + "category": "dagger", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 15, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 20, + "increaseCriticalSkill": 20, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "sword_hard_iron", + "iconID": "items_weapons:0", + "name": "Закаленный железный меч", + "category": "lsword", + "hasManualPrice": 0, + "baseMarketCost": 369, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 15, + "increaseAttackDamage": { + "min": 2, + "max": 4 + } + } + }, + { + "id": "club_fine_wooden", + "iconID": "items_weapons:42", + "name": "Первоклассная дубинка", + "category": "club", + "hasManualPrice": 0, + "baseMarketCost": 245, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 12, + "increaseAttackDamage": { + "min": 0, + "max": 7 + } + } + }, + { + "id": "axe_fine_iron", + "iconID": "items_weapons:56", + "name": "Первоклассный железный топор", + "category": "axe", + "hasManualPrice": 0, + "baseMarketCost": 365, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 9, + "increaseAttackDamage": { + "min": 4, + "max": 6 + } + } + }, + { + "id": "longsword_hard_iron", + "iconID": "items_weapons:1", + "name": "Закаленный железный полуторный меч", + "category": "lsword", + "hasManualPrice": 0, + "baseMarketCost": 362, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 14, + "increaseAttackDamage": { + "min": 2, + "max": 6 + } + } + }, + { + "id": "broadsword_fine_iron", + "iconID": "items_weapons:5", + "name": "Первоклассный железный палаш", + "category": "bsword", + "hasManualPrice": 0, + "baseMarketCost": 422, + "equipEffect": { + "increaseAttackCost": 7, + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 4, + "max": 10 + } + } + }, + { + "id": "dagger_sharp_steel", + "iconID": "items_weapons:14", + "name": "Острый стальной кинжал", + "category": "dagger", + "hasManualPrice": 0, + "baseMarketCost": 1428, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 24, + "increaseAttackDamage": { + "min": 2, + "max": 4 + } + } + }, + { + "id": "sword_balanced_steel", + "iconID": "items_weapons:7", + "name": "Сбалансированный стальной меч", + "category": "lsword", + "hasManualPrice": 0, + "baseMarketCost": 2797, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 32, + "increaseAttackDamage": { + "min": 3, + "max": 7 + } + } + }, + { + "id": "broadsword_fine_steel", + "iconID": "items_weapons:6", + "name": "Первоклассный стальной палаш", + "category": "bsword", + "hasManualPrice": 0, + "baseMarketCost": 1206, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 20, + "increaseAttackDamage": { + "min": 4, + "max": 11 + } + } + }, + { + "id": "sword_defenders", + "iconID": "items_weapons:2", + "name": "Клинок защитника", + "category": "lsword", + "hasManualPrice": 0, + "baseMarketCost": 1711, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 26, + "increaseAttackDamage": { + "min": 3, + "max": 7 + }, + "increaseBlockChance": 3 + } + }, + { + "id": "sword_villains", + "iconID": "items_weapons:16", + "name": "Клинок злодея", + "category": "ssword", + "hasManualPrice": 0, + "baseMarketCost": 1665, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 20, + "increaseCriticalSkill": 5, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "sword_challengers", + "iconID": "items_weapons:1", + "name": "Железный меч для поединков", + "category": "lsword", + "hasManualPrice": 0, + "baseMarketCost": 785, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 20, + "increaseAttackDamage": { + "min": 2, + "max": 6 + } + } + }, + { + "id": "sword_fencing", + "iconID": "items_weapons:13", + "name": "Фехтовальный клинок", + "category": "rapier", + "hasManualPrice": 0, + "baseMarketCost": 922, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 14, + "increaseAttackDamage": { + "min": 2, + "max": 5 + }, + "increaseBlockChance": 5 + } + }, + { + "id": "club_brutal", + "iconID": "items_weapons:44", + "name": "Брутальная булава", + "category": "mace", + "hasManualPrice": 0, + "baseMarketCost": 2522, + "equipEffect": { + "increaseAttackCost": 7, + "increaseAttackChance": 20, + "increaseCriticalSkill": 5, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 2, + "max": 21 + } + } + }, + { + "id": "axe_gutsplitter", + "iconID": "items_weapons:58", + "name": "Потрошитель", + "category": "axe2h", + "hasManualPrice": 0, + "baseMarketCost": 2733, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 21, + "increaseAttackDamage": { + "min": 7, + "max": 17 + } + } + }, + { + "id": "hammer_skullcrusher", + "iconID": "items_weapons:45", + "name": "Сокрушитель черепов", + "category": "hammer2h", + "hasManualPrice": 0, + "baseMarketCost": 3142, + "equipEffect": { + "increaseAttackCost": 7, + "increaseAttackChance": 20, + "increaseCriticalSkill": 5, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 0, + "max": 26 + } + } + }, + { + "id": "shield_crude_wooden", + "iconID": "items_armours:0", + "name": "Скверный круглый щит", + "category": "buckler", + "hasManualPrice": 0, + "baseMarketCost": 31, + "equipEffect": { + "increaseBlockChance": 1 + } + }, + { + "id": "shield_cracked_wooden", + "iconID": "items_armours:0", + "name": "Треснувший круглый щит", + "category": "buckler", + "hasManualPrice": 0, + "baseMarketCost": 34, + "equipEffect": { + "increaseAttackChance": -2, + "increaseBlockChance": 2 + } + }, + { + "id": "shield_wooden_buckler", + "iconID": "items_armours:0", + "name": "Подержанный круглый щит", + "category": "buckler", + "hasManualPrice": 0, + "baseMarketCost": 92, + "equipEffect": { + "increaseAttackChance": -2, + "increaseBlockChance": 3 + } + }, + { + "id": "shield_wooden", + "iconID": "items_armours:2", + "name": "Деревянный щит", + "category": "shld_wd_li", + "hasManualPrice": 0, + "baseMarketCost": 514, + "equipEffect": { + "increaseAttackChance": -4, + "increaseBlockChance": 8 + } + }, + { + "id": "shield_wooden_defender", + "iconID": "items_armours:2", + "name": "Деревянный защитник", + "category": "shld_wd_li", + "hasManualPrice": 0, + "baseMarketCost": 1996, + "equipEffect": { + "increaseAttackChance": -8, + "increaseCriticalSkill": -5, + "increaseBlockChance": 14, + "increaseDamageResistance": 1 + } + }, + { + "id": "hat_hard_leather", + "iconID": "items_armours:24", + "name": "Шапка из грубой кожи", + "category": "hd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 648, + "equipEffect": { + "increaseAttackChance": -3, + "increaseCriticalSkill": -1, + "increaseBlockChance": 8 + } + }, + { + "id": "hat_fine_leather", + "iconID": "items_armours:24", + "name": "Первоклассная кожаная шапка", + "category": "hd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 846, + "equipEffect": { + "increaseAttackChance": -3, + "increaseCriticalSkill": -2, + "increaseBlockChance": 9 + } + }, + { + "id": "hat_leather_vision", + "iconID": "items_armours:24", + "name": "Шапка из кожи с плохим обзором", + "category": "hd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 971, + "equipEffect": { + "increaseAttackChance": -3, + "increaseCriticalSkill": -4, + "increaseBlockChance": 10 + } + }, + { + "id": "helm_crude_iron", + "iconID": "items_armours:25", + "name": "Скверный железный шлем", + "category": "hd_mtl_hv", + "hasManualPrice": 0, + "baseMarketCost": 1120, + "equipEffect": { + "increaseAttackChance": -3, + "increaseCriticalSkill": -5, + "increaseBlockChance": 11 + } + }, + { + "id": "shirt_torn", + "iconID": "items_armours:14", + "name": "Разорванная рубаха", + "category": "bdy_clth", + "hasManualPrice": 0, + "baseMarketCost": 92, + "equipEffect": { + "increaseAttackChance": -2, + "increaseBlockChance": 3 + } + }, + { + "id": "shirt_weathered", + "iconID": "items_armours:14", + "name": "Изношенная рубаха", + "category": "bdy_clth", + "hasManualPrice": 0, + "baseMarketCost": 125, + "equipEffect": { + "increaseAttackChance": -1, + "increaseBlockChance": 3 + } + }, + { + "id": "shirt_patched_cloth", + "iconID": "items_armours:14", + "name": "Залатанная рубаха", + "category": "bdy_clth", + "hasManualPrice": 0, + "baseMarketCost": 208, + "equipEffect": { + "increaseBlockChance": 4 + } + }, + { + "id": "armour_crude_leather", + "iconID": "items_armours:16", + "name": "Скверная кожаная броня", + "category": "bdy_lthr", + "hasManualPrice": 0, + "baseMarketCost": 514, + "equipEffect": { + "increaseAttackChance": -4, + "increaseBlockChance": 8 + } + }, + { + "id": "armour_firm_leather", + "iconID": "items_armours:16", + "name": "Крепкая кожаная броня", + "category": "bdy_lthr", + "hasManualPrice": 0, + "baseMarketCost": 417, + "equipEffect": { + "increaseMoveCost": 1, + "increaseBlockChance": 8 + } + }, + { + "id": "armour_rigid_leather", + "iconID": "items_armours:16", + "name": "Негнущаяся кожаная броня", + "category": "bdy_lthr", + "hasManualPrice": 0, + "baseMarketCost": 625, + "equipEffect": { + "increaseMoveCost": 1, + "increaseAttackChance": -1, + "increaseBlockChance": 9 + } + }, + { + "id": "armour_rigid_chain", + "iconID": "items_armours:17", + "name": "Негнущаяся кольчуга", + "category": "chmail", + "hasManualPrice": 0, + "baseMarketCost": 4667, + "equipEffect": { + "increaseAttackCost": 1, + "increaseAttackChance": -5, + "increaseBlockChance": 23 + } + }, + { + "id": "armour_superior_chain", + "iconID": "items_armours:17", + "name": "Превосходная кольчуга", + "category": "chmail", + "hasManualPrice": 0, + "baseMarketCost": 5992, + "equipEffect": { + "increaseAttackChance": -9, + "increaseBlockChance": 23 + } + }, + { + "id": "armour_chain_champ", + "iconID": "items_armours:17", + "name": "Кольчуга чемпиона", + "category": "chmail", + "hasManualPrice": 0, + "baseMarketCost": 6808, + "equipEffect": { + "increaseMaxHP": 2, + "increaseAttackChance": -9, + "increaseCriticalSkill": -5, + "increaseBlockChance": 24 + } + }, + { + "id": "armour_leather_villain", + "iconID": "items_armours:16", + "name": "Кожаная броня злодея", + "category": "bdy_lthr", + "hasManualPrice": 0, + "baseMarketCost": 3700, + "equipEffect": { + "increaseMoveCost": -1, + "increaseAttackChance": -4, + "increaseCriticalSkill": 3, + "increaseBlockChance": 15 + } + }, + { + "id": "armour_misfortune", + "iconID": "items_armours:15", + "name": "Кожаная рубаха неудач", + "category": "bdy_lthr", + "hasManualPrice": 0, + "baseMarketCost": 2459, + "equipEffect": { + "increaseAttackChance": -5, + "increaseAttackDamage": { + "min": -1, + "max": -1 + }, + "increaseBlockChance": 15 + } + }, + { + "id": "gloves_barbrawler", + "iconID": "items_armours:35", + "name": "Перчатки дебошира", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 95, + "equipEffect": { + "increaseAttackChance": 5, + "increaseBlockChance": 2 + } + }, + { + "id": "gloves_fumbling", + "iconID": "items_armours:35", + "name": "Перчатки неуклюжести", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": -432, + "equipEffect": { + "increaseAttackChance": -5, + "increaseBlockChance": 1 + } + }, + { + "id": "gloves_crude_cloth", + "iconID": "items_armours:35", + "name": "Скверные хлопковые перчатки", + "category": "hnd_cloth", + "hasManualPrice": 0, + "baseMarketCost": 31, + "equipEffect": { + "increaseBlockChance": 1 + } + }, + { + "id": "gloves_crude_leather", + "iconID": "items_armours:35", + "name": "Скверные кожаные перчатки", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 180, + "equipEffect": { + "increaseAttackChance": -4, + "increaseBlockChance": 6 + } + }, + { + "id": "gloves_troublemaker", + "iconID": "items_armours:36", + "name": "Перчатки бузотера", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 501, + "equipEffect": { + "increaseMaxHP": 1, + "increaseAttackChance": 7, + "increaseCriticalSkill": 4, + "increaseBlockChance": 4 + } + }, + { + "id": "gloves_guards", + "iconID": "items_armours:37", + "name": "Перчатки охранника", + "category": "hnd_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 636, + "equipEffect": { + "increaseMaxHP": 3, + "increaseAttackChance": 3, + "increaseBlockChance": 5 + } + }, + { + "id": "gloves_leather_attack", + "iconID": "items_armours:35", + "name": "Кожаные перчатки атаки", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 510, + "equipEffect": { + "increaseMaxHP": 3, + "increaseAttackChance": 13, + "increaseBlockChance": -2 + } + }, + { + "id": "gloves_woodcutter", + "iconID": "items_armours:35", + "name": "Перчатки дровосека", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 426, + "equipEffect": { + "increaseMaxHP": 3, + "increaseAttackChance": 8, + "increaseBlockChance": 1 + } + }, + { + "id": "boots_crude_leather", + "iconID": "items_armours:28", + "name": "Скверные кожаные сапоги", + "category": "feet_lthr", + "hasManualPrice": 0, + "baseMarketCost": 31, + "equipEffect": { + "increaseBlockChance": 1 + } + }, + { + "id": "boots_sewn", + "iconID": "items_armours:28", + "name": "Войлочная обувь", + "category": "feet_clth", + "hasManualPrice": 0, + "baseMarketCost": 73, + "equipEffect": { + "increaseBlockChance": 2 + } + }, + { + "id": "boots_coward", + "iconID": "items_armours:28", + "name": "Сапоги труса", + "category": "feet_lthr", + "hasManualPrice": 0, + "baseMarketCost": 933, + "equipEffect": { + "increaseMoveCost": -1, + "increaseBlockChance": 2 + } + }, + { + "id": "boots_hard_leather", + "iconID": "items_armours:30", + "name": "Сапоги из грубой кожи", + "category": "feet_lthr", + "hasManualPrice": 0, + "baseMarketCost": 626, + "equipEffect": { + "increaseMoveCost": 1, + "increaseAttackChance": -4, + "increaseBlockChance": 10 + } + }, + { + "id": "boots_defender", + "iconID": "items_armours:30", + "name": "Сапоги защитника", + "category": "feet_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 1190, + "equipEffect": { + "increaseMaxHP": 2, + "increaseBlockChance": 9 + } + }, + { + "id": "necklace_shield_0", + "iconID": "items_jewelry:7", + "name": "Малое ожерелье защиты", + "category": "neck", + "hasManualPrice": 0, + "baseMarketCost": 131, + "equipEffect": { + "increaseBlockChance": 3 + } + }, + { + "id": "necklace_strike", + "iconID": "items_jewelry:6", + "name": "Ожерелье удара", + "category": "neck", + "hasManualPrice": 0, + "baseMarketCost": 832, + "equipEffect": { + "increaseMaxHP": 5, + "increaseCriticalSkill": 5 + } + }, + { + "id": "necklace_defender_stone", + "iconID": "items_jewelry:7", + "name": "Камень защитника", + "category": "neck", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 1325, + "equipEffect": { + "increaseDamageResistance": 1 + } + }, + { + "id": "necklace_protector", + "iconID": "items_jewelry:7", + "name": "Ожерелье покровителя", + "category": "neck", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 3207, + "equipEffect": { + "increaseMaxHP": 5, + "increaseDamageResistance": 2 + } + }, + { + "id": "ring_crude_combat", + "iconID": "items_jewelry:0", + "name": "Скверное боевое кольцо", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 44, + "equipEffect": { + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "ring_crude_surehit", + "iconID": "items_jewelry:0", + "name": "Скверное кольцо атаки", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 52, + "equipEffect": { + "increaseAttackChance": 7 + } + }, + { + "id": "ring_crude_block", + "iconID": "items_jewelry:0", + "name": "Скверное кольцо защиты", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 73, + "equipEffect": { + "increaseBlockChance": 2 + } + }, + { + "id": "ring_rough_life", + "iconID": "items_jewelry:0", + "name": "Скверное кольцо жизненной силы", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 100, + "equipEffect": { + "increaseMaxHP": 1 + } + }, + { + "id": "ring_fumbling", + "iconID": "items_jewelry:0", + "name": "Кольцо неуклюжести", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": -463, + "equipEffect": { + "increaseAttackChance": -5 + } + }, + { + "id": "ring_rough_damage", + "iconID": "items_jewelry:0", + "name": "Скверное кольцо урона", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 56, + "equipEffect": { + "increaseAttackDamage": { + "min": 0, + "max": 2 + } + } + }, + { + "id": "ring_barbrawler", + "iconID": "items_jewelry:0", + "name": "Кольцо дебошира", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 222, + "equipEffect": { + "increaseAttackChance": 12, + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "ring_dmg_3", + "iconID": "items_jewelry:0", + "name": "Кольцо урона +3", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 624, + "equipEffect": { + "increaseAttackDamage": { + "min": 3, + "max": 3 + } + } + }, + { + "id": "ring_life", + "iconID": "items_jewelry:0", + "name": "Кольцо жизненной силы", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 557, + "equipEffect": { + "increaseMaxHP": 5 + } + }, + { + "id": "ring_taverbrawler", + "iconID": "items_jewelry:0", + "name": "Кольцо драчуна", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 314, + "equipEffect": { + "increaseAttackChance": 12, + "increaseAttackDamage": { + "min": 0, + "max": 3 + } + } + }, + { + "id": "ring_defender", + "iconID": "items_jewelry:0", + "name": "Кольцо защитника", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 755, + "equipEffect": { + "increaseAttackChance": -6, + "increaseBlockChance": 11 + } + }, + { + "id": "ring_challenger", + "iconID": "items_jewelry:0", + "name": "Кольцо поединков", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 408, + "equipEffect": { + "increaseAttackChance": 12, + "increaseBlockChance": 4 + } + }, + { + "id": "ring_dmg_4", + "iconID": "items_jewelry:2", + "name": "Кольцо урона +4", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 1168, + "equipEffect": { + "increaseAttackDamage": { + "min": 4, + "max": 4 + } + } + }, + { + "id": "ring_troublemaker", + "iconID": "items_jewelry:2", + "name": "Кольцо бузотера", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 797, + "equipEffect": { + "increaseAttackChance": 15, + "increaseAttackDamage": { + "min": 2, + "max": 4 + } + } + }, + { + "id": "ring_guardian", + "iconID": "items_jewelry:2", + "name": "Кольцо стражника", + "category": "ring", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 1489, + "equipEffect": { + "increaseAttackChance": 19, + "increaseAttackDamage": { + "min": 3, + "max": 5 + } + } + }, + { + "id": "ring_block", + "iconID": "items_jewelry:2", + "name": "Кольцо защиты", + "category": "ring", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 2192, + "equipEffect": { + "increaseBlockChance": 13 + } + }, + { + "id": "ring_backstab", + "iconID": "items_jewelry:2", + "name": "Кольцо удара в спину", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 1363, + "equipEffect": { + "increaseAttackChance": 17, + "increaseCriticalSkill": 7, + "increaseBlockChance": 3 + } + }, + { + "id": "ring_polished_combat", + "iconID": "items_jewelry:2", + "name": "Блестящее боевое кольцо", + "category": "ring", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 1346, + "equipEffect": { + "increaseMaxHP": 5, + "increaseAttackChance": 15, + "increaseAttackDamage": { + "min": 1, + "max": 5 + } + } + }, + { + "id": "ring_villain", + "iconID": "items_jewelry:2", + "name": "Кольцо злодея", + "category": "ring", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 2750, + "equipEffect": { + "increaseMaxHP": 4, + "increaseAttackChance": 25, + "increaseAttackDamage": { + "min": 3, + "max": 6 + } + } + }, + { + "id": "ring_polished_backstab", + "iconID": "items_jewelry:2", + "name": "Блестящее кольцо удара в спину", + "category": "ring", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 2731, + "equipEffect": { + "increaseAttackChance": 21, + "increaseCriticalSkill": 7, + "increaseAttackDamage": { + "min": 4, + "max": 4 + } + } + }, + { + "id": "ring_protector", + "iconID": "items_jewelry:4", + "name": "Кольцо покровителя", + "category": "ring", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 3744, + "equipEffect": { + "increaseMaxHP": 3, + "increaseAttackChance": 20, + "increaseAttackDamage": { + "min": 0, + "max": 3 + }, + "increaseBlockChance": 14 + } + } +] diff --git a/AndorsTrail/res/raw-ru/itemlist_v0610_2.json b/AndorsTrail/res/raw-ru/itemlist_v0610_2.json new file mode 100644 index 000000000..6ae358f76 --- /dev/null +++ b/AndorsTrail/res/raw-ru/itemlist_v0610_2.json @@ -0,0 +1,190 @@ +[ + { + "id": "erinith_book", + "iconID": "items_books:0", + "name": "Книга Эринита", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "hadracor_waspwing", + "iconID": "items_misc:52", + "name": "Крыло гигантской осы", + "category": "animal", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "tinlyn_bells", + "iconID": "items_necklaces_1:10", + "name": "Колокольчик овечки Тинлина", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "tinlyn_sheep_meat", + "iconID": "items_consumables:25", + "name": "Мясо овечки Тинлина", + "category": "animal", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "rogorn_qitem", + "iconID": "items_books:7", + "name": "Кусок рисунка", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "fg_ironsword", + "iconID": "items_weapons:0", + "name": "Фейгардский железный меч", + "category": "lsword", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 1, + "max": 5 + } + } + }, + { + "id": "fg_ironsword_d", + "iconID": "items_weapons:0", + "name": "Испорченный фейгардский железный меч", + "category": "lsword", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": -50 + } + }, + { + "id": "buceth_vial", + "iconID": "items_consumables:47", + "name": "Склянка Буцета с зеленой жидкостью", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "chaosreaper", + "iconID": "items_weapons:49", + "name": "Жнец хаоса", + "category": "scepter", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 339, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": -30, + "increaseAttackDamage": { + "min": 0, + "max": 2 + } + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 5, + "duration": 3, + "chance": 50 + } + ] + } + }, + { + "id": "izthiel_claw", + "iconID": "items_misc:47", + "name": "Коготь Изтиля", + "category": "animal_e", + "hasManualPrice": 1, + "baseMarketCost": 1, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 3, + "duration": 6, + "chance": 100 + }, + { + "condition": "foodp", + "magnitude": 3, + "duration": 10, + "chance": 20 + } + ] + } + }, + { + "id": "iqhan_pendant", + "iconID": "items_necklaces_1:2", + "name": "Кулон Икана", + "category": "neck", + "hasManualPrice": 1, + "baseMarketCost": 10, + "equipEffect": { + "increaseAttackChance": 6 + } + }, + { + "id": "shadowfang", + "iconID": "items_weapons_3:41", + "name": "Клык Тени", + "category": "ssword", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 512, + "equipEffect": { + "increaseMaxHP": -20, + "increaseAttackCost": 4, + "increaseAttackChance": 40, + "increaseAttackDamage": { + "min": 2, + "max": 5 + } + }, + "hitEffect": { + "conditionsSource": [ + { + "condition": "fatigue_minor", + "magnitude": 1, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "gloves_life", + "iconID": "items_armours_2:1", + "name": "Перчатки жизненной силы", + "category": "hnd_lthr", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 390, + "equipEffect": { + "increaseMaxHP": 9, + "increaseAttackChance": 5, + "increaseBlockChance": 3 + } + } +] diff --git a/AndorsTrail/res/raw-ru/itemlist_v0611_1.json b/AndorsTrail/res/raw-ru/itemlist_v0611_1.json new file mode 100644 index 000000000..b3fa2ac18 --- /dev/null +++ b/AndorsTrail/res/raw-ru/itemlist_v0611_1.json @@ -0,0 +1,477 @@ +[ + { + "id": "pot_focus_dmg", + "iconID": "items_consumables:39", + "name": "Зелье концентрации на уроне", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 272, + "useEffect": { + "conditionsSource": [ + { + "condition": "focus_dmg", + "magnitude": 1, + "duration": 4, + "chance": 100 + } + ] + } + }, + { + "id": "pot_focus_dmg2", + "iconID": "items_consumables:39", + "name": "Сильное зелье концентрации на уроне", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 630, + "useEffect": { + "conditionsSource": [ + { + "condition": "focus_dmg", + "magnitude": 2, + "duration": 4, + "chance": 100 + } + ] + } + }, + { + "id": "pot_focus_ac", + "iconID": "items_consumables:37", + "name": "Зелье концентрации на точности", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 210, + "useEffect": { + "conditionsSource": [ + { + "condition": "focus_ac", + "magnitude": 1, + "duration": 4, + "chance": 100 + } + ] + } + }, + { + "id": "pot_focus_ac2", + "iconID": "items_consumables:37", + "name": "Сильное зелье концентрации на точности", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 618, + "useEffect": { + "conditionsSource": [ + { + "condition": "focus_ac", + "magnitude": 2, + "duration": 4, + "chance": 100 + } + ] + } + }, + { + "id": "pot_scaradon", + "iconID": "items_consumables:48", + "name": "Экстракт Скарадона", + "category": "pot", + "hasManualPrice": 0, + "baseMarketCost": 28, + "useEffect": { + "increaseCurrentHP": { + "min": 5, + "max": 10 + } + } + }, + { + "id": "remgard_shield_1", + "iconID": "items_armours_3:24", + "name": "Ремгардский щит", + "category": "shld_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 2189, + "equipEffect": { + "increaseAttackChance": -3, + "increaseBlockChance": 9, + "increaseDamageResistance": 1 + } + }, + { + "id": "remgard_shield_2", + "iconID": "items_armours_3:24", + "name": "Ремгардский боевой щит", + "category": "shld_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 2720, + "equipEffect": { + "increaseAttackChance": -3, + "increaseBlockChance": 11, + "increaseDamageResistance": 1 + } + }, + { + "id": "helm_combat1", + "iconID": "items_armours:25", + "name": "Боевой шлем", + "category": "hd_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 455, + "equipEffect": { + "increaseAttackChance": 5, + "increaseBlockChance": 6 + } + }, + { + "id": "helm_combat2", + "iconID": "items_armours:25", + "name": "Улучшенный боевой шлем", + "category": "hd_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 485, + "equipEffect": { + "increaseAttackChance": 7, + "increaseBlockChance": 6 + } + }, + { + "id": "helm_combat3", + "iconID": "items_armours:26", + "name": "Ремгардский боевой шлем", + "category": "hd_mtl_hv", + "hasManualPrice": 0, + "baseMarketCost": 1540, + "equipEffect": { + "increaseMaxHP": 1, + "increaseAttackChance": -3, + "increaseCriticalSkill": -5, + "increaseBlockChance": 12 + } + }, + { + "id": "helm_redeye1", + "iconID": "items_armours:24", + "name": "Шапка красных глаз", + "category": "hd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 1, + "equipEffect": { + "increaseMaxHP": -5, + "increaseBlockChance": 8 + } + }, + { + "id": "helm_redeye2", + "iconID": "items_armours:24", + "name": "Шапка кровавых глаз", + "category": "hd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 1, + "equipEffect": { + "increaseMaxHP": -5, + "increaseAttackDamage": { + "min": 0, + "max": 1 + }, + "increaseBlockChance": 8 + } + }, + { + "id": "helm_defend1", + "iconID": "items_armours_3:31", + "name": "Шлем защитника", + "category": "hd_mtl_hv", + "hasManualPrice": 0, + "baseMarketCost": 1975, + "equipEffect": { + "increaseAttackChance": -3, + "increaseBlockChance": 8, + "increaseDamageResistance": 1 + } + }, + { + "id": "helm_protector0", + "iconID": "items_armours_3:31", + "name": "Странно выглядящий шлем", + "category": "hd_mtl_li", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxHP": -9, + "increaseAttackDamage": { + "min": 0, + "max": 1 + }, + "increaseBlockChance": 5 + } + }, + { + "id": "helm_protector", + "iconID": "items_armours_3:31", + "name": "Темный покровитель", + "category": "hd_mtl_li", + "displaytype": 3, + "hasManualPrice": 0, + "baseMarketCost": 3119, + "equipEffect": { + "increaseMaxHP": -6, + "increaseAttackDamage": { + "min": 0, + "max": 1 + }, + "increaseBlockChance": 13, + "increaseDamageResistance": 1 + } + }, + { + "id": "armour_chain_remg", + "iconID": "items_armours_3:13", + "name": "Ремгардская кольчуга", + "category": "chmail", + "hasManualPrice": 0, + "baseMarketCost": 8927, + "equipEffect": { + "increaseAttackChance": -7, + "increaseBlockChance": 25 + } + }, + { + "id": "armour_cvest1", + "iconID": "items_armours_3:5", + "name": "Бронежилет", + "category": "bdy_lt", + "hasManualPrice": 0, + "baseMarketCost": 1116, + "equipEffect": { + "increaseAttackChance": 15, + "increaseBlockChance": 8 + } + }, + { + "id": "armour_cvest2", + "iconID": "items_armours_3:5", + "name": "Ремгардский бронежилет", + "category": "bdy_lt", + "hasManualPrice": 0, + "baseMarketCost": 1244, + "equipEffect": { + "increaseAttackChance": 17, + "increaseBlockChance": 8 + } + }, + { + "id": "gloves_leather1", + "iconID": "items_armours:38", + "name": "Перчатки из грубой кожи", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 757, + "equipEffect": { + "increaseMaxHP": 3, + "increaseAttackChance": 2, + "increaseBlockChance": 6 + } + }, + { + "id": "gloves_arulir", + "iconID": "items_armours_2:1", + "name": "Перчатки из кожи Арулира", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 1793, + "equipEffect": { + "increaseAttackChance": -3, + "increaseBlockChance": 7, + "increaseDamageResistance": 1 + } + }, + { + "id": "gloves_combat1", + "iconID": "items_armours:36", + "name": "Боевые перчатки", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 956, + "equipEffect": { + "increaseMaxHP": 4, + "increaseAttackChance": -5, + "increaseBlockChance": 9 + } + }, + { + "id": "gloves_combat2", + "iconID": "items_armours:36", + "name": "Улучшенные боевые перчатки", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 1204, + "equipEffect": { + "increaseMaxHP": 4, + "increaseAttackChance": -5, + "increaseBlockChance": 10 + } + }, + { + "id": "gloves_remgard1", + "iconID": "items_armours:37", + "name": "Ремгардские боевые перчатки", + "category": "hnd_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 1205, + "equipEffect": { + "increaseMaxHP": 4, + "increaseBlockChance": 8 + } + }, + { + "id": "gloves_remgard2", + "iconID": "items_armours:37", + "name": "Заколдованные ремгардские перчатки", + "category": "hnd_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 1326, + "equipEffect": { + "increaseMaxHP": 5, + "increaseAttackChance": 2, + "increaseBlockChance": 8 + } + }, + { + "id": "gloves_guard1", + "iconID": "items_armours:38", + "name": "Перчатки стражника", + "category": "hnd_lthr", + "hasManualPrice": 1, + "baseMarketCost": 601, + "equipEffect": { + "increaseAttackChance": -9, + "increaseCriticalSkill": -5, + "increaseBlockChance": 14 + } + }, + { + "id": "boots_combat1", + "iconID": "items_armours:30", + "name": "Боевые сапоги", + "category": "feet_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackChance": 7, + "increaseBlockChance": 7 + } + }, + { + "id": "boots_combat2", + "iconID": "items_armours:30", + "name": "Улучшенные боевые сапоги", + "category": "feet_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackChance": 7, + "increaseBlockChance": 11 + } + }, + { + "id": "boots_remgard1", + "iconID": "items_armours:31", + "name": "Ремгардские сапоги", + "category": "feet_mtl_hv", + "hasManualPrice": 0, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxHP": 4, + "increaseBlockChance": 12 + } + }, + { + "id": "boots_guard1", + "iconID": "items_armours:31", + "name": "Сапоги стражника", + "category": "feet_mtl_hv", + "hasManualPrice": 0, + "baseMarketCost": 0, + "equipEffect": { + "increaseBlockChance": 7, + "increaseDamageResistance": 1 + } + }, + { + "id": "boots_brawler", + "iconID": "items_armours_3:38", + "name": "Сапоги дебошира", + "category": "feet_lthr", + "hasManualPrice": 0, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxHP": 2, + "increaseCriticalSkill": 4, + "increaseBlockChance": 7 + } + }, + { + "id": "marrowtaint", + "iconID": "items_necklaces_1:9", + "name": "Желегрязь", + "category": "neck", + "displaytype": 3, + "hasManualPrice": 0, + "baseMarketCost": 4760, + "equipEffect": { + "increaseMaxHP": 5, + "increaseAttackCost": -1, + "increaseAttackChance": 9, + "increaseBlockChance": 9 + } + }, + { + "id": "valugha_gown", + "iconID": "items_armours_3:2", + "name": "Шелковый халат Валуга", + "category": "bdy_clth", + "displaytype": 3, + "hasManualPrice": 0, + "baseMarketCost": 3109, + "equipEffect": { + "increaseMaxHP": 5, + "increaseMoveCost": -1, + "increaseAttackChance": 30, + "increaseBlockChance": -10 + } + }, + { + "id": "valugha_hat", + "iconID": "items_armours_3:1", + "name": "Мерцающая шляпа Валуга", + "category": "hd_cloth", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 648, + "equipEffect": { + "increaseMaxHP": 3, + "increaseMoveCost": -1, + "increaseAttackChance": 15, + "increaseAttackDamage": { + "min": -2, + "max": -2 + }, + "increaseBlockChance": -5 + } + }, + { + "id": "hat_crit", + "iconID": "items_armours_3:0", + "name": "Шапка дровосека с пером", + "category": "hd_cloth", + "displaytype": 3, + "hasManualPrice": 0, + "baseMarketCost": 1, + "equipEffect": { + "increaseCriticalSkill": 4, + "increaseBlockChance": -5 + } + } +] diff --git a/AndorsTrail/res/raw-ru/itemlist_v0611_2.json b/AndorsTrail/res/raw-ru/itemlist_v0611_2.json new file mode 100644 index 000000000..930174d3a --- /dev/null +++ b/AndorsTrail/res/raw-ru/itemlist_v0611_2.json @@ -0,0 +1,71 @@ +[ + { + "id": "thorin_bone", + "iconID": "items_misc:44", + "name": "Обгрызанная кость", + "category": "animal", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "spider", + "iconID": "items_misc:40", + "name": "Мертвый паук", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 1 + }, + { + "id": "irdegh", + "iconID": "items_misc:49", + "name": "Ядовитая железа Ирдега", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 5 + }, + { + "id": "arulir_skin", + "iconID": "items_misc:39", + "name": "Кожа Арулира", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 4 + }, + { + "id": "algangror_rat", + "iconID": "items_misc:38", + "name": "Странно выглядящий хвост крысы", + "category": "animal", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "oegyth", + "iconID": "items_misc:35", + "name": "Кристалл Oegyth", + "category": "gem", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "toszylae_heart", + "iconID": "items_misc:6", + "name": "Сердце лича", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "potion_rotworm", + "iconID": "items_consumables:63", + "name": "Kazaul rotworm", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + } +] diff --git a/AndorsTrail/res/raw-ru/itemlist_v068.json b/AndorsTrail/res/raw-ru/itemlist_v068.json new file mode 100644 index 000000000..e692d6f2a --- /dev/null +++ b/AndorsTrail/res/raw-ru/itemlist_v068.json @@ -0,0 +1,190 @@ +[ + { + "id": "armor_chain1", + "iconID": "items_armours:17", + "name": "Ржавая кольчуга", + "category": "chmail", + "baseMarketCost": 3629, + "equipEffect": { + "increaseAttackChance": -9, + "increaseBlockChance": 20 + } + }, + { + "id": "armor_chain2", + "iconID": "items_armours:17", + "name": "Простая кольчуга", + "category": "chmail", + "baseMarketCost": 4191, + "equipEffect": { + "increaseAttackChance": -10, + "increaseBlockChance": 22 + } + }, + { + "id": "hat_leather1", + "iconID": "items_armours:24", + "name": "Простая шапка из кожи", + "category": "hd_lthr", + "baseMarketCost": 261, + "equipEffect": { + "increaseAttackChance": -2, + "increaseBlockChance": 7 + } + }, + { + "id": "sleepingmead", + "iconID": "items_consumables:51", + "name": "Медовуха со снотворным", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "ffguard_qitem", + "iconID": "items_jewelry:0", + "name": "Кольцо патруля Фейгарда", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "shield6", + "iconID": "items_armours:3", + "name": "Деревянный пехотный щит", + "category": "shld_twr", + "baseMarketCost": 952, + "equipEffect": { + "increaseAttackChance": -6, + "increaseBlockChance": 12 + } + }, + { + "id": "shield7", + "iconID": "items_armours:3", + "name": "Крепкий деревянный пехотный щит", + "category": "shld_twr", + "baseMarketCost": 1538, + "equipEffect": { + "increaseAttackChance": -6, + "increaseBlockChance": 14 + } + }, + { + "id": "club_wood1", + "iconID": "items_weapons:44", + "name": "Тяжелая палица", + "category": "mace", + "baseMarketCost": 950, + "equipEffect": { + "increaseAttackCost": 8, + "increaseAttackChance": 15, + "increaseCriticalSkill": 5, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 2, + "max": 11 + } + } + }, + { + "id": "club_wood2", + "iconID": "items_weapons:44", + "name": "Сбалансированная тяжелая палица", + "category": "mace", + "baseMarketCost": 2194, + "equipEffect": { + "increaseAttackCost": 7, + "increaseAttackChance": 10, + "increaseCriticalSkill": 10, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 2, + "max": 11 + } + } + }, + { + "id": "gloves_grip", + "iconID": "items_armours:35", + "name": "Перчатки лучшей хватки", + "category": "hnd_lthr", + "baseMarketCost": 471, + "equipEffect": { + "increaseAttackChance": 9, + "increaseBlockChance": 1 + } + }, + { + "id": "gloves_fancy", + "iconID": "items_armours:35", + "name": "Необычные перчатки", + "category": "hnd_cloth", + "baseMarketCost": 78, + "equipEffect": { + "increaseAttackChance": 5 + } + }, + { + "id": "ring_crit1", + "iconID": "items_jewelry:0", + "name": "Кольцо удара", + "category": "ring", + "displaytype": 4, + "baseMarketCost": 2921, + "equipEffect": { + "increaseCriticalSkill": 5 + } + }, + { + "id": "ring_crit2", + "iconID": "items_jewelry:0", + "name": "Кольцо подлого удара", + "category": "ring", + "displaytype": 4, + "baseMarketCost": 3455, + "equipEffect": { + "increaseAttackChance": -3, + "increaseCriticalSkill": 7 + } + }, + { + "id": "armor_stone", + "iconID": "items_armours:17", + "name": "Кираса из камня", + "category": "bdy_hv", + "displaytype": 3, + "baseMarketCost": 52, + "equipEffect": { + "increaseAttackCost": 2, + "increaseBlockChance": 22, + "increaseDamageResistance": 1 + } + }, + { + "id": "ring_shadow0", + "iconID": "items_jewelry:2", + "name": "Кольцо меньшей Тени", + "category": "ring", + "displaytype": 2, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackChance": 25, + "increaseCriticalSkill": 6, + "increaseAttackDamage": { + "min": 4, + "max": 7 + }, + "increaseBlockChance": 5, + "addedConditions": [ + { + "condition": "regen", + "magnitude": 1 + } + ] + } + } +] diff --git a/AndorsTrail/res/raw-ru/itemlist_v069.json b/AndorsTrail/res/raw-ru/itemlist_v069.json new file mode 100644 index 000000000..cdf8edea8 --- /dev/null +++ b/AndorsTrail/res/raw-ru/itemlist_v069.json @@ -0,0 +1,464 @@ +[ + { + "id": "rapier_lifesteal", + "iconID": "items_weapons:71", + "name": "Рапира-душегуб", + "category": "rapier", + "displaytype": 2, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxHP": 5, + "increaseAttackCost": 5, + "increaseAttackChance": 21, + "increaseAttackDamage": { + "min": 1, + "max": 6 + } + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 0, + "max": 3 + } + }, + "killEffect": { + "increaseCurrentHP": { + "min": 3, + "max": 3 + } + } + }, + { + "id": "dagger_barbed", + "iconID": "items_weapons:17", + "name": "Кинжал с зазубринами", + "category": "dagger", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 15, + "increaseBlockChance": 5 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "bleeding_wound", + "magnitude": 1, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "elytharan_redeemer", + "iconID": "items_weapons:70", + "name": "Элитаран-Спаситель", + "category": "2hsword", + "displaytype": 2, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxAP": 2, + "increaseAttackCost": 5, + "increaseAttackChance": 25, + "increaseAttackDamage": { + "min": 3, + "max": 8 + }, + "increaseBlockChance": 5, + "addedConditions": [ + { + "condition": "bless", + "magnitude": 1 + } + ] + } + }, + { + "id": "clouded_rage", + "iconID": "items_weapons:71", + "name": "Меч ярости Тени", + "category": "rapier", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 21, + "increaseAttackDamage": { + "min": 3, + "max": 6 + }, + "increaseBlockChance": 5 + }, + "killEffect": { + "conditionsSource": [ + { + "condition": "rage_minor", + "magnitude": 1, + "duration": 1, + "chance": 50 + } + ] + } + }, + { + "id": "shadow_slayer", + "iconID": "items_weapons:60", + "name": "Тень убийцы", + "category": "axe2h", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxAP": 2, + "increaseAttackCost": 7, + "increaseAttackChance": 25, + "increaseCriticalSkill": 10, + "setCriticalMultiplier": 2, + "increaseAttackDamage": { + "min": 5, + "max": 9 + } + }, + "killEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "ring_shadow_embrace", + "iconID": "items_jewelry:0", + "name": "Кольцо объятия Тени", + "category": "ring", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxHP": 20, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 2, + "max": 2 + } + } + }, + { + "id": "bwm_dagger", + "iconID": "items_weapons:19", + "name": "Блеквотский кинжал", + "category": "dagger", + "displaytype": 4, + "hasManualPrice": 1, + "baseMarketCost": 539, + "equipEffect": { + "increaseAttackCost": 3, + "increaseAttackChance": 40, + "increaseAttackDamage": { + "min": 1, + "max": 1 + }, + "increaseBlockChance": 5, + "addedConditions": [ + { + "condition": "blackwater_misery", + "magnitude": 1 + } + ] + } + }, + { + "id": "bwm_dagger_venom", + "iconID": "items_weapons:19", + "name": "Блеквотский отравленный кинжал", + "category": "dagger", + "displaytype": 4, + "hasManualPrice": 1, + "baseMarketCost": 1552, + "equipEffect": { + "increaseAttackCost": 3, + "increaseAttackChance": 45, + "increaseAttackDamage": { + "min": 1, + "max": 1 + }, + "addedConditions": [ + { + "condition": "blackwater_misery", + "magnitude": 1 + } + ] + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_weak", + "magnitude": 1, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "bwm_ironsword", + "iconID": "items_weapons:0", + "name": "Блеквотский железный меч", + "category": "lsword", + "displaytype": 4, + "hasManualPrice": 1, + "baseMarketCost": 1224, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 50, + "increaseAttackDamage": { + "min": 3, + "max": 7 + }, + "increaseBlockChance": 5, + "addedConditions": [ + { + "condition": "blackwater_misery", + "magnitude": 1 + } + ] + } + }, + { + "id": "bwm_leather_armour", + "iconID": "items_armours:15", + "name": "Блеквотская кожаная броня", + "category": "bdy_lthr", + "displaytype": 4, + "hasManualPrice": 1, + "baseMarketCost": 2551, + "equipEffect": { + "increaseBlockChance": 25, + "increaseDamageResistance": 1, + "addedConditions": [ + { + "condition": "blackwater_misery", + "magnitude": 1 + } + ] + } + }, + { + "id": "bwm_leather_cap", + "iconID": "items_armours:24", + "name": "Блеквотская шапка из кожи", + "category": "hd_lthr", + "displaytype": 4, + "hasManualPrice": 1, + "baseMarketCost": 722, + "equipEffect": { + "increaseMaxHP": 5, + "increaseBlockChance": 21, + "addedConditions": [ + { + "condition": "blackwater_misery", + "magnitude": 1 + } + ] + } + }, + { + "id": "bwm_combat_ring", + "iconID": "items_jewelry:2", + "name": "Блеквотское боевое кольцо", + "category": "ring", + "displaytype": 4, + "hasManualPrice": 1, + "baseMarketCost": 595, + "equipEffect": { + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 0, + "max": 7 + }, + "addedConditions": [ + { + "condition": "blackwater_misery", + "magnitude": 1 + } + ] + } + }, + { + "id": "bwm_brew", + "iconID": "items_consumables:51", + "name": "Блеквотский напиток", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 57, + "useEffect": { + "increaseCurrentHP": { + "min": 15, + "max": 15 + }, + "conditionsSource": [ + { + "condition": "intoxicated", + "magnitude": 1, + "duration": 10, + "chance": 100 + } + ] + } + }, + { + "id": "woodcutter_hatchet", + "iconID": "items_weapons:57", + "name": "Топор дровосека", + "category": "axe", + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 9, + "increaseAttackDamage": { + "min": 6, + "max": 12 + } + } + }, + { + "id": "woodcutter_boots", + "iconID": "items_armours:30", + "name": "Сапоги дровосека", + "category": "feet_lthr", + "baseMarketCost": 873, + "equipEffect": { + "increaseMaxHP": 1, + "increaseAttackChance": 3, + "increaseBlockChance": 8 + } + }, + { + "id": "heavy_club", + "iconID": "items_weapons:44", + "name": "Тяжелая булава", + "category": "mace", + "baseMarketCost": 1229, + "equipEffect": { + "increaseAttackCost": 7, + "increaseAttackChance": 15, + "increaseCriticalSkill": 5, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 2, + "max": 15 + } + } + }, + { + "id": "pot_speed_1", + "iconID": "items_consumables:41", + "name": "Малое зелье скорости", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 261, + "useEffect": { + "conditionsSource": [ + { + "condition": "speed_minor", + "magnitude": 1, + "duration": 5, + "chance": 100 + } + ] + } + }, + { + "id": "pot_poison_weak", + "iconID": "items_consumables:40", + "name": "Слабый яд", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 125, + "useEffect": { + "conditionsSource": [ + { + "condition": "poison_weak", + "magnitude": 1, + "duration": 5, + "chance": 100 + } + ] + } + }, + { + "id": "pot_poison_weak_antidote", + "iconID": "items_consumables:54", + "name": "Противоядие от слабого яда", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 337, + "useEffect": { + "conditionsSource": [ + { + "condition": "poison_weak", + "magnitude": -99, + "chance": 100 + } + ] + } + }, + { + "id": "pot_bleeding_ointment", + "iconID": "items_consumables:35", + "name": "Мазь от кровотечения", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 310, + "useEffect": { + "conditionsSource": [ + { + "condition": "bleeding_wound", + "magnitude": -99, + "chance": 100 + } + ] + } + }, + { + "id": "pot_fatigue_restore", + "iconID": "items_consumables:41", + "name": "Зелье от усталости", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 210, + "useEffect": { + "conditionsSource": [ + { + "condition": "fatigue_minor", + "magnitude": -99, + "chance": 100 + } + ] + } + }, + { + "id": "pot_blind_rage", + "iconID": "items_consumables:63", + "name": "Зелье слепой ярости", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 495, + "useEffect": { + "conditionsSource": [ + { + "condition": "rage_minor", + "magnitude": 1, + "duration": 5, + "chance": 100 + } + ] + } + } +] diff --git a/AndorsTrail/res/raw-ru/itemlist_v069_2.json b/AndorsTrail/res/raw-ru/itemlist_v069_2.json new file mode 100644 index 000000000..133aef1e1 --- /dev/null +++ b/AndorsTrail/res/raw-ru/itemlist_v069_2.json @@ -0,0 +1,38 @@ +[ + { + "id": "rusted_iron_sword", + "iconID": "items_weapons:0", + "name": "Ржавый железный меч", + "category": "lsword", + "baseMarketCost": 52, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "broken_buckler", + "iconID": "items_armours:0", + "name": "Разбитый деревянный круглый щит", + "category": "buckler", + "baseMarketCost": 120, + "equipEffect": { + "increaseAttackChance": -5, + "increaseBlockChance": 1 + } + }, + { + "id": "used_gloves", + "iconID": "items_armours:35", + "name": "Окровавленные перчатки", + "category": "hnd_lthr", + "baseMarketCost": 56, + "equipEffect": { + "increaseBlockChance": 1 + } + } +] diff --git a/AndorsTrail/res/raw-ru/itemlist_v069_questitems.json b/AndorsTrail/res/raw-ru/itemlist_v069_questitems.json new file mode 100644 index 000000000..071c940c0 --- /dev/null +++ b/AndorsTrail/res/raw-ru/itemlist_v069_questitems.json @@ -0,0 +1,58 @@ +[ + { + "id": "bwm_claws", + "iconID": "items_misc:47", + "name": "Коготь белой змеи", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 35 + }, + { + "id": "bwm_permit", + "iconID": "items_books:8", + "name": "Поддельные бумаги для Блеквота", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "bjorgur_dagger", + "iconID": "items_weapons:14", + "name": "Фамильный кинжал Бьоргура", + "category": "dagger", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackCost": 5 + } + }, + { + "id": "q_kazaul_vial", + "iconID": "items_consumables:57", + "name": "Пузырек очищенного духа", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "guthbered_id", + "iconID": "items_jewelry:0", + "name": "Кольцо Гатбереда", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "harlenn_id", + "iconID": "items_jewelry:0", + "name": "Кольцо Харленна", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + } +] diff --git a/AndorsTrail/res/raw-ru/itemlist_weapons.json b/AndorsTrail/res/raw-ru/itemlist_weapons.json new file mode 100644 index 000000000..e70311f4d --- /dev/null +++ b/AndorsTrail/res/raw-ru/itemlist_weapons.json @@ -0,0 +1,255 @@ +[ + { + "id": "club1", + "iconID": "items_weapons:42", + "name": "Дубинка", + "category": "club", + "baseMarketCost": 7, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "club3", + "iconID": "items_weapons:44", + "name": "Палица", + "category": "mace", + "baseMarketCost": 253, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 2, + "max": 7 + } + } + }, + { + "id": "ironsword0", + "iconID": "items_weapons:0", + "name": "Скверный железный меч", + "category": "lsword", + "baseMarketCost": 12, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "hammer0", + "iconID": "items_weapons:45", + "name": "Железный молот", + "category": "hammer", + "baseMarketCost": 12, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "hammer1", + "iconID": "items_weapons:45", + "name": "Большой молот", + "category": "hammer2h", + "baseMarketCost": 121, + "equipEffect": { + "increaseAttackCost": 10, + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 4, + "max": 7 + } + } + }, + { + "id": "dagger0", + "iconID": "items_weapons:14", + "name": "Железный кинжал", + "category": "dagger", + "baseMarketCost": 12, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "dagger1", + "iconID": "items_weapons:14", + "name": "Острый железный кинжал", + "category": "dagger", + "baseMarketCost": 53, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 20, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "dagger2", + "iconID": "items_weapons:14", + "name": "Превосходный железный кинжал", + "category": "dagger", + "baseMarketCost": 70, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 25, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "shortsword1", + "iconID": "items_weapons:15", + "name": "Железный короткий меч", + "category": "ssword", + "baseMarketCost": 78, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 15, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "ironsword1", + "iconID": "items_weapons:0", + "name": "Железный меч", + "category": "lsword", + "baseMarketCost": 78, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 1, + "max": 3 + } + } + }, + { + "id": "ironsword2", + "iconID": "items_weapons:1", + "name": "Железный полуторный меч", + "category": "lsword", + "baseMarketCost": 121, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 1, + "max": 4 + } + } + }, + { + "id": "broadsword1", + "iconID": "items_weapons:5", + "name": "Железный палаш", + "category": "bsword", + "baseMarketCost": 251, + "equipEffect": { + "increaseAttackCost": 7, + "increaseAttackChance": 2, + "increaseAttackDamage": { + "min": 1, + "max": 10 + } + } + }, + { + "id": "broadsword2", + "iconID": "items_weapons:6", + "name": "Стальной палаш", + "category": "bsword", + "baseMarketCost": 582, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 15, + "increaseAttackDamage": { + "min": 3, + "max": 10 + } + } + }, + { + "id": "steelsword1", + "iconID": "items_weapons:7", + "name": "Стальной меч", + "category": "lsword", + "baseMarketCost": 874, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 24, + "increaseAttackDamage": { + "min": 3, + "max": 7 + } + } + }, + { + "id": "axe1", + "iconID": "items_weapons:56", + "name": "Топор для колки дров", + "category": "axe", + "baseMarketCost": 24, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 1, + "max": 3 + } + } + }, + { + "id": "axe2", + "iconID": "items_weapons:56", + "name": "Железный топор", + "category": "axe", + "baseMarketCost": 312, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 2, + "max": 5 + } + } + }, + { + "id": "quickdagger1", + "iconID": "items_weapons:14", + "name": "Кинжал быстрого удара", + "category": "dagger", + "displaytype": 4, + "baseMarketCost": 512, + "equipEffect": { + "increaseAttackCost": 3, + "increaseAttackChance": 20, + "increaseBlockChance": -20 + } + } +] diff --git a/AndorsTrail/res/raw-ru/monsterlist_crossglen_animals.json b/AndorsTrail/res/raw-ru/monsterlist_crossglen_animals.json new file mode 100644 index 000000000..d7230b9ea --- /dev/null +++ b/AndorsTrail/res/raw-ru/monsterlist_crossglen_animals.json @@ -0,0 +1,469 @@ +[ + { + "id": "tiny_rat", + "iconID": "monsters_rats:0", + "name": "Маленькая крыса", + "spawnGroup": "trainingrat", + "monsterClass": 4, + "unique": 1, + "maxHP": 2, + "attackCost": 10, + "attackChance": 50, + "droplistID": "trainingrat", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "cave_rat", + "iconID": "monsters_rats:1", + "name": "Пещерная крыса", + "spawnGroup": "crossglen_caverat", + "monsterClass": 4, + "maxHP": 5, + "attackCost": 10, + "attackChance": 90, + "droplistID": "rat", + "attackDamage": { + "min": 2, + "max": 2 + } + }, + { + "id": "tough_cave_rat", + "iconID": "monsters_rats:1", + "name": "Крутая пещерная крыса", + "spawnGroup": "crossglen_caverat2", + "monsterClass": 4, + "maxHP": 5, + "attackCost": 5, + "attackChance": 90, + "droplistID": "rat", + "attackDamage": { + "min": 3, + "max": 3 + } + }, + { + "id": "strong_cave_rat", + "iconID": "monsters_rats:3", + "name": "Сильная пещерная крыса", + "spawnGroup": "crossglen_caveboss", + "monsterClass": 4, + "unique": 1, + "maxHP": 20, + "attackCost": 5, + "attackChance": 100, + "blockChance": 10, + "droplistID": "caveratboss", + "attackDamage": { + "min": 2, + "max": 4 + } + }, + { + "id": "black_ant", + "iconID": "monsters_insects:0", + "name": "Черный муравей", + "spawnGroup": "crossglen_ant", + "monsterClass": 1, + "maxHP": 3, + "attackCost": 10, + "attackChance": 70, + "droplistID": "insect", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "small_wasp", + "iconID": "monsters_insects:1", + "name": "Малая оса", + "spawnGroup": "crossglen_wasp", + "monsterClass": 1, + "maxHP": 4, + "attackCost": 10, + "attackChance": 70, + "droplistID": "wasp", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "beetle", + "iconID": "monsters_insects:4", + "name": "Жук", + "spawnGroup": "crossglen_beetle", + "monsterClass": 1, + "maxHP": 4, + "attackCost": 10, + "attackChance": 70, + "droplistID": "insect", + "attackDamage": { + "min": 3, + "max": 3 + } + }, + { + "id": "forest_wasp", + "iconID": "monsters_insects:1", + "name": "Лесная оса", + "spawnGroup": "forestwasp", + "monsterClass": 1, + "maxHP": 6, + "attackCost": 10, + "attackChance": 70, + "droplistID": "wasp", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "forest_ant", + "iconID": "monsters_insects:0", + "name": "Лесной муравей", + "spawnGroup": "forestant", + "monsterClass": 1, + "maxHP": 4, + "attackCost": 10, + "attackChance": 90, + "blockChance": 10, + "droplistID": "insect", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "yellow_forest_ant", + "iconID": "monsters_insects:2", + "name": "Желтый лесной муравей", + "spawnGroup": "forestant", + "monsterClass": 1, + "maxHP": 5, + "attackCost": 10, + "attackChance": 100, + "blockChance": 15, + "droplistID": "insect", + "attackDamage": { + "min": 2, + "max": 2 + } + }, + { + "id": "small_rabid_dog", + "iconID": "monsters_dogs:1", + "name": "Малая бешеная собака", + "spawnGroup": "forestdog", + "monsterClass": 4, + "maxHP": 6, + "attackCost": 10, + "attackChance": 90, + "droplistID": "canine", + "attackDamage": { + "min": 2, + "max": 2 + } + }, + { + "id": "forest_snake", + "iconID": "monsters_snakes:1", + "name": "Лесная змея", + "spawnGroup": "forestsnake", + "monsterClass": 7, + "maxHP": 7, + "attackCost": 10, + "attackChance": 110, + "blockChance": 10, + "droplistID": "snake", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "young_cave_snake", + "iconID": "monsters_snakes:3", + "name": "Молодая пещерная змея", + "spawnGroup": "cavesnake1", + "monsterClass": 7, + "maxHP": 8, + "attackCost": 5, + "attackChance": 110, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 10, + "droplistID": "snake", + "attackDamage": { + "min": 2, + "max": 2 + } + }, + { + "id": "cave_snake", + "iconID": "monsters_snakes:3", + "name": "Пещерная змея", + "spawnGroup": "cavesnake1", + "monsterClass": 7, + "maxHP": 12, + "attackCost": 5, + "attackChance": 110, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 15, + "droplistID": "snake", + "attackDamage": { + "min": 2, + "max": 2 + } + }, + { + "id": "venomous_cave_snake", + "iconID": "monsters_snakes:3", + "name": "Ядовитая пещерная змея", + "spawnGroup": "cavesnake2", + "monsterClass": 7, + "maxHP": 15, + "maxAP": 10, + "attackCost": 5, + "attackChance": 110, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 10, + "droplistID": "snake", + "attackDamage": { + "min": 2, + "max": 2 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_weak", + "magnitude": 1, + "duration": 1, + "chance": 10 + } + ] + } + }, + { + "id": "tough_cave_snake", + "iconID": "monsters_snakes:3", + "name": "Крутая пещерная змея", + "spawnGroup": "cavesnake2", + "monsterClass": 7, + "maxHP": 21, + "attackCost": 5, + "attackChance": 110, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 15, + "droplistID": "snake", + "attackDamage": { + "min": 2, + "max": 2 + } + }, + { + "id": "basilisk", + "iconID": "monsters_rats:4", + "name": "Василиск", + "spawnGroup": "cavesnake2_boss", + "monsterClass": 7, + "maxHP": 40, + "attackCost": 7, + "attackChance": 40, + "blockChance": 50, + "damageResistance": 2, + "droplistID": "cavecritter", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "snake_servant", + "iconID": "monsters_liches:0", + "name": "Смотритель за змеями", + "spawnGroup": "cavesnake3", + "monsterClass": 6, + "maxHP": 35, + "attackCost": 5, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 3, + "blockChance": 10, + "damageResistance": 1, + "droplistID": "lich1", + "attackDamage": { + "min": 2, + "max": 3 + } + }, + { + "id": "snake_master", + "iconID": "monsters_liches:1", + "name": "Хозяин змей", + "spawnGroup": "cavesnake3_boss", + "monsterClass": 6, + "unique": 1, + "maxHP": 55, + "attackCost": 5, + "attackChance": 60, + "criticalSkill": 200, + "criticalMultiplier": 3, + "blockChance": 10, + "damageResistance": 4, + "droplistID": "snakemaster", + "phraseID": "snakemaster", + "attackDamage": { + "min": 1, + "max": 4 + } + }, + { + "id": "rabid_boar", + "iconID": "monsters_dogs:6", + "name": "Бешеный кабан", + "spawnGroup": "forestboar", + "monsterClass": 4, + "maxHP": 20, + "attackCost": 5, + "attackChance": 110, + "blockChance": 30, + "droplistID": "canineboss", + "attackDamage": { + "min": 3, + "max": 3 + } + }, + { + "id": "rabid_fox", + "iconID": "monsters_dogs:3", + "name": "Бешеный лис", + "spawnGroup": "fox1", + "monsterClass": 4, + "maxHP": 25, + "attackCost": 5, + "attackChance": 100, + "blockChance": 50, + "droplistID": "canine", + "attackDamage": { + "min": 3, + "max": 3 + } + }, + { + "id": "yellow_cave_ant", + "iconID": "monsters_insects:2", + "name": "Желтый пещерный муравей", + "spawnGroup": "pitcave1", + "monsterClass": 1, + "maxHP": 20, + "attackCost": 3, + "attackChance": 30, + "blockChance": 80, + "droplistID": "insect", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "young_teeth_critter", + "iconID": "monsters_misc:0", + "name": "Молодая зубастая тварь", + "spawnGroup": "pitcave2", + "monsterClass": 7, + "maxHP": 15, + "attackCost": 2, + "attackChance": 50, + "blockChance": 70, + "droplistID": "cavecritter", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "teeth_critter", + "iconID": "monsters_misc:0", + "name": "Зубастая тварь", + "spawnGroup": "pitcave2", + "monsterClass": 7, + "maxHP": 25, + "attackCost": 2, + "attackChance": 60, + "criticalSkill": 10, + "criticalMultiplier": 3, + "blockChance": 70, + "droplistID": "cavecritter", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "young_minotaur", + "iconID": "monsters_misc:5", + "name": "Молодой минотавр", + "spawnGroup": "pitcave2", + "monsterClass": 5, + "maxHP": 45, + "attackCost": 6, + "attackChance": 20, + "criticalSkill": 40, + "criticalMultiplier": 3, + "blockChance": 50, + "damageResistance": 2, + "droplistID": "cavemonster", + "attackDamage": { + "min": 4, + "max": 4 + } + }, + { + "id": "strong_minotaur", + "iconID": "monsters_misc:5", + "name": "Сильный минотавр", + "spawnGroup": "pitcave2_boss", + "monsterClass": 5, + "maxHP": 53, + "attackCost": 6, + "attackChance": 40, + "criticalSkill": 50, + "criticalMultiplier": 3, + "blockChance": 50, + "damageResistance": 2, + "droplistID": "cavemonster", + "attackDamage": { + "min": 5, + "max": 5 + } + }, + { + "id": "irogotu", + "iconID": "monsters_liches:0", + "name": "Ирогот", + "spawnGroup": "pitcave_boss", + "monsterClass": 6, + "unique": 1, + "maxHP": 61, + "attackCost": 3, + "attackChance": 50, + "criticalSkill": 40, + "criticalMultiplier": 3, + "blockChance": 70, + "damageResistance": 4, + "droplistID": "irogotu", + "phraseID": "irogotu", + "attackDamage": { + "min": 2, + "max": 5 + } + } +] diff --git a/AndorsTrail/res/raw-ru/monsterlist_crossglen_npcs.json b/AndorsTrail/res/raw-ru/monsterlist_crossglen_npcs.json new file mode 100644 index 000000000..040911d15 --- /dev/null +++ b/AndorsTrail/res/raw-ru/monsterlist_crossglen_npcs.json @@ -0,0 +1,119 @@ +[ + { + "id": "mikhail", + "iconID": "monsters_mage2:0", + "name": "Михаил", + "spawnGroup": "mikhail", + "monsterClass": 0, + "phraseID": "mikhail_start_select" + }, + { + "id": "leta", + "iconID": "monsters_men:2", + "name": "Лета", + "spawnGroup": "leta", + "monsterClass": 0, + "phraseID": "leta1" + }, + { + "id": "audir", + "iconID": "monsters_men:0", + "name": "Аудир", + "spawnGroup": "audir", + "monsterClass": 0, + "droplistID": "shop_audir", + "phraseID": "audir1" + }, + { + "id": "arambold", + "iconID": "monsters_men:3", + "name": "Арамболд", + "spawnGroup": "arambold", + "monsterClass": 0, + "droplistID": "shop_arambold", + "phraseID": "arambold1" + }, + { + "id": "tharal", + "iconID": "monsters_men:4", + "name": "Тарал", + "spawnGroup": "tharal", + "monsterClass": 0, + "droplistID": "shop_tharal", + "phraseID": "tharal1" + }, + { + "id": "drunk", + "iconID": "monsters_rltiles3:14", + "name": "Пьяница", + "spawnGroup": "drunk", + "monsterClass": 0, + "phraseID": "drunk1" + }, + { + "id": "mara", + "iconID": "monsters_men:7", + "name": "Мара", + "spawnGroup": "mara", + "monsterClass": 0, + "droplistID": "shop_mara", + "phraseID": "mara1" + }, + { + "id": "gruil", + "iconID": "monsters_rogue1:0", + "name": "Груил", + "spawnGroup": "gruil", + "monsterClass": 0, + "droplistID": "shop_gruil", + "phraseID": "gruil1" + }, + { + "id": "leonid", + "iconID": "monsters_men:3", + "name": "Леонид", + "spawnGroup": "leonid", + "monsterClass": 0, + "phraseID": "leonid1" + }, + { + "id": "farmer", + "iconID": "monsters_man1:0", + "name": "Фермер", + "spawnGroup": "crossglen_farmer1", + "monsterClass": 0, + "phraseID": "farm1" + }, + { + "id": "tired_farmer", + "iconID": "monsters_man1:0", + "name": "Усталый фермер", + "spawnGroup": "crossglen_farmer2", + "monsterClass": 0, + "phraseID": "farm2" + }, + { + "id": "oromir", + "iconID": "monsters_man1:0", + "name": "Оромир", + "spawnGroup": "oromir", + "monsterClass": 0, + "phraseID": "oromir1" + }, + { + "id": "odair", + "iconID": "monsters_men:8", + "name": "Одаир", + "spawnGroup": "odair", + "monsterClass": 0, + "phraseID": "odair1" + }, + { + "id": "jan", + "iconID": "monsters_rltiles3:14", + "name": "Ян", + "spawnGroup": "jan", + "monsterClass": 0, + "phraseID": "jan_start_select" + } +] diff --git a/AndorsTrail/res/raw-ru/monsterlist_fallhaven_animals.json b/AndorsTrail/res/raw-ru/monsterlist_fallhaven_animals.json new file mode 100644 index 000000000..0bc9a404e --- /dev/null +++ b/AndorsTrail/res/raw-ru/monsterlist_fallhaven_animals.json @@ -0,0 +1,292 @@ +[ + { + "id": "lost_spirit", + "iconID": "monsters_rltiles2:45", + "name": "Потерянный дух", + "spawnGroup": "minorhaunt1", + "monsterClass": 8, + "maxHP": 15, + "attackCost": 10, + "attackChance": 50, + "blockChance": 10, + "damageResistance": 3, + "droplistID": "haunt", + "phraseID": "haunt", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "lost_soul", + "iconID": "monsters_rltiles2:45", + "name": "Потерянная душа", + "spawnGroup": "minorhaunt2", + "monsterClass": 8, + "maxHP": 15, + "attackCost": 10, + "attackChance": 50, + "blockChance": 10, + "damageResistance": 4, + "droplistID": "haunt", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "haunting", + "iconID": "monsters_ghost1:0", + "name": "Преследующий", + "spawnGroup": "haunt3", + "monsterClass": 8, + "maxHP": 31, + "maxAP": 10, + "moveCost": 10, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 30, + "damageResistance": 1, + "droplistID": "haunt", + "attackDamage": { + "min": 1, + "max": 5 + } + }, + { + "id": "skeletal_warrior", + "iconID": "monsters_skeleton1:0", + "name": "Скелет-воин", + "spawnGroup": "skeleton1", + "monsterClass": 3, + "maxHP": 52, + "maxAP": 10, + "moveCost": 10, + "attackCost": 5, + "attackChance": 60, + "blockChance": 40, + "damageResistance": 1, + "droplistID": "skeleton", + "attackDamage": { + "min": 1, + "max": 3 + } + }, + { + "id": "skeletal_master", + "iconID": "monsters_skeleton2:0", + "name": "Скелет-вождь", + "spawnGroup": "skeletonmaster", + "monsterClass": 3, + "maxHP": 52, + "maxAP": 10, + "moveCost": 10, + "attackCost": 5, + "attackChance": 70, + "blockChance": 30, + "damageResistance": 2, + "droplistID": "skeleton", + "attackDamage": { + "min": 1, + "max": 3 + } + }, + { + "id": "skeleton", + "iconID": "monsters_skeleton1:0", + "name": "Скелет", + "spawnGroup": "skeleton1", + "monsterClass": 3, + "maxHP": 35, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 60, + "blockChance": 40, + "droplistID": "skeleton", + "attackDamage": { + "min": 1, + "max": 4 + } + }, + { + "id": "guardian_of_the_catacombs", + "iconID": "monsters_rltiles2:45", + "name": "Хранитель катакомб", + "spawnGroup": "catacombguard1", + "monsterClass": 8, + "unique": 1, + "maxHP": 6, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 10, + "blockChance": 10, + "damageResistance": 3, + "droplistID": "catacombguard", + "phraseID": "catacombguard", + "attackDamage": { + "min": 1, + "max": 6 + } + }, + { + "id": "catacomb_rat", + "iconID": "monsters_rats:0", + "name": "Катакомбная крыса", + "spawnGroup": "catacombrat1", + "monsterClass": 4, + "maxHP": 15, + "maxAP": 10, + "moveCost": 10, + "attackCost": 3, + "attackChance": 60, + "blockChance": 40, + "droplistID": "catacombrat", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "large_catacomb_rat", + "iconID": "monsters_rats:3", + "name": "Большие катакомбная крыса", + "spawnGroup": "catacombrat1", + "monsterClass": 4, + "maxHP": 21, + "maxAP": 10, + "moveCost": 10, + "attackCost": 3, + "attackChance": 60, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 40, + "droplistID": "catacombrat", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "ghostly_visage", + "iconID": "monsters_ghost1:0", + "name": "Призрачный лик", + "spawnGroup": "catacombguard2", + "monsterClass": 8, + "maxHP": 16, + "maxAP": 10, + "moveCost": 10, + "attackCost": 5, + "attackChance": 20, + "blockChance": 20, + "damageResistance": 2, + "droplistID": "catacombguard", + "attackDamage": { + "min": 1, + "max": 4 + } + }, + { + "id": "spectre", + "iconID": "monsters_rltiles2:45", + "name": "Призрак", + "spawnGroup": "catacombguard2", + "monsterClass": 8, + "maxHP": 15, + "maxAP": 10, + "moveCost": 10, + "attackCost": 3, + "attackChance": 50, + "blockChance": 60, + "damageResistance": 2, + "droplistID": "catacombguard", + "attackDamage": { + "min": 1, + "max": 5 + } + }, + { + "id": "apparition", + "iconID": "monsters_rltiles2:45", + "name": "Привидение", + "spawnGroup": "catacombguard3", + "monsterClass": 8, + "maxHP": 17, + "maxAP": 10, + "moveCost": 10, + "attackCost": 3, + "blockChance": 70, + "damageResistance": 2, + "droplistID": "catacombguard", + "attackDamage": { + "min": 1, + "max": 5 + } + }, + { + "id": "shade", + "iconID": "monsters_ghost1:0", + "name": "Бесплотный дух", + "spawnGroup": "catacombguard3", + "monsterClass": 8, + "maxHP": 16, + "maxAP": 10, + "moveCost": 10, + "attackCost": 5, + "attackChance": 20, + "blockChance": 20, + "damageResistance": 3, + "droplistID": "catacombguard", + "attackDamage": { + "min": 1, + "max": 4 + } + }, + { + "id": "young_gargoyle", + "iconID": "monsters_misc:2", + "name": "Молодые горгульи", + "spawnGroup": "catacombguard3", + "monsterClass": 3, + "maxHP": 35, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 110, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 70, + "damageResistance": 1, + "droplistID": "catacombguard", + "attackDamage": { + "min": 2, + "max": 5 + } + }, + { + "id": "ghost_of_luthor", + "iconID": "monsters_liches:2", + "name": "Призрак Лютора", + "spawnGroup": "luthor", + "monsterClass": 6, + "unique": 1, + "maxHP": 86, + "maxAP": 10, + "moveCost": 10, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 15, + "criticalMultiplier": 2, + "blockChance": 50, + "damageResistance": 3, + "droplistID": "luthor", + "phraseID": "luthor", + "attackDamage": { + "min": 2, + "max": 5 + } + } +] diff --git a/AndorsTrail/res/raw-ru/monsterlist_fallhaven_npcs.json b/AndorsTrail/res/raw-ru/monsterlist_fallhaven_npcs.json new file mode 100644 index 000000000..b57d61b0d --- /dev/null +++ b/AndorsTrail/res/raw-ru/monsterlist_fallhaven_npcs.json @@ -0,0 +1,333 @@ +[ + { + "id": "warden", + "iconID": "monsters_men:3", + "name": "Надзиратель", + "spawnGroup": "fallhaven_warden", + "monsterClass": 0, + "phraseID": "fallhaven_warden_select_1" + }, + { + "id": "guard", + "iconID": "monsters_rltiles3:14", + "name": "Охранник", + "spawnGroup": "fallhaven_guard", + "monsterClass": 0, + "phraseID": "fallhaven_guard" + }, + { + "id": "acolyte", + "iconID": "monsters_men:4", + "name": "Псаломщик", + "spawnGroup": "fallhaven_priest", + "monsterClass": 0, + "phraseID": "fallhaven_priest" + }, + { + "id": "bearded_citizen", + "iconID": "monsters_man1:0", + "name": "Бородатый горожанин", + "spawnGroup": "fallhaven_citizen1", + "monsterClass": 0, + "phraseID": "fallhaven_citizen1" + }, + { + "id": "old_citizen", + "iconID": "monsters_men:2", + "name": "Старый горожанин", + "spawnGroup": "fallhaven_citizen2", + "monsterClass": 0, + "phraseID": "fallhaven_citizen2" + }, + { + "id": "tired_citizen", + "iconID": "monsters_men:7", + "name": "Усталый горожанин", + "spawnGroup": "fallhaven_citizen4", + "monsterClass": 0, + "phraseID": "fallhaven_citizen4" + }, + { + "id": "citizen", + "iconID": "monsters_man1:0", + "name": "Горожанин", + "spawnGroup": "fallhaven_citizen3", + "monsterClass": 0, + "phraseID": "fallhaven_citizen3" + }, + { + "id": "grumpy_citizen", + "iconID": "monsters_men:2", + "name": "Сердитый горожанин", + "spawnGroup": "fallhaven_citizen5", + "monsterClass": 0, + "phraseID": "fallhaven_citizen5" + }, + { + "id": "blond_citizen", + "iconID": "monsters_men:7", + "name": "Светловолосый горожанин", + "spawnGroup": "fallhaven_citizen6", + "monsterClass": 0, + "phraseID": "fallhaven_citizen6" + }, + { + "id": "bucus", + "iconID": "monsters_rogue1:0", + "name": "Букус", + "spawnGroup": "bucus", + "monsterClass": 0, + "phraseID": "bucus_welcome" + }, + { + "id": "drunkard", + "iconID": "monsters_men:0", + "name": "Пьяница", + "spawnGroup": "fallhaven_drunk", + "monsterClass": 0, + "phraseID": "fallhaven_drunk" + }, + { + "id": "old_man", + "iconID": "monsters_men:5", + "name": "Старик", + "spawnGroup": "fallhaven_oldman", + "monsterClass": 0, + "phraseID": "fallhaven_oldman" + }, + { + "id": "nocmar", + "iconID": "monsters_men:8", + "name": "Нокмар", + "spawnGroup": "nocmar", + "monsterClass": 0, + "droplistID": "nocmar", + "phraseID": "nocmar" + }, + { + "id": "prisoner", + "iconID": "monsters_rogue1:0", + "name": "Заключенный", + "spawnGroup": "fallhaven_prisoner", + "monsterClass": 0, + "maxHP": 1, + "maxAP": 1, + "moveCost": 1, + "attackCost": 1, + "attackChance": 0 + }, + { + "id": "ganos", + "iconID": "monsters_rogue1:0", + "name": "Ганос", + "spawnGroup": "ganos", + "monsterClass": 0, + "droplistID": "shop_ganos", + "phraseID": "ganos" + }, + { + "id": "arcir", + "iconID": "monsters_mage2:0", + "name": "Арцир", + "spawnGroup": "arcir", + "monsterClass": 0, + "phraseID": "arcir_start" + }, + { + "id": "athamyr", + "iconID": "monsters_men:4", + "name": "Атамир", + "spawnGroup": "athamyr", + "monsterClass": 0, + "phraseID": "athamyr" + }, + { + "id": "thoronir", + "iconID": "monsters_men2:8", + "name": "Форонир", + "spawnGroup": "thoronir", + "monsterClass": 0, + "droplistID": "shop_thoronir", + "phraseID": "thoronir_default" + }, + { + "id": "chapelgoer", + "iconID": "monsters_men:6", + "name": "Сектант", + "spawnGroup": "chapelgoer", + "monsterClass": 0, + "phraseID": "chapelgoer" + }, + { + "id": "potion_merchant", + "iconID": "monsters_mage2:0", + "name": "Торговец зельями", + "spawnGroup": "fallhaven_potions", + "monsterClass": 0, + "droplistID": "shop_fallhaven_potions", + "phraseID": "fallhaven_potions" + }, + { + "id": "tailor", + "iconID": "monsters_men2:0", + "name": "Портной", + "spawnGroup": "fallhaven_clothes", + "monsterClass": 0, + "droplistID": "shop_fallhaven_clothes", + "phraseID": "fallhaven_clothes" + }, + { + "id": "bela", + "iconID": "monsters_men:7", + "name": "Бела", + "spawnGroup": "bela", + "monsterClass": 0, + "droplistID": "shop_bela", + "phraseID": "bela" + }, + { + "id": "larcal", + "iconID": "monsters_men2:2", + "name": "Ларкар", + "spawnGroup": "larcal", + "monsterClass": 0, + "unique": 1, + "maxHP": 51, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 25, + "blockChance": 50, + "droplistID": "larcal", + "phraseID": "larcal", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "gaela", + "iconID": "monsters_men2:9", + "name": "Гаэла", + "spawnGroup": "gaela", + "monsterClass": 0, + "phraseID": "gaela" + }, + { + "id": "unnmir", + "iconID": "monsters_mage2:0", + "name": "Уннмир", + "spawnGroup": "unnmir", + "monsterClass": 0, + "phraseID": "unnmir" + }, + { + "id": "rigmor", + "iconID": "monsters_men:1", + "name": "Ригмор", + "spawnGroup": "rigmor", + "monsterClass": 0, + "phraseID": "rigmor" + }, + { + "id": "jakrar", + "iconID": "monsters_men2:2", + "name": "Жакрар", + "spawnGroup": "fallhaven_lumberjack", + "monsterClass": 0, + "phraseID": "fallhaven_lumberjack" + }, + { + "id": "alaun", + "iconID": "monsters_mage2:0", + "name": "Алаун", + "spawnGroup": "alaun", + "monsterClass": 0, + "phraseID": "alaun" + }, + { + "id": "busy_farmer", + "iconID": "monsters_man1:0", + "name": "Работающий фермер", + "spawnGroup": "fallhaven_farmer1", + "monsterClass": 0, + "phraseID": "fallhaven_farmer1" + }, + { + "id": "old_farmer", + "iconID": "monsters_mage2:0", + "name": "Старый фермер", + "spawnGroup": "fallhaven_farmer2", + "monsterClass": 0, + "phraseID": "fallhaven_farmer2" + }, + { + "id": "khorand", + "iconID": "monsters_men:3", + "name": "Хоранд", + "spawnGroup": "khorand", + "monsterClass": 0, + "phraseID": "khorand" + }, + { + "id": "vacor", + "iconID": "monsters_mage:0", + "name": "Вакор", + "spawnGroup": "vacor", + "monsterClass": 0, + "unique": 1, + "maxHP": 72, + "attackCost": 5, + "attackChance": 110, + "blockChance": 40, + "damageResistance": 2, + "droplistID": "vacor", + "phraseID": "vacor", + "attackDamage": { + "min": 4, + "max": 8 + } + }, + { + "id": "unzel", + "iconID": "monsters_men:8", + "name": "Унзел", + "spawnGroup": "unzel", + "monsterClass": 0, + "unique": 1, + "maxHP": 59, + "attackCost": 10, + "attackChance": 80, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 40, + "damageResistance": 2, + "droplistID": "unzel", + "phraseID": "unzel", + "attackDamage": { + "min": 5, + "max": 9 + } + }, + { + "id": "shady_bandit", + "iconID": "monsters_men2:9", + "name": "Известный бандит", + "spawnGroup": "fallhaven_bandit", + "monsterClass": 0, + "unique": 1, + "maxHP": 45, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 50, + "damageResistance": 2, + "droplistID": "fallhaven_bandit", + "phraseID": "fallhaven_bandit", + "attackDamage": { + "min": 3, + "max": 9 + } + } +] diff --git a/AndorsTrail/res/raw-ru/monsterlist_v0610_monsters1.json b/AndorsTrail/res/raw-ru/monsterlist_v0610_monsters1.json new file mode 100644 index 000000000..066cf6660 --- /dev/null +++ b/AndorsTrail/res/raw-ru/monsterlist_v0610_monsters1.json @@ -0,0 +1,494 @@ +[ + { + "id": "young_larval_burrower", + "iconID": "monsters_rltiles2:164", + "name": "Молодая личинка бурителя", + "spawnGroup": "larva_1", + "monsterClass": 1, + "maxHP": 30, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 35, + "criticalMultiplier": 3, + "blockChance": 25, + "droplistID": "larva_1", + "attackDamage": { + "min": 1, + "max": 6 + } + }, + { + "id": "larval_burrower", + "iconID": "monsters_rltiles2:164", + "name": "Личинка бурителя", + "spawnGroup": "larva_2", + "monsterClass": 1, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 35, + "criticalMultiplier": 3, + "blockChance": 25, + "droplistID": "larva_2", + "attackDamage": { + "min": 1, + "max": 6 + } + }, + { + "id": "larval_boss", + "iconID": "monsters_rltiles2:164", + "name": "Сильная личинка бурителя", + "spawnGroup": "larva_boss", + "monsterClass": 1, + "unique": 1, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 35, + "criticalMultiplier": 3, + "blockChance": 25, + "droplistID": "larva_boss", + "attackDamage": { + "min": 1, + "max": 6 + } + }, + { + "id": "rivertroll", + "iconID": "monsters_rltiles1:104", + "name": "Речной тролль", + "spawnGroup": "rivertroll", + "monsterClass": 5, + "unique": 1, + "maxHP": 210, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 30, + "criticalMultiplier": 4, + "blockChance": 65, + "damageResistance": 7, + "droplistID": "rivertroll", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "grass_ant", + "iconID": "monsters_insects:0", + "name": "Луговой муравей", + "spawnGroup": "fieldcritter_0", + "monsterClass": 1, + "maxHP": 29, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 80, + "droplistID": "fieldcritter_0", + "attackDamage": { + "min": 0, + "max": 4 + } + }, + { + "id": "grass_ant2", + "iconID": "monsters_insects:2", + "name": "Крутой луговой муравей", + "spawnGroup": "fieldcritter_0", + "monsterClass": 1, + "maxHP": 29, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "droplistID": "fieldcritter_0", + "attackDamage": { + "min": 1, + "max": 5 + } + }, + { + "id": "grass_beetle", + "iconID": "monsters_insects:4", + "name": "Луговой жук", + "spawnGroup": "fieldcritter_1", + "monsterClass": 1, + "maxHP": 34, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 120, + "blockChance": 80, + "damageResistance": 3, + "droplistID": "fieldcritter_1", + "attackDamage": { + "min": 0, + "max": 5 + } + }, + { + "id": "grass_beetle2", + "iconID": "monsters_insects:4", + "name": "Крутой луговой жук", + "spawnGroup": "fieldcritter_1", + "monsterClass": 1, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 125, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "fieldcritter_1", + "attackDamage": { + "min": 1, + "max": 6 + } + }, + { + "id": "grass_snake", + "iconID": "monsters_rltiles2:25", + "name": "Луговая змея", + "spawnGroup": "fieldcritter_2", + "monsterClass": 7, + "maxHP": 36, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 80, + "droplistID": "fieldcritter_2", + "attackDamage": { + "min": 0, + "max": 6 + } + }, + { + "id": "grass_snake2", + "iconID": "monsters_rltiles2:25", + "name": "Крутая луговая змея", + "spawnGroup": "fieldcritter_2", + "monsterClass": 7, + "maxHP": 38, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "droplistID": "fieldcritter_2", + "attackDamage": { + "min": 1, + "max": 7 + } + }, + { + "id": "grass_lizard", + "iconID": "monsters_rltiles2:114", + "name": "Луговая ящерица", + "spawnGroup": "fieldcritter_3", + "monsterClass": 7, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 80, + "damageResistance": 3, + "droplistID": "fieldcritter_3", + "attackDamage": { + "min": 0, + "max": 8 + } + }, + { + "id": "grass_lizard2", + "iconID": "monsters_rltiles2:117", + "name": "Черная луговая ящерица", + "spawnGroup": "fieldcritter_3", + "monsterClass": 7, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "fieldcritter_3", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "keknazar", + "iconID": "monsters_misc:9", + "name": "Кекназар", + "spawnGroup": "keknazar", + "monsterClass": 7, + "unique": 1, + "maxHP": 90, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 50, + "criticalSkill": 20, + "criticalMultiplier": 3, + "blockChance": 70, + "damageResistance": 8, + "droplistID": "keknazar", + "phraseID": "keknazar", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "crossroads_rat", + "iconID": "monsters_rats:0", + "name": "Крыса", + "spawnGroup": "crossroads_rat", + "monsterClass": 4, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 50, + "blockChance": 30, + "droplistID": "rat", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "fieldwasp_0", + "iconID": "monsters_insects:1", + "name": "Злющая лесная оса", + "spawnGroup": "fieldwasp_0", + "monsterClass": 1, + "maxHP": 29, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 95, + "droplistID": "fieldwasp", + "attackDamage": { + "min": 2, + "max": 6 + } + }, + { + "id": "fieldwasp_1", + "iconID": "monsters_insects:1", + "name": "Злющая лесная оса", + "spawnGroup": "fieldwasp_1", + "monsterClass": 1, + "maxHP": 32, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 70, + "criticalMultiplier": 3, + "blockChance": 125, + "droplistID": "fieldwasp", + "attackDamage": { + "min": 2, + "max": 6 + } + }, + { + "id": "fieldwasp_2", + "iconID": "monsters_insects:1", + "name": "Злющая лесная оса", + "spawnGroup": "fieldwasp_2", + "monsterClass": 1, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 75, + "criticalMultiplier": 3, + "blockChance": 130, + "droplistID": "fieldwasp", + "attackDamage": { + "min": 2, + "max": 6 + } + }, + { + "id": "izthiel_1", + "iconID": "monsters_rltiles2:51", + "name": "Молодой изтиель", + "spawnGroup": "izthiel_1", + "monsterClass": 7, + "maxHP": 40, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "blockChance": 57, + "damageResistance": 5, + "droplistID": "izthiel", + "attackDamage": { + "min": 2, + "max": 7 + } + }, + { + "id": "izthiel_2", + "iconID": "monsters_rltiles2:49", + "name": "Изтиель", + "spawnGroup": "izthiel_2", + "monsterClass": 7, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "blockChance": 58, + "damageResistance": 6, + "droplistID": "izthiel", + "attackDamage": { + "min": 2, + "max": 7 + } + }, + { + "id": "izthiel_3", + "iconID": "monsters_rltiles2:48", + "name": "Сильный изтиель", + "spawnGroup": "izthiel_3", + "monsterClass": 7, + "maxHP": 52, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "blockChance": 60, + "damageResistance": 8, + "droplistID": "izthiel", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "bleeding_wound", + "magnitude": 2, + "duration": 4, + "chance": 40 + } + ] + } + }, + { + "id": "izthiel_4", + "iconID": "monsters_rltiles2:52", + "name": "Охранник изтиелей", + "spawnGroup": "izthiel_4", + "monsterClass": 7, + "maxHP": 54, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 60, + "damageResistance": 11, + "droplistID": "izthiel_4", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "bleeding_wound", + "magnitude": 3, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "frog_1", + "iconID": "monsters_rltiles1:131", + "name": "Речная лягушка", + "spawnGroup": "frog_1", + "monsterClass": 7, + "maxHP": 15, + "maxAP": 10, + "moveCost": 5, + "attackCost": 2, + "attackChance": 150, + "blockChance": 45, + "droplistID": "frog", + "attackDamage": { + "min": 0, + "max": 5 + } + }, + { + "id": "frog_2", + "iconID": "monsters_rltiles1:131", + "name": "Крутая речная лягушка", + "spawnGroup": "frog_2", + "monsterClass": 7, + "maxHP": 17, + "maxAP": 10, + "moveCost": 5, + "attackCost": 2, + "attackChance": 160, + "blockChance": 49, + "droplistID": "frog", + "attackDamage": { + "min": 0, + "max": 5 + } + }, + { + "id": "frog_3", + "iconID": "monsters_rltiles1:130", + "name": "Ядовитая речная лягушка", + "spawnGroup": "frog_3", + "monsterClass": 7, + "maxHP": 21, + "maxAP": 10, + "moveCost": 5, + "attackCost": 2, + "attackChance": 165, + "blockChance": 55, + "droplistID": "frog_3", + "attackDamage": { + "min": 0, + "max": 5 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_weak", + "magnitude": 2, + "duration": 5, + "chance": 30 + } + ] + } + } +] diff --git a/AndorsTrail/res/raw-ru/monsterlist_v0610_monsters2.json b/AndorsTrail/res/raw-ru/monsterlist_v0610_monsters2.json new file mode 100644 index 000000000..ba868c2fa --- /dev/null +++ b/AndorsTrail/res/raw-ru/monsterlist_v0610_monsters2.json @@ -0,0 +1,450 @@ +[ + { + "id": "iqhan_1a", + "iconID": "monsters_rltiles2:96", + "name": "Иканский раб-рабочий", + "spawnGroup": "iqhan_1", + "monsterClass": 0, + "maxHP": 55, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 110, + "blockChance": 70, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "iqhan_1b", + "iconID": "monsters_rltiles2:96", + "name": "Иканский раб-слуга", + "spawnGroup": "iqhan_1", + "monsterClass": 0, + "maxHP": 57, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "criticalSkill": 15, + "criticalMultiplier": 2, + "blockChance": 70, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "iqhan_2a", + "iconID": "monsters_rltiles2:97", + "name": "Иканский раб-охранник", + "spawnGroup": "iqhan_2", + "monsterClass": 0, + "maxHP": 59, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 130, + "criticalSkill": 15, + "criticalMultiplier": 2, + "blockChance": 70, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "iqhan_2b", + "iconID": "monsters_rltiles2:97", + "name": "Иканский раб", + "spawnGroup": "iqhan_2", + "monsterClass": 0, + "maxHP": 62, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 130, + "criticalSkill": 15, + "criticalMultiplier": 2, + "blockChance": 70, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 10 + } + }, + { + "id": "iqhan_3a", + "iconID": "monsters_rltiles2:128", + "name": "Иканский раб-воин", + "spawnGroup": "iqhan_3", + "monsterClass": 0, + "maxHP": 65, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 140, + "criticalSkill": 15, + "criticalMultiplier": 2, + "blockChance": 70, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 11 + } + }, + { + "id": "iqhan_3b", + "iconID": "monsters_rltiles2:129", + "name": "Иканский мастер", + "spawnGroup": "iqhan_3", + "monsterClass": 0, + "maxHP": 67, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 140, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 12 + } + }, + { + "id": "iqhan_4a", + "iconID": "monsters_rltiles2:129", + "name": "Иканский мастер", + "spawnGroup": "iqhan_4", + "monsterClass": 0, + "maxHP": 69, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 140, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 13 + } + }, + { + "id": "iqhan_4b", + "iconID": "monsters_rltiles2:133", + "name": "Иканский мастер", + "spawnGroup": "iqhan_4", + "monsterClass": 0, + "maxHP": 71, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 140, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "iqhan", + "attackDamage": { + "min": 2, + "max": 15 + } + }, + { + "id": "iqhan_ch_1a", + "iconID": "monsters_rltiles2:135", + "name": "Иканский вызыватель хаоса", + "spawnGroup": "iqhan_ch_1", + "monsterClass": 0, + "maxHP": 73, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 140, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "iqhan", + "attackDamage": { + "min": 2, + "max": 15 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 2, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "iqhan_ch_1b", + "iconID": "monsters_rltiles2:135", + "name": "Иканский вызыватель хаоса", + "spawnGroup": "iqhan_ch_1", + "monsterClass": 0, + "maxHP": 75, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "iqhan", + "attackDamage": { + "min": 2, + "max": 14 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 2, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "iqhan_ch_2a", + "iconID": "monsters_rltiles2:134", + "name": "Иканский слуга хаоса", + "spawnGroup": "iqhan_ch_2", + "monsterClass": 0, + "maxHP": 78, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "iqhan", + "attackDamage": { + "min": 2, + "max": 14 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 4, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "iqhan_ch_2b", + "iconID": "monsters_rltiles2:134", + "name": "Иканский слуга хаоса", + "spawnGroup": "iqhan_ch_2", + "monsterClass": 0, + "maxHP": 79, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "criticalSkill": 25, + "criticalMultiplier": 2, + "blockChance": 75, + "droplistID": "iqhan", + "attackDamage": { + "min": 2, + "max": 13 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 4, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "iqhan_ch_3a", + "iconID": "monsters_rltiles2:136", + "name": "Иканский мастер хаоса", + "spawnGroup": "iqhan_ch_3", + "monsterClass": 0, + "maxHP": 83, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 170, + "criticalSkill": 25, + "criticalMultiplier": 2, + "blockChance": 75, + "droplistID": "iqhan_master", + "attackDamage": { + "min": 2, + "max": 13 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 4, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "iqhan_ch_3b", + "iconID": "monsters_rltiles2:137", + "name": "Иканский мастер хаоса", + "spawnGroup": "iqhan_ch_3", + "monsterClass": 0, + "maxHP": 85, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 170, + "criticalSkill": 25, + "criticalMultiplier": 2, + "blockChance": 75, + "droplistID": "iqhan_master", + "attackDamage": { + "min": 2, + "max": 13 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 4, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "iqhan_chb_1a", + "iconID": "monsters_rltiles1:19", + "name": "Иканский зверь хаоса", + "spawnGroup": "iqhan_chb_1", + "monsterClass": 3, + "maxHP": 122, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 150, + "criticalSkill": 10, + "criticalMultiplier": 3, + "blockChance": 45, + "damageResistance": 9, + "droplistID": "iqhan_beast", + "attackDamage": { + "min": 0, + "max": 15 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 5, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "iqhan_chb_1b", + "iconID": "monsters_rltiles1:19", + "name": "Иканский зверь хаоса", + "spawnGroup": "iqhan_chb_1", + "monsterClass": 3, + "maxHP": 140, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 150, + "criticalSkill": 10, + "criticalMultiplier": 3, + "blockChance": 45, + "damageResistance": 9, + "droplistID": "iqhan_beast", + "attackDamage": { + "min": 0, + "max": 15 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 5, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "iqhan_greeter", + "iconID": "monsters_men:8", + "name": "Ранцент", + "spawnGroup": "iqhan_greeter", + "monsterClass": 0, + "unique": 1, + "phraseID": "iqhan_greeter" + }, + { + "id": "iqhan_boss", + "iconID": "monsters_rltiles1:5", + "name": "Иканский поработитель хаоса", + "spawnGroup": "iqhan_boss", + "monsterClass": 6, + "unique": 1, + "maxHP": 120, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 170, + "criticalSkill": 30, + "criticalMultiplier": 2, + "blockChance": 75, + "damageResistance": 2, + "droplistID": "iqhan_boss", + "phraseID": "iqhan_boss", + "attackDamage": { + "min": 2, + "max": 13 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 7, + "duration": 5, + "chance": 50 + }, + { + "condition": "chaotic_curse", + "magnitude": 3, + "duration": 5, + "chance": 50 + } + ] + } + } +] diff --git a/AndorsTrail/res/raw-ru/monsterlist_v0610_npcs1.json b/AndorsTrail/res/raw-ru/monsterlist_v0610_npcs1.json new file mode 100644 index 000000000..83e4545ec --- /dev/null +++ b/AndorsTrail/res/raw-ru/monsterlist_v0610_npcs1.json @@ -0,0 +1,582 @@ +[ + { + "id": "lostsheep1", + "iconID": "monsters_karvis2:8", + "name": "Овца", + "spawnGroup": "tinlyn_lostsheep1", + "monsterClass": 4, + "unique": 1, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 10, + "blockChance": 5, + "droplistID": "tinlyn_sheep", + "phraseID": "tinlyn_lostsheep1", + "attackDamage": { + "min": 0, + "max": 1 + } + }, + { + "id": "lostsheep2", + "iconID": "monsters_karvis2:8", + "name": "Овца", + "spawnGroup": "tinlyn_lostsheep2", + "monsterClass": 4, + "unique": 1, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 10, + "blockChance": 5, + "droplistID": "tinlyn_sheep", + "phraseID": "tinlyn_lostsheep2", + "attackDamage": { + "min": 0, + "max": 1 + } + }, + { + "id": "lostsheep3", + "iconID": "monsters_karvis2:8", + "name": "Овца", + "spawnGroup": "tinlyn_lostsheep3", + "monsterClass": 4, + "unique": 1, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 10, + "blockChance": 5, + "droplistID": "tinlyn_sheep", + "phraseID": "tinlyn_lostsheep3", + "attackDamage": { + "min": 0, + "max": 1 + } + }, + { + "id": "lostsheep4", + "iconID": "monsters_karvis2:8", + "name": "Овца", + "spawnGroup": "tinlyn_lostsheep4", + "monsterClass": 4, + "unique": 1, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 10, + "blockChance": 5, + "droplistID": "tinlyn_sheep", + "phraseID": "tinlyn_lostsheep4", + "attackDamage": { + "min": 0, + "max": 1 + } + }, + { + "id": "sheep1", + "iconID": "monsters_karvis2:8", + "name": "Овца", + "spawnGroup": "tinlyn_sheep", + "monsterClass": 4, + "unique": 1, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 10, + "blockChance": 5, + "droplistID": "tinlyn_sheep", + "phraseID": "tinlyn_sheep", + "attackDamage": { + "min": 0, + "max": 1 + } + }, + { + "id": "ailshara", + "iconID": "monsters_men:8", + "name": "Аилшара", + "spawnGroup": "ailshara", + "monsterClass": 0, + "droplistID": "shop_ailshara", + "phraseID": "ailshara" + }, + { + "id": "arngyr", + "iconID": "monsters_rltiles1:65", + "name": "Арнгир", + "spawnGroup": "arngyr", + "monsterClass": 0, + "phraseID": "arngyr" + }, + { + "id": "benbyr", + "iconID": "monsters_rltiles1:74", + "name": "Бенбир", + "spawnGroup": "benbyr", + "monsterClass": 0, + "phraseID": "benbyr" + }, + { + "id": "celdar", + "iconID": "monsters_rltiles1:94", + "name": "Селдар", + "spawnGroup": "celdar", + "monsterClass": 0, + "phraseID": "celdar" + }, + { + "id": "conren", + "iconID": "monsters_karvis2:5", + "name": "Конрен", + "spawnGroup": "conren", + "monsterClass": 0, + "phraseID": "conren" + }, + { + "id": "crossroads_backguard", + "iconID": "monsters_rltiles1:76", + "name": "Охранник", + "spawnGroup": "crossroads_backguard", + "monsterClass": 0, + "unique": 1, + "phraseID": "crossroads_backguard" + }, + { + "id": "crossroads_guard", + "iconID": "monsters_rltiles1:76", + "name": "Охранник", + "spawnGroup": "crossroads_guard", + "monsterClass": 0, + "phraseID": "crossroads_guard" + }, + { + "id": "crossroads_sleepguard", + "iconID": "monsters_rltiles1:76", + "name": "Охранник", + "spawnGroup": "crossroads_sleepguard", + "monsterClass": 0, + "phraseID": "crossroads_sleepguard" + }, + { + "id": "crossroads_guest", + "iconID": "monsters_rltiles1:83", + "name": "Приезжий", + "spawnGroup": "crossroads_guest", + "monsterClass": 0, + "phraseID": "crossroads_guest" + }, + { + "id": "erinith", + "iconID": "monsters_rltiles1:82", + "name": "Эринит", + "spawnGroup": "erinith", + "monsterClass": 0, + "phraseID": "erinith" + }, + { + "id": "fanamor", + "iconID": "monsters_men:7", + "name": "Фанамор", + "spawnGroup": "fanamor", + "monsterClass": 0, + "phraseID": "fanamor" + }, + { + "id": "feygard_bridgeguard", + "iconID": "monsters_men2:4", + "name": "Фейгардский охранник моста", + "spawnGroup": "feygard_bridgeguard", + "monsterClass": 0, + "phraseID": "feygard_bridgeguard" + }, + { + "id": "fieldwasp_unique", + "iconID": "monsters_insects:1", + "name": "Злющая лесная оса", + "spawnGroup": "fieldwasp_unique", + "monsterClass": 1, + "unique": 1, + "maxHP": 70, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 200, + "criticalMultiplier": 3, + "blockChance": 150, + "droplistID": "fieldwasp_unique", + "attackDamage": { + "min": 2, + "max": 6 + } + }, + { + "id": "gallain", + "iconID": "monsters_man1:0", + "name": "Галлейн", + "spawnGroup": "gallain", + "monsterClass": 0, + "droplistID": "shop_gallain", + "phraseID": "gallain" + }, + { + "id": "gandoren", + "iconID": "monsters_rltiles1:69", + "name": "Гандорен", + "spawnGroup": "gandoren", + "monsterClass": 0, + "phraseID": "gandoren" + }, + { + "id": "grimion", + "iconID": "monsters_men2:2", + "name": "Гримион", + "spawnGroup": "grimion", + "monsterClass": 0, + "droplistID": "shop_grimion", + "phraseID": "grimion" + }, + { + "id": "hadracor", + "iconID": "monsters_men2:2", + "name": "Хадракор", + "spawnGroup": "hadracor", + "monsterClass": 0, + "droplistID": "shop_hadracor", + "phraseID": "hadracor" + }, + { + "id": "kuldan", + "iconID": "monsters_rltiles1:85", + "name": "Кулдан", + "spawnGroup": "kuldan", + "monsterClass": 0, + "phraseID": "kuldan" + }, + { + "id": "kuldan_guard", + "iconID": "monsters_rltiles3:14", + "name": "Охранник Кулдана", + "spawnGroup": "kuldan_guard", + "monsterClass": 0, + "phraseID": "kuldan_guard" + }, + { + "id": "landa", + "iconID": "monsters_men:0", + "name": "Ланда", + "spawnGroup": "landa", + "monsterClass": 0, + "phraseID": "landa" + }, + { + "id": "loneford_chapelguard", + "iconID": "monsters_rltiles1:78", + "name": "Охранник часовни", + "spawnGroup": "loneford_chapelguard", + "monsterClass": 0, + "phraseID": "loneford_chapelguard" + }, + { + "id": "loneford_farmer0", + "iconID": "monsters_karvis2:1", + "name": "Фермер", + "spawnGroup": "loneford_farmer0", + "monsterClass": 0, + "phraseID": "loneford_farmer0" + }, + { + "id": "loneford_guard0", + "iconID": "monsters_rltiles3:14", + "name": "Охранник", + "spawnGroup": "loneford_guard0", + "monsterClass": 0, + "phraseID": "loneford_guard0" + }, + { + "id": "loneford_tavern_patron", + "iconID": "monsters_karvis2:2", + "name": "Завсегдатай таверны", + "spawnGroup": "loneford_tavern_patron", + "monsterClass": 0, + "phraseID": "loneford_tavern_patron" + }, + { + "id": "loneford_villager0", + "iconID": "monsters_karvis2:0", + "name": "Крестьянин", + "spawnGroup": "loneford_villager0", + "monsterClass": 0, + "phraseID": "loneford_villager0" + }, + { + "id": "loneford_villager1", + "iconID": "monsters_karvis2:1", + "name": "Крестьянин", + "spawnGroup": "loneford_villager1", + "monsterClass": 0, + "phraseID": "loneford_villager1" + }, + { + "id": "loneford_villager2", + "iconID": "monsters_karvis2:3", + "name": "Крестьянин", + "spawnGroup": "loneford_villager2", + "monsterClass": 0, + "phraseID": "loneford_villager2" + }, + { + "id": "loneford_villager3", + "iconID": "monsters_karvis2:5", + "name": "Крестьянин", + "spawnGroup": "loneford_villager3", + "monsterClass": 0, + "phraseID": "loneford_villager3" + }, + { + "id": "loneford_villager4", + "iconID": "monsters_men:2", + "name": "Крестьянин", + "spawnGroup": "loneford_villager4", + "monsterClass": 0, + "phraseID": "loneford_villager4" + }, + { + "id": "loneford_wellguard", + "iconID": "monsters_rltiles1:72", + "name": "Охранник", + "spawnGroup": "loneford_wellguard", + "monsterClass": 0, + "phraseID": "loneford_wellguard" + }, + { + "id": "mienn", + "iconID": "monsters_rltiles1:87", + "name": "Мьенн", + "spawnGroup": "mienn", + "monsterClass": 0, + "phraseID": "mienn" + }, + { + "id": "minarra", + "iconID": "monsters_rltiles1:86", + "name": "Минарра", + "spawnGroup": "minarra", + "monsterClass": 0, + "droplistID": "shop_minarra", + "phraseID": "minarra" + }, + { + "id": "puny_warehouserat", + "iconID": "monsters_rats:1", + "name": "Складская крыса", + "spawnGroup": "puny_warehouserat", + "monsterClass": 4, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 50, + "blockChance": 30, + "droplistID": "rat", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "rolwynn", + "iconID": "monsters_rltiles1:77", + "name": "Ролвинн", + "spawnGroup": "rolwynn", + "monsterClass": 0, + "phraseID": "rolwynn" + }, + { + "id": "sienn", + "iconID": "monsters_rltiles1:66", + "name": "Сьенн", + "spawnGroup": "sienn", + "monsterClass": 0, + "phraseID": "sienn" + }, + { + "id": "sienn_pet", + "iconID": "monsters_misc:0", + "name": "Питомец Сьенна", + "spawnGroup": "sienn_pet", + "monsterClass": 7, + "phraseID": "sienn_pet" + }, + { + "id": "siola", + "iconID": "monsters_rltiles1:90", + "name": "Сиола", + "spawnGroup": "siola", + "monsterClass": 0, + "droplistID": "shop_siola", + "phraseID": "siola" + }, + { + "id": "taevinn", + "iconID": "monsters_karvis2:5", + "name": "Тайвинн", + "spawnGroup": "taevinn", + "monsterClass": 0, + "phraseID": "taevinn" + }, + { + "id": "talion", + "iconID": "monsters_men2:8", + "name": "Талион", + "spawnGroup": "talion", + "monsterClass": 0, + "droplistID": "shop_talion", + "phraseID": "talion" + }, + { + "id": "telund", + "iconID": "monsters_rltiles1:74", + "name": "Телунд", + "spawnGroup": "telund", + "monsterClass": 0, + "phraseID": "telund" + }, + { + "id": "tinlyn", + "iconID": "monsters_karvis2:7", + "name": "Тинлин", + "spawnGroup": "tinlyn", + "monsterClass": 0, + "phraseID": "tinlyn" + }, + { + "id": "wallach", + "iconID": "monsters_rltiles1:75", + "name": "Уоллах", + "spawnGroup": "wallach", + "monsterClass": 0, + "phraseID": "wallach" + }, + { + "id": "woodcutter_0", + "iconID": "monsters_men:0", + "name": "Дровосек", + "spawnGroup": "woodcutter_0", + "monsterClass": 0, + "phraseID": "woodcutter_0" + }, + { + "id": "woodcutter_2", + "iconID": "monsters_men:0", + "name": "Дровосек", + "spawnGroup": "woodcutter_2", + "monsterClass": 0, + "phraseID": "woodcutter_2" + }, + { + "id": "woodcutter_3", + "iconID": "monsters_men2:2", + "name": "Дровосек", + "spawnGroup": "woodcutter_3", + "monsterClass": 0, + "phraseID": "woodcutter_3" + }, + { + "id": "woodcutter_4", + "iconID": "monsters_rltiles1:93", + "name": "Дровосек", + "spawnGroup": "woodcutter_4", + "monsterClass": 0, + "phraseID": "woodcutter_4" + }, + { + "id": "woodcutter_5", + "iconID": "monsters_men2:2", + "name": "Дровосек", + "spawnGroup": "woodcutter_5", + "monsterClass": 0, + "phraseID": "woodcutter_5" + }, + { + "id": "rogorn", + "iconID": "monsters_rltiles1:63", + "name": "Рогорн", + "spawnGroup": "rogorn", + "monsterClass": 0, + "unique": 1, + "maxHP": 145, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "blockChance": 120, + "damageResistance": 5, + "droplistID": "rogorn", + "phraseID": "rogorn", + "attackDamage": { + "min": 5, + "max": 9 + } + }, + { + "id": "rogorn_henchman", + "iconID": "monsters_rogue1:0", + "name": "Приспешник Рогорна", + "spawnGroup": "rogorn_henchman", + "monsterClass": 0, + "unique": 1, + "maxHP": 130, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "blockChance": 120, + "damageResistance": 4, + "droplistID": "rogorn_henchman", + "phraseID": "rogorn_henchman", + "attackDamage": { + "min": 5, + "max": 8 + } + }, + { + "id": "buceth", + "iconID": "monsters_men2:7", + "name": "Буцет", + "spawnGroup": "buceth", + "monsterClass": 0, + "unique": 1, + "maxHP": 75, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 200, + "criticalMultiplier": 2, + "blockChance": 120, + "damageResistance": 4, + "droplistID": "buceth", + "phraseID": "buceth", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "gauward", + "iconID": "monsters_mage2:0", + "name": "Гаувард", + "spawnGroup": "gauward", + "monsterClass": 0, + "phraseID": "gauward" + } +] diff --git a/AndorsTrail/res/raw-ru/monsterlist_v0611_monsters1.json b/AndorsTrail/res/raw-ru/monsterlist_v0611_monsters1.json new file mode 100644 index 000000000..94f298955 --- /dev/null +++ b/AndorsTrail/res/raw-ru/monsterlist_v0611_monsters1.json @@ -0,0 +1,1862 @@ +[ + { + "id": "cbeetle_1", + "iconID": "monsters_rltiles2:63", + "name": "Молодой жук-падальщик", + "spawnGroup": "scaradon_1", + "monsterClass": 1, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "blockChance": 30, + "damageResistance": 9, + "droplistID": "scaradon", + "attackDamage": { + "min": 0, + "max": 5 + } + }, + { + "id": "cbeetle_2", + "iconID": "monsters_rltiles2:63", + "name": "Жук-падальщик", + "spawnGroup": "scaradon_1", + "monsterClass": 1, + "maxHP": 51, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 75, + "blockChance": 30, + "damageResistance": 9, + "droplistID": "scaradon", + "attackDamage": { + "min": 0, + "max": 5 + } + }, + { + "id": "scaradon_1", + "iconID": "monsters_rltiles1:98", + "name": "Молодой скарадон", + "spawnGroup": "scaradon_1", + "monsterClass": 1, + "maxHP": 32, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 50, + "blockChance": 30, + "damageResistance": 15, + "droplistID": "scaradon", + "attackDamage": { + "min": 0, + "max": 4 + } + }, + { + "id": "scaradon_2", + "iconID": "monsters_rltiles1:98", + "name": "Малый скарадон", + "spawnGroup": "scaradon_2", + "monsterClass": 1, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 50, + "blockChance": 30, + "damageResistance": 15, + "droplistID": "scaradon", + "attackDamage": { + "min": 1, + "max": 4 + } + }, + { + "id": "scaradon_3", + "iconID": "monsters_rltiles1:97", + "name": "Скарадон", + "spawnGroup": "scaradon_2", + "monsterClass": 1, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 50, + "blockChance": 30, + "damageResistance": 17, + "droplistID": "scaradon", + "attackDamage": { + "min": 0, + "max": 4 + } + }, + { + "id": "scaradon_4", + "iconID": "monsters_rltiles1:97", + "name": "Крутой скарадон", + "spawnGroup": "scaradon_2", + "monsterClass": 1, + "maxHP": 37, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 50, + "blockChance": 30, + "damageResistance": 17, + "droplistID": "scaradon", + "attackDamage": { + "min": 1, + "max": 4 + } + }, + { + "id": "scaradon_5", + "iconID": "monsters_rltiles1:97", + "name": "Панцирный скарадон", + "spawnGroup": "scaradon_3", + "monsterClass": 1, + "maxHP": 38, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 50, + "blockChance": 30, + "damageResistance": 18, + "droplistID": "scaradon_b", + "attackDamage": { + "min": 1, + "max": 5 + } + }, + { + "id": "mwolf_1", + "iconID": "monsters_dogs:3", + "name": "Щенок горного волка", + "spawnGroup": "mwolf_1", + "monsterClass": 4, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 80, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 40, + "damageResistance": 3, + "droplistID": "mwolf", + "attackDamage": { + "min": 2, + "max": 7 + } + }, + { + "id": "mwolf_2", + "iconID": "monsters_dogs:3", + "name": "Молодой горный волк", + "spawnGroup": "mwolf_1", + "monsterClass": 4, + "maxHP": 52, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 80, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 44, + "damageResistance": 3, + "droplistID": "mwolf", + "attackDamage": { + "min": 3, + "max": 7 + } + }, + { + "id": "mwolf_3", + "iconID": "monsters_dogs:2", + "name": "Молодая горная лиса", + "spawnGroup": "mwolf_1", + "monsterClass": 4, + "maxHP": 56, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 80, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 48, + "damageResistance": 4, + "droplistID": "mwolf", + "attackDamage": { + "min": 3, + "max": 7 + } + }, + { + "id": "mwolf_4", + "iconID": "monsters_dogs:2", + "name": "Горная лиса", + "spawnGroup": "mwolf_2", + "monsterClass": 4, + "maxHP": 60, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 85, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 52, + "damageResistance": 4, + "droplistID": "mwolf", + "attackDamage": { + "min": 3, + "max": 8 + } + }, + { + "id": "mwolf_5", + "iconID": "monsters_dogs:2", + "name": "Свирепая горная лиса", + "spawnGroup": "mwolf_2", + "monsterClass": 4, + "maxHP": 64, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 85, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 54, + "damageResistance": 5, + "droplistID": "mwolf", + "attackDamage": { + "min": 3, + "max": 8 + } + }, + { + "id": "mwolf_6", + "iconID": "monsters_dogs:4", + "name": "Бешеный горный волк", + "spawnGroup": "mwolf_2", + "monsterClass": 4, + "maxHP": 67, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 56, + "damageResistance": 5, + "droplistID": "mwolf", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "mwolf_7", + "iconID": "monsters_dogs:4", + "name": "Сильный горный волк", + "spawnGroup": "mwolf_3", + "monsterClass": 4, + "maxHP": 73, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 57, + "damageResistance": 6, + "droplistID": "mwolf", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "mwolf_8", + "iconID": "monsters_dogs:4", + "name": "Свирепый горный волк", + "spawnGroup": "mwolf_3", + "monsterClass": 4, + "maxHP": 78, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 59, + "damageResistance": 6, + "droplistID": "mwolf_b", + "attackDamage": { + "min": 3, + "max": 10 + } + }, + { + "id": "mbrute_1", + "iconID": "monsters_rltiles2:35", + "name": "Молодой горный зверь", + "spawnGroup": "mbrute_1", + "monsterClass": 5, + "maxHP": 148, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 0, + "max": 14 + } + }, + { + "id": "mbrute_2", + "iconID": "monsters_rltiles2:35", + "name": "Слабый горный зверь", + "spawnGroup": "mbrute_1", + "monsterClass": 5, + "maxHP": 157, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 0, + "max": 14 + } + }, + { + "id": "mbrute_3", + "iconID": "monsters_rltiles2:36", + "name": "Белошерстный горный зверь", + "spawnGroup": "mbrute_1", + "monsterClass": 5, + "maxHP": 166, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 0, + "max": 14 + } + }, + { + "id": "mbrute_4", + "iconID": "monsters_rltiles2:35", + "name": "Горный зверь", + "spawnGroup": "mbrute_2", + "monsterClass": 5, + "maxHP": 175, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 0, + "max": 14 + } + }, + { + "id": "mbrute_5", + "iconID": "monsters_rltiles2:36", + "name": "Большой горный зверь", + "spawnGroup": "mbrute_2", + "monsterClass": 5, + "maxHP": 184, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 0, + "max": 14 + } + }, + { + "id": "mbrute_6", + "iconID": "monsters_rltiles2:34", + "name": "Быстрый горный зверь", + "spawnGroup": "mbrute_2", + "monsterClass": 5, + "maxHP": 82, + "maxAP": 12, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 0, + "max": 14 + } + }, + { + "id": "mbrute_7", + "iconID": "monsters_rltiles2:34", + "name": "Резвый горный зверь", + "spawnGroup": "mbrute_3", + "monsterClass": 5, + "maxHP": 93, + "maxAP": 12, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 0, + "max": 15 + } + }, + { + "id": "mbrute_8", + "iconID": "monsters_rltiles2:34", + "name": "Агрессивный горный зверь", + "spawnGroup": "mbrute_3", + "monsterClass": 5, + "maxHP": 104, + "maxAP": 12, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 1, + "max": 15 + } + }, + { + "id": "mbrute_9", + "iconID": "monsters_rltiles2:33", + "name": "Сильные горный зверь", + "spawnGroup": "mbrute_3", + "monsterClass": 5, + "maxHP": 115, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 1, + "max": 15 + } + }, + { + "id": "mbrute_10", + "iconID": "monsters_rltiles2:33", + "name": "Крутой горный зверь", + "spawnGroup": "mbrute_4", + "monsterClass": 5, + "maxHP": 126, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 2, + "max": 15 + } + }, + { + "id": "mbrute_11", + "iconID": "monsters_rltiles2:33", + "name": "Бесстрашный горный зверь", + "spawnGroup": "mbrute_4", + "monsterClass": 5, + "maxHP": 137, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute_b", + "attackDamage": { + "min": 2, + "max": 15 + } + }, + { + "id": "mbrute_12", + "iconID": "monsters_rltiles2:33", + "name": "Разъяренный горный зверь", + "spawnGroup": "mbrute_4", + "monsterClass": 5, + "maxHP": 148, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 3, + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute_b", + "attackDamage": { + "min": 2, + "max": 16 + } + }, + { + "id": "erumen_1", + "iconID": "monsters_rltiles2:114", + "name": "Молодая эрумская ящерица", + "spawnGroup": "erumen_1", + "monsterClass": 7, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "erumen", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "erumen_2", + "iconID": "monsters_rltiles2:114", + "name": "Пятнистая эрумская ящерица", + "spawnGroup": "erumen_1", + "monsterClass": 7, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "erumen", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "erumen_3", + "iconID": "monsters_rltiles2:114", + "name": "Эрумская ящерица", + "spawnGroup": "erumen_2", + "monsterClass": 7, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "erumen", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "erumen_4", + "iconID": "monsters_rltiles2:115", + "name": "Сильная эрумская ящерица", + "spawnGroup": "erumen_2", + "monsterClass": 7, + "maxHP": 79, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "erumen", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "erumen_5", + "iconID": "monsters_rltiles2:115", + "name": "Мерзкая эрумская ящерица", + "spawnGroup": "erumen_3", + "monsterClass": 7, + "maxHP": 89, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "erumen", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "erumen_6", + "iconID": "monsters_rltiles2:117", + "name": "Крутая эрумская ящерица", + "spawnGroup": "erumen_3", + "monsterClass": 7, + "maxHP": 91, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 90, + "damageResistance": 8, + "droplistID": "erumen", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "erumen_7", + "iconID": "monsters_rltiles2:117", + "name": "Закаленная эрумская ящерица", + "spawnGroup": "erumen_4", + "monsterClass": 7, + "maxHP": 93, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 90, + "damageResistance": 12, + "droplistID": "erumen_b", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "plaguesp_1", + "iconID": "monsters_rltiles2:61", + "name": "Слабый червемор", + "spawnGroup": "plaguespider_1", + "monsterClass": 1, + "maxHP": 55, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 140, + "droplistID": "plaguespider", + "attackDamage": { + "min": 1, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 1, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 1, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_2", + "iconID": "monsters_rltiles2:61", + "name": "Червемор", + "spawnGroup": "plaguespider_1", + "monsterClass": 1, + "maxHP": 57, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 140, + "droplistID": "plaguespider", + "attackDamage": { + "min": 1, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 3, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 2, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_3", + "iconID": "monsters_rltiles2:61", + "name": "Крутой червемор", + "spawnGroup": "plaguespider_1", + "monsterClass": 1, + "maxHP": 59, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 140, + "droplistID": "plaguespider", + "attackDamage": { + "min": 1, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 3, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 2, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_4", + "iconID": "monsters_rltiles2:61", + "name": "Черный червемор", + "spawnGroup": "plaguespider_2", + "monsterClass": 1, + "maxHP": 61, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 150, + "droplistID": "plaguespider", + "attackDamage": { + "min": 1, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 4, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 3, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_5", + "iconID": "monsters_rltiles2:151", + "name": "Чумоход", + "spawnGroup": "plaguespider_2", + "monsterClass": 1, + "maxHP": 62, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 150, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 4, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 3, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_6", + "iconID": "monsters_rltiles2:151", + "name": "Панцирный чумоход", + "spawnGroup": "plaguespider_2", + "monsterClass": 1, + "maxHP": 63, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 150, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 5, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 4, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_7", + "iconID": "monsters_rltiles2:151", + "name": "Крутой чумоход", + "spawnGroup": "plaguespider_3", + "monsterClass": 1, + "maxHP": 64, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 70, + "criticalMultiplier": 3, + "blockChance": 155, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 5, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 4, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_8", + "iconID": "monsters_rltiles2:153", + "name": "Шерстистый чумоход", + "spawnGroup": "plaguespider_3", + "monsterClass": 1, + "maxHP": 65, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 70, + "criticalMultiplier": 3, + "blockChance": 155, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 6, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 5, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "plaguesp_9", + "iconID": "monsters_rltiles2:153", + "name": "Крутой шерстистый чумоход", + "spawnGroup": "plaguespider_3", + "monsterClass": 1, + "maxHP": 66, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 70, + "criticalMultiplier": 3, + "blockChance": 160, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 6, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 5, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "plaguesp_10", + "iconID": "monsters_rltiles2:151", + "name": "Мерзкий чумоход", + "spawnGroup": "plaguespider_4", + "monsterClass": 1, + "maxHP": 67, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 85, + "criticalSkill": 70, + "criticalMultiplier": 3, + "blockChance": 160, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 6, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 5, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "plaguesp_11", + "iconID": "monsters_rltiles2:153", + "name": "Гнездовой чумоход", + "spawnGroup": "plaguespider_4", + "monsterClass": 1, + "maxHP": 68, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 85, + "criticalSkill": 70, + "criticalMultiplier": 3, + "blockChance": 165, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 6, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 5, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "plaguesp_12", + "iconID": "monsters_rltiles2:38", + "name": "Смотритель за чумоходами", + "spawnGroup": "plaguespider_5", + "monsterClass": 6, + "maxHP": 65, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 85, + "criticalSkill": 120, + "criticalMultiplier": 3, + "blockChance": 165, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 7, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 6, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "plaguesp_13", + "iconID": "monsters_rltiles2:38", + "name": "Хозяин чумоходов", + "spawnGroup": "plaguespider_6", + "monsterClass": 6, + "maxHP": 65, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 85, + "criticalSkill": 120, + "criticalMultiplier": 3, + "blockChance": 175, + "damageResistance": 2, + "droplistID": "plaguespider_b", + "attackDamage": { + "min": 2, + "max": 8 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 7, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 6, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "allaceph_1", + "iconID": "monsters_rltiles2:101", + "name": "Молодой аллацеф", + "spawnGroup": "allaceph_1", + "monsterClass": 2, + "maxHP": 90, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 105, + "damageResistance": 1, + "droplistID": "allaceph", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 4, + "max": 4 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 2, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "allaceph_2", + "iconID": "monsters_rltiles2:101", + "name": "Аллацеф", + "spawnGroup": "allaceph_1", + "monsterClass": 2, + "maxHP": 94, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 105, + "damageResistance": 1, + "droplistID": "allaceph", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 4, + "max": 4 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 2, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "allaceph_3", + "iconID": "monsters_rltiles2:102", + "name": "Сильный аллацеф", + "spawnGroup": "allaceph_2", + "monsterClass": 2, + "maxHP": 101, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 105, + "damageResistance": 2, + "droplistID": "allaceph", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 4, + "max": 4 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 2, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "allaceph_4", + "iconID": "monsters_rltiles2:102", + "name": "Крутой аллацеф", + "spawnGroup": "allaceph_2", + "monsterClass": 2, + "maxHP": 111, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 110, + "damageResistance": 2, + "droplistID": "allaceph", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 4, + "max": 4 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 3, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "allaceph_5", + "iconID": "monsters_rltiles2:103", + "name": "Сияющий аллацеф", + "spawnGroup": "allaceph_3", + "monsterClass": 2, + "maxHP": 124, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 110, + "damageResistance": 3, + "droplistID": "allaceph_b", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 6, + "max": 6 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 3, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "allaceph_6", + "iconID": "monsters_rltiles2:103", + "name": "Древний аллацеф", + "spawnGroup": "allaceph_3", + "monsterClass": 2, + "maxHP": 133, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 115, + "damageResistance": 3, + "droplistID": "allaceph_b", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 7, + "max": 7 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 3, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "vaeregh_1", + "iconID": "monsters_rltiles1:42", + "name": "Вайрег", + "spawnGroup": "allaceph_4", + "monsterClass": 2, + "maxHP": 149, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 120, + "damageResistance": 4, + "droplistID": "allaceph", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 10, + "max": 10 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 4, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "irdegh_sp_1", + "iconID": "monsters_rltiles2:26", + "name": "Ирдегское отродье", + "spawnGroup": "irdegh_spawn", + "monsterClass": 7, + "maxHP": 57, + "maxAP": 12, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 80, + "droplistID": "irdegh_spawn", + "attackDamage": { + "min": 0, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_irdegh", + "magnitude": 2, + "duration": 3, + "chance": 10 + } + ] + } + }, + { + "id": "irdegh_sp_2", + "iconID": "monsters_rltiles2:26", + "name": "Ирдегское отродье", + "spawnGroup": "irdegh_spawn", + "monsterClass": 7, + "maxHP": 68, + "maxAP": 12, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 80, + "droplistID": "irdegh_spawn", + "attackDamage": { + "min": 0, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_irdegh", + "magnitude": 2, + "duration": 3, + "chance": 10 + } + ] + } + }, + { + "id": "irdegh_1", + "iconID": "monsters_rltiles2:15", + "name": "Ирдег", + "spawnGroup": "irdegh_1", + "monsterClass": 7, + "maxHP": 115, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 60, + "damageResistance": 10, + "droplistID": "irdegh", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_irdegh", + "magnitude": 3, + "duration": 4, + "chance": 50 + } + ] + } + }, + { + "id": "irdegh_2", + "iconID": "monsters_rltiles2:15", + "name": "Ядовитый ирдег", + "spawnGroup": "irdegh_2", + "monsterClass": 7, + "maxHP": 120, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 60, + "damageResistance": 11, + "droplistID": "irdegh", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_irdegh", + "magnitude": 3, + "duration": 4, + "chance": 50 + } + ] + } + }, + { + "id": "irdegh_3", + "iconID": "monsters_rltiles2:14", + "name": "Прокалывающий ирдег", + "spawnGroup": "irdegh_3", + "monsterClass": 7, + "maxHP": 125, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 60, + "damageResistance": 11, + "droplistID": "irdegh", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_irdegh", + "magnitude": 3, + "duration": 4, + "chance": 50 + } + ] + } + }, + { + "id": "irdegh_4", + "iconID": "monsters_rltiles2:14", + "name": "Древний прокалывающий ирдег", + "spawnGroup": "irdegh_4", + "monsterClass": 7, + "maxHP": 130, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "criticalSkill": 30, + "criticalMultiplier": 2, + "blockChance": 60, + "damageResistance": 14, + "droplistID": "irdegh_b", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_irdegh", + "magnitude": 3, + "duration": 4, + "chance": 70 + } + ] + } + }, + { + "id": "maonit_1", + "iconID": "monsters_rltiles1:104", + "name": "Маонитский тролль", + "spawnGroup": "maonit_1", + "monsterClass": 5, + "maxHP": 255, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 10, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 4, + "droplistID": "maonit", + "attackDamage": { + "min": 1, + "max": 20 + } + }, + { + "id": "maonit_2", + "iconID": "monsters_rltiles1:104", + "name": "Гигантский маонитский тролль", + "spawnGroup": "maonit_1", + "monsterClass": 5, + "maxHP": 270, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 10, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 4, + "droplistID": "maonit", + "attackDamage": { + "min": 1, + "max": 20 + } + }, + { + "id": "maonit_3", + "iconID": "monsters_rltiles1:104", + "name": "Сильный маонитский тролль", + "spawnGroup": "maonit_2", + "monsterClass": 5, + "maxHP": 285, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 20, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 5, + "droplistID": "maonit", + "attackDamage": { + "min": 1, + "max": 20 + } + }, + { + "id": "maonit_4", + "iconID": "monsters_rltiles1:107", + "name": "Маонитский зверь", + "spawnGroup": "maonit_2", + "monsterClass": 5, + "maxHP": 290, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 20, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 5, + "droplistID": "maonit", + "attackDamage": { + "min": 1, + "max": 20 + } + }, + { + "id": "maonit_5", + "iconID": "monsters_rltiles1:107", + "name": "Крутой маонитский зверь", + "spawnGroup": "maonit_3", + "monsterClass": 5, + "maxHP": 310, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 6, + "droplistID": "maonit", + "attackDamage": { + "min": 1, + "max": 20 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "stunned", + "magnitude": 1, + "duration": 3, + "chance": 10 + } + ] + } + }, + { + "id": "maonit_6", + "iconID": "monsters_rltiles1:107", + "name": "Сильный маонитский зверь", + "spawnGroup": "maonit_3", + "monsterClass": 5, + "maxHP": 320, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 6, + "droplistID": "maonit", + "attackDamage": { + "min": 1, + "max": 20 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "stunned", + "magnitude": 1, + "duration": 3, + "chance": 10 + } + ] + } + }, + { + "id": "arulir_1", + "iconID": "monsters_rltiles1:13", + "name": "Арулир", + "spawnGroup": "arulir_1", + "monsterClass": 5, + "maxHP": 325, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 8, + "droplistID": "arulir", + "attackDamage": { + "min": 1, + "max": 20 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "stunned", + "magnitude": 1, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "arulir_2", + "iconID": "monsters_rltiles1:13", + "name": "Гигантский арулир", + "spawnGroup": "arulir_1", + "monsterClass": 5, + "maxHP": 330, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 8, + "droplistID": "arulir", + "attackDamage": { + "min": 1, + "max": 20 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "stunned", + "magnitude": 1, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "burrower_1", + "iconID": "monsters_rltiles2:164", + "name": "Личинка пещерного бурителя", + "spawnGroup": "burrower_1", + "monsterClass": 1, + "maxHP": 30, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 95, + "blockChance": 80, + "damageResistance": 2, + "droplistID": "burrower", + "attackDamage": { + "min": 1, + "max": 25 + } + }, + { + "id": "burrower_2", + "iconID": "monsters_rltiles2:164", + "name": "Пещерный буритель", + "spawnGroup": "burrower_1", + "monsterClass": 1, + "maxHP": 37, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 95, + "blockChance": 80, + "damageResistance": 2, + "droplistID": "burrower", + "attackDamage": { + "min": 1, + "max": 25 + } + }, + { + "id": "burrower_3", + "iconID": "monsters_rltiles2:165", + "name": "Сильная личинка бурителя", + "spawnGroup": "burrower_2", + "monsterClass": 1, + "maxHP": 44, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 95, + "blockChance": 80, + "damageResistance": 2, + "droplistID": "burrower", + "attackDamage": { + "min": 1, + "max": 25 + } + }, + { + "id": "burrower_4", + "iconID": "monsters_rltiles2:165", + "name": "Гигантская личинка бурителя", + "spawnGroup": "burrower_3", + "monsterClass": 1, + "maxHP": 75, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 95, + "blockChance": 80, + "damageResistance": 2, + "droplistID": "burrower", + "attackDamage": { + "min": 1, + "max": 25 + } + } +] diff --git a/AndorsTrail/res/raw-ru/monsterlist_v0611_npcs1.json b/AndorsTrail/res/raw-ru/monsterlist_v0611_npcs1.json new file mode 100644 index 000000000..89be8c2eb --- /dev/null +++ b/AndorsTrail/res/raw-ru/monsterlist_v0611_npcs1.json @@ -0,0 +1,176 @@ +[ + { + "id": "ulirfendor", + "iconID": "monsters_rltiles1:84", + "name": "Улирфендор", + "spawnGroup": "ulirfendor", + "monsterClass": 0, + "unique": 1, + "maxHP": 288, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 30, + "criticalMultiplier": 2, + "blockChance": 60, + "damageResistance": 6, + "droplistID": "ulirfendor", + "phraseID": "ulirfendor", + "attackDamage": { + "min": 1, + "max": 16 + } + }, + { + "id": "gylew", + "iconID": "monsters_mage2:0", + "name": "Гилев", + "spawnGroup": "gylew", + "monsterClass": 0, + "phraseID": "gylew" + }, + { + "id": "gylew_henchman", + "iconID": "monsters_men:8", + "name": "Приспешник Гилева", + "spawnGroup": "gylew_henchman", + "monsterClass": 0, + "phraseID": "gylew_henchman" + }, + { + "id": "toszylae", + "iconID": "monsters_liches:1", + "name": "Тозилай", + "spawnGroup": "toszylae", + "monsterClass": 6, + "unique": 1, + "maxHP": 207, + "maxAP": 8, + "moveCost": 5, + "attackCost": 2, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 120, + "damageResistance": 4, + "droplistID": "toszylae", + "phraseID": "toszylae", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 6, + "max": 6 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 3, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "toszylae_guard", + "iconID": "monsters_rltiles1:20", + "name": "Сиящий охранник", + "spawnGroup": "toszylae_guard", + "monsterClass": 2, + "unique": 1, + "maxHP": 320, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 120, + "damageResistance": 4, + "droplistID": "toszylae_guard", + "phraseID": "toszylae_guard", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 5, + "max": 5 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 2, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "thorin", + "iconID": "monsters_rltiles1:66", + "name": "Торин", + "spawnGroup": "thorin", + "monsterClass": 0, + "droplistID": "shop_thorin", + "phraseID": "thorin" + }, + { + "id": "lonelyhouse_sp", + "iconID": "monsters_rats:1", + "name": "Подвальная крыса", + "spawnGroup": "lonelyhouse_sp", + "monsterClass": 4, + "unique": 1, + "maxHP": 79, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 180, + "damageResistance": 4, + "droplistID": "lonelyhouse_sp", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "algangror", + "iconID": "monsters_rltiles1:68", + "name": "Алгангрор", + "spawnGroup": "algangror", + "monsterClass": 0, + "unique": 1, + "maxHP": 241, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 200, + "criticalMultiplier": 2, + "blockChance": 120, + "damageResistance": 4, + "droplistID": "algangror", + "phraseID": "algangror", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "remgard_bridge", + "iconID": "monsters_men2:4", + "name": "Смотритель моста", + "spawnGroup": "remgard_bridge", + "monsterClass": 0, + "unique": 1, + "phraseID": "remgard_bridge" + } +] diff --git a/AndorsTrail/res/raw-ru/monsterlist_v068_npcs.json b/AndorsTrail/res/raw-ru/monsterlist_v068_npcs.json new file mode 100644 index 000000000..b66cc7602 --- /dev/null +++ b/AndorsTrail/res/raw-ru/monsterlist_v068_npcs.json @@ -0,0 +1,423 @@ +[ + { + "id": "smug_looking_thief", + "iconID": "monsters_men2:9", + "name": "Элегантно выглядящий вор", + "spawnGroup": "tg_thief", + "monsterClass": 0, + "phraseID": "thievesguild_thief_1" + }, + { + "id": "thieves_guild_cook", + "iconID": "monsters_men:0", + "name": "Кашевар воровской гильдии", + "spawnGroup": "tg_cook", + "monsterClass": 0, + "droplistID": "shop_thieves_guild_cook", + "phraseID": "thievesguild_cook_1" + }, + { + "id": "pickpocket", + "iconID": "monsters_men:7", + "name": "Карманник", + "spawnGroup": "pickpocket", + "monsterClass": 0, + "phraseID": "thievesguild_pickpocket_1" + }, + { + "id": "troublemaker", + "iconID": "monsters_men:8", + "name": "Бузотер", + "spawnGroup": "troublemaker", + "monsterClass": 0, + "droplistID": "shop_troublemaker", + "phraseID": "thievesguild_troublemaker_1" + }, + { + "id": "farrik", + "iconID": "monsters_rogue1:0", + "name": "Фаррик", + "spawnGroup": "farrik", + "monsterClass": 0, + "phraseID": "farrik_select_1" + }, + { + "id": "umar", + "iconID": "monsters_man1:0", + "name": "Умар", + "spawnGroup": "umar", + "monsterClass": 0, + "phraseID": "umar_select_1" + }, + { + "id": "kaori", + "iconID": "monsters_men:7", + "name": "Каори", + "spawnGroup": "kaori", + "monsterClass": 0, + "phraseID": "kaori_start" + }, + { + "id": "old_vilegard_villager", + "iconID": "monsters_men:0", + "name": "Старый вильгардский житель", + "spawnGroup": "vilegard_villager_1", + "monsterClass": 0, + "phraseID": "vilegard_villager_1" + }, + { + "id": "grumpy_vilegard_villager", + "iconID": "monsters_men:5", + "name": "Сердитый вильгардский житель", + "spawnGroup": "vilegard_villager_2", + "monsterClass": 0, + "phraseID": "vilegard_villager_2" + }, + { + "id": "vilegard_citizen", + "iconID": "monsters_men:1", + "name": "Вильгардский житель", + "spawnGroup": "vilegard_villager_3", + "monsterClass": 0, + "phraseID": "vilegard_villager_3" + }, + { + "id": "vilegard_resident", + "iconID": "monsters_men2:0", + "name": "Вильгардский старожил", + "spawnGroup": "vilegard_villager_4", + "monsterClass": 0, + "phraseID": "vilegard_villager_4" + }, + { + "id": "vilegard_woman", + "iconID": "monsters_men:6", + "name": "Вильгардская жительница", + "spawnGroup": "vilegard_villager_5", + "monsterClass": 0, + "phraseID": "vilegard_villager_5" + }, + { + "id": "erttu", + "iconID": "monsters_mage2:0", + "name": "Эртту", + "spawnGroup": "erttu", + "monsterClass": 0, + "phraseID": "erttu_1" + }, + { + "id": "dunla", + "iconID": "monsters_rogue1:0", + "name": "Дунла", + "spawnGroup": "dunla", + "monsterClass": 0, + "droplistID": "shop_dunla", + "phraseID": "dunla_default" + }, + { + "id": "tharwyn", + "iconID": "monsters_men:7", + "name": "Фарвин", + "spawnGroup": "tharwyn", + "monsterClass": 0, + "droplistID": "shop_tharwyn", + "phraseID": "tharwyn_select" + }, + { + "id": "tavern_guest", + "iconID": "monsters_men:0", + "name": "Посетитель таверны", + "spawnGroup": "vg_tavern_drunk", + "monsterClass": 0, + "phraseID": "vilegard_tavern_drunk_1" + }, + { + "id": "jolnor", + "iconID": "monsters_men2:8", + "name": "Жолнор", + "spawnGroup": "jolnor", + "monsterClass": 0, + "droplistID": "shop_jolnor", + "phraseID": "jolnor_select_1" + }, + { + "id": "alynndir", + "iconID": "monsters_mage2:0", + "name": "Алинндир", + "spawnGroup": "alynndir", + "monsterClass": 0, + "droplistID": "shop_alynndir", + "phraseID": "alynndir_1" + }, + { + "id": "vilegard_armorer", + "iconID": "monsters_mage2:0", + "name": "Вильгардский оружейник", + "spawnGroup": "vg_armorer", + "monsterClass": 0, + "droplistID": "shop_vg_armorer", + "phraseID": "vilegard_armorer_select" + }, + { + "id": "vilegard_smith", + "iconID": "monsters_mage2:0", + "name": "Вильгардский кузнец", + "spawnGroup": "vg_smith", + "monsterClass": 0, + "droplistID": "shop_vg_smith", + "phraseID": "vilegard_smith_select" + }, + { + "id": "ogam", + "iconID": "monsters_men:0", + "name": "Огам", + "spawnGroup": "ogam", + "monsterClass": 0, + "phraseID": "ogam_1" + }, + { + "id": "foaming_flask_cook", + "iconID": "monsters_men:0", + "name": "Повар из Пенящейся Бутылки", + "spawnGroup": "ff_cook", + "monsterClass": 0, + "phraseID": "ff_cook_1" + }, + { + "id": "torilo", + "iconID": "monsters_men2:9", + "name": "Торило", + "spawnGroup": "torilo", + "monsterClass": 0, + "droplistID": "shop_torilo", + "phraseID": "torilo_1" + }, + { + "id": "ambelie", + "iconID": "monsters_men:6", + "name": "Амбелия", + "spawnGroup": "ambelie", + "monsterClass": 0, + "phraseID": "ambelie_1" + }, + { + "id": "feygard_patrol", + "iconID": "monsters_rltiles3:14", + "name": "Фейгардский патрульный", + "spawnGroup": "ff_guard", + "monsterClass": 0, + "phraseID": "ff_guard_1" + }, + { + "id": "feygard_patrol_captain", + "iconID": "monsters_men:3", + "name": "Капитан фейгардского патруля", + "spawnGroup": "ff_captain", + "monsterClass": 0, + "phraseID": "ff_captain_1" + }, + { + "id": "feygard_patrol_watch", + "iconID": "monsters_rltiles3:14", + "name": "Фейгардский страж патруля", + "spawnGroup": "ff_outsideguard", + "monsterClass": 0, + "unique": 1, + "maxHP": 80, + "attackCost": 5, + "attackChance": 70, + "blockChance": 80, + "damageResistance": 3, + "droplistID": "ff_outsideguard", + "phraseID": "ff_outsideguard_select", + "attackDamage": { + "min": 2, + "max": 7 + } + }, + { + "id": "wrye", + "iconID": "monsters_men:6", + "name": "Врия", + "spawnGroup": "wrye", + "monsterClass": 0, + "phraseID": "wrye_select_1" + }, + { + "id": "oluag", + "iconID": "monsters_men:8", + "name": "Олуаг", + "spawnGroup": "oluag", + "monsterClass": 0, + "phraseID": "oluag_1" + }, + { + "id": "cave_dwelling_boar", + "iconID": "monsters_dogs:6", + "name": "Пещерный кабан", + "spawnGroup": "caveboar1", + "monsterClass": 4, + "maxHP": 35, + "attackCost": 5, + "attackChance": 70, + "blockChance": 60, + "damageResistance": 3, + "droplistID": "canine2", + "attackDamage": { + "min": 3, + "max": 8 + } + }, + { + "id": "hardshell_beetle", + "iconID": "monsters_insects:4", + "name": "Панцирный жук", + "spawnGroup": "beetle2", + "monsterClass": 1, + "maxHP": 25, + "attackCost": 5, + "attackChance": 50, + "blockChance": 40, + "damageResistance": 9, + "droplistID": "beetle2", + "attackDamage": { + "min": 0, + "max": 5 + } + }, + { + "id": "young_shadow_gargoyle", + "iconID": "monsters_misc:1", + "name": "Молодая теневая горгулья", + "spawnGroup": "shadowgarg1", + "monsterClass": 3, + "maxHP": 35, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 8, + "criticalMultiplier": 3, + "blockChance": 75, + "damageResistance": 3, + "droplistID": "shadowgarg1", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "fledgling_shadow_gargoyle", + "iconID": "monsters_misc:1", + "name": "Птенец теневой горгульи", + "spawnGroup": "shadowgarg1", + "monsterClass": 3, + "maxHP": 36, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 8, + "criticalMultiplier": 3, + "blockChance": 75, + "damageResistance": 3, + "droplistID": "shadowgarg1", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "shadow_gargoyle", + "iconID": "monsters_misc:2", + "name": "Теневая горгулья", + "spawnGroup": "shadowgarg2", + "monsterClass": 3, + "maxHP": 37, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 8, + "criticalMultiplier": 3, + "blockChance": 85, + "damageResistance": 3, + "droplistID": "shadowgarg1", + "attackDamage": { + "min": 4, + "max": 10 + } + }, + { + "id": "tough_shadow_gargoyle", + "iconID": "monsters_misc:2", + "name": "Крутая теневая горгулья", + "spawnGroup": "shadowgarg2", + "monsterClass": 3, + "maxHP": 37, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 8, + "criticalMultiplier": 3, + "blockChance": 85, + "damageResistance": 4, + "droplistID": "shadowgarg2", + "attackDamage": { + "min": 4, + "max": 10 + } + }, + { + "id": "shadow_gargoyle_trainer", + "iconID": "monsters_liches:0", + "name": "Дрессировщик теневых горгулий", + "spawnGroup": "shadowgarg3", + "monsterClass": 6, + "maxHP": 35, + "attackCost": 5, + "attackChance": 90, + "criticalSkill": 12, + "criticalMultiplier": 3, + "blockChance": 90, + "damageResistance": 5, + "droplistID": "shadowgarg3", + "attackDamage": { + "min": 3, + "max": 6 + } + }, + { + "id": "shadow_gargoyle_master", + "iconID": "monsters_liches:1", + "name": "Хозяин теневых горгулий", + "spawnGroup": "shadowgarg4", + "monsterClass": 6, + "maxHP": 35, + "attackCost": 5, + "attackChance": 125, + "criticalSkill": 12, + "criticalMultiplier": 3, + "blockChance": 90, + "damageResistance": 5, + "droplistID": "shadowgarg3", + "attackDamage": { + "min": 3, + "max": 6 + } + }, + { + "id": "maelveon", + "iconID": "monsters_liches:2", + "name": "Мелвеон", + "spawnGroup": "maelveon", + "monsterClass": 6, + "unique": 1, + "maxHP": 55, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 15, + "criticalMultiplier": 3, + "blockChance": 90, + "damageResistance": 5, + "droplistID": "maelveon", + "phraseID": "maelveon", + "attackDamage": { + "min": 0, + "max": 12 + } + } +] diff --git a/AndorsTrail/res/raw-ru/monsterlist_v069_monsters.json b/AndorsTrail/res/raw-ru/monsterlist_v069_monsters.json new file mode 100644 index 000000000..e9f3b8bf2 --- /dev/null +++ b/AndorsTrail/res/raw-ru/monsterlist_v069_monsters.json @@ -0,0 +1,646 @@ +[ + { + "id": "puny_caverat", + "iconID": "monsters_rats:0", + "name": "Пещерная крыса", + "spawnGroup": "puny_caverat", + "monsterClass": 4, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 50, + "blockChance": 30, + "droplistID": "rat", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "rabid_hound", + "iconID": "monsters_rltiles2:108", + "name": "Бешеная собака", + "spawnGroup": "forestwolf2", + "monsterClass": 4, + "maxHP": 40, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 110, + "blockChance": 30, + "droplistID": "canine", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "vicious_hound", + "iconID": "monsters_rltiles2:110", + "name": "Злая собака", + "spawnGroup": "forestboar4", + "monsterClass": 4, + "maxHP": 31, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 150, + "blockChance": 60, + "damageResistance": 3, + "droplistID": "canineboss", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "mountain_wolf", + "iconID": "monsters_rltiles2:109", + "name": "Горный волк", + "spawnGroup": "primwolf1", + "monsterClass": 4, + "maxHP": 49, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 150, + "blockChance": 60, + "damageResistance": 3, + "droplistID": "canine", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "hatchling_white_wyrm", + "iconID": "monsters_rltiles1:118", + "name": "Детеныш белого змея", + "spawnGroup": "wyrm_1", + "monsterClass": 7, + "maxHP": 41, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 75, + "blockChance": 130, + "damageResistance": 5, + "droplistID": "wyrm_1", + "attackDamage": { + "min": 4, + "max": 10 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "fatigue_minor", + "magnitude": 1, + "duration": 5, + "chance": 10 + } + ] + } + }, + { + "id": "young_white_wyrm", + "iconID": "monsters_rltiles1:118", + "name": "Молодой белый змей", + "spawnGroup": "wyrm_2", + "monsterClass": 7, + "maxHP": 47, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 75, + "blockChance": 130, + "damageResistance": 5, + "droplistID": "wyrm_2", + "attackDamage": { + "min": 4, + "max": 10 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "fatigue_minor", + "magnitude": 1, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "white_wyrm", + "iconID": "monsters_rltiles1:119", + "name": "Белый змей", + "spawnGroup": "wyrm_3", + "monsterClass": 7, + "maxHP": 55, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 75, + "blockChance": 130, + "damageResistance": 5, + "droplistID": "wyrm_3", + "attackDamage": { + "min": 4, + "max": 10 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "fatigue_minor", + "magnitude": 1, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "young_aulaeth", + "iconID": "monsters_rltiles2:176", + "name": "Молодой аулет", + "spawnGroup": "wyrm_1", + "monsterClass": 5, + "maxHP": 105, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 40, + "blockChance": 30, + "damageResistance": 5, + "droplistID": "aulaeth", + "attackDamage": { + "min": 0, + "max": 4 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "aulaeth", + "iconID": "monsters_rltiles2:58", + "name": "Аулет", + "spawnGroup": "wyrm_2", + "monsterClass": 5, + "maxHP": 120, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 40, + "blockChance": 40, + "damageResistance": 6, + "droplistID": "aulaeth", + "attackDamage": { + "min": 0, + "max": 5 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "strong_aulaeth", + "iconID": "monsters_rltiles2:58", + "name": "Сильный аулет", + "spawnGroup": "wyrm_3", + "monsterClass": 5, + "maxHP": 135, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 40, + "blockChance": 35, + "damageResistance": 6, + "droplistID": "aulaeth", + "attackDamage": { + "min": 0, + "max": 5 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "wyrm_trainer", + "iconID": "monsters_rltiles2:0", + "name": "Дрессировщик змеев", + "spawnGroup": "wyrm_4", + "monsterClass": 6, + "maxHP": 69, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "blockChance": 90, + "damageResistance": 4, + "droplistID": "wyrm_4", + "attackDamage": { + "min": 2, + "max": 9 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + }, + "conditionsTarget": [ + { + "condition": "fatigue_minor", + "magnitude": 1, + "duration": 10, + "chance": 70 + } + ] + } + }, + { + "id": "wyrm_apprentice", + "iconID": "monsters_rltiles2:0", + "name": "Ученик дрессировщика змеев", + "spawnGroup": "wyrm_4", + "monsterClass": 6, + "maxHP": 69, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 140, + "blockChance": 90, + "damageResistance": 4, + "droplistID": "wyrm_4", + "attackDamage": { + "min": 2, + "max": 9 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + }, + "conditionsTarget": [ + { + "condition": "fatigue_minor", + "magnitude": 1, + "duration": 10, + "chance": 70 + } + ] + } + }, + { + "id": "young_gornaud", + "iconID": "monsters_rltiles2:29", + "name": "Молодой горнод", + "spawnGroup": "gornaud_1", + "monsterClass": 5, + "maxHP": 70, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "blockChance": 50, + "droplistID": "gornaud_1", + "attackDamage": { + "min": 0, + "max": 15 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "dazed", + "magnitude": 1, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "gornaud", + "iconID": "monsters_rltiles2:29", + "name": "Горнод", + "spawnGroup": "gornaud_2", + "monsterClass": 5, + "maxHP": 95, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "blockChance": 50, + "damageResistance": 4, + "droplistID": "gornaud_2", + "attackDamage": { + "min": 0, + "max": 15 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "dazed", + "magnitude": 1, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "strong_gornaud", + "iconID": "monsters_rltiles2:30", + "name": "Сильный горнод", + "spawnGroup": "gornaud_3", + "monsterClass": 5, + "maxHP": 95, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "blockChance": 50, + "damageResistance": 5, + "droplistID": "gornaud_3", + "attackDamage": { + "min": 0, + "max": 15 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "dazed", + "magnitude": 1, + "duration": 5, + "chance": 70 + } + ] + } + }, + { + "id": "slithering_venomfang", + "iconID": "monsters_snakes:2", + "name": "Скользящий ядозуб", + "spawnGroup": "gornaud_1", + "monsterClass": 7, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 90, + "damageResistance": 2, + "droplistID": "cave_serpent", + "attackDamage": { + "min": 1, + "max": 2 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_weak", + "magnitude": 1, + "duration": 2, + "chance": 20 + } + ] + } + }, + { + "id": "scaled_venomfang", + "iconID": "monsters_snakes:3", + "name": "Чешуйчатый ядозуб", + "spawnGroup": "gornaud_2", + "monsterClass": 7, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "blockChance": 90, + "damageResistance": 2, + "droplistID": "cave_serpent", + "attackDamage": { + "min": 2, + "max": 4 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_weak", + "magnitude": 1, + "duration": 2, + "chance": 50 + } + ] + } + }, + { + "id": "tough_venomfang", + "iconID": "monsters_snakes:3", + "name": "Курутой ядозуб", + "spawnGroup": "gornaud_3", + "monsterClass": 7, + "maxHP": 41, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "blockChance": 90, + "damageResistance": 2, + "droplistID": "cave_serpent", + "attackDamage": { + "min": 2, + "max": 5 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_weak", + "magnitude": 1, + "duration": 2, + "chance": 50 + } + ] + } + }, + { + "id": "restless_dead", + "iconID": "monsters_rltiles1:47", + "name": "Беспокойный мертвец", + "spawnGroup": "restless_dead_1", + "monsterClass": 8, + "maxHP": 25, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 50, + "criticalSkill": 80, + "criticalMultiplier": 2, + "blockChance": 140, + "damageResistance": 3, + "droplistID": "restless_dead_1", + "attackDamage": { + "min": 0, + "max": 3 + } + }, + { + "id": "grave_spawn", + "iconID": "monsters_rltiles1:49", + "name": "Могильное отродье", + "spawnGroup": "restless_dead_1", + "monsterClass": 2, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 110, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 35, + "damageResistance": 3, + "droplistID": "restless_dead_1", + "attackDamage": { + "min": 2, + "max": 5 + } + }, + { + "id": "restless_apparition", + "iconID": "monsters_rltiles1:47", + "name": "Беспокойный призрак", + "spawnGroup": "restless_dead_2", + "monsterClass": 8, + "maxHP": 29, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 10, + "damageResistance": 1, + "droplistID": "restless_dead_2", + "attackDamage": { + "min": 2, + "max": 6 + } + }, + { + "id": "skeletal_reaper", + "iconID": "monsters_rltiles1:27", + "name": "Скелет-жнец", + "spawnGroup": "restless_dead_2", + "monsterClass": 3, + "maxHP": 15, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 150, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 110, + "droplistID": "restless_dead_2", + "attackDamage": { + "min": 0, + "max": 9 + } + }, + { + "id": "kazaul_spawn", + "iconID": "monsters_rltiles1:41", + "name": "Казаулское отродье", + "spawnGroup": "kazaul_1", + "monsterClass": 2, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 50, + "criticalMultiplier": 2, + "blockChance": 90, + "damageResistance": 1, + "droplistID": "kazaul_1", + "attackDamage": { + "min": 3, + "max": 5 + } + }, + { + "id": "kazaul_imp", + "iconID": "monsters_rltiles1:45", + "name": "Казаулский бес", + "spawnGroup": "kazaul_2", + "monsterClass": 2, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 105, + "damageResistance": 1, + "droplistID": "kazaul_2", + "attackDamage": { + "min": 3, + "max": 7 + } + }, + { + "id": "kazaul_guardian", + "iconID": "monsters_rltiles1:42", + "name": "Казаулский стражник", + "spawnGroup": "kazaul_guardian", + "monsterClass": 2, + "unique": 1, + "maxHP": 95, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 90, + "damageResistance": 3, + "droplistID": "kazaul_guardian", + "phraseID": "kazaul_guardian", + "attackDamage": { + "min": 3, + "max": 8 + } + }, + { + "id": "graverobber", + "iconID": "monsters_karvis2:3", + "name": "Грабитель могил", + "spawnGroup": "bjorgur_bandit", + "monsterClass": 0, + "unique": 1, + "maxHP": 62, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 120, + "blockChance": 72, + "damageResistance": 1, + "droplistID": "bjorgur_bandit", + "phraseID": "bjorgur_bandit", + "attackDamage": { + "min": 2, + "max": 6 + } + } +] diff --git a/AndorsTrail/res/raw-ru/monsterlist_v069_npcs.json b/AndorsTrail/res/raw-ru/monsterlist_v069_npcs.json new file mode 100644 index 000000000..481b113b0 --- /dev/null +++ b/AndorsTrail/res/raw-ru/monsterlist_v069_npcs.json @@ -0,0 +1,536 @@ +[ + { + "id": "agent1", + "iconID": "monsters_men:4", + "name": "Агент", + "spawnGroup": "bwm_agent_1", + "monsterClass": 0, + "unique": 1, + "phraseID": "bwm_agent_1_start" + }, + { + "id": "agent2", + "iconID": "monsters_men:4", + "name": "Агент", + "spawnGroup": "bwm_agent_2", + "monsterClass": 0, + "unique": 1, + "phraseID": "bwm_agent_2_start" + }, + { + "id": "agent3", + "iconID": "monsters_men:4", + "name": "Агент", + "spawnGroup": "bwm_agent_3", + "monsterClass": 0, + "unique": 1, + "phraseID": "bwm_agent_3_start" + }, + { + "id": "agent4", + "iconID": "monsters_men:4", + "name": "Агент", + "spawnGroup": "bwm_agent_4", + "monsterClass": 0, + "unique": 1, + "phraseID": "bwm_agent_4_start" + }, + { + "id": "agent5", + "iconID": "monsters_men:4", + "name": "Агент", + "spawnGroup": "bwm_agent_5", + "monsterClass": 0, + "unique": 1, + "phraseID": "bwm_agent_5_start" + }, + { + "id": "agent6", + "iconID": "monsters_men:4", + "name": "Агент", + "spawnGroup": "bwm_agent_6", + "monsterClass": 0, + "unique": 1, + "phraseID": "bwm_agent_6_start" + }, + { + "id": "arghest", + "iconID": "monsters_rltiles2:81", + "name": "Аргест", + "spawnGroup": "arghest", + "monsterClass": 0, + "phraseID": "arghest_start" + }, + { + "id": "tonis", + "iconID": "monsters_rltiles1:67", + "name": "Тонис", + "spawnGroup": "tonis", + "monsterClass": 0, + "phraseID": "tonis_start" + }, + { + "id": "moyra", + "iconID": "monsters_rltiles1:74", + "name": "Мойра", + "spawnGroup": "moyra", + "monsterClass": 0, + "phraseID": "moyra_1" + }, + { + "id": "prim_citizen", + "iconID": "monsters_karvis2:6", + "name": "Примский горожанина", + "spawnGroup": "prim_commoner1", + "monsterClass": 0, + "phraseID": "prim_commoner1" + }, + { + "id": "prim_commoner", + "iconID": "monsters_rltiles1:68", + "name": "Примский простолюдин", + "spawnGroup": "prim_commoner2", + "monsterClass": 0, + "phraseID": "prim_commoner2" + }, + { + "id": "prim_resident", + "iconID": "monsters_karvis2:2", + "name": "Примский старожил", + "spawnGroup": "prim_commoner3", + "monsterClass": 0, + "phraseID": "prim_commoner3" + }, + { + "id": "prim_evoker", + "iconID": "monsters_rltiles1:84", + "name": "Примский заклинатель", + "spawnGroup": "prim_commoner4", + "monsterClass": 0, + "phraseID": "prim_commoner4" + }, + { + "id": "laecca", + "iconID": "monsters_rltiles1:72", + "name": "Лаесса", + "spawnGroup": "laecca", + "monsterClass": 0, + "phraseID": "laecca_1" + }, + { + "id": "prim_cook", + "iconID": "monsters_karvis2:0", + "name": "Примский повар", + "spawnGroup": "prim_cook", + "monsterClass": 0, + "phraseID": "prim_cook_start" + }, + { + "id": "prim_visitor", + "iconID": "monsters_rltiles1:63", + "name": "Примский приезжий", + "spawnGroup": "prim_innguest", + "monsterClass": 0, + "phraseID": "prim_innguest" + }, + { + "id": "birgil", + "iconID": "monsters_rltiles2:81", + "name": "Биргил", + "spawnGroup": "birgil", + "monsterClass": 0, + "droplistID": "shop_birgil", + "phraseID": "birgil_1" + }, + { + "id": "prim_tavern_guest", + "iconID": "monsters_rltiles1:106", + "name": "Примский посетитель таверны", + "spawnGroup": "prim_tavern_guest1", + "monsterClass": 0, + "phraseID": "prim_tavern_guest1" + }, + { + "id": "prim_tavern_regular", + "iconID": "monsters_rltiles1:106", + "name": "Примский завсегдатай таверны", + "spawnGroup": "prim_tavern_guest2", + "monsterClass": 0, + "phraseID": "prim_tavern_guest2" + }, + { + "id": "prim_bar_guest", + "iconID": "monsters_rltiles1:106", + "name": "Примский посетитель бара", + "spawnGroup": "prim_tavern_guest3", + "monsterClass": 0, + "phraseID": "prim_tavern_guest3" + }, + { + "id": "prim_bar_regular", + "iconID": "monsters_rltiles1:106", + "name": "Примский завсегдатай бара", + "spawnGroup": "prim_tavern_guest4", + "monsterClass": 0, + "phraseID": "prim_tavern_guest4" + }, + { + "id": "prim_armorer", + "iconID": "monsters_rltiles1:88", + "name": "Примский оружейник", + "spawnGroup": "prim_armorer", + "monsterClass": 0, + "droplistID": "shop_prim_armorer", + "phraseID": "prim_armorer" + }, + { + "id": "jueth", + "iconID": "monsters_men2:0", + "name": "Джуф", + "spawnGroup": "prim_tailor", + "monsterClass": 0, + "phraseID": "prim_tailor" + }, + { + "id": "bjorgur", + "iconID": "monsters_karvis2:7", + "name": "Бьоргур", + "spawnGroup": "bjorgur", + "monsterClass": 0, + "phraseID": "bjorgur_start" + }, + { + "id": "prim_prisoner", + "iconID": "monsters_rltiles2:81", + "name": "Примский заключенный", + "spawnGroup": "prim_prisoner", + "monsterClass": 0, + "phraseID": "prim_guard1" + }, + { + "id": "fulus", + "iconID": "monsters_karvis2:3", + "name": "Фулус", + "spawnGroup": "fulus", + "monsterClass": 0, + "phraseID": "fulus_start" + }, + { + "id": "guthbered", + "iconID": "monsters_rltiles1:92", + "name": "Гатберед", + "spawnGroup": "guthbered", + "monsterClass": 0, + "unique": 1, + "maxHP": 80, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "guthbered", + "phraseID": "guthbered_start", + "attackDamage": { + "min": 4, + "max": 9 + } + }, + { + "id": "guthbereds_bodyguard", + "iconID": "monsters_rltiles1:76", + "name": "Телохранитель Гатбереда", + "spawnGroup": "guthbered_guard", + "monsterClass": 0, + "phraseID": "guthbered_guard" + }, + { + "id": "prim_weapon_guard", + "iconID": "monsters_rltiles1:65", + "name": "Примский вооруженный охранник", + "spawnGroup": "prim_guard1", + "monsterClass": 0, + "phraseID": "prim_guard1" + }, + { + "id": "prim_sentry", + "iconID": "monsters_rltiles3:14", + "name": "Примский часовой", + "spawnGroup": "prim_guard2", + "monsterClass": 0, + "phraseID": "prim_guard2" + }, + { + "id": "prim_guard", + "iconID": "monsters_rltiles1:65", + "name": "Примский охранник", + "spawnGroup": "prim_guard4", + "monsterClass": 0, + "phraseID": "prim_guard4" + }, + { + "id": "tired_prim_guard", + "iconID": "monsters_rltiles1:76", + "name": "Усталый примский охранник", + "spawnGroup": "prim_guard3", + "monsterClass": 0, + "phraseID": "prim_guard3" + }, + { + "id": "prim_treasury_guard", + "iconID": "monsters_rltiles1:69", + "name": "Примский охранник сокровищницы", + "spawnGroup": "prim_treasury_guard", + "monsterClass": 0, + "phraseID": "prim_treasury_guard" + }, + { + "id": "samar", + "iconID": "monsters_rltiles2:93", + "name": "Самар", + "spawnGroup": "prim_priest", + "monsterClass": 0, + "droplistID": "shop_samar", + "phraseID": "prim_priest" + }, + { + "id": "prim_priestly_acolyte", + "iconID": "monsters_rltiles1:83", + "name": "Примский псаломщик", + "spawnGroup": "prim_acolyte", + "monsterClass": 0, + "phraseID": "prim_acolyte" + }, + { + "id": "studying_prim_pupil", + "iconID": "monsters_rltiles1:74", + "name": "Обучающийся примский ученик", + "spawnGroup": "prim_pupil1", + "monsterClass": 0, + "phraseID": "prim_pupil1" + }, + { + "id": "reading_prim_pupil", + "iconID": "monsters_rltiles1:74", + "name": "Читающий примский ученик", + "spawnGroup": "prim_pupil2", + "monsterClass": 0, + "phraseID": "prim_pupil2" + }, + { + "id": "prim_pupil", + "iconID": "monsters_rltiles1:74", + "name": "Примский ученик", + "spawnGroup": "prim_pupil3", + "monsterClass": 0, + "phraseID": "prim_pupil3" + }, + { + "id": "blackwater_entrance_guard", + "iconID": "monsters_rltiles3:14", + "name": "Блеквотский привратник", + "spawnGroup": "blackwater_entranceguard", + "monsterClass": 0, + "maxHP": 30, + "maxAP": 10, + "phraseID": "blackwater_entranceguard" + }, + { + "id": "blackwater_dinner_guest", + "iconID": "monsters_karvis2:2", + "name": "Блеквотский обеденный гость", + "spawnGroup": "blackwater_guest1", + "monsterClass": 0, + "maxHP": 20, + "maxAP": 10, + "phraseID": "blackwater_guest1" + }, + { + "id": "blackwater_inhabitant", + "iconID": "monsters_man1:0", + "name": "Блеквотский житель", + "spawnGroup": "blackwater_guest2", + "monsterClass": 0, + "maxHP": 10, + "maxAP": 10, + "phraseID": "blackwater_guest2" + }, + { + "id": "blackwater_cook", + "iconID": "monsters_karvis2:0", + "name": "Блеквотский повар", + "spawnGroup": "blackwater_cook", + "monsterClass": 0, + "phraseID": "blackwater_cook" + }, + { + "id": "keneg", + "iconID": "monsters_rltiles1:86", + "name": "Кенег", + "spawnGroup": "keneg", + "monsterClass": 0, + "phraseID": "keneg" + }, + { + "id": "mazeg", + "iconID": "monsters_rltiles1:85", + "name": "Мазег", + "spawnGroup": "mazeg", + "monsterClass": 0, + "droplistID": "shop_mazeg", + "phraseID": "mazeg" + }, + { + "id": "waeges", + "iconID": "monsters_rltiles1:88", + "name": "Ваегес", + "spawnGroup": "waeges", + "monsterClass": 0, + "droplistID": "shop_waeges", + "phraseID": "waeges" + }, + { + "id": "blackwater_fighter", + "iconID": "monsters_rltiles1:66", + "name": "Блеквотский боевик", + "spawnGroup": "blackwater_fighter", + "monsterClass": 0, + "phraseID": "blackwater_fighter" + }, + { + "id": "ungorm", + "iconID": "monsters_rltiles1:83", + "name": "Унгорм", + "spawnGroup": "ungorm", + "monsterClass": 0, + "phraseID": "ungorm" + }, + { + "id": "blackwater_pupil", + "iconID": "monsters_rltiles1:74", + "name": "Блеквотский ученик", + "spawnGroup": "blackwater_pupil", + "monsterClass": 0, + "phraseID": "blackwater_pupil" + }, + { + "id": "laede", + "iconID": "monsters_rltiles1:81", + "name": "Лаед", + "spawnGroup": "blackwater_sleephall", + "monsterClass": 0, + "phraseID": "laede" + }, + { + "id": "herec", + "iconID": "monsters_men2:9", + "name": "Херец", + "spawnGroup": "herec", + "monsterClass": 0, + "droplistID": "shop_herec", + "phraseID": "herec_start" + }, + { + "id": "iducus", + "iconID": "monsters_rltiles1:87", + "name": "Идукус", + "spawnGroup": "iducus", + "monsterClass": 0, + "droplistID": "shop_iducus", + "phraseID": "iducus" + }, + { + "id": "blackwater_priest", + "iconID": "monsters_rltiles1:80", + "name": "Блеквотский священника", + "spawnGroup": "blackwater_priest", + "monsterClass": 0, + "phraseID": "blackwater_priest" + }, + { + "id": "studying_blackwater_priest", + "iconID": "monsters_rltiles1:84", + "name": "Обучающийся блеквотский священник", + "spawnGroup": "blackwater_pupil", + "monsterClass": 0, + "phraseID": "blackwater_pupil" + }, + { + "id": "blackwater_guard", + "iconID": "monsters_rltiles1:76", + "name": "Блеквотский охранник", + "spawnGroup": "blackwater_guard1", + "monsterClass": 0, + "phraseID": "blackwater_guard1" + }, + { + "id": "blackwater_border_patrol", + "iconID": "monsters_rltiles1:76", + "name": "Блеквотский пограничник", + "spawnGroup": "blackwater_guard2", + "monsterClass": 0, + "phraseID": "blackwater_guard2" + }, + { + "id": "harlenns_bodyguard", + "iconID": "monsters_rltiles1:76", + "name": "Телохранитель Харленна", + "spawnGroup": "blackwater_bossguard", + "monsterClass": 0, + "phraseID": "blackwater_bossguard" + }, + { + "id": "blackwater_chamber_guard", + "iconID": "monsters_men:3", + "name": "Блеквотский тюремщик", + "spawnGroup": "blackwater_throneguard", + "monsterClass": 0, + "unique": 1, + "phraseID": "blackwater_throneguard" + }, + { + "id": "harlenn", + "iconID": "monsters_men2:6", + "name": "Харленн", + "spawnGroup": "harlenn", + "monsterClass": 0, + "unique": 1, + "maxHP": 80, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "harlenn", + "phraseID": "harlenn_start", + "attackDamage": { + "min": 4, + "max": 9 + } + }, + { + "id": "throdna", + "iconID": "monsters_men2:4", + "name": "Фродна", + "spawnGroup": "throdna", + "monsterClass": 0, + "phraseID": "throdna_start" + }, + { + "id": "throdnas_guard", + "iconID": "monsters_rltiles1:85", + "name": "Охранник Фродна", + "spawnGroup": "throdna_guard", + "monsterClass": 0, + "phraseID": "throdna_guard" + }, + { + "id": "blackwater_mage", + "iconID": "monsters_rltiles1:80", + "name": "Блеквотский маг", + "spawnGroup": "blackwater_acolyte", + "monsterClass": 0, + "phraseID": "blackwater_acolyte" + } +] diff --git a/AndorsTrail/res/raw-ru/monsterlist_wilderness.json b/AndorsTrail/res/raw-ru/monsterlist_wilderness.json new file mode 100644 index 000000000..59d846421 --- /dev/null +++ b/AndorsTrail/res/raw-ru/monsterlist_wilderness.json @@ -0,0 +1,513 @@ +[ + { + "id": "wild_fox", + "iconID": "monsters_dogs:3", + "name": "Дикая лиса", + "spawnGroup": "fox2", + "monsterClass": 4, + "maxHP": 25, + "attackCost": 5, + "attackChance": 100, + "blockChance": 40, + "droplistID": "canine", + "attackDamage": { + "min": 4, + "max": 5 + } + }, + { + "id": "stinging_wasp", + "iconID": "monsters_insects:1", + "name": "Жалящая оса", + "spawnGroup": "forestwasp2", + "monsterClass": 1, + "maxHP": 15, + "attackCost": 10, + "attackChance": 150, + "blockChance": 60, + "droplistID": "wasp", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "wild_boar", + "iconID": "monsters_dogs:6", + "name": "Дикий кабан", + "spawnGroup": "forestboar2", + "monsterClass": 4, + "maxHP": 20, + "attackCost": 5, + "attackChance": 110, + "blockChance": 30, + "droplistID": "canineboss", + "attackDamage": { + "min": 3, + "max": 3 + } + }, + { + "id": "forest_beetle", + "iconID": "monsters_insects:4", + "name": "Лесной жук", + "spawnGroup": "forestbeetle", + "monsterClass": 1, + "maxHP": 14, + "attackCost": 10, + "attackChance": 150, + "blockChance": 60, + "damageResistance": 2, + "droplistID": "insect", + "attackDamage": { + "min": 2, + "max": 4 + } + }, + { + "id": "wolf", + "iconID": "monsters_dogs:4", + "name": "Волк", + "spawnGroup": "forestwolf1", + "monsterClass": 4, + "maxHP": 30, + "maxAP": 10, + "moveCost": 3, + "attackCost": 5, + "attackChance": 110, + "blockChance": 30, + "droplistID": "canine", + "attackDamage": { + "min": 3, + "max": 6 + } + }, + { + "id": "forest_serpent", + "iconID": "monsters_snakes:4", + "name": "Лесная змея", + "spawnGroup": "forestserpent1", + "monsterClass": 7, + "maxHP": 20, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "criticalSkill": 30, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "snake2", + "attackDamage": { + "min": 2, + "max": 3 + } + }, + { + "id": "vicious_forest_serpent", + "iconID": "monsters_snakes:4", + "name": "Ядовитая лесная змея", + "spawnGroup": "forestserpent2", + "monsterClass": 7, + "maxHP": 27, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "criticalSkill": 30, + "criticalMultiplier": 2, + "blockChance": 50, + "droplistID": "snake2", + "attackDamage": { + "min": 3, + "max": 4 + } + }, + { + "id": "anklebiter", + "iconID": "monsters_dogs:6", + "name": "Пяткокусатель", + "spawnGroup": "forestboar3", + "monsterClass": 4, + "maxHP": 31, + "attackCost": 5, + "attackChance": 150, + "blockChance": 60, + "damageResistance": 3, + "droplistID": "canine2", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "flagstone_sentry", + "iconID": "monsters_men:3", + "name": "Флагстоунский часовой", + "spawnGroup": "flagstone_sentry", + "monsterClass": 0, + "phraseID": "flagstone_sentry" + }, + { + "id": "escaped_prisoner", + "iconID": "monsters_men:0", + "name": "Сбежавший заключенный", + "spawnGroup": "prisoner1", + "monsterClass": 0, + "unique": 1, + "maxHP": 15, + "attackCost": 10, + "attackChance": 50, + "blockChance": 20, + "droplistID": "prisoner", + "phraseID": "prisoner1", + "attackDamage": { + "min": 3, + "max": 7 + } + }, + { + "id": "starving_prisoner", + "iconID": "monsters_misc:11", + "name": "Голодающий заключенный", + "spawnGroup": "prisoner2", + "monsterClass": 0, + "unique": 1, + "maxHP": 10, + "attackCost": 3, + "attackChance": 60, + "blockChance": 60, + "droplistID": "prisoner", + "phraseID": "prisoner2", + "attackDamage": { + "min": 3, + "max": 5 + } + }, + { + "id": "bone_warrior", + "iconID": "monsters_skeleton1:0", + "name": "Костяной воин", + "spawnGroup": "skeleton2", + "monsterClass": 3, + "maxHP": 32, + "attackCost": 5, + "attackChance": 120, + "blockChance": 60, + "damageResistance": 2, + "droplistID": "skeleton2", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "bone_champion", + "iconID": "monsters_skeleton1:0", + "name": "Костяной боец", + "spawnGroup": "skeleton3", + "monsterClass": 3, + "maxHP": 49, + "attackCost": 5, + "attackChance": 130, + "blockChance": 60, + "damageResistance": 2, + "droplistID": "skeleton3", + "attackDamage": { + "min": 4, + "max": 9 + } + }, + { + "id": "undead_warden", + "iconID": "monsters_liches:0", + "name": "Надзиратель нежити", + "spawnGroup": "flagstone_guard0", + "monsterClass": 6, + "unique": 1, + "maxHP": 57, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "damageResistance": 1, + "droplistID": "flagstone_guard0", + "phraseID": "flagstone_guard0", + "attackDamage": { + "min": 4, + "max": 8 + } + }, + { + "id": "cave_guardian", + "iconID": "monsters_rltiles1:16", + "name": "Пещерный стражник", + "spawnGroup": "flagstone_guard1", + "monsterClass": 2, + "unique": 1, + "maxHP": 61, + "attackCost": 5, + "attackChance": 150, + "criticalSkill": 10, + "criticalMultiplier": 3, + "blockChance": 90, + "damageResistance": 2, + "droplistID": "flagstone_guard1", + "phraseID": "flagstone_guard1", + "attackDamage": { + "min": 4, + "max": 10 + } + }, + { + "id": "winged_demon", + "iconID": "monsters_demon1:0", + "name": "Крылатый демон", + "spawnGroup": "flagstone_guard2", + "size": "2x2", + "monsterClass": 2, + "unique": 1, + "maxHP": 82, + "attackCost": 5, + "attackChance": 90, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 70, + "damageResistance": 5, + "droplistID": "flagstone_guard2", + "phraseID": "flagstone_guard2", + "attackDamage": { + "min": 4, + "max": 12 + } + }, + { + "id": "narael", + "iconID": "monsters_man1:0", + "name": "Нараэль", + "spawnGroup": "narael", + "monsterClass": 0, + "phraseID": "narael" + }, + { + "id": "rotting_corpse", + "iconID": "monsters_zombie1:0", + "name": "Гниющий труп", + "spawnGroup": "undead1", + "monsterClass": 6, + "maxHP": 71, + "attackCost": 10, + "attackChance": 30, + "criticalSkill": 50, + "criticalMultiplier": 2, + "blockChance": 30, + "damageResistance": 2, + "droplistID": "undead1", + "phraseID": "zombie1", + "attackDamage": { + "min": 2, + "max": 5 + } + }, + { + "id": "walking_corpse", + "iconID": "monsters_zombie1:0", + "name": "Ходячий мертвец", + "spawnGroup": "undead1", + "monsterClass": 6, + "maxHP": 90, + "attackCost": 10, + "attackChance": 30, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 30, + "damageResistance": 2, + "droplistID": "undead1", + "attackDamage": { + "min": 2, + "max": 4 + } + }, + { + "id": "gargoyle", + "iconID": "monsters_misc:2", + "name": "Горгулья", + "spawnGroup": "undead1", + "monsterClass": 3, + "maxHP": 47, + "attackCost": 10, + "attackChance": 110, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 70, + "damageResistance": 2, + "droplistID": "undead1", + "attackDamage": { + "min": 3, + "max": 7 + } + }, + { + "id": "fledgling_gargoyle", + "iconID": "monsters_misc:1", + "name": "Птенец горгульи", + "spawnGroup": "undead1", + "monsterClass": 3, + "maxHP": 35, + "attackCost": 10, + "attackChance": 110, + "blockChance": 60, + "damageResistance": 2, + "droplistID": "undead1", + "attackDamage": { + "min": 3, + "max": 6 + } + }, + { + "id": "large_cave_rat", + "iconID": "monsters_rats:3", + "name": "Большая пещерная крыса", + "spawnGroup": "undeadrat1", + "monsterClass": 4, + "maxHP": 21, + "maxAP": 10, + "moveCost": 10, + "attackCost": 3, + "attackChance": 60, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 40, + "droplistID": "catacombrat", + "attackDamage": { + "min": 3, + "max": 4 + } + }, + { + "id": "pack_leader", + "iconID": "monsters_dogs:5", + "name": "Вожак стаи", + "spawnGroup": "pack_boss", + "monsterClass": 4, + "unique": 1, + "maxHP": 65, + "attackCost": 5, + "attackChance": 90, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 40, + "damageResistance": 4, + "droplistID": "pack_boss", + "attackDamage": { + "min": 2, + "max": 10 + } + }, + { + "id": "pack_hunter", + "iconID": "monsters_dogs:4", + "name": "Стайный охотник", + "spawnGroup": "pack3", + "monsterClass": 4, + "maxHP": 45, + "attackCost": 5, + "attackChance": 90, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 40, + "damageResistance": 3, + "droplistID": "pack3", + "attackDamage": { + "min": 2, + "max": 7 + } + }, + { + "id": "rabid_wolf", + "iconID": "monsters_dogs:4", + "name": "Бешеный волк", + "spawnGroup": "pack2", + "monsterClass": 4, + "maxHP": 42, + "attackCost": 5, + "attackChance": 90, + "blockChance": 50, + "damageResistance": 3, + "droplistID": "pack2", + "attackDamage": { + "min": 2, + "max": 6 + } + }, + { + "id": "fledgling_wolf", + "iconID": "monsters_dogs:3", + "name": "Волк-щенок", + "spawnGroup": "pack2", + "monsterClass": 4, + "maxHP": 42, + "attackCost": 3, + "attackChance": 70, + "blockChance": 50, + "damageResistance": 3, + "droplistID": "pack2", + "attackDamage": { + "min": 2, + "max": 5 + } + }, + { + "id": "young_wolf", + "iconID": "monsters_dogs:4", + "name": "Молодой волк", + "spawnGroup": "pack1", + "monsterClass": 4, + "maxHP": 35, + "attackCost": 3, + "attackChance": 60, + "blockChance": 30, + "damageResistance": 2, + "droplistID": "pack1", + "attackDamage": { + "min": 2, + "max": 5 + } + }, + { + "id": "hunting_dog", + "iconID": "monsters_dogs:2", + "name": "Охотничья собака", + "spawnGroup": "pack1", + "monsterClass": 4, + "maxHP": 25, + "attackCost": 5, + "attackChance": 60, + "blockChance": 50, + "droplistID": "pack1", + "attackDamage": { + "min": 2, + "max": 5 + } + }, + { + "id": "highwayman", + "iconID": "monsters_men:8", + "name": "Разбойник", + "spawnGroup": "bandit1", + "monsterClass": 0, + "maxHP": 54, + "attackCost": 5, + "attackChance": 90, + "criticalSkill": 50, + "criticalMultiplier": 2, + "blockChance": 30, + "damageResistance": 2, + "droplistID": "bandit1", + "phraseID": "bandit1", + "attackDamage": { + "min": 2, + "max": 4 + } + } +] diff --git a/AndorsTrail/res/raw-ru/questlist.json b/AndorsTrail/res/raw-ru/questlist.json new file mode 100644 index 000000000..bbd12e16f --- /dev/null +++ b/AndorsTrail/res/raw-ru/questlist.json @@ -0,0 +1,387 @@ +[ + { + "id": "andor", + "name": "Поиски Эндора", + "showInLog": 1, + "stages": [ + { + "progress": 1, + "logText": "Мой отец, Михаил, говорит, что Эндор не был дома со вчерашнего дня. Я должен поискать его в деревне", + "finishesQuest": 0 + }, + { + "progress": 10, + "logText": "Леонид сказал мне, что он видел Эндора говорящего с Груилем. Я должен пойти спросить Груиля, может он знает больше.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Груиль хочет, чтобы я принес ему ядовитую железу. Тогда он может рассказать больше. Он сказал мне, что некоторые ядовитые змеи имеют такие железы.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Груиль сказал мне, что Эндор искал кого-то называемого Умар. Я должен пойти спросить его друга Гаела в Приюте Падших, на востоке.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Я поговорил с Гаелом в Приюте Падших. Он рассказал что видел Бикуса и спрашивал о гильдии воров.", + "finishesQuest": 0 + }, + { + "progress": 50, + "logText": "Бикус позволил мне пройти в подвал заброшенного дома в Приюте Падших. Я должен поговорить с Умаром.", + "finishesQuest": 0 + }, + { + "progress": 51, + "logText": "Умар в Гильдии Воров Приюта Падших узнал меня, но спутал с Эндором. То есть, Эндор виделся с ним.", + "finishesQuest": 0 + }, + { + "progress": 55, + "logText": "Умар сказал мне, что Эндор ушел повидать знахаря по имени Лодар. Мне стоит поискать его убежище.", + "finishesQuest": 0 + }, + { + "progress": 61, + "logText": "Я слышал историю в Одиноком Броде, согласно которой Эндор туда заглядывал и был заподозрен в причастности к болезни, свирепствующей среди населения. Я не уверен, что это действительно был Эндор. Если это был Эндор, почему он заразил жителей?", + "finishesQuest": 0 + } + ] + }, + { + "id": "mikhail_bread", + "name": "Хлеб для Михаила", + "showInLog": 1, + "stages": [ + { + "progress": 100, + "logText": "Я должен принести хлеб Михаилу.", + "finishesQuest": 1 + }, + { + "progress": 10, + "logText": "Михаил просил купить буханку хлеба у Мары в таверне.", + "finishesQuest": 0 + } + ] + }, + { + "id": "mikhail_rats", + "name": "Крысы!", + "showInLog": 1, + "stages": [ + { + "progress": 100, + "logText": "Убить двух крыс в огороде.", + "rewardExperience": 20, + "finishesQuest": 1 + }, + { + "progress": 10, + "logText": "Михаил хочет, чтобы я нашел и убил крыс. Потом - могу и вернуться к Михаилу. Будучи раненым, можно отдохнуть в постели для восстановления здоровья", + "finishesQuest": 0 + } + ] + }, + { + "id": "leta", + "name": "Пропавший муж", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Лета из деревни Долина Креста хочет, чтобы я поискал ее мужа Оромира.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Я нашел Оромира в Долине Креста, он позорно прятался от своей жены Леты.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "Я выдал Лете Оромира.", + "rewardExperience": 50, + "finishesQuest": 1 + } + ] + }, + { + "id": "odair", + "name": "Крысиное нашествие", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Одаир хочет, чтобы я очистил пещеру в деревне Долина Креста от крыс. Убив самую большую крысу, я могу вернуться к Одаиру.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "Я помог Одаиру очистить пещеру от крыс в деревне Долина Креста.", + "rewardExperience": 300, + "finishesQuest": 1 + } + ] + }, + { + "id": "bonemeal", + "name": "Запрещенные вещества", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Леонид в мэрии Долины Креста сказал мне, что несколько недель дней назад в деревне были беспорядки. По-видимому, лорд Геомир запретил любое использование костной муки, как исцеляющего вещества. \n\n Фарал, городской священник, должен знать больше.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Фарал не хочет говорить о костной муке. Но я мог бы упросить его за 5 крыльев насекомых.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Фарал рассказал, что костная мука - очень мощное целительное средство, и он весьма огорчен его запрещением. Я должен найти Форонира в Приюте Падших, если я хочу узнать больше. Нужно сказать ему пароль 'Сияние тени'.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Я поговорил с Форониром в Приюте Падших. Он сможет смешать мне зелье из костной муки, если я принесу ему 5 костей скелета. В заброшенном доме к северу от Приюта Падших должно быть несколько скелетов.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "Я принес кости Форониру. Он теперь в состоянии снабдить меня зельем из костной муки.\nЯ должен быть осторожным при использовании, так как Лорд Геомир запретил его приминение.", + "rewardExperience": 900, + "finishesQuest": 1 + } + ] + }, + { + "id": "jan", + "name": "Погибшие друзья", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Ян рассказал мне свою историю о нем, Гандиру и Ироготу. Три бывших друга пошли в дыру за сокровищами, но - поссорились и стали драться. Ирогот убил Гандира в своем гневе. \nЯ должен забрать кольцо Гандира у Ирогота, и отдать Яну, когда оно будет у меня.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "Я принес Яну кольцо Гандира, и отомстил за его друга. Ирогот мертв.", + "rewardExperience": 1500, + "finishesQuest": 1 + } + ] + }, + { + "id": "bucus", + "name": "Ключ для Лютора", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Бикус из Приюта Падших что-то зает об Эндоре. Он хочет что-бы я принес ему ключ Лютера из катакомб под церковью Приюта Падших.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Катакомбы под церковью Приюта Падших заперты. Афамир только у него есть право и мужество спускаться в них. Я должен увидеться с ним на юго-западе от церкви.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Афамир просит принести ему немного мяса, может тогда он сможет поговорить со мной.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Я принес немного мяса Афамиру.", + "rewardExperience": 700, + "finishesQuest": 0 + }, + { + "progress": 50, + "logText": "Афамир дал мне разрешение спуститься в катакомбы под церковью Приюта Падших.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "Я принес Бикусу ключ Лютора.", + "rewardExperience": 2150, + "finishesQuest": 1 + } + ] + }, + { + "id": "fallhavendrunk", + "name": "Рассказ пьяницы", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Пьяница возле таверны в Приюте Падших начал рассказывать историю, но вдруг попросил принести ему мёд. Непонятно, к чему он все это говорил.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "Пьяница рассказал, что путешествовал с Унмиром. Я должен поговорить с Унмиром.", + "finishesQuest": 1 + } + ] + }, + { + "id": "calomyran", + "name": "Секрет Каломирана", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Старик в Приюте Падших потерял книгу 'Секреты Каломирана'. Я должен найти ее. Может, она в доме Арсира на юге?", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Я нашел вырванную страницу из книги 'Секреты Каломирана' с именем 'Ларкал' на форзаце.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "Я вернул старику книгу.", + "rewardExperience": 600, + "finishesQuest": 1 + } + ] + }, + { + "id": "nocmar", + "name": "Утраченные сокровища", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Унмир сказал мне, что когда-то был путешественником и намекнул, что неплохо бы поговорить с Нокмаром. Его дом на юго-западе от таверны в Приюте Падших.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Нокмар сказал мне, что когда-то был кузнецом. Но лорд Геомир запретил использование сердечной стали, и теперь он не может ковать свое фирменное оружие.\nЕсли я найду для Нокмара сердечную руду, он снова сможет ковать.", + "finishesQuest": 0 + }, + { + "progress": 200, + "logText": "Я принес сердечную руду Нокмару. Теперь у него появились стальные причиндалы.", + "rewardExperience": 1200, + "finishesQuest": 1 + } + ] + }, + { + "id": "flagstone", + "name": "Древние секреты", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Я встретил стражника у крепости Флагстоун. Он рассказал мне о прошлом Флагстоуна, бывшего лагерем для беглых рабов из Горы Галмор. В последнее время флагстоунские нежить и чудища сильно активизировались. Я решил исследовать данный факт. Страж сказал, чтобы я возвращался за помощью, если что.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Я обнаружил туннель под Флагстоуном, который, кажется, ведет к большой пещере. Пещера охраняется демоном, так что я не могу даже приблизиться. Может быть, страж за пределами Флагстоуна знает больше?", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Страж рассказал мне, что бывший надзиратель носил ожерелье, которым он подозрительно дорожил. На ожерелье, вероятно, заклинание от демона. За расшифровкой заклинания необходимо будет вернуться к стражу.", + "finishesQuest": 0 + }, + { + "progress": 31, + "logText": "Я нашел бывшего надзирателя Флагстоуна на верхнем уровне.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Я узнал заклинание от демона под Флагстоуном. 'Дневная Тень'.", + "rewardExperience": 1600, + "finishesQuest": 0 + }, + { + "progress": 50, + "logText": "Глубоко под Флагстоуном, я нашел источник нежити. Существа рождаются из горя бывших узников Флагстоуна.", + "finishesQuest": 0 + }, + { + "progress": 60, + "logText": "Я нашел одного заключенного, Нараеля, оставшегося в живых в глубинах Флагстоуна. Нараель был гражданином города Нор. Он слишком слаб, чтобы ходить, но щедро вознаградит меня за обнаружение его жены в Норе.", + "rewardExperience": 2100, + "finishesQuest": 1 + } + ] + }, + { + "id": "vacor", + "name": "Пропавшие части", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Маг, назвавшийся Вакором, на юго-западе Приюта Падших пытался создать Заклинание разрыва.\nОн был одержим своим заклинанием, говорил про увеличение силы посредством оного.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Вакор хочет, чтобы я принес ему четыре части Заклинания разрыва, он утверждает, что они были украдены у него. Бандиты должны быть где-то к югу от Приюта Падших.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Я принес четыре части Заклинания разрыва Вакору.", + "rewardExperience": 1200, + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Вакор поведал о своем бывшем ученике, Унзеле, который мешает ему. Он попросил меня убить Унзела и принести его перстень, как доказательство. Унзел может быть на юго-западе от Приюта Падших", + "finishesQuest": 0 + }, + { + "progress": 50, + "logText": "Унзел дал мне выбор, идти с ним, или с Вакором.", + "finishesQuest": 0 + }, + { + "progress": 51, + "logText": "Я выбрал сторону Унзела. Я должен отправиться на юго-запад Приюта Падших и поговорить с Вакором об Унзеле и Тени.", + "finishesQuest": 0 + }, + { + "progress": 53, + "logText": "Я начал битву с Унзелем. Я должен принести его перстень Вакору.", + "finishesQuest": 0 + }, + { + "progress": 54, + "logText": "Я начал битву с Вакором. Я должен принести его перстень Унзелу.", + "finishesQuest": 0 + }, + { + "progress": 60, + "logText": "Я убил Унзела и сообщил об этом Вакору.", + "rewardExperience": 1600, + "finishesQuest": 1 + }, + { + "progress": 61, + "logText": "Я убил Вакора и сообщил об этом Унзелу.", + "rewardExperience": 1600, + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw-ru/questlist_v0610.json b/AndorsTrail/res/raw-ru/questlist_v0610.json new file mode 100644 index 000000000..9410a97c7 --- /dev/null +++ b/AndorsTrail/res/raw-ru/questlist_v0610.json @@ -0,0 +1,352 @@ +[ + { + "id": "erinith", + "name": "Глубокая рана", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Северо-восточнее Одинокого Креста, я встретил Эринит, разбившего лагерь. Судя по всему, на него напали ночью и он потерял книгу." + }, + { + "progress": 20, + "logText": "Я готов помочь Эринит в поисках книги. По его словам, он потерял ее в радиусе нескольких деревьев от лагеря, возможно, к северу от своей стоянки." + }, + { + "progress": 21, + "logText": "Я готов помочь Эринит в поисках книги за 200 золотых. По его словам, он потерял ее в радиусе нескольких деревьев от лагеря, возможно, к северу от своей стоянки." + }, + { + "progress": 30, + "logText": "Я вернул книгу Эринит.", + "rewardExperience": 2000 + }, + { + "progress": 31, + "logText": "Ему также требуется помощь с ранами, которые никак не заживают. Ему нужна большое зелье здоровья или же четыре стандартных." + }, + { + "progress": 40, + "logText": "Я дал Эринит зелье из костной муки для лечения ран. Его слегка напугало использование запрещенного лордом Геомиром зелья." + }, + { + "progress": 41, + "logText": "Я дал Эринит большое зелье здоровья для излечения ран." + }, + { + "progress": 42, + "logText": "Я дал Эринит четыре обычных зелья здоровья для излечения ран." + }, + { + "progress": 50, + "logText": "Раны затянулись и Эринит поблагодарил меня за помощь.", + "rewardExperience": 1500, + "finishesQuest": 1 + } + ] + }, + { + "id": "hadracor", + "name": "Пустошь", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "По дороге к Башне Плоти, к западу от поста на перекрестке, я встретил группу дровосеков под предводительством Хадракора. Хадракору нужна помощь в отмщении нескольким осам, которые напали на его людей, когда они валили лес. чтобы помочь им отомстить, Мне придется искать больших ос неподалеку от бивака доровосеков и принести Хадракору пять осиных жал. " + }, + { + "progress": 20, + "logText": "Я принес пять гигантских осиных жал Хадракору." + }, + { + "progress": 21, + "logText": "Я принес шесть гигантских осиных жал Хадракору. За помощь он наградил меня парой рукавиц." + }, + { + "progress": 30, + "logText": "Хадракор поблагодарил меня за помощь ему и остальным дровосекам. Также, он пообещал торговать со мной.", + "finishesQuest": 1 + } + ] + }, + { + "id": "tinlyn", + "name": "Потерянная овца", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "По дороге в Фейгард, неподалеку от Фейгардского моста, я встретил пастуха по имени Тинлин. Тот пожаловался, что четыре его овцы сбежали и не собираются возвращаться. И он не может отлучиться на их поиски." + }, + { + "progress": 15, + "logText": "Я согласился помочь Тинлину найти четырех овец." + }, + { + "progress": 20, + "logText": "Я нашел одну из потеряных овец." + }, + { + "progress": 21, + "logText": "Я нашел одну из потеряных овец." + }, + { + "progress": 22, + "logText": "Я нашел одну из потеряных овец." + }, + { + "progress": 23, + "logText": "Я нашел одну из потеряных овец." + }, + { + "progress": 25, + "logText": "Я нашел всех потеряных овец." + }, + { + "progress": 30, + "logText": "Тинлин поблагодарил меня за находку.", + "rewardExperience": 3500, + "finishesQuest": 1 + }, + { + "progress": 31, + "logText": "Тинлин поблагодарил меня за поиски пропавших овец, но ничем не вознаградил.", + "rewardExperience": 2000, + "finishesQuest": 1 + }, + { + "progress": 60, + "logText": "На меня напала одна из бешеных овец Тинлина и теперь я не смогу вернуть всех четырех ему.", + "finishesQuest": 1 + } + ] + }, + { + "id": "benbyr", + "name": "Обкорнали", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Я встретил Бенбира возле Поста на Перекрестке. Он хотел свести счеты со старым 'бизнес-партнером', Тинлином. Бенбир просит убить всех овец Тинлина." + }, + { + "progress": 20, + "logText": "Я согласился помочь Бенбиру найти тинлиновских овец и убить восемь из них. Найти их можно серверо-западнее Поста на Перекрестке." + }, + { + "progress": 21, + "logText": "Я стал бросаться на овец. Я смогу вернуться к Бенбиру, когда убью их восемь." + }, + { + "progress": 30, + "logText": "Бенбир был взволнован известием, что все овцы Тинлина мертвы.", + "rewardExperience": 5200, + "finishesQuest": 1 + }, + { + "progress": 60, + "logText": "Я отказался помогать убивать овец для Бенбира.", + "finishesQuest": 1 + } + ] + }, + { + "id": "rogorn", + "name": "В светлый путь", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Минарра на вершине башни Поста на Перекрестке видела банду разбойников, идущих от поста к Башне Плоти. Минарра уверена, что они похожи по приметам на людей, чьих голов ждет патруль Фейгарда. Если это - те самые люди, то их предводительствует исключительно безжалостный дикарь по имени Рогорн." + }, + { + "progress": 20, + "logText": "Я помогу Минарре найти банду грабителей. Мне просто нужно совершить путешествие по дороге от Поста на Перекрестке до Башни Плоти и искать их. Есть также подозрение, что они украли три части ценной картины и достойны смерти за свои преступления." + }, + { + "progress": 21, + "logText": "Минарра также посоветовала не верить ничему из того, что я от них услышу. А особенно - от Рогорна." + }, + { + "progress": 30, + "logText": "Я нашел банду разбойников на западной дороге, ведущей к Башне Плоти, предводительствуемых Рогорном." + }, + { + "progress": 35, + "logText": "Рогорн рассказал мне, что был облыжно обвинен в убийстве и воровстве в Фейгарде, несмотря на то, что в Фейгарде не бывал." + }, + { + "progress": 40, + "logText": "Я решил напасть на Рогорна и его банду. Я должен вернуться к Минарре с тремя частями ценной живописи, как только они умрут." + }, + { + "progress": 45, + "logText": "Я решил не нападать на Рогорна и его банду разбойников, вместо этого я доложил Минарре что она, должно быть, обозналась." + }, + { + "progress": 50, + "logText": "Минарра поблагодарила меня за разрешение вопроса с ворами и сказала, что моя служба для дела Фейгарда будет оценена по достоинству." + }, + { + "progress": 55, + "logText": "После слов об ошибочности поспешных выводов о людях, Минарра стала подозрительной, но все таки поблагодарила за поддержку." + }, + { + "progress": 60, + "logText": "Я помог Минарре.", + "finishesQuest": 1 + } + ] + }, + { + "id": "feygard_shipment", + "name": "Фейгардские поручения", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Я встретил Гандорена, капитана стражи Поста на Перекрестке. Он рассказал мне о проблеме в Одиноком Броде, заставляющей стражников бдить больше обычного. По этой причине они не в состоянии выполнять часть обязанностей самостоятельно, им необходима помощь в самых обычных делах." + }, + { + "progress": 20, + "logText": "Гандорен попросил меня доставить груз из десяти железных мечей на южный пост." + }, + { + "progress": 21, + "logText": "Я согласился доставить груз ради возможности послужить Фейгарду." + }, + { + "progress": 22, + "logText": "Испытывая некоторое неудовольствие, я все же согласился доставить груз." + }, + { + "progress": 25, + "logText": "Я должен доставить груз капитану фейгардского патруля, остановившемуся в таверне 'Пенная Фляга'." + }, + { + "progress": 26, + "logText": "Гандорен предупредил меня, что в грузе заинтересована некая Айлшара и попросил держаться подальше от нее." + }, + { + "progress": 30, + "logText": "Айлшара действительно была заинтересована в грузе и предложила вместо патруля оказать помощь Норсити." + }, + { + "progress": 35, + "logText": "Если я захочу помочь Айлшаре, мне следует доставить груз кузнецу в Вильгард." + }, + { + "progress": 50, + "logText": "Я доставил груз капитану патруля в Пенную Флягу. Далее мне следует доложить Гандорену с Поста на Перекрестке, что груз доставлен." + }, + { + "progress": 55, + "logText": "Я доставил груз кузнецу в Вильгард." + }, + { + "progress": 56, + "logText": "Кузнец Вильгарда дал мне кучу металлолома, которую я должен отдать капитану патруля вместо вооружения." + }, + { + "progress": 60, + "logText": "Я доставил металлолом капитану патруля. Я должен доложить Гандорену с Поста на Перекрестке, что груз доставлен." + }, + { + "progress": 80, + "logText": "Гандорен поблагодарил меня за помощь в доставке.", + "rewardExperience": 4000, + "finishesQuest": 1 + }, + { + "progress": 81, + "logText": "Гандорен поблагодарил меня за доставку груза. он никогда ничего не заподозрит. Мне следует доложиться и Айлшаре." + }, + { + "progress": 82, + "logText": "Я доложил и Айлшаре.", + "rewardExperience": 4000, + "finishesQuest": 1 + } + ] + }, + { + "id": "loneford", + "name": "Что течет по венам?", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Я услышал историю Одинокого Брода. Внезапно множество жителей заболели и некоторые даже умерли. Причина осталась неизвестной." + }, + { + "progress": 11, + "logText": "Необходимо определить причину заболевания в Одиноком Броде. Для этого стоит опросить местных и окрестных жителей о возможных причинах." + }, + { + "progress": 21, + "logText": "Стража Поста на Перекрестке уверена, что болезнь вызвана действиями священников и жителей Норсити." + }, + { + "progress": 22, + "logText": "Некоторые сельчане Одинокого Брода уверены, что болезнь принесла стража из Фейгарда, дабы заставить людей страдать больше, нежели обычно." + }, + { + "progress": 23, + "logText": "Талион, священник часовни Одинокого Брода, думает, что болезнь - дело рук Тени, наказание за отсутствие набожности." + }, + { + "progress": 24, + "logText": "Таевинн в Одиноком Броде подозревает Сьенна в юго-восточном сарае в причастности к эпидемии. Тем более, что Сьенн держит домашнюю скотину, несмотря на угрозы и протесты Таевинна." + }, + { + "progress": 25, + "logText": "В первую очередь, мне необходимо увидеть Ланду в таверне Одинокого Брода. Ходят слухи, что он видел чтото, что не может доверить никому." + }, + { + "progress": 30, + "logText": "Ланда поначалу спутал меня с кем-то. Он видел маленького мальчика, болтавшегося вокруг города как раз перед началом эпидемии. Поначалу он боялся со мной говорить, поскольку я был на похож на того парня.Быть может, он видел Эндора?" + }, + { + "progress": 31, + "logText": "Ночью, после того, как он увидел мальчика, он также видел Букеза, берущего пробу воды из колодца. Что странно, Букез так и не заболел, в отличии от остальных жителей." + }, + { + "progress": 35, + "logText": "Я должен задать пару вопросов Букезу в часовне о том, что же он делал возле колодца и не знает ли он чего-нибудь об Эндоре." + }, + { + "progress": 41, + "logText": "Я заплатил Букезу за разговор со мной." + }, + { + "progress": 42, + "logText": "Я сказал Букезу, что готов последовать за Тенью." + }, + { + "progress": 45, + "logText": "Букез рассказал, что был послан священниками Норсити убедиться в победном шествии учения Тени в Одиноком Броде. Одновременно, они послали с каким то делом туда же мальчишку, Букезу же дали в нагрузку задание набрать проб воды из колодца." + }, + { + "progress": 50, + "logText": "Я напал на Букеза. Мне нужны доказательства его причастности, чтобы представить их Кулдану, капитану стражи Одинокого Брода." + }, + { + "progress": 54, + "logText": "Я отдал флакон, найденный у Букеза Кулдану." + }, + { + "progress": 55, + "logText": "Кулдан поблагодарил меня за раскрытие тайны эпидемии. Он начал поставку воды из Фейгарда взамен воды из местного колодца. Кулдан также рекомендовал мне посетить замок Фейгарда, если я захочу помогать в дальнейшем.", + "rewardExperience": 15000, + "finishesQuest": 1 + }, + { + "progress": 60, + "logText": "Я пообещал хранить историю Букеза в секрете. Если Эндор замешан в ней, он должен был иметь весомую причину. Букез же посоветовал навестить часовню хранителя в Норсити, если я захочу узнать больше о Тени.", + "rewardExperience": 15000, + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw-ru/questlist_v0611.json b/AndorsTrail/res/raw-ru/questlist_v0611.json new file mode 100644 index 000000000..8f1cbe0f2 --- /dev/null +++ b/AndorsTrail/res/raw-ru/questlist_v0611.json @@ -0,0 +1,82 @@ +[ + { + "id": "thorin", + "name": "Удары и останки", + "showInLog": 1, + "stages": [ + { + "progress": 20, + "logText": "В пещере на востоке я нашел человека по имени Торин, который попросил меня найти останки его бывшего попутчика. Следует вернуть шесть частей останков." + }, + { + "progress": 31, + "logText": "Я нашел несколько костей в той же пещере, где встретил Торина." + }, + { + "progress": 32, + "logText": "Я нашел несколько костей в той же пещере, где встретил Торина." + }, + { + "progress": 33, + "logText": "Я нашел несколько костей в той же пещере, где встретил Торина." + }, + { + "progress": 34, + "logText": "Я нашел несколько костей в той же пещере, где встретил Торина." + }, + { + "progress": 35, + "logText": "Я нашел несколько костей в той же пещере, где встретил Торина." + }, + { + "progress": 36, + "logText": "Я нашел несколько костей в той же пещере, где встретил Торина." + }, + { + "progress": 40, + "logText": "Торин поблагодарил меня за помощь. Когда (и если) я вернусь, он выделит мне кровать для отдыха и зелье будет продавать.", + "rewardExperience": 4000, + "finishesQuest": 1 + } + ] + }, + { + "id": "algangror", + "name": "Только скрип. И - ничего.", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "В одиноком доме на полуострове на северном краю озера Лаэрот в северо-восточном краю тамошних гор, я встретил Алгангрору." + }, + { + "progress": 11, + "logText": "У нее сложные отношения с грызунами и она нуждается в помощи по их травле и ловле в подвале." + }, + { + "progress": 15, + "logText": "Я пообещал помощь Алганроре. Я вернусь к ней, как только убью всех шестерых грызунов в подвале." + }, + { + "progress": 20, + "logText": "Алганрора поблагодарила меня за помощь.", + "rewardExperience": 5000 + }, + { + "progress": 21, + "logText": "Она также предупредила меня, чтоб я никому не рассказывал о ней в Ремгарде. Там ее ищут по некоторым причинам, которые она не может сейчас мне рассказать. Я ни в коем случае не должен рассказывать, где она скрывается.", + "finishesQuest": 1 + }, + { + "progress": 100, + "logText": "Я решил не помогать Алганроре.", + "finishesQuest": 1 + }, + { + "progress": 101, + "logText": "Аланрора не захотела со мной разговаривать, и я не смог ей помочь.", + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw-ru/questlist_v068.json b/AndorsTrail/res/raw-ru/questlist_v068.json new file mode 100644 index 000000000..e5568ace9 --- /dev/null +++ b/AndorsTrail/res/raw-ru/questlist_v068.json @@ -0,0 +1,211 @@ +[ + { + "id": "farrik", + "name": "Ночной визит", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Фаррик из Гильдии Воров Приюта Падших поведал мне план помощи побегу воров из местной каталажки.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Фаррик из гильдии воров описал мне детали и я согласился помочь ему. У капитана охраны - очевидные проблемы с алкоголем. По плану, я доставляю специальное пойло в тюрьму и даю в виде взятки капитану.", + "finishesQuest": 0 + }, + { + "progress": 25, + "logText": "Я подготовил питье в гильдии воров.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Я говорил Фаррику, что я не совсем согласен. Мне придется рассказать капитану охраны об их сомнительном плане.", + "finishesQuest": 0 + }, + { + "progress": 32, + "logText": "Я облагодетельствовал спецпитьем капитана охраны.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Я сдал капитану охраны воров с их воровским планом освобождения воровских друзей.", + "finishesQuest": 0 + }, + { + "progress": 50, + "logText": "Капитан попросил меня сказать ворам, что уровень безопасности будет понижен сегодня ночью. Мы сможем поймать нескольких воров.", + "finishesQuest": 0 + }, + { + "progress": 60, + "logText": "Я всучил капитану спецпитье. Его должно свалить с копыт на всю ночь, давая ворам освободить друзей.", + "finishesQuest": 0 + }, + { + "progress": 70, + "logText": "Фаррик наградил меня за помощь воровской гильдии.", + "rewardExperience": 1500, + "finishesQuest": 1 + }, + { + "progress": 80, + "logText": "Я сообщил Фаррику, что в тюрьме сегодня всю ночь будут хлопать ушами.", + "finishesQuest": 0 + }, + { + "progress": 90, + "logText": "Капитан поблагодарил меня за помощь в поимке преступников. Он сказал, что сообщил остальным ведомтсвам охраны, что я - его помощник.", + "rewardExperience": 1700, + "finishesQuest": 1 + } + ] + }, + { + "id": "lodar", + "name": "Потеряное зелье", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Мне нужно найти травника по имени Лодар.Умар из гильдии воров Приюта Падших считает, что мне необхидимо знать пароль для получения доступа к убежищу Лодара через стражников.", + "finishesQuest": 0 + }, + { + "progress": 15, + "logText": "По мнению Умара, стоило бы повидать некого Огама в Вильгарде. Огам может помочь с составлением правильных слов для доступа к убежищу Лодара.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Я заглянул к Огаму на юго-западе Вильгарда. Он говорил загадками. Возможно, я смогу вытянуть из него какие то детали об убежище Лодара. 'Полпути между Тенью и светом. Создания судьбы.' и слова 'Длань Тени.' были среди них. Я не знаю, что они значат.", + "finishesQuest": 0 + } + ] + }, + { + "id": "vilegard", + "name": "Доверие и посторонние", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Люди в Вильгарде очень подозрительны к посторонним. Я заподозрил, что мне стоит встретиться с Йолнором в капелле, если я хочу получить их доверие.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Я поговорил с Йолнором. Он посоветовал помочь троим людям для повышения моей кармы. И доверия окружающих. Я могу оказать помощь Каори, Врай и, конечно же, Йолнору.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Я помог всем троим по списку, составленному Йолнором. Теперь люди Вильгарда будут доверять мне чуть более.", + "rewardExperience": 2100, + "finishesQuest": 1 + } + ] + }, + { + "id": "kaori", + "name": "Поручения Каори", + "showInLog": 1, + "stages": [ + { + "progress": 5, + "logText": "Йолнор в Вильгардской капелле рекомендует поговорить с Каори на севере Вильгарда, вдруг она сможет чем-то помочь.", + "finishesQuest": 0 + }, + { + "progress": 10, + "logText": "СевероВильгардская Каори хочет 10 доз костной муки.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Я принес 10 порций костной муки Каори.", + "rewardExperience": 520, + "finishesQuest": 1 + } + ] + }, + { + "id": "wrye", + "name": "Сомнительная причина", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Йолнор в Вильгардской капелле посоветовал перемолвиться с Врай из северного Вильгарда. Она неожиданно вдруг потеряла сына.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "СевероВильгардская Врай рассказала, что ее сын Ринцель потерялся. Она думает, что он умер или же смертельно ранен.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Врай считает, что королевские гвардейцы из Фейгарда замешаны в его исчезновении; возможно, они его завербовали.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Врай просит меня найти причну случившегося с сыном.", + "finishesQuest": 0 + }, + { + "progress": 41, + "logText": "Мне стоит заглянуть в тавернну Вильгарда и в притон 'Пенная Фляга' на севере Вильгарда.", + "rewardExperience": 200, + "finishesQuest": 0 + }, + { + "progress": 42, + "logText": "Я услышал, что мальчик заглядывал в Пенную Флягу некоторое время назад. Судя по всему, он отправился на запад от притона.", + "finishesQuest": 0 + }, + { + "progress": 80, + "logText": "Северо-западнее Вильгарда я нашел человека, видевшего, как Ринцель бьется с чудовищами. Ринцель, следовательно, покинул Вильгард по своей воле с целью посмотреть на Фейгард. Об этом нужно доложить Врай на севере Вильгарда.", + "finishesQuest": 0 + }, + { + "progress": 90, + "logText": "Я рассказал Врай правду про ее сына.", + "rewardExperience": 520, + "finishesQuest": 1 + } + ] + }, + { + "id": "jolnor", + "name": "Шпионы в пене", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Йолнор из Вильгардской капеллы рассказал мне об охраннике возле Пенной Фляги, он думает, что тот - шпион Фейгардской королевской гвардии. Он просит меня убрать охранника подходящим способом. Таверна находится на севере Вильгарда.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Я убедил охранника возле Пенной Фляги уйти после конца смены.", + "finishesQuest": 0 + }, + { + "progress": 21, + "logText": "Я начал сражаться с охранником возле Пенной Фляги. Мне нужно будет посмертно принести его кольцо Йолнору для доказательства его исчезновения.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Я сказал Йолнору, что охранник убрался восвояси.", + "rewardExperience": 630, + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw-ru/questlist_v069.json b/AndorsTrail/res/raw-ru/questlist_v069.json new file mode 100644 index 000000000..413e898ea --- /dev/null +++ b/AndorsTrail/res/raw-ru/questlist_v069.json @@ -0,0 +1,368 @@ +[ + { + "id": "bwm_agent", + "name": "Тайный агент и чудовище", + "showInLog": 1, + "stages": [ + { + "progress": 1, + "logText": "Я встретил человека, ищущего помощи для своей деревни 'Черноводная Гора'. Предположительно, на его деревню нападают чудовища и бандиты и жители нуждаются в помощи извне." + }, + { + "progress": 5, + "logText": "Я готов помочь человеку и 'Черноводной Горе' разобраться с проблемой." + }, + { + "progress": 10, + "logText": "Мы встретимся у заброшеной шахты. Он проползет через ствол шахты, а я спущусь вслед за ним." + }, + { + "progress": 20, + "logText": "Я пробрался через шахту и встретил его с другой стороны.Он был встревожен и назначил новую встречу возле горы на востоке." + }, + { + "progress": 25, + "logText": "Я услышал историю о Приме и деревне 'Черноводная Гора', бьющихся друг с другом." + }, + { + "progress": 30, + "logText": "Я должен следовать горной тропе на пути к Черноводной деревне." + }, + { + "progress": 40, + "logText": "Я встретил человека снова на моем пути к Черноводной Горе. Мне предстоит прдолжать подниматься на гору." + }, + { + "progress": 50, + "logText": "Я сделал это. Сквозь и через заснеженые склоны Черноводной Горы. Человек говорил, что мне необходимо преодолеть ее. Следовательно, деревня Черноводная Гора почти достигнута. " + }, + { + "progress": 60, + "logText": "Я дошел до поселения возле Черноводной Горы. Осталось поговорить с их атаманов Харленн." + }, + { + "progress": 65, + "logText": "Я поговорил с Харленн в поселении. Судя по всему, оно подвергается атаке множеством монстров, Аулэтом и белыми червями. Но даже это - ничто в сравнении с нападениями людей Прима." + }, + { + "progress": 66, + "logText": "Харленн думает, что жители Прима стоят за атаками чудовищ." + }, + { + "progress": 70, + "logText": "Харленн хочет послать меня с сообщением к Гутберду в Прим.Если примовцы не прекратят атаки на Черноводную, к ним будут приняты меры. Я иду говорить с Гутбердом в Прим." + }, + { + "progress": 80, + "logText": "Гутберд запретил своим людям помогать чудовищам. Я возвращаюсь доложить Харленн." + }, + { + "progress": 90, + "logText": "Харленн уверена, что примовцы все еще помогают монстрам." + }, + { + "progress": 95, + "logText": "Харленн посылает меня в Прим проверить, готовятся ли там к нападению на деревню. Необходимо искать подсказки возле Гутберда." + }, + { + "progress": 100, + "logText": "Я нашел несколько планов про наем солдат и нападение на поселение возле Черноводной. Возвращаюсь немедленно доложить Харленн." + }, + { + "progress": 110, + "logText": "Харленн благодарит меня за разведку.", + "rewardExperience": 1150 + }, + { + "progress": 120, + "logText": "Чтоб прекратить нападения на Черноводную, Харленн заказала мне убийство Гутберда." + }, + { + "progress": 130, + "logText": "Я начал сражаться с Гутбердом." + }, + { + "progress": 131, + "logText": "Я рассказал Гутберду, что послан убить его, но оставлю его в живых. Он горячо поглагодарил меня и покинул Прим.", + "rewardExperience": 2100 + }, + { + "progress": 149, + "logText": "Я доложил Харленн об уходе Гутберда." + }, + { + "progress": 150, + "logText": "Харленн поблагодарила меня за помощь. Хочется надеяться, нападения на деревню возле Черноводной теперь прекратятся.", + "rewardExperience": 5000 + }, + { + "progress": 240, + "logText": "Я теперь доверенное лицо в окрестностях Черноводной Горы и могу пользоваться всем, что мне могут предоставить.", + "finishesQuest": 1 + }, + { + "progress": 250, + "logText": "Я не смогу помочь людям поселения у Черноводной Горы.", + "finishesQuest": 1 + }, + { + "progress": 251, + "logText": "С тех пор, как я помогаю Приму, Харленн не разговаривает со мной.", + "finishesQuest": 1 + } + ] + }, + { + "id": "prim_innquest", + "name": "Хорошо отдохнувший.", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Я поговорил с поваром в Приме у основания Черноводной Горы. Задняя комната сдается, но занята неким Архестом. Схожу, спрошу у него, не раздумал ли он снимать ее. Повар, к тому же, посоветовал юго-запад Прима." + }, + { + "progress": 20, + "logText": "Архест не желает съезжать из комнаты. Но сказал, что почти убежден в возможности использования мной комнаты за соответствующую плату." + }, + { + "progress": 30, + "logText": "Архест нуждается в пяти бутылках молока. Пожалуй, я смогу отыскать его в окрестных деревнях." + }, + { + "progress": 40, + "logText": "Принес молоко Архесту. Он разрешил пользоваться его комнатой, я могу в ней отдыхать. Следует еще поговорить с гостиничным поваром.", + "rewardExperience": 500 + }, + { + "progress": 50, + "logText": "Я сообщил повару, что Архест разрешил мне пользоваться его комнатой.", + "finishesQuest": 1 + } + ] + }, + { + "id": "prim_hunt", + "name": "Туманная цель", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Только по выходу из заброшенной шахты по пути к Черноводной Горе я встретил человека из Прима. Он умолял меня о помощи." + }, + { + "progress": 11, + "logText": "Прим нуждается во внешнем союзнике для отражения атак чудовищ. В связи с этим необходимо переговорить с Гутбердом, если все же я желаю оказать поддержку." + }, + { + "progress": 15, + "logText": "Гутберд находится в ратуше. Мне нужно всего лишь найти каменный дом в центре города." + }, + { + "progress": 20, + "logText": "Мы побеседовали с Гутбердом об истории Прима, который, по его словам, подвергался постоянным нападениям со стороны черноводцев." + }, + { + "progress": 25, + "logText": "Гутберд считает необходимым поговорить с мастером над оружием Черноводной Горы Харленн на тему 'почему (или зачем) они призывают горнодских чудовищ против Прима'." + }, + { + "progress": 30, + "logText": "Я поговорил с Харленн о нападениях на Прим. Она запретила своим людям в Черноводной Горе даже думать о Приме. Я возвращаюсь с докладом к Гутберду." + }, + { + "progress": 40, + "logText": "Гутберд все еще пребывает в уверенности, что люди Черноводной причастны к нападениям." + }, + { + "progress": 50, + "logText": "Гутберд посылает меня найти факты подготовки большого нападения на Прим со стороны Черноводной. Мне следует искать возле штаба Харленн, оставаясь незамеченным." + }, + { + "progress": 60, + "logText": "Возле штаба Харленн я нашел план нападения на Прим. Немедленно возвращаюсь доложить Гутберду." + }, + { + "progress": 70, + "logText": "Гутберд поблагодарил меня на помощь в нахождении доказательств агрессивных намерений соседей.", + "rewardExperience": 1150 + }, + { + "progress": 80, + "logText": "В целях прекращения нападений на Прим, Гутберд заказал мне голову Харленн." + }, + { + "progress": 90, + "logText": "Я начал сражаться с Харленн." + }, + { + "progress": 91, + "logText": "Я сказал Харленн, что послан убить его, но позволю ему жить. Он горячо поблагодарил меня и покинул поселение.", + "rewardExperience": 2100 + }, + { + "progress": 99, + "logText": "Я доложил Гутберду, что Харленн больше нет." + }, + { + "progress": 100, + "logText": "Гутберд поблагодарил меня за помощь Приму. Есть надежда, что нападения на Прим теперь прекратятся. В качестве благодарности он подарил мне кое-какие вещи и обещал радушный прием на будущее, так что я смогу пользоваться гостиницей в поселении Черноводная Гора.", + "rewardExperience": 5000 + }, + { + "progress": 140, + "logText": "Я показал знак 'Радушный прием' охраннику и получил беспрепятственный вход в гостиничную комнату." + }, + { + "progress": 240, + "logText": "Я теперь - доверенное лицо в Приме и могу пользоваться всеми службами.", + "finishesQuest": 1 + }, + { + "progress": 250, + "logText": "Я решил не помогать населению Прима.", + "finishesQuest": 1 + }, + { + "progress": 251, + "logText": "С тех пор, как я работаю в поселении Черноводной Горы, Гутберд не разговаривает со мной.", + "finishesQuest": 1 + } + ] + }, + { + "id": "kazaul", + "name": "Огни в темноте", + "showInLog": 1, + "stages": [ + { + "progress": 8, + "logText": "Я проделал путь до гостиничного номера и обнаружил лидера группы магов, человека по имени Тродна." + }, + { + "progress": 9, + "logText": "Тродна очень заинтересовано в ком-то (или в чем-то), именуемом Казаул, и в содержании ритуала, называемого этим именем." + }, + { + "progress": 10, + "logText": "Я готов помочь Тродну найти сведения о ритуале, в частях манускрипта, разбросанного по частям в районе гор. Части ритуала Казаул слудует искать на горной тропе от Черноводной горы к Приму." + }, + { + "progress": 11, + "logText": "Мне необходимо найти две части заклинания и три части, описывающие сам ритуал, и вернуться к Тродну, как только отыщу все." + }, + { + "progress": 21, + "logText": "Я нашел первую половину заклинания Казаульского ритуала." + }, + { + "progress": 22, + "logText": "Я нашел вторую половину заклинания Казаульского ритуала." + }, + { + "progress": 25, + "logText": "Я нашел первую часть описания Казаульского ритуала.." + }, + { + "progress": 26, + "logText": "Я нашел вторую часть описания Казаульского ритуала." + }, + { + "progress": 27, + "logText": "Я нашел третью часть описания Казаульского ритуала." + }, + { + "progress": 30, + "logText": "Тродна поблагодарил меня за найденные осколки древнего знания.", + "rewardExperience": 3600 + }, + { + "progress": 40, + "logText": "Тродна просит меня положить конец размножению Казаулов, имеющему место быть неподалеку от Черноводной Горы. Там должна быть гробница у основания, которую необходимо исследовать." + }, + { + "progress": 41, + "logText": "Мне был выдан пузырек Святой Воды, который необходимо применить в гробнице Казаулов. Мне следует вернуться к Тродну, как только я найду и освящу гробницу." + }, + { + "progress": 50, + "logText": "В гробнице у основания Черноводной Горы я встретил стражника Казаула. Напевом заклинания Казаулов, я смог заставить стражника атаковать меня." + }, + { + "progress": 60, + "logText": "Я освятил гробницу Казаулов.", + "rewardExperience": 3200 + }, + { + "progress": 100, + "logText": "Я увидел несколько форм оценки Тродном моей помощи в изучении ритуала и освящении гробницы. Но он все еще выглядит озабоченным проблемой казаулов. И с этим я ничего не могу поделать.", + "finishesQuest": 1 + } + ] + }, + { + "id": "bwm_wyrms", + "name": "Нет бессилию!", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Херек на втором этаже деревни Черноводная Гора изучает белых змей, обитающих вокруг поселения. По-видимому, некоторые из змей имеют когти. Мне придется поубивать некоторых, чтобы найти их." + }, + { + "progress": 20, + "logText": "Я отдал 5 когтей белых змей Хереку." + }, + { + "progress": 30, + "logText": "Херек закончил изготовление восстановительного зелья, которое очень пригодится в сражениях со змеями в будущем.", + "rewardExperience": 1500, + "finishesQuest": 1 + } + ] + }, + { + "id": "bjorgur_grave", + "name": "Очнувшийся от сна.", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Бьоргур в Приме думает, что кто-то потревожил могилу предков, которая находится юго-западнее Прима, сразу за шахтой." + }, + { + "progress": 15, + "logText": "Бьоргур просит меня проверить гробницу и убедиться, что фамильный кинжал все еще в безопасности в усыпальнице." + }, + { + "progress": 20, + "logText": "Фулус в Приме тоже интересуется кинжалом Бьоргура, которым обладал еще бьоргуровский дед." + }, + { + "progress": 30, + "logText": "Я встретил человека, который держал в руках странно выглядящий кинжал в нижних частях гробницы. Он, должно быть, украл этот кинжал из усыпальницы." + }, + { + "progress": 40, + "logText": "Я положил кинжал на место в усыпальнице. Неупокоенные души теперь менее беспокойны, что достаточно странно.", + "rewardExperience": 200 + }, + { + "progress": 50, + "logText": "Бьоргур поблагодарил меня за помощь. Он сказал мне, что следует также поискать его родственников в Фейгарде.", + "rewardExperience": 1100, + "finishesQuest": 1 + }, + { + "progress": 51, + "logText": "Я сказал Фулусу, что, помогая Бьоргуру, вернул фамильный клинок на его законное место." + }, + { + "progress": 60, + "logText": "Я отдал кинжал Бьоргура Фулусу. Он поблагодарил меня и вознаградил ... в некоторой степени.", + "rewardExperience": 1700, + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw/actorconditions_v0610.json b/AndorsTrail/res/raw/actorconditions_v0610.json new file mode 100644 index 000000000..6645b03f5 --- /dev/null +++ b/AndorsTrail/res/raw/actorconditions_v0610.json @@ -0,0 +1,27 @@ +[ + { + "id": "chaotic_grip", + "iconID": "actorconditions_1:96", + "name": "Chaotic grip", + "category": 1, + "abilityEffect": { + "increaseBlockChance": -10, + "increaseDamageResistance": -1 + } + }, + { + "id": "chaotic_curse", + "iconID": "actorconditions_1:89", + "name": "Chaotic curse", + "category": 1, + "abilityEffect": { + "increaseMaxAP": -1, + "increaseAttackDamage": { + "min": -1, + "max": -1 + }, + "increaseBlockChance": -10, + "increaseDamageResistance": -1 + } + } +] diff --git a/AndorsTrail/res/raw/actorconditions_v0611.json b/AndorsTrail/res/raw/actorconditions_v0611.json new file mode 100644 index 000000000..f8e682a3d --- /dev/null +++ b/AndorsTrail/res/raw/actorconditions_v0611.json @@ -0,0 +1,78 @@ +[ + { + "id": "contagion", + "iconID": "actorconditions_1:58", + "name": "Insect contagion", + "category": 3, + "abilityEffect": { + "increaseAttackChance": -10, + "increaseAttackDamage": { + "min": -1, + "max": -1 + } + } + }, + { + "id": "blister", + "iconID": "actorconditions_1:15", + "name": "Blistering skin", + "category": 3, + "roundEffect": { + "visualEffectID": 0, + "increaseCurrentHP": { + "min": -1, + "max": -1 + } + } + }, + { + "id": "stunned", + "iconID": "actorconditions_1:95", + "name": "Stunned", + "category": 2, + "abilityEffect": { + "increaseMaxAP": -2, + "increaseMoveCost": 8, + "increaseAttackCost": 5 + } + }, + { + "id": "focus_dmg", + "iconID": "actorconditions_1:70", + "name": "Focused damage", + "category": 1, + "isPositive": 1, + "abilityEffect": { + "increaseAttackCost": 1, + "increaseAttackDamage": { + "min": 3, + "max": 3 + } + } + }, + { + "id": "focus_ac", + "iconID": "actorconditions_1:98", + "name": "Focused accuracy", + "category": 1, + "isPositive": 1, + "abilityEffect": { + "increaseAttackCost": 1, + "increaseAttackChance": 40 + } + }, + { + "id": "poison_irdegh", + "iconID": "actorconditions_1:60", + "name": "Irdegh poison", + "category": 3, + "isStacking": 1, + "roundEffect": { + "visualEffectID": 2, + "increaseCurrentHP": { + "min": -1, + "max": -1 + } + } + } +] diff --git a/AndorsTrail/res/raw/actorconditions_v0611_2.json b/AndorsTrail/res/raw/actorconditions_v0611_2.json new file mode 100644 index 000000000..d7f953b04 --- /dev/null +++ b/AndorsTrail/res/raw/actorconditions_v0611_2.json @@ -0,0 +1,97 @@ +[ + { + "id": "rotworm", + "iconID": "actorconditions_1:82", + "name": "Kazaul rotworms", + "category": 2, + "abilityEffect": { + "increaseMaxHP": -15, + "increaseMaxAP": -3, + "increaseDamageResistance": -1 + } + }, + { + "id": "shadowbless_str", + "iconID": "actorconditions_1:70", + "name": "Blessing of Shadow strength", + "category": 0, + "isPositive": 1, + "abilityEffect": { + "increaseAttackDamage": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "shadowbless_heal", + "iconID": "actorconditions_1:35", + "name": "Blessing of Shadow regeneration", + "category": 0, + "isPositive": 1, + "roundEffect": { + "visualEffectID": 1, + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "shadowbless_acc", + "iconID": "actorconditions_1:98", + "name": "Blessing of Shadow accuracy", + "category": 0, + "isPositive": 1, + "abilityEffect": { + "increaseAttackChance": 30 + } + }, + { + "id": "shadowbless_guard", + "iconID": "actorconditions_1:91", + "name": "Shadow guardian blessing", + "category": 0, + "isPositive": 1, + "abilityEffect": { + "increaseMaxHP": 30, + "increaseDamageResistance": 1 + } + }, + { + "id": "crit1", + "iconID": "actorconditions_1:89", + "name": "Internal bleeding", + "category": 2, + "isStacking": 1, + "abilityEffect": { + "increaseAttackCost": 1, + "increaseAttackChance": -50, + "increaseAttackDamage": { + "min": -3, + "max": -3 + } + } + }, + { + "id": "crit2", + "iconID": "actorconditions_1:89", + "name": "Fracture", + "category": 2, + "isStacking": 1, + "abilityEffect": { + "increaseBlockChance": -50, + "increaseDamageResistance": -2 + } + }, + { + "id": "concussion", + "iconID": "actorconditions_1:80", + "name": "Concussion", + "category": 2, + "isStacking": 1, + "abilityEffect": { + "increaseAttackChance": -30 + } + } +] diff --git a/AndorsTrail/res/raw/actorconditions_v0612_2.json b/AndorsTrail/res/raw/actorconditions_v0612_2.json new file mode 100644 index 000000000..2ef83f6b0 --- /dev/null +++ b/AndorsTrail/res/raw/actorconditions_v0612_2.json @@ -0,0 +1,27 @@ +[ + { + "id": "food", + "iconID": "actorconditions_1:35", + "name": "Sustenance", + "category": 2, + "isPositive": 1, + "roundEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "foodp", + "iconID": "actorconditions_2:2", + "name": "Food-poisoning", + "category": 2, + "roundEffect": { + "increaseCurrentHP": { + "min": -1, + "max": -1 + } + } + } +] diff --git a/AndorsTrail/res/raw/actorconditions_v069.json b/AndorsTrail/res/raw/actorconditions_v069.json new file mode 100644 index 000000000..279f5ce8d --- /dev/null +++ b/AndorsTrail/res/raw/actorconditions_v069.json @@ -0,0 +1,52 @@ +[ + { + "id": "bless", + "iconID": "actorconditions_1:41", + "name": "Bless", + "category": 0, + "isPositive": 1, + "abilityEffect": { + "increaseAttackChance": 5 + } + }, + { + "id": "poison_weak", + "iconID": "actorconditions_1:60", + "name": "Weak Poison", + "category": 3, + "roundEffect": { + "visualEffectID": 2, + "increaseCurrentHP": { + "min": -1, + "max": -1 + } + } + }, + { + "id": "str", + "iconID": "actorconditions_1:70", + "name": "Strength", + "category": 2, + "isPositive": 1, + "abilityEffect": { + "increaseAttackDamage": { + "min": 2, + "max": 2 + } + } + }, + { + "id": "regen", + "iconID": "actorconditions_1:35", + "name": "Shadow Regeneration", + "category": 0, + "isPositive": 1, + "roundEffect": { + "visualEffectID": 1, + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + } +] diff --git a/AndorsTrail/res/raw/actorconditions_v069_bwm.json b/AndorsTrail/res/raw/actorconditions_v069_bwm.json new file mode 100644 index 000000000..6cfc6b829 --- /dev/null +++ b/AndorsTrail/res/raw/actorconditions_v069_bwm.json @@ -0,0 +1,101 @@ +[ + { + "id": "speed_minor", + "iconID": "actorconditions_1:87", + "name": "Minor speed", + "category": 2, + "isPositive": 1, + "abilityEffect": { + "increaseMaxAP": 2 + } + }, + { + "id": "fatigue_minor", + "iconID": "actorconditions_1:14", + "name": "Minor fatigue", + "category": 2, + "abilityEffect": { + "increaseMoveCost": 2, + "increaseAttackCost": 2, + "increaseAttackDamage": { + "min": -1, + "max": -1 + } + } + }, + { + "id": "feebleness_minor", + "iconID": "actorconditions_1:74", + "name": "Minor weapon feebleness", + "category": 1, + "abilityEffect": { + "increaseAttackDamage": { + "min": -3, + "max": -3 + } + } + }, + { + "id": "bleeding_wound", + "iconID": "actorconditions_2:0", + "name": "Bleeding wound", + "category": 3, + "isStacking": 1, + "roundEffect": { + "visualEffectID": 0, + "increaseCurrentHP": { + "min": -1, + "max": -1 + } + } + }, + { + "id": "rage_minor", + "iconID": "actorconditions_1:90", + "name": "Minor berserker rage", + "category": 1, + "isPositive": 1, + "abilityEffect": { + "increaseMaxHP": 35, + "increaseAttackChance": 60, + "increaseBlockChance": -90, + "increaseDamageResistance": -1 + } + }, + { + "id": "blackwater_misery", + "iconID": "actorconditions_1:58", + "name": "Blackwater misery", + "category": 3, + "abilityEffect": { + "increaseAttackCost": 1, + "increaseAttackChance": -50, + "increaseCriticalSkill": -50 + } + }, + { + "id": "intoxicated", + "iconID": "actorconditions_2:1", + "name": "Intoxicated", + "category": 1, + "isPositive": 1, + "abilityEffect": { + "increaseMaxHP": 15, + "increaseAttackCost": 1, + "increaseAttackChance": -30, + "increaseAttackDamage": { + "min": 4, + "max": 4 + } + } + }, + { + "id": "dazed", + "iconID": "actorconditions_1:65", + "name": "Dazed", + "category": 1, + "abilityEffect": { + "increaseBlockChance": -40 + } + } +] diff --git a/AndorsTrail/res/raw/conversationlist_ailshara.json b/AndorsTrail/res/raw/conversationlist_ailshara.json new file mode 100644 index 000000000..ab135aecb --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_ailshara.json @@ -0,0 +1,302 @@ +[ + { + "id": "ailshara", + "replies": [ + { + "nextPhraseID": "ailshara_completed_y_1", + "requires": { + "progress": "feygard_shipment:82" + } + }, + { + "nextPhraseID": "ailshara_completed_n_1", + "requires": { + "progress": "feygard_shipment:80" + } + }, + { + "nextPhraseID": "ailshara_deliver_1", + "requires": { + "progress": "feygard_shipment:35" + } + }, + { + "nextPhraseID": "ailshara_interested_1", + "requires": { + "progress": "feygard_shipment:25" + } + }, + { + "nextPhraseID": "ailshara_1" + } + ] + }, + { + "id": "ailshara_completed_y_1", + "message": "Hello again my Shadow friend. How may I help you?", + "replies": [ + { + "text": "Let me see what you have to trade.", + "nextPhraseID": "S" + } + ] + }, + { + "id": "ailshara_completed_n_1", + "message": "Sigh, it's you. What do you want?", + "replies": [ + { + "text": "Let me see what you have to trade.", + "nextPhraseID": "S" + } + ] + }, + { + "id": "ailshara_1", + "message": "Psst, hey. Interested in doing some trading? I am always looking for acquiring.. well, items of others..", + "replies": [ + { + "text": "Sure, let me see what you have.", + "nextPhraseID": "S" + }, + { + "text": "Items of others?", + "nextPhraseID": "ailshara_2" + } + ] + }, + { + "id": "ailshara_2", + "message": "Oh yes. You see, these Feygard patrol guards carry some really interesting things. They don't seem to care much if some of their shipments.. well, disappear.", + "replies": [ + { + "text": "Ok, let me see what you have.", + "nextPhraseID": "S" + }, + { + "text": "I should really not get involved in this. Goodbye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "ailshara_interested_1", + "message": "Psst, hey you! I saw you talking to Gandoren over there, and I happened to notice that you exchanged some items. Anything interesting?", + "replies": [ + { + "text": "Never mind that, let me see what you have to trade.", + "nextPhraseID": "S" + }, + { + "text": "I better not talk about it.", + "nextPhraseID": "ailshara_interested_2" + }, + { + "text": "Gandoren specifically asked me not to talk to you about it.", + "nextPhraseID": "ailshara_interested_2" + }, + { + "text": "Yes, Gandoren wants me to deliver some equipment for Feygard. Do you want a part of the deal?", + "nextPhraseID": "ailshara_interested_4" + } + ] + }, + { + "id": "ailshara_interested_2", + "message": "Hah, of course. Gandoren would not like it if I were to get a glimpse into his business. I assume you are helping him deliver those items somewhere. Tell me this, what did he promise you in return? Gold? Honor? No?", + "replies": [ + { + "text": "Now that you mention it, he didn't actually say there would be a reward.", + "nextPhraseID": "ailshara_interested_3" + }, + { + "text": "I am doing this for the glory of Feygard.", + "nextPhraseID": "ailshara_fg_1" + }, + { + "text": "Helping Feygard seems like the right thing to do.", + "nextPhraseID": "ailshara_fg_1" + }, + { + "text": "What would you propose instead?", + "nextPhraseID": "ailshara_interested_4" + } + ] + }, + { + "id": "ailshara_interested_3", + "message": "As usual, Feygard keeps all its riches to itself. What if I were to tell you there was a way for you to gain from all this as well?", + "replies": [ + { + "text": "Sounds interesting, please go on.", + "nextPhraseID": "ailshara_interested_4" + }, + { + "text": "I have no problem helping Feygard without any personal gain.", + "nextPhraseID": "ailshara_fg_1" + }, + { + "text": "I better not get involved in this, goodbye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "ailshara_fg_1", + "message": "By the Shadow, you sound like one of those deceptive snobs from Feygard.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ailshara_fg_2" + } + ] + }, + { + "id": "ailshara_fg_2", + "message": "Shadow help you, child. You should question yourself whether you really are making the right choice here." + }, + { + "id": "ailshara_interested_4", + "message": "Let me tell you my plan. As you might know, everyone believes there will be some coming conflict between the deceptive snobs of Feygard and the glorious people of Nor City.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ailshara_interested_5" + } + ] + }, + { + "id": "ailshara_interested_5", + "message": "Any help we can bring to Nor City in this matter is welcome. These items that Gandoren gave you would be useful to our people in the southern lands.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "feygard_shipment", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "ailshara_interested_6" + } + ] + }, + { + "id": "ailshara_interested_6", + "message": "These items, if you were to deliver them to our allies down in Vilegard, then the Shadow would look favorably upon you.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ailshara_interested_7" + } + ] + }, + { + "id": "ailshara_interested_7", + "message": "This way, the people could get back some piece of the riches that Feygard has stolen from all of us.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ailshara_interested_8" + } + ] + }, + { + "id": "ailshara_interested_8", + "message": "If you indeed are walking in the Shadow, then deliver these items to the smith in Vilegard. He will be able to make good use of them. He might also have some other task for you.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "feygard_shipment", + "value": 35 + } + ], + "replies": [ + { + "text": "I will see what I can do.", + "nextPhraseID": "ailshara_interested_9" + }, + { + "text": "No. I will help Feygard instead.", + "nextPhraseID": "ailshara_fg_1" + }, + { + "text": "Whatever, I choose my own path.", + "nextPhraseID": "ailshara_interested_9" + } + ] + }, + { + "id": "ailshara_interested_9", + "message": "Shadow be with you. May the Shadow guide you on the clouded paths that you walk." + }, + { + "id": "ailshara_deliver_1", + "message": "Hello again. Did you deliver those items to the smith in Vilegard?", + "replies": [ + { + "text": "Yes, it is done.", + "nextPhraseID": "ailshara_deliver_2_s", + "requires": { + "progress": "feygard_shipment:55" + } + }, + { + "text": "Never mind that, let me see what you have to trade.", + "nextPhraseID": "S" + }, + { + "text": "No. I will help Feygard instead.", + "nextPhraseID": "ailshara_fg_1" + }, + { + "text": "Can you tell me again what I was supposed to do?", + "nextPhraseID": "ailshara_interested_4" + }, + { + "text": "Not yet.", + "nextPhraseID": "ailshara_interested_9" + } + ] + }, + { + "id": "ailshara_deliver_2_s", + "replies": [ + { + "nextPhraseID": "ailshara_deliver_3", + "requires": { + "progress": "feygard_shipment:81" + } + }, + { + "nextPhraseID": "ailshara_deliver_2" + } + ] + }, + { + "id": "ailshara_deliver_2", + "message": "Good. You should also try to convince Gandoren into thinking that you helped him." + }, + { + "id": "ailshara_deliver_3", + "message": "Excellent! You do indeed walk with the Shadow my friend. I am glad to hear that there are at least a few decent folk still around.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "feygard_shipment", + "value": 82 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "ailshara_delivered_1" + } + ] + }, + { + "id": "ailshara_delivered_1", + "message": "Your help will be most appreciated by the people of Nor City, and you will be welcome among us." + } +] diff --git a/AndorsTrail/res/raw/conversationlist_algangror.json b/AndorsTrail/res/raw/conversationlist_algangror.json new file mode 100644 index 000000000..0f4303385 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_algangror.json @@ -0,0 +1,1498 @@ +[ + { + "id": "algangror", + "replies": [ + { + "nextPhraseID": "algangror_fight_6", + "requires": { + "progress": "remgard2:35" + } + }, + { + "nextPhraseID": "algangror_fight_3", + "requires": { + "progress": "remgard2:30" + } + }, + { + "nextPhraseID": "algangror_return_d1", + "requires": { + "progress": "fiveidols:100" + } + }, + { + "nextPhraseID": "algangror_cmp5", + "requires": { + "progress": "fiveidols:70" + } + }, + { + "nextPhraseID": "algangror_cmp1", + "requires": { + "progress": "fiveidols:61" + } + }, + { + "nextPhraseID": "algangror_story1", + "requires": { + "progress": "fiveidols:51" + } + }, + { + "nextPhraseID": "algangror_task2_ret1", + "requires": { + "progress": "fiveidols:37" + } + }, + { + "nextPhraseID": "algangror_task2_7", + "requires": { + "progress": "fiveidols:20" + } + }, + { + "nextPhraseID": "algangror_return_d1", + "requires": { + "progress": "algangror:101" + } + }, + { + "nextPhraseID": "algangror_return_d1", + "requires": { + "progress": "algangror:100" + } + }, + { + "nextPhraseID": "algangror_return_c1", + "requires": { + "progress": "algangror:21" + } + }, + { + "nextPhraseID": "algangror_return_3", + "requires": { + "progress": "algangror:20" + } + }, + { + "nextPhraseID": "algangror_return_1", + "requires": { + "progress": "algangror:15" + } + }, + { + "nextPhraseID": "algangror_1" + } + ] + }, + { + "id": "algangror_1", + "message": "Oh my, a child. He he, how nice. Tell me, what brings you here?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "algangror", + "value": 10 + } + ], + "replies": [ + { + "text": "I am looking for my brother.", + "nextPhraseID": "algangror_2a" + }, + { + "text": "I just entered to see if there's any loot to be found here.", + "nextPhraseID": "algangror_2b" + }, + { + "text": "I'm an adventurer, looking to help anyone in need of help.", + "nextPhraseID": "algangror_2c" + }, + { + "text": "I'd rather not tell.", + "nextPhraseID": "algangror_2d" + }, + { + "text": "I am sent by Jhaeld to end whatever it is you do to the people of Remgard.", + "nextPhraseID": "algangror_fight_1", + "requires": { + "progress": "remgard2:21" + } + } + ] + }, + { + "id": "algangror_2a", + "message": "Run away, has he? He he.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_3" + } + ] + }, + { + "id": "algangror_2b", + "message": "Oh sure, you think you can just pick up anything and claim it as yours?", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_3" + } + ] + }, + { + "id": "algangror_2c", + "message": "How noble. Maybe you can be of use to me.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_3" + } + ] + }, + { + "id": "algangror_2d", + "message": "Clever. I like that.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_3" + } + ] + }, + { + "id": "algangror_3", + "message": "Tell me, now that you have entered this house, would you be willing to help me with a small.. problem?", + "replies": [ + { + "text": "Sure, what's the problem?", + "nextPhraseID": "algangror_4" + }, + { + "text": "Maybe, it depends on what the problem is.", + "nextPhraseID": "algangror_4" + }, + { + "text": "Maybe, it depends on what type of reward we are talking about.", + "nextPhraseID": "algangror_3c" + }, + { + "text": "No way. You are acting way too creepy for me.", + "nextPhraseID": "algangror_decline_1" + } + ] + }, + { + "id": "algangror_3c", + "message": "Reward? No, no, I don't have anything to give you, unfortunately.", + "replies": [ + { + "text": "I guess you won't get any help either then.", + "nextPhraseID": "X" + }, + { + "text": "Fine, what's the problem you want help with?", + "nextPhraseID": "algangror_4" + }, + { + "text": "Something feels wrong here. I better not get involved in this.", + "nextPhraseID": "algangror_decline_1" + } + ] + }, + { + "id": "algangror_4", + "message": "You see, I have this slight problem with .. ahem .. vermin.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_5" + } + ] + }, + { + "id": "algangror_5", + "message": "Always sneaking around, always trying to cause mischief.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_6" + } + ] + }, + { + "id": "algangror_6", + "message": "Fortunately, I managed to capture some of them, and locked them in my basement.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_7" + } + ] + }, + { + "id": "algangror_7", + "message": "Now, I can't handle them myself because of certain .. issues.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_8" + } + ] + }, + { + "id": "algangror_8", + "message": "That's where you come in. Would you be willing to .. ahem .. handle those rodents for me?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "algangror", + "value": 11 + } + ], + "replies": [ + { + "text": "Sure, some rodents, I can handle that.", + "nextPhraseID": "algangror_9" + }, + { + "text": "No problem, I'll be right back once I have killed them.", + "nextPhraseID": "algangror_9" + }, + { + "text": "Something feels wrong here. I better not get involved in this.", + "nextPhraseID": "algangror_decline_1" + } + ] + }, + { + "id": "algangror_decline_1", + "message": "Ah yes. After all, you are just a child and I can understand such a task would be too much for you. He he.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "algangror", + "value": 100 + } + ] + }, + { + "id": "algangror_9", + "message": "Splendid. Return to me with some proof that they have been dealt with.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "algangror", + "value": 15 + } + ] + }, + { + "id": "algangror_return_1", + "message": "You return. Did you handle all those .. ahem .. rodents in my basement?", + "replies": [ + { + "text": "Yes, they are all dead.", + "nextPhraseID": "algangror_return_2", + "requires": { + "item": { + "itemID": "algangror_rat", + "quantity": 6, + "requireType": 0 + } + } + }, + { + "text": "I am still working on it. Goodbye.", + "nextPhraseID": "X" + }, + { + "text": "I won't do your stupid task, count me out.", + "nextPhraseID": "algangror_decline_1" + }, + { + "text": "I have decided not to help you with your rodents.", + "nextPhraseID": "algangror_decline_1" + }, + { + "text": "I am sent by Jhaeld to end whatever it is you do to the people of Remgard.", + "nextPhraseID": "algangror_fight_1", + "requires": { + "progress": "remgard2:21" + } + } + ] + }, + { + "id": "algangror_return_2", + "message": "He he. I bet you sure showed them. Excellent. Thank you for .. ahem .. helping me.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "algangror", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_return_3" + } + ] + }, + { + "id": "algangror_return_3", + "message": "Those rodents have really been bothering me. Good thing I managed to catch some of them. He he.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_return_4" + } + ] + }, + { + "id": "algangror_return_4", + "message": "Now, there was something else I wanted to talk to you about. Have you been to the city of Remgard in your travels?", + "replies": [ + { + "text": "Yes, I have been there.", + "nextPhraseID": "algangror_remgard_2" + }, + { + "text": "No, where is that?", + "nextPhraseID": "algangror_remgard_1" + } + ] + }, + { + "id": "algangror_return_c1", + "message": "You return. Thank you for helping me with my .. ahem .. rodent problem earlier.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_return_c2" + } + ] + }, + { + "id": "algangror_return_c2", + "replies": [ + { + "nextPhraseID": "algangror_told_1", + "requires": { + "progress": "remgard2:10" + } + }, + { + "nextPhraseID": "algangror_return_c4", + "requires": { + "progress": "remgard:75" + } + }, + { + "nextPhraseID": "algangror_return_c3" + } + ] + }, + { + "id": "algangror_return_c3", + "message": "I hope that will teach those *other* rats." + }, + { + "id": "algangror_return_c4", + "message": "Say, you seem like a resourceful person. Would you be interested in helping me with yet another .. task?", + "replies": [ + { + "text": "Depends on the task.", + "nextPhraseID": "algangror_task2_1" + }, + { + "text": "Sure.", + "nextPhraseID": "algangror_task2_1" + }, + { + "text": "Not right now.", + "nextPhraseID": "algangror_task2_d" + } + ] + }, + { + "id": "algangror_remgard_1", + "message": "Oh, it's not far from here. Doesn't matter really.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_remgard_2" + } + ] + }, + { + "id": "algangror_remgard_2", + "message": "You see, I used to live there. To make a long story short, there were some .. ahem .. misunderstandings.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_remgard_3" + } + ] + }, + { + "id": "algangror_remgard_3", + "message": "These days, I think they are looking for me, for some reason. Can't think of any reason why really. But I believe they are.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_remgard_4" + } + ] + }, + { + "id": "algangror_remgard_4", + "message": "Because of our previous .. misunderstanding, I think it's best they don't find out that I'm here.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_remgard_5" + } + ] + }, + { + "id": "algangror_remgard_5", + "message": "Therefore, I ask of you not to reveal my whereabouts to them.", + "replies": [ + { + "text": "Ok", + "nextPhraseID": "algangror_remgard_6" + }, + { + "text": "(Lie) Ok", + "nextPhraseID": "algangror_remgard_6" + } + ] + }, + { + "id": "algangror_remgard_6", + "message": "Thank you. Under no circumstances should you tell them where I am. They will most likely try to persuade you into revealing my location.", + "replies": [ + { + "text": "Ok", + "nextPhraseID": "algangror_remgard_7" + } + ] + }, + { + "id": "algangror_remgard_7", + "message": "Under no circumstances.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "algangror", + "value": 21 + } + ] + }, + { + "id": "algangror_return_d1", + "message": "Oh, it's you again.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_return_d2" + } + ] + }, + { + "id": "algangror_return_d2", + "message": "You should probably leave before you tip something over that might .. ahem .. break. He he.", + "replies": [ + { + "text": "I am sent by Jhaeld to end whatever it is you do to the people of Remgard.", + "nextPhraseID": "algangror_fight_1", + "requires": { + "progress": "remgard2:21" + } + }, + { + "text": "Watch your tongue, witch.", + "nextPhraseID": "X" + }, + { + "text": "You are right, I had better leave.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "algangror_fight_1", + "replies": [ + { + "nextPhraseID": "algangror_fight_2", + "requires": { + "progress": "algangror:100" + } + }, + { + "nextPhraseID": "algangror_fight_2", + "requires": { + "progress": "algangror:101" + } + }, + { + "nextPhraseID": "algangror_fight_1a", + "requires": { + "progress": "algangror:10" + } + }, + { + "nextPhraseID": "algangror_fight_2" + } + ] + }, + { + "id": "algangror_fight_1a", + "rewards": [ + { + "rewardType": 0, + "rewardID": "algangror", + "value": 101 + } + ], + "replies": [ + { + "nextPhraseID": "algangror_fight_2" + } + ] + }, + { + "id": "algangror_fight_2", + "replies": [ + { + "nextPhraseID": "algangror_fight_2a", + "requires": { + "progress": "fiveidols:10" + } + }, + { + "nextPhraseID": "algangror_fight_3" + } + ] + }, + { + "id": "algangror_fight_2a", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 100 + } + ], + "replies": [ + { + "nextPhraseID": "algangror_fight_3" + } + ] + }, + { + "id": "algangror_fight_3", + "message": "Jhaeld, the fool. He hides behind his guards and his stone walls. Such a pitiful man he is. Yes, I made those people disappear, but they were all worth it. I will have my revenge!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard2", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_fight_4" + } + ] + }, + { + "id": "algangror_fight_4", + "message": "And you, what are you trying to accomplish by running his errands? How fortunate that you entered my house. He he.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_fight_5" + } + ] + }, + { + "id": "algangror_fight_5", + "message": "Do you really think you can defeat *me*? Ha ha, this will be fun!", + "replies": [ + { + "text": "Fight!", + "nextPhraseID": "algangror_fight_6" + } + ] + }, + { + "id": "algangror_fight_6", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard2", + "value": 35 + } + ], + "replies": [ + { + "nextPhraseID": "F" + } + ] + }, + { + "id": "algangror_told_1", + "replies": [ + { + "nextPhraseID": "algangror_told_1a", + "requires": { + "progress": "algangror:10" + } + }, + { + "nextPhraseID": "algangror_told_2" + } + ] + }, + { + "id": "algangror_told_1a", + "rewards": [ + { + "rewardType": 0, + "rewardID": "algangror", + "value": 101 + } + ], + "replies": [ + { + "nextPhraseID": "algangror_told_2" + } + ] + }, + { + "id": "algangror_told_2", + "message": "Say, despite my previous urging to you to keep my location a secret to the people of Remgard, I have this feeling that this trust has been broken. Please tell me it isn't so.", + "replies": [ + { + "text": "Yes, I have told Jhaeld where you are.", + "nextPhraseID": "algangror_told_3" + }, + { + "text": "(Lie) No, I have not told anyone.", + "nextPhraseID": "algangror_told_3" + } + ] + }, + { + "id": "algangror_told_3", + "message": "I can feel it in me.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_return_d2" + } + ] + }, + { + "id": "algangror_task2_d", + "message": "Very well, return to me once you are ready." + }, + { + "id": "algangror_task2_1", + "message": "Now, I can't tell you what task I have in mind before I am confident that you will actually help me. Granted, you have already shown some level of respect for my need of discretion.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_task2_2" + } + ] + }, + { + "id": "algangror_task2_2", + "message": "Nor can I describe my reasoning behind this task before you are done with it.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_task2_3" + } + ] + }, + { + "id": "algangror_task2_3", + "message": "Rest assured, you will be sufficiently rewarded by helping me. In fact, you see this necklace here? It has some peculiar powers that many people seek.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_task2_4" + } + ] + }, + { + "id": "algangror_task2_4", + "message": "The world around you seems to move a bit slower when you wear it.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 10 + } + ], + "replies": [ + { + "text": "Ok. I will help you with your task.", + "nextPhraseID": "algangror_task2_6" + }, + { + "text": "Ok, I'll help. I'm always interested in new items.", + "nextPhraseID": "algangror_task2_6" + }, + { + "text": "It all depends on what you want me to do.", + "nextPhraseID": "algangror_task2_5" + }, + { + "text": "Something feels wrong here. I don't think I should help you.", + "nextPhraseID": "algangror_task2_n" + } + ] + }, + { + "id": "algangror_task2_5", + "message": "As I said, I cannot tell you what task I have in mind, or my reasoning behind it until you are done. I would need your total .. cooperation with this.", + "replies": [ + { + "text": "Ok. I will agree to help you with your task.", + "nextPhraseID": "algangror_task2_6" + }, + { + "text": "Ok, I'll help. I'm always interested in new items.", + "nextPhraseID": "algangror_task2_6" + }, + { + "text": "No. I will not help you unless you tell me what you want me to do.", + "nextPhraseID": "algangror_task2_n" + }, + { + "text": "No, I would never help someone like you.", + "nextPhraseID": "algangror_task2_n" + } + ] + }, + { + "id": "algangror_task2_n", + "message": "Ah yes. After all, you are just a child and I can understand that all of this must be too much for you. He he.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "algangror", + "value": 100 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_task2_n2" + } + ] + }, + { + "id": "algangror_task2_n2", + "message": "Can I at least urge you not to disclose my location to the people of Remgard?", + "replies": [ + { + "text": "I will keep your location secret. Goodbye.", + "nextPhraseID": "X" + }, + { + "text": "We'll see. Goodbye.", + "nextPhraseID": "X" + }, + { + "text": "Don't tell me what to do! Goodbye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "algangror_task2_6", + "message": "Good, good.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_task2_7" + } + ] + }, + { + "id": "algangror_task2_7", + "message": "You will tell no one of this task that I am about to give you, and you must be as discreet as possible.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_task2_8" + } + ] + }, + { + "id": "algangror_task2_8", + "message": "I have in my possession five idols. Five idols with very unique .. qualities. What I want you to do is .. deliver these idols to various people in the town of Remgard.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_task2_9" + } + ] + }, + { + "id": "algangror_task2_9", + "message": "You will place them by the beds of five particular persons, and you must hide it well so that the person does not find the idol itself.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_task2_10" + } + ] + }, + { + "id": "algangror_task2_10", + "message": "Remember, it is of utmost importance that you be as discreet as possible about this. The idols must not be found once you have placed them, and no one must notice that you place the idols.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 30 + } + ], + "replies": [ + { + "text": "Go on.", + "nextPhraseID": "algangror_task2_11" + } + ] + }, + { + "id": "algangror_task2_11", + "message": "So, the first person that I want you to visit is Jhaeld. I hear that he spends most of his time in the Remgard tavern these days.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 31 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_task2_12" + } + ] + }, + { + "id": "algangror_task2_12", + "message": "Secondly, I want you to visit one of the farmers named Larni. He lives with his wife Caeda here in Remgard in one of the northern cabins.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 32 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_task2_13" + } + ] + }, + { + "id": "algangror_task2_13", + "message": "The third person is Arnal the weapon-smith, that lives in the northwest of Remgard.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 33 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_task2_14" + } + ] + }, + { + "id": "algangror_task2_14", + "message": "Fourth is Emerei, that can probably be found in his house to the southeast of Remgard.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 34 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_task2_15" + } + ] + }, + { + "id": "algangror_task2_15", + "message": "The fifth person is the farmer Carthe. Carthe lives on the eastern shore of Remgard, near the tavern.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 35 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_task2_16" + } + ] + }, + { + "id": "algangror_task2_16", + "message": "Once you have placed these five idols by the beds of these five people, return to me as soon as possible.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_task2_17" + } + ] + }, + { + "id": "algangror_task2_17", + "message": "Again, I cannot stress this enough - you must not tell anyone about these idols, and you must not be seen while placing them.", + "replies": [ + { + "text": "I understand.", + "nextPhraseID": "algangror_task2_18s" + } + ] + }, + { + "id": "algangror_task2_18s", + "replies": [ + { + "nextPhraseID": "algangror_task2_19", + "requires": { + "progress": "fiveidols:37" + } + }, + { + "nextPhraseID": "algangror_task2_18" + } + ] + }, + { + "id": "algangror_task2_18", + "message": "Here are the idols.", + "rewards": [ + { + "rewardType": 1, + "rewardID": "fiveidols" + }, + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 37 + } + ], + "replies": [ + { + "text": "I will be back shortly.", + "nextPhraseID": "algangror_task2_19" + }, + { + "text": "This should be easy.", + "nextPhraseID": "algangror_task2_19" + } + ] + }, + { + "id": "algangror_task2_19", + "message": "Now go, and please hurry, we might not have much time." + }, + { + "id": "algangror_task2_ret1", + "message": "Tell me, how goes the task of placing the idols?", + "replies": [ + { + "text": "Can you repeat what you wanted me to do?", + "nextPhraseID": "algangror_task2_8" + }, + { + "text": "I am still trying to find everyone.", + "nextPhraseID": "algangror_task2_ret2" + }, + { + "text": "It is done.", + "nextPhraseID": "algangror_task2_done1", + "requires": { + "progress": "fiveidols:50" + } + }, + { + "text": "I won't do your stupid task.", + "nextPhraseID": "algangror_task2_n" + }, + { + "text": "I will not help you with your task.", + "nextPhraseID": "algangror_task2_n" + } + ] + }, + { + "id": "algangror_task2_ret2", + "message": "Please hurry, we might not have much time." + }, + { + "id": "algangror_task2_done1", + "message": "Excellent. Maybe, now I can rest easily. Thank you so much for helping me.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_task2_done2" + } + ] + }, + { + "id": "algangror_task2_done2", + "message": "Did anyone see you or where you placed the idols?", + "replies": [ + { + "text": "No, I hid the idols as you instructed.", + "nextPhraseID": "algangror_task2_done3" + } + ] + }, + { + "id": "algangror_task2_done3", + "message": "Good. Thank you again for helping me.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 51 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story" + } + ] + }, + { + "id": "algangror_story", + "message": "Let me tell you my story.", + "replies": [ + { + "text": "Please do.", + "nextPhraseID": "algangror_story1" + }, + { + "text": "Can we just skip to the end?", + "nextPhraseID": "algangror_cmp1" + } + ] + }, + { + "id": "algangror_story1", + "message": "You see, I used to live in the city of Remgard. The times were good, and the city prospered.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story2" + } + ] + }, + { + "id": "algangror_story2", + "message": "Our crops grew well, and some people had very fortunate trading agreements with other cities, making the life for most of us living in Remgard very easy.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story3" + } + ] + }, + { + "id": "algangror_story3", + "message": "I even sold some of the baskets that I used to make to a wealthy merchant that visited us from Nor City.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story4" + } + ] + }, + { + "id": "algangror_story4", + "message": "However, even the easy life gets boring after a while. I believe it is in our nature to strive for new and better things, to free us from the boredom of day-to-day life.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story5" + } + ] + }, + { + "id": "algangror_story5", + "message": "I wanted to learn more of things that I knew nothing about, and wanted to explore things I had only read of in books before.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story6" + } + ] + }, + { + "id": "algangror_story6", + "message": "So I went to Nor City myself, and visited many .. interesting people and .. dark corners.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story7" + } + ] + }, + { + "id": "algangror_story7", + "message": "Naturally, I was thrilled of the knowledge I gained from the experience, and from what I learned while there.", + "replies": [ + { + "text": "What then?", + "nextPhraseID": "algangror_story8" + } + ] + }, + { + "id": "algangror_story8", + "message": "As I got back home, I wanted to continue practicing what I had observed and learned while in Nor City.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story9" + } + ] + }, + { + "id": "algangror_story9", + "message": "You could say I got obsessed with learning more. I guess the others living in Remgard did not .. share my enthusiasm. Some of them even questioned the fact that I wanted to learn more.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story10" + } + ] + }, + { + "id": "algangror_story10", + "message": "So I told myself that others would not hinder me in my curiosity to better myself.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story11" + } + ] + }, + { + "id": "algangror_story11", + "message": "Those books that I bought from the Blackmarrow residence in Nor City - I must have read them all perhaps five times over. This was something completely new to me, and at the same time very exciting.", + "replies": [ + { + "text": "What then?", + "nextPhraseID": "algangror_story12" + } + ] + }, + { + "id": "algangror_story12", + "message": "For some reason, the others in Remgard started giving me strange looks, and I could hear the whispers behind my back.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story13" + } + ] + }, + { + "id": "algangror_story13", + "message": "I was even barred from the tavern. 'People come here for a good time, and we don't want people like you here ruining that' they said. What fools they are.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story14" + } + ] + }, + { + "id": "algangror_story14", + "message": "I heard one woman whispering to her boy, 'Don't look at her, she'll turn you to stone!'. Others just turned the other way when they met me.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story15" + } + ] + }, + { + "id": "algangror_story15", + "message": "What fools they are.", + "replies": [ + { + "text": "So what happened?", + "nextPhraseID": "algangror_story16" + } + ] + }, + { + "id": "algangror_story16", + "message": "One day, Jhaeld showed up at my doorstep with a group of guards.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story17" + } + ] + }, + { + "id": "algangror_story17", + "message": "The people of Remgard had decided that I could not stay there anymore, he said. The things I did were causing other people harm, he said.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story18" + } + ] + }, + { + "id": "algangror_story18", + "message": "What had I done, I asked myself? I had never hurt anyone, much less affected anyone with my .. experiments. Am I not allowed to do what I wish?", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story19" + } + ] + }, + { + "id": "algangror_story19", + "message": "I had little chance to argue, however. The guards led me out of the city. They did not even let me gather my things. All my books, all my notes and all my findings - gone. I lost everything.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 60 + } + ], + "replies": [ + { + "text": "What now?", + "nextPhraseID": "algangror_story20" + } + ] + }, + { + "id": "algangror_story20", + "message": "All this happened several seasons ago. I knew I had to get revenge for what they did to me.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story21" + } + ] + }, + { + "id": "algangror_story21", + "message": "Oh, how I despise them all. The people that gave me those looks, the people that whispered behind my back, and most of all that fool Jhaeld.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story22" + } + ] + }, + { + "id": "algangror_story22", + "message": "So, I decided to extend my .. experiments .. to larger things. To people, to living things. This is the perfect opportunity to learn even more than what is in the books.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story23" + } + ] + }, + { + "id": "algangror_story23", + "message": "To think that I could do it while at the same time get revenge on those despicable people - it's an excellent plan, if I may say so myself. He he.", + "replies": [ + { + "text": "So, what happened to all those people that have gone missing?", + "nextPhraseID": "algangror_story24" + } + ] + }, + { + "id": "algangror_story24", + "message": "I lured them here. Once I managed to trap them, I placed a curse on them that, in theory, should have only made them unable to speak.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story25" + } + ] + }, + { + "id": "algangror_story25", + "message": "Maybe I haven't understood everything correctly from the books that I have read, since instead of making them unable to speak, they were all turned into rats instead.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story26" + } + ] + }, + { + "id": "algangror_story26", + "message": "Practice makes perfect, I suppose. Ha ha.", + "replies": [ + { + "text": "Wait, does this mean that those rats I killed for you were..", + "nextPhraseID": "algangror_story27" + } + ] + }, + { + "id": "algangror_story27", + "message": "Oh yes. With your help, they are now one less problem to deal with, so to speak. He he.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_story28" + } + ] + }, + { + "id": "algangror_story28", + "message": "So, that's my story. Thank you for listening to it.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 61 + } + ], + "replies": [ + { + "text": "I understand, and I agree with your actions.", + "nextPhraseID": "algangror_story29a" + }, + { + "text": "I do not fully agree with your actions.", + "nextPhraseID": "algangror_story29b" + }, + { + "text": "What you did could never be justified!", + "nextPhraseID": "algangror_story29b" + } + ] + }, + { + "id": "algangror_story29a", + "message": "Thank you. It is good to know there are more people interested in learning more.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_cmp1" + } + ] + }, + { + "id": "algangror_story29b", + "message": "I never expected you to understand it. No one else seems to understand me either. Oh well, your loss, I guess.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_cmp1" + } + ] + }, + { + "id": "algangror_cmp1", + "message": "So, for helping me with the idols, I believe I promised you my enchanted necklace, 'Marrowtaint'.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_cmp2" + } + ] + }, + { + "id": "algangror_cmp2", + "message": "Wear it well, my friend. Do not let others get hold of the power that Marrowtaint provides.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_cmp3" + } + ] + }, + { + "id": "algangror_cmp3", + "message": "Here you go.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 70 + }, + { + "rewardType": 1, + "rewardID": "marrowtaint" + } + ], + "replies": [ + { + "text": "Thank you.", + "nextPhraseID": "algangror_cmp5" + }, + { + "text": "That's all? One lousy necklace for all this trouble I went through?", + "nextPhraseID": "algangror_cmp4" + } + ] + }, + { + "id": "algangror_cmp4", + "message": "Do not underestimate it, my friend.", + "replies": [ + { + "text": "N", + "nextPhraseID": "algangror_cmp5" + } + ] + }, + { + "id": "algangror_cmp5", + "message": "Again, thank you for helping me. You will always be welcome here, friend." + } +] diff --git a/AndorsTrail/res/raw/conversationlist_alynndir.json b/AndorsTrail/res/raw/conversationlist_alynndir.json new file mode 100644 index 000000000..13ad5bb2d --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_alynndir.json @@ -0,0 +1,70 @@ +[ + { + "id": "alynndir_1", + "message": "Hello there. Welcome to my cabin.", + "replies": [ + { + "text": "What do you do around here?", + "nextPhraseID": "alynndir_2" + }, + { + "text": "What can you tell me about the surroundings here?", + "nextPhraseID": "alynndir_3" + } + ] + }, + { + "id": "alynndir_2", + "message": "Mostly, I trade with travelers on the main road on the way to Nor City.", + "replies": [ + { + "text": "Do you have anything to trade?", + "nextPhraseID": "S" + }, + { + "text": "What can you tell me about the surroundings here?", + "nextPhraseID": "alynndir_3" + } + ] + }, + { + "id": "alynndir_3", + "message": "Oh, there is not much around here. Vilegard to the west and Brightport to the east.", + "replies": [ + { + "text": "N", + "nextPhraseID": "alynndir_4" + } + ] + }, + { + "id": "alynndir_4", + "message": "Up north is just forest. But there are some strange things happening there.", + "replies": [ + { + "text": "N", + "nextPhraseID": "alynndir_5" + } + ] + }, + { + "id": "alynndir_5", + "message": "I have heard terrible screams coming from the forest to the northwest.", + "replies": [ + { + "text": "N", + "nextPhraseID": "alynndir_6" + } + ] + }, + { + "id": "alynndir_6", + "message": "I really wonder what is up there.", + "replies": [ + { + "text": "Goodbye.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_ambelie.json b/AndorsTrail/res/raw/conversationlist_ambelie.json new file mode 100644 index 000000000..21bc5c9d4 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_ambelie.json @@ -0,0 +1,128 @@ +[ + { + "id": "ambelie_1", + "message": "Oh my, a commoner. Get away from me. I might catch something.", + "replies": [ + { + "text": "Who are you?", + "nextPhraseID": "ambelie_2" + }, + { + "text": "What is a noble woman such as yourself doing in a place like this?", + "nextPhraseID": "ambelie_5" + }, + { + "text": "I would be glad to get away from a snob like you.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "ambelie_2", + "message": "I am Ambelie of the house of Laumwill in Feygard. I am sure you must have heard of me and my house.", + "replies": [ + { + "text": "Oh yes.. um.. House of Laumwill in Feygard. Of course.", + "nextPhraseID": "ambelie_3" + }, + { + "text": "I have never heard of you or your house.", + "nextPhraseID": "ambelie_4" + }, + { + "text": "Where is Feygard?", + "nextPhraseID": "ambelie_3" + } + ] + }, + { + "id": "ambelie_3", + "message": "Feygard, the great city of peace. Surely you must know of it. Northwest in our great land.", + "replies": [ + { + "text": "What is a noble woman such as yourself doing in a place like this?", + "nextPhraseID": "ambelie_5" + }, + { + "text": "No, I have never heard of it.", + "nextPhraseID": "ambelie_4" + } + ] + }, + { + "id": "ambelie_4", + "message": "Pfft. That just proves everything I have heard of you savages here in the southern land. So uneducated." + }, + { + "id": "ambelie_5", + "message": "I, Ambelie, of the house of Laumwill in Feygard, am on an excursion to the southern Nor City.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ambelie_6" + } + ] + }, + { + "id": "ambelie_6", + "message": "An excursion to see if Nor City really is all that I have heard about it. If it really can compare itself to the glamour of the great city of Feygard.", + "replies": [ + { + "text": "Nor City, where is that?", + "nextPhraseID": "ambelie_7" + }, + { + "text": "If you like it so much in Feygard, why would you even leave?", + "nextPhraseID": "ambelie_9" + } + ] + }, + { + "id": "ambelie_7", + "message": "Don't you know of Nor City? I will take note that the savages here haven't even heard of the city.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ambelie_8" + } + ] + }, + { + "id": "ambelie_8", + "message": "I am beginning to be even more certain that Nor City will never, even in my wildest dreams, be comparable to the great city of Feygard.", + "replies": [ + { + "text": "Good luck on your excursion.", + "nextPhraseID": "ambelie_10" + } + ] + }, + { + "id": "ambelie_9", + "message": "All the noblewomen in Feygard keep talking about the mysterious Shadow in Nor City. I just have to see it myself.", + "replies": [ + { + "text": "Nor City, where is that?", + "nextPhraseID": "ambelie_7" + }, + { + "text": "Good luck on your excursion.", + "nextPhraseID": "ambelie_10" + } + ] + }, + { + "id": "ambelie_10", + "message": "Thank you. Now please leave before someone sees me talking to a commoner like you.", + "replies": [ + { + "text": "Commoner? Are you trying to insult me? Goodbye.", + "nextPhraseID": "X" + }, + { + "text": "Whatever, you probably wouldn't even survive a forest wasp.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_arghes.json b/AndorsTrail/res/raw/conversationlist_arghes.json new file mode 100644 index 000000000..86c893eb1 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_arghes.json @@ -0,0 +1,126 @@ +[ + { + "id": "arghes", + "replies": [ + { + "nextPhraseID": "arghes_2", + "requires": { + "progress": "andor:51" + } + }, + { + "nextPhraseID": "arghes_1" + } + ] + }, + { + "id": "arghes_1", + "message": "You will find no business here, child." + }, + { + "id": "arghes_2", + "message": "How interesting. The child from Fallhaven, here in Remgard?", + "replies": [ + { + "text": "I'm not from Fallhaven, I am from Crossglen, west of Fallhaven.", + "nextPhraseID": "arghes_3a" + }, + { + "text": "Who are you?", + "nextPhraseID": "arghes_3b" + }, + { + "text": "How do you know where I am from?", + "nextPhraseID": "arghes_3c" + } + ] + }, + { + "id": "arghes_3a", + "message": "Is that so? Hm, most interesting. It does not change anything, however.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arghes_4" + } + ] + }, + { + "id": "arghes_3b", + "message": "Who I am is of no importance in this situation. You on the other hand, are most important.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arghes_4" + } + ] + }, + { + "id": "arghes_3c", + "message": "I know .. a great deal of things.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arghes_4" + } + ] + }, + { + "id": "arghes_4", + "message": "$playername - yes, that is what they call you.", + "replies": [ + { + "text": "How do you know my name? Who are you?", + "nextPhraseID": "arghes_5" + } + ] + }, + { + "id": "arghes_5", + "message": "Let's just say that I am a .. friend. You would do well to keep your .. friends close.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arghes_6" + } + ] + }, + { + "id": "arghes_6", + "message": "Now, how may I help you? Equipment? Information?", + "replies": [ + { + "text": "Let me see what you have to trade.", + "nextPhraseID": "arghes_shop" + }, + { + "text": "What information do you have?", + "nextPhraseID": "arghes_7" + } + ] + }, + { + "id": "arghes_shop", + "message": "Certainly.", + "replies": [ + { + "text": "N", + "nextPhraseID": "S" + } + ] + }, + { + "id": "arghes_7", + "message": "Hm, let me see.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arghes_8" + } + ] + }, + { + "id": "arghes_8", + "message": "No, I cannot tell you anything at this time. You are welcome to return once your path has become .. clearer." + } +] diff --git a/AndorsTrail/res/raw/conversationlist_benbyr.json b/AndorsTrail/res/raw/conversationlist_benbyr.json new file mode 100644 index 000000000..5539a8c57 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_benbyr.json @@ -0,0 +1,353 @@ +[ + { + "id": "benbyr", + "replies": [ + { + "nextPhraseID": "benbyr_declined", + "requires": { + "progress": "benbyr:60" + } + }, + { + "nextPhraseID": "benbyr_complete_1", + "requires": { + "progress": "benbyr:30" + } + }, + { + "nextPhraseID": "benbyr_mission_1", + "requires": { + "progress": "benbyr:20" + } + }, + { + "nextPhraseID": "benbyr_story_1" + } + ] + }, + { + "id": "benbyr_complete_1", + "message": "Hello again. We sure showed that bastard Tinlyn. That should teach him not to mess with me again." + }, + { + "id": "benbyr_declined", + "message": "I have nothing more to say to you. Leave me." + }, + { + "id": "benbyr_story_1", + "message": "Psst, hey. Over here.", + "replies": [ + { + "text": "N", + "nextPhraseID": "benbyr_story_2" + } + ] + }, + { + "id": "benbyr_story_2", + "message": "You look like an aspiring adventurer. Are you willing to do some .. (Benbyr pauses) .. adventuring? He he.", + "replies": [ + { + "text": "What are we talking about here?", + "nextPhraseID": "benbyr_story_3_1" + }, + { + "text": "Depends on what I get in return.", + "nextPhraseID": "benbyr_story_3_2" + }, + { + "text": "I try to help people where ever they might need help.", + "nextPhraseID": "benbyr_story_3_3" + } + ] + }, + { + "id": "benbyr_story_3_1", + "message": "Straight to the point eh? I like that.", + "replies": [ + { + "text": "N", + "nextPhraseID": "benbyr_story_4" + } + ] + }, + { + "id": "benbyr_story_3_2", + "message": "Ah, the adventurer seeks compensation. Tell me, is the thrill of an adventure not reward enough?", + "replies": [ + { + "text": "Yes, you are right.", + "nextPhraseID": "benbyr_story_4" + }, + { + "text": "No.", + "nextPhraseID": "benbyr_story_3_4" + } + ] + }, + { + "id": "benbyr_story_3_4", + "message": "Then I will surely disappoint you. Return to me once you are ready for my task." + }, + { + "id": "benbyr_story_3_3", + "message": "The noble adventurer. He he, I like that. Yes, you will do fine.", + "replies": [ + { + "text": "N", + "nextPhraseID": "benbyr_story_4" + } + ] + }, + { + "id": "benbyr_story_4", + "message": "A while ago, I did some business with a certain man called Tinlyn, over here at this Crossroads guardhouse.", + "replies": [ + { + "text": "N", + "nextPhraseID": "benbyr_story_5" + } + ] + }, + { + "id": "benbyr_story_5", + "message": "As to the nature of our business, I can't really tell you. Let's just say that our business was of the kind that it was mutually beneficial that the guards did not know about it.", + "replies": [ + { + "text": "N", + "nextPhraseID": "benbyr_story_6" + } + ] + }, + { + "id": "benbyr_story_6", + "message": "We were ready to finish the big deal, me and Tinlyn. That's when he decided to turn on me.", + "replies": [ + { + "text": "N", + "nextPhraseID": "benbyr_story_7" + } + ] + }, + { + "id": "benbyr_story_7", + "message": "He reported me to the guards, and made me take the whole blame for our business.", + "replies": [ + { + "text": "N", + "nextPhraseID": "benbyr_story_8" + } + ] + }, + { + "id": "benbyr_story_8", + "message": "I was sent to Feygard prison, while he himself was set free for reporting me.", + "replies": [ + { + "text": "N", + "nextPhraseID": "benbyr_story_8_1" + } + ] + }, + { + "id": "benbyr_story_8_1", + "replies": [ + { + "nextPhraseID": "benbyr_story_10", + "requires": { + "progress": "benbyr:20" + } + }, + { + "nextPhraseID": "benbyr_story_9" + } + ] + }, + { + "id": "benbyr_story_9", + "message": "Argh, that fool Tinlyn. I hope the Shadow never shows him any mercy.", + "replies": [ + { + "text": "Get to the point already.", + "nextPhraseID": "benbyr_story_10" + }, + { + "text": "What do you need me to do?", + "nextPhraseID": "benbyr_story_10" + } + ] + }, + { + "id": "benbyr_story_10", + "message": "I want to get revenge on that fool Tinlyn of course. Now, my plan is the following:", + "replies": [ + { + "text": "N", + "nextPhraseID": "benbyr_story_11" + } + ] + }, + { + "id": "benbyr_story_11", + "message": "I have heard that he is herding sheep these days. This is an excellent opportunity for .. shall we say .. an accident to happen to his sheep. He he.", + "replies": [ + { + "text": "N", + "nextPhraseID": "benbyr_story_12" + } + ] + }, + { + "id": "benbyr_story_12", + "message": "You, my friend, would be the perfect walking accident. I want you to find all of Tinlyn's sheep and make sure they are forever united with the Shadow.", + "replies": [ + { + "text": "N", + "nextPhraseID": "benbyr_story_12_1" + } + ] + }, + { + "id": "benbyr_story_12_1", + "replies": [ + { + "nextPhraseID": "benbyr_accept_2", + "requires": { + "progress": "benbyr:20" + } + }, + { + "nextPhraseID": "benbyr_story_13" + } + ] + }, + { + "id": "benbyr_story_13", + "message": "Do this, and I will have avenged that fool Tinlyn.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "benbyr", + "value": 10 + } + ], + "replies": [ + { + "text": "Sounds like just my type of thing. I'll do it!", + "nextPhraseID": "benbyr_accept_1" + }, + { + "text": "This sounds a bit shady, but I'll do it anyway.", + "nextPhraseID": "benbyr_accept_1" + }, + { + "text": "No way, killing innocent sheep is beneath me. I will never do your task.", + "nextPhraseID": "benbyr_decline_1" + } + ] + }, + { + "id": "benbyr_decline_1", + "message": "Very well, but remember that I have my eyes on you.. adventurer.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "benbyr", + "value": 60 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "benbyr_declined" + } + ] + }, + { + "id": "benbyr_accept_1", + "message": "Splendid!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "benbyr", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "benbyr_accept_2" + } + ] + }, + { + "id": "benbyr_accept_2", + "message": "I happen to know that there are eight of his sheep in total, and they should all be to the northwest of here.", + "replies": [ + { + "text": "N", + "nextPhraseID": "benbyr_accept_3" + } + ] + }, + { + "id": "benbyr_accept_3", + "message": "Return to me with proof that you have slain all eight of them." + }, + { + "id": "benbyr_mission_1", + "message": "Ah, my walking accident returns. He he.", + "replies": [ + { + "text": "Can you tell me your story again?", + "nextPhraseID": "benbyr_story_4" + }, + { + "text": "I am still looking for those sheep.", + "nextPhraseID": "benbyr_accept_3" + }, + { + "text": "I have slain all eight of Tinlyn's sheep for you.", + "nextPhraseID": "benbyr_mission_2", + "requires": { + "item": { + "itemID": "tinlyn_sheep_meat", + "quantity": 8, + "requireType": 0 + } + } + } + ] + }, + { + "id": "benbyr_mission_2", + "message": "Ha ha! That fool Tinlyn must be in tears. The Shadow surely walks with you my friend.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "benbyr", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "benbyr_complete_2" + } + ] + }, + { + "id": "benbyr_complete_2", + "message": "This is a glorious day indeed! Tinlyn should have known not to mess with me!", + "replies": [ + { + "text": "N", + "nextPhraseID": "benbyr_complete_3" + } + ] + }, + { + "id": "benbyr_complete_3", + "message": "As for you my friend, seek out my friends in Brightport. I am sure they would extend their hospitality to you." + } +] diff --git a/AndorsTrail/res/raw/conversationlist_blackwater_harlenn.json b/AndorsTrail/res/raw/conversationlist_blackwater_harlenn.json new file mode 100644 index 000000000..df1fe4cf6 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_blackwater_harlenn.json @@ -0,0 +1,1042 @@ +[ + { + "id": "harlenn_start", + "replies": [ + { + "nextPhraseID": "harlenn_sentbyprim_8", + "requires": { + "progress": "prim_hunt:91" + } + }, + { + "nextPhraseID": "harlenn_sentbyprim_2", + "requires": { + "progress": "prim_hunt:90" + } + }, + { + "nextPhraseID": "harlenn_sentbyprim_1", + "requires": { + "progress": "prim_hunt:80" + } + }, + { + "nextPhraseID": "harlenn_return_1", + "requires": { + "progress": "bwm_agent:251" + } + }, + { + "nextPhraseID": "harlenn_return_1", + "requires": { + "progress": "bwm_agent:250" + } + }, + { + "nextPhraseID": "harlenn_completed", + "requires": { + "progress": "bwm_agent:150" + } + }, + { + "nextPhraseID": "harlenn_killguth_3", + "requires": { + "progress": "bwm_agent:149" + } + }, + { + "nextPhraseID": "harlenn_workingforprim_1", + "requires": { + "progress": "prim_hunt:50" + } + }, + { + "nextPhraseID": "harlenn_killguth_1", + "requires": { + "progress": "bwm_agent:120" + } + }, + { + "nextPhraseID": "harlenn_lookforsigns_1", + "requires": { + "progress": "bwm_agent:95" + } + }, + { + "nextPhraseID": "harlenn_return_3", + "requires": { + "progress": "bwm_agent:70" + } + }, + { + "nextPhraseID": "harlenn_return_2", + "requires": { + "progress": "bwm_agent:65" + } + }, + { + "nextPhraseID": "harlenn_1" + } + ] + }, + { + "id": "harlenn_1", + "message": "Welcome, traveller.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_2" + } + ] + }, + { + "id": "harlenn_2", + "message": "You must be the newcomer that traveled up the mountain side that I heard about.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_3" + } + ] + }, + { + "id": "harlenn_3", + "message": "We need your help in dealing with some .. problems.", + "replies": [ + { + "text": "Who are you?", + "nextPhraseID": "harlenn_4" + } + ] + }, + { + "id": "harlenn_4", + "message": "Oh sorry, I did not introduce myself properly. I am Harlenn, battle master of the people living in this mountain settlement.", + "replies": [ + { + "text": "I was told to see you by the guide that led me up the mountain.", + "nextPhraseID": "harlenn_5" + } + ] + }, + { + "id": "harlenn_5", + "message": "Oh yes, we are lucky he found you. You see, we seldom travel that far down the mountain.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_6" + } + ] + }, + { + "id": "harlenn_6", + "message": "Most of the time, we spend in the settlement or up here on the mountain.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_7" + } + ] + }, + { + "id": "harlenn_7", + "message": "However, recent events have forced us to send for help. We are lucky you found us.", + "replies": [ + { + "text": "What problems are you referring to?", + "nextPhraseID": "harlenn_8" + }, + { + "text": "What is happening up here?", + "nextPhraseID": "harlenn_8" + } + ] + }, + { + "id": "harlenn_8", + "message": "I am sure you noticed just by getting here. The monsters of course!", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_9" + } + ] + }, + { + "id": "harlenn_9", + "message": "Those damn beasts outside our very settlement. The white wyrms and the Aulaeth, and their trainers are even deadlier.", + "replies": [ + { + "text": "Those? They were no match for me.", + "nextPhraseID": "harlenn_11" + }, + { + "text": "I can see where this is going. You need me to deal with them for you I guess?", + "nextPhraseID": "harlenn_10" + }, + { + "text": "At least they aren't anything like those Gornaud beasts at the bottom of the mountain.", + "nextPhraseID": "harlenn_12" + } + ] + }, + { + "id": "harlenn_10", + "message": "Well, yes. But just killing them won't have any effect. We have tried that, to no avail. They just keep coming back.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_13" + } + ] + }, + { + "id": "harlenn_11", + "message": "You sound like my kind of type!", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_13" + } + ] + }, + { + "id": "harlenn_12", + "message": "Gornaud? I haven't heard about those. But I'm sure they couldn't possibly be worse than these beasts up here.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_13" + } + ] + }, + { + "id": "harlenn_13", + "message": "Anyway, the beasts are really starting to cut down our numbers. But they are not our only concern.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_14" + } + ] + }, + { + "id": "harlenn_14", + "message": "On top of that, we are being attacked by raids from those bastards down in that low-life town of Prim at the base of the mountain.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 65 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_15" + } + ] + }, + { + "id": "harlenn_15", + "message": "Oh, those treacherous, fake bastards.", + "replies": [ + { + "text": "What have they done?", + "nextPhraseID": "harlenn_16" + }, + { + "text": "I talked to Guthbered in Prim. They say you are the ones doing the attacks, and that you are behind the Gornaud attacks on Prim.", + "nextPhraseID": "harlenn_prim_1", + "requires": { + "progress": "prim_hunt:25" + } + }, + { + "text": "Is there anything I can do to help?", + "nextPhraseID": "harlenn_18" + } + ] + }, + { + "id": "harlenn_16", + "message": "They come here at night and sabotage our supplies.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_17" + } + ] + }, + { + "id": "harlenn_17", + "message": "We are almost certain they are the ones behind these monsters also.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 66 + } + ], + "replies": [ + { + "text": "I talked to Guthbered in Prim. They say you are the ones doing the attacks, and that you are behind the Gornaud attacks on Prim.", + "nextPhraseID": "harlenn_prim_1", + "requires": { + "progress": "prim_hunt:25" + } + }, + { + "text": "Is there anything I can do to help?", + "nextPhraseID": "harlenn_18" + } + ] + }, + { + "id": "harlenn_18", + "message": "Why, yes. Of course. If you are up to it.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_19" + } + ] + }, + { + "id": "harlenn_19", + "message": "Considering you made it up here alive, I'm pretty sure you can handle yourself.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_20" + } + ] + }, + { + "id": "harlenn_prim_1", + "message": "We?! Hah! It figures he would say that. They are always lying and cheating to get things their way. We have certainly not attacked them!", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_prim_2" + } + ] + }, + { + "id": "harlenn_prim_2", + "message": "It is, of course, *they* who are the ones causing all the trouble.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_prim_3" + } + ] + }, + { + "id": "harlenn_prim_3", + "message": "They even captured one of our fellow scouts. Who knows what they have done to him.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_prim_3_1" + } + ] + }, + { + "id": "harlenn_prim_3_1", + "replies": [ + { + "nextPhraseID": "X", + "requires": { + "progress": "bwm_agent:90" + } + }, + { + "nextPhraseID": "X", + "requires": { + "progress": "bwm_agent:251" + } + }, + { + "nextPhraseID": "X", + "requires": { + "progress": "bwm_agent:250" + } + }, + { + "nextPhraseID": "harlenn_prim_4" + } + ] + }, + { + "id": "harlenn_prim_4", + "message": "I'm telling you, they are treacherous and lying!", + "replies": [ + { + "text": "Sure, I believe you. What do you need from me?", + "nextPhraseID": "harlenn_prim_6" + }, + { + "text": "What would I gain by helping you instead of them?", + "nextPhraseID": "harlenn_prim_5" + }, + { + "text": "I'm not buying this. I think I would rather help the people of Prim than you people.", + "nextPhraseID": "harlenn_prim_7" + } + ] + }, + { + "id": "harlenn_prim_5", + "message": "Gain? Our trust of course. You would always be welcome here in our camp. Our traders have some excellent equipment.", + "replies": [ + { + "text": "Ok, I'll help you deal with them.", + "nextPhraseID": "harlenn_prim_6" + }, + { + "text": "I'm still not convinced, but I'll help you for now.", + "nextPhraseID": "harlenn_prim_6" + } + ] + }, + { + "id": "harlenn_prim_6", + "message": "Good. We will need an able fighter to help us deal with the monsters and the Prim bandits.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_19" + } + ] + }, + { + "id": "harlenn_prim_7", + "message": "Bah. Then you are useless to me. Why did you even bother to come up here and waste my time? Begone.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 250 + } + ] + }, + { + "id": "harlenn_20", + "message": "Ok, this is the plan. I want you to go talk to Guthbered down in Prim, and give him our ultimatum:", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_21" + } + ] + }, + { + "id": "harlenn_21", + "message": "Either they stop their attacks, or we will have to deal with them.", + "replies": [ + { + "text": "Sure. I will go tell him your ultimatum.", + "nextPhraseID": "harlenn_22" + }, + { + "text": "No. In fact, I think I should help the people of Prim instead.", + "nextPhraseID": "harlenn_prim_7" + } + ] + }, + { + "id": "harlenn_22", + "message": "Good. Now hurry! We don't know how much time we have left before they attack again.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 70 + } + ] + }, + { + "id": "harlenn_return_1", + "message": "You again? I want no business with you. Leave me.", + "replies": [ + { + "text": "Why are you people attacking the village of Prim?", + "nextPhraseID": "harlenn_prim_1", + "requires": { + "progress": "prim_hunt:25" + } + } + ] + }, + { + "id": "harlenn_return_2", + "message": "Welcome back, traveller. What's on your mind?", + "replies": [ + { + "text": "I talked to Guthbered in Prim. They say you are attacking Prim, and that you are behind the Gornaud attacks on Prim.", + "nextPhraseID": "harlenn_prim_1", + "requires": { + "progress": "prim_hunt:25" + } + }, + { + "text": "What was that you said earlier about the monsters that are attacking your settlement?", + "nextPhraseID": "harlenn_9" + } + ] + }, + { + "id": "harlenn_return_3", + "message": "Welcome back, traveller. Did you talk to that deceiving Guthbered down in Prim?", + "replies": [ + { + "text": "What was I supposed to do again?", + "nextPhraseID": "harlenn_20" + }, + { + "text": "No, not yet.", + "nextPhraseID": "harlenn_22" + }, + { + "text": "Yes, I talked to him. He denies that they are behind any of the attacks.", + "nextPhraseID": "harlenn_talkedto_guth_1", + "requires": { + "progress": "bwm_agent:80" + } + }, + { + "text": "I talked to Guthbered in Prim. They say you are the ones doing the attacks, and that you are behind the Gornaud attacks on Prim.", + "nextPhraseID": "harlenn_prim_1", + "requires": { + "progress": "prim_hunt:25" + } + } + ] + }, + { + "id": "harlenn_workingforprim_1", + "message": "My scouts have given me a most interesting report. They say you are working for Prim.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_workingforprim_2" + } + ] + }, + { + "id": "harlenn_workingforprim_2", + "message": "Of course we can't have that here. We can't have a spy in our midst. You should leave our settlement while you still can, traitor.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 251 + } + ] + }, + { + "id": "harlenn_completed", + "message": "Thank you, friend. Your help is greatly appreciated. Everyone in the Blackwater Mountain settlement will want to talk to you now.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 240 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_completed_1" + } + ] + }, + { + "id": "harlenn_completed_1", + "message": "I'm sure the monster attacks will stop now when we kill the last few monsters that are outside the settlement.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 250 + } + ] + }, + { + "id": "harlenn_talkedto_guth_1", + "message": "He denies it?! Bah, that treacherous fool. I should have known that he wouldn't dare tell the truth.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_talkedto_guth_2" + } + ] + }, + { + "id": "harlenn_talkedto_guth_2", + "message": "I am still sure that they somehow are behind all these attacks on us. Who else could there be? There are no other settlements around here for quite a walk.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_talkedto_guth_3" + } + ] + }, + { + "id": "harlenn_talkedto_guth_3", + "message": "Besides, they have always been treacherous. No, of course they are behind the attacks.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 90 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_talkedto_guth_4" + } + ] + }, + { + "id": "harlenn_talkedto_guth_4", + "message": "Ok, this leaves us with no choice. We will have to step this up to another level.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_talkedto_guth_5" + } + ] + }, + { + "id": "harlenn_talkedto_guth_5", + "message": "Are you sure you are up to it? You are not one of their spies are you? If you are working for them, then you should know that they are not to be trusted!", + "replies": [ + { + "text": "I am ready for anything. I will help your settlement.", + "nextPhraseID": "harlenn_talkedto_guth_7" + }, + { + "text": "Actually, now that you mention it...", + "nextPhraseID": "harlenn_talkedto_guth_6", + "requires": { + "progress": "prim_hunt:25" + } + }, + { + "text": "Yes, I am working for Prim also. They seem like sensible people.", + "nextPhraseID": "harlenn_prim_7", + "requires": { + "progress": "prim_hunt:25" + } + } + ] + }, + { + "id": "harlenn_talkedto_guth_6", + "message": "What? Are you working for them or not?", + "replies": [ + { + "text": "No, never mind. I am ready to help your settlement.", + "nextPhraseID": "harlenn_talkedto_guth_7" + }, + { + "text": "I was. But I have decided to help you instead.", + "nextPhraseID": "harlenn_talkedto_guth_7" + }, + { + "text": "Yes. I am helping them get rid of you people.", + "nextPhraseID": "harlenn_prim_7" + } + ] + }, + { + "id": "harlenn_talkedto_guth_7", + "message": "Good.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_talkedto_guth_8" + } + ] + }, + { + "id": "harlenn_talkedto_guth_8", + "message": "We believe they are planning to attack us any day now. But we lack any proof that we would need to do anything about it.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_talkedto_guth_9" + } + ] + }, + { + "id": "harlenn_talkedto_guth_9", + "message": "This is where I think an outsider like you might help.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_talkedto_guth_10" + } + ] + }, + { + "id": "harlenn_talkedto_guth_10", + "message": "I want you to go investigate Prim for any signs that you might find of them preparing an attack on us.", + "replies": [ + { + "text": "Sure, sounds easy.", + "nextPhraseID": "harlenn_talkedto_guth_11" + } + ] + }, + { + "id": "harlenn_talkedto_guth_11", + "message": "Good. Try not to be seen. You should go look for any clues around where that deceiving Guthbered stays.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 95 + } + ] + }, + { + "id": "harlenn_lookforsigns_1", + "message": "Hello again. Did you find any clues in Prim that they are planning to attack us?", + "replies": [ + { + "text": "No, not yet.", + "nextPhraseID": "harlenn_lookforsigns_2" + }, + { + "text": "Yes. I found plans that they are recruiting mercenaries and will attack your settlement.", + "nextPhraseID": "harlenn_lookforsigns_3", + "requires": { + "progress": "bwm_agent:100" + } + }, + { + "text": "What was I supposed to do again?", + "nextPhraseID": "harlenn_talkedto_guth_8" + } + ] + }, + { + "id": "harlenn_lookforsigns_2", + "message": "Keep looking. I am sure they are planning something wicked." + }, + { + "id": "harlenn_lookforsigns_3", + "message": "I knew it! I knew they were up to something.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_lookforsigns_4" + } + ] + }, + { + "id": "harlenn_lookforsigns_4", + "message": "Oh that lying pig Guthbered.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_lookforsigns_5" + } + ] + }, + { + "id": "harlenn_lookforsigns_5", + "message": "Anyway, thank you for your help in finding this evidence.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 110 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_lookforsigns_6" + } + ] + }, + { + "id": "harlenn_lookforsigns_6", + "message": "This calls for drastic measures. We have to act quickly before they can have time to complete their plan.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_lookforsigns_7" + } + ] + }, + { + "id": "harlenn_lookforsigns_7", + "message": "An old saying goes something like 'The only way to truly kill the Gorgon is by removing the head'. In this case, the head of those bastards down in Prim is that fellow Guthbered.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_lookforsigns_8" + } + ] + }, + { + "id": "harlenn_lookforsigns_8", + "message": "We should do something about him. You have proven your worth so far. This will be your final assignment.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_lookforsigns_9" + } + ] + }, + { + "id": "harlenn_lookforsigns_9", + "message": "I want you to go .. deal .. with him. Guthbered. Preferably in the most painful and gruesome way you can think of.", + "replies": [ + { + "text": "No problem.", + "nextPhraseID": "harlenn_lookforsigns_11" + }, + { + "text": "Are you sure more violence will really solve this conflict?", + "nextPhraseID": "harlenn_lookforsigns_10" + }, + { + "text": "He is as good as dead.", + "nextPhraseID": "harlenn_lookforsigns_11" + } + ] + }, + { + "id": "harlenn_lookforsigns_10", + "message": "You saw the plans yourself. They are going to attack us if we don't do something about them. Of course we have to kill him!", + "replies": [ + { + "text": "I will remove him, but I will try to find a peaceful solution to this.", + "nextPhraseID": "harlenn_lookforsigns_12" + }, + { + "text": "Very well. He is as good as dead.", + "nextPhraseID": "harlenn_lookforsigns_11" + } + ] + }, + { + "id": "harlenn_lookforsigns_11", + "message": "Excellent. Return to me once the deed is done.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 120 + } + ] + }, + { + "id": "harlenn_lookforsigns_12", + "message": "Fine. Do whatever you need to remove him, but I don't want to deal with their attacks anymore.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 120 + } + ] + }, + { + "id": "harlenn_sentbyprim_1", + "message": "Your expression tells me you have blood on your mind.", + "replies": [ + { + "text": "I am sent by the people of Prim to stop you.", + "nextPhraseID": "harlenn_sentbyprim_2" + }, + { + "text": "I am sent by the people of Prim to stop you. However, I have decided not to kill you.", + "nextPhraseID": "harlenn_sentbyprim_3" + } + ] + }, + { + "id": "harlenn_sentbyprim_2", + "message": "Stop me?! Ha ha. Very well, let's see who is the one being stopped here.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 90 + } + ], + "replies": [ + { + "text": "For the Shadow!", + "nextPhraseID": "F" + }, + { + "text": "Let's fight!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "harlenn_sentbyprim_3", + "message": "How interesting... Please continue.", + "replies": [ + { + "text": "It's obvious that this conflict will only end in more bloodshed. That should stop here.", + "nextPhraseID": "harlenn_sentbyprim_4" + } + ] + }, + { + "id": "harlenn_sentbyprim_4", + "message": "What are you proposing?", + "replies": [ + { + "text": "My proposal is that you leave this settlement and find a new home somewhere else.", + "nextPhraseID": "harlenn_sentbyprim_5" + } + ] + }, + { + "id": "harlenn_sentbyprim_5", + "message": "Now why would I want to do that?", + "replies": [ + { + "text": "These two towns will always fight each other. By you leaving, they will think they have won, and stop their attacks.", + "nextPhraseID": "harlenn_sentbyprim_6" + } + ] + }, + { + "id": "harlenn_sentbyprim_6", + "message": "Hm, you might have a point there.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_sentbyprim_7" + } + ] + }, + { + "id": "harlenn_sentbyprim_7", + "message": "Ok, you have convinced me. I will leave this settlement for another to find my home. The survival of my people here is more important than me.", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_sentbyprim_8" + } + ] + }, + { + "id": "harlenn_sentbyprim_8", + "message": "Thank you friend, for talking some sense into me.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 91 + } + ], + "replies": [ + { + "text": "You are welcome.", + "nextPhraseID": "R" + } + ] + }, + { + "id": "harlenn_killguth_1", + "message": "Hello again. Have you gotten rid of that lying Guthbered down in Prim?", + "replies": [ + { + "text": "Not yet, but I am working on it.", + "nextPhraseID": "harlenn_lookforsigns_11" + }, + { + "text": "What was I supposed to do again?", + "nextPhraseID": "harlenn_lookforsigns_7" + }, + { + "text": "Yes, he is dead.", + "nextPhraseID": "harlenn_killguth_2", + "requires": { + "item": { + "itemID": "guthbered_id", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Yes, he is gone.", + "nextPhraseID": "harlenn_killguth_2", + "requires": { + "progress": "bwm_agent:131" + } + } + ] + }, + { + "id": "harlenn_killguth_2", + "message": "Ha ha! He is finally gone! Now we can rest comfortably in our settlement.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 149 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_killguth_3" + } + ] + }, + { + "id": "harlenn_killguth_3", + "message": "They will no longer attack us now that their lying leader is gone!", + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_killguth_4" + } + ] + }, + { + "id": "harlenn_killguth_4", + "message": "Thank you friend. Here, have these items as a token of our appreciation for your help.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 150 + }, + { + "rewardType": 1, + "rewardID": "harlenn_reward" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "harlenn_completed" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_blackwater_herec.json b/AndorsTrail/res/raw/conversationlist_blackwater_herec.json new file mode 100644 index 000000000..f35b0b886 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_blackwater_herec.json @@ -0,0 +1,232 @@ +[ + { + "id": "herec_start", + "replies": [ + { + "nextPhraseID": "herec_q5", + "requires": { + "progress": "bwm_wyrms:30" + } + }, + { + "nextPhraseID": "herec_q3", + "requires": { + "progress": "bwm_wyrms:20" + } + }, + { + "nextPhraseID": "herec_q1", + "requires": { + "progress": "bwm_wyrms:10" + } + }, + { + "nextPhraseID": "herec_1" + } + ] + }, + { + "id": "herec_1", + "message": "Welcome, traveller. You must be the one I heard about, that travelled up the mountain.", + "replies": [ + { + "text": "N", + "nextPhraseID": "herec_2" + } + ] + }, + { + "id": "herec_2", + "message": "Would you be willing to help me with a task?", + "replies": [ + { + "text": "Depends. What task?", + "nextPhraseID": "herec_4" + }, + { + "text": "Why would I want to help you?", + "nextPhraseID": "herec_3" + } + ] + }, + { + "id": "herec_3", + "message": "Ah, a negotiator. I like that. If you help me, I will offer to trade the fruits of my labour with you. It should be most valuable to you.", + "replies": [ + { + "text": "Fine. What task are we talking about here?", + "nextPhraseID": "herec_4" + }, + { + "text": "No, how can I agree to something when I don't know what it is? I'm out.", + "nextPhraseID": "herec_11" + } + ] + }, + { + "id": "herec_4", + "message": "It is simple really. I am studying these wyrm creatures that lurk outside our settlement. I am trying to find what their strengths are, so that I can use it for myself.", + "replies": [ + { + "text": "N", + "nextPhraseID": "herec_5" + } + ] + }, + { + "id": "herec_5", + "message": "But my expertise is in the studies of them, and not in actually going head to head with those things.", + "replies": [ + { + "text": "N", + "nextPhraseID": "herec_6" + } + ] + }, + { + "id": "herec_6", + "message": "That's where you come in.", + "replies": [ + { + "text": "N", + "nextPhraseID": "herec_7" + } + ] + }, + { + "id": "herec_7", + "message": "I need you to gather some samples from them for me. I hear that some of the white wyrm beasts have sharper claws that can be extracted at the time of death.", + "replies": [ + { + "text": "N", + "nextPhraseID": "herec_8" + } + ] + }, + { + "id": "herec_8", + "message": "If you were to bring me some samples of those claws from the white wyrms, that would really speed up my research further.", + "replies": [ + { + "text": "N", + "nextPhraseID": "herec_9" + } + ] + }, + { + "id": "herec_9", + "message": "Let's say, five of those claws should be enough.", + "replies": [ + { + "text": "Ok, sounds easy enough. I'll get you your 5 white wyrm claws.", + "nextPhraseID": "herec_10" + }, + { + "text": "Sure. Those things are no match for me.", + "nextPhraseID": "herec_10" + }, + { + "text": "No way I am going near those beasts again.", + "nextPhraseID": "herec_11" + } + ] + }, + { + "id": "herec_10", + "message": "Good. Thank you. Please hurry back so I can continue my research on these beasts.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_wyrms", + "value": 10 + } + ] + }, + { + "id": "herec_11", + "message": "I assure you that my research is important. But it's your decision, and your loss." + }, + { + "id": "herec_q1", + "message": "Welcome back. How is the search going?", + "replies": [ + { + "text": "What was I supposed to do again?", + "nextPhraseID": "herec_4" + }, + { + "text": "I haven't found everything yet. But I am working on it.", + "nextPhraseID": "herec_10" + }, + { + "text": "I have found what you asked for.", + "nextPhraseID": "herec_q2", + "requires": { + "item": { + "itemID": "bwm_claws", + "quantity": 5, + "requireType": 0 + } + } + } + ] + }, + { + "id": "herec_q2", + "message": "Very well done my friend! These will be very valuable in my research.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_wyrms", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "herec_q2_2" + } + ] + }, + { + "id": "herec_q2_2", + "message": "Come back in just a minute and I will have something ready for you." + }, + { + "id": "herec_q3", + "message": "Welcome back my friend! Good news. I have successfully distilled the fragments of the claws you brought earlier.", + "replies": [ + { + "text": "N", + "nextPhraseID": "herec_q4" + } + ] + }, + { + "id": "herec_q4", + "message": "Now I am able to create effective potions that contain some essence of the white wyrms. These potions will be very useful in future dealings with these monsters.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_wyrms", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "herec_q5" + } + ] + }, + { + "id": "herec_q5", + "message": "Would you like to trade for some potions?", + "replies": [ + { + "text": "Sure. Let's see what you have.", + "nextPhraseID": "S" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_blackwater_kazaul.json b/AndorsTrail/res/raw/conversationlist_blackwater_kazaul.json new file mode 100644 index 000000000..9e5e4f4ff --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_blackwater_kazaul.json @@ -0,0 +1,158 @@ +[ + { + "id": "kazaul_guardian", + "message": "Kazaul..", + "replies": [ + { + "text": "What?", + "nextPhraseID": "kazaul_guardian_1" + }, + { + "text": "Kazaul, destroyer of bright dreams.", + "nextPhraseID": "kazaul_guardian_2", + "requires": { + "progress": "kazaul:40" + } + } + ] + }, + { + "id": "kazaul_guardian_1", + "message": "(The guardian looks completely unaware of your presence)" + }, + { + "id": "kazaul_guardian_2", + "message": "(The guardian looks down upon you with its burning eyes)", + "replies": [ + { + "text": "Kazaul, defiler of the Elytharan Temple.", + "nextPhraseID": "kazaul_guardian_3" + } + ] + }, + { + "id": "kazaul_guardian_3", + "message": "(You see the burning eyes of the guardian instantly turn into a dark red haze)", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 50 + } + ], + "replies": [ + { + "text": "A fight, I have been waiting for this!", + "nextPhraseID": "F" + }, + { + "text": "Please don't kill me!", + "nextPhraseID": "F" + }, + { + "text": "For the Shadow!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "sign_kazaul", + "replies": [ + { + "nextPhraseID": "sign_kazaul_1", + "requires": { + "progress": "kazaul:60" + } + }, + { + "nextPhraseID": "sign_kazaul_3" + } + ] + }, + { + "id": "sign_kazaul_1", + "message": "You see the shrine of Kazaul that you poured the vial of purifying spirit on.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_kazaul_2" + } + ] + }, + { + "id": "sign_kazaul_2", + "message": "The previously glowing hot rock is now cold as any regular piece of rock." + }, + { + "id": "sign_kazaul_3", + "message": "Before you stands a large cut out piece of rock, in what looks like a shrine.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_kazaul_4" + } + ] + }, + { + "id": "sign_kazaul_4", + "message": "You can feel an intense heat coming from the rock, almost like a burning fire.", + "replies": [ + { + "text": "Leave the formation alone.", + "nextPhraseID": "X" + }, + { + "text": "Apply the vial of purifying spirit on the formation.", + "nextPhraseID": "sign_kazaul_5", + "requires": { + "item": { + "itemID": "q_kazaul_vial", + "quantity": 1, + "requireType": 0 + } + } + } + ] + }, + { + "id": "sign_kazaul_5", + "message": "You gently pour the contents of the vial onto the formation.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 60 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_kazaul_6" + } + ] + }, + { + "id": "sign_kazaul_6", + "message": "You hear a loud crackling noise from deep below the shrine. At first, the formation seems unaffected, but after a while you see the glowing of the rock decrease slightly.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_kazaul_7" + } + ] + }, + { + "id": "sign_kazaul_7", + "message": "The process continues more rapidly, while reducing the heat generated from the formation.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_kazaul_8" + } + ] + }, + { + "id": "sign_kazaul_8", + "message": "This must be the purification process of the Kazaul shrine." + } +] diff --git a/AndorsTrail/res/raw/conversationlist_blackwater_lower.json b/AndorsTrail/res/raw/conversationlist_blackwater_lower.json new file mode 100644 index 000000000..d063f669a --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_blackwater_lower.json @@ -0,0 +1,263 @@ +[ + { + "id": "laede", + "replies": [ + { + "nextPhraseID": "laede_1", + "requires": { + "progress": "bwm_agent:240" + } + }, + { + "nextPhraseID": "laede_3" + } + ] + }, + { + "id": "laede_1", + "message": "You are welcome to rest here if you want. Pick any bed you wish.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nondisplay", + "value": 16 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "laede_2" + } + ] + }, + { + "id": "laede_2", + "message": "I should warn you though that the one in the corner over there has a rotten stench to it. Someone must have spilled something onto it." + }, + { + "id": "laede_3", + "message": "Welcome traveller. These beds are only for residents of Blackwater Mountain." + }, + { + "id": "iducus", + "replies": [ + { + "nextPhraseID": "iducus_1", + "requires": { + "progress": "bwm_agent:240" + } + }, + { + "nextPhraseID": "iducus_2" + } + ] + }, + { + "id": "iducus_1", + "message": "Welcome friend. What can I do for you?", + "replies": [ + { + "text": "What items do you have for sale?", + "nextPhraseID": "S" + } + ] + }, + { + "id": "iducus_2", + "message": "Welcome traveller. I see you are looking at my fine selection of wares.", + "replies": [ + { + "text": "N", + "nextPhraseID": "blackwater_notrust" + } + ] + }, + { + "id": "blackwater_priest", + "message": "... Kazaul, destroyer of spilled hope ..\nNo that's not it.", + "replies": [ + { + "text": "N", + "nextPhraseID": "blackwater_priest_1" + } + ] + }, + { + "id": "blackwater_priest_1", + "message": "Spilled .. torment?\nNo that's not it either.", + "replies": [ + { + "text": "N", + "nextPhraseID": "blackwater_priest_2" + } + ] + }, + { + "id": "blackwater_priest_2", + "message": "Argh, I can't seem to remember it.", + "replies": [ + { + "text": "What are you doing?", + "nextPhraseID": "blackwater_priest_3" + } + ] + }, + { + "id": "blackwater_priest_3", + "message": "Oh, hello. Never mind. Nothing. Just trying to remember something. Don't concern yourself with that." + }, + { + "id": "blackwater_guard2", + "message": "Halt! You should not step any further.", + "replies": [ + { + "text": "N", + "nextPhraseID": "blackwater_guard2_1" + } + ] + }, + { + "id": "blackwater_guard2_1", + "message": "There is something over there. Do you see it?", + "replies": [ + { + "text": "N", + "nextPhraseID": "blackwater_guard2_2" + } + ] + }, + { + "id": "blackwater_guard2_2", + "message": "A mist? A Shadow? I'm sure I saw something moving.", + "replies": [ + { + "text": "N", + "nextPhraseID": "blackwater_guard2_3" + } + ] + }, + { + "id": "blackwater_guard2_3", + "message": "Screw this guard duty stuff. I am staying back here.", + "replies": [ + { + "text": "N", + "nextPhraseID": "blackwater_guard2_4" + } + ] + }, + { + "id": "blackwater_guard2_4", + "message": "Good thing we blocked that entrance from that old cabin." + }, + { + "id": "blackwater_bossguard", + "replies": [ + { + "nextPhraseID": "blackwater_bossguard_2", + "requires": { + "progress": "prim_hunt:90" + } + }, + { + "nextPhraseID": "blackwater_bossguard_1" + } + ] + }, + { + "id": "blackwater_bossguard_1", + "message": "(The guard gives you a patronizing look, but says nothing)" + }, + { + "id": "blackwater_bossguard_2", + "message": "Hey, I'm staying out of your fight with the boss. Don't involve me in your schemes." + }, + { + "id": "blackwater_throneguard", + "replies": [ + { + "nextPhraseID": "blackwater_throneguard_5", + "requires": { + "progress": "bwm_agent:240" + } + }, + { + "nextPhraseID": "blackwater_throneguard_5", + "requires": { + "progress": "prim_hunt:140" + } + }, + { + "nextPhraseID": "blackwater_throneguard_1" + } + ] + }, + { + "id": "blackwater_throneguard_1", + "message": "Only residents of Blackwater Mountain or faction members are allowed in here.", + "replies": [ + { + "text": "Here, I have a written permit to enter.", + "nextPhraseID": "blackwater_throneguard_3", + "requires": { + "item": { + "itemID": "bwm_permit", + "quantity": 1, + "requireType": 0 + } + } + } + ] + }, + { + "id": "blackwater_throneguard_2", + "message": "I will let you through. Please go right ahead.", + "replies": [ + { + "text": "Thank you.", + "nextPhraseID": "R" + }, + { + "text": "Yes, get out of my way.", + "nextPhraseID": "R" + } + ] + }, + { + "id": "blackwater_throneguard_3", + "message": "A permit you say? Let me see that.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 140 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "blackwater_throneguard_4" + } + ] + }, + { + "id": "blackwater_throneguard_4", + "message": "Well, it has the signature and all. I guess it checks out all right.", + "replies": [ + { + "text": "N", + "nextPhraseID": "blackwater_throneguard_2" + } + ] + }, + { + "id": "blackwater_throneguard_5", + "message": "Oh, it is you.", + "replies": [ + { + "text": "N", + "nextPhraseID": "blackwater_throneguard_2" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_blackwater_signs.json b/AndorsTrail/res/raw/conversationlist_blackwater_signs.json new file mode 100644 index 000000000..dd2d05e14 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_blackwater_signs.json @@ -0,0 +1,281 @@ +[ + { + "id": "sign_blackwater10", + "message": "North: Prim\nWest: Elm mine\nEast: (text is unreadable due to several scratch marks in the wood)\nSouth: Stoutford" + }, + { + "id": "keyarea_bwm_agent_1", + "message": "The man shouts at you: You! Please help! You have to help us!" + }, + { + "id": "sign_blackwater0", + "message": "East: Fallhaven\nSouthwest: Stoutford\nNorthwest: Blackwater Mountain" + }, + { + "id": "sign_prim_n", + "message": "Notice to all citizens: No one is allowed to enter the mines at night! Furthermore, climbing the mountain side is strictly forbidden after the accident with Lorn." + }, + { + "id": "sign_prim_s", + "message": "Missing persons:\n - Duala\n - Lorn\n - Kamelio" + }, + { + "id": "sign_blackwater13", + "message": "No entry allowed.\nSigned by Guthbered of Prim." + }, + { + "id": "sign_blackwater30", + "replies": [ + { + "nextPhraseID": "sign_blackwater30_qstarted", + "requires": { + "progress": "kazaul:10" + } + }, + { + "nextPhraseID": "sign_blackwater30_notstarted" + } + ] + }, + { + "id": "sign_blackwater30_qstarted", + "message": "You find a piece of paper partially frozen in the snow. You can barely make out the phrase 'Kazaul, defiler of the Elytharan Temple' from the wet paper.\nThis must be the first half of the chant for the Kazaul ritual.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 21 + } + ] + }, + { + "id": "sign_blackwater30_notstarted", + "message": "You find a piece of paper partially frozen in the snow. You can barely make out the phrase 'Kazaul, defiler of the Elytharan Temple' from the wet paper." + }, + { + "id": "sign_blackwater32", + "message": "The sign is severely damaged from what looks as bite marks from something with really sharp teeth. You cannot make out any readable words." + }, + { + "id": "sign_blackwater38_1", + "replies": [ + { + "nextPhraseID": "sign_blackwater38_1_qstarted", + "requires": { + "progress": "kazaul:10" + } + }, + { + "nextPhraseID": "sign_blackwater38_notstarted" + } + ] + }, + { + "id": "sign_blackwater38_notstarted", + "message": "You find a piece of paper describing some form of ritual." + }, + { + "id": "sign_blackwater38_1_qstarted", + "message": "You find a piece of paper describing the beginnings of some form of ritual.\nThis must be the first part of the Kazaul ritual.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 25 + } + ] + }, + { + "id": "sign_blackwater38_2", + "replies": [ + { + "nextPhraseID": "sign_blackwater38_2_qstarted", + "requires": { + "progress": "kazaul:10" + } + }, + { + "nextPhraseID": "sign_blackwater38_notstarted" + } + ] + }, + { + "id": "sign_blackwater38_2_qstarted", + "message": "You find a piece of paper describing the main part of the Kazaul ritual.\nThis must be the second part of the Kazaul ritual.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 26 + } + ] + }, + { + "id": "sign_blackwater38_3", + "replies": [ + { + "nextPhraseID": "sign_blackwater38_3_qstarted", + "requires": { + "progress": "kazaul:10" + } + }, + { + "nextPhraseID": "sign_blackwater38_notstarted" + } + ] + }, + { + "id": "sign_blackwater38_3_qstarted", + "message": "You find a piece of paper describing the end of the Kazaul ritual.\nThis must be the third part of the Kazaul ritual.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 27 + } + ] + }, + { + "id": "sign_blackwater16", + "replies": [ + { + "nextPhraseID": "sign_blackwater16_qstarted", + "requires": { + "progress": "kazaul:10" + } + }, + { + "nextPhraseID": "sign_blackwater16_notstarted" + } + ] + }, + { + "id": "sign_blackwater16_qstarted", + "message": "You find a piece of torn paper stuck in the thick bush. You can barely make out the phrase 'Kazaul, destroyer of bright dreams' from the torn paper.\nThis must be the second half of the chant for the Kazaul ritual.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 22 + } + ] + }, + { + "id": "sign_blackwater16_notstarted", + "message": "You find a piece of torn paper stuck in the thick bush. You can barely make out the phrase 'Kazaul, destroyer of bright dreams' from the torn paper." + }, + { + "id": "bwm_sleephall_1", + "message": "You are not allowed to rest here. Only Blackwater residents or close allies are allowed to rest here." + }, + { + "id": "keyarea_bwm_agent_60", + "message": "You must talk to the man before proceeding further." + }, + { + "id": "sign_blackwater50_left", + "message": "This leads out into the wilderness outside Prim." + }, + { + "id": "sign_blackwater50_right", + "message": "This leads back into the Blackwater Mountain settlement." + }, + { + "id": "sign_blackwater29", + "replies": [ + { + "nextPhraseID": "sign_blackwater29_qstarted", + "requires": { + "progress": "bwm_agent:95" + } + }, + { + "nextPhraseID": "sign_blackwater29_notstarted" + } + ] + }, + { + "id": "sign_blackwater29_qstarted", + "message": "You try to be as sneaky as possible, to not gain any attention from the guards while searching through the stack of papers.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_blackwater29_qstarted_1" + } + ] + }, + { + "id": "sign_blackwater29_notstarted", + "message": "The guard shouts at you:\n\nHey you! Get away from there!" + }, + { + "id": "sign_blackwater29_qstarted_1", + "message": "Among the papers, you find plans for recruiting mercenaries for Prim and training fighters for a larger attack on the Blackwater Mountain settlement.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 100 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_blackwater29_qstarted_2" + } + ] + }, + { + "id": "sign_blackwater29_qstarted_2", + "message": "This must be the information that Harlenn wants." + }, + { + "id": "sign_blackwater45", + "replies": [ + { + "nextPhraseID": "sign_blackwater45_qstarted", + "requires": { + "progress": "prim_hunt:50" + } + }, + { + "nextPhraseID": "sign_blackwater45_notstarted" + } + ] + }, + { + "id": "sign_blackwater45_qstarted", + "message": "You try to sneak as much as possible, to not gain any attention from the guard while searching through the stack of papers.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_blackwater45_qstarted_1" + } + ] + }, + { + "id": "sign_blackwater45_notstarted", + "message": "As soon as you step near the table, the guard shouts at you:\n\nHey you! Get away from there!" + }, + { + "id": "sign_blackwater45_qstarted_1", + "message": "Among the papers, you find what seems to be plans for training fighters, and plans for an attack on what looks like Prim.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 60 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_blackwater45_qstarted_2" + } + ] + }, + { + "id": "sign_blackwater45_qstarted_2", + "message": "This must be the information that Guthbered wants." + } +] diff --git a/AndorsTrail/res/raw/conversationlist_blackwater_throdna.json b/AndorsTrail/res/raw/conversationlist_blackwater_throdna.json new file mode 100644 index 000000000..4002b55d5 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_blackwater_throdna.json @@ -0,0 +1,640 @@ +[ + { + "id": "throdna_start", + "replies": [ + { + "nextPhraseID": "throdna_purify_4", + "requires": { + "progress": "kazaul:100" + } + }, + { + "nextPhraseID": "throdna_purify_1", + "requires": { + "progress": "kazaul:41" + } + }, + { + "nextPhraseID": "throdna_return_3", + "requires": { + "progress": "kazaul:30" + } + }, + { + "nextPhraseID": "throdna_return_1", + "requires": { + "progress": "kazaul:10" + } + }, + { + "nextPhraseID": "throdna_1" + } + ] + }, + { + "id": "throdna_1", + "message": "Kazaul.. Shadow.. what was it again?", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_2" + } + ] + }, + { + "id": "throdna_2", + "message": "Oh, a visitor. Hello there. I have not seen you around here before. Did they let you in here?", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_3" + } + ] + }, + { + "id": "throdna_3", + "message": "Of course they did. What am I rambling on about. Harlenn and his gang always keep their worldly duties under control.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_4" + } + ] + }, + { + "id": "throdna_4", + "message": "So, who might you be then, eh? Probably here to bother me with some worldly complaint about the settlement needing more resources or someone complaining about the cold drag from the outside again?", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_loop_1" + } + ] + }, + { + "id": "throdna_loop_1", + "message": "What do you want?", + "replies": [ + { + "text": "What is this place?", + "nextPhraseID": "throdna_6" + }, + { + "text": "Who are you?", + "nextPhraseID": "throdna_7" + }, + { + "text": "What was that you talked about when I arrived, Kazaul?", + "nextPhraseID": "throdna_8" + }, + { + "text": "Are you aware that there is a bitter rivalry going on between this settlement and Prim?", + "nextPhraseID": "throdna_5" + } + ] + }, + { + "id": "throdna_5", + "message": "And there you go with your mundane problems. I tell you, your worldly troubles do not interest me the least bit.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_6" + } + ] + }, + { + "id": "throdna_6", + "message": "This is the mages' chamber in Blackwater Mountain. We devote our time to the studies of the Shadow and its descendants.", + "replies": [ + { + "text": "Descendants?", + "nextPhraseID": "throdna_8" + }, + { + "text": "Let's go back to my other questions.", + "nextPhraseID": "throdna_loop_1" + } + ] + }, + { + "id": "throdna_7", + "message": "I am Throdna. One of the most learned persons around, if you ask me.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_loop_1" + } + ] + }, + { + "id": "throdna_8", + "message": "Kazaul, the Shadow spawn of red marrow.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 8 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_9" + } + ] + }, + { + "id": "throdna_9", + "message": "We have been trying to read all we can on Kazaul, and the ritual. It seems we might be too late.", + "replies": [ + { + "text": "What do you mean?", + "nextPhraseID": "throdna_10" + } + ] + }, + { + "id": "throdna_10", + "message": "The ritual. We believe that Kazaul will manifest in our presence soon.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_11" + } + ] + }, + { + "id": "throdna_11", + "message": "We must learn more about the Kazaul ritual, to gain its power and learn to use it for our purposes.", + "replies": [ + { + "text": "Can I help in some way?", + "nextPhraseID": "throdna_12" + }, + { + "text": "What were you planning to do?", + "nextPhraseID": "throdna_12" + } + ] + }, + { + "id": "throdna_12", + "message": "As I said, we want to learn more about the ritual itself.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 9 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_13" + } + ] + }, + { + "id": "throdna_13", + "message": "A while ago, we were on the verge of getting our hands on the whole ritual itself, but the messenger was killed under most interesting circumstances while traveling up here.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_14" + } + ] + }, + { + "id": "throdna_14", + "message": "We knew he had the parts of the complete ritual on him, but since he was killed and we could not get to him because of the monsters - his notes were lost to us.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_15" + } + ] + }, + { + "id": "throdna_15", + "message": "According to our sources, there should be five parts of the ritual scattered across the mountain. Three of them describing the ritual itself, and two describing the Kazaul chant used to summon the guardian.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_15_1" + } + ] + }, + { + "id": "throdna_16", + "message": "Hm, maybe you could be of use here..", + "replies": [ + { + "text": "I would be glad to help.", + "nextPhraseID": "throdna_18" + }, + { + "text": "Sounds dangerous, but I'll do it.", + "nextPhraseID": "throdna_18" + }, + { + "text": "Keep your ritual of the Shadow to yourself. I am not getting involved in this.", + "nextPhraseID": "throdna_17" + } + ] + }, + { + "id": "throdna_17", + "message": "Fine, we will just have to find someone else then." + }, + { + "id": "throdna_18", + "message": "Yes, you might be able to help. Not that you really have any choice though.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_19" + } + ] + }, + { + "id": "throdna_19", + "message": "Ok. Find me the pieces of the ritual that the former messenger carried on him. They should be found somewhere on the path up to Blackwater Mountain.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 10 + } + ], + "replies": [ + { + "text": "I will return with your parts of the ritual.", + "nextPhraseID": "throdna_20" + } + ] + }, + { + "id": "throdna_20", + "message": "Yes, you will.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 11 + } + ] + }, + { + "id": "throdna_return_1", + "message": "Hello again. I hope you come here to tell me you have the five parts of the ritual.", + "replies": [ + { + "text": "I am still looking for them.", + "nextPhraseID": "throdna_return_2" + }, + { + "text": "How many parts was I supposed to find?", + "nextPhraseID": "throdna_15" + }, + { + "text": "What was I supposed to do again?", + "nextPhraseID": "throdna_12" + }, + { + "text": "Yes, I think I have found them all.", + "nextPhraseID": "throdna_check_1", + "requires": { + "progress": "kazaul:21" + } + } + ] + }, + { + "id": "throdna_return_2", + "message": "Then hurry and go find them! What are you standing around here for then?" + }, + { + "id": "throdna_return_3", + "message": "You actually found all five pieces? I suppose I should thank you. Well then. Thank you.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_return_4" + } + ] + }, + { + "id": "throdna_15_1", + "replies": [ + { + "nextPhraseID": "X", + "requires": { + "progress": "kazaul:10" + } + }, + { + "nextPhraseID": "throdna_16" + } + ] + }, + { + "id": "throdna_check_1", + "replies": [ + { + "nextPhraseID": "throdna_check_2", + "requires": { + "progress": "kazaul:22" + } + }, + { + "nextPhraseID": "throdna_check_fail" + } + ] + }, + { + "id": "throdna_check_2", + "replies": [ + { + "nextPhraseID": "throdna_check_3", + "requires": { + "progress": "kazaul:25" + } + }, + { + "nextPhraseID": "throdna_check_fail" + } + ] + }, + { + "id": "throdna_check_3", + "replies": [ + { + "nextPhraseID": "throdna_check_4", + "requires": { + "progress": "kazaul:26" + } + }, + { + "nextPhraseID": "throdna_check_fail" + } + ] + }, + { + "id": "throdna_check_4", + "replies": [ + { + "nextPhraseID": "throdna_return_3", + "requires": { + "progress": "kazaul:27" + } + }, + { + "nextPhraseID": "throdna_check_fail" + } + ] + }, + { + "id": "throdna_check_fail", + "message": "It seems you have not found all five pieces yet.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_15" + } + ] + }, + { + "id": "throdna_return_4", + "message": "We have more pressing matters to focus on. As I briefly mentioned before, we believe that Kazaul will manifest in our presence soon.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_return_5" + } + ] + }, + { + "id": "throdna_return_5", + "message": "If that were to happen, we could not complete our research about the ritual or Kazaul itself, all our efforts would be lost.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_return_6" + } + ] + }, + { + "id": "throdna_return_6", + "message": "Therefore, we intend to delay the process as much as we can, until we have learned of its powers.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_return_7" + } + ] + }, + { + "id": "throdna_return_7", + "message": "You might be useful to us here again.", + "replies": [ + { + "text": "I'm ready for anything.", + "nextPhraseID": "throdna_return_8" + }, + { + "text": "What do you need of me?", + "nextPhraseID": "throdna_return_8" + }, + { + "text": "I sure hope it involves more killing and looting.", + "nextPhraseID": "throdna_return_8" + } + ] + }, + { + "id": "throdna_return_8", + "message": "We need you to do two things. First, you must find the shrine of Kazaul. Our scouts tell us that the shrine should be located somewhere near the base of Blackwater Mountain.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_return_9" + } + ] + }, + { + "id": "throdna_return_9", + "message": "However, all passageways to the shrine are 'clouded in Shadow' according to our scouts. I'm not sure what that means.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_return_10" + } + ] + }, + { + "id": "throdna_return_10", + "message": "Second, we need you to take a vial of purifying spirit and apply it to the shrine.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_return_11_select" + } + ] + }, + { + "id": "throdna_return_11_select", + "replies": [ + { + "nextPhraseID": "throdna_return_13", + "requires": { + "progress": "kazaul:41" + } + }, + { + "nextPhraseID": "throdna_return_11" + } + ] + }, + { + "id": "throdna_return_11", + "message": "This vial is a vial of purifying spirit. It should delay the process well enough for us to be able to continue our research.", + "replies": [ + { + "text": "Sounds easy. I'll do it.", + "nextPhraseID": "throdna_return_12" + }, + { + "text": "Sounds dangerous, but I will do it.", + "nextPhraseID": "throdna_return_12" + }, + { + "text": "This sounds like a trap. I won't agree to do your dirty work.", + "nextPhraseID": "throdna_17" + } + ] + }, + { + "id": "throdna_return_12", + "message": "Good, here is the vial. Now hurry.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 41 + }, + { + "rewardType": 1, + "rewardID": "throdna_items" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_return_13" + } + ] + }, + { + "id": "throdna_return_13", + "message": "Return to me as soon as you have completed your task." + }, + { + "id": "throdna_purify_1", + "message": "Hello again. I hope you are here to tell me you have purified the shrine of Kazaul?", + "replies": [ + { + "text": "Yes, it is done.", + "nextPhraseID": "throdna_purify_3", + "requires": { + "progress": "kazaul:60" + } + }, + { + "text": "No, not yet.", + "nextPhraseID": "throdna_purify_2" + }, + { + "text": "What was I supposed to do again?", + "nextPhraseID": "throdna_return_8" + } + ] + }, + { + "id": "throdna_purify_2", + "message": "Then hurry and go take the vial to the shrine! What are you standing around here for?" + }, + { + "id": "throdna_purify_3", + "message": "Good. We must hurry to continue our research on Kazaul.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kazaul", + "value": 100 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_purify_4" + } + ] + }, + { + "id": "throdna_purify_4", + "message": "You should get out of here to allow us to concentrate on our work.", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_purify_5" + } + ] + }, + { + "id": "throdna_purify_5", + "message": ".. Kazaul, destroyer of bright dreams ..", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_purify_6" + } + ] + }, + { + "id": "throdna_purify_6", + "message": ".. Kazaul .. Shadow ..", + "replies": [ + { + "text": "N", + "nextPhraseID": "throdna_purify_7" + } + ] + }, + { + "id": "throdna_purify_7", + "message": "(Throdna continues to mumble on about Kazaul, but you cannot make out any other words)" + }, + { + "id": "throdna_guard", + "message": "Keep your voice down while in the inner chamber." + }, + { + "id": "blackwater_acolyte", + "message": "Are you also looking to become one with the Shadow?" + } +] diff --git a/AndorsTrail/res/raw/conversationlist_blackwater_upper.json b/AndorsTrail/res/raw/conversationlist_blackwater_upper.json new file mode 100644 index 000000000..1a9c8a10d --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_blackwater_upper.json @@ -0,0 +1,122 @@ +[ + { + "id": "blackwater_entranceguard", + "message": "Oh, a newcomer. Great. I hope you are here to help us with our problems.", + "replies": [ + { + "text": "N", + "nextPhraseID": "blackwater_guard1" + } + ] + }, + { + "id": "blackwater_guard1", + "message": "Stay out of trouble and trouble will stay away from you." + }, + { + "id": "blackwater_guest1", + "message": "Great place this, isn't it?" + }, + { + "id": "blackwater_guest2", + "message": "Teehee. Mazeg's potions make you feel all tingly and funny." + }, + { + "id": "blackwater_cook", + "message": "Get out of my kitchen! Take a seat and I will get to you in time." + }, + { + "id": "keneg", + "message": "Banging. Wheezing.", + "replies": [ + { + "text": "N", + "nextPhraseID": "keneg_1" + } + ] + }, + { + "id": "keneg_1", + "message": "Have to get away!", + "replies": [ + { + "text": "N", + "nextPhraseID": "keneg_2" + } + ] + }, + { + "id": "keneg_2", + "message": "The monsters, they come at night.", + "replies": [ + { + "text": "N", + "nextPhraseID": "keneg_3" + } + ] + }, + { + "id": "keneg_3", + "message": "*Looks nervous*\nHave to hide." + }, + { + "id": "blackwater_notrust", + "message": "Regardless, I cannot help you. My services are only for residents of Blackwater Mountain, and I don't trust you enough yet." + }, + { + "id": "waeges", + "replies": [ + { + "nextPhraseID": "waeges_1", + "requires": { + "progress": "bwm_agent:240" + } + }, + { + "nextPhraseID": "waeges_2" + } + ] + }, + { + "id": "waeges_1", + "message": "Welcome friend. What can I do for you?", + "replies": [ + { + "text": "What weapons do you have for sale?", + "nextPhraseID": "S" + } + ] + }, + { + "id": "waeges_2", + "message": "Welcome traveller. I see you are looking at my fine selection of weapons.", + "replies": [ + { + "text": "N", + "nextPhraseID": "blackwater_notrust" + } + ] + }, + { + "id": "blackwater_fighter", + "message": "I have no time for you, kid. Have to practice my skills." + }, + { + "id": "ungorm", + "message": "... but while the forces were withdrawing, the larger part of ...", + "replies": [ + { + "text": "N", + "nextPhraseID": "ungorm_1" + } + ] + }, + { + "id": "ungorm_1", + "message": "Oh. A young one. Hello. Please do not disturb my students while they are studying." + }, + { + "id": "blackwater_pupil", + "message": "Sorry, I can't talk right now." + } +] diff --git a/AndorsTrail/res/raw/conversationlist_buceth.json b/AndorsTrail/res/raw/conversationlist_buceth.json new file mode 100644 index 000000000..480a9dce2 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_buceth.json @@ -0,0 +1,746 @@ +[ + { + "id": "buceth", + "replies": [ + { + "nextPhraseID": "buceth_complete_1", + "requires": { + "progress": "loneford:60" + } + }, + { + "nextPhraseID": "buceth_fight_1", + "requires": { + "progress": "loneford:50" + } + }, + { + "nextPhraseID": "buceth_story_3", + "requires": { + "progress": "loneford:45" + } + }, + { + "nextPhraseID": "buceth_follow_1", + "requires": { + "progress": "loneford:42" + } + }, + { + "nextPhraseID": "buceth_bribed_1", + "requires": { + "progress": "loneford:41" + } + }, + { + "nextPhraseID": "buceth_1" + } + ] + }, + { + "id": "buceth_bribed_1", + "message": "You again. Thank you for the gold earlier.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_story_1" + } + ] + }, + { + "id": "buceth_follow_1", + "message": "Welcome back my friend. Walk with the Shadow.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_story_1" + } + ] + }, + { + "id": "buceth_1", + "message": "Shadow be with you.", + "replies": [ + { + "text": "I know of your business at the well the night after the illness broke out.", + "nextPhraseID": "buceth_2", + "requires": { + "progress": "loneford:35" + } + }, + { + "text": "Can you tell me more about the Shadow?", + "nextPhraseID": "priest_shadow_1" + } + ] + }, + { + "id": "buceth_2", + "message": "Oh, I am sure you do. But what proof do you have, eh? Anything the guards would believe?", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_3" + } + ] + }, + { + "id": "buceth_3", + "message": "Let me ask you something first, and we might talk after that.", + "replies": [ + { + "text": "Ok, what?", + "nextPhraseID": "buceth_4" + }, + { + "text": "How about some gold, would that make you talk?", + "nextPhraseID": "buceth_gold_1" + } + ] + }, + { + "id": "buceth_4", + "message": "Let me start by telling you a story.", + "replies": [ + { + "text": "Go ahead", + "nextPhraseID": "buceth_5" + }, + { + "text": "Let me guess, this story is going to take forever to listen to. How about I give you some gold, and instead we can discuss what you were doing at the well.", + "nextPhraseID": "buceth_gold_1" + } + ] + }, + { + "id": "buceth_gold_1", + "message": "Hm, that might be an interesting proposal. How much gold are you suggesting?", + "replies": [ + { + "text": "Here's 10 gold, take it.", + "nextPhraseID": "buceth_gold_no", + "requires": { + "item": { + "itemID": "gold", + "quantity": 10, + "requireType": 0 + } + } + }, + { + "text": "Here's 100 gold, take it.", + "nextPhraseID": "buceth_gold_no", + "requires": { + "item": { + "itemID": "gold", + "quantity": 100, + "requireType": 0 + } + } + }, + { + "text": "Here's 250 gold, take it.", + "nextPhraseID": "buceth_gold_no", + "requires": { + "item": { + "itemID": "gold", + "quantity": 250, + "requireType": 0 + } + } + }, + { + "text": "Here's 500 gold, take it.", + "nextPhraseID": "buceth_gold_no", + "requires": { + "item": { + "itemID": "gold", + "quantity": 500, + "requireType": 0 + } + } + }, + { + "text": "Here's 1000 gold, take it.", + "nextPhraseID": "buceth_gold_yes", + "requires": { + "item": { + "itemID": "gold", + "quantity": 1000, + "requireType": 0 + } + } + }, + { + "text": "Here's 2000 gold, take it.", + "nextPhraseID": "buceth_gold_yes", + "requires": { + "item": { + "itemID": "gold", + "quantity": 2000, + "requireType": 0 + } + } + } + ] + }, + { + "id": "buceth_gold_no", + "message": "Hrmpf. Thanks for the gold, but I am not interested in talking to you. Now, please leave." + }, + { + "id": "buceth_gold_yes", + "message": "You seem to realize the true value of the Shadow. Yes, this will do fine, thank you.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 41 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_story_1" + } + ] + }, + { + "id": "buceth_5", + "message": "Let's assume you live in a village that, for the most part, keeps to itself. Your village is self-sustainable and the crops have been good for some years.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_6" + } + ] + }, + { + "id": "buceth_6", + "message": "With the few exceptions of some fights here and there between villagers because of misunderstandings, on the whole, your village is a friendly, peaceful village.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_7" + } + ] + }, + { + "id": "buceth_7", + "message": "You work in the same profession as your parents, which in turn worked in the same professions as their parents.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_8" + } + ] + }, + { + "id": "buceth_8", + "message": "Let's also assume that the way you conduct your business is the same way that the people in the village have been conducting their business for generations past.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_9" + } + ] + }, + { + "id": "buceth_9", + "message": "Everyone respects one another in the village, and your appointed leader does a good job at keeping everyone's interests satisfied, while at the same time being reasonably fair.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_10" + } + ] + }, + { + "id": "buceth_10", + "message": "Then, one day, a group of men come walking into the village. Shining armour, white teeth, combed hair, trimmed beards.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_11" + } + ] + }, + { + "id": "buceth_11", + "message": "The men claim that their lord owns this land, including your village.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_12" + } + ] + }, + { + "id": "buceth_12", + "message": "They claim that they keep the land safe of wrongdoers and evil creatures.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_13" + } + ] + }, + { + "id": "buceth_13", + "message": "For their help in protecting your village, they ask that the village compensate them with a share of the harvest.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_14" + } + ] + }, + { + "id": "buceth_14", + "message": "Now, tell me. Would you support those men by agreeing to their terms?", + "replies": [ + { + "text": "Yes", + "nextPhraseID": "buceth_15" + }, + { + "text": "No", + "nextPhraseID": "buceth_15" + }, + { + "text": "I don't know", + "nextPhraseID": "buceth_dontknow" + } + ] + }, + { + "id": "buceth_dontknow", + "message": "I am sorry to hear that. You should make up your mind and return to me once you have done so. Then we might be able to talk more.", + "replies": [ + { + "text": "Ok, goodbye.", + "nextPhraseID": "X" + }, + { + "text": "How about I give you some gold instead?", + "nextPhraseID": "buceth_gold_1" + } + ] + }, + { + "id": "buceth_15", + "message": "How interesting.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_16" + } + ] + }, + { + "id": "buceth_16", + "message": "Let me continue the story of our hypothetical case.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_17" + } + ] + }, + { + "id": "buceth_17", + "message": "A while later, the men return. They explain that some of the methods that are used in the village have now been prohibited across the whole land.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_18" + } + ] + }, + { + "id": "buceth_18", + "message": "Without going into specifics, let's say that these are methods that have been used for past generations in your village.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_19" + } + ] + }, + { + "id": "buceth_19", + "message": "Changing the way things are done without these methods will require quite an effort. A lot of people in the village are upset because of this news from the men.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_20" + } + ] + }, + { + "id": "buceth_20", + "message": "Now, tell me. Would you in secret continue using the old methods your past generations have used, or would you instead convert to the way that the men are advocating?", + "replies": [ + { + "text": "I would continue using the old ways in secret.", + "nextPhraseID": "buceth_21_1" + }, + { + "text": "I would continue using the old ways, and fight the ruling that prohibited them in the first place.", + "nextPhraseID": "buceth_21_2" + }, + { + "text": "I would only use the methods that are allowed.", + "nextPhraseID": "buceth_22" + }, + { + "text": "I would follow the law.", + "nextPhraseID": "buceth_22" + }, + { + "text": "I can't decide without knowing the specifics.", + "nextPhraseID": "buceth_dontknow" + } + ] + }, + { + "id": "buceth_21_1", + "message": "How interesting.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_25" + } + ] + }, + { + "id": "buceth_21_2", + "message": "I am glad to hear that there are people still around that are willing to stand up for what is right.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_25" + } + ] + }, + { + "id": "buceth_22", + "message": "How interesting. You have a different view of the world than what I and the priests of Nor City have.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_23" + } + ] + }, + { + "id": "buceth_23", + "message": "You are of course entitled to your opinion, but you should know that your opinion might conflict with the Shadow.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_24" + } + ] + }, + { + "id": "buceth_24", + "message": "You wanted to know about some business that you accuse me of. Since you have no proof, I will claim innocence. I know that my conscience is clean.", + "replies": [ + { + "text": "Ok, goodbye.", + "nextPhraseID": "X" + }, + { + "text": "Fine. How about I give you some gold instead, would that make you talk?", + "nextPhraseID": "buceth_gold_1" + } + ] + }, + { + "id": "buceth_25", + "message": "Your views match those that I and the other priests from Nor City believe in. Tell me, would you be interested in following the glow of the Shadow?", + "replies": [ + { + "text": "I am ready to follow the Shadow.", + "nextPhraseID": "buceth_27" + }, + { + "text": "How can I agree to something without knowing what it entails?", + "nextPhraseID": "buceth_26" + }, + { + "text": "No, I will go my own way.", + "nextPhraseID": "buceth_decline" + }, + { + "text": "No, I will go my own way. Your stupid Shadow is nothing but talk and fancy words.", + "nextPhraseID": "buceth_decline" + } + ] + }, + { + "id": "buceth_26", + "message": "If the answers you gave previously were indeed your views, then I can assure you that the path that is guided by the Shadow is the right one.", + "replies": [ + { + "text": "I am ready to follow the Shadow.", + "nextPhraseID": "buceth_27" + }, + { + "text": "No, I will go my own way.", + "nextPhraseID": "buceth_decline" + }, + { + "text": "No, I will go my own way. Your stupid Shadow is nothing but talk and fancy words.", + "nextPhraseID": "buceth_decline" + } + ] + }, + { + "id": "buceth_decline", + "message": "I am sorry to hear that. I guess we do not share views after all.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_24" + } + ] + }, + { + "id": "buceth_27", + "message": "I am glad to hear that, but then again, I had a feeling all along that you would say that.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 42 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_story_1" + } + ] + }, + { + "id": "buceth_story_1", + "message": "You wanted to ask me something?", + "replies": [ + { + "text": "What were you doing at the well during the night?", + "nextPhraseID": "buceth_story_2" + } + ] + }, + { + "id": "buceth_story_2", + "message": "Let me first tell you my background.", + "replies": [ + { + "text": "Great. Another endless story.", + "nextPhraseID": "buceth_story_3" + }, + { + "text": "Please go ahead.", + "nextPhraseID": "buceth_story_3" + } + ] + }, + { + "id": "buceth_story_3", + "message": "I am appointed by the priests of Nor City to help guide the people of Loneford towards the Shadow. Our mission is to see that the Shadow casts its glow over Loneford as well as other settlements around here.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_story_4" + } + ] + }, + { + "id": "buceth_story_4", + "message": "Most folk in these northern parts seem too occupied with obeying the will of Feygard and Lord Geomyr. We want to help people see the light of the wrongdoings that Feygard advocates, and to point out the errors in their ways.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_story_5" + } + ] + }, + { + "id": "buceth_story_5", + "message": "That's my mission here. To see that the Shadow casts its glow over Loneford.", + "replies": [ + { + "text": "How does this relate to what you were doing at the well?", + "nextPhraseID": "buceth_story_6" + } + ] + }, + { + "id": "buceth_story_6", + "message": "Nor City sent word to me that something was about to happen here in Loneford. Something that would help our cause.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_story_7" + } + ] + }, + { + "id": "buceth_story_7", + "message": "They were sending a boy to do some business here, and I was assigned to make sure that the mission was successful.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 61 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_story_8" + } + ] + }, + { + "id": "buceth_story_8", + "message": "I was tasked with gathering samples from the water in the well and from the ground around the well. Also, I was given some vials whose contents should be poured into the well.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_story_9" + } + ] + }, + { + "id": "buceth_story_9", + "message": "Apparently, the boy they sent was successful in his mission. The task that I did was also successful, if I may say so myself.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 45 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_story_10" + } + ] + }, + { + "id": "buceth_story_10", + "message": "So, currently, that's where we stand now. The deed is done, and the Shadow will look favorably upon us.", + "replies": [ + { + "text": "So, the well was poisoned, that's horrible. How could you?", + "nextPhraseID": "buceth_story_11" + }, + { + "text": "Thank you for telling me.", + "nextPhraseID": "buceth_story_12" + } + ] + }, + { + "id": "buceth_story_11", + "message": "Horrible!? What is horrible? What those people from Feygard are doing - that's what's horrible!", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_story_12" + } + ] + }, + { + "id": "buceth_story_12", + "message": "Now, I ask you to keep this story just between us two. You understand that, right?", + "replies": [ + { + "text": "Absolutely. Walk with the Shadow.", + "nextPhraseID": "buceth_story_14" + }, + { + "text": "I promise not to tell anyone.", + "nextPhraseID": "buceth_story_14" + }, + { + "text": "No, I will report you to the guard.", + "nextPhraseID": "buceth_story_13" + } + ] + }, + { + "id": "buceth_story_13", + "message": "I urge you to rethink your reasoning. The way of the Shadow is the righteous way.", + "replies": [ + { + "text": "Very well. I promise not to tell anyone.", + "nextPhraseID": "buceth_story_14" + }, + { + "text": "No. Your crimes will be punished!", + "nextPhraseID": "buceth_fight_1" + } + ] + }, + { + "id": "buceth_fight_1", + "message": "Infidel, you will not defeat me! For the Shadow!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 50 + } + ], + "replies": [ + { + "text": "Fight!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "buceth_story_14", + "message": "Thank you, my friend.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 60 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_story_15" + } + ] + }, + { + "id": "buceth_story_15", + "message": "If you want to learn more about the Shadow, please visit the chapel custodian in Nor City. Tell them I sent you, and they will surely extend their gratitude towards you.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 60 + } + ] + }, + { + "id": "buceth_complete_1", + "message": "Welcome back my friend. May you bask in the glow of the Shadow.", + "replies": [ + { + "text": "N", + "nextPhraseID": "buceth_story_15" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_bwm_agent_1.json b/AndorsTrail/res/raw/conversationlist_bwm_agent_1.json new file mode 100644 index 000000000..681900de8 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_bwm_agent_1.json @@ -0,0 +1,187 @@ +[ + { + "id": "bwm_agent_1_start", + "message": "Oh, someone from the outside! Please, sir! You have to help us!", + "replies": [ + { + "text": "What is the matter?", + "nextPhraseID": "bwm_agent_1_2" + }, + { + "text": "'Us'? I only see you here.", + "nextPhraseID": "bwm_agent_1_3" + } + ] + }, + { + "id": "bwm_agent_1_2", + "message": "We urgently need help from someone outside!", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_1_4" + } + ] + }, + { + "id": "bwm_agent_1_3", + "message": "Very funny. I was sent by my settlement to get help from the outside.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_1_4" + } + ] + }, + { + "id": "bwm_agent_1_4", + "message": "The people of my settlement, the Blackwater mountain, are slowly being reduced in numbers by the monsters and the savage bandits.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 1 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_1_5" + } + ] + }, + { + "id": "bwm_agent_1_5", + "message": "The monsters are closing in on us, and we desperately need help by some able fighter.", + "replies": [ + { + "text": "I guess I could help, I have killed a few monsters here and there.", + "nextPhraseID": "bwm_agent_1_7" + }, + { + "text": "A fight, great. I'm in!", + "nextPhraseID": "bwm_agent_1_7" + }, + { + "text": "Will there be a reward for this?", + "nextPhraseID": "bwm_agent_1_6" + }, + { + "text": "Hm, no. I had better not get involved in this.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bwm_agent_1_6", + "message": "Reward? Hm, I was hoping you would help us for other reasons than a reward. But I guess my master will reward you sufficiently if you survive.", + "replies": [ + { + "text": "Alright, I'll do it.", + "nextPhraseID": "bwm_agent_1_7" + } + ] + }, + { + "id": "bwm_agent_1_7", + "message": "Excellent. The Blackwater settlement is some distance away. Frankly, I am amazed that I made it this far alive.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 5 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_1_8" + } + ] + }, + { + "id": "bwm_agent_1_8", + "message": "I must warn you though, that there are some nasty monsters on the way.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_1_9" + } + ] + }, + { + "id": "bwm_agent_1_9", + "message": "But I guess you seem strong enough.", + "replies": [ + { + "text": "Yeah, I can handle myself.", + "nextPhraseID": "bwm_agent_1_10" + }, + { + "text": "No problem.", + "nextPhraseID": "bwm_agent_1_10" + } + ] + }, + { + "id": "bwm_agent_1_10", + "message": "Good. First though, we must cross this mine to the other side.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_1_11" + } + ] + }, + { + "id": "bwm_agent_1_11", + "message": "The mine shaft over there *points* has collapsed, so I guess you won't make it through there.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_1_12" + } + ] + }, + { + "id": "bwm_agent_1_12", + "message": "You will have to go through the abandoned mine below. Beware that the mine is pitch-black, so you will have to navigate in there without any light.", + "replies": [ + { + "text": "What about you?", + "nextPhraseID": "bwm_agent_1_13" + }, + { + "text": "Ok, I'll go through the pitch-black mine.", + "nextPhraseID": "bwm_agent_1_14" + } + ] + }, + { + "id": "bwm_agent_1_13", + "message": "I'll try to crawl back through the mine shaft here. That's how I got here in the first place.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_1_14" + } + ] + }, + { + "id": "bwm_agent_1_14", + "message": "Let's meet at the other side of this mine shaft.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 10 + } + ], + "replies": [ + { + "text": "Ok. You crawl through the shaft, and I'll go below. See you on the other side!", + "nextPhraseID": "R" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_bwm_agent_2.json b/AndorsTrail/res/raw/conversationlist_bwm_agent_2.json new file mode 100644 index 000000000..c58e0a701 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_bwm_agent_2.json @@ -0,0 +1,161 @@ +[ + { + "id": "bwm_agent_2_start", + "replies": [ + { + "nextPhraseID": "bwm_agent_2_7", + "requires": { + "progress": "bwm_agent:20" + } + }, + { + "nextPhraseID": "bwm_agent_2_1" + } + ] + }, + { + "id": "bwm_agent_2_1", + "message": "Hello again. You made it through alive, well done!", + "replies": [ + { + "text": "These monsters, what are they?", + "nextPhraseID": "bwm_agent_2_2" + }, + { + "text": "You never told me it would be pitch-black down there. I almost got killed!", + "nextPhraseID": "bwm_agent_2_12" + }, + { + "text": "Yeah, piece of cake.", + "nextPhraseID": "bwm_agent_2_5" + } + ] + }, + { + "id": "bwm_agent_2_2", + "message": "The Gornauds? I have no idea where they come from, one day they just showed up here around the mountain.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_2_3" + } + ] + }, + { + "id": "bwm_agent_2_3", + "message": "Nasty beasts, they are.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_2_4" + } + ] + }, + { + "id": "bwm_agent_2_4", + "message": "Anyway, let's get going now. We are now one step closer to the Blackwater mountain settlement.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_2_5" + } + ] + }, + { + "id": "bwm_agent_2_5", + "message": "We should hurry now.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_2_6" + } + ] + }, + { + "id": "bwm_agent_2_6", + "message": "Once we exit this mine, it is very important that you go directly east from there. Do not travel to other places other than going east now!", + "replies": [ + { + "text": "Ok, I'll go east once I have exited the mine. Got it.", + "nextPhraseID": "bwm_agent_2_7" + }, + { + "text": "Why east? What else is there here?", + "nextPhraseID": "bwm_agent_2_8" + } + ] + }, + { + "id": "bwm_agent_2_7", + "message": "I'll wait for you by the steps up to the mountain pass. See you there!\n\nRemember, go east once you exit the mine.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 20 + } + ], + "replies": [ + { + "text": "Ok, see you there!", + "nextPhraseID": "R" + } + ] + }, + { + "id": "bwm_agent_2_8", + "message": "Oh, nothing. There are dangerous places here. You should definitely not head any other direction than east.", + "replies": [ + { + "text": "Sure, I'll head east.", + "nextPhraseID": "bwm_agent_2_7" + }, + { + "text": "Dangerous? Sounds like my kind of place!", + "nextPhraseID": "bwm_agent_2_10" + }, + { + "text": "Is there something you are not telling me?", + "nextPhraseID": "bwm_agent_2_11" + } + ] + }, + { + "id": "bwm_agent_2_10", + "message": "It would be your loss. Don't say I didn't warn you. Safest route would be to head east.", + "replies": [ + { + "text": "Sure, I'll head east.", + "nextPhraseID": "bwm_agent_2_7" + }, + { + "text": "Is there something you are not telling me?", + "nextPhraseID": "bwm_agent_2_11" + } + ] + }, + { + "id": "bwm_agent_2_11", + "message": "No no, just head east and I'll explain everything to you once we get to the Blackwater mountain settlement. ", + "replies": [ + { + "text": "Ok, I promise to head east once we exit the mine.", + "nextPhraseID": "bwm_agent_2_7" + }, + { + "text": "(Lie) Ok, I promise to head east once we exit the mine.", + "nextPhraseID": "bwm_agent_2_7" + } + ] + }, + { + "id": "bwm_agent_2_12", + "message": "Actually, I did tell you that it would be pitch-black down there. Good work navigating through there!", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_2_4" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_bwm_agent_3.json b/AndorsTrail/res/raw/conversationlist_bwm_agent_3.json new file mode 100644 index 000000000..3b34eb996 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_bwm_agent_3.json @@ -0,0 +1,112 @@ +[ + { + "id": "bwm_agent_3_start", + "replies": [ + { + "nextPhraseID": "bwm_agent_3_4", + "requires": { + "progress": "bwm_agent:30" + } + }, + { + "nextPhraseID": "bwm_agent_3_1" + } + ] + }, + { + "id": "bwm_agent_3_1", + "message": "Hello. You made it here, good.", + "replies": [ + { + "text": "I talked to some people in the village Prim. They had some interesting things to say about Blackwater mountain.", + "nextPhraseID": "bwm_agent_3_5", + "requires": { + "progress": "bwm_agent:25" + } + }, + { + "text": "I went east, as you said.", + "nextPhraseID": "bwm_agent_3_2" + } + ] + }, + { + "id": "bwm_agent_3_2", + "message": "Good. Now let's get up this mountain. I will meet you halfway up there.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_3_3" + } + ] + }, + { + "id": "bwm_agent_3_3", + "message": "This path leads up to the Blackwater mountain settlement. Follow this path and we will talk later.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_3_4" + } + ] + }, + { + "id": "bwm_agent_3_4", + "message": "Beware of the nasty monsters, they can really cause some harm!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 30 + } + ], + "replies": [ + { + "text": "Ok, I will follow this path up the mountain.", + "nextPhraseID": "R" + }, + { + "text": "Great, more monsters. Just what I needed.", + "nextPhraseID": "R" + } + ] + }, + { + "id": "bwm_agent_3_5", + "message": "Do not listen to their lies. They poison your thoughts and would not hesitate to stab you in the back once they get the chance.", + "replies": [ + { + "text": "What have they done?", + "nextPhraseID": "bwm_agent_3_6" + }, + { + "text": "Yes, they do seem a bit shady.", + "nextPhraseID": "bwm_agent_3_7" + } + ] + }, + { + "id": "bwm_agent_3_6", + "message": "I will not talk of them now. Follow me up to the Blackwater mountain settlement and we will talk more there.", + "replies": [ + { + "text": "Sure.", + "nextPhraseID": "bwm_agent_3_2" + }, + { + "text": "I'm keeping my eye on you. But I'll agree to your terms for now.", + "nextPhraseID": "bwm_agent_3_2" + } + ] + }, + { + "id": "bwm_agent_3_7", + "message": "Indeed they do.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_3_6" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_bwm_agent_4.json b/AndorsTrail/res/raw/conversationlist_bwm_agent_4.json new file mode 100644 index 000000000..62a360132 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_bwm_agent_4.json @@ -0,0 +1,105 @@ +[ + { + "id": "bwm_agent_4_start", + "replies": [ + { + "nextPhraseID": "bwm_agent_4_5", + "requires": { + "progress": "bwm_agent:40" + } + }, + { + "nextPhraseID": "bwm_agent_4_1" + } + ] + }, + { + "id": "bwm_agent_4_1", + "message": "Hello again. Well done defeating the Gornaud beasts.", + "replies": [ + { + "text": "Their attacks really hurt. What are these things?", + "nextPhraseID": "bwm_agent_4_6" + }, + { + "text": "How come they do not attack you?", + "nextPhraseID": "bwm_agent_4_3" + }, + { + "text": "Yeah, no problem. Just another trail of dead bodies behind me.", + "nextPhraseID": "bwm_agent_4_2" + } + ] + }, + { + "id": "bwm_agent_4_2", + "message": "Careful what you wish for, for it may come true.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_4_4" + } + ] + }, + { + "id": "bwm_agent_4_3", + "message": "Me? There must be something about me that scares them. I have no idea what it would be, some scent perhaps?", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_4_4" + } + ] + }, + { + "id": "bwm_agent_4_4", + "message": "Anyway, we should get going. I'll run ahead of you up the mountain.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_4_5" + } + ] + }, + { + "id": "bwm_agent_4_5", + "message": "Meet me further up the mountain, and we will talk more.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 40 + } + ], + "replies": [ + { + "text": "Ok, see you there.", + "nextPhraseID": "R" + } + ] + }, + { + "id": "bwm_agent_4_6", + "message": "I do not know where they come from. All I know is that they started to appear one day, blocking the path up the mountain.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_4_7" + } + ] + }, + { + "id": "bwm_agent_4_7", + "message": "And, their attacks are tough. Once one of them gets a hold of you, the other ones seem really eager to hit you too.", + "replies": [ + { + "text": "Nothing I can't handle.", + "nextPhraseID": "bwm_agent_4_4" + }, + { + "text": "How come they do not attack you?", + "nextPhraseID": "bwm_agent_4_3" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_bwm_agent_5.json b/AndorsTrail/res/raw/conversationlist_bwm_agent_5.json new file mode 100644 index 000000000..0f7cb51ae --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_bwm_agent_5.json @@ -0,0 +1,83 @@ +[ + { + "id": "bwm_agent_5_start", + "replies": [ + { + "nextPhraseID": "bwm_agent_5_6", + "requires": { + "progress": "bwm_agent:50" + } + }, + { + "nextPhraseID": "bwm_agent_5_1" + } + ] + }, + { + "id": "bwm_agent_5_1", + "message": "Hello again. Well done getting through those monsters.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_5_2" + } + ] + }, + { + "id": "bwm_agent_5_2", + "message": "We are almost there now. Just a little bit more.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_5_3" + } + ] + }, + { + "id": "bwm_agent_5_3", + "message": "We should hurry this last bit, my settlement is close now.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_5_4" + } + ] + }, + { + "id": "bwm_agent_5_4", + "message": "I hope you can manage the cold out here.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_5_5" + } + ] + }, + { + "id": "bwm_agent_5_5", + "message": "Also, stay away from the wyrms. They have a really nasty bite.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_5_6" + } + ] + }, + { + "id": "bwm_agent_5_6", + "message": "Now hurry. We are almost there. Follow the snowy path to the north, and you should reach the settlement in no time.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 50 + } + ], + "replies": [ + { + "text": "Ok, I will follow the path to the north, further up the mountain.", + "nextPhraseID": "R" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_bwm_agent_6.json b/AndorsTrail/res/raw/conversationlist_bwm_agent_6.json new file mode 100644 index 000000000..78f15c117 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_bwm_agent_6.json @@ -0,0 +1,111 @@ +[ + { + "id": "bwm_agent_6_start", + "replies": [ + { + "nextPhraseID": "bwm_agent_6_3", + "requires": { + "progress": "bwm_agent:60" + } + }, + { + "nextPhraseID": "bwm_agent_6_0" + } + ] + }, + { + "id": "bwm_agent_6_1", + "message": "I am glad you followed me up the mountain to help us out.", + "replies": [ + { + "text": "How did you get up here so fast?", + "nextPhraseID": "bwm_agent_6_6" + }, + { + "text": "Those were some tough fights, but I can manage.", + "nextPhraseID": "bwm_agent_6_5" + }, + { + "text": "Are we there yet?", + "nextPhraseID": "bwm_agent_6_2" + } + ] + }, + { + "id": "bwm_agent_6_2", + "message": "Oh yes. In fact, our Blackwater mountain settlement is just down these stairs.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_6_4" + } + ] + }, + { + "id": "bwm_agent_6_3", + "message": "Go ahead, I will meet you inside.", + "replies": [ + { + "text": "Ok, see you inside.", + "nextPhraseID": "R" + } + ] + }, + { + "id": "bwm_agent_6_0", + "message": "We meet again. Well done fighting your way up here.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_6_1" + } + ] + }, + { + "id": "bwm_agent_6_4", + "message": "You should go down these stairs and talk to our battle master, Harlenn. He can usually be found at the third level down.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 60 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_6_3" + } + ] + }, + { + "id": "bwm_agent_6_5", + "message": "Yes, you seem like an able fighter.", + "replies": [ + { + "text": "Are we there yet?", + "nextPhraseID": "bwm_agent_6_2" + } + ] + }, + { + "id": "bwm_agent_6_6", + "message": "I learned some shortcuts up and down the mountain a while back. Nothing strange about that right?", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_6_7" + } + ] + }, + { + "id": "bwm_agent_6_7", + "message": "Anyway, we are right at the settlement now. In fact, our Blackwater mountain settlement is just down these stairs.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bwm_agent_6_4" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_crossglen.json b/AndorsTrail/res/raw/conversationlist_crossglen.json new file mode 100644 index 000000000..2c3a32fb5 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_crossglen.json @@ -0,0 +1,140 @@ +[ + { + "id": "audir1", + "message": "Welcome to my shop!\n\nPlease browse my selection of fine wares.", + "replies": [ + { + "text": "Please show me your wares.", + "nextPhraseID": "S" + } + ] + }, + { + "id": "arambold1", + "message": "Oh my, will I ever get any sleep with those drunkards singing like that?\n\nSomeone should do something about them.", + "replies": [ + { + "text": "Can I rest here?", + "nextPhraseID": "arambold2" + }, + { + "text": "Do you have anything to trade?", + "nextPhraseID": "S" + } + ] + }, + { + "id": "arambold2", + "message": "Sure kid, you may rest here.\n\nPick any bed you want.", + "replies": [ + { + "text": "Thanks, bye", + "nextPhraseID": "X" + } + ] + }, + { + "id": "drunk1", + "message": "Drink drink drink, drink some more.\nDrink drink drink 'til you're on the floor.\n\nHey kid, wanna join us in our drinking game?", + "replies": [ + { + "text": "No thanks.", + "nextPhraseID": "X" + }, + { + "text": "Maybe some other time.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "mara_default", + "message": "Never mind those drunken fellas, they're always causing trouble.\n\nWant something to eat?", + "replies": [ + { + "text": "Do you have anything to trade?", + "nextPhraseID": "S" + } + ] + }, + { + "id": "mara1", + "replies": [ + { + "nextPhraseID": "mara_thanks", + "requires": { + "progress": "odair:100" + } + }, + { + "nextPhraseID": "mara_default" + } + ] + }, + { + "id": "mara_thanks", + "message": "I heard you helped Odair clean out that old supply cave. Thanks a lot, we'll start using it soon.", + "replies": [ + { + "text": "It was my pleasure.", + "nextPhraseID": "mara_default" + } + ] + }, + { + "id": "farm1", + "message": "Please do not disturb me, I have work to do.", + "replies": [ + { + "text": "Have you seen my brother Andor?", + "nextPhraseID": "farm_andor" + } + ] + }, + { + "id": "farm2", + "message": "What?! Can't you see I'm busy? Go bother someone else.", + "replies": [ + { + "text": "Have you seen my brother Andor?", + "nextPhraseID": "farm_andor" + } + ] + }, + { + "id": "farm_andor", + "message": "Andor? No, I haven't seen him around lately." + }, + { + "id": "snakemaster", + "message": "Well well, what have we here? A visitor, how nice. I'm impressed you got this far through all my minions.\n\nNow prepare to die, puny creature.", + "replies": [ + { + "text": "Great, I have been waiting for a fight!", + "nextPhraseID": "F" + }, + { + "text": "Let's see who dies here.", + "nextPhraseID": "F" + }, + { + "text": "Please don't hurt me!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "haunt", + "message": "Oh mortal, free me from this cursed world!", + "replies": [ + { + "text": "Oh, I'll free you from it alright.", + "nextPhraseID": "F" + }, + { + "text": "You mean, by killing you?", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_crossglen_gruil.json b/AndorsTrail/res/raw/conversationlist_crossglen_gruil.json new file mode 100644 index 000000000..29c66d82f --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_crossglen_gruil.json @@ -0,0 +1,118 @@ +[ + { + "id": "gruil1", + "message": "Psst, hey.\n\nWanna trade?", + "replies": [ + { + "text": "Sure, let's trade.", + "nextPhraseID": "S" + }, + { + "text": "I heard that you talked to my brother a while ago.", + "nextPhraseID": "gruil_select", + "requires": { + "progress": "andor:10" + } + } + ] + }, + { + "id": "gruil_select", + "replies": [ + { + "nextPhraseID": "gruil_return", + "requires": { + "progress": "andor:30" + } + }, + { + "nextPhraseID": "gruil2" + } + ] + }, + { + "id": "gruil2", + "message": "Your brother? Oh you mean Andor? I might know something, but that information will cost you. Bring me a poison gland from one of those poisonous snakes and maybe I'll tell you.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 20 + } + ], + "replies": [ + { + "text": "Here, I have a poison gland for you.", + "nextPhraseID": "gruil_complete", + "requires": { + "item": { + "itemID": "gland", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Ok, I'll bring one.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "gruil_complete", + "message": "Thanks a lot kid. This will do just fine.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "gruil_andor1" + } + ] + }, + { + "id": "gruil_return", + "message": "Look kid, I already told you.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gruil_andor1" + } + ] + }, + { + "id": "gruil_andor1", + "message": "I talked to him yesterday. He asked if I knew someone called Umar or something like that. I have no idea who he was talking about.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gruil_andor2" + } + ] + }, + { + "id": "gruil_andor2", + "message": "He seemed really upset about something and left in a hurry. Something about the Thieves' Guild in Fallhaven.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gruil_andor3" + } + ] + }, + { + "id": "gruil_andor3", + "message": "That's all I know. Maybe you should ask around in Fallhaven. Look for my friend Gaela, he probably knows more.", + "replies": [ + { + "text": "Thanks, bye.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_crossglen_leonid.json b/AndorsTrail/res/raw/conversationlist_crossglen_leonid.json new file mode 100644 index 000000000..658f5855f --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_crossglen_leonid.json @@ -0,0 +1,201 @@ +[ + { + "id": "leonid1", + "message": "Hello kid. You're Mikhail's son aren't you? With that brother of yours.\n\nI'm Leonid, steward of Crossglen village.", + "replies": [ + { + "text": "Have you seen my brother Andor?", + "nextPhraseID": "leonid_andor" + }, + { + "text": "What can you tell me about Crossglen?", + "nextPhraseID": "leonid_crossglen" + }, + { + "text": "Never mind, see you later.", + "nextPhraseID": "leonid_bye" + } + ] + }, + { + "id": "leonid_andor", + "message": "Your brother? No, I haven't seen him here today. I think I saw him in here yesterday talking to Gruil. Maybe he knows more?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 10 + } + ], + "replies": [ + { + "text": "Thanks, I'll go talk to Gruil. There was something more I wanted to talk about.", + "nextPhraseID": "leonid_continue" + }, + { + "text": "Thanks, I'll go talk to Gruil.", + "nextPhraseID": "leonid_bye" + } + ] + }, + { + "id": "leonid_continue", + "message": "Anything else I can help you with?", + "replies": [ + { + "text": "Have you seen my brother Andor?", + "nextPhraseID": "leonid_andor" + }, + { + "text": "What can you tell me about Crossglen?", + "nextPhraseID": "leonid_crossglen" + }, + { + "text": "Never mind, see you later.", + "nextPhraseID": "leonid_bye" + } + ] + }, + { + "id": "leonid_crossglen", + "message": "As you know, this is Crossglen village. Mostly a farming community.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen1" + } + ] + }, + { + "id": "leonid_crossglen1", + "message": "We have Audir with his smithy to the southwest, Leta and her husband's cabin to the west, this town hall here and your father's cabin to the northwest.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen2" + } + ] + }, + { + "id": "leonid_crossglen2", + "message": "That's pretty much it. We try to live a peaceful life.", + "replies": [ + { + "text": "Has there been any recent activity in the village?", + "nextPhraseID": "leonid_crossglen3" + }, + { + "text": "Let's go back to the other things we talked about.", + "nextPhraseID": "leonid_continue" + } + ] + }, + { + "id": "leonid_crossglen3", + "message": "There were some recent disturbances some weeks ago that you may have noticed. Some villagers got into a fight over the new decree from Lord Geomyr.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen4" + } + ] + }, + { + "id": "leonid_crossglen4", + "message": "Lord Geomyr issued a statement regarding the unlawful use of Bonemeal as healing substance. Some villagers argued that we should oppose Lord Geomyr's word and still use it.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen4_1" + } + ] + }, + { + "id": "leonid_crossglen4_1", + "message": "Tharal, our priest, was particularly upset and suggested we do something about Lord Geomyr.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen5" + } + ] + }, + { + "id": "leonid_crossglen5", + "message": "Other villagers argued that we should follow Lord Geomyr's decree.\n\nPersonally, I haven't decided what my thoughts are.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen6" + } + ] + }, + { + "id": "leonid_crossglen6", + "message": "On one hand, Lord Geomyr supports Crossglen with a lot of protection. *points to the soldiers in the hall*", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen7" + } + ] + }, + { + "id": "leonid_crossglen7", + "message": "But on the other hand, the tax and the recent changes of what's allowed are really taking a toll on Crossglen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen8" + } + ] + }, + { + "id": "leonid_crossglen8", + "message": "Someone should go to Castle Geomyr and talk to the steward about our situation here in Crossglen.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "crossglen", + "value": 1 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "leonid_crossglen9" + } + ] + }, + { + "id": "leonid_crossglen9", + "message": "In the meantime, we've banned all use of Bonemeal as a healing substance.", + "replies": [ + { + "text": "Thank you for the information. There was something more I wanted to ask you.", + "nextPhraseID": "leonid_continue" + }, + { + "text": "Thank you for the information. Bye.", + "nextPhraseID": "leonid_bye" + } + ] + }, + { + "id": "leonid_bye", + "message": "Shadow be with you.", + "replies": [ + { + "text": "Shadow be with you.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_crossglen_leta.json b/AndorsTrail/res/raw/conversationlist_crossglen_leta.json new file mode 100644 index 000000000..16fa7f6ad --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_crossglen_leta.json @@ -0,0 +1,110 @@ +[ + { + "id": "leta1", + "message": "Hey, this is my house, get out of here!", + "replies": [ + { + "text": "But I was just...", + "nextPhraseID": "leta2" + }, + { + "text": "What about your husband Oromir?", + "nextPhraseID": "leta_oromir_select" + } + ] + }, + { + "id": "leta2", + "message": "Beat it kid, get out of my house!", + "replies": [ + { + "text": "What about your husband Oromir?", + "nextPhraseID": "leta_oromir_select" + } + ] + }, + { + "id": "leta_oromir_select", + "replies": [ + { + "nextPhraseID": "leta_oromir_complete2", + "requires": { + "progress": "leta:100" + } + }, + { + "nextPhraseID": "leta_oromir1" + } + ] + }, + { + "id": "leta_oromir1", + "message": "Do you know anything about my husband? He should be here helping me with the farm today, but he seems to be missing as usual.\nSigh.", + "replies": [ + { + "text": "I have no idea.", + "nextPhraseID": "leta_oromir2" + }, + { + "text": "Yes, I found him. He is hiding among some trees to the east.", + "nextPhraseID": "leta_oromir_complete", + "requires": { + "progress": "leta:20" + } + } + ] + }, + { + "id": "leta_oromir2", + "message": "If you see him, tell him to hurry back here and help me with the housework.\nNow get out of here!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "leta", + "value": 10 + } + ] + }, + { + "id": "leta_oromir_complete", + "message": "Hiding is he? That's not surprising. I'll go let him know who's the boss around here.\nThanks for letting me know though.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "leta", + "value": 100 + } + ] + }, + { + "id": "leta_oromir_complete2", + "message": "Thanks for telling me about Oromir earlier. I will go get him in just a minute." + }, + { + "id": "oromir1", + "message": "Oh you startled me.\nHello.", + "replies": [ + { + "text": "Hello", + "nextPhraseID": "oromir2" + } + ] + }, + { + "id": "oromir2", + "message": "I'm hiding here from my wife Leta. She is always getting angry at me for not helping out on the farm. Please don't tell her that I'm here.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "leta", + "value": 20 + } + ], + "replies": [ + { + "text": "Ok.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_crossglen_odair.json b/AndorsTrail/res/raw/conversationlist_crossglen_odair.json new file mode 100644 index 000000000..5ee2cf45b --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_crossglen_odair.json @@ -0,0 +1,161 @@ +[ + { + "id": "odair1", + "message": "Oh, it's you. You with that brother of yours. Always causing trouble.", + "replies": [ + { + "text": "N", + "nextPhraseID": "odair_select" + } + ] + }, + { + "id": "odair_select", + "replies": [ + { + "nextPhraseID": "odair_complete2", + "requires": { + "progress": "odair:100" + } + }, + { + "nextPhraseID": "odair_continue", + "requires": { + "progress": "odair:10" + } + }, + { + "nextPhraseID": "odair2" + } + ] + }, + { + "id": "odair2", + "message": "Hmm, maybe you could be of use to me. Do you think you could help me with a small task?", + "replies": [ + { + "text": "Tell me more about this task.", + "nextPhraseID": "odair3" + }, + { + "text": "Sure, if there is anything I can gain from it.", + "nextPhraseID": "odair3" + } + ] + }, + { + "id": "odair3", + "message": "I recently went in to that cave over there *points west*, to check on our supplies. But apparently, the cave has been infested with rats.", + "replies": [ + { + "text": "N", + "nextPhraseID": "odair4" + } + ] + }, + { + "id": "odair4", + "message": "In particular, I saw one rat that was larger than the other rats. Do you think you have what it takes to help eliminate them?", + "replies": [ + { + "text": "Sure, I'll help you so that Crossglen can use the supply cave again.", + "nextPhraseID": "odair5" + }, + { + "text": "Sure, I'll help you. But only because there might be some gain for me in this.", + "nextPhraseID": "odair5" + }, + { + "text": "No thanks", + "nextPhraseID": "odair_cowards" + } + ] + }, + { + "id": "odair5", + "message": "I need you to get into that cave and kill the large rat, that way maybe we can stop the rat infestation in the cave and start using it as our old supply cave again.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "odair", + "value": 10 + } + ], + "replies": [ + { + "text": "Ok", + "nextPhraseID": "X" + }, + { + "text": "On second thought, I don't think I will help you after all.", + "nextPhraseID": "odair_cowards" + } + ] + }, + { + "id": "odair_cowards", + "message": "I didn't think so either. You and that brother of yours always were cowards.", + "replies": [ + { + "text": "Bye", + "nextPhraseID": "X" + } + ] + }, + { + "id": "odair_continue", + "message": "Did you kill that large rat in the cave west of here?", + "replies": [ + { + "text": "Yes, I have killed the large rat.", + "nextPhraseID": "odair_complete", + "requires": { + "item": { + "itemID": "tail_caverat", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "What was I supposed to do again?", + "nextPhraseID": "odair5" + }, + { + "text": "No, not yet.", + "nextPhraseID": "odair_cowards" + } + ] + }, + { + "id": "odair_complete", + "message": "Thanks a lot for your help kid! Maybe you and that brother of yours aren't as cowardly as I thought. Here, take these coins for your help.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "odair", + "value": 100 + }, + { + "rewardType": 1, + "rewardID": "gold20" + } + ], + "replies": [ + { + "text": "Thanks", + "nextPhraseID": "X" + } + ] + }, + { + "id": "odair_complete2", + "message": "Thanks a lot for your help earlier. Now we might start using that cave as our old supply cave again.", + "replies": [ + { + "text": "Bye", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_crossglen_tharal.json b/AndorsTrail/res/raw/conversationlist_crossglen_tharal.json new file mode 100644 index 000000000..9cafe39b1 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_crossglen_tharal.json @@ -0,0 +1,138 @@ +[ + { + "id": "tharal1", + "message": "Walk in the glow of the Shadow, my child.", + "replies": [ + { + "text": "Do you have anything to trade?", + "nextPhraseID": "S" + }, + { + "text": "What can you tell me about Bonemeal?", + "nextPhraseID": "tharal_bonemeal_select", + "requires": { + "progress": "bonemeal:10" + } + } + ] + }, + { + "id": "tharal_bonemeal_select", + "replies": [ + { + "nextPhraseID": "tharal_bonemeal4", + "requires": { + "progress": "bonemeal:30" + } + }, + { + "nextPhraseID": "tharal_bonemeal1" + } + ] + }, + { + "id": "tharal_bonemeal1", + "message": "Bonemeal? We shouldn't talk about that. Lord Geomyr issued a decree. It's not allowed anymore.", + "replies": [ + { + "text": "Please?", + "nextPhraseID": "tharal_bonemeal2_1" + } + ] + }, + { + "id": "tharal_bonemeal2_1", + "message": "No, we really shouldn't talk about that.", + "replies": [ + { + "text": "Oh come on.", + "nextPhraseID": "tharal_bonemeal2" + } + ] + }, + { + "id": "tharal_bonemeal2", + "message": "Well if you really are that persistent. Bring me 5 insect wings that I can use for making potions and maybe we can talk more.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 20 + } + ], + "replies": [ + { + "text": "Here, I have the insect wings.", + "nextPhraseID": "tharal_bonemeal3", + "requires": { + "item": { + "itemID": "insectwing", + "quantity": 5, + "requireType": 0 + } + } + }, + { + "text": "Ok, I'll bring them.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "tharal_bonemeal3", + "message": "Thanks kid. I knew I could count on you.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "tharal_bonemeal4" + } + ] + }, + { + "id": "tharal_bonemeal4", + "message": "Oh yes, bonemeal. Mixed with the right components it can be one of the most effective healing agents around.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tharal_bonemeal5" + } + ] + }, + { + "id": "tharal_bonemeal5", + "message": "We used to use it extensively before. But now that bastard Lord Geomyr has banned all use of it.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tharal_bonemeal6" + } + ] + }, + { + "id": "tharal_bonemeal6", + "message": "How am I supposed to heal people now? Using regular healing potions? Bah, they're so ineffective.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tharal_bonemeal7" + } + ] + }, + { + "id": "tharal_bonemeal7", + "message": "I know someone that still has a supply of Bonemeal if you are interested. Go talk to Thoronir, a fellow priest in Fallhaven. Tell him my password 'Glow of the Shadow'.", + "replies": [ + { + "text": "Thanks, bye", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_crossroads_1.json b/AndorsTrail/res/raw/conversationlist_crossroads_1.json new file mode 100644 index 000000000..a881e5ba8 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_crossroads_1.json @@ -0,0 +1,243 @@ +[ + { + "id": "fanamor", + "message": "Yikes! You scared me there.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fanamor_1" + } + ] + }, + { + "id": "fanamor_1", + "message": "I was just strolling through these woods .. eh .. killing Anklebiters.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fanamor_2" + } + ] + }, + { + "id": "fanamor_2", + "message": "Yes. Killing them was what I was doing. Not running away from them. No, killing them.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fanamor_3" + } + ] + }, + { + "id": "fanamor_3", + "message": ".. sigh ..", + "replies": [ + { + "text": "N", + "nextPhraseID": "fanamor_4" + } + ] + }, + { + "id": "fanamor_4", + "message": "Oh, who am I kidding. Ok, I was trying to get through the forest here and got ambushed by these anklebiters.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fanamor_5" + } + ] + }, + { + "id": "fanamor_5", + "message": "I won't leave until nightfall, when they can't see me anymore and I might be able to sneak back.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fanamor_6" + } + ] + }, + { + "id": "fanamor_6", + "message": "This is my hiding spot! Now leave me." + }, + { + "id": "crossroads_guard", + "replies": [ + { + "nextPhraseID": "crossroads_guard_r_1", + "requires": { + "progress": "farrik:90" + } + }, + { + "nextPhraseID": "crossroads_guard_1" + } + ] + }, + { + "id": "crossroads_guard_r_1", + "message": "Did you hear? Some thieves down in Fallhaven were planning an escape for one of the imprisoned thieves in the prison there.", + "replies": [ + { + "text": "N", + "nextPhraseID": "crossroads_guard_r_2" + } + ] + }, + { + "id": "crossroads_guard_r_2", + "message": "Luckily, someone got wind of it and told the guard captain.", + "replies": [ + { + "text": "N", + "nextPhraseID": "crossroads_guard_r_3" + } + ] + }, + { + "id": "crossroads_guard_r_3", + "message": "It's good to know that there are at least a few decent people still around." + }, + { + "id": "crossroads_guard_1", + "message": "Aren't you a bit young to be travelling around here all by yourself?", + "replies": [ + { + "text": "N", + "nextPhraseID": "crossroads_guard_2" + } + ] + }, + { + "id": "crossroads_guard_2", + "message": "I sure hope you are not another one of those types trying to sell me your cheap junk.", + "replies": [ + { + "text": "N", + "nextPhraseID": "crossroads_guard_3" + } + ] + }, + { + "id": "crossroads_guard_3", + "message": "Go away, kid." + }, + { + "id": "cr_loneford_st_1", + "message": "Didn't you hear? They have all gotten ill.", + "replies": [ + { + "text": "N", + "nextPhraseID": "cr_loneford_st_2" + } + ] + }, + { + "id": "cr_loneford_st_2", + "message": "It all started a few days ago. As the story goes, someone found one of the farmers passed out in one of the fields, completely white faced and shivering.", + "replies": [ + { + "text": "N", + "nextPhraseID": "cr_loneford_st_3" + } + ] + }, + { + "id": "cr_loneford_st_3", + "message": "A few days later, the same symptoms started to show on a lot more people.", + "replies": [ + { + "text": "N", + "nextPhraseID": "cr_loneford_st_4" + } + ] + }, + { + "id": "cr_loneford_st_4", + "message": "Then, all people showed the symptoms in one way or another.", + "replies": [ + { + "text": "N", + "nextPhraseID": "cr_loneford_st_5" + } + ] + }, + { + "id": "cr_loneford_st_5", + "message": "Some old people even died.", + "replies": [ + { + "text": "N", + "nextPhraseID": "cr_loneford_st_6" + } + ] + }, + { + "id": "cr_loneford_st_6", + "message": "Everyone started investigating what could be the cause. Currently, the cause is still unknown.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "cr_loneford_st_7" + } + ] + }, + { + "id": "cr_loneford_st_7", + "message": "Luckily, now Feygard has sent patrols up there to help guard the village at least. The people are still suffering though.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 11 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "cr_loneford_st_8" + } + ] + }, + { + "id": "cr_loneford_st_8", + "message": "Me, I am certain that this is the work of those savages from Nor City somehow. They probably sabotaged something up there.", + "replies": [ + { + "text": "N", + "nextPhraseID": "cr_loneford_st_9" + } + ] + }, + { + "id": "cr_loneford_st_9", + "message": "What do they call it, the 'Shadow'? They are willing to do almost anything to upset the law and order around here.", + "replies": [ + { + "text": "N", + "nextPhraseID": "cr_loneford_st_10" + } + ] + }, + { + "id": "cr_loneford_st_10", + "message": "I tell you. Savages - that's what they are. No respect for the laws or authority.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 21 + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_crossroads_2.json b/AndorsTrail/res/raw/conversationlist_crossroads_2.json new file mode 100644 index 000000000..d02fe3ecb --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_crossroads_2.json @@ -0,0 +1,136 @@ +[ + { + "id": "gallain", + "message": "Welcome to the Crossroads guardhouse. I am Gallain, the proprietor of this place.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gallain_1" + } + ] + }, + { + "id": "gallain_1", + "message": "How may I help you?", + "replies": [ + { + "text": "Do you have anything to eat around here?", + "nextPhraseID": "gallain_trade_1" + }, + { + "text": "Is there any place I can rest here?", + "nextPhraseID": "gallain_rest_1" + }, + { + "text": "What is this place?", + "nextPhraseID": "gallain_cr_1" + } + ] + }, + { + "id": "gallain_cr_1", + "message": "As I said, this is the Crossroads guardhouse. The guards from Feygard are using this place as a place to rest and gear up.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gallain_cr_2" + } + ] + }, + { + "id": "gallain_cr_2", + "message": "Because of this, it is also a safe haven for merchants travelling through here. We get a lot of those.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gallain_1" + } + ] + }, + { + "id": "gallain_trade_1", + "message": "Here, have a look.", + "replies": [ + { + "text": "Trade", + "nextPhraseID": "S" + } + ] + }, + { + "id": "gallain_rest_1", + "message": "The guards have set up some beds downstairs. Go check with them.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gallain_1" + } + ] + }, + { + "id": "celdar", + "message": "And who might you be? Come to sell me one of those trinkets that you people sell, eh?", + "replies": [ + { + "text": "N", + "nextPhraseID": "celdar_1" + } + ] + }, + { + "id": "celdar_1", + "message": "No, let me guess - you want to know if I have any items to trade?", + "replies": [ + { + "text": "N", + "nextPhraseID": "celdar_2" + } + ] + }, + { + "id": "celdar_2", + "message": "Let me tell you something son. I do not want to buy anything from you, nor do I want to sell you anything. I just want to be left alone here, now that I have made it all the way to this safe haven.", + "replies": [ + { + "text": "N", + "nextPhraseID": "celdar_3" + } + ] + }, + { + "id": "celdar_3", + "message": "I have travelled all the way from my home town of Sullengard, and on my way to Brimhaven, I have stopped at this place to get a break from all the commoners that always bother me with their trinkets and whatnots.", + "replies": [ + { + "text": "N", + "nextPhraseID": "celdar_4" + } + ] + }, + { + "id": "celdar_4", + "message": "So, if you will excuse me, I really need my well deserved rest here. Without you bothering me.", + "replies": [ + { + "text": "Ok, I will leave.", + "nextPhraseID": "X" + }, + { + "text": "Wow, you're the friendly type aren't you?", + "nextPhraseID": "celdar_5" + }, + { + "text": "I should put my sword through you for talking like that.", + "nextPhraseID": "celdar_5" + } + ] + }, + { + "id": "celdar_5", + "message": "Are you still around? Did you not listen to what I said?" + }, + { + "id": "crossroads_guest", + "message": "Did you hear about what happened up in Loneford? The guards seem like a bunch of angry bees about it." + } +] diff --git a/AndorsTrail/res/raw/conversationlist_crossroads_3.json b/AndorsTrail/res/raw/conversationlist_crossroads_3.json new file mode 100644 index 000000000..1eb803103 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_crossroads_3.json @@ -0,0 +1,236 @@ +[ + { + "id": "crossroads_sleepguard", + "replies": [ + { + "nextPhraseID": "crossroads_sleepguard_2", + "requires": { + "progress": "nondisplay:17" + } + }, + { + "nextPhraseID": "crossroads_sleepguard_1" + } + ] + }, + { + "id": "crossroads_sleepguard_1", + "message": "Hello there. Can I help you?", + "replies": [ + { + "text": "No. Goodbye.", + "nextPhraseID": "X" + }, + { + "text": "Mind if I use one of the beds over there?", + "nextPhraseID": "crossroads_sleepguard_3" + } + ] + }, + { + "id": "crossroads_sleepguard_2", + "message": "Hello again. I hope the bed is comfortable enough. Use it as much as you like." + }, + { + "id": "crossroads_sleepguard_3", + "replies": [ + { + "nextPhraseID": "crossroads_sleepguard_5", + "requires": { + "progress": "farrik:90" + } + }, + { + "nextPhraseID": "crossroads_sleepguard_4" + } + ] + }, + { + "id": "crossroads_sleepguard_4", + "message": "No, sorry. These beds are for guards and allies of Feygard only." + }, + { + "id": "crossroads_sleepguard_5", + "message": "Say, aren't you that kid that helped the guards down in Fallhaven? With the thieves that were planning an escape?", + "replies": [ + { + "text": "Yes, I helped the guards in the prison find out about some plans that the thieves had.", + "nextPhraseID": "crossroads_sleepguard_6" + } + ] + }, + { + "id": "crossroads_sleepguard_6", + "message": "I knew I had heard about you somewhere. You are always welcome by us guards. You can use that second bed over there to the left if you need to rest.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nondisplay", + "value": 17 + } + ] + }, + { + "id": "crossroads_backguard", + "message": "Uh, hello.", + "replies": [ + { + "text": "Hello. What's back there?", + "nextPhraseID": "crossroads_backguard_1" + } + ] + }, + { + "id": "crossroads_backguard_1", + "message": "Back there? Oh, nothing.", + "replies": [ + { + "text": "Ok, never mind then.", + "nextPhraseID": "X" + }, + { + "text": "But there's a hole in the wall there. Where does it lead?", + "nextPhraseID": "crossroads_backguard_2" + } + ] + }, + { + "id": "crossroads_backguard_2", + "message": "Lead? Oh nowhere. Nothing back there at all.", + "replies": [ + { + "text": "Ok, never mind then.", + "nextPhraseID": "X" + }, + { + "text": "There's something you are not telling me.", + "nextPhraseID": "crossroads_backguard_3" + } + ] + }, + { + "id": "crossroads_backguard_3", + "message": "Oh no, no. Nothing interesting here. Move along now.", + "replies": [ + { + "text": "Ok, never mind then.", + "nextPhraseID": "X" + }, + { + "text": "How about I pay you 100 gold to move out of the way?", + "nextPhraseID": "crossroads_backguard_4" + } + ] + }, + { + "id": "crossroads_backguard_4", + "message": "You would do that? Hm, let me think.", + "replies": [ + { + "text": "N", + "nextPhraseID": "crossroads_backguard_5" + } + ] + }, + { + "id": "crossroads_backguard_5", + "message": "No.", + "replies": [ + { + "text": "Ok, never mind then.", + "nextPhraseID": "X" + }, + { + "text": "200 gold then?", + "nextPhraseID": "crossroads_backguard_6" + } + ] + }, + { + "id": "crossroads_backguard_6", + "message": "No.", + "replies": [ + { + "text": "Ok, never mind then.", + "nextPhraseID": "X" + }, + { + "text": "400 gold then?", + "nextPhraseID": "crossroads_backguard_7" + } + ] + }, + { + "id": "crossroads_backguard_7", + "message": "Look, you are not getting back there, and there is nothing to see back there.", + "replies": [ + { + "text": "Ok, never mind then.", + "nextPhraseID": "X" + }, + { + "text": "Ok, final offer, 800 gold? That's a fortune.", + "nextPhraseID": "crossroads_backguard_8" + } + ] + }, + { + "id": "crossroads_backguard_8", + "message": "Hm, 800 gold you say? Well, why didn't you say so from the start? Sure, that could work.", + "replies": [ + { + "text": "N", + "nextPhraseID": "crossroads_backguard_9" + } + ] + }, + { + "id": "crossroads_backguard_9", + "message": "I should tell you however, that there is something in there that we won't dare go near. I just guard here to make sure it doesn't get out, and that no one goes in.", + "replies": [ + { + "text": "N", + "nextPhraseID": "crossroads_backguard_10" + } + ] + }, + { + "id": "crossroads_backguard_10", + "message": "Some other guards went in there earlier, and came back screaming. Enter at your own risk, but don't say I didn't warn you.", + "replies": [ + { + "text": "Never mind, I was just kidding.", + "nextPhraseID": "X" + }, + { + "text": "Here is the gold, now get out of the way.", + "nextPhraseID": "R", + "requires": { + "item": { + "itemID": "gold", + "quantity": 800, + "requireType": 0 + } + } + } + ] + }, + { + "id": "keknazar", + "message": "*hssss*\n(You hear squishing sounds as the creature starts moving towards you)", + "replies": [ + { + "text": "For the Shadow!", + "nextPhraseID": "F" + }, + { + "text": "You will not survive this, you pathetic creature.", + "nextPhraseID": "F" + }, + { + "text": "A fight! I have been looking forward to this!", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_debug.json b/AndorsTrail/res/raw/conversationlist_debug.json new file mode 100644 index 000000000..ccb23ea75 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_debug.json @@ -0,0 +1,123 @@ +[ + { + "id": "debugshop", + "message": "Welcome adventurer!", + "replies": [ + { + "text": "Trade items very very long text", + "nextPhraseID": "S" + }, + { + "text": "Bye", + "nextPhraseID": "X" + }, + { + "text": "Fight", + "nextPhraseID": "F" + } + ] + }, + { + "id": "debugquest", + "message": "Debug quest start\nTest.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "debugquest", + "value": 10 + } + ], + "replies": [ + { + "text": "Iron sword*2", + "nextPhraseID": "debugquest2", + "requires": { + "item": { + "itemID": "dagger0", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Progress+=10", + "nextPhraseID": "debugquest4" + }, + { + "text": "Progress=100", + "nextPhraseID": "debugquest1", + "requires": { + "progress": "debugquest:100" + } + } + ] + }, + { + "id": "debugquest1", + "message": "Yes, you have already completed this quest.", + "rewards": [ + { + "rewardType": 1, + "rewardID": "debuglist1" + } + ], + "replies": [ + { + "text": "Next", + "nextPhraseID": "debugquest3" + } + ] + }, + { + "id": "debugquest2", + "message": "Thank you for the items.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "debugquest", + "value": 100 + } + ], + "replies": [ + { + "text": "Next", + "nextPhraseID": "debugquest3" + } + ] + }, + { + "id": "debugquest3", + "message": "Quest is now completed.", + "replies": [ + { + "text": "Bye", + "nextPhraseID": "X" + } + ] + }, + { + "id": "debugquest4", + "message": "More info. Quest progress should now be updated to 20.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "debugquest", + "value": 20 + } + ], + "replies": [ + { + "text": "Back", + "nextPhraseID": "debugquest" + } + ] + }, + { + "id": "debugsign", + "message": "This should be a signpost." + }, + { + "id": "debugrequireskey", + "message": "This tile requires a questprogress." + } +] diff --git a/AndorsTrail/res/raw/conversationlist_duaina.json b/AndorsTrail/res/raw/conversationlist_duaina.json new file mode 100644 index 000000000..37a17238e --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_duaina.json @@ -0,0 +1,324 @@ +[ + { + "id": "duaina", + "replies": [ + { + "nextPhraseID": "duaina_0" + } + ] + }, + { + "id": "duaina_0", + "message": "You! I have seen you.", + "replies": [ + { + "text": "Jhaeld sent me to ask you about the people that have gone missing.", + "nextPhraseID": "duaina_1", + "requires": { + "progress": "remgard:52" + } + }, + { + "text": "I don't think so, I've never been here before.", + "nextPhraseID": "duaina_stop" + }, + { + "text": "Yes, I was just here, remember?", + "nextPhraseID": "duaina_1", + "requires": { + "progress": "remgard:63" + } + } + ] + }, + { + "id": "duaina_1", + "message": "The dreams and the visions. It is you! The child that challenges the beast. (Duaina gives you a terrified look)", + "replies": [ + { + "text": "So you have seen me in your visions?", + "nextPhraseID": "duaina_2" + } + ] + }, + { + "id": "duaina_2", + "message": "The sleeping beast. No, no. The blinding light. Oh, why have you come here? Have you come for me?", + "replies": [ + { + "text": "What are you talking about?", + "nextPhraseID": "duaina_3" + } + ] + }, + { + "id": "duaina_3", + "message": "Nooo, please spare me!", + "replies": [ + { + "text": "I'm not here to get you, if that's what you are afraid of.", + "nextPhraseID": "duaina_4" + } + ] + }, + { + "id": "duaina_4", + "message": "I can see it in you. You have the gift. The gift that will destroy the beast. My visions were true.", + "replies": [ + { + "text": "Maybe you are confusing me with my brother Andor?", + "nextPhraseID": "duaina_5" + } + ] + }, + { + "id": "duaina_5", + "message": "A brother? Yes, that must be what I saw in my visions. It is all becoming clearer.", + "replies": [ + { + "text": "N", + "nextPhraseID": "duaina_6" + } + ] + }, + { + "id": "duaina_6", + "message": "The black hand sweeps over the land. The beast that hunts. Nooo! Leave this place!", + "replies": [ + { + "text": "I'm not here to hurt you!", + "nextPhraseID": "duaina_7" + } + ] + }, + { + "id": "duaina_7", + "message": "The child and the brother. The unsuspecting people. The beast casts its shadow.", + "replies": [ + { + "text": "N", + "nextPhraseID": "duaina_s_0" + } + ] + }, + { + "id": "duaina_s_0", + "message": "I have seen you in my visions.", + "replies": [ + { + "text": "N", + "nextPhraseID": "duaina_s_1" + } + ] + }, + { + "id": "duaina_s_1", + "replies": [ + { + "nextPhraseID": "duaina_s_1a", + "requires": { + "progress": "flagstone:60" + } + }, + { + "nextPhraseID": "duaina_s_2" + } + ] + }, + { + "id": "duaina_s_1a", + "message": "Slaying the beast beneath the prison of Flagstone.", + "replies": [ + { + "text": "N", + "nextPhraseID": "duaina_s_2" + } + ] + }, + { + "id": "duaina_s_2", + "replies": [ + { + "nextPhraseID": "duaina_s_2a", + "requires": { + "progress": "farrik:70" + } + }, + { + "nextPhraseID": "duaina_s_2b", + "requires": { + "progress": "farrik:90" + } + }, + { + "nextPhraseID": "duaina_s_3" + } + ] + }, + { + "id": "duaina_s_2a", + "message": "Cooperating with the thieves in Fallhaven.", + "replies": [ + { + "text": "N", + "nextPhraseID": "duaina_s_3" + } + ] + }, + { + "id": "duaina_s_2b", + "message": "Working against the thieves in Fallhaven.", + "replies": [ + { + "text": "N", + "nextPhraseID": "duaina_s_3" + } + ] + }, + { + "id": "duaina_s_3", + "replies": [ + { + "nextPhraseID": "duaina_s_3a", + "requires": { + "progress": "bjorgur_grave:50" + } + }, + { + "nextPhraseID": "duaina_s_3b", + "requires": { + "progress": "bjorgur_grave:60" + } + }, + { + "nextPhraseID": "duaina_s_4" + } + ] + }, + { + "id": "duaina_s_3a", + "message": "Something about a dagger returned to an ancestor in a tomb.", + "replies": [ + { + "text": "N", + "nextPhraseID": "duaina_s_4" + } + ] + }, + { + "id": "duaina_s_3b", + "message": "Something about stealing a dagger in a dark tomb.", + "replies": [ + { + "text": "N", + "nextPhraseID": "duaina_s_4" + } + ] + }, + { + "id": "duaina_s_4", + "replies": [ + { + "nextPhraseID": "duaina_s_4a", + "requires": { + "progress": "benbyr:30" + } + }, + { + "nextPhraseID": "duaina_jhaeld_s_1" + } + ] + }, + { + "id": "duaina_s_4a", + "message": "Killing innocent sheep.", + "replies": [ + { + "text": "N", + "nextPhraseID": "duaina_jhaeld_s_1" + } + ] + }, + { + "id": "duaina_jhaeld_s_1", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 63 + } + ], + "replies": [ + { + "nextPhraseID": "duaina_jhaeld_s_2", + "requires": { + "progress": "remgard:61" + } + }, + { + "nextPhraseID": "duaina_8" + } + ] + }, + { + "id": "duaina_jhaeld_s_2", + "replies": [ + { + "nextPhraseID": "duaina_jhaeld_s_3", + "requires": { + "progress": "remgard:62" + } + }, + { + "nextPhraseID": "duaina_8" + } + ] + }, + { + "id": "duaina_jhaeld_s_3", + "replies": [ + { + "nextPhraseID": "duaina_jhaeld_s_4", + "requires": { + "progress": "remgard:64" + } + }, + { + "nextPhraseID": "duaina_8" + } + ] + }, + { + "id": "duaina_jhaeld_s_4", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 70 + } + ], + "replies": [ + { + "nextPhraseID": "duaina_8" + } + ] + }, + { + "id": "duaina_8", + "message": "(Duaina stares at you in silence while holding her hand over her mouth)", + "replies": [ + { + "text": "What else have you seen in your visions?", + "nextPhraseID": "duaina_stop" + }, + { + "text": "I don't understand.", + "nextPhraseID": "duaina_stop" + } + ] + }, + { + "id": "duaina_stop", + "message": "(Duaina stares at you in silence)" + } +] diff --git a/AndorsTrail/res/raw/conversationlist_elwyl.json b/AndorsTrail/res/raw/conversationlist_elwyl.json new file mode 100644 index 000000000..b0c9ea63d --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_elwyl.json @@ -0,0 +1,477 @@ +[ + { + "id": "elwel", + "replies": [ + { + "nextPhraseID": "elwel_4", + "requires": { + "progress": "sisterfight:71" + } + }, + { + "nextPhraseID": "elwel_3", + "requires": { + "progress": "sisterfight:20" + } + }, + { + "nextPhraseID": "elwel_1" + } + ] + }, + { + "id": "elwel_1", + "message": "Go away, I don't want to talk to you!", + "replies": [ + { + "text": "Wow, you're the friendly type, aren't you?", + "nextPhraseID": "elwel_2" + }, + { + "text": "Goodbye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "elwel_2", + "message": "(Elwel mutters to herself) Stupid kids .." + }, + { + "id": "elwel_3", + "message": "I saw you talking to that cursed sister of mine. Don't listen to her, she always tries her best to portray me in the worst way possible.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "sisterfight", + "value": 21 + } + ] + }, + { + "id": "elwel_4", + "message": "Now look what you did!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "sisterfight", + "value": 21 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "elwyl_2" + } + ] + }, + { + "id": "elwyl", + "replies": [ + { + "nextPhraseID": "elwyl_cmp_1", + "requires": { + "progress": "sisterfight:71" + } + }, + { + "nextPhraseID": "elwyl_res_2", + "requires": { + "progress": "sisterfight:70" + } + }, + { + "nextPhraseID": "elwyl_pot_1", + "requires": { + "progress": "sisterfight:31" + } + }, + { + "nextPhraseID": "elwyl_12", + "requires": { + "progress": "sisterfight:20" + } + }, + { + "nextPhraseID": "elwyl_1" + } + ] + }, + { + "id": "elwyl_1", + "message": "Who are you? Did we invite you here? No, I didn't think so. Now get out!", + "replies": [ + { + "text": "Are you sisters?", + "nextPhraseID": "elwyl_3" + }, + { + "text": "I go wherever I wish.", + "nextPhraseID": "elwyl_2" + }, + { + "text": "Ok, I'll leave.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "elwyl_2", + "message": "Bah. Leave, before I call the guards over here!" + }, + { + "id": "elwyl_3", + "message": "Yes. Argh. It's not like I am proud of being a sister to .. her.", + "replies": [ + { + "text": "N", + "nextPhraseID": "elwyl_4" + } + ] + }, + { + "id": "elwyl_4", + "message": "She is the black sheep of the family. She never agrees to anything, and always complains. Just look at her.", + "replies": [ + { + "text": "N", + "nextPhraseID": "elwyl_5" + } + ] + }, + { + "id": "elwyl_5", + "message": "She even has the stomach to call ME the black sheep of the family, when it is clearly SHE that is causing all the trouble around here.", + "replies": [ + { + "text": "N", + "nextPhraseID": "elwyl_6" + } + ] + }, + { + "id": "elwyl_6", + "message": "She's always nagging me about how I should move out of what she considers to be HER house, when it in fact is MY house and SHE is the one that should move out so that things can settle down.", + "replies": [ + { + "text": "N", + "nextPhraseID": "elwyl_8" + } + ] + }, + { + "id": "elwyl_8", + "message": "Argh. I am so upset at her!", + "replies": [ + { + "text": "Good luck with that. I'll leave you to your fighting.", + "nextPhraseID": "X" + }, + { + "text": "Is there anything I can do to help?", + "nextPhraseID": "elwyl_9" + }, + { + "text": "Some people have been complaining that your squabbling has kept them awake at night.", + "nextPhraseID": "elwyl_10", + "requires": { + "progress": "sisterfight:10" + } + } + ] + }, + { + "id": "elwyl_9", + "message": "Yes, you can leave! I never invited you here. Leave, before I call the guards!" + }, + { + "id": "elwyl_10", + "message": "That's what I always tell her, to keep it down. She is insistent on shouting at me when we argue. I guess all of her shouting must have made her more or less deaf, since I also have to shout to her to make her understand.", + "replies": [ + { + "text": "N", + "nextPhraseID": "elwyl_11" + } + ] + }, + { + "id": "elwyl_11", + "message": "She doesn't stop either. I can't remember for how long this has been going on, it almost feels like forever.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "sisterfight", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "elwyl_12" + } + ] + }, + { + "id": "elwyl_12", + "message": "Oh, my sister is just so stubborn! You know, last night, I was talking to her about those potions that Hjaldar used to make. The smell from his brewing used to reach into our house here.. Or, I mean .. my house here.", + "replies": [ + { + "text": "N", + "nextPhraseID": "elwyl_13" + } + ] + }, + { + "id": "elwyl_13", + "message": "So, I was talking to her about those potions of accuracy focus and how I always thought their blue liquid seemed so odd, since there were no blue things that he used while making them.", + "replies": [ + { + "text": "N", + "nextPhraseID": "elwyl_14" + } + ] + }, + { + "id": "elwyl_14", + "message": "Then all of a sudden, she started arguing with me about how I have things completely wrong. She insists that the potions were green.", + "replies": [ + { + "text": "N", + "nextPhraseID": "elwyl_15" + } + ] + }, + { + "id": "elwyl_15", + "message": "I can't understand why she would make such a big deal out of it, when the potion was clearly blue. I remember it distinctly. Argh, how stubborn she is! She wouldn't even admit that she is wrong!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "sisterfight", + "value": 30 + } + ], + "replies": [ + { + "text": "Are you sure it was blue?", + "nextPhraseID": "elwyl_16" + }, + { + "text": "Why make such a big thing out of what color some potion was?", + "nextPhraseID": "elwyl_17" + }, + { + "text": "Is there anything I can do to help you two?", + "nextPhraseID": "elwyl_18" + } + ] + }, + { + "id": "elwyl_16", + "message": "Why .. yes .. of course. I am not wrong! They were clearly blue.", + "replies": [ + { + "text": "Why make such a big thing out of what color some potion was?", + "nextPhraseID": "elwyl_17" + }, + { + "text": "Is there anything I can do to help you two?", + "nextPhraseID": "elwyl_18" + } + ] + }, + { + "id": "elwyl_17", + "message": "Exactly. She is clearly wrong, so why won't she just admit it, and we can move along?", + "replies": [ + { + "text": "Are you sure it was blue?", + "nextPhraseID": "elwyl_16" + }, + { + "text": "Is there anything I can do to help you two?", + "nextPhraseID": "elwyl_18" + } + ] + }, + { + "id": "elwyl_18", + "message": "Maybe you could go visit Hjaldar and get one of those potions of accuracy focus, and we can both show her that she is clearly wrong.", + "replies": [ + { + "text": "N", + "nextPhraseID": "elwyl_19" + } + ] + }, + { + "id": "elwyl_19", + "message": "His house is up on the northeast shore of town. *Elwyl points outside*", + "replies": [ + { + "text": "N", + "nextPhraseID": "elwyl_20" + } + ] + }, + { + "id": "elwyl_20", + "message": "I'm not sure why he doesn't make those potions anymore though. Maybe he still has some old ones still in supply that you may have?", + "replies": [ + { + "text": "I'll return with one of those potions.", + "nextPhraseID": "elwyl_21" + }, + { + "text": "I am not getting involved in this. You'll have to solve your own conflict.", + "nextPhraseID": "elwyl_22" + } + ] + }, + { + "id": "elwyl_21", + "message": "Good. Maybe when you bring that potion, she will agree to being wrong for once!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "sisterfight", + "value": 31 + } + ] + }, + { + "id": "elwyl_22", + "message": "Bah, you kids are never good for anything." + }, + { + "id": "elwyl_pot_1", + "message": "Oh, it's you again. What do you want?", + "replies": [ + { + "text": "I have one of those potions of accuracy focus for you.", + "nextPhraseID": "elwyl_res_1", + "requires": { + "item": { + "itemID": "pot_focus_ac", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "I have a strong potion of accuracy focus for you.", + "nextPhraseID": "elwyl_res_1", + "requires": { + "item": { + "itemID": "pot_focus_ac2", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "You talked about some potion before. Could you repeat that?", + "nextPhraseID": "elwyl_12" + }, + { + "text": "Some people have been complaining that your squabbling has kept them awake at night.", + "nextPhraseID": "elwyl_10", + "requires": { + "progress": "sisterfight:10" + } + } + ] + }, + { + "id": "elwyl_res_1", + "message": "Oh good. Give me that.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "sisterfight", + "value": 70 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "elwyl_res_2" + } + ] + }, + { + "id": "elwyl_res_2", + "message": "Huh, what's this? It's yellow.. I was sure that it used to be blue. Let me smell it to make sure that it's the right kind of potion.", + "replies": [ + { + "text": "N", + "nextPhraseID": "elwyl_res_3" + } + ] + }, + { + "id": "elwyl_res_3", + "message": "Hm, yes, it smells exactly as I remember it. It must be the right potion.", + "replies": [ + { + "text": "N", + "nextPhraseID": "elwyl_res_4" + } + ] + }, + { + "id": "elwyl_res_4", + "message": "This means .. that Elwel was wrong anyway!", + "replies": [ + { + "text": "N", + "nextPhraseID": "elwyl_res_5" + } + ] + }, + { + "id": "elwyl_res_5", + "message": "Elwel, look at this, you were wrong! The potion wasn't green as you said, it's yellow! Why didn't you just listen to me?!", + "replies": [ + { + "text": "N", + "nextPhraseID": "elwyl_res_6" + } + ] + }, + { + "id": "elwyl_res_6", + "message": "Elwel, you are always trying your best to prove me wrong. Well look at this, now you are wrong for once!", + "replies": [ + { + "text": "Whatever, you two don't seem to get along very well. I'll leave you to your squabbling.", + "nextPhraseID": "elwyl_res_7" + }, + { + "text": "I hope that you two will get along some day.", + "nextPhraseID": "elwyl_res_7" + } + ] + }, + { + "id": "elwyl_res_7", + "message": "Hey Elwel, you were wrong all along! Why won't you ever admit it when you are clearly wrong?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "sisterfight", + "value": 71 + } + ] + }, + { + "id": "elwyl_cmp_1", + "message": "Oh, it's you again. Thanks for bringing me that potion earlier.", + "replies": [ + { + "text": "N", + "nextPhraseID": "elwyl_res_7" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_elythom_1.json b/AndorsTrail/res/raw/conversationlist_elythom_1.json new file mode 100644 index 000000000..e4231c0a6 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_elythom_1.json @@ -0,0 +1,333 @@ +[ + { + "id": "krell", + "replies": [ + { + "nextPhraseID": "krell_1" + } + ] + }, + { + "id": "krell_1", + "message": "Hey there. I am master Krell of the Knights of Elythom. How may we be of service?", + "replies": [ + { + "text": "Knights of Elythom? What's that?", + "nextPhraseID": "krell_knights_1" + }, + { + "text": "I was sent by Jhaeld to ask about the missing people.", + "nextPhraseID": "krell_jhaeld1", + "requires": { + "progress": "remgard:52" + } + }, + { + "text": "What do you do around here?", + "nextPhraseID": "krell_2" + } + ] + }, + { + "id": "krell_2", + "message": "Me and my band of knights are just visiting Remgard in .. shall we say .. unfinished business.", + "replies": [ + { + "text": "N", + "nextPhraseID": "krell_3" + } + ] + }, + { + "id": "krell_3", + "message": "As to the nature of our business here, that is something I would rather not disclose.", + "replies": [ + { + "text": "N", + "nextPhraseID": "krell_4" + } + ] + }, + { + "id": "krell_4", + "message": "We serve the order of Elythom.", + "replies": [ + { + "text": "What's that?", + "nextPhraseID": "krell_knights_1" + }, + { + "text": "Jhaeld sent me to ask about the missing people.", + "nextPhraseID": "krell_jhaeld1", + "requires": { + "progress": "remgard:52" + } + } + ] + }, + { + "id": "krell_knights_1", + "message": "We are an order of knights that hail from Brimhaven.", + "replies": [ + { + "text": "N", + "nextPhraseID": "krell_knights_2" + } + ] + }, + { + "id": "krell_knights_2", + "message": "You should visit our compound in Brimhaven, if you ever make your way there.", + "replies": [ + { + "text": "N", + "nextPhraseID": "krell_knights_3" + } + ] + }, + { + "id": "krell_knights_3", + "message": "We serve all types of clients, from the wealthiest to even the poorest of poor.", + "replies": [ + { + "text": "N", + "nextPhraseID": "krell_knights_4" + } + ] + }, + { + "id": "krell_knights_4", + "message": "Regardless, we always get the job done.", + "replies": [ + { + "text": "What types of work do you do?", + "nextPhraseID": "krell_knights_5" + } + ] + }, + { + "id": "krell_knights_5", + "message": "Mostly, we help people get back gold that other people owe them.", + "replies": [ + { + "text": "N", + "nextPhraseID": "krell_knights_6" + } + ] + }, + { + "id": "krell_knights_6", + "message": "We also help people find .. erm .. people that have gone missing.", + "replies": [ + { + "text": "About that, Jhaeld sent me to ask about the missing people.", + "nextPhraseID": "krell_jhaeld1", + "requires": { + "progress": "remgard:52" + } + }, + { + "text": "Good luck with that.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "krell_jhaeld1", + "message": "Shh, not so loud!", + "replies": [ + { + "text": "N", + "nextPhraseID": "krell_jhaeld2" + } + ] + }, + { + "id": "krell_jhaeld2", + "message": "Yes, we have heard the reports that people have gone missing here in Remgard. Most .. unfortunate.", + "replies": [ + { + "text": "N", + "nextPhraseID": "krell_jhaeld3" + } + ] + }, + { + "id": "krell_jhaeld3", + "message": "We even had one of our knights disappear on us. Now, due to the nature of our order, I presume you can see how that puts us in a .. peculiar situation.", + "replies": [ + { + "text": "N", + "nextPhraseID": "krell_jhaeld4" + } + ] + }, + { + "id": "krell_jhaeld4", + "message": "You see, usually it is us knights that find .. missing people. Now, we have had one of our own disappear. This has never happened before, and we are really unsure about what to do about it.", + "replies": [ + { + "text": "N", + "nextPhraseID": "krell_jhaeld5" + } + ] + }, + { + "id": "krell_jhaeld5", + "message": "Granted, people in our order have succumbed in combat to greater foes, but to just .. disappear without a trace, that's unheard of.", + "replies": [ + { + "text": "N", + "nextPhraseID": "krell_jhaeld6" + } + ] + }, + { + "id": "krell_jhaeld6", + "message": "We have a strong connection to each other, and to have someone leave the order would be unthinkable.", + "replies": [ + { + "text": "N", + "nextPhraseID": "krell_jhaeld7" + } + ] + }, + { + "id": "krell_jhaeld7", + "message": "As you can see, this puts us in a difficult situation.", + "replies": [ + { + "text": "What do you know about the knight that is missing?", + "nextPhraseID": "krell_jhaeld8" + }, + { + "text": "Is there anything else you have found out that you didn't tell the guards earlier?", + "nextPhraseID": "krell_jhaeld8" + } + ] + }, + { + "id": "krell_jhaeld8", + "message": "Well, we told the guards everything we know so far. They also seem to find this situation rather embarrassing, that they can't even keep a knight safe here in their town.", + "replies": [ + { + "text": "N", + "nextPhraseID": "krell_jhaeld9" + } + ] + }, + { + "id": "krell_jhaeld9", + "message": "We have no clues apart from the fact that she is missing, unfortunately. Where our sister knight is, is still a mystery to us.", + "replies": [ + { + "text": "N", + "nextPhraseID": "krell_jhaeld_s_1" + } + ] + }, + { + "id": "krell_jhaeld_s_1", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 62 + } + ], + "replies": [ + { + "nextPhraseID": "krell_jhaeld_s_2", + "requires": { + "progress": "remgard:61" + } + }, + { + "nextPhraseID": "krell_jhaeld10" + } + ] + }, + { + "id": "krell_jhaeld_s_2", + "replies": [ + { + "nextPhraseID": "krell_jhaeld_s_3", + "requires": { + "progress": "remgard:63" + } + }, + { + "nextPhraseID": "krell_jhaeld10" + } + ] + }, + { + "id": "krell_jhaeld_s_3", + "replies": [ + { + "nextPhraseID": "krell_jhaeld_s_4", + "requires": { + "progress": "remgard:64" + } + }, + { + "nextPhraseID": "krell_jhaeld10" + } + ] + }, + { + "id": "krell_jhaeld_s_4", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 70 + } + ], + "replies": [ + { + "nextPhraseID": "krell_jhaeld10" + } + ] + }, + { + "id": "krell_jhaeld10", + "message": "For the sake of our order's reputation, please keep this to yourself if possible. We wouldn't want people to get the perception that the Knights of Elythom can be weakened in any way." + }, + { + "id": "elythom_knight1", + "message": "Hello there. What can the Knights of Elythom do for you?", + "replies": [ + { + "text": "Knights of Elythom? What's that?", + "nextPhraseID": "elythom_knight1_2" + }, + { + "text": "That's a very nice suit of armour you have there.", + "nextPhraseID": "elythom_knight1_3" + } + ] + }, + { + "id": "elythom_knight1_2", + "message": "Talk to master Krell over there, he can tell you all about us." + }, + { + "id": "elythom_knight1_3", + "message": "Thank you, it's our standard set of armour that we use in the order. It takes a lot of scrubbing and polishing to make it this clean though." + }, + { + "id": "elythom_knight2", + "message": "Hello. *cough*", + "replies": [ + { + "text": "Who are you?", + "nextPhraseID": "elythom_knight1_2" + }, + { + "text": "That's a very nice suit of armour you have there.", + "nextPhraseID": "elythom_knight1_3" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_erinith.json b/AndorsTrail/res/raw/conversationlist_erinith.json new file mode 100644 index 000000000..0534b6cc7 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_erinith.json @@ -0,0 +1,470 @@ +[ + { + "id": "erinith", + "replies": [ + { + "nextPhraseID": "erinith_complete_1", + "requires": { + "progress": "erinith:50" + } + }, + { + "nextPhraseID": "erinith_givenpotion_1", + "requires": { + "progress": "erinith:40" + } + }, + { + "nextPhraseID": "erinith_givenpotion_1", + "requires": { + "progress": "erinith:41" + } + }, + { + "nextPhraseID": "erinith_givenpotion_1", + "requires": { + "progress": "erinith:42" + } + }, + { + "nextPhraseID": "erinith_needspotions_1", + "requires": { + "progress": "erinith:30" + } + }, + { + "nextPhraseID": "erinith_needsbook_1", + "requires": { + "progress": "erinith:20" + } + }, + { + "nextPhraseID": "erinith_needsbook_1", + "requires": { + "progress": "erinith:21" + } + }, + { + "nextPhraseID": "erinith_1" + } + ] + }, + { + "id": "erinith_complete_1", + "message": "Thank you for all your help earlier." + }, + { + "id": "erinith_1", + "message": "Please, you have to help me!", + "replies": [ + { + "text": "What's wrong?", + "nextPhraseID": "erinith_story_1" + } + ] + }, + { + "id": "erinith_story_1", + "message": "I was setting up camp here during the night, and was attacked by some bandits while asleep.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "erinith", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "erinith_story_2" + } + ] + }, + { + "id": "erinith_story_2", + "message": "Ack, this wound doesn't seem to be healing itself.", + "replies": [ + { + "text": "N", + "nextPhraseID": "erinith_story_3" + } + ] + }, + { + "id": "erinith_story_3", + "message": "At least I managed to keep them from getting my book. I'm sure they were after the book.", + "replies": [ + { + "text": "Seems like a valuable book then. This sounds interesting, please go on.", + "nextPhraseID": "erinith_story_4" + }, + { + "text": "What happened?", + "nextPhraseID": "erinith_story_4" + } + ] + }, + { + "id": "erinith_story_4", + "message": "I managed to throw the book in among the trees over there during the attack. *points to the trees directly to the north*", + "replies": [ + { + "text": "N", + "nextPhraseID": "erinith_story_5" + } + ] + }, + { + "id": "erinith_story_5", + "message": "I don't think they managed to get the book. It's probably still somewhere among those trees.", + "replies": [ + { + "text": "What is in the book?", + "nextPhraseID": "erinith_story_6" + } + ] + }, + { + "id": "erinith_story_6", + "message": "Oh, I can't say really.", + "replies": [ + { + "text": "I could help you find that book if you want.", + "nextPhraseID": "erinith_story_7" + }, + { + "text": "What would it be worth for you to get that book back?", + "nextPhraseID": "erinith_story_gold_1" + } + ] + }, + { + "id": "erinith_story_7", + "message": "You would? Oh thank you.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "erinith", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "erinith_story_8" + } + ] + }, + { + "id": "erinith_story_8", + "message": "Please go look for it among those trees to the northeast." + }, + { + "id": "erinith_story_gold_1", + "message": "Worth? Well, I was hoping you would help me anyway, but I guess 200 gold could do.", + "replies": [ + { + "text": "200 gold it is then. I'll go look for your book.", + "nextPhraseID": "erinith_story_gold_2" + }, + { + "text": "A lousy 200 gold, is that all you can do? Fine, I'll go look for your stupid book.", + "nextPhraseID": "erinith_story_gold_2" + }, + { + "text": "Keep your gold, I'll return your book for you anyway.", + "nextPhraseID": "erinith_story_7" + }, + { + "text": "No, I am not getting involved in this. Goodbye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "erinith_story_gold_2", + "message": "Make it quick.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "erinith", + "value": 21 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "erinith_story_8" + } + ] + }, + { + "id": "erinith_needsbook_1", + "message": "Have you found that book yet?", + "replies": [ + { + "text": "Not yet, I am still looking.", + "nextPhraseID": "erinith_story_8" + }, + { + "text": "Yes, here is your book.", + "nextPhraseID": "erinith_needsbook_2", + "requires": { + "item": { + "itemID": "erinith_book", + "quantity": 1, + "requireType": 0 + } + } + } + ] + }, + { + "id": "erinith_needsbook_2", + "rewards": [ + { + "rewardType": 0, + "rewardID": "erinith", + "value": 30 + } + ], + "replies": [ + { + "nextPhraseID": "erinith_needsbook_3_2", + "requires": { + "progress": "erinith:21" + } + }, + { + "nextPhraseID": "erinith_needsbook_3_1" + } + ] + }, + { + "id": "erinith_needsbook_3_1", + "message": "You found it! Oh thank you so much. I was so worried that I had lost it.", + "replies": [ + { + "text": "N", + "nextPhraseID": "erinith_needspotions_2" + } + ] + }, + { + "id": "erinith_needsbook_3_2", + "message": "You found it! Oh thank you so much. In return, here is the gold I promised you.", + "rewards": [ + { + "rewardType": 1, + "rewardID": "gold200" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "erinith_needspotions_2" + } + ] + }, + { + "id": "erinith_needspotions_1", + "message": "Thank you for helping me find my book earlier.", + "replies": [ + { + "text": "N", + "nextPhraseID": "erinith_needspotions_2" + } + ] + }, + { + "id": "erinith_needspotions_2", + "message": "I am still hurt by this wound that I got from the attack during the night.", + "replies": [ + { + "text": "N", + "nextPhraseID": "erinith_needspotions_3" + } + ] + }, + { + "id": "erinith_needspotions_3", + "message": "Ack, it hurts so bad and it doesn't seem to be healing itself.", + "replies": [ + { + "text": "N", + "nextPhraseID": "erinith_needspotions_4" + } + ] + }, + { + "id": "erinith_needspotions_4", + "message": "I am really in need of some stronger healing here. Maybe some potions would do.", + "replies": [ + { + "text": "N", + "nextPhraseID": "erinith_needspotions_5" + } + ] + }, + { + "id": "erinith_needspotions_5", + "message": "I have heard that the potion makers these days have potions of major health, and not just the regular potions of health.", + "replies": [ + { + "text": "N", + "nextPhraseID": "erinith_needspotions_6" + } + ] + }, + { + "id": "erinith_needspotions_6", + "message": "One of those would surely do. Otherwise, I think four regular potions of health would be enough.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "erinith", + "value": 31 + } + ], + "replies": [ + { + "text": "I'll go get those potions for you.", + "nextPhraseID": "erinith_needspotions_7" + }, + { + "text": "Here, take this bonemeal potion instead. It's very potent in healing deep wounds.", + "nextPhraseID": "erinith_gavepotion_bm_1", + "requires": { + "item": { + "itemID": "bonemeal_potion", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Here, take this potion of major health.", + "nextPhraseID": "erinith_gavepotion_major_1", + "requires": { + "item": { + "itemID": "health_major2", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Here, take this potion of major health.", + "nextPhraseID": "erinith_gavepotion_major_1", + "requires": { + "item": { + "itemID": "health_major", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Here, take these four regular potions of health.", + "nextPhraseID": "erinith_gavepotion_reg_1", + "requires": { + "item": { + "itemID": "health", + "quantity": 4, + "requireType": 0 + } + } + } + ] + }, + { + "id": "erinith_needspotions_7", + "message": "Thank you my friend. Please hurry back." + }, + { + "id": "erinith_gavepotion_bm_1", + "message": "Bonemeal potion? But.. but.. We are not allowed to use them since they are prohibited by Lord Geomyr. ", + "rewards": [ + { + "rewardType": 0, + "rewardID": "erinith", + "value": 40 + } + ], + "replies": [ + { + "text": "Who will find out?", + "nextPhraseID": "erinith_gavepotion_bm_2" + }, + { + "text": "I have tried them myself, it's perfectly safe to use them.", + "nextPhraseID": "erinith_gavepotion_bm_2" + } + ] + }, + { + "id": "erinith_gavepotion_bm_2", + "message": "Hm, yes. I guess you have a point. Oh well, here goes. *drinks potion*", + "replies": [ + { + "text": "N", + "nextPhraseID": "erinith_gavepotion_1" + } + ] + }, + { + "id": "erinith_gavepotion_major_1", + "message": "Thank you for bringing me one. *drinks potion*", + "rewards": [ + { + "rewardType": 0, + "rewardID": "erinith", + "value": 41 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "erinith_gavepotion_1" + } + ] + }, + { + "id": "erinith_gavepotion_reg_1", + "message": "Thank you for bringing them to me. *drinks all four potions*", + "rewards": [ + { + "rewardType": 0, + "rewardID": "erinith", + "value": 42 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "erinith_gavepotion_1" + } + ] + }, + { + "id": "erinith_gavepotion_1", + "message": "Wow, I feel slightly better already. I guess this healing really works.", + "replies": [ + { + "text": "N", + "nextPhraseID": "erinith_givenpotion_1" + } + ] + }, + { + "id": "erinith_givenpotion_1", + "message": "Thank you my friend for your help. My book is safe and my wound is healing. I hope our paths will cross again.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "erinith", + "value": 50 + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_ervelyn.json b/AndorsTrail/res/raw/conversationlist_ervelyn.json new file mode 100644 index 000000000..95a3125b0 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_ervelyn.json @@ -0,0 +1,97 @@ +[ + { + "id": "ervelyn", + "replies": [ + { + "nextPhraseID": "ervelyn_gave1", + "requires": { + "progress": "remgard2:46" + } + }, + { + "nextPhraseID": "ervelyn_give1", + "requires": { + "progress": "remgard2:45" + } + }, + { + "nextPhraseID": "ervelyn_1" + } + ] + }, + { + "id": "ervelyn_gave1", + "message": "Hello again, my friend. You are always welcome here.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ervelyn_d" + } + ] + }, + { + "id": "ervelyn_1", + "message": "Hello there. Welcome to my shop.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ervelyn_d" + } + ] + }, + { + "id": "ervelyn_d", + "message": "How may I be of service?", + "replies": [ + { + "text": "Let me see what you have to trade.", + "nextPhraseID": "ervelyn_shop" + }, + { + "text": "Never mind. Goodbye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "ervelyn_shop", + "message": "Certainly.", + "replies": [ + { + "text": "N", + "nextPhraseID": "S" + } + ] + }, + { + "id": "ervelyn_give1", + "message": "It is you! I heard what you did, helping us with that witch Algangror. You have my thanks, friend!", + "replies": [ + { + "text": "N", + "nextPhraseID": "ervelyn_give2" + } + ] + }, + { + "id": "ervelyn_give2", + "message": "As a token of my appreciation, please accept this hat that I made. May it guide you through the blinding light.", + "rewards": [ + { + "rewardType": 1, + "rewardID": "ervelyn_hat" + }, + { + "rewardType": 0, + "rewardID": "remgard2", + "value": 46 + } + ], + "replies": [ + { + "text": "Thank you.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_fallhaven.json b/AndorsTrail/res/raw/conversationlist_fallhaven.json new file mode 100644 index 000000000..f38fa57a7 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_fallhaven.json @@ -0,0 +1,206 @@ +[ + { + "id": "fallhaven_citizen1", + "message": "Hello there. Nice weather ain't it?", + "replies": [ + { + "text": "Have you seen my brother Andor?", + "nextPhraseID": "fallhaven_andor_1" + } + ] + }, + { + "id": "fallhaven_citizen2", + "message": "Hello. Anything you want from me?", + "replies": [ + { + "text": "Have you seen my brother Andor?", + "nextPhraseID": "fallhaven_andor_2" + } + ] + }, + { + "id": "fallhaven_citizen3", + "message": "Hi. Can I help you?", + "replies": [ + { + "text": "Have you seen my brother Andor?", + "nextPhraseID": "fallhaven_andor_3" + } + ] + }, + { + "id": "fallhaven_citizen4", + "message": "You're that kid from Crossglen village right?", + "replies": [ + { + "text": "Have you seen my brother Andor?", + "nextPhraseID": "fallhaven_andor_4" + } + ] + }, + { + "id": "fallhaven_citizen5", + "message": "Out of the way, peasant." + }, + { + "id": "fallhaven_citizen6", + "message": "Good day to you.", + "replies": [ + { + "text": "Have you seen my brother Andor?", + "nextPhraseID": "fallhaven_andor_6" + } + ] + }, + { + "id": "fallhaven_andor_1", + "message": "No, sorry. I haven't seen anyone by that description." + }, + { + "id": "fallhaven_andor_2", + "message": "Some other kid you say? Hm, let me think.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_andor_1" + } + ] + }, + { + "id": "fallhaven_andor_3", + "message": "Hm, I might have seen someone matching that description a few days ago. Can't remember where though." + }, + { + "id": "fallhaven_andor_4", + "message": "Oh yes, there was another kid from Crossglen village here a few days ago. Not sure he matched your description though.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_andor_4_1" + } + ] + }, + { + "id": "fallhaven_andor_4_1", + "message": "There were some shady looking people following him around. Didn't see any more than that." + }, + { + "id": "fallhaven_andor_6", + "message": "Nope. Haven't seen him." + }, + { + "id": "fallhaven_guard", + "message": "Keep out of trouble." + }, + { + "id": "fallhaven_priest", + "message": "Shadow be with you.", + "replies": [ + { + "text": "Can you tell me more about the Shadow?", + "nextPhraseID": "priest_shadow_1" + } + ] + }, + { + "id": "priest_shadow_1", + "message": "The Shadow protects us. It keeps us safe and comforts us when we sleep.", + "replies": [ + { + "text": "N", + "nextPhraseID": "priest_shadow_2" + } + ] + }, + { + "id": "priest_shadow_2", + "message": "It follows us wherever we go. Go with the Shadow my child.", + "replies": [ + { + "text": "Shadow be with you.", + "nextPhraseID": "X" + }, + { + "text": "Whatever, bye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "rigmor", + "message": "Well hello there! Aren't you a cute little fellow.", + "replies": [ + { + "text": "Have you seen my brother Andor?", + "nextPhraseID": "rigmor_1" + }, + { + "text": "I really need to go.", + "nextPhraseID": "rigmor_leave_select" + } + ] + }, + { + "id": "rigmor_1", + "message": "Your brother, you say? His name is Andor? No. I don't recall meeting anyone like that.", + "replies": [ + { + "text": "I really need to go.", + "nextPhraseID": "rigmor_leave_select" + } + ] + }, + { + "id": "rigmor_leave_select", + "replies": [ + { + "nextPhraseID": "rigmor_thanks", + "requires": { + "progress": "calomyran:100" + } + }, + { + "nextPhraseID": "X" + } + ] + }, + { + "id": "rigmor_thanks", + "message": "I heard you helped my old man find his book, thank you. He had been talking about that book for weeks. Poor thing, he tends to forget things.", + "replies": [ + { + "text": "It was my pleasure. Goodbye.", + "nextPhraseID": "X" + }, + { + "text": "You should keep an eye on him, or bad things might happen to him.", + "nextPhraseID": "X" + }, + { + "text": "Whatever, I just did it for the gold.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_clothes", + "message": "Welcome to my shop. Please browse my selection of fine clothing and jewelry.", + "replies": [ + { + "text": "Let me see your wares.", + "nextPhraseID": "S" + } + ] + }, + { + "id": "fallhaven_potions", + "message": "Welcome to my shop. Please browse my fine selection of everyday potions.", + "replies": [ + { + "text": "Let me see what potions you have available.", + "nextPhraseID": "S" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_fallhaven_arcir.json b/AndorsTrail/res/raw/conversationlist_fallhaven_arcir.json new file mode 100644 index 000000000..0d4e3ea2a --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_fallhaven_arcir.json @@ -0,0 +1,153 @@ +[ + { + "id": "arcir_start", + "message": "Hello. I'm Arcir.", + "replies": [ + { + "text": "I noticed your statue of Elythara downstairs.", + "nextPhraseID": "arcir_elythara_1", + "requires": { + "progress": "arcir:10" + } + }, + { + "text": "You really seem to like your books.", + "nextPhraseID": "arcir_books_1" + } + ] + }, + { + "id": "arcir_anythingelse", + "message": "Anything else you wanted to ask?", + "replies": [ + { + "text": "I noticed your statue of Elythara downstairs.", + "nextPhraseID": "arcir_elythara_1", + "requires": { + "progress": "arcir:10" + } + }, + { + "text": "You really seem to like your books.", + "nextPhraseID": "arcir_books_1" + } + ] + }, + { + "id": "arcir_elythara_1", + "message": "Oh, you found my statue in the basement?\n\nYes, Elythara is my protector.", + "replies": [ + { + "text": "Okay.", + "nextPhraseID": "arcir_anythingelse" + } + ] + }, + { + "id": "arcir_books_1", + "message": "I find great pleasure in my books. They contain the accumulated knowledge of past generations.", + "replies": [ + { + "text": "Do you have a book called 'Calomyran Secrets'?", + "nextPhraseID": "arcir_calomyran_select", + "requires": { + "progress": "calomyran:10" + } + }, + { + "text": "Okay.", + "nextPhraseID": "arcir_anythingelse" + } + ] + }, + { + "id": "arcir_calomyran_1", + "message": "'Calomyran Secrets'? Hm, yes I think I have one of those in my basement.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_calomyran_2" + } + ] + }, + { + "id": "arcir_calomyran_2", + "message": "Old man Benradas came by last week, wanting to sell me that book. Since it's not really my kind of book, I declined.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_calomyran_3" + } + ] + }, + { + "id": "arcir_calomyran_3", + "message": "He seemed upset that I didn't like his book, and threw it at me while storming out of the house.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_calomyran_4" + } + ] + }, + { + "id": "arcir_calomyran_4", + "message": "Poor old man Benradas, he probably forgot that he left it here. He tends to forget things.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_anythingelse" + } + ] + }, + { + "id": "arcir_calomyran_5", + "message": "You looked downstairs but didn't find it? And a note you say? I guess there must have been someone in my house.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_calomyran_6" + } + ] + }, + { + "id": "arcir_calomyran_select", + "replies": [ + { + "nextPhraseID": "arcir_calomyran_complete", + "requires": { + "progress": "calomyran:100" + } + }, + { + "nextPhraseID": "arcir_calomyran_5", + "requires": { + "progress": "calomyran:20" + } + }, + { + "nextPhraseID": "arcir_calomyran_1" + } + ] + }, + { + "id": "arcir_calomyran_complete", + "message": "I heard you found it and gave it back to old man Benradas. Thank you. He tends to forget things.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arcir_anythingelse" + } + ] + }, + { + "id": "arcir_calomyran_6", + "message": "What did the note say?\n\nLarcal.. I know of him. Always causing trouble. He is usually in the barn to the east of here.", + "replies": [ + { + "text": "Thanks, bye", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_fallhaven_athamyr.json b/AndorsTrail/res/raw/conversationlist_fallhaven_athamyr.json new file mode 100644 index 000000000..656152ca8 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_fallhaven_athamyr.json @@ -0,0 +1,115 @@ +[ + { + "id": "athamyr", + "message": "Walk with the Shadow.", + "replies": [ + { + "text": "Have you been down in the catacombs?", + "nextPhraseID": "athamyr_select", + "requires": { + "progress": "bucus:20" + } + } + ] + }, + { + "id": "athamyr_1", + "message": "Yes, I have been in the catacombs beneath Fallhaven Church.", + "replies": [ + { + "text": "N", + "nextPhraseID": "athamyr_2" + } + ] + }, + { + "id": "athamyr_2", + "message": "But I'm the only one that both has the permission and the bravery to go down there.", + "replies": [ + { + "text": "How can I get permission to go down there?", + "nextPhraseID": "athamyr_3" + } + ] + }, + { + "id": "athamyr_3", + "message": "You want to go down in the catacombs? Hm, maybe we can make a deal.", + "replies": [ + { + "text": "N", + "nextPhraseID": "athamyr_4" + } + ] + }, + { + "id": "athamyr_4", + "message": "Bring me some of that delicious cooked meat from the tavern and I will give you my permission to enter the catacombs of Fallhaven Church.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 30 + } + ], + "replies": [ + { + "text": "Here, I have cooked meat for you.", + "nextPhraseID": "athamyr_complete", + "requires": { + "item": { + "itemID": "meat_cooked", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Ok, I'll go get some.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "athamyr_complete_2", + "message": "You have my permission to enter the catacombs of Fallhaven Church.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 50 + } + ] + }, + { + "id": "athamyr_select", + "replies": [ + { + "nextPhraseID": "athamyr_complete_2", + "requires": { + "progress": "bucus:40" + } + }, + { + "nextPhraseID": "athamyr_1" + } + ] + }, + { + "id": "athamyr_complete", + "message": "Thanks, this will do nicely.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "athamyr_complete_2" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_fallhaven_bucus.json b/AndorsTrail/res/raw/conversationlist_fallhaven_bucus.json new file mode 100644 index 000000000..8c2333917 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_fallhaven_bucus.json @@ -0,0 +1,236 @@ +[ + { + "id": "bucus_welcome", + "message": "Hi again, welcome back to the .. Oh wait, I thought you were someone else.", + "replies": [ + { + "text": "Have you seen my brother Andor?", + "nextPhraseID": "bucus_andor_select" + }, + { + "text": "What do you know about the Thieves' Guild?", + "nextPhraseID": "bucus_thieves_select" + } + ] + }, + { + "id": "bucus_andor_select", + "replies": [ + { + "nextPhraseID": "bucus_umar_1", + "requires": { + "progress": "bucus:100" + } + }, + { + "nextPhraseID": "bucus_andor_no_1" + } + ] + }, + { + "id": "bucus_andor_no_1", + "message": "How interesting that you should ask. What if I had seen him? Why would I tell you?", + "replies": [ + { + "text": "N", + "nextPhraseID": "bucus_andor_no_2" + } + ] + }, + { + "id": "bucus_andor_no_2", + "message": "No, I can't tell you. Now please leave." + }, + { + "id": "bucus_thieves_select", + "replies": [ + { + "nextPhraseID": "bucus_thieves_complete_3", + "requires": { + "progress": "bucus:100" + } + }, + { + "nextPhraseID": "bucus_thieves_continue", + "requires": { + "progress": "bucus:10" + } + }, + { + "nextPhraseID": "bucus_thieves_select2" + } + ] + }, + { + "id": "bucus_thieves_select2", + "replies": [ + { + "nextPhraseID": "bucus_thieves_1", + "requires": { + "progress": "andor:40" + } + }, + { + "nextPhraseID": "bucus_thieves_no" + } + ] + }, + { + "id": "bucus_thieves_no", + "message": "Wh, what? No, I don't know anything about that." + }, + { + "id": "bucus_umar_1", + "message": "Ok kid. You've proven yourself to me. Yes, I saw some other kid by that description running around here a few days ago.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bucus_umar_2" + } + ] + }, + { + "id": "bucus_umar_2", + "message": "I don't know what he was up to though. He kept asking a lot of questions. Kind of like you do. *snicker*", + "replies": [ + { + "text": "N", + "nextPhraseID": "bucus_umar_3" + } + ] + }, + { + "id": "bucus_umar_3", + "message": "Anyway, that's all I know. You should go talk to Umar, he probably knows more. Down that hatch over there.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 50 + } + ], + "replies": [ + { + "text": "Ok, bye", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bucus_thieves_1", + "message": "Who told you that? Argh.\n\nOk so you found us. Now what?", + "replies": [ + { + "text": "Can I join the Thieves' Guild?", + "nextPhraseID": "bucus_thieves_2" + } + ] + }, + { + "id": "bucus_thieves_2", + "message": "Hah! Join the Thieves' Guild?! You?!\n\nYou're one funny kid.", + "replies": [ + { + "text": "I'm serious.", + "nextPhraseID": "bucus_thieves_3" + }, + { + "text": "Yeah, pretty funny eh?", + "nextPhraseID": "bucus_thieves_3" + } + ] + }, + { + "id": "bucus_thieves_3", + "message": "Ok, tell you what kid. Do a task for me and maybe I'll consider giving you more info.", + "replies": [ + { + "text": "What kind of task are we talking about?", + "nextPhraseID": "bucus_thieves_4" + }, + { + "text": "As long as this leads to some treasure, I'm in!", + "nextPhraseID": "bucus_thieves_4" + } + ] + }, + { + "id": "bucus_thieves_4", + "message": "Bring me the key of Luthor and we can talk more. I don't know anything about the key itself, but rumor has it that it is located somewhere in the catacombs beneath Fallhaven Church.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 10 + } + ], + "replies": [ + { + "text": "Ok, sounds easy enough.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bucus_thieves_continue", + "message": "How is the search for the key of Luthor going?", + "replies": [ + { + "text": "What was I supposed to do again?", + "nextPhraseID": "bucus_thieves_4" + }, + { + "text": "Here, I have it. The key of Luthor.", + "nextPhraseID": "bucus_thieves_complete_1", + "requires": { + "item": { + "itemID": "key_luthor", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "I'm still looking for it. Bye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bucus_thieves_complete_1", + "message": "Wow, you actually got the key of Luthor? I didn't think you would make it out of there.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 100 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "bucus_thieves_complete_2" + } + ] + }, + { + "id": "bucus_thieves_complete_2", + "message": "Well done kid.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bucus_thieves_complete_3" + } + ] + }, + { + "id": "bucus_thieves_complete_3", + "message": "So, let's talk. What do you want to know?", + "replies": [ + { + "text": "What do you know about my brother Andor?", + "nextPhraseID": "bucus_umar_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_fallhaven_church.json b/AndorsTrail/res/raw/conversationlist_fallhaven_church.json new file mode 100644 index 000000000..8a1322e54 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_fallhaven_church.json @@ -0,0 +1,265 @@ +[ + { + "id": "chapelgoer", + "message": "Shadow, embrace me." + }, + { + "id": "thoronir_default", + "message": "Bask in the Shadow, my child.", + "replies": [ + { + "text": "What can you tell me about the Shadow?", + "nextPhraseID": "thoronir_shadow_1" + }, + { + "text": "Can you tell me more about the church?", + "nextPhraseID": "thoronir_church_1" + }, + { + "text": "Are the Bonemeal potions ready yet?", + "nextPhraseID": "thoronir_trade_bonemeal", + "requires": { + "progress": "bonemeal:100" + } + } + ] + }, + { + "id": "thoronir_shadow_1", + "message": "The Shadow protects us from the dangers of the night. It keeps us safe and comforts us when we sleep.", + "replies": [ + { + "text": "Tharal sent me and told me to tell you the password 'Glow of the Shadow'.", + "nextPhraseID": "thoronir_tharal_select", + "requires": { + "progress": "bonemeal:30" + } + }, + { + "text": "Shadow be with you.", + "nextPhraseID": "thoronir_default" + }, + { + "text": "Sounds like nonsense to me.", + "nextPhraseID": "thoronir_default" + } + ] + }, + { + "id": "thoronir_church_1", + "message": "This is our chapel of worship in Fallhaven. Our community turns to us for support.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thoronir_church_2" + } + ] + }, + { + "id": "thoronir_church_2", + "message": "This church has withstood hundreds of years, and has been kept safe from grave robbers.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thoronir_church_3" + } + ] + }, + { + "id": "thoronir_tharal_select", + "replies": [ + { + "nextPhraseID": "thoronir_trade_bonemeal", + "requires": { + "progress": "bonemeal:100" + } + }, + { + "nextPhraseID": "thoronir_tharal_1" + } + ] + }, + { + "id": "thoronir_tharal_1", + "message": "Glow of the Shadow indeed my child. So my old friend Tharal in Crossglen village sent you?", + "replies": [ + { + "text": "What can you tell me about bonemeal?", + "nextPhraseID": "thoronir_tharal_2" + } + ] + }, + { + "id": "thoronir_church_3", + "message": "The catacombs beneath the church house the remains of our passed leaders. Our great King Luthor is rumored to be buried there.", + "replies": [ + { + "text": "Has anyone entered the catacombs?", + "nextPhraseID": "thoronir_church_4", + "requires": { + "progress": "bucus:10" + } + }, + { + "text": "There was something else I wanted to talk about.", + "nextPhraseID": "thoronir_default" + } + ] + }, + { + "id": "thoronir_church_4", + "message": "No one is allowed down in the catacombs, except for Athamyr, my apprentice. He is the only one that has been down there for years.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bucus", + "value": 20 + } + ], + "replies": [ + { + "text": "Ok, I might go see him.", + "nextPhraseID": "thoronir_default" + } + ] + }, + { + "id": "thoronir_tharal_2", + "message": "Shhh, we shouldn't talk so loud about using Bonemeal. As you know, Lord Geomyr issued a ban on all use of Bonemeal.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thoronir_tharal_3" + } + ] + }, + { + "id": "thoronir_tharal_3", + "message": "When the ban came, I did not dare keep any, so I threw my whole supply away. It was quite foolish now that I look back on it.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thoronir_tharal_4" + } + ] + }, + { + "id": "thoronir_tharal_4", + "message": "Do you think you could find me 5 skeletal bones that I can use for mixing a Bonemeal potion? The bonemeal is very potent in healing old wounds.", + "replies": [ + { + "text": "Sure, I might be able to do that.", + "nextPhraseID": "thoronir_tharal_5" + }, + { + "text": "I have those bones for you.", + "nextPhraseID": "thoronir_tharal_complete", + "requires": { + "item": { + "itemID": "bone", + "quantity": 5, + "requireType": 0 + } + } + } + ] + }, + { + "id": "thoronir_tharal_5", + "message": "Thank you, please come back soon. I heard there were some undead near an old abandoned house just north of Fallhaven. Maybe you can check for bones there?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 40 + } + ], + "replies": [ + { + "text": "Ok, I'll go check there.", + "nextPhraseID": "thoronir_default" + } + ] + }, + { + "id": "thoronir_tharal_complete", + "message": "Thank you, these bones will do fine. Now I can start creating some bonemeal healing potions for you.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bonemeal", + "value": 100 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "thoronir_complete_2" + } + ] + }, + { + "id": "thoronir_complete_2", + "message": "Give me some time to mix the Bonemeal potion. It is a very potent healing potion. Come back in a little while." + }, + { + "id": "thoronir_trade_bonemeal", + "message": "Yes, the Bonemeal potions are ready. Please use them with care, and don't let the guards see you. We are not actually allowed to use them anymore.", + "replies": [ + { + "text": "Let me see what potions you have made so far.", + "nextPhraseID": "S" + }, + { + "text": "There was something else I wanted to talk about.", + "nextPhraseID": "thoronir_default" + } + ] + }, + { + "id": "catacombguard", + "message": "Turn back while you still can, mortal. This is no place for you. Only death awaits you here.", + "replies": [ + { + "text": "Very well. I will turn back.", + "nextPhraseID": "X" + }, + { + "text": "Move aside, I need to get deeper into the catacombs.", + "nextPhraseID": "catacombguard1" + }, + { + "text": "By the Shadow, you will not stop me.", + "nextPhraseID": "catacombguard1" + } + ] + }, + { + "id": "catacombguard1", + "message": "Nooo, you shall not pass!", + "replies": [ + { + "text": "Ok. Let's fight.", + "nextPhraseID": "F" + } + ] + }, + { + "id": "luthor", + "message": "*hissss* What mortal disturbs my sleep?", + "replies": [ + { + "text": "By the Shadow, what are you?", + "nextPhraseID": "F" + }, + { + "text": "At last, a worthy fight! I have been waiting for this.", + "nextPhraseID": "F" + }, + { + "text": "Whatever, let's get this over with.", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_fallhaven_drunk.json b/AndorsTrail/res/raw/conversationlist_fallhaven_drunk.json new file mode 100644 index 000000000..ee6f92639 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_fallhaven_drunk.json @@ -0,0 +1,219 @@ +[ + { + "id": "fallhaven_drunk", + "message": "No problem. No sireee! Not causing any more trouble now. I sits here outside now.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_2" + } + ] + }, + { + "id": "fallhaven_drunk_2", + "message": "Wait, who are you again? Are you that guard?", + "replies": [ + { + "text": "Yes", + "nextPhraseID": "fallhaven_drunk_3_1" + }, + { + "text": "No", + "nextPhraseID": "fallhaven_drunk_3_2" + } + ] + }, + { + "id": "fallhaven_drunk_3_1", + "message": "Oh, sir. I'm not causing any trouble anymore, see? I sits outside now as you says, ok?", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_4" + } + ] + }, + { + "id": "fallhaven_drunk_3_2", + "message": "Oh good. That guard threw me out of the tavern. If I see him again I'll show him one thing or another.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_4" + } + ] + }, + { + "id": "fallhaven_drunk_4", + "message": "Drink drink drink, drink some more. Drink, drink .. Uh how did it go again?", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_5" + } + ] + }, + { + "id": "fallhaven_drunk_5", + "message": "Were you saying something? Where was I? Yes, so we were in this dungeon.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_6" + } + ] + }, + { + "id": "fallhaven_drunk_6", + "message": "Or was it a house? I can't remember.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_7" + } + ] + }, + { + "id": "fallhaven_drunk_7", + "message": "No no, it was outside! Now I remember.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_7_select" + } + ] + }, + { + "id": "fallhaven_drunk_7_select", + "replies": [ + { + "nextPhraseID": "fallhaven_drunk_11", + "requires": { + "progress": "fallhavendrunk:100" + } + }, + { + "nextPhraseID": "fallhaven_drunk_8" + } + ] + }, + { + "id": "fallhaven_drunk_8", + "message": "That's where we..\n\nHey, where did my mead go? Did you take it from me? ", + "replies": [ + { + "text": "Yes", + "nextPhraseID": "fallhaven_drunk_9_1" + }, + { + "text": "No", + "nextPhraseID": "fallhaven_drunk_9_2" + } + ] + }, + { + "id": "fallhaven_drunk_9_1", + "message": "Well then give it back! Or go buy me another mead.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fallhavendrunk", + "value": 10 + } + ], + "replies": [ + { + "text": "Here, have some mead.", + "nextPhraseID": "fallhaven_drunk_10", + "requires": { + "item": { + "itemID": "mead", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Ok, I'll go buy some mead for you.", + "nextPhraseID": "X" + }, + { + "text": "No. I don't think I should help you. Goodbye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_drunk_9_2", + "message": "I must have drunk it then. Could you get me a new mead do you think? ", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fallhavendrunk", + "value": 10 + } + ], + "replies": [ + { + "text": "Here, have some mead.", + "nextPhraseID": "fallhaven_drunk_10", + "requires": { + "item": { + "itemID": "mead", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Ok, I'll go buy some mead for you.", + "nextPhraseID": "X" + }, + { + "text": "No. I don't think I should help you. Goodbye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_drunk_10", + "message": "Oh sweet drinks of joy. May the sssshadow be with you kid. *makes big eyes*", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_11" + } + ] + }, + { + "id": "fallhaven_drunk_11", + "message": "*takes a gulp of the mead*\n\nThat's good stuff!", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_drunk_12" + } + ] + }, + { + "id": "fallhaven_drunk_12", + "message": "Yeah, me and Unnmir had good times. Go ask him yourself, he is usually in the barn to the east of here. I wonder *burps* where that treasure went.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fallhavendrunk", + "value": 100 + } + ], + "replies": [ + { + "text": "Treasure? I'm in! I'll go look for Unnmir right away.", + "nextPhraseID": "X" + }, + { + "text": "Thank you for the story. Goodbye.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_fallhaven_gaela.json b/AndorsTrail/res/raw/conversationlist_fallhaven_gaela.json new file mode 100644 index 000000000..c055eb4df --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_fallhaven_gaela.json @@ -0,0 +1,84 @@ +[ + { + "id": "gaela", + "replies": [ + { + "nextPhraseID": "gaela_r", + "requires": { + "progress": "andor:40" + } + }, + { + "nextPhraseID": "gaela_0" + } + ] + }, + { + "id": "gaela_r", + "message": "Hello again. I hope you will find what you are looking for." + }, + { + "id": "gaela_0", + "message": "Swift is my blade. Poisoned is my tongue. Or was it the other way around?", + "replies": [ + { + "text": "There seems to be a lot of thieves here in Fallhaven.", + "nextPhraseID": "gaela_1" + } + ] + }, + { + "id": "gaela_1", + "message": "Yes, we thieves have a strong presence here.", + "replies": [ + { + "text": "Anything more?", + "nextPhraseID": "gaela_2", + "requires": { + "progress": "andor:30" + } + } + ] + }, + { + "id": "gaela_2", + "message": "I heard that you helped Gruil, a fellow thief in Crossglen village.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gaela_3" + } + ] + }, + { + "id": "gaela_3", + "message": "Word has also reached me that you are looking for someone. I might be able to help you.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gaela_4" + } + ] + }, + { + "id": "gaela_4", + "message": "You should go talk to Bucus in the derelict house a bit southwest of here. Tell him you want to know more about the Thieves' Guild.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 40 + } + ], + "replies": [ + { + "text": "Thanks, I'll go talk to him.", + "nextPhraseID": "gaela_5" + } + ] + }, + { + "id": "gaela_5", + "message": "Consider it a favor done in return for helping Gruil." + } +] diff --git a/AndorsTrail/res/raw/conversationlist_fallhaven_larcal.json b/AndorsTrail/res/raw/conversationlist_fallhaven_larcal.json new file mode 100644 index 000000000..34afa4ee1 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_fallhaven_larcal.json @@ -0,0 +1,85 @@ +[ + { + "id": "larcal", + "message": "I don't have time for you, kid. Get lost.", + "replies": [ + { + "text": "I found a note with your name on it while looking for the book 'Calomyran Secrets'.", + "nextPhraseID": "larcal_1", + "requires": { + "progress": "calomyran:20" + } + } + ] + }, + { + "id": "larcal_1", + "message": "Now now, what have we here? Are you implying that I have been down in Arcir's basement?", + "replies": [ + { + "text": "N", + "nextPhraseID": "larcal_2" + } + ] + }, + { + "id": "larcal_2", + "message": "So, maybe I was. The book is mine anyway.", + "replies": [ + { + "text": "N", + "nextPhraseID": "larcal_3" + } + ] + }, + { + "id": "larcal_3", + "message": "Look, let's solve this peacefully. You walk away and forget about that book, and you might still live.", + "replies": [ + { + "text": "Very well. Keep your book.", + "nextPhraseID": "larcal_4" + }, + { + "text": "No, you will give me that book.", + "nextPhraseID": "larcal_5" + } + ] + }, + { + "id": "larcal_4", + "message": "Good boy. Now run away." + }, + { + "id": "larcal_5", + "message": "Ok, now you're starting to annoy me, kid. Get lost while you still can.", + "replies": [ + { + "text": "Very well. I will leave.", + "nextPhraseID": "X" + }, + { + "text": "No, that book is not yours!", + "nextPhraseID": "larcal_6" + } + ] + }, + { + "id": "larcal_6", + "message": "You are still here? Ok then, if you want the book that bad, you will have to take it from me!", + "replies": [ + { + "text": "At last, a fight. I have been waiting for this!", + "nextPhraseID": "F" + }, + { + "text": "I had hoped it wouldn't come to this.", + "nextPhraseID": "F" + }, + { + "text": "Very well. I will leave.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_fallhaven_nocmar.json b/AndorsTrail/res/raw/conversationlist_fallhaven_nocmar.json new file mode 100644 index 000000000..af3adba38 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_fallhaven_nocmar.json @@ -0,0 +1,258 @@ +[ + { + "id": "nocmar", + "message": "Hello. I'm Nocmar.", + "replies": [ + { + "text": "This place looks like a smithy. Do you have anything to trade?", + "nextPhraseID": "nocmar_trade_select" + }, + { + "text": "Unnmir sent me.", + "nextPhraseID": "nocmar_quest_select", + "requires": { + "progress": "nocmar:10" + } + }, + { + "text": "Bye", + "nextPhraseID": "X" + } + ] + }, + { + "id": "nocmar_quest_select", + "replies": [ + { + "nextPhraseID": "nocmar_complete_5", + "requires": { + "progress": "nocmar:200" + } + }, + { + "nextPhraseID": "nocmar_continue", + "requires": { + "progress": "nocmar:20" + } + }, + { + "nextPhraseID": "nocmar_quest" + } + ] + }, + { + "id": "nocmar_trade_select", + "replies": [ + { + "nextPhraseID": "S", + "requires": { + "progress": "nocmar:200" + } + }, + { + "nextPhraseID": "nocmar_trade_1" + } + ] + }, + { + "id": "nocmar_trade_1", + "message": "I don't have any items for sale. I used to have a lot of things for sale, but nowadays I'm not allowed to sell anything.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_trade_2" + } + ] + }, + { + "id": "nocmar_trade_2", + "message": "I was once one of the greatest smiths in Fallhaven. Then that bastard Lord Geomyr banned my use of heartsteel.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_trade_3" + } + ] + }, + { + "id": "nocmar_trade_3", + "message": "By decree of Lord Geomyr, no one in Fallhaven is allowed to even use heartsteel weapons. Much less sell any.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_trade_4" + } + ] + }, + { + "id": "nocmar_trade_4", + "message": "So now I have to hide the few weapons I have left. I won't dare sell any of them anymore.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_trade_4_1" + } + ] + }, + { + "id": "nocmar_trade_4_1", + "message": "I haven't seen the heartsteel glow in several years now that Lord Geomyr has banned them.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_trade_5" + } + ] + }, + { + "id": "nocmar_trade_5", + "message": "So, unfortunately I can't sell you any of my weapons." + }, + { + "id": "nocmar_quest", + "message": "Unnmir sent you huh? I guess it must be important then.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nocmar", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_quest_1" + } + ] + }, + { + "id": "nocmar_quest_1", + "message": "Ok, these old weapons have lost their inner glow now that they haven't been used in a while.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_quest_2" + } + ] + }, + { + "id": "nocmar_quest_2", + "message": "To make the heartsteel glow again, we will need a heartstone.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_quest_3" + } + ] + }, + { + "id": "nocmar_quest_3", + "message": "Years ago, we used to fight the liches of Undertell. I have no idea if they still haunt the place.", + "replies": [ + { + "text": "Undertell? What's that?", + "nextPhraseID": "nocmar_quest_4" + } + ] + }, + { + "id": "nocmar_quest_4", + "message": "Undertell; the pits of the lost souls. Travel south and enter the caverns of the Dwarves. Follow the horrid smell from there.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_quest_5" + } + ] + }, + { + "id": "nocmar_quest_5", + "message": "Beware the liches of Undertell, if they are still are around. Those things can kill you by their gaze alone." + }, + { + "id": "nocmar_continue", + "message": "Have you found a heartstone yet?", + "replies": [ + { + "text": "Yes, at last I found it.", + "nextPhraseID": "nocmar_complete", + "requires": { + "item": { + "itemID": "heartstone", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Could you tell me the story again?", + "nextPhraseID": "nocmar_quest_1" + }, + { + "text": "No, not yet", + "nextPhraseID": "nocmar_continue_2" + } + ] + }, + { + "id": "nocmar_continue_2", + "message": "Please keep looking. Unnmir must have something important planned for you." + }, + { + "id": "nocmar_complete", + "message": "By the Shadow. You actually found a heartstone. I thought I wouldn't live to see the day.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nocmar", + "value": 200 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_complete_2" + } + ] + }, + { + "id": "nocmar_complete_2", + "message": "Can you see the glow? It's literally pulsating.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_complete_3" + } + ] + }, + { + "id": "nocmar_complete_3", + "message": "Quick. Let's get these old heartsteel weapons glowing again.", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_complete_4" + } + ] + }, + { + "id": "nocmar_complete_4", + "message": "*Nocmar places the heartstone among the heartsteel weapons*", + "replies": [ + { + "text": "N", + "nextPhraseID": "nocmar_complete_5" + } + ] + }, + { + "id": "nocmar_complete_5", + "message": "Can you feel it? The heartsteel is glowing again.", + "replies": [ + { + "text": "Let me see what items you have available.", + "nextPhraseID": "S" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_fallhaven_oldman.json b/AndorsTrail/res/raw/conversationlist_fallhaven_oldman.json new file mode 100644 index 000000000..330e9dfa6 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_fallhaven_oldman.json @@ -0,0 +1,151 @@ +[ + { + "id": "fallhaven_oldman", + "replies": [ + { + "nextPhraseID": "fallhaven_oldman_complete_2", + "requires": { + "progress": "calomyran:100" + } + }, + { + "nextPhraseID": "fallhaven_oldman_continue", + "requires": { + "progress": "calomyran:10" + } + }, + { + "nextPhraseID": "fallhaven_oldman_1" + } + ] + }, + { + "id": "fallhaven_oldman_1", + "message": "Would you help an old man please?", + "replies": [ + { + "text": "Sure, what do you need help with?", + "nextPhraseID": "fallhaven_oldman_2" + }, + { + "text": "I might. Are we talking about some kind of reward?", + "nextPhraseID": "fallhaven_oldman_2" + }, + { + "text": "No, I won't help an old timer like you. Bye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_oldman_2", + "message": "I recently lost a very valuable book of mine.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_oldman_3" + } + ] + }, + { + "id": "fallhaven_oldman_3", + "message": "I know I had it with me yesterday. Now I can't seem to find it.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_oldman_4" + } + ] + }, + { + "id": "fallhaven_oldman_4", + "message": "I never lose things! Someone must have stolen it, that's my guess.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_oldman_5" + } + ] + }, + { + "id": "fallhaven_oldman_5", + "message": "Would you please go look for my book? It's called 'Calomyran Secrets'.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_oldman_6" + } + ] + }, + { + "id": "fallhaven_oldman_6", + "message": "I have no idea where it might be. You could go ask Arcir, he seems very fond of his books. *points at the house to the south*", + "rewards": [ + { + "rewardType": 0, + "rewardID": "calomyran", + "value": 10 + } + ], + "replies": [ + { + "text": "Ok, I'll go ask Arcir. Goodbye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_oldman_continue", + "message": "How is the search for my book going? It's called 'Calomyran Secrets'. Have you found my book?", + "replies": [ + { + "text": "Yes, I found it.", + "nextPhraseID": "fallhaven_oldman_complete", + "requires": { + "item": { + "itemID": "calomyran_secrets", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "No, I have not found it yet.", + "nextPhraseID": "fallhaven_oldman_6" + }, + { + "text": "Could you tell me your story again please?", + "nextPhraseID": "fallhaven_oldman_2" + } + ] + }, + { + "id": "fallhaven_oldman_complete", + "message": "My book! Thank you, thank you! Where was it? No, don't tell me. Here, take these coins for your trouble.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "calomyran", + "value": 100 + }, + { + "rewardType": 1, + "rewardID": "gold51" + } + ], + "replies": [ + { + "text": "Thank you. Goodbye.", + "nextPhraseID": "X" + }, + { + "text": "At last, some gold. Bye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_oldman_complete_2", + "message": "Thank you so much for finding my book!" + } +] diff --git a/AndorsTrail/res/raw/conversationlist_fallhaven_south.json b/AndorsTrail/res/raw/conversationlist_fallhaven_south.json new file mode 100644 index 000000000..5d5865fc4 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_fallhaven_south.json @@ -0,0 +1,52 @@ +[ + { + "id": "fallhaven_lumberjack", + "message": "Hi, I'm Jakrar.", + "replies": [ + { + "text": "Are you a woodcutter?", + "nextPhraseID": "fallhaven_lumberjack_2" + } + ] + }, + { + "id": "fallhaven_lumberjack_2", + "message": "Yes, I'm Fallhaven's woodcutter. Need anything done in the finest of woods? I have probably got it." + }, + { + "id": "alaun", + "message": "Hello. I'm Alaun. How can I help you?", + "replies": [ + { + "text": "Have you seen my brother Andor? He looks similar to me.", + "nextPhraseID": "alaun_2" + } + ] + }, + { + "id": "alaun_2", + "message": "You are looking for your brother you say? Looks like you? Hm.", + "replies": [ + { + "text": "N", + "nextPhraseID": "alaun_3" + } + ] + }, + { + "id": "alaun_3", + "message": "No, I cannot recall seeing anyone by that description. Maybe you should try in Crossglen village west of here." + }, + { + "id": "fallhaven_farmer1", + "message": "Hello there. Please do not bother me, I have a lot of work to do." + }, + { + "id": "fallhaven_farmer2", + "message": "Hello. Could you please move out of the way? I am trying to work here." + }, + { + "id": "khorand", + "message": "Hey you, don't even think of touching any of the crates. I am watching you!" + } +] diff --git a/AndorsTrail/res/raw/conversationlist_fallhaven_tavern.json b/AndorsTrail/res/raw/conversationlist_fallhaven_tavern.json new file mode 100644 index 000000000..e500a39ca --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_fallhaven_tavern.json @@ -0,0 +1,107 @@ +[ + { + "id": "bela", + "message": "Welcome to Fallhaven Tavern. Have a seat anywhere.", + "replies": [ + { + "text": "Let me see what food and drinks you have available", + "nextPhraseID": "S" + }, + { + "text": "Are there any rooms available?", + "nextPhraseID": "bela_room_select" + } + ] + }, + { + "id": "bela_room_1", + "message": "A room will cost you only 10 gold.", + "replies": [ + { + "text": "Buy [10 gold]", + "nextPhraseID": "bela_room_2", + "requires": { + "item": { + "itemID": "gold", + "quantity": 10, + "requireType": 0 + } + } + }, + { + "text": "No thanks.", + "nextPhraseID": "bela" + } + ] + }, + { + "id": "bela_room_2", + "message": "Thanks. Take the last room down at the end of the hall.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fallhaventavern", + "value": 10 + } + ], + "replies": [ + { + "text": "Thank you. There was something else I wanted to talk about.", + "nextPhraseID": "bela" + }, + { + "text": "Thanks, bye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bela_room_3", + "message": "I hope the room suits your needs. It's the last room down at the end of the hall.", + "replies": [ + { + "text": "Thank you. There was something else I wanted to talk about.", + "nextPhraseID": "bela" + }, + { + "text": "Thanks, bye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "bela_room_select", + "replies": [ + { + "nextPhraseID": "bela_room_3", + "requires": { + "progress": "fallhaventavern:10" + } + }, + { + "nextPhraseID": "bela_room_1" + } + ] + }, + { + "id": "ganos", + "message": "You seem familiar somehow.", + "replies": [ + { + "text": "Do you have anything to trade?", + "nextPhraseID": "S" + }, + { + "text": "Do you know anything about the Thieves' Guild?", + "nextPhraseID": "ganos_1", + "requires": { + "progress": "andor:30" + } + } + ] + }, + { + "id": "ganos_1", + "message": "Thieves' Guild? How would I know? Do I look like a thief to you?! Hrmpf." + } +] diff --git a/AndorsTrail/res/raw/conversationlist_fallhaven_unnmir.json b/AndorsTrail/res/raw/conversationlist_fallhaven_unnmir.json new file mode 100644 index 000000000..31424bc69 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_fallhaven_unnmir.json @@ -0,0 +1,174 @@ +[ + { + "id": "unnmir", + "replies": [ + { + "nextPhraseID": "unnmir_r", + "requires": { + "progress": "nocmar:10" + } + }, + { + "nextPhraseID": "unnmir_0" + } + ] + }, + { + "id": "unnmir_r", + "message": "Hello again. You should go talk to Nocmar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_13" + } + ] + }, + { + "id": "unnmir_0", + "message": "Hi there.", + "replies": [ + { + "text": "There was a drunk outside the tavern that told me a story about you two.", + "nextPhraseID": "unnmir_1", + "requires": { + "progress": "fallhavendrunk:100" + } + } + ] + }, + { + "id": "unnmir_1", + "message": "That old drunk over at the tavern told you his story did he?", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_2" + } + ] + }, + { + "id": "unnmir_2", + "message": "Same old story. We used to travel together a few years back.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_3" + } + ] + }, + { + "id": "unnmir_3", + "message": "Real adventuring you know, swords and spells.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_4" + } + ] + }, + { + "id": "unnmir_4", + "message": "Then, after a while, we stopped. I can't really say why, I guess we got tired of life on the road. We settled down here in Fallhaven.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_5" + } + ] + }, + { + "id": "unnmir_5", + "message": "Nice little town here. A lot of thieves around, but they don't bother me.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_6" + } + ] + }, + { + "id": "unnmir_6", + "message": "So what's your story, kid? How did you end up here in Fallhaven?", + "replies": [ + { + "text": "I'm looking for my brother.", + "nextPhraseID": "unnmir_7" + } + ] + }, + { + "id": "unnmir_7", + "message": "Yeah yeah, I get it. Your brother has probably run off to some dungeon, trying to go adventuring. *rolls eyes*", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_8" + } + ] + }, + { + "id": "unnmir_8", + "message": "Or maybe he has gone to one of the bigger cities to the north.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_9" + } + ] + }, + { + "id": "unnmir_9", + "message": "Can't say I blame him for wanting to see the world.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_10" + } + ] + }, + { + "id": "unnmir_10", + "message": "Hey, by the way, are you looking to be an adventurer?", + "replies": [ + { + "text": "Yes", + "nextPhraseID": "unnmir_11" + }, + { + "text": "No, not really.", + "nextPhraseID": "unnmir_12" + } + ] + }, + { + "id": "unnmir_11", + "message": "Nice. I'll give you a hint, kid. *snickering*. Go see Nocmar over by the west side of town. Tell him I sent you.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nocmar", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "unnmir_13" + } + ] + }, + { + "id": "unnmir_12", + "message": "Smart move. Adventuring leads to a lot of scars. If you know what I mean." + }, + { + "id": "unnmir_13", + "message": "His house is just southwest of the tavern.", + "replies": [ + { + "text": "Thanks, I'll go see him.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_fallhaven_unzel.json b/AndorsTrail/res/raw/conversationlist_fallhaven_unzel.json new file mode 100644 index 000000000..aa7b67ef3 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_fallhaven_unzel.json @@ -0,0 +1,326 @@ +[ + { + "id": "unzel_1", + "message": "Hello. I'm Unzel.", + "replies": [ + { + "text": "Is this your camp?", + "nextPhraseID": "unzel_2" + }, + { + "text": "I am sent by Vacor to kill you.", + "nextPhraseID": "unzel_3", + "requires": { + "progress": "vacor:40" + } + } + ] + }, + { + "id": "unzel_2", + "message": "Yes, this is my camp. Lovely place, isn't it?", + "replies": [ + { + "text": "Bye", + "nextPhraseID": "X" + } + ] + }, + { + "id": "unzel_3", + "message": "Vacor sent you huh? I guess I should have figured he would send someone sooner or later.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_4" + } + ] + }, + { + "id": "unzel_4", + "message": "Very well then. Kill me if you must, or allow me to tell you my side of the story.", + "replies": [ + { + "text": "Hah, I will enjoy killing you!", + "nextPhraseID": "unzel_fight" + }, + { + "text": "I will listen to your story.", + "nextPhraseID": "unzel_5" + } + ] + }, + { + "id": "unzel_fight", + "message": "Very well, let's fight then.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 53 + } + ], + "replies": [ + { + "text": "A fight it is!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "unzel_5", + "message": "Thank you for listening.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_10" + } + ] + }, + { + "id": "unzel_10", + "message": "Vacor and I used to travel together, but he started to get obsessed with his spell making.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_11" + } + ] + }, + { + "id": "unzel_11", + "message": "He even started to question the Shadow. I knew I had to do something to stop him!", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_12" + } + ] + }, + { + "id": "unzel_12", + "message": "I started questioning him about what he was up to, but he just wanted to keep on going.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_13" + } + ] + }, + { + "id": "unzel_13", + "message": "After a while, he became obsessed with the thought of a rift spell. He said it would grant him unlimited powers against the Shadow.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_14" + } + ] + }, + { + "id": "unzel_14", + "message": "So, there was only one thing I could do. I left him and needed to stop him from trying to create the rift spell.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_15" + } + ] + }, + { + "id": "unzel_15", + "message": "I sent some friends to take the spell from him.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_16_select" + } + ] + }, + { + "id": "unzel_16_select", + "replies": [ + { + "nextPhraseID": "unzel_16_2", + "requires": { + "progress": "vacor:50" + } + }, + { + "nextPhraseID": "unzel_16_1" + } + ] + }, + { + "id": "unzel_16_1", + "message": "So, here we are.", + "replies": [ + { + "text": "I killed the four bandits you sent after Vacor.", + "nextPhraseID": "unzel_17" + } + ] + }, + { + "id": "unzel_16_2", + "message": "So, here we are.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_19" + } + ] + }, + { + "id": "unzel_17", + "message": "What? You killed my four friends? Argh, I feel the rage coming.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_18" + } + ] + }, + { + "id": "unzel_18", + "message": "However, I also realize that all this is the making of Vacor. I'll give you a choice now. Choose wisely.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_19" + } + ] + }, + { + "id": "unzel_19", + "message": "Either you side with Vacor and his rift spell, or side with the Shadow, and help me get rid of him. Who will you help?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 50 + } + ], + "replies": [ + { + "text": "I will side with you. The Shadow must not be disturbed.", + "nextPhraseID": "unzel_20" + }, + { + "text": "I will side with Vacor.", + "nextPhraseID": "unzel_fight" + } + ] + }, + { + "id": "unzel_20", + "message": "Thank you my friend. We will keep the Shadow safe from Vacor.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 51 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_21" + } + ] + }, + { + "id": "unzel_21", + "message": "You should go talk to him about the Shadow." + }, + { + "id": "unzel_return_1", + "message": "Welcome back. Did you talk to Vacor?", + "replies": [ + { + "text": "Yes, I have dealt with him.", + "nextPhraseID": "unzel_30", + "requires": { + "item": { + "itemID": "ring_vacor", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "No, not yet.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "unzel_30", + "message": "You killed him? You have my thanks friend. Now we are safe from Vacor's rift spell. Here, take these coins for your help.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 61 + }, + { + "rewardType": 1, + "rewardID": "gold200" + } + ], + "replies": [ + { + "text": "Shadow be with you.", + "nextPhraseID": "X" + }, + { + "text": "Thank you.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "unzel_40", + "message": "Thank you for your help. Now we are safe from Vacor's rift spell.", + "replies": [ + { + "text": "I have a message for you from Kaverin in Remgard.", + "nextPhraseID": "unzel_msg1", + "requires": { + "progress": "kaverin:25", + "item": { + "itemID": "kaverin_message", + "quantity": 1, + "requireType": 1 + } + } + } + ] + }, + { + "id": "unzel", + "replies": [ + { + "nextPhraseID": "unzel_msg_r0", + "requires": { + "progress": "kaverin:30" + } + }, + { + "nextPhraseID": "unzel_40", + "requires": { + "progress": "vacor:61" + } + }, + { + "nextPhraseID": "unzel_return_1", + "requires": { + "progress": "vacor:51" + } + }, + { + "nextPhraseID": "unzel_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_fallhaven_vacor.json b/AndorsTrail/res/raw/conversationlist_fallhaven_vacor.json new file mode 100644 index 000000000..af77ce55e --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_fallhaven_vacor.json @@ -0,0 +1,604 @@ +[ + { + "id": "vacor", + "replies": [ + { + "nextPhraseID": "vacor_return_complete0", + "requires": { + "progress": "vacor:60" + } + }, + { + "nextPhraseID": "vacor_return2", + "requires": { + "progress": "vacor:40" + } + }, + { + "nextPhraseID": "vacor_42", + "requires": { + "progress": "vacor:30" + } + }, + { + "nextPhraseID": "vacor_select1" + } + ] + }, + { + "id": "vacor_select1", + "replies": [ + { + "nextPhraseID": "vacor_return1", + "requires": { + "progress": "vacor:20" + } + }, + { + "nextPhraseID": "vacor_begin" + } + ] + }, + { + "id": "vacor_begin", + "message": "Hello.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_2" + } + ] + }, + { + "id": "vacor_2", + "message": "What are you, some kind of adventurer? Hm. Maybe you can be of use to me.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_3" + } + ] + }, + { + "id": "vacor_3", + "message": "Are you willing to help me?", + "replies": [ + { + "text": "Sure, what do you need help with?", + "nextPhraseID": "vacor_4" + }, + { + "text": "No, why should I help you?", + "nextPhraseID": "vacor_bah" + } + ] + }, + { + "id": "vacor_bah", + "message": "Bah, lowly creature. I knew I shouldn't have asked you. Now leave me." + }, + { + "id": "vacor_4", + "message": "A while ago, I was working on a rift spell that I had read about.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_5" + } + ] + }, + { + "id": "vacor_5", + "message": "The spell is supposed to, shall we say, open up new possibilities.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_6" + } + ] + }, + { + "id": "vacor_6", + "message": "Erm, yes, the rift spell will open things up alright. Ahem.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_7" + } + ] + }, + { + "id": "vacor_7", + "message": "So there I was working hard on getting the last pieces together for it.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_8" + } + ] + }, + { + "id": "vacor_8", + "message": "Then, all of a sudden, a gang of thugs came around and started bullying me.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_9" + } + ] + }, + { + "id": "vacor_9", + "message": "They said they were Messengers of the Shadow, and insisted that I should cease my spell making.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_10" + } + ] + }, + { + "id": "vacor_10", + "message": "Preposterous, isn't it? I was so close to having the power!", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_11" + } + ] + }, + { + "id": "vacor_11", + "message": "Oh, the power I could have had. My dear rift spell.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_12" + } + ] + }, + { + "id": "vacor_12", + "message": "Anyway, I was just about to finish the last piece of my rift spell when the bandits came and robbed me.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_13" + } + ] + }, + { + "id": "vacor_13", + "message": "The bandits took my notes for the spell and took off before I could call the guards.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_14" + } + ] + }, + { + "id": "vacor_14", + "message": "After years of work, I can't seem to remember the last parts of the spell.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_15" + } + ] + }, + { + "id": "vacor_15", + "message": "Do you think you could help me locate it? Then I could have the power at last!", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_16" + } + ] + }, + { + "id": "vacor_16", + "message": "You will of course be suitably rewarded for your part in me getting this power.", + "replies": [ + { + "text": "A reward? I'm in!", + "nextPhraseID": "vacor_17" + }, + { + "text": "Very well. I will help you.", + "nextPhraseID": "vacor_17" + }, + { + "text": "No thanks, this seems like something that I would rather not get involved with.", + "nextPhraseID": "vacor_bah" + } + ] + }, + { + "id": "vacor_17", + "message": "I knew I couldn't trust... Wait, what? You actually said yes? Hah, well then.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_18" + } + ] + }, + { + "id": "vacor_18", + "message": "Ok, find the four pieces of my rift spell that the bandits took, and bring the pieces to me.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_19" + } + ] + }, + { + "id": "vacor_19", + "message": "There were four bandits, and they all headed south of Fallhaven after I was attacked.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_20" + } + ] + }, + { + "id": "vacor_20", + "message": "You should search the southern parts of Fallhaven for the four bandits.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_21" + } + ] + }, + { + "id": "vacor_21", + "message": "Please hurry! I am so eager to open up the rift.. Erm, I mean finish the spell. Nothing odd with that right?" + }, + { + "id": "vacor_return1", + "message": "Hello again. How is the search for my missing pieces of the rift spell going?", + "replies": [ + { + "text": "I have found all the pieces.", + "nextPhraseID": "vacor_40", + "requires": { + "item": { + "itemID": "vacor_spell", + "quantity": 4, + "requireType": 0 + } + } + }, + { + "text": "What was I supposed to do again?", + "nextPhraseID": "vacor_18" + }, + { + "text": "Could you tell me the whole story again?", + "nextPhraseID": "vacor_4" + } + ] + }, + { + "id": "vacor_40", + "message": "Oh, you found all four pieces? Hurry, give them to me.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_41" + } + ] + }, + { + "id": "vacor_41", + "message": "Yes, these are the pieces that the bandits took.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_42" + } + ] + }, + { + "id": "vacor_42", + "message": "Now I should be able to finish the rift spell and open up the Shadow rift .. erm I mean open up new possibilities. Yes, that's what I meant.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_43" + } + ] + }, + { + "id": "vacor_43", + "message": "The only obstacle between me and continuing my rift spell research is that stupid Unzel fellow.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_44" + } + ] + }, + { + "id": "vacor_44", + "message": "Unzel was my apprentice a while ago. But he started to annoy me with his questions and talk about morality.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_45" + } + ] + }, + { + "id": "vacor_45", + "message": "He said that my spell making was disrupting the will of the Shadow.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_46" + } + ] + }, + { + "id": "vacor_46", + "message": "Bah, the Shadow. What has it ever done for ME?!", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_47" + } + ] + }, + { + "id": "vacor_47", + "message": "I shall one day cast my rift spell and we will be rid of the Shadow.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_48" + } + ] + }, + { + "id": "vacor_48", + "message": "Anyway. I have a feeling that Unzel sent those bandits after me, and if I don't stop him he will probably send more.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_49" + } + ] + }, + { + "id": "vacor_49", + "message": "I need you to find Unzel and kill him for me. He can probably be found somewhere southwest of Fallhaven.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_50" + } + ] + }, + { + "id": "vacor_50", + "message": "Bring me his signet ring as proof when you have killed him.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_51" + } + ] + }, + { + "id": "vacor_51", + "message": "Now hurry, I cannot wait much longer. The power shall be MINE!" + }, + { + "id": "vacor_return2", + "message": "Hello again. Any progress yet?", + "replies": [ + { + "text": "About Unzel...", + "nextPhraseID": "vacor_return2_2" + }, + { + "text": "Could you tell me the story again?", + "nextPhraseID": "vacor_43" + } + ] + }, + { + "id": "vacor_return2_2", + "message": "Have you killed Unzel for me yet? Bring me his signet ring when you have killed him.", + "replies": [ + { + "text": "I have dealt with him. Here is his ring.", + "nextPhraseID": "vacor_60", + "requires": { + "item": { + "itemID": "ring_unzel", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "I listened to Unzel's story and have decided to side with him. The Shadow must be preserved.", + "nextPhraseID": "vacor_70", + "requires": { + "progress": "vacor:51" + } + } + ] + }, + { + "id": "vacor_60", + "message": "Ha ha, Unzel is dead! That pathetic creature is gone!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 60 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_61" + } + ] + }, + { + "id": "vacor_61", + "message": "I can see the blood on your boots. I even got you to kill his minions beforehand.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_62" + } + ] + }, + { + "id": "vacor_62", + "message": "This is a great day indeed. I will soon have the power!", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_63" + } + ] + }, + { + "id": "vacor_63", + "message": "Here, have these coins for your help.", + "rewards": [ + { + "rewardType": 1, + "rewardID": "gold200" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_64" + } + ] + }, + { + "id": "vacor_64", + "message": "Now leave me, I have work to do before I can cast the rift spell." + }, + { + "id": "vacor_return_complete0", + "replies": [ + { + "nextPhraseID": "vacor_msg_16", + "requires": { + "progress": "kaverin:90" + } + }, + { + "nextPhraseID": "vacor_msg_9", + "requires": { + "progress": "kaverin:75" + } + }, + { + "nextPhraseID": "vacor_msg1", + "requires": { + "progress": "kaverin:60", + "item": { + "itemID": "kaverin_message", + "quantity": 1, + "requireType": 1 + } + } + }, + { + "nextPhraseID": "vacor_return_complete" + } + ] + }, + { + "id": "vacor_return_complete", + "message": "Hello again, my assassin friend. I will soon have my rift spell ready." + }, + { + "id": "vacor_70", + "message": "What? He told you his story? You actually believed it?", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_71" + } + ] + }, + { + "id": "vacor_71", + "message": "I will give you one more chance. Either kill Unzel for me, and I will reward you handsomely, or you will have to fight me.", + "replies": [ + { + "text": "No. You must be stopped.", + "nextPhraseID": "vacor_72" + }, + { + "text": "Ok, I'll think about it once more.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "vacor_72", + "message": "Bah, lowly creature. I knew I shouldn't have trusted you. Now you will die along with your precious Shadow.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vacor", + "value": 54 + } + ], + "replies": [ + { + "text": "For the Shadow!", + "nextPhraseID": "F" + }, + { + "text": "You must be stopped.", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_fallhaven_warden.json b/AndorsTrail/res/raw/conversationlist_fallhaven_warden.json new file mode 100644 index 000000000..f396f39b2 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_fallhaven_warden.json @@ -0,0 +1,405 @@ +[ + { + "id": "fallhaven_warden", + "message": "State your business.", + "replies": [ + { + "text": "Who is that prisoner?", + "nextPhraseID": "warden_prisoner_1" + }, + { + "text": "I heard that you are fond of mead.", + "nextPhraseID": "fallhaven_warden_1", + "requires": { + "progress": "farrik:20" + } + }, + { + "text": "The thieves are planning an escape for their friend.", + "nextPhraseID": "fallhaven_warden_20", + "requires": { + "progress": "farrik:30" + } + } + ] + }, + { + "id": "warden_prisoner_1", + "message": "That thief? He was caught in the act. Trespassing he was. Trying to get down into the catacombs of Fallhaven church.", + "replies": [ + { + "text": "N", + "nextPhraseID": "warden_prisoner_2" + } + ] + }, + { + "id": "warden_prisoner_2", + "message": "Luckily, we caught him before he could get down there. Now he'll serve as an example to all other thieves.", + "replies": [ + { + "text": "N", + "nextPhraseID": "warden_prisoner_3" + } + ] + }, + { + "id": "warden_prisoner_3", + "message": "Damn thieves. There must be a nest of them around here somewhere. If only I could find where they hide." + }, + { + "id": "fallhaven_warden_1", + "message": "Mead? Oh.. no, I don't do that anymore. Who told you that?", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_2" + } + ] + }, + { + "id": "fallhaven_warden_2", + "message": "I've stopped doing that years ago.", + "replies": [ + { + "text": "Sounds like a good approach. Good luck with keeping away from it.", + "nextPhraseID": "X" + }, + { + "text": "Not just even a little bit?", + "nextPhraseID": "fallhaven_warden_3" + } + ] + }, + { + "id": "fallhaven_warden_3", + "message": "Um. *clears throat* I really shouldn't.", + "replies": [ + { + "text": "I brought some with me if you would like to have a sip.", + "nextPhraseID": "fallhaven_warden_4", + "requires": { + "progress": "farrik:25", + "item": { + "itemID": "sleepingmead", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Ok, goodbye", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_warden_4", + "message": "Oh sweet drinks of joy. I really shouldn't have this while on duty though.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 32 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_5" + } + ] + }, + { + "id": "fallhaven_warden_5", + "message": "I could get fined for drinking on duty. I don't think I would dare try it right now.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_6" + } + ] + }, + { + "id": "fallhaven_warden_6", + "message": "Thank you for the drink though, I will enjoy it when I get home later tomorrow.", + "replies": [ + { + "text": "You are welcome. Goodbye.", + "nextPhraseID": "X" + }, + { + "text": "What if someone would pay you the amount of the fine?", + "nextPhraseID": "fallhaven_warden_7" + } + ] + }, + { + "id": "fallhaven_warden_7", + "message": "Oh, that sounds a bit shady. I doubt anyone could afford the 450 gold around here. Anyway, I would need a bit more than that just to risk it.", + "replies": [ + { + "text": "I have 500 gold right here that you could have.", + "nextPhraseID": "fallhaven_warden_9", + "requires": { + "item": { + "itemID": "gold", + "quantity": 500, + "requireType": 0 + } + } + }, + { + "text": "You know you want the mead right?", + "nextPhraseID": "fallhaven_warden_8" + }, + { + "text": "Yes, I agree. This is starting to sound too shady. Goodbye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_warden_8", + "message": "Oh sure. Now that you mention it. It sure would be good.", + "replies": [ + { + "text": "So what if I pay you, say, 400 gold. Would that cover enough of your anxiety to enjoy the drink now?", + "nextPhraseID": "fallhaven_warden_9", + "requires": { + "item": { + "itemID": "gold", + "quantity": 400, + "requireType": 0 + } + } + }, + { + "text": "This is starting to sound too shady for me. I'll leave you to your duty, goodbye.", + "nextPhraseID": "X" + }, + { + "text": "I'll go get that gold for you. Goodbye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_warden_9", + "message": "Wow, that much gold? I'm sure I could even get away with this without being fined. Then I could have the gold AND a nice drink of mead at the same time.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 60 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_10" + } + ] + }, + { + "id": "fallhaven_warden_10", + "message": "Thank you kid, you really are nice. Now leave me to enjoy my drink." + }, + { + "id": "fallhaven_warden_select_1", + "replies": [ + { + "nextPhraseID": "fallhaven_warden_11", + "requires": { + "progress": "farrik:60" + } + }, + { + "nextPhraseID": "fallhaven_warden_35", + "requires": { + "progress": "farrik:90" + } + }, + { + "nextPhraseID": "fallhaven_warden_select_2" + } + ] + }, + { + "id": "fallhaven_warden_select_2", + "replies": [ + { + "nextPhraseID": "fallhaven_warden_30", + "requires": { + "progress": "farrik:50" + } + }, + { + "nextPhraseID": "fallhaven_warden_12", + "requires": { + "progress": "farrik:32" + } + }, + { + "nextPhraseID": "fallhaven_warden" + } + ] + }, + { + "id": "fallhaven_warden_11", + "message": "Hello again, kid. Thanks for the drink earlier. I had it all in one go. It sure tasted a bit different than before, but I guess that is just because I'm not used to it anymore.", + "replies": [ + { + "text": "Who is that prisoner?", + "nextPhraseID": "warden_prisoner_1" + } + ] + }, + { + "id": "fallhaven_warden_12", + "message": "Hello again, kid. Thanks for the drink earlier. I still haven't had it.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_5" + } + ] + }, + { + "id": "fallhaven_warden_20", + "message": "Really, they would dare go up against the guard in Fallhaven? Do you have any details on their plan?", + "replies": [ + { + "text": "I heard they are planning his escape tonight", + "nextPhraseID": "fallhaven_warden_21" + }, + { + "text": "No, I was just kidding with you. Never mind.", + "nextPhraseID": "X" + }, + { + "text": "On second thought, I better not upset the Thieves' Guild. Never mind I said anything.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_warden_21", + "message": "Tonight? Thank you for this information. We will make sure to increase the security tonight then, but in such a way that they won't notice.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_22" + } + ] + }, + { + "id": "fallhaven_warden_22", + "message": "When they do decide to break him free, we will be prepared. Maybe we can arrest more of those filthy thieves.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_23" + } + ] + }, + { + "id": "fallhaven_warden_23", + "message": "Thank you again for the information. While I'm not sure how you may know this, I really appreciate you telling me.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_24" + } + ] + }, + { + "id": "fallhaven_warden_24", + "message": "I want you to go one step further and tell them that we will have less security for tonight. But instead we will increase the security. That way we can really be ready for them.", + "replies": [ + { + "text": "Sure, I can do that.", + "nextPhraseID": "fallhaven_warden_25" + } + ] + }, + { + "id": "fallhaven_warden_25", + "message": "Good. Report back to me when you have told them.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 50 + } + ], + "replies": [ + { + "text": "Will do.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "fallhaven_warden_30", + "message": "Hello again, my friend. Did you tell those thieves that we will lower our security tonight?", + "replies": [ + { + "text": "Yes, they won't expect a thing.", + "nextPhraseID": "fallhaven_warden_31" + }, + { + "text": "No, not yet. I'm working on it.", + "nextPhraseID": "fallhaven_warden_25" + } + ] + }, + { + "id": "fallhaven_warden_31", + "message": "Great. Thank you for your help. Here, take these coins as a token of our appreciation.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 90 + }, + { + "rewardType": 1, + "rewardID": "gold200" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_36" + } + ] + }, + { + "id": "fallhaven_warden_35", + "message": "Hello again, my friend. Thank you for your help in dealing with the thieves earlier.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fallhaven_warden_36" + } + ] + }, + { + "id": "fallhaven_warden_36", + "message": "I will make sure to tell other guards how you helped us here in Fallhaven.", + "replies": [ + { + "text": "Thank you. Goodbye.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_farrik.json b/AndorsTrail/res/raw/conversationlist_farrik.json new file mode 100644 index 000000000..249c81176 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_farrik.json @@ -0,0 +1,401 @@ +[ + { + "id": "farrik_1", + "message": "Hello. I heard that you helped us find the key of Luthor. Good work, it will really come in handy.", + "replies": [ + { + "text": "Who are you?", + "nextPhraseID": "farrik_2" + }, + { + "text": "What can you tell me about the Thieves' Guild?", + "nextPhraseID": "farrik_4" + } + ] + }, + { + "id": "farrik_2", + "message": "I'm Farrik, Umar's brother.", + "replies": [ + { + "text": "What do you do around here?", + "nextPhraseID": "farrik_3" + }, + { + "text": "What can you tell me about the Thieves' Guild?", + "nextPhraseID": "farrik_4" + } + ] + }, + { + "id": "farrik_3", + "message": "I mostly manage our trading with other guilds and keep an eye on what the thieves need to be as effective as they can be.", + "replies": [ + { + "text": "What can you tell me about the Thieves' Guild?", + "nextPhraseID": "farrik_4" + } + ] + }, + { + "id": "farrik_4", + "message": "We try to keep to ourselves as much as possible, and help our fellow thieves as much as possible.", + "replies": [ + { + "text": "Any recent events happening?", + "nextPhraseID": "farrik_5" + } + ] + }, + { + "id": "farrik_5", + "message": "Well, there was one thing a few weeks ago. One of our guild members got arrested for trespassing.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_6" + } + ] + }, + { + "id": "farrik_6", + "message": "The Fallhaven guard has started to get really annoyed at us lately. Probably because we have been very successful in our recent missions.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_7" + } + ] + }, + { + "id": "farrik_7", + "message": "The guards have increased their security lately, leading to them arresting one of our members.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_8" + } + ] + }, + { + "id": "farrik_8", + "message": "He is currently held in the jail here in Fallhaven, pending transfer to Feygard.", + "replies": [ + { + "text": "What did he do?", + "nextPhraseID": "farrik_9" + } + ] + }, + { + "id": "farrik_9", + "message": "Oh, nothing serious. He was trying to get into the catacombs of Fallhaven church.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_10" + } + ] + }, + { + "id": "farrik_10", + "message": "But now that you have helped us with that mission, I guess we don't need to go there anymore.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_11" + } + ] + }, + { + "id": "farrik_11", + "message": "I guess I can trust you with this secret. We are planning a mission tonight to help him out of jail.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 10 + } + ], + "replies": [ + { + "text": "Those guards really seem annoying.", + "nextPhraseID": "farrik_13" + }, + { + "text": "After all, if he wasn't allowed down there, then the guards are right to arrest him.", + "nextPhraseID": "farrik_12" + } + ] + }, + { + "id": "farrik_12", + "message": "Yeah, I guess so. But for the guild's sake, we would rather have our friend freed than imprisoned.", + "replies": [ + { + "text": "Maybe I should tell the guards that you are planning to get him out?", + "nextPhraseID": "farrik_15" + }, + { + "text": "Don't worry, your secret plan to free him is safe with me.", + "nextPhraseID": "farrik_14" + }, + { + "text": "[Lie] Don't worry, your secret plan to free him is safe with me.", + "nextPhraseID": "farrik_14" + } + ] + }, + { + "id": "farrik_13", + "message": "Oh yes, they are. The people also dislike them in general, it's not just us in the Thieves' Guild.", + "replies": [ + { + "text": "Is there anything I can do to help you with those annoying guards?", + "nextPhraseID": "farrik_16" + } + ] + }, + { + "id": "farrik_14", + "message": "Thank you. Now please leave me." + }, + { + "id": "farrik_15", + "message": "Whatever, they wouldn't believe you anyway.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 30 + } + ] + }, + { + "id": "farrik_16", + "message": "Are you sure you want to annoy the guards? If they catch word of you being involved, you could get into a lot of trouble.", + "replies": [ + { + "text": "No problem, I can handle myself!", + "nextPhraseID": "farrik_18" + }, + { + "text": "There might be a reward for this later on. I'm in.", + "nextPhraseID": "farrik_18" + }, + { + "text": "On second thought, maybe I should keep out of this.", + "nextPhraseID": "farrik_17" + } + ] + }, + { + "id": "farrik_17", + "message": "Sure, it's up to you.", + "replies": [ + { + "text": "Good luck on your mission.", + "nextPhraseID": "farrik_14" + }, + { + "text": "Maybe I should tell the guards that you are planning to get him out?", + "nextPhraseID": "farrik_15" + } + ] + }, + { + "id": "farrik_18", + "message": "Good.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_19" + } + ] + }, + { + "id": "farrik_19", + "message": "Ok, here is the plan. The guard captain has a bit of a drinking problem.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_20" + } + ] + }, + { + "id": "farrik_20", + "message": "If we were able to supply him with some mead that we have prepared, we might just be able to sneak our friend out during the night, when the captain is sleeping off the drunkenness.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_20a" + } + ] + }, + { + "id": "farrik_20a", + "message": "Our cook can prepare a special brew of mead for you that will knock him out.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_21" + } + ] + }, + { + "id": "farrik_21", + "message": "He would probably need to be persuaded to drink on duty too. If that should fail, he could probably be bribed instead.", + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_22" + } + ] + }, + { + "id": "farrik_22", + "message": "How does that sound to you? Do you think you are up to it?", + "replies": [ + { + "text": "Sure, sounds easy!", + "nextPhraseID": "farrik_23" + }, + { + "text": "Sounds a bit dangerous, but I guess I'll try.", + "nextPhraseID": "farrik_23" + }, + { + "text": "No, this is really starting to sound like a bad idea.", + "nextPhraseID": "farrik_17" + } + ] + }, + { + "id": "farrik_23", + "message": "Good. Report back to me when you have gotten the guard captain to drink that special mead.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 20 + } + ], + "replies": [ + { + "text": "Will do", + "nextPhraseID": "farrik_14" + } + ] + }, + { + "id": "farrik_return_1", + "message": "Hello again my friend. How goes your mission to get the guard captain drunk?", + "replies": [ + { + "text": "I am not done yet, but I am working on it.", + "nextPhraseID": "farrik_23" + }, + { + "text": "[Lie] It is done. He should be no problem during the night.", + "nextPhraseID": "farrik_26", + "requires": { + "progress": "farrik:50" + } + }, + { + "text": "It is done. He should be no problem during the night.", + "nextPhraseID": "farrik_24", + "requires": { + "progress": "farrik:60" + } + } + ] + }, + { + "id": "farrik_select_1", + "replies": [ + { + "nextPhraseID": "farrik_return_2", + "requires": { + "progress": "farrik:70" + } + }, + { + "nextPhraseID": "farrik_return_2", + "requires": { + "progress": "farrik:80" + } + }, + { + "nextPhraseID": "farrik_select_2" + } + ] + }, + { + "id": "farrik_select_2", + "replies": [ + { + "nextPhraseID": "farrik_return_1", + "requires": { + "progress": "farrik:20" + } + }, + { + "nextPhraseID": "farrik_1" + } + ] + }, + { + "id": "farrik_24", + "message": "That is good news! Now we should be able to get our friend out from jail tonight.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 70 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "farrik_25" + } + ] + }, + { + "id": "farrik_25", + "message": "Thank you for your help my friend. Take these coins as a token of our appreciation.", + "rewards": [ + { + "rewardType": 1, + "rewardID": "gold200" + } + ], + "replies": [ + { + "text": "Thank you. Goodbye.", + "nextPhraseID": "X" + }, + { + "text": "Finally, some gold.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "farrik_return_2", + "message": "Thank you for your help with the guard captain earlier." + }, + { + "id": "farrik_26", + "message": "Oh you did? Well done. You have my thanks, friend.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 80 + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_fields_1.json b/AndorsTrail/res/raw/conversationlist_fields_1.json new file mode 100644 index 000000000..763ffb038 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_fields_1.json @@ -0,0 +1,34 @@ +[ + { + "id": "feygard_bridgeguard", + "message": "Sorry, the road to Feygard is closed until further notice." + }, + { + "id": "sign_crossroadshouse", + "message": "Crossroads guardhouse, housing for allies of Feygard." + }, + { + "id": "sign_crossroads_s", + "message": "Southeast: Nor City\nNorthwest: Feygard\nEast: Loneford\nSouth: Fallhaven" + }, + { + "id": "sign_crossroads_n", + "message": "Northwest: Feygard\nEast: Loneford." + }, + { + "id": "sign_fields1", + "message": "Northwest: Feygard\nEast: Loneford." + }, + { + "id": "sign_fields6", + "message": "Northwest: Feygard\nSouth: Nor City." + }, + { + "id": "crossroads_sleep", + "message": "The guard shouts at you: Hey! You cannot sleep here!" + }, + { + "id": "sign_loneford2", + "message": "Welcome to peaceful Loneford.\n(The sign also contains a drawing of a bale of hay with what looks like a farmer sitting on top.)" + } +] diff --git a/AndorsTrail/res/raw/conversationlist_flagstone.json b/AndorsTrail/res/raw/conversationlist_flagstone.json new file mode 100644 index 000000000..bdff4bcce --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_flagstone.json @@ -0,0 +1,586 @@ +[ + { + "id": "zombie1", + "message": "Fresh flesh!", + "replies": [ + { + "text": "By the Shadow, I will slay you.", + "nextPhraseID": "F" + }, + { + "text": "Yuck, what are you? And what is that smell?", + "nextPhraseID": "F" + } + ] + }, + { + "id": "prisoner1", + "message": "Nooo, I will not be imprisoned again!", + "replies": [ + { + "text": "But I am not...", + "nextPhraseID": "F" + } + ] + }, + { + "id": "prisoner2", + "message": "Aaaa! Who's there? I will not be enslaved again!", + "replies": [ + { + "text": "Calm down, I was just...", + "nextPhraseID": "F" + } + ] + }, + { + "id": "flagstone_guard0", + "message": "Ah, another mortal. Prepare to become part of my undead army!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "flagstone", + "value": 31 + } + ], + "replies": [ + { + "text": "Shadow take you.", + "nextPhraseID": "F" + }, + { + "text": "Prepare to die once more.", + "nextPhraseID": "F" + } + ] + }, + { + "id": "flagstone_guard1", + "message": "Die mortal!", + "replies": [ + { + "text": "Shadow take you.", + "nextPhraseID": "F" + }, + { + "text": "Prepare to meet my blade.", + "nextPhraseID": "F" + } + ] + }, + { + "id": "flagstone_guard2", + "message": "What, a mortal in here that is not marked by my touch?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "flagstone", + "value": 50 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_guard2_2" + } + ] + }, + { + "id": "flagstone_guard2_2", + "message": "You seem delicious and soft, will you be part of the feast?", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_guard2_3" + } + ] + }, + { + "id": "flagstone_guard2_3", + "message": "Yes, I think you will. My undead army will spread far outside of Flagstone once I am done with you.", + "replies": [ + { + "text": "By the Shadow, you must be stopped!", + "nextPhraseID": "F" + }, + { + "text": "No! This land must be protected from the undead!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "flagstone_sentry", + "replies": [ + { + "nextPhraseID": "flagstone_sentry_return4", + "requires": { + "progress": "flagstone:60" + } + }, + { + "nextPhraseID": "flagstone_sentry_return3", + "requires": { + "progress": "flagstone:40" + } + }, + { + "nextPhraseID": "flagstone_sentry_select0" + } + ] + }, + { + "id": "flagstone_sentry_select0", + "replies": [ + { + "nextPhraseID": "flagstone_sentry_return2", + "requires": { + "progress": "flagstone:30" + } + }, + { + "nextPhraseID": "flagstone_sentry_return1", + "requires": { + "progress": "flagstone:10" + } + }, + { + "nextPhraseID": "flagstone_sentry_1" + } + ] + }, + { + "id": "flagstone_sentry_1", + "message": "Halt! Who's there? No one is allowed to approach Flagstone.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_2" + } + ] + }, + { + "id": "flagstone_sentry_2", + "message": "You should turn back while you still can.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_3" + } + ] + }, + { + "id": "flagstone_sentry_3", + "message": "Flagstone has been overrun by undead, and I'm standing guard here to make sure no undead escape.", + "replies": [ + { + "text": "Can you tell me the story about Flagstone?", + "nextPhraseID": "flagstone_sentry_4" + } + ] + }, + { + "id": "flagstone_sentry_4", + "message": "Flagstone used to be a prison camp for runaway workers from when Mount Galmore was dug out.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_5" + } + ] + }, + { + "id": "flagstone_sentry_5", + "message": "But once the digging in Mount Galmore stopped, the prison camp lost its purpose.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_6" + } + ] + }, + { + "id": "flagstone_sentry_6", + "message": "The lord at the time did not care much for the prisoners that were already in Flagstone, so he left them there.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_7" + } + ] + }, + { + "id": "flagstone_sentry_7", + "message": "The warden that ran Flagstone on the other hand took his duty very seriously, and kept on running the prison just like it was when Mount Galmore was being dug out.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_8" + } + ] + }, + { + "id": "flagstone_sentry_8", + "message": "For years, no one took notice of Flagstone. Except for the occasional reports from travelers of terrible screams coming from the camp.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_9" + } + ] + }, + { + "id": "flagstone_sentry_9", + "message": "There was a change recently, now the undead pour out in great numbers.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_10" + } + ] + }, + { + "id": "flagstone_sentry_10", + "message": "So, here we are. I have to guard the road from undead, so that they do not spread farther than Flagstone.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_11" + } + ] + }, + { + "id": "flagstone_sentry_11", + "message": "So, I would advise you to leave unless you want to be overrun by undead.", + "replies": [ + { + "text": "Can I investigate the Flagstone ruins?", + "nextPhraseID": "flagstone_sentry_12" + }, + { + "text": "Yes, I should leave.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "flagstone_sentry_12", + "message": "Are you really sure you want to head in there? Well, ok, fine by me.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_13" + } + ] + }, + { + "id": "flagstone_sentry_13", + "message": "I won't stop you, and I won't mourn you if you never return.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_14" + } + ] + }, + { + "id": "flagstone_sentry_14", + "message": "Go ahead. Let me know if there's anything I can tell you that would help.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_15" + } + ] + }, + { + "id": "flagstone_sentry_15", + "message": "Return here if you need my advice.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "flagstone", + "value": 10 + } + ], + "replies": [ + { + "text": "Ok. I will return to you if there is anything I need help with.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "flagstone_sentry_return1", + "message": "Hello again. Did you enter Flagstone? I am surprised you actually returned.", + "replies": [ + { + "text": "Can you tell me the story again?", + "nextPhraseID": "flagstone_sentry_4" + }, + { + "text": "There is a guardian in the lower levels of Flagstone that cannot be approached.", + "nextPhraseID": "flagstone_sentry_20", + "requires": { + "progress": "flagstone:20" + } + } + ] + }, + { + "id": "flagstone_sentry_20", + "message": "A guardian you say? This is troubling news, since it means there is some larger force behind all this.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_21" + } + ] + }, + { + "id": "flagstone_sentry_21", + "message": "Have you found the former warden of Flagstone? The warden used to have a necklace with him at all times.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_22" + } + ] + }, + { + "id": "flagstone_sentry_22", + "message": "He was very protective of it. Maybe the necklace was some sort of key.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_23" + } + ] + }, + { + "id": "flagstone_sentry_23", + "message": "If you find the warden and retrieve the necklace, then please return here and I will help you decipher any message that we might find on it.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "flagstone", + "value": 30 + } + ], + "replies": [ + { + "text": "I have found it, here.", + "nextPhraseID": "flagstone_sentry_40", + "requires": { + "item": { + "itemID": "necklace_flagstone", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "What was that about the guardian again?", + "nextPhraseID": "flagstone_sentry_20" + }, + { + "text": "Ok, I will go look for the former warden.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "flagstone_sentry_return2", + "message": "Hello again. Have you found the former warden in Flagstone yet?", + "replies": [ + { + "text": "About the former warden...", + "nextPhraseID": "flagstone_sentry_23" + }, + { + "text": "Can you tell me the story again?", + "nextPhraseID": "flagstone_sentry_3" + } + ] + }, + { + "id": "flagstone_sentry_40", + "message": "You found the necklace? Good. Here, give it to me.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "flagstone", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_41" + } + ] + }, + { + "id": "flagstone_sentry_41", + "message": "Now, let's see here. Ah yes, it is as I thought. The necklace contains a password.", + "replies": [ + { + "text": "N", + "nextPhraseID": "flagstone_sentry_42" + } + ] + }, + { + "id": "flagstone_sentry_42", + "message": "'Daylight Shadow'. That must be it. You should try to approach the guardian with this password.", + "replies": [ + { + "text": "Thanks, bye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "flagstone_sentry_return3", + "message": "Hello again. How is the investigation of the undead in Flagstone going?", + "replies": [ + { + "text": "No progress yet.", + "nextPhraseID": "flagstone_sentry_43" + } + ] + }, + { + "id": "flagstone_sentry_43", + "message": "Well, keep looking. Return to me if you need my advice." + }, + { + "id": "flagstone_sentry_return4", + "message": "Hello again. It seems something happened inside Flagstone that made the undead weaker. I'm sure we have you to thank for it." + }, + { + "id": "narael", + "message": "Thank you, thank you for freeing me from that monster.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_select" + } + ] + }, + { + "id": "narael_select", + "replies": [ + { + "nextPhraseID": "narael_9", + "requires": { + "progress": "flagstone:60" + } + }, + { + "nextPhraseID": "narael_1" + } + ] + }, + { + "id": "narael_1", + "message": "I have been a captive here for what seems to be an eternity.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_2" + } + ] + }, + { + "id": "narael_2", + "message": "Oh, the things they did to me. Thank you so much for freeing me.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_3" + } + ] + }, + { + "id": "narael_3", + "message": "I was once a citizen in Nor City, and worked on the excavation of Mount Galmore.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_4" + } + ] + }, + { + "id": "narael_4", + "message": "After a while, the day came when I wanted to quit the assignment and return to my wife.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_5" + } + ] + }, + { + "id": "narael_5", + "message": "The officer in charge would not let me, and I was sent to Flagstone as a prisoner for disobeying orders.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_6" + } + ] + }, + { + "id": "narael_6", + "message": "If only I could see my wife once more. I have hardly any life left in me, and I don't even have enough strength to leave this place.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_7" + } + ] + }, + { + "id": "narael_7", + "message": "I guess my fate is to perish here, but now as a free man at least.", + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_8" + } + ] + }, + { + "id": "narael_8", + "message": "Now leave me to my fate. I do not have the strength to leave this place.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "flagstone", + "value": 60 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "narael_9" + } + ] + }, + { + "id": "narael_9", + "message": "If you find my wife Taurum in Nor City, please tell her I'm alive and that I haven't forgotten about her.", + "replies": [ + { + "text": "I will. Goodbye.", + "nextPhraseID": "X" + }, + { + "text": "I will. Shadow be with you.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_foamingflask.json b/AndorsTrail/res/raw/conversationlist_foamingflask.json new file mode 100644 index 000000000..9214c122b --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_foamingflask.json @@ -0,0 +1,247 @@ +[ + { + "id": "ff_cook_1", + "message": "Hello. Do you want something from the kitchen?", + "replies": [ + { + "text": "Sure, let me see what food you have to sell.", + "nextPhraseID": "ff_cook_3" + }, + { + "text": "That smells horrible. What are you cooking?", + "nextPhraseID": "ff_cook_2" + }, + { + "text": "That smells wonderful. What are you cooking?", + "nextPhraseID": "ff_cook_2" + } + ] + }, + { + "id": "ff_cook_2", + "message": "Oh this? This is supposed to be a stew of Anklebiter. Needs more seasoning I guess.", + "replies": [ + { + "text": "I look forward to trying it when it is done. Good luck cooking.", + "nextPhraseID": "X" + }, + { + "text": "Yuck, that sounds awful. Can you really eat those things? I'm grossed out, goodbye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "ff_cook_3", + "message": "No sorry, I don't have any food to sell. Go talk to Torilo over there if you want some drink or ready-made food." + }, + { + "id": "torilo_1", + "message": "Welcome to the Foaming Flask tavern. We welcome all travelers in here.", + "replies": [ + { + "text": "Thank you. Are you the innkeeper here?", + "nextPhraseID": "torilo_2" + }, + { + "text": "Have you seen a boy called Rincel around here recently?", + "nextPhraseID": "torilo_rincel_1", + "requires": { + "progress": "wrye:41" + } + } + ] + }, + { + "id": "torilo_2", + "message": "I am Torilo, the proprietor of this establishment. Please have a seat anywhere you like.", + "replies": [ + { + "text": "Can I see what you have available in food and drink?", + "nextPhraseID": "torilo_shop_1" + }, + { + "text": "Do you have somewhere I can rest?", + "nextPhraseID": "torilo_rest_select" + }, + { + "text": " Are those guards always shouting and yelling that much?", + "nextPhraseID": "torilo_guards_1" + } + ] + }, + { + "id": "torilo_default", + "message": "Was there anything else you wanted?", + "replies": [ + { + "text": "Can I see what you have available for food and drink?", + "nextPhraseID": "torilo_shop_1" + }, + { + "text": "Are those guards always shouting and yelling that much?", + "nextPhraseID": "torilo_guards_1" + }, + { + "text": "Have you seen a boy called Rincel around here recently?", + "nextPhraseID": "torilo_rincel_1", + "requires": { + "progress": "wrye:41" + } + } + ] + }, + { + "id": "torilo_shop_1", + "message": "Absolutely. We have a wide selection of food and beverages.", + "replies": [ + { + "text": "N", + "nextPhraseID": "S" + } + ] + }, + { + "id": "torilo_rest_select", + "replies": [ + { + "nextPhraseID": "torilo_rest_1", + "requires": { + "progress": "nondisplay:10" + } + }, + { + "nextPhraseID": "torilo_rest_3" + } + ] + }, + { + "id": "torilo_rest_1", + "message": "Yes, you already rented the back room.", + "replies": [ + { + "text": "N", + "nextPhraseID": "torilo_rest_2" + } + ] + }, + { + "id": "torilo_rest_2", + "message": "Please feel free to use it in any way you like. I hope you can get some sleep even with these guards yelling their songs.", + "replies": [ + { + "text": "Thanks.", + "nextPhraseID": "torilo_default" + } + ] + }, + { + "id": "torilo_rest_3", + "message": "Oh yes. We have a very comfortable back room here in the Foaming Flask tavern.", + "replies": [ + { + "text": "N", + "nextPhraseID": "torilo_rest_4" + } + ] + }, + { + "id": "torilo_rest_4", + "message": "Available for only 250 gold. Then you can use it as much as you like.", + "replies": [ + { + "text": "250 gold? Sure, that's nothing to me. Here you go.", + "nextPhraseID": "torilo_rest_6", + "requires": { + "item": { + "itemID": "gold", + "quantity": 250, + "requireType": 0 + } + } + }, + { + "text": "250 gold is a lot, but I guess it is worth it. Here you go.", + "nextPhraseID": "torilo_rest_6", + "requires": { + "item": { + "itemID": "gold", + "quantity": 250, + "requireType": 0 + } + } + }, + { + "text": "That sounds a bit too much for me.", + "nextPhraseID": "torilo_rest_5" + } + ] + }, + { + "id": "torilo_rest_5", + "message": "Oh well, it's your loss.", + "replies": [ + { + "text": "N", + "nextPhraseID": "torilo_default" + } + ] + }, + { + "id": "torilo_rest_6", + "message": "Thank you. The room is now rented to you.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nondisplay", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "torilo_rest_2" + } + ] + }, + { + "id": "torilo_rincel_1", + "message": "Rincel? No, not that I can recall. Actually, we don't get many children in here. *chuckle*", + "replies": [ + { + "text": "N", + "nextPhraseID": "torilo_default" + } + ] + }, + { + "id": "torilo_guards_1", + "message": "*Sigh* Yes. Those guards have been here for quite some time now.", + "replies": [ + { + "text": "N", + "nextPhraseID": "torilo_guards_2" + } + ] + }, + { + "id": "torilo_guards_2", + "message": "They seem to be looking for something or someone, but I am not sure who or what.", + "replies": [ + { + "text": "N", + "nextPhraseID": "torilo_guards_3" + } + ] + }, + { + "id": "torilo_guards_3", + "message": "I hope the Shadow watches over us so that nothing bad happens to the Foaming Flask tavern because of them.", + "replies": [ + { + "text": "N", + "nextPhraseID": "torilo_default" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_foamingflask_guards.json b/AndorsTrail/res/raw/conversationlist_foamingflask_guards.json new file mode 100644 index 000000000..b9bbcde9e --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_foamingflask_guards.json @@ -0,0 +1,215 @@ +[ + { + "id": "ff_guard_1", + "message": "Ha ha, you tell him Garl!\n\n*burp*", + "replies": [ + { + "text": "N", + "nextPhraseID": "ff_guard_2" + } + ] + }, + { + "id": "ff_guard_2", + "message": "Sing, drink, fight! All who oppose Feygard will fall!", + "replies": [ + { + "text": "N", + "nextPhraseID": "ff_guard_3" + } + ] + }, + { + "id": "ff_guard_3", + "message": "We will stand tall. Feygard, city of peace!", + "replies": [ + { + "text": "I should better leave", + "nextPhraseID": "X" + }, + { + "text": "Feygard, where is that?", + "nextPhraseID": "ff_guard_4" + }, + { + "text": "Have you seen a boy called Rincel around here recently?", + "nextPhraseID": "ff_guard_rincel_1", + "requires": { + "progress": "wrye:41" + } + } + ] + }, + { + "id": "ff_guard_4", + "message": "What, you haven't heard of Feygard, kid? Just follow the road northwest and you will see the great city of Feygard rise above the treetops.", + "replies": [ + { + "text": "Thanks. Bye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "ff_guard_rincel_1", + "message": "A boy?! Apart from you, there have been no children in here that I have seen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ff_guard_rincel_2" + } + ] + }, + { + "id": "ff_guard_rincel_2", + "message": "Check with the captain over there. He has been around here for longer than us.", + "replies": [ + { + "text": "Thank you, Goodbye.", + "nextPhraseID": "X" + }, + { + "text": "Thank you. Shadow be with you.", + "nextPhraseID": "ff_guard_shadow_1" + } + ] + }, + { + "id": "ff_guard_shadow_1", + "message": "Don't bring that cursed Shadow in here son. We want none of that. Now leave." + }, + { + "id": "ff_captain_1", + "message": "Are you lost, son? This is no place for a kid like you.", + "replies": [ + { + "text": "I have a shipment of iron swords from Gandoren for you.", + "nextPhraseID": "ff_captain_vg_items_1", + "requires": { + "progress": "feygard_shipment:56", + "item": { + "itemID": "fg_ironsword_d", + "quantity": 10, + "requireType": 0 + } + } + }, + { + "text": "I have a shipment of iron swords from Gandoren for you.", + "nextPhraseID": "ff_captain_fg_items_1", + "requires": { + "progress": "feygard_shipment:25", + "item": { + "itemID": "fg_ironsword", + "quantity": 10, + "requireType": 0 + } + } + }, + { + "text": "Who are you?", + "nextPhraseID": "ff_captain_2" + }, + { + "text": "Have you seen a boy called Rincel around here recently?", + "nextPhraseID": "ff_captain_rincel_1", + "requires": { + "progress": "wrye:41" + } + } + ] + }, + { + "id": "ff_captain_2", + "message": "I am the guard captain of this patrol. We hail from the great city of Feygard.", + "replies": [ + { + "text": "Feygard, where is that?", + "nextPhraseID": "ff_captain_4" + }, + { + "text": "What do you do around here?", + "nextPhraseID": "ff_captain_3" + } + ] + }, + { + "id": "ff_captain_3", + "message": "We are travelling the main road to make sure the merchants and travelers are safe. We keep the peace around here.", + "replies": [ + { + "text": "You mentioned Feygard. Where is that?", + "nextPhraseID": "ff_captain_4" + } + ] + }, + { + "id": "ff_captain_4", + "message": "The great city of Feygard is the greatest sight you will ever see. Follow the road northwest.", + "replies": [ + { + "text": "Thank you. Shadow be with you.", + "nextPhraseID": "ff_captain_shadow_1" + }, + { + "text": "Thank you, Goodbye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "ff_captain_rincel_1", + "message": "There was a kid running around in here a while ago.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ff_captain_rincel_2" + } + ] + }, + { + "id": "ff_captain_rincel_2", + "message": "I never talked to him though, so I don't know if he is the one you are looking for.", + "replies": [ + { + "text": "Ok, that might be something worth checking anyway.", + "nextPhraseID": "ff_captain_rincel_3" + } + ] + }, + { + "id": "ff_captain_rincel_3", + "message": "I noticed he left to the west heading out of the Foaming Flask tavern.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "wrye", + "value": 42 + } + ], + "replies": [ + { + "text": "West. Got it. Thanks for the information.", + "nextPhraseID": "ff_captain_rincel_4" + } + ] + }, + { + "id": "ff_captain_rincel_4", + "message": "Always happy to help. Anything for the glory of Feygard.", + "replies": [ + { + "text": "Shadow be with you.", + "nextPhraseID": "ff_captain_shadow_1" + }, + { + "text": "Goodbye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "ff_captain_shadow_1", + "message": "The Shadow? Don't tell me you believe in that stuff. In my experience, only troublemakers talk of the Shadow." + } +] diff --git a/AndorsTrail/res/raw/conversationlist_foamingflask_outsideguard.json b/AndorsTrail/res/raw/conversationlist_foamingflask_outsideguard.json new file mode 100644 index 000000000..48a67e5d3 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_foamingflask_outsideguard.json @@ -0,0 +1,333 @@ +[ + { + "id": "ff_outsideguard_select", + "replies": [ + { + "nextPhraseID": "ff_outsideguard_trouble_24", + "requires": { + "progress": "jolnor:20" + } + }, + { + "nextPhraseID": "ff_outsideguard_1" + } + ] + }, + { + "id": "ff_outsideguard_1", + "message": "Hello there. Should you be here? This is a tavern, you know. The Foaming Flask, to be precise.", + "replies": [ + { + "text": "Who are you?", + "nextPhraseID": "ff_outsideguard_2" + } + ] + }, + { + "id": "ff_outsideguard_2", + "message": "I am a member of the royal guard patrol from Feygard.", + "replies": [ + { + "text": "Feygard, where is that?", + "nextPhraseID": "ff_outsideguard_3" + }, + { + "text": "What do you do around here?", + "nextPhraseID": "ff_outsideguard_3" + } + ] + }, + { + "id": "ff_outsideguard_3", + "message": "Go talk to the captain inside if you want to talk. I must stay alert on my post.", + "replies": [ + { + "text": "Ok. Goodbye.", + "nextPhraseID": "X" + }, + { + "text": "Why must you stay alert outside a tavern?", + "nextPhraseID": "ff_outsideguard_trouble_1", + "requires": { + "progress": "jolnor:10" + } + } + ] + }, + { + "id": "ff_outsideguard_trouble_1", + "message": "Really, I cannot talk to you. I could get into trouble.", + "replies": [ + { + "text": "Ok. I won't bother you anymore. Shadow be with you.", + "nextPhraseID": "ff_outsideguard_shadow_1" + }, + { + "text": "Ok. I won't bother you anymore. Goodbye.", + "nextPhraseID": "X" + }, + { + "text": "What trouble?", + "nextPhraseID": "ff_outsideguard_trouble_2" + } + ] + }, + { + "id": "ff_outsideguard_trouble_2", + "message": "No really, the captain might see me. I must be aware on my post at all times. *sigh*", + "replies": [ + { + "text": "Ok. I won't bother you anymore. Shadow be with you.", + "nextPhraseID": "ff_outsideguard_shadow_1" + }, + { + "text": "Ok. I won't bother you anymore. Goodbye.", + "nextPhraseID": "X" + }, + { + "text": "Do you like your job here?", + "nextPhraseID": "ff_outsideguard_trouble_3" + } + ] + }, + { + "id": "ff_outsideguard_trouble_3", + "message": "My job? I guess the royal guard is ok. I mean, Feygard is a really nice place to live in.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ff_outsideguard_trouble_4" + } + ] + }, + { + "id": "ff_outsideguard_trouble_4", + "message": "Standing guard on duty out here in the middle of nowhere is not really what I signed up for.", + "replies": [ + { + "text": "I bet. This place is really boring.", + "nextPhraseID": "ff_outsideguard_trouble_5" + }, + { + "text": "You must get tired of just standing here also.", + "nextPhraseID": "ff_outsideguard_trouble_5" + } + ] + }, + { + "id": "ff_outsideguard_trouble_5", + "message": "Yeah I know. I would rather be inside in the tavern drinking like the senior officers and the captain. How come I have to stand out here?", + "replies": [ + { + "text": "At least the Shadow watches over you.", + "nextPhraseID": "ff_outsideguard_shadow_1" + }, + { + "text": "Why not just leave if it's not what you want to do?", + "nextPhraseID": "ff_outsideguard_trouble_7" + }, + { + "text": "The greater cause of the royal guard, to keep the peace, is worth it in the long run.", + "nextPhraseID": "ff_outsideguard_trouble_6" + } + ] + }, + { + "id": "ff_outsideguard_trouble_6", + "message": "Yes, you are right of course. Our duty is to Feygard and to keep the peace from all that want to disrupt it.", + "replies": [ + { + "text": "Yes. The Shadow will not look favorably upon those that disrupt the peace.", + "nextPhraseID": "ff_outsideguard_shadow_1" + }, + { + "text": "Yes. The troublemakers should be punished.", + "nextPhraseID": "ff_outsideguard_trouble_8" + } + ] + }, + { + "id": "ff_outsideguard_trouble_7", + "message": "No, my loyalty is to Feygard. If I would leave, I would also leave my loyalty behind.", + "replies": [ + { + "text": "What does that mean if you are not satisfied with what you do?", + "nextPhraseID": "ff_outsideguard_trouble_9" + }, + { + "text": "Yes, that sounds right. Feygard sounds like a nice place from what I have heard.", + "nextPhraseID": "ff_outsideguard_trouble_6" + } + ] + }, + { + "id": "ff_outsideguard_trouble_8", + "message": "Right. I like you, kid. Tell you what, I could put in a good word for you in the barracks when we get back to Feygard if you want.", + "replies": [ + { + "text": "Sure, that sounds good to me.", + "nextPhraseID": "ff_outsideguard_trouble_20" + }, + { + "text": "No thanks. I have enough to do already.", + "nextPhraseID": "ff_outsideguard_trouble_20" + } + ] + }, + { + "id": "ff_outsideguard_trouble_9", + "message": "Well, I am convinced that we must follow the laws laid down by our rulers. If we don't obey the law, what are we left with?", + "replies": [ + { + "text": "N", + "nextPhraseID": "ff_outsideguard_trouble_10" + } + ] + }, + { + "id": "ff_outsideguard_trouble_10", + "message": "Chaos. Disorder.\n\nNo, I prefer the lawful way of Feygard. My loyalty is firm.", + "replies": [ + { + "text": "Sounds good to me. Laws are made to be followed.", + "nextPhraseID": "ff_outsideguard_trouble_8" + }, + { + "text": "I do not agree. We should follow our heart, even if that goes against the rules.", + "nextPhraseID": "ff_outsideguard_trouble_12" + } + ] + }, + { + "id": "ff_outsideguard_trouble_20", + "message": "Was there anything else you wanted?", + "replies": [ + { + "text": "I was wondering about why you stand guard here.", + "nextPhraseID": "ff_outsideguard_trouble_21" + } + ] + }, + { + "id": "ff_outsideguard_trouble_12", + "message": "That troubles me. We might see each other again in the future. But then we might not be able to have this kind of civil discussion." + }, + { + "id": "ff_outsideguard_trouble_21", + "message": "Right, we went over this before. As I said, I would rather be inside by the fire.", + "replies": [ + { + "text": "I could spot for you if you want to go inside.", + "nextPhraseID": "ff_outsideguard_trouble_23" + }, + { + "text": "Tough luck. I guess you are left out here, while your captain and buddies are inside.", + "nextPhraseID": "ff_outsideguard_trouble_22" + } + ] + }, + { + "id": "ff_outsideguard_trouble_22", + "message": "Yeah, that's just my luck." + }, + { + "id": "ff_outsideguard_trouble_23", + "message": "Really? Yes that would be great. Then I can at least get something to eat and a bit of warmth from the fire.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ff_outsideguard_trouble_24" + } + ] + }, + { + "id": "ff_outsideguard_trouble_24", + "message": "I will go inside in a minute. Will you stand watch while I go inside?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "jolnor", + "value": 20 + } + ], + "replies": [ + { + "text": "Sure, I will do that.", + "nextPhraseID": "ff_outsideguard_trouble_25" + }, + { + "text": "[Lie] Sure, I will do that.", + "nextPhraseID": "ff_outsideguard_trouble_25" + } + ] + }, + { + "id": "ff_outsideguard_trouble_25", + "message": "Thanks a lot my friend." + }, + { + "id": "ff_outsideguard_shadow_1", + "message": "Shadow? How curious that you would mention that. Explain yourself!", + "replies": [ + { + "text": "I did not mean a thing by it. Never mind I said anything.", + "nextPhraseID": "ff_outsideguard_shadow_2" + }, + { + "text": "The Shadow watches over us when we sleep.", + "nextPhraseID": "ff_outsideguard_shadow_3" + } + ] + }, + { + "id": "ff_outsideguard_shadow_2", + "message": "Good. Now be gone before I will have to deal with you." + }, + { + "id": "ff_outsideguard_shadow_3", + "message": "What? Are you one of those troublemakers sent here to sabotage our mission?", + "replies": [ + { + "text": "The Shadow protects us.", + "nextPhraseID": "ff_outsideguard_shadow_4" + }, + { + "text": "Fine. I better not start a fight with the royal guard.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "ff_outsideguard_shadow_4", + "message": "That does it. You better fight or flee right now kid.", + "replies": [ + { + "text": "Good. I have been waiting for a fight!", + "nextPhraseID": "ff_outsideguard_shadow_5" + }, + { + "text": "For the Shadow!", + "nextPhraseID": "ff_outsideguard_shadow_5" + }, + { + "text": "Never mind. I was just kidding with you.", + "nextPhraseID": "ff_outsideguard_shadow_2" + } + ] + }, + { + "id": "ff_outsideguard_shadow_5", + "rewards": [ + { + "rewardType": 0, + "rewardID": "jolnor", + "value": 21 + } + ], + "replies": [ + { + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_gandoren.json b/AndorsTrail/res/raw/conversationlist_gandoren.json new file mode 100644 index 000000000..6396f4caf --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_gandoren.json @@ -0,0 +1,577 @@ +[ + { + "id": "gandoren", + "replies": [ + { + "nextPhraseID": "gandoren_completed_1", + "requires": { + "progress": "feygard_shipment:81" + } + }, + { + "nextPhraseID": "gandoren_completed_1", + "requires": { + "progress": "feygard_shipment:80" + } + }, + { + "nextPhraseID": "gandoren_deliver_1", + "requires": { + "progress": "feygard_shipment:25" + } + }, + { + "nextPhraseID": "gandoren_20", + "requires": { + "progress": "feygard_shipment:22" + } + }, + { + "nextPhraseID": "gandoren_20", + "requires": { + "progress": "feygard_shipment:21" + } + }, + { + "nextPhraseID": "gandoren_wantshelp_1", + "requires": { + "progress": "feygard_shipment:20" + } + }, + { + "nextPhraseID": "gandoren_noguards_1", + "requires": { + "progress": "feygard_shipment:10" + } + }, + { + "nextPhraseID": "gandoren_1" + } + ] + }, + { + "id": "gandoren_1", + "message": "Hello there. Welcome to the Crossroads guardhouse. How may I help you?", + "replies": [ + { + "text": "You guards seem to have a lot of equipment here, anything to trade?", + "nextPhraseID": "gandoren_tr_1" + }, + { + "text": "What do you do here?", + "nextPhraseID": "gandoren_2" + } + ] + }, + { + "id": "gandoren_tr_1", + "message": "I'm sorry, we only trade with allies of Feygard." + }, + { + "id": "gandoren_2", + "message": "This guardhouse is a safe haven for merchants travelling the Duleian road. We keep law and order around here, for Feygard.", + "replies": [ + { + "text": "Any recent events happening?", + "nextPhraseID": "gandoren_3" + }, + { + "text": "The Duleian road?", + "nextPhraseID": "gandoren_dr_1" + } + ] + }, + { + "id": "gandoren_dr_1", + "message": "Noticed the large road outside? That's the Duleian road. It goes all the way from the glorious city of Feygard up in the northwest down to the wretched Nor City in the southeast.", + "replies": [ + { + "text": "Any recent events happening?", + "nextPhraseID": "gandoren_3" + } + ] + }, + { + "id": "gandoren_3", + "message": "Oh sure. Recently, we have had to focus our attention to the troubles up in Loneford.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_4" + } + ] + }, + { + "id": "gandoren_4", + "message": "That situation has forced us to be more alert than usual, and we have had to send some guards up there to help them.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_5" + } + ] + }, + { + "id": "gandoren_5", + "message": "This also means that we cannot focus as much on our usual tasks as we normally do, but instead need help with doing basic tasks just to hold our grounds.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "feygard_shipment", + "value": 10 + } + ], + "replies": [ + { + "text": "What troubles in Loneford are you referring to?", + "nextPhraseID": "cr_loneford_st_1" + }, + { + "text": "Anything I can do to help?", + "nextPhraseID": "gandoren_6" + } + ] + }, + { + "id": "gandoren_noguards_1", + "message": "Hello again. Welcome to the Crossroads guardhouse. How may I help you?", + "replies": [ + { + "text": "Can you tell me again what you told me before about recent events?", + "nextPhraseID": "gandoren_3" + } + ] + }, + { + "id": "gandoren_6", + "message": "Well, we usually do not employ just any civilian. Our tasks are important for Feygard - and by extension, important for the people. Our tasks are usually not suited for commoners like you.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_7" + } + ] + }, + { + "id": "gandoren_7", + "message": "But I guess the recent situation really leaves us no choice. We need to keep the guards in Loneford, and we also need to deliver this shipment. At the moment, we cannot do both.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_8" + } + ] + }, + { + "id": "gandoren_8", + "message": "Tell you what, you might be able to help us after all if you are willing to work.", + "replies": [ + { + "text": "What is the task?", + "nextPhraseID": "gandoren_11" + }, + { + "text": "Anything for the glory of Feygard.", + "nextPhraseID": "gandoren_9" + }, + { + "text": "If the pay is sufficient, I guess I can help.", + "nextPhraseID": "gandoren_10" + }, + { + "text": "I had better not get involved in your Feygard business.", + "nextPhraseID": "gandoren_rej_1" + } + ] + }, + { + "id": "gandoren_9", + "message": "I'm glad to hear that.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_11" + } + ] + }, + { + "id": "gandoren_10", + "message": "Pay? Oh, I guess we could pay you.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_11" + } + ] + }, + { + "id": "gandoren_11", + "message": "I need you to take a shipment of equipment to another one of our outposts further south on the Duleian road.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_12" + } + ] + }, + { + "id": "gandoren_12", + "message": "Those outposts further down south are in greater need of equipment than us, them being closer to that wretched Nor City and all.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_13" + } + ] + }, + { + "id": "gandoren_13", + "message": "Take this shipment of 10 iron swords to the guard captain stationed in a tavern called 'The Foaming Flask', near a village called Vilegard.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "feygard_shipment", + "value": 20 + } + ], + "replies": [ + { + "text": "No problem. Anything for the glory of Feygard.", + "nextPhraseID": "gandoren_17" + }, + { + "text": "You did not mention any amount that I would be paid.", + "nextPhraseID": "gandoren_18" + }, + { + "text": "Why should I help you people? I have only heard bad things about Feygard.", + "nextPhraseID": "gandoren_14" + }, + { + "text": "I had better not get involved in your Feygard business.", + "nextPhraseID": "gandoren_rej_1" + } + ] + }, + { + "id": "gandoren_wantshelp_1", + "message": "Hello again. Welcome to the Crossroads guardhouse. How may I help you?", + "replies": [ + { + "text": "What was that you told me before about a shipment?", + "nextPhraseID": "gandoren_6" + } + ] + }, + { + "id": "gandoren_rej_1", + "message": "I'm sorry to hear that. Good day to you." + }, + { + "id": "gandoren_14", + "message": "Bad things? Who have you been talking to then? I would urge you to make up your own opinion of Feygard by travelling there yourself.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_15" + } + ] + }, + { + "id": "gandoren_15", + "message": "Personally, I cannot think of a greater place to be than in Feygard. Order is kept and people are friendly.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_16" + } + ] + }, + { + "id": "gandoren_16", + "message": "As to why you would help us, I can only say that Feygard would be grateful for your services if you help us.", + "replies": [ + { + "text": "Fine, whatever. I will carry your stupid swords. I still hope there will be some reward for this.", + "nextPhraseID": "gandoren_19" + }, + { + "text": "Sounds good to me. Anything for the glory of Feygard.", + "nextPhraseID": "gandoren_17" + }, + { + "text": "I had better not get involved in your Feygard business.", + "nextPhraseID": "gandoren_rej_1" + } + ] + }, + { + "id": "gandoren_17", + "message": "Excellent.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "feygard_shipment", + "value": 21 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_20" + } + ] + }, + { + "id": "gandoren_18", + "message": "I cannot promise you any amount on a reward.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_16" + } + ] + }, + { + "id": "gandoren_19", + "message": "Ok then.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "feygard_shipment", + "value": 22 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_20" + } + ] + }, + { + "id": "gandoren_20", + "message": "Here is the shipment that I want you to transport.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "feygard_shipment", + "value": 25 + }, + { + "rewardType": 1, + "rewardID": "feygard_shipment" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_21" + } + ] + }, + { + "id": "gandoren_21", + "message": "As I said, you should deliver those 10 iron swords to the guard captain stationed in a tavern called 'The Foaming Flask', near a village called Vilegard.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_22" + } + ] + }, + { + "id": "gandoren_22", + "message": "Return to me once you are done.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_23" + } + ] + }, + { + "id": "gandoren_23", + "message": "I feel that I should warn you about something also. See that fellow over there in the corner? Ailshara. She seems very interested in our dealings for some reason.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_24" + } + ] + }, + { + "id": "gandoren_24", + "message": "I would urge you to stay away from her at all costs. Whatever you do, do not speak to her about your mission with the shipment.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "feygard_shipment", + "value": 26 + } + ] + }, + { + "id": "gandoren_deliver_1", + "message": "You return. Good news about the shipment I hope?", + "replies": [ + { + "text": "You guards seem to have a lot of equipment here, anything to trade?", + "nextPhraseID": "gandoren_tr_2" + }, + { + "text": "I am still working on transporting that shipment.", + "nextPhraseID": "gandoren_22" + }, + { + "text": "What was I supposed to do again?", + "nextPhraseID": "gandoren_21" + }, + { + "text": "Yes. I have delivered them as you ordered.", + "nextPhraseID": "gandoren_deliver_y_1", + "requires": { + "progress": "feygard_shipment:50" + } + }, + { + "text": "Yes. I have delivered them.", + "nextPhraseID": "gandoren_deliver_n_1", + "requires": { + "progress": "feygard_shipment:60" + } + } + ] + }, + { + "id": "gandoren_tr_2", + "message": "I'm sorry, we only trade with allies of Feygard. Help me with the task I gave you and we might be able to work something out." + }, + { + "id": "gandoren_deliver_y_1", + "message": "Splendid! Feygard is in debt to you.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "feygard_shipment", + "value": 80 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_delivered_1" + } + ] + }, + { + "id": "gandoren_deliver_n_1", + "message": "Splendid! Feygard is in debt to you.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "feygard_shipment", + "value": 81 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_delivered_1" + } + ] + }, + { + "id": "gandoren_delivered_1", + "message": "I hope you managed to stay away from the savages of Nor City as much as possible while being over there.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_delivered_2" + } + ] + }, + { + "id": "gandoren_delivered_2", + "message": "From what I hear, things are rough down south.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_delivered_3" + } + ] + }, + { + "id": "gandoren_delivered_3", + "message": "As for you, you have both my and the rest of the Feygard patrol's gratitude for helping us with this.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_completed_2" + } + ] + }, + { + "id": "gandoren_completed_1", + "message": "You return. Thank you for helping with the shipment earlier.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_completed_2" + } + ] + }, + { + "id": "gandoren_completed_2", + "message": "Is there anything I can do for you?", + "replies": [ + { + "text": "Do you have anything to trade?", + "nextPhraseID": "gandoren_tr_3" + }, + { + "text": "No thanks. Goodbye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "gandoren_tr_3", + "replies": [ + { + "nextPhraseID": "gandoren_tr_4", + "requires": { + "progress": "rogorn:60" + } + }, + { + "nextPhraseID": "gandoren_tr_6" + } + ] + }, + { + "id": "gandoren_tr_4", + "message": "Absolutely, as thanks for the help you provided earlier to both Minarra and me, we could agree to trade with you.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gandoren_tr_5" + } + ] + }, + { + "id": "gandoren_tr_5", + "message": "Go up in the lookout tower over there and talk to Minarra about equipment. She has our supply.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nondisplay", + "value": 18 + } + ] + }, + { + "id": "gandoren_tr_6", + "message": "I hear that Minarra up in the lookout tower over there wants help with something. Why don't you go up to her and ask her about it, and we might be able to work something out after that." + } +] diff --git a/AndorsTrail/res/raw/conversationlist_gylew.json b/AndorsTrail/res/raw/conversationlist_gylew.json new file mode 100644 index 000000000..5261ae79b --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_gylew.json @@ -0,0 +1,10 @@ +[ + { + "id": "gylew", + "message": "Beat it, kid. You shouldn't be out here." + }, + { + "id": "gylew_henchman", + "message": "Hey, I'm trying to admire the view here. Get out of my way." + } +] diff --git a/AndorsTrail/res/raw/conversationlist_hadracor.json b/AndorsTrail/res/raw/conversationlist_hadracor.json new file mode 100644 index 000000000..6638856b9 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_hadracor.json @@ -0,0 +1,424 @@ +[ + { + "id": "woodcutter_0", + "message": "Stupid wasps.." + }, + { + "id": "woodcutter_2", + "message": "Stay away from the road to the west, for it leads to Carn Tower. You most certainly do not want to go there.", + "replies": [ + { + "text": "N", + "nextPhraseID": "woodcutter_1" + } + ] + }, + { + "id": "woodcutter_1", + "message": "When travelling, keep to the roads. Veer off course and you might find yourself in danger." + }, + { + "id": "woodcutter_3", + "message": "Maybe we shouldn't have cut down all the trees over there. Those wasps really seem upset." + }, + { + "id": "woodcutter_4", + "message": "I can still feel the sting from those wasps in my legs. Good thing we are done with all the trees now." + }, + { + "id": "woodcutter_5", + "message": "Hello there, welcome to our encampment. You should talk to Hadracor over there." + }, + { + "id": "hadracor", + "replies": [ + { + "nextPhraseID": "hadracor_complete_1", + "requires": { + "progress": "hadracor:30" + } + }, + { + "nextPhraseID": "hadracor_gaveitems_1", + "requires": { + "progress": "hadracor:21" + } + }, + { + "nextPhraseID": "hadracor_gaveitems_1", + "requires": { + "progress": "hadracor:20" + } + }, + { + "nextPhraseID": "hadracor_wantsitems_1", + "requires": { + "progress": "hadracor:10" + } + }, + { + "nextPhraseID": "hadracor_1" + } + ] + }, + { + "id": "hadracor_1", + "message": "Hello there, I am Hadracor.", + "replies": [ + { + "text": "What is this place?", + "nextPhraseID": "hadracor_story_1" + }, + { + "text": "Have you seen my brother Andor around here? Looks somewhat like me.", + "nextPhraseID": "hadracor_andor_1" + } + ] + }, + { + "id": "hadracor_andor_1", + "message": "Looks like you eh? No, I would have remembered.", + "replies": [ + { + "text": "Ok, goodbye.", + "nextPhraseID": "X" + }, + { + "text": "What is this place?", + "nextPhraseID": "hadracor_story_1" + } + ] + }, + { + "id": "hadracor_story_1", + "message": "This is the encampment that we woodcutters set up while working on the trees here for the past few days.", + "replies": [ + { + "text": "What have you been working on?", + "nextPhraseID": "hadracor_story_2" + }, + { + "text": "I noticed a lot of tree stumps around here", + "nextPhraseID": "hadracor_story_2" + } + ] + }, + { + "id": "hadracor_story_2", + "message": "Our orders were to cut down all trees south of the Feygard bridge and north of this here road to Carn Tower.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hadracor_story_3" + } + ] + }, + { + "id": "hadracor_story_3", + "message": "I guess the nobles of Feygard have some plans for these lands.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hadracor_story_4" + } + ] + }, + { + "id": "hadracor_story_4", + "message": "We, we just cut down them trees. No questions asked.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hadracor_story_5" + } + ] + }, + { + "id": "hadracor_story_5", + "message": "However, this time we encountered some trouble.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hadracor_story_6" + } + ] + }, + { + "id": "hadracor_story_6", + "message": "You see, there were these really nasty wasps in that forest we cut down.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hadracor_story_7" + } + ] + }, + { + "id": "hadracor_story_7", + "message": "Nothing like we've seen before, and I'll tell you, we have seen a lot of wildlife in our days.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hadracor_story_8" + } + ] + }, + { + "id": "hadracor_story_8", + "message": "They almost got the best of us, and we were almost ready to quit it. But a job is a job and we need to get paid by Feygard for this job.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hadracor_story_9" + } + ] + }, + { + "id": "hadracor_story_9", + "message": "So we went ahead and finished all of them trees, trying to evade the wasps as much as we could.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hadracor_story_10" + } + ] + }, + { + "id": "hadracor_story_10", + "message": "However, I bet that whatever plans the nobles of Feygard have for these lands, they surely don't include these nasty wasps still being around.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hadracor_story_11" + } + ] + }, + { + "id": "hadracor_story_11", + "message": "See this scratch here? And this abscess? Yep, those wasps.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hadracor_story_11_1" + } + ] + }, + { + "id": "hadracor_story_11_1", + "replies": [ + { + "nextPhraseID": "hadracor_accept_1_1", + "requires": { + "progress": "hadracor:10" + } + }, + { + "nextPhraseID": "hadracor_story_12" + } + ] + }, + { + "id": "hadracor_story_12", + "message": "I would love to get revenge on those wasps. We, we aren't good enough fighters to take on those wasps, they are really too quick for us.", + "replies": [ + { + "text": "Tough luck, you seem like a bunch of weaklings anyway.", + "nextPhraseID": "hadracor_decline_1" + }, + { + "text": "I could try to take on those wasps for you if you want.", + "nextPhraseID": "hadracor_accept_1" + }, + { + "text": "Just a couple of wasps? That's no problem for me. I'll kill them for you.", + "nextPhraseID": "hadracor_accept_1" + } + ] + }, + { + "id": "hadracor_decline_1", + "message": "I will pretend I didn't hear that." + }, + { + "id": "hadracor_accept_1", + "message": "You would? Sure, you have a try.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hadracor_accept_1_1" + } + ] + }, + { + "id": "hadracor_accept_1_1", + "message": "I noticed that some of the wasps are larger than the other ones, and the other wasps tend to follow the larger ones around.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hadracor_accept_2" + } + ] + }, + { + "id": "hadracor_accept_2", + "message": "If you could kill at least five of those giant ones and bring me back their wings as proof, I would be very grateful.", + "replies": [ + { + "text": "Sure, I will be back with those giant wasp wings for you.", + "nextPhraseID": "hadracor_accept_3" + }, + { + "text": "No problem.", + "nextPhraseID": "hadracor_accept_3" + }, + { + "text": "On second thought, I better stay out of this.", + "nextPhraseID": "hadracor_decline_2" + } + ] + }, + { + "id": "hadracor_decline_2", + "message": "Fine, I guess we can find someone else to help us get revenge on them." + }, + { + "id": "hadracor_accept_3", + "message": "Good, hurry back once you are done.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "hadracor", + "value": 10 + } + ] + }, + { + "id": "hadracor_wantsitems_1", + "message": "Hello again. Did you kill those wasps for us?", + "replies": [ + { + "text": "Could you tell me your story again?", + "nextPhraseID": "hadracor_story_2" + }, + { + "text": "What was I supposed to do again?", + "nextPhraseID": "hadracor_story_6" + }, + { + "text": "Not yet, but I am working on it.", + "nextPhraseID": "hadracor_accept_3" + }, + { + "text": "Yes, I killed six of them.", + "nextPhraseID": "hadracor_wantsitems_3", + "requires": { + "item": { + "itemID": "hadracor_waspwing", + "quantity": 6, + "requireType": 0 + } + } + }, + { + "text": "Yes, I killed five of them.", + "nextPhraseID": "hadracor_wantsitems_2", + "requires": { + "item": { + "itemID": "hadracor_waspwing", + "quantity": 5, + "requireType": 0 + } + } + } + ] + }, + { + "id": "hadracor_wantsitems_2", + "message": "Wow, you actually killed those things?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "hadracor", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "hadracor_gaveitems_1" + } + ] + }, + { + "id": "hadracor_wantsitems_3", + "message": "Wow, you actually killed six of those things? I thought there were only five, so I guess I should be even more grateful. Here, take these gloves as thanks.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "hadracor", + "value": 21 + }, + { + "rewardType": 1, + "rewardID": "hadracor_reward" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "hadracor_gaveitems_1" + } + ] + }, + { + "id": "hadracor_gaveitems_1", + "message": "Well done my friend. Thank you for getting revenge on those things.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hadracor_complete_2" + } + ] + }, + { + "id": "hadracor_complete_1", + "message": "Hello again. Thank you for your help with those wasps earlier.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hadracor_complete_2" + } + ] + }, + { + "id": "hadracor_complete_2", + "message": "As a token of our appreciation, we are willing to trade some of our equipment with you if you want.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "hadracor", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "hadracor_complete_3" + } + ] + }, + { + "id": "hadracor_complete_3", + "message": "It's not much, but we do have some really sharp axes that you might be interested in.", + "replies": [ + { + "text": "No thanks. Goodbye.", + "nextPhraseID": "X" + }, + { + "text": "Ok, let me see what you have.", + "nextPhraseID": "S" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_hjaldar.json b/AndorsTrail/res/raw/conversationlist_hjaldar.json new file mode 100644 index 000000000..6e5c48d6b --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_hjaldar.json @@ -0,0 +1,426 @@ +[ + { + "id": "hjaldar", + "replies": [ + { + "nextPhraseID": "hjaldar_pots_1", + "requires": { + "progress": "sisterfight:61" + } + }, + { + "nextPhraseID": "hjaldar_r3", + "requires": { + "progress": "sisterfight:60" + } + }, + { + "nextPhraseID": "hjaldar_r1", + "requires": { + "progress": "sisterfight:45" + } + }, + { + "nextPhraseID": "hjaldar_7r", + "requires": { + "progress": "sisterfight:40" + } + }, + { + "nextPhraseID": "hjaldar_1" + } + ] + }, + { + "id": "hjaldar_1", + "message": "Hello there. I am Hjaldar.", + "replies": [ + { + "text": "What do you do here?", + "nextPhraseID": "hjaldar_2" + } + ] + }, + { + "id": "hjaldar_2", + "message": "I used to be a potion-maker. In fact, I used to be the only potion-maker here in Remgard.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hjaldar_3" + } + ] + }, + { + "id": "hjaldar_3", + "message": "That was good business. People even travelled here from other cities down the mountain.", + "replies": [ + { + "text": "What made you stop?", + "nextPhraseID": "hjaldar_4" + } + ] + }, + { + "id": "hjaldar_4", + "message": "Well, two things. Firstly, I am getting older and don't have the desire to be working full days, making potions for gold.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hjaldar_5" + } + ] + }, + { + "id": "hjaldar_5", + "message": "Secondly, I ran out of most of the ingredients. Some of them are really hard to get.", + "replies": [ + { + "text": "Too bad. Nice talking to you, goodbye.", + "nextPhraseID": "X" + }, + { + "text": "I am looking for a potion of accuracy focus for the Elwille sisters, can you help with that?", + "nextPhraseID": "hjaldar_6", + "requires": { + "progress": "sisterfight:31" + } + } + ] + }, + { + "id": "hjaldar_6", + "message": "Oh, potions of accuracy focus. Yes, those were popular. Unfortunately, I can't help you with that now.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hjaldar_7" + } + ] + }, + { + "id": "hjaldar_7", + "message": "My supply of Lyson marrow extract has gone dry. Without some of that, I can't make potions that are useful for anything really.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "sisterfight", + "value": 40 + } + ], + "replies": [ + { + "text": "Too bad. Thanks anyway. Goodbye.", + "nextPhraseID": "X" + }, + { + "text": "Is there somewhere I can get some, and bring it to you?", + "nextPhraseID": "hjaldar_8" + } + ] + }, + { + "id": "hjaldar_7r", + "message": "Hello again. Sorry about not being able to help you with those potions of accuracy focus that you asked for.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hjaldar_7" + } + ] + }, + { + "id": "hjaldar_8", + "message": "I doubt that. It is really hard to find. Only the most well-stocked potion-makers have it.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hjaldar_9" + } + ] + }, + { + "id": "hjaldar_9", + "message": "I used to get my supply from my old friend Mazeg. I have no idea where he might be these days though.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hjaldar_10" + } + ] + }, + { + "id": "hjaldar_10", + "message": "I guess, if you can find him, he might be able to provide you with some Lyson marrow extract.", + "replies": [ + { + "text": "Any ideas on where I might find him?", + "nextPhraseID": "hjaldar_12" + }, + { + "text": "This sounds like too much trouble. Never mind that potion.", + "nextPhraseID": "hjaldar_11" + } + ] + }, + { + "id": "hjaldar_11", + "message": "Ok then. Sorry I couldn't help you. Goodbye." + }, + { + "id": "hjaldar_12", + "message": "No, I don't know. Last time I saw him, he was headed west. From the looks of his backpack, it looked like he was getting ready for quite a long trip to the west.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hjaldar_13" + } + ] + }, + { + "id": "hjaldar_13", + "message": "He even had gear for travelling through colder climates - snow and ice and that sort of thing.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "sisterfight", + "value": 41 + } + ], + "replies": [ + { + "text": "Thanks for the info. I will try to find him.", + "nextPhraseID": "hjaldar_14" + }, + { + "text": "This sounds like too much trouble. Never mind that potion.", + "nextPhraseID": "hjaldar_11" + } + ] + }, + { + "id": "hjaldar_14", + "message": "Good luck finding him. If you do find him, which I doubt you do, please say hello to him from me, and tell him that I am well.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "sisterfight", + "value": 45 + } + ] + }, + { + "id": "hjaldar_r1", + "message": "Hello again. Did you find my old friend Mazeg?", + "replies": [ + { + "text": "Yes, I brought you some Lyson marrow extract.", + "nextPhraseID": "hjaldar_r2", + "requires": { + "item": { + "itemID": "lyson_marrow", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "What was that you were saying about those potions of accuracy focus?", + "nextPhraseID": "hjaldar_6" + }, + { + "text": "What made you stop making potions?", + "nextPhraseID": "hjaldar_4" + }, + { + "text": "Any ideas on where I might find Mazeg?", + "nextPhraseID": "hjaldar_12" + } + ] + }, + { + "id": "hjaldar_r2", + "message": "Oh wow. Yes, this is indeed some of that marrow extract. Nice work finding it!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "sisterfight", + "value": 60 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "hjaldar_r4" + } + ] + }, + { + "id": "hjaldar_r3", + "message": "Thanks for bringing me some of that marrow extract. Nice work finding it!", + "replies": [ + { + "text": "N", + "nextPhraseID": "hjaldar_r4" + } + ] + }, + { + "id": "hjaldar_r4", + "message": "Tell me, did you find Mazeg or did you get it from somewhere else?", + "replies": [ + { + "text": "I visited Mazeg up in the Blackwater Mountain settlement.", + "nextPhraseID": "hjaldar_r5" + }, + { + "text": "You made me run all the way to Blackwater Mountain, I sure hope those potions are worth it!", + "nextPhraseID": "hjaldar_r5" + } + ] + }, + { + "id": "hjaldar_r5", + "message": "Blackwater Mountain? I'm afraid I don't know where that is. Never mind, I hope that all is well with my old friend.", + "replies": [ + { + "text": "He told me to send you his warmest greetings.", + "nextPhraseID": "hjaldar_r6" + }, + { + "text": "He seemed like a pitiful old man that has seen the best of his days.", + "nextPhraseID": "hjaldar_r7" + } + ] + }, + { + "id": "hjaldar_r6", + "message": "Good. Good. I am glad to hear he is well.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hjaldar_r8" + } + ] + }, + { + "id": "hjaldar_r7", + "message": "Time has not been on his side, I see.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hjaldar_r8" + } + ] + }, + { + "id": "hjaldar_r8", + "message": "Anyway. Let's make that potion that you asked for earlier. I even prepared the other ingredients for another potion beforehand.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hjaldar_r9" + } + ] + }, + { + "id": "hjaldar_r9", + "message": "Now, let's see. Some of these.. *Hjaldar pulls out some dried up berries and puts them in his mortar*", + "replies": [ + { + "text": "N", + "nextPhraseID": "hjaldar_r10" + } + ] + }, + { + "id": "hjaldar_r10", + "message": "Add some of this into some clean vials..", + "replies": [ + { + "text": "N", + "nextPhraseID": "hjaldar_r11" + } + ] + }, + { + "id": "hjaldar_r11", + "message": "Just a pinch of these into one of these vials..", + "replies": [ + { + "text": "N", + "nextPhraseID": "hjaldar_r12" + } + ] + }, + { + "id": "hjaldar_r12", + "message": "Finally, the Lyson marrow extract..", + "replies": [ + { + "text": "N", + "nextPhraseID": "hjaldar_r13" + } + ] + }, + { + "id": "hjaldar_r13", + "message": "There. Now we just need to give them a good shake.", + "replies": [ + { + "text": "N", + "nextPhraseID": "hjaldar_r14" + } + ] + }, + { + "id": "hjaldar_r14", + "message": "*Hjaldar shakes the vials vigorously, one in each of his hands*", + "replies": [ + { + "text": "N", + "nextPhraseID": "hjaldar_r15" + } + ] + }, + { + "id": "hjaldar_r15", + "message": "Ah, that should do it. Here you go. One potion of accuracy focus and one potion of damage focus. I hope they will be useful to you.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "sisterfight", + "value": 61 + }, + { + "rewardType": 1, + "rewardID": "hjaldar_pots", + "value": 0 + } + ], + "replies": [ + { + "text": "Thank you.", + "nextPhraseID": "X" + }, + { + "text": "Whatever. I sure hope all this work is worth it!", + "nextPhraseID": "X" + } + ] + }, + { + "id": "hjaldar_pots_1", + "message": "Thanks for contacting Mazeg for me earlier. With this Lyson marrow extract that you brought me, I can now make other potions for you if you want.", + "replies": [ + { + "text": "Let me see what potions you have.", + "nextPhraseID": "S" + }, + { + "text": "You are welcome, goodbye.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_ingus.json b/AndorsTrail/res/raw/conversationlist_ingus.json new file mode 100644 index 000000000..9e0aa4d53 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_ingus.json @@ -0,0 +1,257 @@ +[ + { + "id": "ingus", + "replies": [ + { + "nextPhraseID": "ingus_r1", + "requires": { + "progress": "sisterfight:10" + } + }, + { + "nextPhraseID": "ingus_1" + } + ] + }, + { + "id": "ingus_1", + "message": "Hello there. I don't think I have seen you here in Remgard before.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ingus_speak1" + } + ] + }, + { + "id": "ingus_r1", + "message": "Hello again. I hope you enjoy your stay in Remgard.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ingus_speak1" + } + ] + }, + { + "id": "ingus_speak1", + "message": "How may I help you?", + "replies": [ + { + "text": "What is there to do around here?", + "nextPhraseID": "ingus_2" + }, + { + "text": "Is there a shop in town?", + "nextPhraseID": "ingus_s1" + }, + { + "text": "What is happening around town?", + "nextPhraseID": "ingus_2" + } + ] + }, + { + "id": "ingus_2", + "message": "Oh, there's not much happening around here. We try to keep the town as peaceful as possible.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ingus_3" + } + ] + }, + { + "id": "ingus_3", + "message": "We don't get many visitors up here in the mountains.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ingus_4s" + } + ] + }, + { + "id": "ingus_4s", + "replies": [ + { + "nextPhraseID": "ingus_4b", + "requires": { + "progress": "remgard2:45" + } + }, + { + "nextPhraseID": "ingus_4a" + } + ] + }, + { + "id": "ingus_4a", + "message": "However, lately there has been some trouble here in town.", + "replies": [ + { + "text": "What trouble?", + "nextPhraseID": "ingus_t1" + }, + { + "text": "Never mind that, is there a shop in town?", + "nextPhraseID": "ingus_s1" + } + ] + }, + { + "id": "ingus_4b", + "message": "Hopefully, we'll get a few more visitors now that you've helped us with figuring out what happened to the people that went missing.", + "replies": [ + { + "text": "You are welcome. Anything else?", + "nextPhraseID": "ingus_t3" + }, + { + "text": "Is there a shop in town?", + "nextPhraseID": "ingus_s1" + } + ] + }, + { + "id": "ingus_t1", + "message": "Oh, I don't know much about it. The guards say they have seen strange signs outside town, and some people have gone missing.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ingus_t2" + } + ] + }, + { + "id": "ingus_t2", + "message": "I try to keep out of it though. Sounds like trouble to me.", + "replies": [ + { + "text": "Anything else?", + "nextPhraseID": "ingus_t3" + }, + { + "text": "Thank you, goodbye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "ingus_t3", + "message": "Well, there's always the Elwille sisters, fighting as always.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ingus_t4s" + } + ] + }, + { + "id": "ingus_t4s", + "replies": [ + { + "nextPhraseID": "ingus_q1", + "requires": { + "progress": "sisterfight:71" + } + }, + { + "nextPhraseID": "ingus_t4" + } + ] + }, + { + "id": "ingus_t4", + "message": "Last night, they must have kept the whole town awake, the way they were shouting at each other.", + "replies": [ + { + "text": "What are they fighting about?", + "nextPhraseID": "ingus_t5" + } + ] + }, + { + "id": "ingus_t5", + "message": "Oh .. nothing .. everything. I don't know. No one really puts much weight in their squabbling.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ingus_t6" + } + ] + }, + { + "id": "ingus_t6", + "message": "They live in one of the cabins on the southern shore. *Ingus points to the south*.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "sisterfight", + "value": 10 + } + ], + "replies": [ + { + "text": "Thank you, I might go visit them. Goodbye.", + "nextPhraseID": "X" + }, + { + "text": "Thank you. Goodbye.", + "nextPhraseID": "X" + }, + { + "text": "Thank you. I wanted to ask you, is there a shop in town?", + "nextPhraseID": "ingus_s1" + } + ] + }, + { + "id": "ingus_s1", + "message": "Shop? Oh yes, of course. There's Rothses' and Arnal's shops right there. *Ingus points to the two nearby houses to the west*", + "replies": [ + { + "text": "N", + "nextPhraseID": "ingus_s2" + } + ] + }, + { + "id": "ingus_s2", + "message": "Also, if you have the coin, you can always spend it in the tavern down in town.", + "replies": [ + { + "text": "Thank you. What is happening around town?", + "nextPhraseID": "ingus_2" + }, + { + "text": "Thank you, goodbye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "ingus_q1", + "message": "Unfortunately, for whatever reason, people that live in their neighborhood have been reporting the situation between the two of them has recently become more..., shall we say.., 'noticeable'.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ingus_q2" + } + ] + }, + { + "id": "ingus_q2", + "message": "I'm afraid that if they don't resolve their differences soon on their own, that the city council will have to act and resolve the matter for them.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ingus_q3" + } + ] + }, + { + "id": "ingus_q3", + "message": "It wouldn't be the first time the city council had to intervene in private matters that got out of hand." + } +] diff --git a/AndorsTrail/res/raw/conversationlist_jan.json b/AndorsTrail/res/raw/conversationlist_jan.json new file mode 100644 index 000000000..0a08ecee2 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_jan.json @@ -0,0 +1,350 @@ +[ + { + "id": "jan_start_select", + "replies": [ + { + "nextPhraseID": "jan_complete2", + "requires": { + "progress": "jan:100" + } + }, + { + "nextPhraseID": "jan_return", + "requires": { + "progress": "jan:10" + } + }, + { + "nextPhraseID": "jan_default" + } + ] + }, + { + "id": "jan_default", + "message": "Hello kid. Please leave me to my mourning.", + "replies": [ + { + "text": "What is the problem?", + "nextPhraseID": "jan_default2" + }, + { + "text": "Do you want to talk about it?", + "nextPhraseID": "jan_default2" + }, + { + "text": "Ok, bye", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_default2", + "message": "Oh, it's so sad. I really don't want to talk about it.", + "replies": [ + { + "text": "Please do.", + "nextPhraseID": "jan_default3" + }, + { + "text": "Ok, bye", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_default3", + "message": "Well, I guess it's ok to tell you. You seem to be a nice enough kid.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default4" + } + ] + }, + { + "id": "jan_default4", + "message": "My friend Gandir, his friend Irogotu, and I were down here digging this hole. We had heard there was a hidden treasure down here.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default5" + } + ] + }, + { + "id": "jan_default5", + "message": "We started digging and finally broke through to the cave system below. That's when we discovered them. The critters and bugs.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default6" + } + ] + }, + { + "id": "jan_default6", + "message": "Oh those critters. Damn bastards. Nearly killed me they did.\n\nGandir and I told Irogotu that we should stop the digging and leave while we still could.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default7" + } + ] + }, + { + "id": "jan_default7", + "message": "But Irogotu wanted to continue deeper into the dungeon. He and Gandir got into an argument and started fighting.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default8" + } + ] + }, + { + "id": "jan_default8", + "message": "That's when it happened.\n\n*sob*\n\nOh what have we done?", + "replies": [ + { + "text": "Please go on", + "nextPhraseID": "jan_default9" + } + ] + }, + { + "id": "jan_default9", + "message": "Irogotu killed Gandir with his bare hands. You could see the fire in his eyes. He almost seemed to enjoy it.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default10" + } + ] + }, + { + "id": "jan_default10", + "message": "I fled and haven't dared go back down there because of the critters and Irogotu himself.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default11" + } + ] + }, + { + "id": "jan_default11", + "message": "Oh that damn Irogotu. If only I could get to him. I'd show him one thing and another.", + "replies": [ + { + "text": "Do you think I could help?", + "nextPhraseID": "jan_default11_1" + } + ] + }, + { + "id": "jan_default11_1", + "message": "Do you think you could help me?", + "replies": [ + { + "text": "Sure, there may be some treasure in this for me.", + "nextPhraseID": "jan_default12" + }, + { + "text": "Sure. Irogotu should pay for what he did.", + "nextPhraseID": "jan_default12" + }, + { + "text": "No thanks, I would rather not be involved in this. It sounds dangerous.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_default12", + "message": "Really? You think you could help? Hm, maybe you could. Beware of those bugs though, they're really tough bastards.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "jan", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jan_default13" + } + ] + }, + { + "id": "jan_default13", + "message": "If you really want to help, go find Irogotu down in the cave, and get me back Gandir's ring.", + "replies": [ + { + "text": "Sure, I'll help.", + "nextPhraseID": "jan_default14" + }, + { + "text": "Can you tell me the story again?", + "nextPhraseID": "jan_background" + }, + { + "text": "Never mind, goodbye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_default14", + "message": "Return to me when you are done. Bring me Gandir's ring from Irogotu down in the cave.", + "replies": [ + { + "text": "Ok, bye", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_return", + "message": "Hello again kid. Did you find Irogotu down in the cave?", + "replies": [ + { + "text": "No, not yet.", + "nextPhraseID": "jan_default14" + }, + { + "text": "Can you tell me your story again?", + "nextPhraseID": "jan_background" + }, + { + "text": "Yes, I have killed Irogotu.", + "nextPhraseID": "jan_complete", + "requires": { + "item": { + "itemID": "ring_gandir", + "quantity": 1, + "requireType": 0 + } + } + } + ] + }, + { + "id": "jan_background", + "message": "Didn't you listen the first time I told you the story? Do I really have to tell you the story one more time?", + "replies": [ + { + "text": "Yes, please tell me the story again.", + "nextPhraseID": "jan_default3" + }, + { + "text": "I wasn't listening that much the first time you told it. What was that about a treasure?", + "nextPhraseID": "jan_default4" + }, + { + "text": "No, never mind. I remember it now.", + "nextPhraseID": "jan_default14" + } + ] + }, + { + "id": "jan_complete2", + "message": "Thanks for dealing with Irogotu earlier! I am forever in debt to you.", + "replies": [ + { + "text": "Bye", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jan_complete", + "message": "Wait, what? You actually went down there and returned alive? How did you manage that? Wow, I almost died going into that cave.\n\nOh thank you so much for bringing me back Gandir's ring! Now I can have something to remember him by.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "jan", + "value": 100 + } + ], + "replies": [ + { + "text": "Glad that I could help. Goodbye.", + "nextPhraseID": "X" + }, + { + "text": "Shadow be with you. Goodbye.", + "nextPhraseID": "X" + }, + { + "text": "Whatever. I only did it for the loot.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "irogotu", + "message": "Well hello there. Another adventurer coming to steal my bounty. This is MY CAVE. The treasure will be MINE!", + "replies": [ + { + "text": "Did you kill Gandir?", + "nextPhraseID": "irogotu1", + "requires": { + "progress": "jan:10" + } + } + ] + }, + { + "id": "irogotu1", + "message": "That whelp Gandir? He was in my way. I merely used him as a tool to dig deeper into the cave.", + "replies": [ + { + "text": "N", + "nextPhraseID": "irogotu2" + } + ] + }, + { + "id": "irogotu2", + "message": "Besides, I never really liked him anyway.", + "replies": [ + { + "text": "I guess he deserved to die. Did he have a ring on him?", + "nextPhraseID": "irogotu3" + }, + { + "text": "Jan mentioned something about a ring?", + "nextPhraseID": "irogotu3" + } + ] + }, + { + "id": "irogotu3", + "message": "NO! You cannot have it. It's mine! And who are you anyway kid, coming down here to disturb me?!", + "replies": [ + { + "text": "I'm not a kid anymore! Now give me that ring!", + "nextPhraseID": "irogotu4" + }, + { + "text": "Give me that ring and we might both come out of here alive.", + "nextPhraseID": "irogotu4" + } + ] + }, + { + "id": "irogotu4", + "message": "No. If you want it you will have to take it from me by force, and I should tell you that my powers are great. Besides, you probably wouldn't dare fight me anyway.", + "replies": [ + { + "text": "Very well, let's see who dies here.", + "nextPhraseID": "F" + }, + { + "text": "By the Shadow, Gandir will be avenged.", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_jhaeld.json b/AndorsTrail/res/raw/conversationlist_jhaeld.json new file mode 100644 index 000000000..ec662fd94 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_jhaeld.json @@ -0,0 +1,1149 @@ +[ + { + "id": "jhaeld", + "replies": [ + { + "nextPhraseID": "jhaeld_idol_1", + "requires": { + "progress": "fiveidols:41" + } + }, + { + "nextPhraseID": "jhaeld_completed", + "requires": { + "progress": "remgard2:45" + } + }, + { + "nextPhraseID": "jhaeld_killalg_3", + "requires": { + "progress": "remgard2:41" + } + }, + { + "nextPhraseID": "jhaeld_killalg_2", + "requires": { + "progress": "remgard2:40" + } + }, + { + "nextPhraseID": "jhaeld_killalg", + "requires": { + "progress": "remgard2:21" + } + }, + { + "nextPhraseID": "jhaeld_alg_3", + "requires": { + "progress": "remgard2:10" + } + }, + { + "nextPhraseID": "jhaeld_rejected", + "requires": { + "progress": "remgard:110" + } + }, + { + "nextPhraseID": "jhaeld_return8", + "requires": { + "progress": "remgard:80" + } + }, + { + "nextPhraseID": "jhaeld_return6", + "requires": { + "progress": "remgard:75" + } + }, + { + "nextPhraseID": "jhaeld_return1", + "requires": { + "progress": "remgard:50" + } + }, + { + "nextPhraseID": "jhaeld_1" + } + ] + }, + { + "id": "jhaeld_1", + "message": "What, who are you? Don't bother me, child. We don't want kids running around in here.", + "replies": [ + { + "text": "Are you Jhaeld? I was sent here to help you investigate the missing people.", + "nextPhraseID": "jhaeld_3" + }, + { + "text": "Hey, watch that tone of yours. It would be a pity if more of your people would .. disappear.", + "nextPhraseID": "jhaeld_2" + } + ] + }, + { + "id": "jhaeld_2", + "message": "Hrmpf. I don't take threats lightly. Especially not from snot-nosed kids like you.", + "replies": [ + { + "text": "I was sent here to help you investigate the missing people.", + "nextPhraseID": "jhaeld_3" + }, + { + "text": "You better get used to it with an attitude like that.", + "nextPhraseID": "jhaeld_leave" + } + ] + }, + { + "id": "jhaeld_reject", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 110 + } + ], + "replies": [ + { + "nextPhraseID": "jhaeld_leave" + } + ] + }, + { + "id": "jhaeld_leave", + "message": "I think you had better leave, before anything bad might happen to you." + }, + { + "id": "jhaeld_3", + "message": "Yes, yes. The missing people. What could possibly a kid like you help with, hm?", + "replies": [ + { + "text": "I was thinking you could provide me with some tasks to help you with the investigation.", + "nextPhraseID": "jhaeld_4" + }, + { + "text": "The bridge guard told me to talk to you.", + "nextPhraseID": "jhaeld_4" + } + ] + }, + { + "id": "jhaeld_4", + "message": "Hm, now that you are here you might as well make yourself useful instead of just standing there looking stupid. Even if you are a kid, you might be able to gather some information for me.", + "replies": [ + { + "text": "Sure, what do you need help with?", + "nextPhraseID": "jhaeld_7" + }, + { + "text": "Sigh. Ok. I guess.", + "nextPhraseID": "jhaeld_7" + }, + { + "text": "I'd rather kill something.", + "nextPhraseID": "jhaeld_6" + }, + { + "text": "Hey, watch that tone of yours!", + "nextPhraseID": "jhaeld_5" + } + ] + }, + { + "id": "jhaeld_5", + "message": "No, you watch that attitude of yours! Remember where you are and who you are talking to. I am Jhaeld, and you are in Remgard - which could be called *my* city.", + "replies": [ + { + "text": "Fine. What do you need help with?", + "nextPhraseID": "jhaeld_7" + }, + { + "text": "You don't scare me, old man!", + "nextPhraseID": "jhaeld_leave" + } + ] + }, + { + "id": "jhaeld_6", + "message": "Ha ha. You? Killing something?! Now that's about the funniest thing I have heard all day. Just about.", + "replies": [ + { + "text": "Hey, watch that tone of yours!", + "nextPhraseID": "jhaeld_5" + }, + { + "text": "I can handle myself. What do you need help with?", + "nextPhraseID": "jhaeld_7" + }, + { + "text": "You just wait and see.", + "nextPhraseID": "jhaeld_7" + } + ] + }, + { + "id": "jhaeld_7", + "message": "(Sigh) To even think that we need to get help from children to run errands now.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_8" + } + ] + }, + { + "id": "jhaeld_8", + "message": "I guess you know the background to this situation already. We have had some people disappear on us for some time now. We have no idea what has happened to the people that have disappeared, or even if they are still alive.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_9" + } + ] + }, + { + "id": "jhaeld_9", + "message": "Considering how many there are that have disappeared without anyone knowing what happened, it doesn't seem like they are out travelling.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_10" + } + ] + }, + { + "id": "jhaeld_10", + "message": "Ok, so what I would like you to do for me is ask some people what they know of the missing people. The fact that you are not from around here might help you get information that neither me nor my guards would be able to acquire.", + "replies": [ + { + "text": "Sounds simple enough.", + "nextPhraseID": "jhaeld_14" + }, + { + "text": "Sure, I'll do it. Who do you want me to ask?", + "nextPhraseID": "jhaeld_14" + }, + { + "text": "I'm not too sure about this. Will there be a reward?", + "nextPhraseID": "jhaeld_11" + }, + { + "text": "I'm not too sure about this. Why would I want to help you people?", + "nextPhraseID": "jhaeld_13" + } + ] + }, + { + "id": "jhaeld_11", + "message": "What, you have the arrogance to ask for a reward for helping us find the people that are missing? If it's gold you seek, I suggest you look somewhere else.", + "replies": [ + { + "text": "Fine, I'll do it. Who do you want me to ask?", + "nextPhraseID": "jhaeld_14" + }, + { + "text": "No reward, no help.", + "nextPhraseID": "jhaeld_12" + } + ] + }, + { + "id": "jhaeld_12", + "message": "I knew you were just trouble. Sigh. Please leave me.", + "replies": [ + { + "text": "Fine, I'll do it. Who do you want me to ask?", + "nextPhraseID": "jhaeld_14" + }, + { + "text": "Suit yourself.", + "nextPhraseID": "jhaeld_reject" + } + ] + }, + { + "id": "jhaeld_13", + "message": "Why!? It would be the right thing to do, of course. If you can't understand that, you had better go somewhere else.", + "replies": [ + { + "text": "Fine, I'll do it. Who do you want me to ask?", + "nextPhraseID": "jhaeld_14" + }, + { + "text": "I won't do it. I fail to see why I should help you.", + "nextPhraseID": "jhaeld_reject" + } + ] + }, + { + "id": "jhaeld_14", + "message": "There are four people here in Remgard that I believe have more to tell than what we have managed to get out of them. I want you to go ask them what they know of the disappearances.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 50 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_15" + } + ] + }, + { + "id": "jhaeld_15", + "message": "First, there's Norath and his wife Bethir that lives in the farmhouse on the southwestern shore. Bethir is nowhere to be found, and Norath might know more about where she is.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 51 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_16" + } + ] + }, + { + "id": "jhaeld_16", + "message": "Secondly, as you might have heard, we have been blessed by a visit from a delegation of the Knights of Elythom here in Remgard. Unfortunately, one of the knights has vanished, which is most embarrassing for us. They can be found here in the tavern.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 52 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_17" + } + ] + }, + { + "id": "jhaeld_17", + "message": "Third, the old woman Duaina usually has great wisdom to share, considering the experience she has with .. things out of the ordinary. You'll find her in her house to the south.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 53 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_18" + } + ] + }, + { + "id": "jhaeld_18", + "message": "Lastly, you should go talk to Rothses, the armorer in town. He meets most people now and then, and might have picked up something that he won't dare tell us guards. His house is on the western side of town.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 54 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_19" + } + ] + }, + { + "id": "jhaeld_19", + "message": "Please be as swift as possible.", + "replies": [ + { + "text": "What about that Algangror woman that lives outside town?", + "nextPhraseID": "jhaeld_21", + "requires": { + "progress": "remgard:30" + } + }, + { + "text": "I'll go ask them.", + "nextPhraseID": "jhaeld_20" + } + ] + }, + { + "id": "jhaeld_20", + "message": "As I said, please be as quick as possible." + }, + { + "id": "jhaeld_21", + "message": "What was that? Are you still here? I told you to be as quick as possible.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 59 + } + ], + "replies": [ + { + "text": "What about her? The bridge guard sent me to investigate that house, and seemed very upset when I mentioned that she's there.", + "nextPhraseID": "jhaeld_22" + }, + { + "text": "I'll go ask those people you mentioned.", + "nextPhraseID": "jhaeld_20" + } + ] + }, + { + "id": "jhaeld_22", + "message": "Did you not hear me? I told you to be as quick as possible! That means you should go talk to those people instead of standing around here blabbing.", + "replies": [ + { + "text": "But the bridge guard seemed ...", + "nextPhraseID": "jhaeld_23" + }, + { + "text": "But I thought that ...", + "nextPhraseID": "jhaeld_23" + }, + { + "text": "What about the ...", + "nextPhraseID": "jhaeld_23" + }, + { + "text": "I'll go ask those people you mentioned.", + "nextPhraseID": "jhaeld_20" + } + ] + }, + { + "id": "jhaeld_23", + "message": "Are you still talking? I knew you were nothing but trouble the moment I saw you. Now, can you please hurry up and go talk to those people?", + "replies": [ + { + "text": "Fine. I'll go ask them.", + "nextPhraseID": "jhaeld_20" + } + ] + }, + { + "id": "jhaeld_rejected", + "message": "What now? Look, we don't want kids like you running around here, messing with our things.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_leave" + } + ] + }, + { + "id": "jhaeld_return1", + "message": "Did you talk to those people that I sent you to ask about the missing people?", + "replies": [ + { + "text": "Yes, I have talked to all of them.", + "nextPhraseID": "jhaeld_return2", + "requires": { + "progress": "remgard:70" + } + }, + { + "text": "Can you repeat the names of those that you wanted me to ask?", + "nextPhraseID": "jhaeld_14" + }, + { + "text": "I'm not too sure about this. Will there be a reward?", + "nextPhraseID": "jhaeld_11" + }, + { + "text": "I'm not too sure about this. Why would I want to help you people?", + "nextPhraseID": "jhaeld_13" + }, + { + "text": "Not yet, but I will.", + "nextPhraseID": "jhaeld_19" + } + ] + }, + { + "id": "jhaeld_return2", + "message": "Well, what did you find out?", + "replies": [ + { + "text": "Nothing. None of them told me anything new about the missing people.", + "nextPhraseID": "jhaeld_return3" + } + ] + }, + { + "id": "jhaeld_return3", + "message": "So.. Let me get things straight. You went and asked them about the missing people, and they didn't tell you anything new?", + "replies": [ + { + "text": "No. None of them had anything new to say.", + "nextPhraseID": "jhaeld_return4" + }, + { + "text": "You heard me the first time.", + "nextPhraseID": "jhaeld_return4" + }, + { + "text": "Maybe you should have sent me to ask other people than these losers you sent me to.", + "nextPhraseID": "jhaeld_return4" + } + ] + }, + { + "id": "jhaeld_return4", + "message": "Oh, I knew you were nothing but trouble the moment I saw you.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_return5" + } + ] + }, + { + "id": "jhaeld_return5", + "message": "I sent you to do a simple task, and you return with .. nothing!", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_return6" + } + ] + }, + { + "id": "jhaeld_return6", + "message": "(Jhaeld mumbles) Stupid kids..", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 75 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_return7" + } + ] + }, + { + "id": "jhaeld_return7", + "message": "Fine then.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_return8" + } + ] + }, + { + "id": "jhaeld_return8", + "message": "I suggest you go look in other places if you really want to help us.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 80 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_return_s" + } + ] + }, + { + "id": "jhaeld_return_s", + "replies": [ + { + "nextPhraseID": "jhaeld_task2_n", + "requires": { + "progress": "fiveidols:20" + } + }, + { + "nextPhraseID": "jhaeld_task2_f", + "requires": { + "progress": "remgard:59" + } + }, + { + "nextPhraseID": "jhaeld_task2_y", + "requires": { + "progress": "remgard:30" + } + }, + { + "nextPhraseID": "jhaeld_task2" + } + ] + }, + { + "id": "jhaeld_task2_f", + "message": "Maybe someone else knows something that we haven't taken into account yet. Also, I seem to recall you saying something about Algangror before, is that right?", + "replies": [ + { + "text": "Yes. As I tried to tell you, Algangror is hiding in that abandoned house outside town.", + "nextPhraseID": "jhaeld_alg_3" + } + ] + }, + { + "id": "jhaeld_task2_y", + "message": "Maybe someone else knows something that we haven't taken into account yet.", + "replies": [ + { + "text": "The bridge guard sent me to scout an abandoned house outside town.", + "nextPhraseID": "jhaeld_alg_1" + }, + { + "text": "Does the name 'Algangror' mean anything to you?", + "nextPhraseID": "jhaeld_alg_2" + } + ] + }, + { + "id": "jhaeld_task2", + "message": "Maybe someone else knows something that we haven't taken into account yet.", + "replies": [ + { + "text": "The bridge guard sent me to scout an abandoned house outside town.", + "nextPhraseID": "jhaeld_alg_1" + }, + { + "text": "I might know something, but I have promised not to tell anyone.", + "nextPhraseID": "jhaeld_task2_1", + "requires": { + "progress": "remgard:31" + } + }, + { + "text": "I don't know anything else.", + "nextPhraseID": "jhaeld_task2_n" + }, + { + "text": "I'll go ask around.", + "nextPhraseID": "jhaeld_task2_n" + } + ] + }, + { + "id": "jhaeld_task2_1", + "message": "A secret, eh? You would do well to tell me what you know. Lives may be at stake here.", + "replies": [ + { + "text": "The bridge guard sent me to scout an abandoned house outside town.", + "nextPhraseID": "jhaeld_alg_1" + }, + { + "text": "No, I will keep my word and not tell.", + "nextPhraseID": "jhaeld_task2_2" + }, + { + "text": "Never mind, it was nothing.", + "nextPhraseID": "jhaeld_task2_n" + }, + { + "text": "Never mind, I'll go ask around if anyone else knows anything.", + "nextPhraseID": "jhaeld_task2_n" + } + ] + }, + { + "id": "jhaeld_task2_2", + "message": "Ah, someone with honor. I respect that, and will not ask any more.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_task2_n" + } + ] + }, + { + "id": "jhaeld_task2_n", + "message": "I have nothing more to say to you." + }, + { + "id": "jhaeld_alg_1", + "message": "Hm, yes, and what of it?", + "replies": [ + { + "text": "I met a woman named Algangror in that house.", + "nextPhraseID": "jhaeld_alg_2" + } + ] + }, + { + "id": "jhaeld_alg_2", + "message": "Algangror?! Now that's a name I have not heard in a long time.", + "replies": [ + { + "text": "Algangror is hiding in that abandoned house outside town.", + "nextPhraseID": "jhaeld_alg_3" + } + ] + }, + { + "id": "jhaeld_alg_3", + "message": "If Algangror is here, this is grim news indeed.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard2", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_alg_4" + } + ] + }, + { + "id": "jhaeld_alg_4", + "message": "To be honest, I had heard about this before, but I dismissed all talk of it since I did not believe it. Now you tell me this also, and I am starting to think that it may be true. She may have returned.", + "replies": [ + { + "text": "Who is she?", + "nextPhraseID": "jhaeld_alg_5" + } + ] + }, + { + "id": "jhaeld_alg_5", + "message": "She used to live here in Remgard, during the days of prosperity. She even helped with the crops on some days.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_alg_6" + } + ] + }, + { + "id": "jhaeld_alg_6", + "message": "Then something happened. She started getting ideas, and occasionally locked herself in her house for several days. No one really knew what she was doing in there, but we all knew that she was up to no good.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_alg_7" + } + ] + }, + { + "id": "jhaeld_alg_7", + "message": "I can still recall the stench that came from her house. Ugh. What could possibly smell that bad?", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_alg_8" + } + ] + }, + { + "id": "jhaeld_alg_8", + "message": "Anyway, we started questioning her, and tried to persuade her to tell what she was up to. Stubborn and crazy as she is, she refused of course.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_alg_9" + } + ] + }, + { + "id": "jhaeld_alg_9", + "message": "Things started getting worse, and the stench spread like a deep fog over the whole town. All of us living here in Remgard knew we had to act before she did something that could hurt us all.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_alg_10" + } + ] + }, + { + "id": "jhaeld_alg_10", + "message": "So we forced her to explain herself.", + "replies": [ + { + "text": "Did she tell?", + "nextPhraseID": "jhaeld_alg_11" + } + ] + }, + { + "id": "jhaeld_alg_11", + "message": "Would you believe it, she told us that what she believed in, and what she was doing was no concern of ours. She even had the stomach to tell us that she wanted to be left alone.", + "replies": [ + { + "text": "What did you do?", + "nextPhraseID": "jhaeld_alg_12" + } + ] + }, + { + "id": "jhaeld_alg_12", + "message": "Of course, we did what any sane man would do. We forced her to abandon her house and find somewhere else to live. Somewhere other than Remgard.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_alg_13" + } + ] + }, + { + "id": "jhaeld_alg_13", + "message": "You should have seen her. Nails long as your finger, and her face full of unwashed hair. Clearly, she was crazy and could not be reasoned with.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_alg_14" + } + ] + }, + { + "id": "jhaeld_alg_14", + "message": "When we marched her out of town, the children started crying out of fear of her.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_alg_15" + } + ] + }, + { + "id": "jhaeld_alg_15", + "message": "The worst thing though, is that she said she would put a curse on all of us.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_alg_16" + } + ] + }, + { + "id": "jhaeld_alg_16", + "message": "All of this was several seasons ago, and things have gone back to the usual business nowadays.", + "replies": [ + { + "text": "What now then, since she has returned?", + "nextPhraseID": "jhaeld_alg_17" + } + ] + }, + { + "id": "jhaeld_alg_17", + "message": "Yes. Her being back would explain the missing people. She must have done something to them. I fear for the worst.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_alg_18" + } + ] + }, + { + "id": "jhaeld_alg_18", + "message": "Considering the people that have disappeared, I frankly don't know what to do. As you know, even one of the Knights of Elythom has disappeared.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_alg_19" + } + ] + }, + { + "id": "jhaeld_alg_19", + "message": "Someone that can do that is dangerous indeed. I am not sure I would even risk sending the guards out there for her, in fear of what she might do.", + "replies": [ + { + "text": "So, what then?", + "nextPhraseID": "jhaeld_alg_20" + } + ] + }, + { + "id": "jhaeld_alg_20", + "message": "If I were to choose, I would rather not deal with it, and just seal the town bridge as safely as possible, to prevent any more people from disappearing.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard2", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_alg_21s" + } + ] + }, + { + "id": "jhaeld_alg_21s", + "replies": [ + { + "nextPhraseID": "jhaeld_alg_21n", + "requires": { + "progress": "remgard2:21" + } + }, + { + "nextPhraseID": "jhaeld_alg_21" + } + ] + }, + { + "id": "jhaeld_alg_21n", + "message": "I.. I don't know what to do." + }, + { + "id": "jhaeld_alg_21", + "message": "I.. I don't know what to do.", + "replies": [ + { + "text": "I could help you if you want.", + "nextPhraseID": "jhaeld_alg_24" + }, + { + "text": "You pathetic fool. You would rather sit here and do nothing instead of confronting her?", + "nextPhraseID": "jhaeld_alg_22" + }, + { + "text": "Hah, sucks to be you!", + "nextPhraseID": "jhaeld_alg_23" + } + ] + }, + { + "id": "jhaeld_alg_22", + "message": "I will not see more of my people get hurt, or whatever it is she has done to them. I will keep my people safe.", + "replies": [ + { + "text": "I could help you if you want.", + "nextPhraseID": "jhaeld_alg_24" + }, + { + "text": "Hah, sucks to be you!", + "nextPhraseID": "jhaeld_alg_23" + } + ] + }, + { + "id": "jhaeld_alg_23", + "message": "Insults won't get you anywhere. The people that have disappeared are still missing, and may be hurt, while you run around handing out insults. I pity you.", + "replies": [ + { + "text": "I could help you if you want.", + "nextPhraseID": "jhaeld_alg_24" + }, + { + "text": "You pathetic fool. You would rather sit here and do nothing instead of confronting her?", + "nextPhraseID": "jhaeld_alg_22" + } + ] + }, + { + "id": "jhaeld_alg_24", + "message": "If you really want to help us, then please be careful. She can not be trusted.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_alg_25" + } + ] + }, + { + "id": "jhaeld_alg_25", + "message": "However, if you were to find a way to make her disappear, we would of course be forever in your debt.", + "replies": [ + { + "text": "I'll see what I can do.", + "nextPhraseID": "jhaeld_alg_26" + }, + { + "text": "I have dealt with stronger foes.", + "nextPhraseID": "jhaeld_alg_27" + } + ] + }, + { + "id": "jhaeld_alg_26", + "message": "Remember, please be careful! I would not want to be responsible for another person disappearing.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard2", + "value": 21 + } + ] + }, + { + "id": "jhaeld_alg_27", + "message": "I doubt it.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_alg_26" + } + ] + }, + { + "id": "jhaeld_killalg", + "message": "Hello again. What news do you bring?", + "replies": [ + { + "text": "Can you tell me the story of Algangror again?", + "nextPhraseID": "jhaeld_alg_5" + }, + { + "text": "I am still trying to find a way to make Algangror disappear.", + "nextPhraseID": "jhaeld_alg_26" + }, + { + "text": "Algangror is dead.", + "nextPhraseID": "jhaeld_killalg_1", + "requires": { + "progress": "remgard2:35" + } + } + ] + }, + { + "id": "jhaeld_killalg_1", + "message": "I find this very hard to believe. For to have killed Algangror would have been a difficult task, given her power.", + "replies": [ + { + "text": "I have brought you her ring as proof that what I say is true.", + "nextPhraseID": "jhaeld_killalg_1b", + "requires": { + "item": { + "itemID": "algangror_ring", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "No, never mind. I haven't actually defeated her yet.", + "nextPhraseID": "jhaeld_alg_26" + } + ] + }, + { + "id": "jhaeld_killalg_1b", + "message": "I can hardly believe it! Yes, this is indeed her ring.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard2", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_killalg_2" + } + ] + }, + { + "id": "jhaeld_killalg_2", + "message": "You actually defeated her? I am so relieved! Tell me, how crazy was she? No, don't tell me, I don't want to hear more of her filth.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_killalg_3" + } + ] + }, + { + "id": "jhaeld_killalg_3", + "message": "This means that the people of Remgard are now safe from her, and it is all thanks to you! Who would have thought.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard2", + "value": 41 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_killalg_4" + } + ] + }, + { + "id": "jhaeld_killalg_4", + "message": "I.. I don't know what to say. Thank you, that's the least I can say.", + "replies": [ + { + "text": "You are most welcome.", + "nextPhraseID": "jhaeld_killalg_5" + }, + { + "text": "That was a tough fight. Now, let's talk reward.", + "nextPhraseID": "jhaeld_killalg_5" + }, + { + "text": "Just another body behind me.", + "nextPhraseID": "jhaeld_killalg_5" + } + ] + }, + { + "id": "jhaeld_killalg_5", + "message": "I would think that the whole town is in your debt, but they may not know it.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_killalg_6" + } + ] + }, + { + "id": "jhaeld_killalg_6", + "message": "Go talk to Rothses over at the west side of town. He should be able to help you improve some of your equipment.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard2", + "value": 45 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jhaeld_completed" + } + ] + }, + { + "id": "jhaeld_completed", + "message": "Again, thank you for all your help." + }, + { + "id": "jhaeld_idol_1", + "message": "Please leave me be, child. I just had a sudden attack of nausea. I should probably lie down." + } +] diff --git a/AndorsTrail/res/raw/conversationlist_jolnor.json b/AndorsTrail/res/raw/conversationlist_jolnor.json new file mode 100644 index 000000000..24ed8f3bf --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_jolnor.json @@ -0,0 +1,598 @@ +[ + { + "id": "jolnor_select_1", + "replies": [ + { + "nextPhraseID": "jolnor_default_3", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "jolnor_default_2", + "requires": { + "progress": "vilegard:20" + } + }, + { + "nextPhraseID": "jolnor_default" + } + ] + }, + { + "id": "jolnor_default", + "message": "Walk with the Shadow my child.", + "replies": [ + { + "text": "What is this place?", + "nextPhraseID": "jolnor_chapel_1" + }, + { + "text": "I was told to talk to you about why everyone in Vilegard is suspicious of outsiders.", + "nextPhraseID": "jolnor_suspicious_1", + "requires": { + "progress": "vilegard:10" + } + } + ] + }, + { + "id": "jolnor_default_2", + "message": "Walk with the Shadow my child.", + "replies": [ + { + "text": "Can you tell me again what this place is?", + "nextPhraseID": "jolnor_chapel_1" + }, + { + "text": "Let's talk about those missions for gaining trust that you talked about earlier.", + "nextPhraseID": "jolnor_quests_1" + }, + { + "text": "I require healing. Can I see what items you have available?", + "nextPhraseID": "jolnor_shop_1" + } + ] + }, + { + "id": "jolnor_default_3", + "message": "Walk with the Shadow my friend.", + "replies": [ + { + "text": "Can you tell me again what this place is?", + "nextPhraseID": "jolnor_chapel_1" + }, + { + "text": "I require healing. Can I see what items you have available?", + "nextPhraseID": "jolnor_shop_1" + } + ] + }, + { + "id": "jolnor_chapel_1", + "message": "This is Vilegard's place of worship for the Shadow. We praise the Shadow in all its might and glory.", + "replies": [ + { + "text": "Can you tell me more about the Shadow?", + "nextPhraseID": "jolnor_shadow_1" + }, + { + "text": "I require healing. Can I see what items you have available?", + "nextPhraseID": "jolnor_shop_1" + }, + { + "text": "Whatever. Just show me your goods.", + "nextPhraseID": "jolnor_shop_1" + } + ] + }, + { + "id": "jolnor_shadow_1", + "message": "The Shadow protects us from the dangers of the night. It keeps us safe and comforts us when we sleep.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_select_1" + } + ] + }, + { + "id": "jolnor_shop_1", + "replies": [ + { + "nextPhraseID": "S", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "jolnor_shop_2" + } + ] + }, + { + "id": "jolnor_shop_2", + "message": "I don't trust you enough yet to feel comfortable trading with you.", + "replies": [ + { + "text": "Why are you that suspicious?", + "nextPhraseID": "jolnor_suspicious_1" + }, + { + "text": "Very well.", + "nextPhraseID": "jolnor_select_1" + } + ] + }, + { + "id": "jolnor_suspicious_1", + "message": "Suspicious? No, I wouldn't call it suspicion. I would rather call it that we are careful nowadays.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_suspicious_2" + } + ] + }, + { + "id": "jolnor_suspicious_2", + "message": "In order to gain the trust of the village, an outsider must prove that they are not here to cause trouble.", + "replies": [ + { + "text": "Sounds like a good idea. There are a lot of selfish people out there.", + "nextPhraseID": "jolnor_suspicious_3" + }, + { + "text": "That sounds really unnecessary. Why not trust people in the first place?", + "nextPhraseID": "jolnor_suspicious_4" + } + ] + }, + { + "id": "jolnor_suspicious_3", + "message": "Yes, right. You seem to understand us well, I like that.", + "replies": [ + { + "text": "Is there anything I can do to gain your trust?", + "nextPhraseID": "jolnor_gaintrust_select" + } + ] + }, + { + "id": "jolnor_suspicious_4", + "message": "We have learned from history not to trust outsiders, and you are an outsider. Why should we trust you?", + "replies": [ + { + "text": "What can I do to gain your trust?", + "nextPhraseID": "jolnor_gaintrust_select" + }, + { + "text": "You are right. You probably should not trust me.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jolnor_gaintrust_select", + "replies": [ + { + "nextPhraseID": "jolnor_gaintrust_return_2", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "jolnor_gaintrust_return", + "requires": { + "progress": "vilegard:20" + } + }, + { + "nextPhraseID": "jolnor_gaintrust_1" + } + ] + }, + { + "id": "jolnor_gaintrust_return_2", + "message": "With your help earlier, you have already gained our trust.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_default_3" + } + ] + }, + { + "id": "jolnor_gaintrust_return", + "message": "As I said before, you have to help some people here in Vilegard to gain our trust.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_quests_1" + } + ] + }, + { + "id": "jolnor_gaintrust_1", + "message": "If you do us a favor, we might consider trusting you. There are three people I can think of that are influential here in Vilegard, that you should try to help.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_gaintrust_2" + } + ] + }, + { + "id": "jolnor_gaintrust_2", + "message": "First, there is Kaori. She lives up in the northern part of Vilegard. Ask her if she wants help with anything.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kaori", + "value": 5 + } + ], + "replies": [ + { + "text": "Ok. Talk to Kaori. Got it.", + "nextPhraseID": "jolnor_gaintrust_3" + } + ] + }, + { + "id": "jolnor_gaintrust_3", + "message": "Then there is Wrye. Wrye also lives up in the northern part of Vilegard. Many people here in Vilegard seek her advice on various things.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_gaintrust_4" + } + ] + }, + { + "id": "jolnor_gaintrust_4", + "message": "She recently lost her son in a tragic way. If you can gain her trust, you will have a strong ally here.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "wrye", + "value": 10 + } + ], + "replies": [ + { + "text": "Talk to Wrye. Got it.", + "nextPhraseID": "jolnor_gaintrust_5" + } + ] + }, + { + "id": "jolnor_gaintrust_5", + "message": "And last but not least, I have a favor to ask of you as well.", + "replies": [ + { + "text": "What favor is that?", + "nextPhraseID": "jolnor_gaintrust_6" + } + ] + }, + { + "id": "jolnor_gaintrust_6", + "message": "North of Vilegard is a tavern called the Foaming Flask. In my opinion, this tavern is a guard station in guise for Feygard.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_gaintrust_7" + } + ] + }, + { + "id": "jolnor_gaintrust_7", + "message": "The tavern is almost always visited by the Feygard royal guard of Lord Geomyr.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_gaintrust_8" + } + ] + }, + { + "id": "jolnor_gaintrust_8", + "message": "They are probably here to spy on us, since we are followers of the Shadow. Lord Geomyr's forces always try to make life difficult for us and the Shadow.", + "replies": [ + { + "text": "Yes, they seem like troublemakers all around.", + "nextPhraseID": "jolnor_gaintrust_9" + }, + { + "text": "I am sure they have their reasons for doing what they do.", + "nextPhraseID": "jolnor_gaintrust_10" + } + ] + }, + { + "id": "jolnor_gaintrust_9", + "message": "Right. Troublemakers indeed.", + "replies": [ + { + "text": "What do you want me to do?", + "nextPhraseID": "jolnor_gaintrust_11" + } + ] + }, + { + "id": "jolnor_gaintrust_10", + "message": "Yes, their reason is to make life miserable for us, I am sure.", + "replies": [ + { + "text": "What do you want me to do?", + "nextPhraseID": "jolnor_gaintrust_11" + } + ] + }, + { + "id": "jolnor_gaintrust_11", + "message": "My reports say that there is a guard stationed outside the tavern, to keep an eye on potential dangers.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_gaintrust_12" + } + ] + }, + { + "id": "jolnor_gaintrust_12", + "message": "I want you to make sure the guard disappears somehow. How you do that is purely up to you.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "jolnor", + "value": 10 + } + ], + "replies": [ + { + "text": "I am not sure I should upset the Feygard patrol guards. This could really get me into trouble.", + "nextPhraseID": "jolnor_gaintrust_13" + }, + { + "text": "For the Shadow, I will do as you ask.", + "nextPhraseID": "jolnor_gaintrust_14" + }, + { + "text": "Ok, I hope this leads to some treasure in the end.", + "nextPhraseID": "jolnor_gaintrust_14" + } + ] + }, + { + "id": "jolnor_gaintrust_13", + "message": "It's your choice. You can at least go check out the tavern and see if you find anything suspicious.", + "replies": [ + { + "text": "Maybe.", + "nextPhraseID": "jolnor_gaintrust_15" + } + ] + }, + { + "id": "jolnor_gaintrust_14", + "message": "Good. Report back to me when you are done.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_gaintrust_15" + } + ] + }, + { + "id": "jolnor_gaintrust_15", + "message": "So, in order to gain our trust here in Vilegard, I would suggest you help Kaori, Wrye and me.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vilegard", + "value": 20 + } + ], + "replies": [ + { + "text": "Thank you for the information. I will be back when I have something to report.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jolnor_quests_1", + "message": "I would suggest you help Kaori, Wrye and me to gain our trust.", + "replies": [ + { + "text": "About that guard outside the Foaming Flask tavern...", + "nextPhraseID": "jolnor_guard_select" + }, + { + "text": "About those tasks...", + "nextPhraseID": "jolnor_quests_2" + }, + { + "text": "Never mind, let's get back to those other topics.", + "nextPhraseID": "jolnor_select_1" + } + ] + }, + { + "id": "jolnor_quests_2", + "message": "Yes, what about them?", + "replies": [ + { + "text": "What was I supposed to do again?", + "nextPhraseID": "jolnor_suspicious_2" + }, + { + "text": "I have done all the tasks you asked me to do.", + "nextPhraseID": "jolnor_quests_select_1", + "requires": { + "progress": "jolnor:30" + } + }, + { + "text": "Never mind, let's get back to those other topics.", + "nextPhraseID": "jolnor_select_1" + } + ] + }, + { + "id": "jolnor_guard_select", + "replies": [ + { + "nextPhraseID": "jolnor_guard_completed", + "requires": { + "progress": "jolnor:30" + } + }, + { + "nextPhraseID": "jolnor_guard_1" + } + ] + }, + { + "id": "jolnor_guard_1", + "message": "Yes, what about him. Have you removed him yet?", + "replies": [ + { + "text": "Yes, he will leave his post as soon as this shift is over.", + "nextPhraseID": "jolnor_guard_2", + "requires": { + "progress": "jolnor:20" + } + }, + { + "text": "Yes, he is removed.", + "nextPhraseID": "jolnor_guard_2", + "requires": { + "item": { + "itemID": "ffguard_qitem", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "No, but I am working on it.", + "nextPhraseID": "jolnor_gaintrust_14" + } + ] + }, + { + "id": "jolnor_guard_completed", + "message": "Yes, you dealt with him earlier. Thank you for your help.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_quests_1" + } + ] + }, + { + "id": "jolnor_guard_2", + "message": "Very good. Thank you for your help.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "jolnor", + "value": 30 + } + ], + "replies": [ + { + "text": "No problem. Let's get back to those other tasks we talked about.", + "nextPhraseID": "jolnor_quests_2" + } + ] + }, + { + "id": "jolnor_quests_select_1", + "replies": [ + { + "nextPhraseID": "jolnor_quests_select_2", + "requires": { + "progress": "kaori:20" + } + }, + { + "nextPhraseID": "jolnor_quests_kaori_1" + } + ] + }, + { + "id": "jolnor_quests_kaori_1", + "message": "You still need to help Kaori with her task.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_select_1" + } + ] + }, + { + "id": "jolnor_quests_select_2", + "replies": [ + { + "nextPhraseID": "jolnor_quests_completed", + "requires": { + "progress": "wrye:90" + } + }, + { + "nextPhraseID": "jolnor_quests_wrye_1" + } + ] + }, + { + "id": "jolnor_quests_wrye_1", + "message": "You still need to help Wrye with her task.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_select_1" + } + ] + }, + { + "id": "jolnor_quests_completed", + "message": "Good. You helped all three of us.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vilegard", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_quests_completed_2" + } + ] + }, + { + "id": "jolnor_quests_completed_2", + "message": "I suppose that shows some dedication, and that we are ready to trust you now.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_quests_completed_3" + } + ] + }, + { + "id": "jolnor_quests_completed_3", + "message": "You have our thanks, friend. You will always find shelter here in Vilegard. We welcome you into our village.", + "replies": [ + { + "text": "N", + "nextPhraseID": "jolnor_select_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_kaori.json b/AndorsTrail/res/raw/conversationlist_kaori.json new file mode 100644 index 000000000..b89cbd030 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_kaori.json @@ -0,0 +1,296 @@ +[ + { + "id": "kaori_start", + "replies": [ + { + "nextPhraseID": "kaori_default_1", + "requires": { + "progress": "kaori:20" + } + }, + { + "nextPhraseID": "kaori_return_1", + "requires": { + "progress": "kaori:10" + } + }, + { + "nextPhraseID": "kaori_1" + } + ] + }, + { + "id": "kaori_1", + "message": "You are not welcome here. Please leave now.", + "replies": [ + { + "text": "Why is everyone in Vilegard so afraid of outsiders?", + "nextPhraseID": "kaori_2" + }, + { + "text": "Jolnor asked me to talk to you.", + "nextPhraseID": "kaori_3", + "requires": { + "progress": "kaori:5" + } + } + ] + }, + { + "id": "kaori_2", + "message": "I don't want to talk to you. Go talk to Jolnor in the chapel if you want to help us.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vilegard", + "value": 10 + } + ], + "replies": [ + { + "text": "Ok, bye.", + "nextPhraseID": "X" + }, + { + "text": "Fine. Don't tell me.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "kaori_3", + "message": "He did? I guess you are not all that bad as I first thought.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaori_4" + } + ] + }, + { + "id": "kaori_4", + "message": "I am still not convinced that you are not a spy from Feygard sent to cause mischief.", + "replies": [ + { + "text": "What can you tell me about Vilegard?", + "nextPhraseID": "kaori_trust_1" + }, + { + "text": "I can assure you that I am not a spy.", + "nextPhraseID": "kaori_5" + }, + { + "text": "Feygard, where or what is that?", + "nextPhraseID": "kaori_trust_1" + } + ] + }, + { + "id": "kaori_5", + "message": "Hm. Maybe not. But then again, maybe you are. I am still not sure.", + "replies": [ + { + "text": "Is there anything I can do to gain your trust?", + "nextPhraseID": "kaori_10" + }, + { + "text": "[Bribe] How would 100 gold sound? Could that help you to trust me?", + "nextPhraseID": "kaori_bribe" + } + ] + }, + { + "id": "kaori_trust_1", + "message": "I still don't fully trust you enough to talk about that.", + "replies": [ + { + "text": "Is there anything I can do to gain your trust?", + "nextPhraseID": "kaori_10" + }, + { + "text": "[Bribe] How would 100 gold sound? Could that help you to trust me?", + "nextPhraseID": "kaori_bribe" + } + ] + }, + { + "id": "kaori_bribe", + "message": "Are you trying to bribe me, kid? That won't work on me. What use would I have for gold if you actually were a spy?", + "replies": [ + { + "text": "Is there anything I can do to gain your trust?", + "nextPhraseID": "kaori_10" + } + ] + }, + { + "id": "kaori_10", + "message": "If you really want to prove to me that you are not a spy from Feygard, there actually is something that you can do for me.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaori_11" + } + ] + }, + { + "id": "kaori_11", + "message": "Up until recently, we have been using special potions made of ground bones as healing. These potions are very potent healing potions, and were used for several purposes.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaori_12" + } + ] + }, + { + "id": "kaori_12", + "message": "But now, they have been banned by Lord Geomyr, and most use of them has stopped.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaori_13" + } + ] + }, + { + "id": "kaori_13", + "message": "I would really like to have a few more of those. If you can bring me 10 Bonemeal potions, I might consider trusting you a bit more.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kaori", + "value": 10 + } + ], + "replies": [ + { + "text": "Ok. I will get some potions for you.", + "nextPhraseID": "kaori_14" + }, + { + "text": "No. If they are banned, there is most likely a good reason behind it. You shouldn't use them.", + "nextPhraseID": "kaori_15" + }, + { + "text": "I already have some of those potions with me that you can have", + "nextPhraseID": "kaori_20", + "requires": { + "item": { + "itemID": "bonemeal_potion", + "quantity": 10, + "requireType": 0 + } + } + } + ] + }, + { + "id": "kaori_return_1", + "message": "Hello again. Have you found those 10 Bonemeal potions I asked for?", + "replies": [ + { + "text": "No, I am still looking for them.", + "nextPhraseID": "kaori_14" + }, + { + "text": "Yes, I brought your potions.", + "nextPhraseID": "kaori_20", + "requires": { + "item": { + "itemID": "bonemeal_potion", + "quantity": 10, + "requireType": 0 + } + } + }, + { + "text": "No. If they are banned, there is most likely a good reason behind it. You shouldn't use them.", + "nextPhraseID": "kaori_15" + } + ] + }, + { + "id": "kaori_14", + "message": "Well, hurry up. I really need them soon." + }, + { + "id": "kaori_15", + "message": "Fine. Now please leave me." + }, + { + "id": "kaori_20", + "message": "Good. Give them to me.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kaori", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "kaori_21" + } + ] + }, + { + "id": "kaori_21", + "message": "Yes, these will do fine. Thank you a lot kid. Maybe you are ok after all. May the Shadow watch over you.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaori_default_1" + } + ] + }, + { + "id": "kaori_default_1", + "message": "Was there something you wanted to talk about?", + "replies": [ + { + "text": "What can you tell me about Vilegard?", + "nextPhraseID": "kaori_vilegard_1" + }, + { + "text": "Why is everyone in Vilegard so afraid of outsiders?", + "nextPhraseID": "kaori_vilegard_2" + } + ] + }, + { + "id": "kaori_vilegard_1", + "message": "You should go talk to Erttu if you want the background story about Vilegard. She has been around here far longer than me.", + "replies": [ + { + "text": "Ok, I will do that.", + "nextPhraseID": "kaori_default_1" + } + ] + }, + { + "id": "kaori_vilegard_2", + "message": "We have a history of people coming here and causing mischief. Over time, we have learned that keeping to ourselves works best.", + "replies": [ + { + "text": "That sounds like a good idea.", + "nextPhraseID": "kaori_vilegard_3" + }, + { + "text": "That sounds wrong.", + "nextPhraseID": "kaori_vilegard_3" + } + ] + }, + { + "id": "kaori_vilegard_3", + "message": "Anyway, that's why we are so suspicious of outsiders.", + "replies": [ + { + "text": "I see.", + "nextPhraseID": "kaori_default_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_kaverin.json b/AndorsTrail/res/raw/conversationlist_kaverin.json new file mode 100644 index 000000000..d6e0d22e8 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_kaverin.json @@ -0,0 +1,399 @@ +[ + { + "id": "kaverin", + "replies": [ + { + "nextPhraseID": "kaverin_decline2", + "requires": { + "progress": "kaverin:21" + } + }, + { + "nextPhraseID": "kaverin_fight_1", + "requires": { + "progress": "kaverin:60" + } + }, + { + "nextPhraseID": "kaverin_done_ret", + "requires": { + "progress": "kaverin:90" + } + }, + { + "nextPhraseID": "kaverin_done3", + "requires": { + "progress": "kaverin:45" + } + }, + { + "nextPhraseID": "kaverin_done1", + "requires": { + "progress": "kaverin:40" + } + }, + { + "nextPhraseID": "kaverin_return1", + "requires": { + "progress": "kaverin:25" + } + }, + { + "nextPhraseID": "kaverin_accept2", + "requires": { + "progress": "kaverin:22" + } + }, + { + "nextPhraseID": "kaverin_8r", + "requires": { + "progress": "kaverin:20" + } + }, + { + "nextPhraseID": "kaverin_1" + } + ] + }, + { + "id": "kaverin_1", + "message": "From the looks of you, you don't seem to be from around here. That makes two of us then. He he.", + "replies": [ + { + "text": "I'm from the village of Crossglen, far to the west of here.", + "nextPhraseID": "kaverin_2" + } + ] + }, + { + "id": "kaverin_2", + "message": "Crossglen! I know that place, it's not far from Fallhaven, right?", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaverin_3" + } + ] + }, + { + "id": "kaverin_3", + "message": "I have an old .. shall we say .. friend .. from Fallhaven. Goes by the name of Unzel.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaverin_4" + } + ] + }, + { + "id": "kaverin_4", + "message": "You wouldn't by any chance have met him, would you?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kaverin", + "value": 10 + } + ], + "replies": [ + { + "text": "No, I've never met him.", + "nextPhraseID": "kaverin_5" + }, + { + "text": "Yes, I've met that fool. He was an easy kill.", + "nextPhraseID": "kaverin_6", + "requires": { + "progress": "vacor:60" + } + }, + { + "text": "Yes, I have met him. I still have some of his blood on my boots.", + "nextPhraseID": "kaverin_6", + "requires": { + "progress": "vacor:60" + } + }, + { + "text": "Yes, I even helped him defeat a scoundrel named Vacor.", + "nextPhraseID": "kaverin_7", + "requires": { + "progress": "vacor:61" + } + } + ] + }, + { + "id": "kaverin_5", + "message": "I guess he keeps to himself. I sure hope he is okay. If you ever run into him, please say hi to him for me.", + "replies": [ + { + "text": "I'm trying to find my brother Andor, have you seen him?", + "nextPhraseID": "kaverin_5b" + } + ] + }, + { + "id": "kaverin_5b", + "message": "Andor? No, I'm sorry. I've never heard of him." + }, + { + "id": "kaverin_6", + "message": "You?! But.. But.. This is terrible! I bet you are one of the goons of that Vacor fellow.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaverin_fight_1" + } + ] + }, + { + "id": "kaverin_fight_1", + "message": "Oh yes, I can feel it. You work for Vacor! He must be stopped!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kaverin", + "value": 60 + } + ], + "replies": [ + { + "text": "Fight!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "kaverin_7", + "message": "Excellent, that is good news indeed! May you walk with the Shadow, my friend!", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaverin_8" + } + ] + }, + { + "id": "kaverin_8r", + "message": "My friend from Fallhaven returns. It's comforting to hear that Unzel is still alive.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaverin_8" + } + ] + }, + { + "id": "kaverin_8", + "message": "Would you be willing to deliver a message to him?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kaverin", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "kaverin_9" + } + ] + }, + { + "id": "kaverin_9", + "message": "You'd be well compensated for your efforts.", + "replies": [ + { + "text": "Anything for the sake of the Shadow.", + "nextPhraseID": "kaverin_accept1" + }, + { + "text": "Sure.", + "nextPhraseID": "kaverin_accept1" + }, + { + "text": "No, I am done helping you people.", + "nextPhraseID": "kaverin_decline1" + } + ] + }, + { + "id": "kaverin_decline1", + "message": "That is unfortunate, you seemed like such a bright boy too.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kaverin", + "value": 21 + } + ] + }, + { + "id": "kaverin_decline2", + "message": "The friend from Fallhaven returns. Please leave me be, I have things to do." + }, + { + "id": "kaverin_accept1", + "message": "Good, that's exactly what I wanted to hear.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kaverin", + "value": 22 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "kaverin_accept2" + } + ] + }, + { + "id": "kaverin_accept2", + "message": "Make sure this doesn't fall into the hands of Feygard, or her loyalists.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaverin_accept3" + } + ] + }, + { + "id": "kaverin_accept3", + "message": "(He gives you a sealed message.)", + "rewards": [ + { + "rewardType": 1, + "rewardID": "kaverin_message" + }, + { + "rewardType": 0, + "rewardID": "kaverin", + "value": 25 + } + ], + "replies": [ + { + "text": "You can count on me, Kaverin.", + "nextPhraseID": "kaverin_accept4" + } + ] + }, + { + "id": "kaverin_accept4", + "message": "Good. Now go deliver that message to Unzel." + }, + { + "id": "kaverin_return1", + "message": "It's good to see you again. Have you delivered my message to Unzel?", + "replies": [ + { + "text": "Yes, the message is delivered.", + "nextPhraseID": "kaverin_done1", + "requires": { + "progress": "kaverin:30" + } + }, + { + "text": "No, not yet.", + "nextPhraseID": "kaverin_return2" + } + ] + }, + { + "id": "kaverin_return2", + "message": "Please don't take too long. Walk with the Shadow, my friend." + }, + { + "id": "kaverin_done1", + "message": "Thank you, my friend. May you walk in the glow of the Shadow.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kaverin", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "kaverin_done2" + } + ] + }, + { + "id": "kaverin_done2", + "message": "Take this map as compensation for a job well done.", + "rewards": [ + { + "rewardType": 1, + "rewardID": "vacor_map" + }, + { + "rewardType": 0, + "rewardID": "kaverin", + "value": 45 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "kaverin_done3" + } + ] + }, + { + "id": "kaverin_done3", + "message": "We've discovered one of Vacor's hideouts, far to the south.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaverin_done4" + } + ] + }, + { + "id": "kaverin_done4", + "message": "Since you helped us stop him, it's fitting that you have this.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaverin_done5" + } + ] + }, + { + "id": "kaverin_done5", + "message": "According to the map, the hideout should be just to the northwest of the former prison of Flagstone. Feel free to take whatever is left in there.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kaverin", + "value": 90 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "kaverin_done6" + } + ] + }, + { + "id": "kaverin_done6", + "message": "Walk with the Shadow, my friend." + }, + { + "id": "kaverin_done_ret", + "message": "Hello again. It's comforting to know that Unzel is still alive, and that you delivered my message to him.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kaverin_done6" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_kendelow.json b/AndorsTrail/res/raw/conversationlist_kendelow.json new file mode 100644 index 000000000..2c9b93792 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_kendelow.json @@ -0,0 +1,238 @@ +[ + { + "id": "kendelow", + "replies": [ + { + "nextPhraseID": "kendelow_1", + "requires": { + "progress": "remgard2:45" + } + }, + { + "nextPhraseID": "kendelow_2" + } + ] + }, + { + "id": "kendelow_1", + "message": "I heard that you helped us get rid of that witch Algangror. Thank you.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kendelow_d" + } + ] + }, + { + "id": "kendelow_2", + "message": "Welcome to my tavern. I hope you will find your stay a pleasant one.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kendelow_d" + } + ] + }, + { + "id": "kendelow_d", + "message": "How may I be of service?", + "replies": [ + { + "text": "What is there to do around here?", + "nextPhraseID": "kendelow_3" + }, + { + "text": "Do you have anything to trade?", + "nextPhraseID": "kendelow_shop" + }, + { + "text": "Are there any rooms available?", + "nextPhraseID": "kendelow_room_1" + } + ] + }, + { + "id": "kendelow_shop", + "message": "Oh sure. Here, have a look.", + "replies": [ + { + "text": "N", + "nextPhraseID": "S" + } + ] + }, + { + "id": "kendelow_3", + "message": "Most people here in Remgard tend to their crops. Other than that, I hear that Arnal the armorer over on the western shore has some good business trading.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kendelow_4" + } + ] + }, + { + "id": "kendelow_4", + "message": "Also, we usually get a lot of visitors here in the tavern. Lately, it has been a lot fewer people in here though, with the closing of the bridge because of those missing people and all.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kendelow_5" + } + ] + }, + { + "id": "kendelow_5", + "message": "On your way in, maybe you noticed that we even have a visit from the Knights of Elythom here in the tavern? It seems that more and more people are becoming aware of the hospitality of Remgard.", + "replies": [ + { + "text": "Thank you. I had some other questions.", + "nextPhraseID": "kendelow_d" + } + ] + }, + { + "id": "kendelow_room_1", + "replies": [ + { + "nextPhraseID": "kendelow_room_2", + "requires": { + "progress": "nondisplay:21" + } + }, + { + "nextPhraseID": "kendelow_room_3" + } + ] + }, + { + "id": "kendelow_room_2", + "message": "You have already rented my last room. We don't have any more rooms other than that one." + }, + { + "id": "kendelow_room_3", + "message": "Why, yes, as a matter of fact, there is. I have one very fine room available upstairs.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kendelow_room_4" + } + ] + }, + { + "id": "kendelow_room_4", + "message": "The previous tenant left in a hurry some days ago.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kendelow_room_5" + } + ] + }, + { + "id": "kendelow_room_5", + "message": "You may rent the room for as long as you like for only 600 gold.", + "replies": [ + { + "text": "600 gold, are you mad!? That's a fortune.", + "nextPhraseID": "kendelow_room_6s" + }, + { + "text": "Is there anything you can do to lower the price?", + "nextPhraseID": "kendelow_room_6s" + }, + { + "text": "I'll take it. Here is the gold.", + "nextPhraseID": "kendelow_room_8", + "requires": { + "item": { + "itemID": "gold", + "quantity": 600, + "requireType": 0 + } + } + }, + { + "text": "I don't have that much gold.", + "nextPhraseID": "kendelow_room_7" + } + ] + }, + { + "id": "kendelow_room_6s", + "replies": [ + { + "nextPhraseID": "kendelow_room_6b", + "requires": { + "progress": "remgard2:45" + } + }, + { + "nextPhraseID": "kendelow_room_6a" + } + ] + }, + { + "id": "kendelow_room_6a", + "message": "The price is fixed. I cannot go around handing out discounts to just anyone. Also, keep in mind that you may rent it for as long as you wish.", + "replies": [ + { + "text": "I'll take it. Here is the gold.", + "nextPhraseID": "kendelow_room_8", + "requires": { + "item": { + "itemID": "gold", + "quantity": 600, + "requireType": 0 + } + } + }, + { + "text": "I don't have that much gold.", + "nextPhraseID": "kendelow_room_7" + } + ] + }, + { + "id": "kendelow_room_6b", + "message": "Since you helped us here in Remgard with that witch Algangror, I am prepared to offer you a discount. How about we say 400 gold for it instead?", + "replies": [ + { + "text": "I'll take it. Here is the gold.", + "nextPhraseID": "kendelow_room_8", + "requires": { + "item": { + "itemID": "gold", + "quantity": 400, + "requireType": 0 + } + } + }, + { + "text": "I don't have that much gold.", + "nextPhraseID": "kendelow_room_7" + } + ] + }, + { + "id": "kendelow_room_7", + "message": "You are welcome to return once you have the gold, if you are still interested.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kendelow_d" + } + ] + }, + { + "id": "kendelow_room_8", + "message": "Thank you. The room is upstairs. You may rent it for as long as you wish.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nondisplay", + "value": 21 + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_loneford_1.json b/AndorsTrail/res/raw/conversationlist_loneford_1.json new file mode 100644 index 000000000..cd2156559 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_loneford_1.json @@ -0,0 +1,259 @@ +[ + { + "id": "loneford_farmer0", + "message": "What have we done to deserve this?", + "replies": [ + { + "text": "What's wrong?", + "nextPhraseID": "loneford_farmer0_1" + } + ] + }, + { + "id": "loneford_farmer0_1", + "message": "Didn't you hear about the illness?", + "replies": [ + { + "text": "What illness?", + "nextPhraseID": "loneford_farmer_il_1" + } + ] + }, + { + "id": "loneford_farmer_il_1", + "message": "It all started a few days ago. Selgan found Hesor passed out on his old crop field, completely white faced and shivering.", + "replies": [ + { + "text": "N", + "nextPhraseID": "loneford_farmer_il_2" + } + ] + }, + { + "id": "loneford_farmer_il_2", + "message": "A few days later, Selgan started showing the same symptoms as Hesor, with stomach aches. I also started feeling the pains and got the shivers.", + "replies": [ + { + "text": "N", + "nextPhraseID": "loneford_farmer_il_3" + } + ] + }, + { + "id": "loneford_farmer_il_3", + "message": "Then, all people showed the symptoms in one way or another.", + "replies": [ + { + "text": "N", + "nextPhraseID": "loneford_farmer_il_4" + } + ] + }, + { + "id": "loneford_farmer_il_4", + "message": "Poor old Selgan and Hesor apparently got the worst of it, and both died the day before yesterday.", + "replies": [ + { + "text": "N", + "nextPhraseID": "loneford_farmer_il_5" + } + ] + }, + { + "id": "loneford_farmer_il_5", + "message": "Cursed illness, why did it have to be Selgan and Hesor? I wonder who is next.", + "replies": [ + { + "text": "N", + "nextPhraseID": "loneford_farmer_il_6" + } + ] + }, + { + "id": "loneford_farmer_il_6", + "message": "We all started to investigate what could be the cause. We still aren't certain what the cause is, but we have our suspicions.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "loneford_farmer_il_7" + } + ] + }, + { + "id": "loneford_farmer_il_7", + "message": "Luckily, now Feygard has sent patrols up here to help guard the village at least. We are still suffering though, and we fear who will be taken by the illness next.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 11 + } + ] + }, + { + "id": "loneford_wellguard", + "message": "Please report any suspicious behavior you might see to Kuldan." + }, + { + "id": "rolwynn", + "message": "What have we done to deserve this? Please, will you help us?", + "replies": [ + { + "text": "What do you think is the cause of the illness?", + "nextPhraseID": "rolwynn_1", + "requires": { + "progress": "loneford:11" + } + }, + { + "text": "What's wrong?", + "nextPhraseID": "loneford_farmer0_1" + } + ] + }, + { + "id": "rolwynn_1", + "message": "My guess is that this must be something done by those arrogant people from Feygard.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rolwynn_2" + } + ] + }, + { + "id": "rolwynn_2", + "message": "They are always looking for ways to make our lives a little bit harder.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rolwynn_3" + } + ] + }, + { + "id": "rolwynn_3", + "message": "We try to farm our lands to feed ourselves, but they demand that they get a share of whatever we bring in.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rolwynn_4" + } + ] + }, + { + "id": "rolwynn_4", + "message": "Lately, the crops haven't been as good as they used to be, and the guards apparently think we are withholding some part of their share.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rolwynn_5" + } + ] + }, + { + "id": "rolwynn_5", + "message": "I am sure that they did something to us as punishment for not following their *rules*. They are always talking about how the laws and rules are so precious to them.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 22 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "loneford_ill_c_1" + } + ] + }, + { + "id": "loneford_ill_c_1", + "replies": [ + { + "nextPhraseID": "loneford_ill_c_2", + "requires": { + "progress": "loneford:21" + } + }, + { + "nextPhraseID": "loneford_ill_c_n" + } + ] + }, + { + "id": "loneford_ill_c_2", + "replies": [ + { + "nextPhraseID": "loneford_ill_c_3", + "requires": { + "progress": "loneford:22" + } + }, + { + "nextPhraseID": "loneford_ill_c_n" + } + ] + }, + { + "id": "loneford_ill_c_3", + "replies": [ + { + "nextPhraseID": "loneford_ill_c_4", + "requires": { + "progress": "loneford:23" + } + }, + { + "nextPhraseID": "loneford_ill_c_n" + } + ] + }, + { + "id": "loneford_ill_c_4", + "replies": [ + { + "nextPhraseID": "loneford_ill_c_5", + "requires": { + "progress": "loneford:24" + } + }, + { + "nextPhraseID": "loneford_ill_c_n" + } + ] + }, + { + "id": "loneford_ill_c_n", + "message": "That's what I think anyway." + }, + { + "id": "loneford_ill_c_5", + "message": "There's something else also. I talked to that drunk, Landa, in the tavern earlier today. He said he saw something but didn't dare tell me what it was.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 25 + } + ], + "replies": [ + { + "text": "Thank you, I will go talk to him.", + "nextPhraseID": "X" + }, + { + "text": "Great, another drunk that I have to talk to.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_loneford_2.json b/AndorsTrail/res/raw/conversationlist_loneford_2.json new file mode 100644 index 000000000..7cf205434 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_loneford_2.json @@ -0,0 +1,284 @@ +[ + { + "id": "loneford_guard0", + "message": "We keep the order around here. I wonder what the people of Loneford would do without us guards from Feygard. Poor things." + }, + { + "id": "loneford_villager0", + "message": "*cough* Please help us, soon there won't be many left of us!", + "replies": [ + { + "text": "What's wrong?", + "nextPhraseID": "loneford_farmer0_1" + } + ] + }, + { + "id": "loneford_villager1", + "message": "I can't feel my face anymore, please help us!", + "replies": [ + { + "text": "What's wrong?", + "nextPhraseID": "loneford_farmer0_1" + } + ] + }, + { + "id": "loneford_villager2", + "message": "Don't disturb me, I need to finish chopping this wood. Go bother someone else." + }, + { + "id": "loneford_villager3", + "message": "I fear for our survival. It seems we are getting worse every day that passes. It's a good thing Feygard helps us at least.", + "replies": [ + { + "text": "What's wrong?", + "nextPhraseID": "loneford_farmer0_1" + } + ] + }, + { + "id": "loneford_villager4", + "message": "Don't I know you from somewhere? You look familiar somehow." + }, + { + "id": "landa", + "replies": [ + { + "nextPhraseID": "landa_already_1", + "requires": { + "progress": "loneford:35" + } + }, + { + "nextPhraseID": "landa_1" + } + ] + }, + { + "id": "landa_1", + "message": "Wha? You!? No, get away from me!", + "replies": [ + { + "text": "I heard that you saw something that you won't talk about.", + "nextPhraseID": "landa_2", + "requires": { + "progress": "loneford:25" + } + } + ] + }, + { + "id": "landa_2", + "message": "(Landa gives you a terrified look)", + "replies": [ + { + "text": "N", + "nextPhraseID": "landa_3" + } + ] + }, + { + "id": "landa_3", + "message": "You were there! I ssssaw you!", + "replies": [ + { + "text": "N", + "nextPhraseID": "landa_4" + } + ] + }, + { + "id": "landa_4", + "message": "Or was it you? No, it looked like you, and I have a good memory! *bites lip*", + "replies": [ + { + "text": "Calm down.", + "nextPhraseID": "landa_5" + } + ] + }, + { + "id": "landa_5", + "message": "Get away from me, whatever you did over there, it's your business and I don't want any trouble!", + "replies": [ + { + "text": "You must have me confused with someone else.", + "nextPhraseID": "landa_6" + } + ] + }, + { + "id": "landa_6", + "message": "Please don't hurt me!", + "replies": [ + { + "text": "Landa, you must have me confused with someone else! What was it you saw?", + "nextPhraseID": "landa_7" + } + ] + }, + { + "id": "landa_7", + "message": "No, you are smaller than him.", + "replies": [ + { + "text": "Are you going to tell me what it was you saw?", + "nextPhraseID": "landa_8" + } + ] + }, + { + "id": "landa_8", + "message": "The boy. He was doing something. I tried to sneak up closer to see what it was he was doing, I did. But he ran away before I could see.", + "replies": [ + { + "text": "N", + "nextPhraseID": "landa_9" + } + ] + }, + { + "id": "landa_9", + "message": "He did something by the well here in Loneford.", + "replies": [ + { + "text": "When was this?", + "nextPhraseID": "landa_10" + } + ] + }, + { + "id": "landa_10", + "message": "It was in the middle of the night, on the day before everything started. The day after, I was sleeping it off during the day, so I didn't notice all the turmoil about when they brought Hesor back.", + "replies": [ + { + "text": "N", + "nextPhraseID": "landa_11" + } + ] + }, + { + "id": "landa_11", + "message": "Almost the whole village wanted to see what had happened to Hesor. I kept to myself and didn't dare talk to anyone.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "landa_12" + } + ] + }, + { + "id": "landa_12", + "message": "The same day, others started to get pale as well. I could see it in their faces.", + "replies": [ + { + "text": "N", + "nextPhraseID": "landa_13" + } + ] + }, + { + "id": "landa_13", + "message": "The following night, I was getting ready to go to the well myself to look for any traces of what the boy had done.", + "replies": [ + { + "text": "N", + "nextPhraseID": "landa_14" + } + ] + }, + { + "id": "landa_14", + "message": "I peeked out the window to see if there was anyone that might see me. Instead, I saw someone skulking around the well, filling up several vials with both dirt around the well, and water from the well itself.", + "replies": [ + { + "text": "N", + "nextPhraseID": "landa_15" + } + ] + }, + { + "id": "landa_15", + "message": "I am sure it was Buceth, from the chapel. I have a good eye for people, and a good memory. Yes, I am sure it was Buceth.", + "replies": [ + { + "text": "N", + "nextPhraseID": "landa_16" + } + ] + }, + { + "id": "landa_16", + "message": "Also, isn't it strange how Buceth has not gotten ill, while all the others in the village has gotten ill?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 31 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "landa_17" + } + ] + }, + { + "id": "landa_17", + "message": "He must be up to something. He and that boy that looked like you. Are you sure it wasn't you?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 35 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "landa_18" + } + ] + }, + { + "id": "landa_18", + "message": "Never mind. Please don't tell anyone that I told you all this.", + "replies": [ + { + "text": "N", + "nextPhraseID": "landa_19" + } + ] + }, + { + "id": "landa_19", + "message": "Now, get out of here kid, before anyone sees you talking to me. *Looks around anxiously*", + "replies": [ + { + "text": "Thank you Landa. Your secret is safe with me.", + "nextPhraseID": "X" + }, + { + "text": "Thank you Landa. I'll consider it.", + "nextPhraseID": "X" + }, + { + "text": "Are you done? Phew, I thought you were never going to stop talking.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "landa_already_1", + "message": "You again? I already told you. Get out of here before anyone sees you talking to me." + } +] diff --git a/AndorsTrail/res/raw/conversationlist_loneford_3.json b/AndorsTrail/res/raw/conversationlist_loneford_3.json new file mode 100644 index 000000000..cef11a559 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_loneford_3.json @@ -0,0 +1,89 @@ +[ + { + "id": "sienn", + "message": "Ha! You look funny. You small.", + "replies": [ + { + "text": "Who are you?", + "nextPhraseID": "sienn_who_1" + }, + { + "text": "What is that thing you are keeping around?", + "nextPhraseID": "sienn_pet_1" + } + ] + }, + { + "id": "sienn_who_1", + "message": "Me, Sienn. I strong!", + "replies": [ + { + "text": "What is that thing you are keeping around?", + "nextPhraseID": "sienn_pet_1" + } + ] + }, + { + "id": "sienn_pet_1", + "message": "Pet, cute!\n(Sienn makes cuddly sounds while scratching the pet under its chin.)", + "replies": [ + { + "text": "Who are you?", + "nextPhraseID": "sienn_who_1" + }, + { + "text": "Did you know that Taevinn thinks you caused the illness here in Loneford?", + "nextPhraseID": "sienn_pet_2", + "requires": { + "progress": "loneford:24" + } + } + ] + }, + { + "id": "sienn_pet_2", + "message": "Sienn not ill! Sienn strong!" + }, + { + "id": "sienn_pet", + "message": "*Shriek!*\n(The creature looks up at you, showing all its teeth, while making a high-pitched piercing sound.)", + "replies": [ + { + "text": "There, there. Easy now.", + "nextPhraseID": "X" + }, + { + "text": "*slowly back away*", + "nextPhraseID": "X" + } + ] + }, + { + "id": "siola", + "message": "Hello there. Have you come to browse my selection of items?", + "replies": [ + { + "text": "Yes, let's trade.", + "nextPhraseID": "S" + }, + { + "text": "What's the deal with Sienn over there with his pet?", + "nextPhraseID": "siola_sienn_1" + } + ] + }, + { + "id": "siola_sienn_1", + "message": "I don't know where he got it from. Anyway, they don't harm anyone, so I'm fine with them being in here. I figured someone should help them have some place to stay, and no one else wanted to help them, so I let them stay here.", + "replies": [ + { + "text": "N", + "nextPhraseID": "siola_sienn_2" + } + ] + }, + { + "id": "siola_sienn_2", + "message": "Sienn may be a bit thick, but he sure can be funny when you get to know him and he trusts you. He can do a lot of those hilarious facial expressions." + } +] diff --git a/AndorsTrail/res/raw/conversationlist_loneford_4.json b/AndorsTrail/res/raw/conversationlist_loneford_4.json new file mode 100644 index 000000000..873403ca9 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_loneford_4.json @@ -0,0 +1,186 @@ +[ + { + "id": "grimion", + "message": "Hello and welcome to Loneford. Please have a seat, I'll be right there.", + "replies": [ + { + "text": "Do you have anything to eat around here?", + "nextPhraseID": "grimion_trade_1" + }, + { + "text": "Is there a place where I can get some rest around here?", + "nextPhraseID": "grimion_rest_1" + } + ] + }, + { + "id": "grimion_trade_1", + "message": "Sure, have a look.", + "replies": [ + { + "text": "N", + "nextPhraseID": "S" + } + ] + }, + { + "id": "grimion_rest_1", + "message": "Sure, the guards have set up some beds downstairs. Go talk to Arngyr down there, he might be able to help you." + }, + { + "id": "loneford_tavern_room", + "message": "Arngyr grabs you by the shoulder and pulls you back.\nIf you want to rest over there, you need to check with me first." + }, + { + "id": "arngyr", + "replies": [ + { + "nextPhraseID": "arngyr_back_1", + "requires": { + "progress": "nondisplay:19" + } + }, + { + "nextPhraseID": "arngyr_1" + } + ] + }, + { + "id": "arngyr_1", + "message": "Yes, can I help you?", + "replies": [ + { + "text": "Mind if I use one of the beds back there?", + "nextPhraseID": "arngyr_2" + } + ] + }, + { + "id": "arngyr_2", + "replies": [ + { + "nextPhraseID": "arngyr_3", + "requires": { + "progress": "loneford:55" + } + }, + { + "nextPhraseID": "arngyr_4" + } + ] + }, + { + "id": "arngyr_3", + "message": "Oh no, not at all. Go ahead. After all you have done for us here in Loneford, it would be a privilege to be able to give something back to you.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nondisplay", + "value": 19 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "arngyr_6" + } + ] + }, + { + "id": "arngyr_4", + "message": "These beds are mostly used by us guards. But I guess I could make an exception since you're just a kid. Shall we say, 600 gold and you may use it?", + "replies": [ + { + "text": "Sure, here is the gold.", + "nextPhraseID": "arngyr_5", + "requires": { + "item": { + "itemID": "gold", + "quantity": 600, + "requireType": 0 + } + } + }, + { + "text": "What?! That's a bit much, don't you think?", + "nextPhraseID": "arngyr_7" + } + ] + }, + { + "id": "arngyr_5", + "message": "Thank you.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nondisplay", + "value": 19 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "arngyr_6" + } + ] + }, + { + "id": "arngyr_6", + "message": "Use the bed in the back over there as much as you like.", + "replies": [ + { + "text": "Thanks", + "nextPhraseID": "X" + } + ] + }, + { + "id": "arngyr_7", + "message": "Look, kid. I make the rules around here. If that's my price then that's my price. Take it or leave it.", + "replies": [ + { + "text": "Fine, here is the gold", + "nextPhraseID": "arngyr_5", + "requires": { + "item": { + "itemID": "gold", + "quantity": 600, + "requireType": 0 + } + } + }, + { + "text": "Never mind then", + "nextPhraseID": "X" + } + ] + }, + { + "id": "arngyr_back_1", + "message": "Hello again. I hope the bed is comfortable enough." + }, + { + "id": "loneford_chapelguard", + "message": "Walk with the Shadow, child." + }, + { + "id": "wallach", + "message": "Oh, poor old Selgan. Why did it have to be him? I wonder who is next, and I fear for the worst." + }, + { + "id": "mienn", + "message": "I can't see how we could make it without the help of those nice guards from Feygard around here. We are truly lucky to have their assistance." + }, + { + "id": "conren", + "message": "We are lucky to have Feygard here helping us." + }, + { + "id": "telund", + "message": "Who are you? Have you seen my father Selgan? They all tell me he will be back shortly, but they are all lying! I know it, I know it! He wasn't home yesterday, and he isn't home today." + }, + { + "id": "loneford_tavern_patron", + "message": "This is no place for a kid like you. I think you better leave now." + } +] diff --git a/AndorsTrail/res/raw/conversationlist_loneford_kuldan.json b/AndorsTrail/res/raw/conversationlist_loneford_kuldan.json new file mode 100644 index 000000000..48ba95d4c --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_loneford_kuldan.json @@ -0,0 +1,174 @@ +[ + { + "id": "kuldan", + "replies": [ + { + "nextPhraseID": "kuldan_c_1", + "requires": { + "progress": "loneford:55" + } + }, + { + "nextPhraseID": "kuldan_bc_1", + "requires": { + "progress": "loneford:54" + } + }, + { + "nextPhraseID": "kuldan_1" + } + ] + }, + { + "id": "kuldan_1", + "message": "Please report any suspicious behavior you might see.", + "replies": [ + { + "text": "I know what the cause of the illness is. Have a look at this vial that Buceth had on him.", + "nextPhraseID": "kuldan_bc_1", + "requires": { + "progress": "loneford:50", + "item": { + "itemID": "buceth_vial", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Who are you?", + "nextPhraseID": "kuldan_2" + } + ] + }, + { + "id": "kuldan_2", + "message": "I am Kuldan, captain of this here detachment of guards in Loneford. Now, if you will excuse me, I have work to do." + }, + { + "id": "kuldan_c_1", + "message": "Feygard is grateful for your assistance in solving the mystery of the illness here in Loneford.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kuldan_c_2" + } + ] + }, + { + "id": "kuldan_c_2", + "message": "We are trying to help the last few people that are still ill here now. Loneford might require our assistance from Feygard for quite some time." + }, + { + "id": "kuldan_bc_1", + "message": "What is this? This smells like Narwood poison. You say you retrieved this from Buceth?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 54 + } + ], + "replies": [ + { + "text": "Buceth was part of a mission by the Nor City priests to poison the water well here in Loneford.", + "nextPhraseID": "kuldan_bc_2" + } + ] + }, + { + "id": "kuldan_bc_2", + "message": "But this means.. It is the water that the people are getting ill from? This explains a lot of things.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kuldan_bc_3" + } + ] + }, + { + "id": "kuldan_bc_3", + "message": "You my friend have done Loneford a great service by finding this, and by extension, Feygard as well. We should go catch Buceth for what he has done.", + "replies": [ + { + "text": "He is already dead", + "nextPhraseID": "kuldan_bc_4" + } + ] + }, + { + "id": "kuldan_bc_4", + "message": "Dead you say? Hm, not quite the way we do things in Feygard, but I guess this is an exceptional case.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kuldan_bc_5" + } + ] + }, + { + "id": "kuldan_bc_5", + "message": "I always suspected that those savages from Nor City were behind this all along.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kuldan_bc_6" + } + ] + }, + { + "id": "kuldan_bc_6", + "message": "It's good to know that we now at least have some evidence to back up our claims.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kuldan_bc_7" + } + ] + }, + { + "id": "kuldan_bc_7", + "message": "As for Loneford, I guess we will have to start bringing in water from Feygard to help the people here. Good thing they have us around, what would they do otherwise?", + "replies": [ + { + "text": "N", + "nextPhraseID": "kuldan_bc_8" + } + ] + }, + { + "id": "kuldan_bc_8", + "message": "And you, my friend - you should of course be sufficiently rewarded for your assistance in this matter. You should travel to the glorious city of Feygard to the northwest and report to the castle steward there for further instructions.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kuldan_bc_9" + } + ] + }, + { + "id": "kuldan_bc_9", + "message": "I happen to know the castle steward personally, and I will send word to him about your help here.", + "replies": [ + { + "text": "N", + "nextPhraseID": "kuldan_bc_10" + } + ] + }, + { + "id": "kuldan_bc_10", + "message": "For the glory of Feygard, the people of Loneford may live on thanks to your help.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 55 + } + ] + }, + { + "id": "kuldan_guard", + "message": "What? Talk to the boss." + } +] diff --git a/AndorsTrail/res/raw/conversationlist_maelveon.json b/AndorsTrail/res/raw/conversationlist_maelveon.json new file mode 100644 index 000000000..15491154d --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_maelveon.json @@ -0,0 +1,78 @@ +[ + { + "id": "maelveon", + "message": "[you feel a tingling sensation in your body as the frightening figure begins to speak]", + "replies": [ + { + "text": "N", + "nextPhraseID": "maelveon_1" + } + ] + }, + { + "id": "maelveon_1", + "message": "Sssshadow take you.", + "replies": [ + { + "text": "N", + "nextPhraseID": "maelveon_2" + } + ] + }, + { + "id": "maelveon_2", + "message": "G.. argoyle Shadow.", + "replies": [ + { + "text": "N", + "nextPhraseID": "maelveon_3" + } + ] + }, + { + "id": "maelveon_3", + "message": "A.. llow the Sssshadow in you.", + "replies": [ + { + "text": "The Shadow, what do you mean?", + "nextPhraseID": "maelveon_4" + }, + { + "text": "Die, evil creature!", + "nextPhraseID": "maelveon_4" + }, + { + "text": "I will not be affected by your nonsense!", + "nextPhraseID": "maelveon_4" + } + ] + }, + { + "id": "maelveon_4", + "message": "[the figure lifts his hand and points at you]", + "replies": [ + { + "text": "N", + "nextPhraseID": "maelveon_5" + } + ] + }, + { + "id": "maelveon_5", + "message": "Sssshadow be with you.", + "replies": [ + { + "text": "Shadow, what?", + "nextPhraseID": "F" + }, + { + "text": "Die, evil creature!", + "nextPhraseID": "F" + }, + { + "text": "Please don't hurt me!", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_mazeg.json b/AndorsTrail/res/raw/conversationlist_mazeg.json new file mode 100644 index 000000000..3d55fb0d9 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_mazeg.json @@ -0,0 +1,290 @@ +[ + { + "id": "mazeg", + "replies": [ + { + "nextPhraseID": "mazeg_1", + "requires": { + "progress": "bwm_agent:240" + } + }, + { + "nextPhraseID": "mazeg_2" + } + ] + }, + { + "id": "mazeg_1", + "message": "Welcome friend! Would you like to browse my selection of fine potions and ointments?", + "replies": [ + { + "text": "Sure. Show me what you have.", + "nextPhraseID": "S" + }, + { + "text": "I am looking for some Lyson marrow extract, for Hjaldar in Remgard.", + "nextPhraseID": "mazeg_e_1", + "requires": { + "progress": "sisterfight:45" + } + } + ] + }, + { + "id": "mazeg_2", + "message": "Welcome traveller. Have you come to ask for help from me and my potions?", + "replies": [ + { + "text": "Yes. Please show me what you have.", + "nextPhraseID": "blackwater_notrust" + }, + { + "text": "I am looking for some Lyson marrow extract, for Hjaldar in Remgard.", + "nextPhraseID": "mazeg_e_1", + "requires": { + "progress": "sisterfight:45" + } + } + ] + }, + { + "id": "mazeg_e_1", + "replies": [ + { + "nextPhraseID": "mazeg_d", + "requires": { + "progress": "sisterfight:55" + } + }, + { + "nextPhraseID": "mazeg_e_5b", + "requires": { + "progress": "sisterfight:51" + } + }, + { + "nextPhraseID": "mazeg_e_5b", + "requires": { + "progress": "sisterfight:50" + } + }, + { + "nextPhraseID": "mazeg_e_2" + } + ] + }, + { + "id": "mazeg_d", + "message": "I already sold you some before. Did you lose it? Please tell my old friend Hjaldar that I said hello." + }, + { + "id": "mazeg_e_2", + "message": "Hjaldar, my old friend! Tell me, how is he these days?", + "replies": [ + { + "text": "He asked me to relay his greetings to you, and to tell you that he is well.", + "nextPhraseID": "mazeg_e_3" + }, + { + "text": "He is sick, and getting worse every day.", + "nextPhraseID": "mazeg_e_4" + } + ] + }, + { + "id": "mazeg_e_3", + "message": "Oh, I am so glad to hear that! We sure did have some nice times while working together.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mazeg_e_5" + } + ] + }, + { + "id": "mazeg_e_4", + "message": "I'm sorry to hear that. He always seemed like a tough old boy to me.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mazeg_e_5" + } + ] + }, + { + "id": "mazeg_e_5", + "message": "You asked for some Lyson marrow extract.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mazeg_e_5b" + } + ] + }, + { + "id": "mazeg_e_5b", + "message": "Sure, I have it.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mazeg_e_6" + } + ] + }, + { + "id": "mazeg_e_6", + "replies": [ + { + "nextPhraseID": "mazeg_e_7a", + "requires": { + "progress": "bwm_agent:240" + } + }, + { + "nextPhraseID": "mazeg_e_7b" + } + ] + }, + { + "id": "mazeg_e_7a", + "message": "Since you helped us up here in the Blackwater Mountain settlement earlier, I am willing to give you a discount on the price for some Lyson marrow extract. For 400 gold, I am willing to sell you some of it for my old friend Hjaldar.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "sisterfight", + "value": 50 + } + ], + "replies": [ + { + "text": "Here is 400 gold.", + "nextPhraseID": "mazeg_e_9", + "requires": { + "item": { + "itemID": "gold", + "quantity": 400, + "requireType": 0 + } + } + }, + { + "text": "Ouch, that much?! Is there anything you can do to lower the price?", + "nextPhraseID": "mazeg_e_8a" + }, + { + "text": "I'll return when I have the gold for it.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "mazeg_e_8a", + "message": "No, 400 gold it is. That's a really good price, considering how hard this stuff is to find. Besides, if it weren't for Hjaldar, I wouldn't even be selling this to you.", + "replies": [ + { + "text": "Here is 400 gold.", + "nextPhraseID": "mazeg_e_9", + "requires": { + "item": { + "itemID": "gold", + "quantity": 400, + "requireType": 0 + } + } + }, + { + "text": "I'll return when I have the gold for it.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "mazeg_e_7b", + "message": "For 800 gold, I am willing to sell you some of it for my old friend Hjaldar.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "sisterfight", + "value": 51 + } + ], + "replies": [ + { + "text": "Here is 800 gold.", + "nextPhraseID": "mazeg_e_9", + "requires": { + "item": { + "itemID": "gold", + "quantity": 800, + "requireType": 0 + } + } + }, + { + "text": "Ouch, that much?! Is there anything you can do to lower the price?", + "nextPhraseID": "mazeg_e_8b" + }, + { + "text": "I'll return when I have the gold for it.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "mazeg_e_8b", + "message": "No, 800 gold it is. That's a really good price, considering how hard this stuff is to find. Besides, if it weren't for Hjaldar, I wouldn't even be selling this to you.", + "replies": [ + { + "text": "Here is 800 gold.", + "nextPhraseID": "mazeg_e_9", + "requires": { + "item": { + "itemID": "gold", + "quantity": 800, + "requireType": 0 + } + } + }, + { + "text": "I'll return when I have the gold for it.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "mazeg_e_9", + "message": "Thanks. Here's some of the Lyson marrow extract.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "sisterfight", + "value": 55 + }, + { + "rewardType": 1, + "rewardID": "lyson_marrow", + "value": 0 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "mazeg_e_10" + } + ] + }, + { + "id": "mazeg_e_10", + "message": "Please give my warmest greetings to my good friend Hjaldar. Tell him that I am well.", + "replies": [ + { + "text": "Will do. Thanks and goodbye.", + "nextPhraseID": "X" + }, + { + "text": "Whatever. Goodbye.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_mikhail.json b/AndorsTrail/res/raw/conversationlist_mikhail.json new file mode 100644 index 000000000..f1b9a7dac --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_mikhail.json @@ -0,0 +1,350 @@ +[ + { + "id": "mikhail_start_select", + "replies": [ + { + "nextPhraseID": "mikhail_start_select2", + "requires": { + "progress": "mikhail_bread:100" + } + }, + { + "nextPhraseID": "mikhail_bread_continue", + "requires": { + "progress": "mikhail_bread:10" + } + }, + { + "nextPhraseID": "mikhail_start_select2" + } + ] + }, + { + "id": "mikhail_start_select2", + "replies": [ + { + "nextPhraseID": "mikhail_start_select_default", + "requires": { + "progress": "mikhail_rats:100" + } + }, + { + "nextPhraseID": "mikhail_rats_continue", + "requires": { + "progress": "mikhail_rats:10" + } + }, + { + "nextPhraseID": "mikhail_start_select_default" + } + ] + }, + { + "id": "mikhail_start_select_default", + "replies": [ + { + "nextPhraseID": "mikhail_visited", + "requires": { + "progress": "andor:1" + } + }, + { + "nextPhraseID": "mikhail_gamestart" + } + ] + }, + { + "id": "mikhail_gamestart", + "message": "Oh good, you are awake.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_visited" + } + ] + }, + { + "id": "mikhail_visited", + "message": "I can't seem to find your brother Andor anywhere. He hasn't been back since he left yesterday.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 1 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail3" + } + ] + }, + { + "id": "mikhail3", + "message": "Never mind, he will probably be back soon.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_default", + "message": "Anything else I can help you with?", + "replies": [ + { + "text": "Do you have any tasks for me?", + "nextPhraseID": "mikhail_tasks" + }, + { + "text": "Is there anything else you can tell me about Andor?", + "nextPhraseID": "mikhail_andor1" + } + ] + }, + { + "id": "mikhail_tasks", + "message": "Oh yes, there were some things I need help with, bread and rats. Which one would you like to talk about?", + "replies": [ + { + "text": "What about the bread?", + "nextPhraseID": "mikhail_bread_select" + }, + { + "text": "What about the rats?", + "nextPhraseID": "mikhail_rats_select" + }, + { + "text": "Never mind, let's talk about the other things.", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_andor1", + "message": "As I said, Andor went out yesterday and hasn't been back since. I'm starting to worry about him. Please go look for your brother, he said he would only be out a short while.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_andor2" + } + ] + }, + { + "id": "mikhail_andor2", + "message": "Maybe he went into that supply cave again and got stuck. Or maybe he's in Leta's basement training with that wooden sword again. Please go look for him in town.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_bread_select", + "replies": [ + { + "nextPhraseID": "mikhail_bread_complete2", + "requires": { + "progress": "mikhail_bread:100" + } + }, + { + "nextPhraseID": "mikhail_bread_continue", + "requires": { + "progress": "mikhail_bread:10" + } + }, + { + "nextPhraseID": "mikhail_bread_start" + } + ] + }, + { + "id": "mikhail_bread_start", + "message": "Oh, I almost forgot. If you have time, please go see Mara at the town hall and buy me some more bread.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "mikhail_bread", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_bread_continue", + "message": "Did you get my bread from Mara at the town hall yet?", + "replies": [ + { + "text": "Yes, here you go.", + "nextPhraseID": "mikhail_bread_complete", + "requires": { + "item": { + "itemID": "bread", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "No, not yet.", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_bread_complete", + "message": "Thanks a lot, now I can make my breakfast. Here, take these coins for your help.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "mikhail_bread", + "value": 100 + }, + { + "rewardType": 1, + "rewardID": "gold20" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_bread_complete2", + "message": "Thanks for the bread earlier.", + "replies": [ + { + "text": "You're welcome.", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_rats_select", + "replies": [ + { + "nextPhraseID": "mikhail_rats_complete2", + "requires": { + "progress": "mikhail_rats:100" + } + }, + { + "nextPhraseID": "mikhail_rats_continue", + "requires": { + "progress": "mikhail_rats:10" + } + }, + { + "nextPhraseID": "mikhail_rats_start" + } + ] + }, + { + "id": "mikhail_rats_start", + "message": "I saw some rats out back in our garden earlier. Could you please go kill any rats that you see out there.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "mikhail_rats", + "value": 10 + } + ], + "replies": [ + { + "text": "I have already dealt with the rats.", + "nextPhraseID": "mikhail_rats_complete", + "requires": { + "item": { + "itemID": "tail_trainingrat", + "quantity": 2, + "requireType": 0 + } + } + }, + { + "text": "Ok, I'll go check out in our garden.", + "nextPhraseID": "mikhail_rats_start2" + } + ] + }, + { + "id": "mikhail_rats_start2", + "message": "If you get hurt by the rats, come back here and rest in your bed. That way you can regain your strength.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_rats_start3" + } + ] + }, + { + "id": "mikhail_rats_start3", + "message": "Also, don't forget to check your inventory. You probably still have that old ring I gave you. Make sure you wear it.", + "replies": [ + { + "text": "Ok, I understand. I can rest here if I get hurt, and I should check my inventory for useful items.", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_rats_continue", + "message": "Did you kill those two rats in our garden?", + "replies": [ + { + "text": "Yes, I have dealt with the rats now.", + "nextPhraseID": "mikhail_rats_complete", + "requires": { + "item": { + "itemID": "tail_trainingrat", + "quantity": 2, + "requireType": 0 + } + } + }, + { + "text": "No, not yet.", + "nextPhraseID": "mikhail_rats_start2" + } + ] + }, + { + "id": "mikhail_rats_complete", + "message": "Oh you did? Wow, thanks a lot for your help!\n\nIf you are hurt, use your bed over there to rest and regain your strength.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "mikhail_rats", + "value": 100 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + }, + { + "id": "mikhail_rats_complete2", + "message": "Thanks for your help with the rats earlier.\n\nIf you are hurt, use your bed over there to rest and regain your strength.", + "replies": [ + { + "text": "N", + "nextPhraseID": "mikhail_default" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_minarra.json b/AndorsTrail/res/raw/conversationlist_minarra.json new file mode 100644 index 000000000..3bf6798df --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_minarra.json @@ -0,0 +1,483 @@ +[ + { + "id": "minarra", + "replies": [ + { + "nextPhraseID": "minarra_completed_1", + "requires": { + "progress": "rogorn:60" + } + }, + { + "nextPhraseID": "minarra_completing_1", + "requires": { + "progress": "rogorn:55" + } + }, + { + "nextPhraseID": "minarra_completing_1", + "requires": { + "progress": "rogorn:50" + } + }, + { + "nextPhraseID": "minarra_look_1", + "requires": { + "progress": "rogorn:20" + } + }, + { + "nextPhraseID": "minarra_return_1", + "requires": { + "progress": "rogorn:10" + } + }, + { + "nextPhraseID": "minarra_first_1" + } + ] + }, + { + "id": "minarra_first_1", + "message": "Hello there. Can I help you?", + "replies": [ + { + "text": "You seem to have a lot of equipment around here. Do you have anything to trade?", + "nextPhraseID": "minarra_trade_rej" + }, + { + "text": "What do you do up here?", + "nextPhraseID": "minarra_first_5" + }, + { + "text": "You must have a good view of the surroundings up here. Have you seen anything interesting lately?", + "nextPhraseID": "minarra_first_2" + } + ] + }, + { + "id": "minarra_trade_rej", + "message": "I might, but you would have to clear it with Gandoren downstairs. We don't trade with just anyone." + }, + { + "id": "minarra_return_1", + "message": "You return. Was there something else you wanted?", + "replies": [ + { + "text": "Can you tell me again about those men you saw?", + "nextPhraseID": "minarra_story_1" + }, + { + "text": "Do you have anything to trade?", + "nextPhraseID": "minarra_trade_rej" + }, + { + "text": "What do you do up here?", + "nextPhraseID": "minarra_first_5" + } + ] + }, + { + "id": "minarra_first_2", + "message": "Mostly, I see the travellers on the Duleian road from and to Feygard here.", + "replies": [ + { + "text": "N", + "nextPhraseID": "minarra_first_3" + } + ] + }, + { + "id": "minarra_first_3", + "message": "Recently however, there have been a lot of movements to and from Loneford. I guess it is because of the problems they have been having up there.", + "replies": [ + { + "text": "N", + "nextPhraseID": "minarra_first_4_s" + } + ] + }, + { + "id": "minarra_first_4_s", + "replies": [ + { + "nextPhraseID": "minarra_first_4_1", + "requires": { + "progress": "rogorn:60" + } + }, + { + "nextPhraseID": "minarra_first_4" + } + ] + }, + { + "id": "minarra_first_4", + "message": "I did see something very interesting yesterday though.", + "replies": [ + { + "text": "What was that?", + "nextPhraseID": "minarra_story_1" + }, + { + "text": "You mentioned the Duleian road, what's that?", + "nextPhraseID": "minarra_first_6" + }, + { + "text": "You mentioned some problems in Loneford, what problems were you referring to?", + "nextPhraseID": "cr_loneford_st_1" + }, + { + "text": "Never mind that, I wanted to ask you what your duty is up here?", + "nextPhraseID": "minarra_first_5" + } + ] + }, + { + "id": "minarra_first_4_1", + "message": "Some farm animals today as well.", + "replies": [ + { + "text": "You mentioned the Duleian road, what's that?", + "nextPhraseID": "minarra_first_6_1" + }, + { + "text": "You mentioned some problems in Loneford, what problems were you referring to?", + "nextPhraseID": "cr_loneford_st_1" + } + ] + }, + { + "id": "minarra_first_5", + "message": "I handle the equipment storage for us guards here in the Crossroads guardhouse, and I keep a lookout of the surrounding areas.", + "replies": [ + { + "text": "Do you have anything to trade?", + "nextPhraseID": "minarra_trade_rej" + }, + { + "text": "Have you seen anything interesting lately?", + "nextPhraseID": "minarra_first_2" + } + ] + }, + { + "id": "minarra_first_6", + "message": "See this wide road that goes outside this guardhouse? That's the Duleian road. It goes all the way from the glorious city of Feygard up in the northwest down to the wretched Nor City in the southeast.", + "replies": [ + { + "text": "You mentioned some problems in Loneford, what problems are that?", + "nextPhraseID": "cr_loneford_st_1" + }, + { + "text": "I wanted to ask you what your duty is up here?", + "nextPhraseID": "minarra_first_5" + } + ] + }, + { + "id": "minarra_first_6_1", + "message": "See this wide road that goes outside this guardhouse? That's the Duleian road. It goes all the way from the glorious city of Feygard up in the northwest down to the wretched Nor City in the southeast.", + "replies": [ + { + "text": "You mentioned some problems in Loneford, what problems are that?", + "nextPhraseID": "cr_loneford_st_1" + } + ] + }, + { + "id": "minarra_story_1", + "message": "I saw a band of rough looking men travelling up the Duleian road. Usually, a band of rough looking men is not something that's worth getting all excited about.", + "replies": [ + { + "text": "N", + "nextPhraseID": "minarra_story_2" + } + ] + }, + { + "id": "minarra_story_2", + "message": "But these men matched the description of some people that are wanted by the Feygard patrol.", + "replies": [ + { + "text": "N", + "nextPhraseID": "minarra_story_3" + } + ] + }, + { + "id": "minarra_story_3", + "message": "If I saw correctly, these men were the band of rogues led by a man called Rogorn, that we are looking to apprehend for several ruthless cases of murder and theft.", + "replies": [ + { + "text": "N", + "nextPhraseID": "minarra_story_4" + } + ] + }, + { + "id": "minarra_story_4", + "message": "Their leader, Rogorn, is a particularly savage man according to the reports from Feygard that I have read.", + "replies": [ + { + "text": "N", + "nextPhraseID": "minarra_story_5" + } + ] + }, + { + "id": "minarra_story_5", + "message": "Now, usually, we would go out searching for them, to verify that the men I saw were indeed these men. However, now with the trouble up in Loneford, we cannot afford to spare any guards other than to guarding Loneford.", + "replies": [ + { + "text": "N", + "nextPhraseID": "minarra_story_6" + } + ] + }, + { + "id": "minarra_story_6", + "message": "I am sure that those were the men. If we were to catch and kill them, the people of Feygard would be much safer.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "rogorn", + "value": 10 + } + ], + "replies": [ + { + "text": "I could go look for them if you want.", + "nextPhraseID": "minarra_story_8" + }, + { + "text": "Well, good luck with that.", + "nextPhraseID": "minarra_story_7" + } + ] + }, + { + "id": "minarra_story_7", + "message": "Thank you. Good luck yourself. Now, if you will excuse me, I need to keep my eyes on the road." + }, + { + "id": "minarra_story_8", + "message": "Hey, that's a great idea. Are you sure you are up to it though? The people of Feygard would indeed be grateful if you were to find them.", + "replies": [ + { + "text": "N", + "nextPhraseID": "minarra_story_9" + } + ] + }, + { + "id": "minarra_story_9", + "message": "Anyway, I saw them travelling the road west of here. You know that road that leads to Carn Tower? That's the last I saw of them. You might want to follow that road and see if you can spot them.", + "replies": [ + { + "text": "N", + "nextPhraseID": "minarra_story_10" + } + ] + }, + { + "id": "minarra_story_10", + "message": "They have stolen three pieces of a very valuable painting from Feygard, from the report that I have read. For their crimes and the savageness of their way, they are wanted dead by the Feygard patrol.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "rogorn", + "value": 20 + } + ], + "replies": [ + { + "text": "I will be back once they are dead. Anything else?", + "nextPhraseID": "minarra_story_11" + } + ] + }, + { + "id": "minarra_story_11", + "message": "Yes, I should also tell you that they most likely will try to persuade you into believing their story.", + "replies": [ + { + "text": "N", + "nextPhraseID": "minarra_story_12" + } + ] + }, + { + "id": "minarra_story_12", + "message": "In particular, their leader, Rogorn, is a well known villain by Feygard. Nothing he says should be trusted.", + "replies": [ + { + "text": "N", + "nextPhraseID": "minarra_story_13" + } + ] + }, + { + "id": "minarra_story_13", + "message": "I urge you not to listen to their lies. Their crimes must be punished in order to uphold the law.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "rogorn", + "value": 21 + } + ], + "replies": [ + { + "text": "I will return once the task is done.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "minarra_look_1", + "message": "You return. Did you find those men that we talked about?", + "replies": [ + { + "text": "I am still looking for them.", + "nextPhraseID": "minarra_look_2" + }, + { + "text": "Yes, I killed them and recovered the three pieces of the painting.", + "nextPhraseID": "minarra_look_3", + "requires": { + "progress": "rogorn:40", + "item": { + "itemID": "rogorn_qitem", + "quantity": 3, + "requireType": 0 + } + } + }, + { + "text": "I travelled west and found a travelling group of men, but they did not match the men you described.", + "nextPhraseID": "minarra_look_5", + "requires": { + "progress": "rogorn:45" + } + } + ] + }, + { + "id": "minarra_look_2", + "message": "Good. Return to me as soon as you have anything to report. We would really like to recover those three pieces of the painting they stole." + }, + { + "id": "minarra_look_3", + "message": "That is excellent news indeed! I knew that we could trust you.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "rogorn", + "value": 50 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "minarra_look_4" + } + ] + }, + { + "id": "minarra_look_4", + "message": "Your services to Feygard will be greatly appreciated.", + "replies": [ + { + "text": "N", + "nextPhraseID": "minarra_completing_1" + } + ] + }, + { + "id": "minarra_look_5", + "message": "Are you sure that they were not the ones? I have a keen eyesight, that's why I am up here. I was sure that they matched the description of the men.", + "replies": [ + { + "text": "N", + "nextPhraseID": "minarra_look_6" + } + ] + }, + { + "id": "minarra_look_6", + "message": "I guess I will have to take your word for it.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "rogorn", + "value": 55 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "minarra_completing_1" + } + ] + }, + { + "id": "minarra_completing_1", + "message": "Thank you for helping me investigate this matter.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "rogorn", + "value": 60 + } + ], + "replies": [ + { + "text": "Do you have anything to trade?", + "nextPhraseID": "minarra_trade_1" + }, + { + "text": "You must have a good view of the surroundings up here. Have you seen anything interesting lately?", + "nextPhraseID": "minarra_first_2" + } + ] + }, + { + "id": "minarra_completed_1", + "message": "Thank you for helping me investigate the men earlier.", + "replies": [ + { + "text": "Do you have anything to trade?", + "nextPhraseID": "minarra_trade_1" + }, + { + "text": "You must have a good view of the surroundings up here. Have you seen anything interesting lately?", + "nextPhraseID": "minarra_first_2" + } + ] + }, + { + "id": "minarra_trade_1", + "replies": [ + { + "nextPhraseID": "minarra_trade_2", + "requires": { + "progress": "nondisplay:18" + } + }, + { + "nextPhraseID": "minarra_trade_rej" + } + ] + }, + { + "id": "minarra_trade_2", + "message": "Sure, take a look.", + "replies": [ + { + "text": "N", + "nextPhraseID": "S" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_norath.json b/AndorsTrail/res/raw/conversationlist_norath.json new file mode 100644 index 000000000..64dc56680 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_norath.json @@ -0,0 +1,221 @@ +[ + { + "id": "norath", + "replies": [ + { + "nextPhraseID": "norath_1" + } + ] + }, + { + "id": "norath_1", + "message": "Hello there. Can I help you?", + "replies": [ + { + "text": "I was sent by Jhaeld to ask about your missing wife.", + "nextPhraseID": "norath_jhaeld1", + "requires": { + "progress": "remgard:51" + } + }, + { + "text": "Do you have anything to trade?", + "nextPhraseID": "norath_2" + }, + { + "text": "What do you do around here?", + "nextPhraseID": "norath_3" + } + ] + }, + { + "id": "norath_2", + "message": "Me? No, I don't have anything to sell you. Does this look like a shop to you?", + "replies": [ + { + "text": "I was sent by Jhaeld to ask about your missing wife.", + "nextPhraseID": "norath_jhaeld1", + "requires": { + "progress": "remgard:51" + } + }, + { + "text": "What do you do around here?", + "nextPhraseID": "norath_3" + } + ] + }, + { + "id": "norath_3", + "message": "Well, usually I tend to the crops that we grow here. Now, I can't find the strength to do that though.", + "replies": [ + { + "text": "Why, what's wrong?", + "nextPhraseID": "norath_4" + } + ] + }, + { + "id": "norath_4", + "message": "My wife, Bethir. She is gone, and no one seems to know where she is.", + "replies": [ + { + "text": "N", + "nextPhraseID": "norath_5" + } + ] + }, + { + "id": "norath_5", + "message": "I even went so far as to ask the guards to look for her, but she is nowhere to be found.", + "replies": [ + { + "text": "Are you sure she isn't just out of town running some errands?", + "nextPhraseID": "norath_6" + }, + { + "text": "Where do you think she has gone?", + "nextPhraseID": "norath_7" + }, + { + "text": "I was sent by Jhaeld to ask you about her.", + "nextPhraseID": "norath_jhaeld1", + "requires": { + "progress": "remgard:51" + } + } + ] + }, + { + "id": "norath_6", + "message": "If that were the case, I would have hoped she would have told me first. No, I can feel it - I am sure something bad has happened to her.", + "replies": [ + { + "text": "Where do you think she has gone?", + "nextPhraseID": "norath_7" + }, + { + "text": "I was sent by Jhaeld to ask you about her.", + "nextPhraseID": "norath_jhaeld1", + "requires": { + "progress": "remgard:51" + } + } + ] + }, + { + "id": "norath_7", + "message": "To be quite honest, I have no idea.", + "replies": [ + { + "text": "Are you sure she isn't just out of town running some errands?", + "nextPhraseID": "norath_6" + }, + { + "text": "I was sent by Jhaeld to ask you about her.", + "nextPhraseID": "norath_jhaeld1", + "requires": { + "progress": "remgard:51" + } + } + ] + }, + { + "id": "norath_jhaeld1", + "message": "What do you want me to say? She is missing.", + "replies": [ + { + "text": "Is there anything else you have found out that you didn't tell the guards earlier?", + "nextPhraseID": "norath_jhaeld2" + } + ] + }, + { + "id": "norath_jhaeld2", + "message": "No. I told those guards the whole story. If I were to find out more, I would immediately tell them of course.", + "replies": [ + { + "text": "N", + "nextPhraseID": "norath_jhaeld3" + } + ] + }, + { + "id": "norath_jhaeld3", + "message": "We did have a minor argument just the night before she went missing. But it was just a minor thing, nothing serious.", + "replies": [ + { + "text": "N", + "nextPhraseID": "norath_jhaeld_s_1" + } + ] + }, + { + "id": "norath_jhaeld_s_1", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 61 + } + ], + "replies": [ + { + "nextPhraseID": "norath_jhaeld_s_2", + "requires": { + "progress": "remgard:62" + } + }, + { + "nextPhraseID": "norath_jhaeld4" + } + ] + }, + { + "id": "norath_jhaeld_s_2", + "replies": [ + { + "nextPhraseID": "norath_jhaeld_s_3", + "requires": { + "progress": "remgard:63" + } + }, + { + "nextPhraseID": "norath_jhaeld4" + } + ] + }, + { + "id": "norath_jhaeld_s_3", + "replies": [ + { + "nextPhraseID": "norath_jhaeld_s_4", + "requires": { + "progress": "remgard:64" + } + }, + { + "nextPhraseID": "norath_jhaeld4" + } + ] + }, + { + "id": "norath_jhaeld_s_4", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 70 + } + ], + "replies": [ + { + "nextPhraseID": "norath_jhaeld4" + } + ] + }, + { + "id": "norath_jhaeld4", + "message": "Now, if you'll excuse me, I have things to tend to." + } +] diff --git a/AndorsTrail/res/raw/conversationlist_ogam.json b/AndorsTrail/res/raw/conversationlist_ogam.json new file mode 100644 index 000000000..264be37ba --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_ogam.json @@ -0,0 +1,170 @@ +[ + { + "id": "ogam_1", + "message": "Belief. Power. Struggle.", + "replies": [ + { + "text": "What?", + "nextPhraseID": "ogam_2" + }, + { + "text": "I was told to see you.", + "nextPhraseID": "ogam_2", + "requires": { + "progress": "lodar:15" + } + } + ] + }, + { + "id": "ogam_2", + "message": "Backwards is the burden high and low.", + "replies": [ + { + "text": "What?", + "nextPhraseID": "ogam_3" + }, + { + "text": "Please go on", + "nextPhraseID": "ogam_3" + }, + { + "text": "Hello? Umar in the Fallhaven Thieves' Guild sent me to see you.", + "nextPhraseID": "ogam_3", + "requires": { + "progress": "lodar:15" + } + } + ] + }, + { + "id": "ogam_3", + "message": "Hiding in the Shadow.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ogam_4" + } + ] + }, + { + "id": "ogam_4", + "message": "Two alike in body and mind.", + "replies": [ + { + "text": "Are you going to make any sense?", + "nextPhraseID": "ogam_5" + }, + { + "text": "What do you mean?", + "nextPhraseID": "ogam_5" + } + ] + }, + { + "id": "ogam_5", + "message": "The lawful and the chaotic.", + "replies": [ + { + "text": "Hello? Do you know how I can reach Lodar's hideaway?", + "nextPhraseID": "ogam_lodar_1", + "requires": { + "progress": "lodar:15" + } + }, + { + "text": "I don't understand.", + "nextPhraseID": "ogam_6" + } + ] + }, + { + "id": "ogam_lodar_1", + "message": "Lodar? Clear, tingling, hurt.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ogam_6" + } + ] + }, + { + "id": "ogam_6", + "message": "Yes. The true form. Behold.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ogam_7" + } + ] + }, + { + "id": "ogam_7", + "message": "Hiding in the Shadow.", + "replies": [ + { + "text": "The Shadow?", + "nextPhraseID": "ogam_4" + }, + { + "text": "Are you even listening to what I say?", + "nextPhraseID": "ogam_4" + }, + { + "text": "Hello? Do you know how I can reach Lodar's hideaway?", + "nextPhraseID": "ogam_lodar_2", + "requires": { + "progress": "lodar:15" + } + } + ] + }, + { + "id": "ogam_lodar_2", + "message": "Lodar, halfway between the Shadow and the light. Rocky formations.", + "replies": [ + { + "text": "Ok, halfway between two places. Some rocks?", + "nextPhraseID": "ogam_lodar_3" + }, + { + "text": "Uh. Could you repeat that?", + "nextPhraseID": "ogam_lodar_3" + } + ] + }, + { + "id": "ogam_lodar_3", + "message": "Guardian. Glow of the Shadow.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "lodar", + "value": 20 + } + ], + "replies": [ + { + "text": "Glow of the Shadow? Are those the words the guardian needs to hear?", + "nextPhraseID": "ogam_lodar_4" + }, + { + "text": "'Glow of the Shadow'? I recognize that from somewhere.", + "nextPhraseID": "ogam_lodar_4", + "requires": { + "progress": "bonemeal:30" + } + } + ] + }, + { + "id": "ogam_lodar_4", + "message": "Turning. Twisting. Clear form.", + "replies": [ + { + "text": "What does that mean?", + "nextPhraseID": "ogam_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_oluag.json b/AndorsTrail/res/raw/conversationlist_oluag.json new file mode 100644 index 000000000..b3146b314 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_oluag.json @@ -0,0 +1,272 @@ +[ + { + "id": "oluag_1", + "replies": [ + { + "nextPhraseID": "oluag_grave_16", + "requires": { + "progress": "wrye:80" + } + }, + { + "nextPhraseID": "oluag_1_1" + } + ] + }, + { + "id": "oluag_1_1", + "message": "Hello. I am Oluag.", + "replies": [ + { + "text": "What are you doing here around these crates?", + "nextPhraseID": "oluag_2" + } + ] + }, + { + "id": "oluag_2", + "message": "Oh these. They are nothing. Never mind them. That grave over there is nothing to worry about either.", + "replies": [ + { + "text": "What grave?", + "nextPhraseID": "oluag_grave_select" + }, + { + "text": "Nothing, really? This sounds suspicious.", + "nextPhraseID": "oluag_boxes_1" + } + ] + }, + { + "id": "oluag_boxes_1", + "message": "No no, nothing suspicious at all. It's not like they contain any contraband or anything like that, hah!", + "replies": [ + { + "text": "What was that about a grave?", + "nextPhraseID": "oluag_grave_select" + }, + { + "text": "Ok then. I guess I didn't see anything.", + "nextPhraseID": "oluag_goodbye" + } + ] + }, + { + "id": "oluag_goodbye", + "message": "Right. Goodbye." + }, + { + "id": "oluag_grave_select", + "replies": [ + { + "nextPhraseID": "oluag_grave_return", + "requires": { + "progress": "wrye:80" + } + }, + { + "nextPhraseID": "oluag_grave_1" + } + ] + }, + { + "id": "oluag_grave_return", + "message": "Look, I already told you the story.", + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_5" + } + ] + }, + { + "id": "oluag_grave_1", + "message": "Yeah, ok. So there is a grave right over there. I promise I had nothing to do with it.", + "replies": [ + { + "text": "Nothing? Really?", + "nextPhraseID": "oluag_grave_2" + }, + { + "text": "Ok then. I guess you didn't have anything to do with it.", + "nextPhraseID": "oluag_goodbye" + } + ] + }, + { + "id": "oluag_grave_2", + "message": "Well, when I say 'nothing', I really mean nothing. Or maybe just a little bit.", + "replies": [ + { + "text": "A little bit?", + "nextPhraseID": "oluag_grave_3" + } + ] + }, + { + "id": "oluag_grave_3", + "message": "Ok, so maybe I just had a little bit to do with it.", + "replies": [ + { + "text": "You better start talking.", + "nextPhraseID": "oluag_grave_5" + }, + { + "text": "What did you do?", + "nextPhraseID": "oluag_grave_5" + }, + { + "text": "Do I have to beat it out of you?", + "nextPhraseID": "oluag_grave_4" + } + ] + }, + { + "id": "oluag_grave_4", + "message": "Relax, relax. I don't want any more fights.", + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_5" + } + ] + }, + { + "id": "oluag_grave_5", + "message": "There was this kid I found. He had almost bled to death.", + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_6" + } + ] + }, + { + "id": "oluag_grave_6", + "message": "I managed to get a few sentences out of him before he died.", + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_7" + } + ] + }, + { + "id": "oluag_grave_7", + "message": "So I buried him over there by that grave.", + "replies": [ + { + "text": "What were the last sentences you heard him say?", + "nextPhraseID": "oluag_grave_8" + } + ] + }, + { + "id": "oluag_grave_8", + "message": "Something about Vilegard and Ryndel maybe? I didn't really pay attention, I was more interested in what loot he had on him.", + "replies": [ + { + "text": "I should go check that grave. Goodbye.", + "nextPhraseID": "X" + }, + { + "text": "Rincel, was that it? From Vilegard? Wrye's missing son.", + "nextPhraseID": "oluag_grave_9", + "requires": { + "progress": "wrye:40" + } + } + ] + }, + { + "id": "oluag_grave_9", + "message": "Yeah, that might be it. Anyway, so he said something about fulfilling a dream to see the great city of Feygard.", + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_10" + } + ] + }, + { + "id": "oluag_grave_10", + "message": "And he told me something about that he didn't dare tell anyone.", + "replies": [ + { + "text": "Maybe he didn't dare tell Wrye?", + "nextPhraseID": "oluag_grave_11" + } + ] + }, + { + "id": "oluag_grave_11", + "message": "Yeah sure, probably. He had set down here to camp, but got attacked by some monsters.", + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_12" + } + ] + }, + { + "id": "oluag_grave_12", + "message": "Apparently he was not as strong a fighter as, for example, someone like me. So the monsters wounded him too much for him to last the night.", + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_13" + } + ] + }, + { + "id": "oluag_grave_13", + "message": "Sadly, they also must have taken any loot with them, since I could not find any on him.", + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_14" + } + ] + }, + { + "id": "oluag_grave_14", + "message": "I heard the fighting and only managed to get to him after the monsters had fled.", + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_15" + } + ] + }, + { + "id": "oluag_grave_15", + "message": "So, anyway. Now he is buried over there. Rest in peace.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "wrye", + "value": 80 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "oluag_grave_16" + } + ] + }, + { + "id": "oluag_grave_16", + "message": "Lousy kid. He could at least have had a few coins on him.", + "replies": [ + { + "text": "Thank you for the story. Goodbye.", + "nextPhraseID": "oluag_goodbye" + }, + { + "text": "Thank you for the story. Shadow be with you.", + "nextPhraseID": "oluag_goodbye" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_prim_arghest.json b/AndorsTrail/res/raw/conversationlist_prim_arghest.json new file mode 100644 index 000000000..d53db17ae --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_prim_arghest.json @@ -0,0 +1,308 @@ +[ + { + "id": "arghest_start", + "replies": [ + { + "nextPhraseID": "arghest_return_1", + "requires": { + "progress": "prim_innquest:40" + } + }, + { + "nextPhraseID": "arghest_return_2", + "requires": { + "progress": "prim_innquest:30" + } + }, + { + "nextPhraseID": "arghest_1" + } + ] + }, + { + "id": "arghest_1", + "message": "Hello there.", + "replies": [ + { + "text": "What is this place?", + "nextPhraseID": "arghest_2" + }, + { + "text": "Who are you?", + "nextPhraseID": "arghest_5" + }, + { + "text": "Did you rent the back room at the inn in Prim?", + "nextPhraseID": "arghest_8", + "requires": { + "progress": "prim_innquest:10" + } + } + ] + }, + { + "id": "arghest_2", + "message": "This is the old Elm mine of Prim.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arghest_3" + } + ] + }, + { + "id": "arghest_3", + "message": "We used to mine a lot here. But that was before the attacks started.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arghest_4" + } + ] + }, + { + "id": "arghest_4", + "message": "The attacks on Prim by the beasts and the bandits really reduced our numbers. Now we cannot keep up the mining activity any longer.", + "replies": [ + { + "text": "Who are you?", + "nextPhraseID": "arghest_5" + } + ] + }, + { + "id": "arghest_5", + "message": "I am Arghest. I guard the entrance here to make sure no one enters the old mine.", + "replies": [ + { + "text": "What is this place?", + "nextPhraseID": "arghest_2" + }, + { + "text": "Can I enter the mine?", + "nextPhraseID": "arghest_6" + } + ] + }, + { + "id": "arghest_6", + "message": "No. The mine is closed.", + "replies": [ + { + "text": "Ok, goodbye.", + "nextPhraseID": "X" + }, + { + "text": "Please?", + "nextPhraseID": "arghest_7" + } + ] + }, + { + "id": "arghest_7", + "message": "I said no. Visitors are not allowed in there.", + "replies": [ + { + "text": "Please?", + "nextPhraseID": "arghest_6" + }, + { + "text": "Just a quick peek?", + "nextPhraseID": "arghest_6" + } + ] + }, + { + "id": "arghest_return_1", + "message": "Welcome back. Thanks for your help earlier. I hope the room at the inn can be of use to you.", + "replies": [ + { + "text": "You are welcome. Goodbye.", + "nextPhraseID": "X" + }, + { + "text": "Can I enter the mine?", + "nextPhraseID": "arghest_6" + } + ] + }, + { + "id": "arghest_return_2", + "message": "Welcome back. Did you bring me the 5 bottles of milk that I requested?", + "replies": [ + { + "text": "No, not yet. I'm working on it.", + "nextPhraseID": "arghest_return_3" + }, + { + "text": "Yes, here you go, enjoy!", + "nextPhraseID": "arghest_return_4", + "requires": { + "item": { + "itemID": "milk", + "quantity": 5, + "requireType": 0 + } + } + }, + { + "text": "Yes, but this nearly cost me a fortune!", + "nextPhraseID": "arghest_return_4", + "requires": { + "item": { + "itemID": "milk", + "quantity": 5, + "requireType": 0 + } + } + } + ] + }, + { + "id": "arghest_return_3", + "message": "Ok then. Return to me once you have them.", + "replies": [ + { + "text": "Will do. Goodbye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "arghest_return_4", + "message": "Thank you my friend! Now I can restock my supply.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_innquest", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "arghest_return_5" + } + ] + }, + { + "id": "arghest_return_5", + "message": "These bottles look excellent. Now I can last a while longer in here.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arghest_return_6" + } + ] + }, + { + "id": "arghest_return_6", + "message": "Oh, and about the room in the inn - you are welcome to use it in any way you see fit. Quite a cozy place to rest if you ask me.", + "replies": [ + { + "text": "Thanks Arghest. Goodbye.", + "nextPhraseID": "X" + }, + { + "text": "Finally, I thought I would never be able to rest here!", + "nextPhraseID": "X" + } + ] + }, + { + "id": "arghest_8", + "message": "'Inn in Prim' - you sound funny.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arghest_9" + } + ] + }, + { + "id": "arghest_9", + "message": "Yes, I rent it. I stay there to rest when my shift ends.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arghest_10" + } + ] + }, + { + "id": "arghest_10", + "message": "However, now that we guards aren't as plentiful as we used to be, it has been a while since I could rest in there.", + "replies": [ + { + "text": "Mind if I use the room at the inn to rest in?", + "nextPhraseID": "arghest_11" + }, + { + "text": "Are you still going to use it?", + "nextPhraseID": "arghest_11" + } + ] + }, + { + "id": "arghest_11", + "message": "Well, I would like to still keep the option of using it. But I guess someone else could rest there now that I'm not actively using it.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_innquest", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "arghest_12" + } + ] + }, + { + "id": "arghest_12", + "message": "Tell you what, if you bring me some more supplies to keep me occupied here, I guess you could have my permission to use it even though I have rented it.", + "replies": [ + { + "text": "N", + "nextPhraseID": "arghest_13" + } + ] + }, + { + "id": "arghest_13", + "message": "I have plenty of meat here, but I ran out of milk some weeks ago. Do you think you could help me restock my milk supply?", + "replies": [ + { + "text": "Sure, no problem. I'll get you your bottles of milk. How much do you need?", + "nextPhraseID": "arghest_14" + }, + { + "text": "Sure, if it leads to me being able to rest here. I'm in.", + "nextPhraseID": "arghest_14" + } + ] + }, + { + "id": "arghest_14", + "message": "Bring me 5 bottles of milk. That should be enough.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_innquest", + "value": 30 + } + ], + "replies": [ + { + "text": "I'll go buy some.", + "nextPhraseID": "X" + }, + { + "text": "Ok. I'll be right back.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_prim_bjorgur.json b/AndorsTrail/res/raw/conversationlist_prim_bjorgur.json new file mode 100644 index 000000000..b327ab41b --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_prim_bjorgur.json @@ -0,0 +1,209 @@ +[ + { + "id": "bjorgur_start", + "replies": [ + { + "nextPhraseID": "bjorgur_return_1", + "requires": { + "progress": "bjorgur_grave:50" + } + }, + { + "nextPhraseID": "bjorgur_return_2", + "requires": { + "progress": "bjorgur_grave:15" + } + }, + { + "nextPhraseID": "bjorgur_1" + } + ] + }, + { + "id": "bjorgur_return_1", + "message": "Hello again, friend. Thank you for your assistance with my family grave earlier." + }, + { + "id": "bjorgur_return_2", + "message": "Hello again. Have you investigated if anything has happened to my family grave?", + "replies": [ + { + "text": "No, not yet.", + "nextPhraseID": "bjorgur_9" + }, + { + "text": "(Lie) I went to check on the grave. Everything seems to be normal. You must be imagining things.", + "nextPhraseID": "bjorgur_return_3", + "requires": { + "progress": "bjorgur_grave:60" + } + }, + { + "text": "What was I supposed to do again?", + "nextPhraseID": "bjorgur_3" + }, + { + "text": "Yes. I killed the intruder and restored the dagger to its original place.", + "nextPhraseID": "bjorgur_complete_1", + "requires": { + "progress": "bjorgur_grave:40" + } + } + ] + }, + { + "id": "bjorgur_1", + "message": "Hello there. You wouldn't happen to know anything about a grave to the southwest of Prim would you?", + "replies": [ + { + "text": "I have been there. I met someone on one of the lower levels.", + "nextPhraseID": "bjorgur_2", + "requires": { + "progress": "bjorgur_grave:30" + } + }, + { + "text": "What about it?", + "nextPhraseID": "bjorgur_3" + }, + { + "text": "No, sorry.", + "nextPhraseID": "bjorgur_3" + } + ] + }, + { + "id": "bjorgur_2", + "message": "You have been there?", + "replies": [ + { + "text": "N", + "nextPhraseID": "bjorgur_3" + } + ] + }, + { + "id": "bjorgur_3", + "message": "My family grave is located in the tomb to the southwest of Prim right outside the Elm mine. I fear that something has disturbed the peace there.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bjorgur_4" + } + ] + }, + { + "id": "bjorgur_4", + "message": "You see, my grandfather was very fond of a particular valuable dagger that our family used to possess. He wore it with him always.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bjorgur_5" + } + ] + }, + { + "id": "bjorgur_5", + "message": "The dagger would of course attract treasure hunters, but up until now we seem to have been spared of this.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bjorgur_6" + } + ] + }, + { + "id": "bjorgur_6", + "message": "Now I fear something has happened to the grave. I have not been sleeping well the last couple of nights, and I am sure this must be the cause.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bjorgur_grave", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "bjorgur_7" + } + ] + }, + { + "id": "bjorgur_7", + "message": "You wouldn't happen to want to go check on the grave and see what is happening over there?", + "replies": [ + { + "text": "Sure. I will go check on your parents grave.", + "nextPhraseID": "bjorgur_8" + }, + { + "text": "A treasure you say? I'm interested.", + "nextPhraseID": "bjorgur_8" + }, + { + "text": "I have actually already been there and restored the dagger to its original place.", + "nextPhraseID": "bjorgur_complete_2", + "requires": { + "progress": "bjorgur_grave:40" + } + } + ] + }, + { + "id": "bjorgur_8", + "message": "Thank you. Please see if anything has happened to the grave, and what could be the cause of my nightly anxiety.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bjorgur_grave", + "value": 15 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "bjorgur_9" + } + ] + }, + { + "id": "bjorgur_return_3", + "message": "Nothing you say? But I was sure something must have happened over there. Anyway. Thank you for checking it for me." + }, + { + "id": "bjorgur_9", + "message": "Please hurry, and return here to tell me of your progress once you find out something." + }, + { + "id": "bjorgur_complete_1", + "message": "An intruder? Oh thank you for dealing with this matter.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bjorgur_complete_2" + } + ] + }, + { + "id": "bjorgur_complete_2", + "message": "You say you restored the dagger to it's original place? Thank you. Now I might be able to rest during the nights ahead.", + "replies": [ + { + "text": "N", + "nextPhraseID": "bjorgur_complete_3" + } + ] + }, + { + "id": "bjorgur_complete_3", + "message": "Thank you again. I'm afraid I can't give you anything except my gratitude. You should go see my relatives in Feygard if you get the chance to travel up there.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bjorgur_grave", + "value": 50 + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_prim_fulus.json b/AndorsTrail/res/raw/conversationlist_prim_fulus.json new file mode 100644 index 000000000..caca00ad2 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_prim_fulus.json @@ -0,0 +1,296 @@ +[ + { + "id": "bjorgur_bandit", + "message": "Hey you! You shouldn't be here. This dagger is mine. Get out!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bjorgur_grave", + "value": 30 + } + ], + "replies": [ + { + "text": "Fine. I will leave.", + "nextPhraseID": "X" + }, + { + "text": "Hey, that's a nice looking dagger you have there.", + "nextPhraseID": "F" + } + ] + }, + { + "id": "sign_bwm35", + "replies": [ + { + "nextPhraseID": "sign_bwm35_1", + "requires": { + "progress": "bjorgur_grave:40" + } + }, + { + "nextPhraseID": "sign_bwm35_2" + } + ] + }, + { + "id": "sign_bwm35_1", + "message": "You see the remains of rusted equipment and rotten leather." + }, + { + "id": "sign_bwm35_2", + "message": "You see the remains of rusted equipment and rotten leather. Something seems to have been recently removed from here since one place completely lacks dust.\n\nThe lack of dust looks distinctly dagger-shaped. There must have been a dagger here earlier that someone removed.", + "replies": [ + { + "text": "Place the dagger back into its original place.", + "nextPhraseID": "sign_bwm35_3", + "requires": { + "item": { + "itemID": "bjorgur_dagger", + "quantity": 1, + "requireType": 0 + } + } + } + ] + }, + { + "id": "sign_bwm35_3", + "message": "You place the dagger back among the equipment, where it looks like it used to be.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bjorgur_grave", + "value": 40 + } + ] + }, + { + "id": "fulus_start", + "replies": [ + { + "nextPhraseID": "fulus_return_1", + "requires": { + "progress": "bjorgur_grave:60" + } + }, + { + "nextPhraseID": "fulus_return_3", + "requires": { + "progress": "bjorgur_grave:51" + } + }, + { + "nextPhraseID": "fulus_return_2", + "requires": { + "progress": "bjorgur_grave:20" + } + }, + { + "nextPhraseID": "fulus_1" + } + ] + }, + { + "id": "fulus_return_1", + "message": "Hello again, friend. Thank you for your assistance in obtaining that dagger earlier." + }, + { + "id": "fulus_return_2", + "message": "Hello again. Have you been able to retrieve that dagger from Bjorgur's family grave yet?", + "replies": [ + { + "text": "No, not yet.", + "nextPhraseID": "fulus_9" + }, + { + "text": "I decided to help Bjorgur instead.", + "nextPhraseID": "fulus_return_3", + "requires": { + "progress": "bjorgur_grave:40" + } + }, + { + "text": "What was I supposed to do again?", + "nextPhraseID": "fulus_3" + }, + { + "text": "Yes. Here it is.", + "nextPhraseID": "fulus_complete_1", + "requires": { + "item": { + "itemID": "bjorgur_dagger", + "quantity": 1, + "requireType": 0 + } + } + } + ] + }, + { + "id": "fulus_return_3", + "message": "What?! Sigh. Stupid kid. That dagger is worth a fortune. We could have been rich! Rich I tell you!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bjorgur_grave", + "value": 51 + } + ] + }, + { + "id": "fulus_1", + "message": "Hello there. You seem like just the type of person I am looking for.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fulus_2" + } + ] + }, + { + "id": "fulus_complete_1", + "message": "Oh wow, you actually managed to get the dagger? Thank you kid. This is worth a lot. Here, take these coins as compensation for your efforts!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bjorgur_grave", + "value": 60 + }, + { + "rewardType": 1, + "rewardID": "fulus_reward" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "fulus_complete_2" + } + ] + }, + { + "id": "fulus_complete_2", + "message": "Thank you again. Now, let's see.. how much should we sell this dagger for.." + }, + { + "id": "fulus_2", + "message": "Would you be interested in hearing about a business proposal I have?", + "replies": [ + { + "text": "Sure. What is the proposal?", + "nextPhraseID": "fulus_3" + }, + { + "text": "If it leads to something for me to gain, then sure.", + "nextPhraseID": "fulus_3" + }, + { + "text": "I couldn't possibly think you would have anything worthwhile to offer me, but let's hear it anyways.", + "nextPhraseID": "fulus_3" + } + ] + }, + { + "id": "fulus_3", + "message": "For some time, I have known about a certain valuable dagger that a certain family used to possess here in Prim.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fulus_4" + } + ] + }, + { + "id": "fulus_9", + "message": "Now hurry up. I really need that dagger soon." + }, + { + "id": "fulus_4", + "message": "This dagger is extremely valuable to me, for personal reasons.", + "replies": [ + { + "text": "I don't like where this is going. I better not get involved in your shady business.", + "nextPhraseID": "fulus_5" + }, + { + "text": "I like where this is going, please continue.", + "nextPhraseID": "fulus_6" + }, + { + "text": "Tell me more.", + "nextPhraseID": "fulus_6" + }, + { + "text": "I have already helped Bjorgur return the dagger to its original place.", + "nextPhraseID": "fulus_return_3", + "requires": { + "progress": "bjorgur_grave:40" + } + } + ] + }, + { + "id": "fulus_5", + "message": "Fine. Suit yourself, you goody two-shoes." + }, + { + "id": "fulus_6", + "message": "The family in question is Bjorgur's family.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fulus_7" + } + ] + }, + { + "id": "fulus_7", + "message": "Now, I happen to know that this particular dagger can be found in their family tomb that has been opened by other .. people .. recently.", + "replies": [ + { + "text": "N", + "nextPhraseID": "fulus_8" + } + ] + }, + { + "id": "fulus_8", + "message": "What I want is simple. You go get that dagger and bring it to me, and I will reward you handsomely.", + "replies": [ + { + "text": "Sounds easy enough. I'll do it.", + "nextPhraseID": "fulus_10" + }, + { + "text": "No, I had better not get involved in your shady business.", + "nextPhraseID": "fulus_5" + }, + { + "text": "I have already helped Bjorgur return the dagger to its original place.", + "nextPhraseID": "fulus_return_3", + "requires": { + "progress": "bjorgur_grave:40" + } + } + ] + }, + { + "id": "fulus_10", + "message": "Good. Return to me once you have it. Maybe you can talk to Bjorgur about directions to the tomb. His house is just outside here in Prim. Just don't mention anything about our plan to him!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bjorgur_grave", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "fulus_9" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_prim_guthbered.json b/AndorsTrail/res/raw/conversationlist_prim_guthbered.json new file mode 100644 index 000000000..6193bed7e --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_prim_guthbered.json @@ -0,0 +1,1150 @@ +[ + { + "id": "guthbered_start", + "replies": [ + { + "nextPhraseID": "guthbered_sentbybwm_leave", + "requires": { + "progress": "bwm_agent:131" + } + }, + { + "nextPhraseID": "guthbered_sentbybwm_fight", + "requires": { + "progress": "bwm_agent:130" + } + }, + { + "nextPhraseID": "guthbered_sentbybwm_1", + "requires": { + "progress": "bwm_agent:120" + } + }, + { + "nextPhraseID": "guthbered_reject", + "requires": { + "progress": "prim_hunt:251" + } + }, + { + "nextPhraseID": "guthbered_reject", + "requires": { + "progress": "prim_hunt:250" + } + }, + { + "nextPhraseID": "guthbered_completed", + "requires": { + "progress": "prim_hunt:100" + } + }, + { + "nextPhraseID": "guthbered_killharl_2", + "requires": { + "progress": "prim_hunt:99" + } + }, + { + "nextPhraseID": "guthbered_workingforbwm_2", + "requires": { + "progress": "bwm_agent:95" + } + }, + { + "nextPhraseID": "guthbered_killharl_1", + "requires": { + "progress": "prim_hunt:80" + } + }, + { + "nextPhraseID": "guthbered_lookforsigns_1", + "requires": { + "progress": "prim_hunt:50" + } + }, + { + "nextPhraseID": "guthbered_return_1_1", + "requires": { + "progress": "prim_hunt:25" + } + }, + { + "nextPhraseID": "guthbered_1" + } + ] + }, + { + "id": "guthbered_reject", + "message": "You again? Leave this place and go to your friends up in the Blackwater Mountain settlement instead. We want no business with you.", + "replies": [ + { + "text": "I am here to give you a message from the Blackwater Mountain settlement.", + "nextPhraseID": "guthbered_attacks", + "requires": { + "progress": "bwm_agent:70" + } + } + ] + }, + { + "id": "guthbered_attacks", + "message": "What message?", + "replies": [ + { + "text": "Harlenn in the Blackwater Mountain settlement wants you to stop your attacks on their settlement.", + "nextPhraseID": "guthbered_attacks_1" + } + ] + }, + { + "id": "guthbered_attacks_1", + "message": "That's completely insane. We!? Stop OUR attacks?! You tell him that we have nothing to do with what happens up there. They have brought their own misfortune upon themselves.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 80 + } + ] + }, + { + "id": "guthbered_return_1_1", + "message": "Welcome back, traveller. Did you talk to Harlenn up in the Blackwater Mountain settlement?", + "replies": [ + { + "text": "Can you tell me the story about the monsters again?", + "nextPhraseID": "guthbered_13" + }, + { + "text": "What was I supposed to do again?", + "nextPhraseID": "guthbered_29" + }, + { + "text": "Can you tell me the story about Prim again?", + "nextPhraseID": "guthbered_2" + }, + { + "text": "Yes, but Harlenn denies that they have anything to do with the attacks.", + "nextPhraseID": "guthbered_talkedto_harl_1", + "requires": { + "progress": "prim_hunt:30" + } + }, + { + "text": "Actually, I am here to give you a message from the Blackwater Mountain settlement.", + "nextPhraseID": "guthbered_attacks", + "requires": { + "progress": "bwm_agent:70" + } + } + ] + }, + { + "id": "guthbered_1", + "message": "Welcome to Prim, traveller.", + "replies": [ + { + "text": "What can you tell me about Prim?", + "nextPhraseID": "guthbered_2" + }, + { + "text": "Who are you?", + "nextPhraseID": "guthbered_who_1" + }, + { + "text": "I was told to see you about helping against the monster attacks.", + "nextPhraseID": "guthbered_20", + "requires": { + "progress": "prim_hunt:11" + } + }, + { + "text": "Actually, I am here to give you a message from the Blackwater Mountain settlement.", + "nextPhraseID": "guthbered_attacks", + "requires": { + "progress": "bwm_agent:70" + } + } + ] + }, + { + "id": "guthbered_2", + "message": "Prim began as a simple camp for the miners that worked in the mines around here. Later it grew to a settlement, and a few years back we even got a tavern and an inn here.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_3" + } + ] + }, + { + "id": "guthbered_3", + "message": "This place used to be full of life when the miners worked here.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_4" + } + ] + }, + { + "id": "guthbered_4", + "message": "The miners also attracted a lot of traders that used to come through here.", + "replies": [ + { + "text": "'used to'?", + "nextPhraseID": "guthbered_5" + }, + { + "text": "What happened then?", + "nextPhraseID": "guthbered_5" + } + ] + }, + { + "id": "guthbered_5", + "message": "Just until recently, we could at least get some contact with the outside villages. Nowadays, that hope is lost.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_6" + } + ] + }, + { + "id": "guthbered_6", + "message": "You see, the mine tunnel to the south is collapsed, and no one can get in or out of Prim.", + "replies": [ + { + "text": "I know, I just came from there.", + "nextPhraseID": "guthbered_7" + }, + { + "text": "Tough luck.", + "nextPhraseID": "guthbered_10" + }, + { + "text": "What made it collapse?", + "nextPhraseID": "guthbered_11" + } + ] + }, + { + "id": "guthbered_7", + "message": "You did? Oh. Well, yes of course you must have since you are not from Prim. So there's a way through it after all huh?", + "replies": [ + { + "text": "Yes, but I had to go through the old pitch-black mine.", + "nextPhraseID": "guthbered_8" + }, + { + "text": "Yes, the passage in the mine below is safe.", + "nextPhraseID": "guthbered_8" + }, + { + "text": "No, just kidding. I scaled over the mountain ridge to get here.", + "nextPhraseID": "guthbered_8" + } + ] + }, + { + "id": "guthbered_8", + "message": "Ok. We will have to investigate that later.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_9" + } + ] + }, + { + "id": "guthbered_9", + "message": "Anyway, as I was saying..", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_10" + } + ] + }, + { + "id": "guthbered_10", + "message": "The collapsed mine tunnel makes it hard for any traders to reach Prim. Our resources are really starting to dwindle.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_12" + } + ] + }, + { + "id": "guthbered_11", + "message": "We are not sure. But we have our suspicions.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_10" + } + ] + }, + { + "id": "guthbered_12", + "message": "On top of that, there are the attacks from the monsters that we have to deal with.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 11 + } + ], + "replies": [ + { + "text": "Yes, I noticed some monsters outside the village.", + "nextPhraseID": "guthbered_13" + }, + { + "text": "What monsters?", + "nextPhraseID": "guthbered_13" + } + ] + }, + { + "id": "guthbered_who_1", + "message": "I am Guthbered, protector of this village.", + "replies": [ + { + "text": "What can you tell me about Prim?", + "nextPhraseID": "guthbered_2" + }, + { + "text": "I was told to see you about helping against the monster attacks.", + "nextPhraseID": "guthbered_20", + "requires": { + "progress": "prim_hunt:11" + } + } + ] + }, + { + "id": "guthbered_13", + "message": "A while ago, we started seeing the first of the monsters. At first, they were no problem for us to handle. Our guards could cut them down easily.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_14" + } + ] + }, + { + "id": "guthbered_14", + "message": "But after a while, some of our guards got hurt, and the monsters started increasing in numbers.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_15" + } + ] + }, + { + "id": "guthbered_15", + "message": "Also, the monsters almost seemed like they were getting smarter. Their attacks were getting more and more coordinated.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_16" + } + ] + }, + { + "id": "guthbered_16", + "message": "Now, we can hardly hold them back. They mostly come at night.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_17" + } + ] + }, + { + "id": "guthbered_17", + "message": "According to lore, the monsters are called the 'Gornauds'.", + "replies": [ + { + "text": "Any ideas where they might be coming from?", + "nextPhraseID": "guthbered_18" + } + ] + }, + { + "id": "guthbered_18", + "message": "Oh yes, we are almost certain.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_19" + } + ] + }, + { + "id": "guthbered_19", + "message": "Those evil bastards up in the Blackwater Mountain settlement probably summoned them to attack us. They would rather see us perish.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_22" + } + ] + }, + { + "id": "guthbered_20", + "message": "Oh good. Did you talk to Tonis? Yes, I'm sure you met him on your way into town.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_21" + } + ] + }, + { + "id": "guthbered_21", + "message": "Good. Let me tell you the back-story about Prim first.", + "replies": [ + { + "text": "Sure.", + "nextPhraseID": "guthbered_2" + }, + { + "text": "I'd rather skip to the end directly.", + "nextPhraseID": "guthbered_13" + } + ] + }, + { + "id": "guthbered_22", + "message": "We used to trade with them up there, but that all changed once they got greedy.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 25 + } + ], + "replies": [ + { + "text": "I met a man outside the collapsed mine saying he was from the Blackwater Mountain settlement.", + "nextPhraseID": "guthbered_26" + }, + { + "text": "Do you need any help in dealing with those monsters?", + "nextPhraseID": "guthbered_23" + }, + { + "text": "I would be glad to help you with the monsters.", + "nextPhraseID": "guthbered_24" + } + ] + }, + { + "id": "guthbered_23", + "message": "Oh boy, do we? Yes please, you are welcome to help.", + "replies": [ + { + "text": "I would be glad to help you with the monsters.", + "nextPhraseID": "guthbered_24" + } + ] + }, + { + "id": "guthbered_24", + "message": "Do you really think you have what it takes to help us?", + "replies": [ + { + "text": "I have left a bloody trail of monsters behind me.", + "nextPhraseID": "guthbered_25" + }, + { + "text": "Sure, I can handle it.", + "nextPhraseID": "guthbered_25" + }, + { + "text": "If the monsters are anything like those around where I entered the mine, it will be a tough fight. But I can manage it.", + "nextPhraseID": "guthbered_25" + } + ] + }, + { + "id": "guthbered_25", + "message": "Great. I think we should go straight to the source with the problem.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_29" + } + ] + }, + { + "id": "guthbered_26", + "message": "A man, from the Blackwater settlement, you say?", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_27" + } + ] + }, + { + "id": "guthbered_27", + "message": "Did he say anything about us here in Prim?", + "replies": [ + { + "text": "No. But he insisted that I go straight east when exiting the mine, thus not reaching Prim.", + "nextPhraseID": "guthbered_28" + } + ] + }, + { + "id": "guthbered_28", + "message": "That figures. They send out their spies even now.", + "replies": [ + { + "text": "Do you need any help in dealing with those monsters?", + "nextPhraseID": "guthbered_23" + } + ] + }, + { + "id": "guthbered_29", + "message": "As I said, we believe those bastards up at the Blackwater Mountain settlement are behind the monster attacks somehow.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_30" + } + ] + }, + { + "id": "guthbered_30", + "message": "I want you to go up there to their settlement and ask their battle master, Harlenn, why they are doing this to us.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 25 + } + ], + "replies": [ + { + "text": "Ok, I will go ask Harlenn in the Blackwater Mountain settlement why they are attacking your village.", + "nextPhraseID": "guthbered_31" + } + ] + }, + { + "id": "guthbered_31", + "message": "Thank you friend.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 25 + } + ] + }, + { + "id": "guthbered_talkedto_harl_1", + "message": "What did I expect? Of course he would say that. He probably even denies it to himself. Meanwhile, we here in Prim suffer from their savage raids.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_talkedto_harl_2" + } + ] + }, + { + "id": "guthbered_talkedto_harl_2", + "message": "I am sure they are behind these attacks. However, I do not have sufficient evidence to back up my statements in order to do anything about it.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_talkedto_harl_3" + } + ] + }, + { + "id": "guthbered_talkedto_harl_3", + "message": "But I am sure they are! As false as they are, they must be. Always lying and deceiving. Causing destruction and turmoil.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_talkedto_harl_4" + } + ] + }, + { + "id": "guthbered_talkedto_harl_4", + "message": "Just listen to the name they have chosen for themselves: 'Blackwater'. The tone of it sounds like trouble.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_talkedto_harl_5" + } + ] + }, + { + "id": "guthbered_talkedto_harl_5", + "message": "Anyway. I would like to get some further evidence on what they are up to. Maybe something you can help us with.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_talkedto_harl_6" + } + ] + }, + { + "id": "guthbered_talkedto_harl_6", + "message": "But I need to be sure that I can trust you. If you are working for them, you had better tell me now before things get .. messy.", + "replies": [ + { + "text": "Sure, you can trust me. I will help the people of Prim.", + "nextPhraseID": "guthbered_talkedto_harl_8" + }, + { + "text": "Hm, maybe I should help the people up in Blackwater Mountain instead.", + "nextPhraseID": "guthbered_workingforbwm_1" + }, + { + "text": "(Lie) You can trust me.", + "nextPhraseID": "guthbered_talkedto_harl_7", + "requires": { + "progress": "bwm_agent:70" + } + } + ] + }, + { + "id": "guthbered_talkedto_harl_7", + "message": "Yet somehow I do not trust you.", + "replies": [ + { + "text": "I was working for them, but I have decided to help you instead.", + "nextPhraseID": "guthbered_talkedto_harl_8" + }, + { + "text": "Why would I ever want to work for your filthy village? The people in the Blackwater Mountain settlement deserve my help more than you.", + "nextPhraseID": "guthbered_workingforbwm_1" + } + ] + }, + { + "id": "guthbered_talkedto_harl_8", + "message": "Good. I'm glad you want to help us.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_talkedto_harl_9" + } + ] + }, + { + "id": "guthbered_workingforbwm_1", + "message": "Fine. You should leave now while you still can, traitor.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 250 + } + ] + }, + { + "id": "guthbered_talkedto_harl_9", + "message": "I want you to go up there into their settlement and find any clues as to what they are planning.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_talkedto_harl_10" + } + ] + }, + { + "id": "guthbered_talkedto_harl_10", + "message": "We believe they are training their fighters to launch a larger raid on us soon.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_talkedto_harl_11" + } + ] + }, + { + "id": "guthbered_talkedto_harl_11", + "message": "Go look for any plans that you might find. But make sure that they do not see you while you're looking around.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_talkedto_harl_12" + } + ] + }, + { + "id": "guthbered_talkedto_harl_12", + "message": "You should probably start your search around where their battle master, Harlenn, stays.", + "replies": [ + { + "text": "Ok. I will look for clues in their settlement.", + "nextPhraseID": "guthbered_talkedto_harl_13" + } + ] + }, + { + "id": "guthbered_talkedto_harl_13", + "message": "Thank you, friend. Report back to me with your findings.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 50 + } + ] + }, + { + "id": "guthbered_lookforsigns_1", + "message": "Hello again. Did you find anything up in the Blackwater Mountain settlement?", + "replies": [ + { + "text": "No, I am still looking.", + "nextPhraseID": "guthbered_talkedto_harl_13" + }, + { + "text": "What was I supposed to do again?", + "nextPhraseID": "guthbered_talkedto_harl_9" + }, + { + "text": "Yes, I found some papers with a plan to attack Prim.", + "nextPhraseID": "guthbered_lookforsigns_2", + "requires": { + "progress": "prim_hunt:60" + } + } + ] + }, + { + "id": "guthbered_lookforsigns_2", + "message": "Then it is as we suspected. This is terrible news indeed.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_lookforsigns_3" + } + ] + }, + { + "id": "guthbered_lookforsigns_3", + "message": "Now you know what I was talking about. They are always looking to cause trouble.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_lookforsigns_4" + } + ] + }, + { + "id": "guthbered_lookforsigns_4", + "message": "Thank you for finding this information for us.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 70 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_lookforsigns_5" + } + ] + }, + { + "id": "guthbered_lookforsigns_5", + "message": "Very well. We will have to deal with this.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_lookforsigns_6" + } + ] + }, + { + "id": "guthbered_lookforsigns_6", + "message": "I had hoped it would not come to this. But we are left with no choice. We must remove their main driving force behind the raids. We must remove their battle master, Harlenn.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_lookforsigns_7" + } + ] + }, + { + "id": "guthbered_lookforsigns_7", + "message": "This would be an excellent task for you my friend. Since you have access to their facilities, you can sneak in and kill that bastard Harlenn.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_lookforsigns_8" + } + ] + }, + { + "id": "guthbered_lookforsigns_8", + "message": "By killing him, we can be sure that their attacks will .. shall we say .. lose their teeth. He he.", + "replies": [ + { + "text": "No problem, he is as good as dead.", + "nextPhraseID": "guthbered_lookforsigns_9" + }, + { + "text": "Are you sure more violence will really solve this conflict?", + "nextPhraseID": "guthbered_lookforsigns_10" + } + ] + }, + { + "id": "guthbered_lookforsigns_9", + "message": "Excellent. Return to me once you are done.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 80 + } + ] + }, + { + "id": "guthbered_lookforsigns_10", + "message": "No, not really. But for now, it looks like the only option we have.", + "replies": [ + { + "text": "I will remove him, but I will try to find a peaceful solution to this.", + "nextPhraseID": "guthbered_lookforsigns_9" + }, + { + "text": "Very well. He is as good as dead.", + "nextPhraseID": "guthbered_lookforsigns_9" + } + ] + }, + { + "id": "guthbered_workingforbwm_2", + "message": "My sources from inside the Blackwater Mountain settlement tell me you are working for them.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_workingforbwm_3" + } + ] + }, + { + "id": "guthbered_workingforbwm_3", + "message": "It is, of course, your choice. But if you are working for them, you are not welcome here in Prim. You should leave quickly, while you still can.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 251 + } + ] + }, + { + "id": "guthbered_completed", + "message": "Hello again my friend. Thank you for your help in dealing with the bandits up in Blackwater Mountain.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_completed_1" + } + ] + }, + { + "id": "guthbered_completed_1", + "message": "I am sure everyone here in Prim will want to talk to you now.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 240 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_completed_2" + } + ] + }, + { + "id": "guthbered_completed_2", + "message": "Thank you again for your help.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 250 + } + ] + }, + { + "id": "guthbered_sentbybwm_1", + "message": "The glow in your eyes frightens me.", + "replies": [ + { + "text": "I am sent by the Blackwater Mountain settlement to stop you.", + "nextPhraseID": "guthbered_sentbybwm_fight" + }, + { + "text": "I am sent by the Blackwater Mountain settlement to stop you. However, I have decided not to kill you.", + "nextPhraseID": "guthbered_sentbybwm_3" + } + ] + }, + { + "id": "guthbered_sentbybwm_fight", + "message": "I had hoped it would not come to this. You will not survive this encounter I am afraid. Yet another life on my hands.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 130 + } + ], + "replies": [ + { + "text": "For the Shadow!", + "nextPhraseID": "F" + }, + { + "text": "Brave words, let's see if you can back them up with anything.", + "nextPhraseID": "F" + }, + { + "text": "Great, I have been longing to kill you.", + "nextPhraseID": "F" + }, + { + "text": "Let's fight!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "guthbered_sentbybwm_3", + "message": "How interesting... Please continue.", + "replies": [ + { + "text": "It's obvious that this conflict will only end in more bloodshed. That should stop here.", + "nextPhraseID": "guthbered_sentbybwm_4" + } + ] + }, + { + "id": "guthbered_sentbybwm_4", + "message": "What are you proposing?", + "replies": [ + { + "text": "My proposal is that you leave this village and find a new home somewhere else.", + "nextPhraseID": "guthbered_sentbybwm_5" + } + ] + }, + { + "id": "guthbered_sentbybwm_5", + "message": "Now why would I want to do that?", + "replies": [ + { + "text": "These two towns will always fight each other. By you leaving, they will think they have won, and stop their attacks.", + "nextPhraseID": "guthbered_sentbybwm_6" + } + ] + }, + { + "id": "guthbered_sentbybwm_6", + "message": "Hm, you might have a point there.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_sentbybwm_7" + } + ] + }, + { + "id": "guthbered_sentbybwm_7", + "message": "Ok, you have convinced me. I will leave Prim for another town. The survival of my people here is more important than me.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_sentbybwm_leave" + } + ] + }, + { + "id": "guthbered_sentbybwm_leave", + "message": "Thank you friend, for talking some sense into me.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "bwm_agent", + "value": 131 + } + ], + "replies": [ + { + "text": "You are welcome.", + "nextPhraseID": "R" + } + ] + }, + { + "id": "guthbered_killharl_1", + "message": "Hello again. Did you manage to remove that bastard battle master Harlenn from the Blackwater Mountain settlement?", + "replies": [ + { + "text": "Can you tell me again what I was supposed to do?", + "nextPhraseID": "guthbered_lookforsigns_6" + }, + { + "text": "Not yet. I am still working on it.", + "nextPhraseID": "guthbered_lookforsigns_9" + }, + { + "text": "Yes, he is dead.", + "nextPhraseID": "guthbered_killharl_2", + "requires": { + "item": { + "itemID": "harlenn_id", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Yes, he is gone.", + "nextPhraseID": "guthbered_killharl_3", + "requires": { + "progress": "prim_hunt:91" + } + } + ] + }, + { + "id": "guthbered_killharl_2", + "message": "While I am grateful for this news in knowing that he is dead, I am also saddened that it had to come to this.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 99 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_killharl_4" + } + ] + }, + { + "id": "guthbered_killharl_3", + "message": "Really? This is great news indeed.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_killharl_4" + } + ] + }, + { + "id": "guthbered_killharl_4", + "message": "This will hopefully mean that their attacks on our village will cease.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_killharl_5" + } + ] + }, + { + "id": "guthbered_killharl_5", + "message": "I do not know how to thank you enough my friend.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_killharl_6" + } + ] + }, + { + "id": "guthbered_killharl_6", + "message": "Here, please accept these few items as some form of compensation for your help. Also, take this piece of paper that we have acquired.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 100 + }, + { + "rewardType": 1, + "rewardID": "guthbered_reward" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_killharl_7" + } + ] + }, + { + "id": "guthbered_killharl_7", + "message": "This is a permit that we have .. produced .. , that according to our sources, will allow you to enter their inner chamber in the Blackwater Mountain settlement.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_killharl_8" + } + ] + }, + { + "id": "guthbered_killharl_8", + "message": "Now, the permit is not .. shall we say .. completely genuine. But we are certain that the guards won't notice any difference.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_killharl_9" + } + ] + }, + { + "id": "guthbered_killharl_9", + "message": "Anyway, you have my greatest thanks for the assistance that you have provided for us.", + "replies": [ + { + "text": "N", + "nextPhraseID": "guthbered_completed_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_prim_inn.json b/AndorsTrail/res/raw/conversationlist_prim_inn.json new file mode 100644 index 000000000..4b6c17a1c --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_prim_inn.json @@ -0,0 +1,353 @@ +[ + { + "id": "bwm_primsleep", + "message": "You are not allowed to enter here." + }, + { + "id": "laecca_1", + "message": "Hello. I am Laecca, mountain guide.", + "replies": [ + { + "text": "What do you do around here?", + "nextPhraseID": "laecca_2" + }, + { + "text": "'Mountain guide', what does that mean?", + "nextPhraseID": "laecca_2" + } + ] + }, + { + "id": "laecca_2", + "message": "I keep an eye on the mountain pass, to make sure no more of those beasts make their way down here.", + "replies": [ + { + "text": "Then what are you doing indoors here? Shouldn't you be outside guarding then?", + "nextPhraseID": "laecca_4" + }, + { + "text": "Sounds like a noble cause.", + "nextPhraseID": "laecca_3" + }, + { + "text": "What beasts are you talking about?", + "nextPhraseID": "laecca_9" + } + ] + }, + { + "id": "laecca_3", + "message": "Yeah, sure. It may sound that way. In reality, it's a lot of hard work.", + "replies": [ + { + "text": "N", + "nextPhraseID": "laecca_5" + } + ] + }, + { + "id": "laecca_4", + "message": "Very funny. I have to rest too you know. Keeping the monsters away is hard work.", + "replies": [ + { + "text": "N", + "nextPhraseID": "laecca_5" + } + ] + }, + { + "id": "laecca_5", + "message": "There used to be more of us mountain guides, but not many have survived the attack of the beasts.", + "replies": [ + { + "text": "Sounds like you aren't really cut out to do your job properly.", + "nextPhraseID": "laecca_6" + }, + { + "text": "I'm sorry to hear that.", + "nextPhraseID": "laecca_8" + }, + { + "text": "What beasts are you talking about?", + "nextPhraseID": "laecca_9" + } + ] + }, + { + "id": "laecca_6", + "message": "Perhaps.", + "replies": [ + { + "text": "N", + "nextPhraseID": "laecca_7" + } + ] + }, + { + "id": "laecca_7", + "message": "Anyway. I have some things to tend to. Nice talking to you.", + "replies": [ + { + "text": "Goodbye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "laecca_8", + "message": "Thank you for your concern.", + "replies": [ + { + "text": "Is there anything I can do to help?", + "nextPhraseID": "laecca_13" + } + ] + }, + { + "id": "laecca_9", + "message": "Pfft, 'What beasts?'. The Gornaud beasts of course.", + "replies": [ + { + "text": "N", + "nextPhraseID": "laecca_10" + } + ] + }, + { + "id": "laecca_10", + "message": "Scratching their claws against the bare rock at night. *shrug*", + "replies": [ + { + "text": "N", + "nextPhraseID": "laecca_11" + } + ] + }, + { + "id": "laecca_11", + "message": "At first, I thought they were acting on pure instinct. But recently, I have started to believe they are smarter than regular beasts.", + "replies": [ + { + "text": "N", + "nextPhraseID": "laecca_12" + } + ] + }, + { + "id": "laecca_12", + "message": "Their attacks are getting more and more clever.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 11 + } + ], + "replies": [ + { + "text": "Is there anything I can do to help?", + "nextPhraseID": "laecca_13" + } + ] + }, + { + "id": "laecca_13", + "message": "You should talk to Guthbered. He is usually in the main hall. Look for a stone house in the center of the village.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 15 + } + ] + }, + { + "id": "prim_cook_start", + "replies": [ + { + "nextPhraseID": "prim_cook_return_1", + "requires": { + "progress": "prim_innquest:50" + } + }, + { + "nextPhraseID": "prim_cook_return_2", + "requires": { + "progress": "prim_innquest:10" + } + }, + { + "nextPhraseID": "prim_cook_1" + } + ] + }, + { + "id": "prim_cook_1", + "message": "Can I help you?", + "replies": [ + { + "text": "What food do you have available for trade?", + "nextPhraseID": "prim_cook_2" + }, + { + "text": "Is the back room available for rent?", + "nextPhraseID": "prim_cook_3" + } + ] + }, + { + "id": "prim_cook_2", + "message": "Food? No, sorry. I don't have anything to trade.", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_cook_1" + } + ] + }, + { + "id": "prim_cook_3", + "message": "Rent? Hm. No, not at the moment.", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_cook_41" + } + ] + }, + { + "id": "prim_cook_5", + "message": "Now that you mention it, he hasn't been around here for quite some time. Maybe you could go talk to him and see if he still wants to rent it?", + "replies": [ + { + "text": "Ok, I will go talk to him.", + "nextPhraseID": "prim_cook_7" + }, + { + "text": "Sure. Any idea where he might be?", + "nextPhraseID": "prim_cook_6" + } + ] + }, + { + "id": "prim_cook_41", + "message": "It is still rented out to Arghest. He would not be very happy if I rented it out to someone else when he expects to use it.", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_cook_5" + } + ] + }, + { + "id": "prim_cook_6", + "message": "I don't know where he is now, but I do know that he used to be part of the mining effort in our mine to the southwest.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_innquest", + "value": 10 + } + ], + "replies": [ + { + "text": "Thanks. I will go look for him.", + "nextPhraseID": "X" + }, + { + "text": "I will go look for him right away.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "prim_cook_7", + "message": "Thanks.", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_cook_6" + } + ] + }, + { + "id": "prim_cook_return_1", + "message": "Thank you for your help earlier. I hope the back room is comfortable enough.", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_cook_return_7" + } + ] + }, + { + "id": "prim_cook_return_2", + "message": "Did you talk to Arghest?", + "replies": [ + { + "text": "No, not yet.", + "nextPhraseID": "prim_cook_return_3" + }, + { + "text": "(Lie) Yes, he told me that I could rest in the back room if I want to.", + "nextPhraseID": "prim_cook_return_4" + }, + { + "text": "Yes, he gave me permission to use the back room whenever I wish.", + "nextPhraseID": "prim_cook_return_6", + "requires": { + "progress": "prim_innquest:40" + } + } + ] + }, + { + "id": "prim_cook_return_3", + "message": "Return to me once you know if he is still interested in renting the back room or not.", + "replies": [ + { + "text": "Any idea where he might be?", + "nextPhraseID": "prim_cook_6" + } + ] + }, + { + "id": "prim_cook_return_4", + "message": "Did he really say that? Somehow I doubt that. It doesn't sound like him.", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_cook_return_5" + } + ] + }, + { + "id": "prim_cook_return_5", + "message": "You will have to do something more to convince me." + }, + { + "id": "prim_cook_return_6", + "message": "Really, he did? Well then, go ahead. I'm just glad the back room is being used.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_innquest", + "value": 50 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_cook_return_7" + } + ] + }, + { + "id": "prim_cook_return_7", + "message": "You are welcome to rest in the back room any time you want. Please let me know if there is anything I can do to help." + }, + { + "id": "prim_innguest", + "message": "Lovely place this, isn't it?" + } +] diff --git a/AndorsTrail/res/raw/conversationlist_prim_merchants.json b/AndorsTrail/res/raw/conversationlist_prim_merchants.json new file mode 100644 index 000000000..e3f285473 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_prim_merchants.json @@ -0,0 +1,156 @@ +[ + { + "id": "prim_armorer", + "replies": [ + { + "nextPhraseID": "prim_armorer_1", + "requires": { + "progress": "prim_hunt:240" + } + }, + { + "nextPhraseID": "prim_armorer_2" + } + ] + }, + { + "id": "prim_armorer_1", + "message": "Welcome friend! Would you like to see what equipment I have available?", + "replies": [ + { + "text": "Sure. Show me what you have.", + "nextPhraseID": "prim_armorer_3" + } + ] + }, + { + "id": "prim_armorer_2", + "message": "Welcome traveller. Have you come to ask for help from me and the equipment I sell?", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_notrust" + } + ] + }, + { + "id": "prim_armorer_3", + "message": "I must tell you that my supply is not what it used to be, now that the southern mine entrance has collapsed. Far fewer traders come here to Prim now.", + "replies": [ + { + "text": "Ok, let me see your wares.", + "nextPhraseID": "S" + } + ] + }, + { + "id": "prim_notrust", + "message": "Regardless, I cannot help you. My services are only for residents of Prim, and I don't trust you enough yet. You might be a spy from the Blackwater Mountain settlement." + }, + { + "id": "prim_tailor", + "message": "Welcome traveller, what can I do for you?", + "replies": [ + { + "text": "Let me see what you have available to sell.", + "nextPhraseID": "prim_tailor_1" + } + ] + }, + { + "id": "prim_tailor_1", + "message": "Sell? I'm sorry, my supply is all out. Now that the traders do not come here anymore, I don't get my regular shipments. So at the moment, I have nothing to trade with you unfortunately." + }, + { + "id": "guthbered_guard", + "replies": [ + { + "nextPhraseID": "guthbered_guard_2", + "requires": { + "progress": "bwm_agent:130" + } + }, + { + "nextPhraseID": "guthbered_guard_1" + } + ] + }, + { + "id": "guthbered_guard_1", + "message": "Talk to the boss instead." + }, + { + "id": "guthbered_guard_2", + "message": "Please don't hurt me! I'm only doing my job here." + }, + { + "id": "prim_guard1", + "message": "What are you looking at? These weapons in the crates over here are only for us guards." + }, + { + "id": "prim_guard2", + "message": "(The guard looks down on you with a condescending look)" + }, + { + "id": "prim_guard3", + "message": "Oh, I am so tired. When will we ever get to rest?" + }, + { + "id": "prim_guard4", + "message": "Can't talk now. I'm on guard duty. If you need help, talk to someone else over there instead." + }, + { + "id": "prim_treasury_guard", + "message": "See these bars? They will hold for almost anything." + }, + { + "id": "prim_acolyte", + "message": "When my training is complete, I will be one of the greatest healers around!" + }, + { + "id": "prim_pupil1", + "message": "Can't you see I'm trying to read over here? Talk to me in a while and I might be interested." + }, + { + "id": "prim_pupil2", + "message": "Can't talk now, I have work to do." + }, + { + "id": "prim_pupil3", + "message": "Are you the one I heard about? No, you can't be. I imagined someone taller." + }, + { + "id": "prim_priest", + "replies": [ + { + "nextPhraseID": "prim_priest_1", + "requires": { + "progress": "prim_hunt:240" + } + }, + { + "nextPhraseID": "prim_priest_2" + } + ] + }, + { + "id": "prim_priest_1", + "message": "Welcome friend! Would you like to browse my selection of fine potions and ointments?", + "replies": [ + { + "text": "Sure. Show me what you have.", + "nextPhraseID": "S" + } + ] + }, + { + "id": "prim_priest_2", + "message": "Welcome traveller. Have you come to ask for help from me and my potions?", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_notrust" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_prim_outside.json b/AndorsTrail/res/raw/conversationlist_prim_outside.json new file mode 100644 index 000000000..50aa62a9b --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_prim_outside.json @@ -0,0 +1,355 @@ +[ + { + "id": "tonis_start", + "replies": [ + { + "nextPhraseID": "tonis_return_1", + "requires": { + "progress": "prim_hunt:10" + } + }, + { + "nextPhraseID": "tonis_1" + } + ] + }, + { + "id": "tonis_return_1", + "message": "Hello again. Have you spoken to Guthbered in the Prim main hall yet?", + "replies": [ + { + "text": "No, not yet. Where can I find him?", + "nextPhraseID": "tonis_return_2" + }, + { + "text": "Yes, he told me the story about Prim.", + "nextPhraseID": "tonis_8", + "requires": { + "progress": "prim_hunt:20" + } + }, + { + "text": "No, and I do not intend to speak to him either. I am on an urgent mission to help the Blackwater mountain settlement.", + "nextPhraseID": "tonis_return_3" + } + ] + }, + { + "id": "tonis_1", + "message": "You there! Please you have to help us!", + "replies": [ + { + "text": "What is the matter?", + "nextPhraseID": "tonis_6" + }, + { + "text": "Is this the Blackwater mountain settlement?", + "nextPhraseID": "tonis_2" + }, + { + "text": "Sorry, I cannot be bothered right now. I was told to go east quickly.", + "nextPhraseID": "tonis_4" + } + ] + }, + { + "id": "tonis_2", + "message": "Blackwater? No no, certainly not. Just over there is the village of Prim.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tonis_3" + } + ] + }, + { + "id": "tonis_3", + "message": "Blackwater mountain, those vicious bastards.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tonis_6" + } + ] + }, + { + "id": "tonis_4", + "message": "East? But that leads up to Blackwater mountain.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tonis_5" + } + ] + }, + { + "id": "tonis_5", + "message": "You really do not want to go up there.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tonis_3" + } + ] + }, + { + "id": "tonis_6", + "message": "We desperately need help from someone from the outside in our village of Prim.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "tonis_7" + } + ] + }, + { + "id": "tonis_7", + "message": "You should speak to Guthbered, in the Prim main hall, just north of here.", + "replies": [ + { + "text": "Ok, I will go see him.", + "nextPhraseID": "tonis_8" + }, + { + "text": "I was told to go directly east.", + "nextPhraseID": "tonis_4" + } + ] + }, + { + "id": "tonis_8", + "message": "Good, thanks. We really need your help!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 11 + } + ] + }, + { + "id": "tonis_return_2", + "message": "The village of Prim is just north of here. You can probably see it through the trees over there.", + "replies": [ + { + "text": "Ok, I will go there right away.", + "nextPhraseID": "tonis_8" + } + ] + }, + { + "id": "tonis_return_3", + "message": "Do not listen to their lies!" + }, + { + "id": "moyra_1", + "message": "Stay away. This is my hiding spot.", + "replies": [ + { + "text": "What are you hiding from?", + "nextPhraseID": "moyra_2" + }, + { + "text": "Who are you?", + "nextPhraseID": "moyra_3" + } + ] + }, + { + "id": "moyra_2", + "message": "Claws, beasts, Gornauds. They cannot reach me here.", + "replies": [ + { + "text": "'Gornauds', is that what those monsters outside the village are called?", + "nextPhraseID": "moyra_5" + }, + { + "text": "Yeah sure. Stay here and hide you pathetic creature.", + "nextPhraseID": "moyra_4" + } + ] + }, + { + "id": "moyra_3", + "message": "Me? I am Moyra.", + "replies": [ + { + "text": "Why are you hiding?", + "nextPhraseID": "moyra_2" + } + ] + }, + { + "id": "moyra_4", + "message": "You are mean! I don't want to talk to you any more." + }, + { + "id": "moyra_5", + "message": "Please, not so loud! They could hear you.", + "replies": [ + { + "text": "N", + "nextPhraseID": "moyra_6" + } + ] + }, + { + "id": "moyra_6", + "message": "I have seen them on the path up the mountain. Sharpening their claws.", + "replies": [ + { + "text": "N", + "nextPhraseID": "moyra_7" + } + ] + }, + { + "id": "moyra_7", + "message": "I hide here now, so they cannot get to me." + }, + { + "id": "prim_commoner1", + "message": "Hello there. Welcome to Prim. Are you here to help us?", + "replies": [ + { + "text": "Yes, I am here to help your village.", + "nextPhraseID": "prim_commoner1_2" + }, + { + "text": "(Lie) Yes, I am here to help your village.", + "nextPhraseID": "prim_commoner1_2" + } + ] + }, + { + "id": "prim_commoner1_2", + "message": "Thank you. We really need your help.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 11 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_commoner1_3" + } + ] + }, + { + "id": "prim_commoner1_3", + "message": "You should speak to Guthbered if you haven't done so already.", + "replies": [ + { + "text": "Will do, goodbye.", + "nextPhraseID": "X" + }, + { + "text": "Where can I find him?", + "nextPhraseID": "prim_commoner1_4" + } + ] + }, + { + "id": "prim_commoner1_4", + "message": "He is in the main hall right over there. The large stone house.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "prim_hunt", + "value": 15 + } + ] + }, + { + "id": "prim_commoner2", + "message": "Hi, you seem to be new around here. How can I help you?", + "replies": [ + { + "text": "Is there some place I can rest around here?", + "nextPhraseID": "prim_commoner2_rest1" + }, + { + "text": "Where can I find a trader around here?", + "nextPhraseID": "prim_commoner2_trade1" + } + ] + }, + { + "id": "prim_commoner2_rest1", + "message": "You should be able to find some place to rest in the inn right over there to the southeast.", + "replies": [ + { + "text": "Thank you, goodbye.", + "nextPhraseID": "X" + }, + { + "text": "Where can I find a trader around here?", + "nextPhraseID": "prim_commoner2_trade1" + } + ] + }, + { + "id": "prim_commoner2_trade1", + "message": "Our armorer is in the house in the southwest corner. I should warn you that the supply is not what it used to be though.", + "replies": [ + { + "text": "Thank you, goodbye.", + "nextPhraseID": "X" + }, + { + "text": "Is there some place I can rest around here?", + "nextPhraseID": "prim_commoner2_rest1" + } + ] + }, + { + "id": "prim_commoner3", + "message": "Hello. Welcome to Prim." + }, + { + "id": "prim_commoner4", + "message": "Hello. Who are you? Are you here to help us?", + "replies": [ + { + "text": "I am looking for my brother. Would you by any chance have happened to see him around here?", + "nextPhraseID": "prim_commoner4_1" + }, + { + "text": "Yes, I have come to help your village.", + "nextPhraseID": "prim_commoner4_3" + }, + { + "text": "(Lie) Yes, I have come to help your village.", + "nextPhraseID": "prim_commoner4_3" + } + ] + }, + { + "id": "prim_commoner4_1", + "message": "Your brother? Son, you should know that we do not get many visitors around here.", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_commoner4_2" + } + ] + }, + { + "id": "prim_commoner4_2", + "message": "So, no. I cannot help you." + }, + { + "id": "prim_commoner4_3", + "message": "Oh thank you. We could really use some help around here." + } +] diff --git a/AndorsTrail/res/raw/conversationlist_prim_tavern.json b/AndorsTrail/res/raw/conversationlist_prim_tavern.json new file mode 100644 index 000000000..e79d360ea --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_prim_tavern.json @@ -0,0 +1,177 @@ +[ + { + "id": "birgil_1", + "message": "Welcome to my tavern. Please have a seat anywhere.", + "replies": [ + { + "text": "What can I get to drink around here?", + "nextPhraseID": "birgil_2" + } + ] + }, + { + "id": "birgil_2", + "message": "Well, unfortunately, with the mine tunnel collapsed, we cannot trade much with the outside villages.", + "replies": [ + { + "text": "N", + "nextPhraseID": "birgil_3" + } + ] + }, + { + "id": "birgil_3", + "message": "However, I do have a huge supply of mead that I stocked up on before the mine shaft collapsed.", + "replies": [ + { + "text": "Mead? Yuck. Too sweet for my taste.", + "nextPhraseID": "birgil_4" + }, + { + "text": "Alright! Just my kind of taste. Let's see what you have to trade.", + "nextPhraseID": "S" + }, + { + "text": "Very well, it will have to do. I guess it has some healing potential. Let's trade.", + "nextPhraseID": "S" + } + ] + }, + { + "id": "birgil_4", + "message": "Suit yourself. That's what I've got anyway.", + "replies": [ + { + "text": "Ok, let's trade anyway.", + "nextPhraseID": "S" + }, + { + "text": "Never mind, goodbye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "prim_tavern_guest1", + "message": "Oh, a new one around here.", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_tavern_guest1_1" + } + ] + }, + { + "id": "prim_tavern_guest1_1", + "message": "Welcome kid. Are you here to drench your sorrows like the rest of us?", + "replies": [ + { + "text": "Not really. What is there to do around here?", + "nextPhraseID": "prim_tavern_guest1_3" + }, + { + "text": "Yeah, give me some of what you're having.", + "nextPhraseID": "prim_tavern_guest1_4" + }, + { + "text": "Stop bumping into me when I'm trying to walk.", + "nextPhraseID": "prim_tavern_guest1_2" + } + ] + }, + { + "id": "prim_tavern_guest1_2", + "message": "My my, a feisty one. Very well, I will get out of your way." + }, + { + "id": "prim_tavern_guest1_3", + "message": "Drink, of course!", + "replies": [ + { + "text": "I should have seen that one coming. Goodbye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "prim_tavern_guest1_4", + "message": "Hey, this one is mine. Buy your own mead from Birgil over there.", + "replies": [ + { + "text": "Sure, whatever.", + "nextPhraseID": "X" + }, + { + "text": "Ok.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "prim_tavern_guest2", + "message": "*hic* Hey theeere kid. Will you buy an old-timer like me a new round of mead?", + "replies": [ + { + "text": "Yikes, what happened to you? Get away from me.", + "nextPhraseID": "X" + }, + { + "text": "No way, and stop blocking my way.", + "nextPhraseID": "X" + }, + { + "text": "Sure. Here you go.", + "nextPhraseID": "prim_tavern_guest2_1", + "requires": { + "item": { + "itemID": "mead", + "quantity": 1, + "requireType": 0 + } + } + } + ] + }, + { + "id": "prim_tavern_guest2_1", + "message": "Hey hey, thanks a lot kid! *hic*" + }, + { + "id": "prim_tavern_guest3", + "message": "*grumbles*" + }, + { + "id": "prim_tavern_guest4", + "message": "Claws. Scratching.", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_tavern_guest4_1" + } + ] + }, + { + "id": "prim_tavern_guest4_1", + "message": "Got a hold of poor Kirg they did.", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_tavern_guest4_2" + } + ] + }, + { + "id": "prim_tavern_guest4_2", + "message": "Those damn beasts.", + "replies": [ + { + "text": "N", + "nextPhraseID": "prim_tavern_guest4_3" + } + ] + }, + { + "id": "prim_tavern_guest4_3", + "message": "And it's all my fault. *sob*" + } +] diff --git a/AndorsTrail/res/raw/conversationlist_pwcave.json b/AndorsTrail/res/raw/conversationlist_pwcave.json new file mode 100644 index 000000000..7f4717c44 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_pwcave.json @@ -0,0 +1,242 @@ +[ + { + "id": "iqhan_greeter", + "message": "Get away! No! Turn back while you still can!", + "replies": [ + { + "text": "N", + "nextPhraseID": "iqhan_greeter_1" + } + ] + }, + { + "id": "iqhan_greeter_1", + "message": "You don't know what they'll do to you!", + "replies": [ + { + "text": "What is this place?", + "nextPhraseID": "iqhan_greeter_2" + } + ] + }, + { + "id": "iqhan_greeter_2", + "message": "What!? No, no, no. Must get out of here!", + "replies": [ + { + "text": "N", + "nextPhraseID": "R" + } + ] + }, + { + "id": "iqhan_boss", + "message": "*wheeze*", + "replies": [ + { + "text": "N", + "nextPhraseID": "iqhan_boss_1" + } + ] + }, + { + "id": "iqhan_boss_1", + "message": "(The figure points its finger towards you, in what looks to be an order for the nearby thralls to attack you.)", + "replies": [ + { + "text": "Fight!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "sign_waterway1", + "message": "South: Loneford\nEast: Brimhaven.\n(You also see something written on an arrow pointing to the west, but you cannot understand the words)" + }, + { + "id": "sign_waterway3", + "message": "(The sign contains writing in a language you cannot understand)" + }, + { + "id": "gauward", + "message": "What.. Oh, a visitor!", + "replies": [ + { + "text": "What is this place?", + "nextPhraseID": "gauward_1" + }, + { + "text": "I have some Izthiel claws to sell you.", + "nextPhraseID": "gauward_sell_1", + "requires": { + "progress": "nondisplay:20" + } + } + ] + }, + { + "id": "gauward_1", + "message": "This place used to be a safe house for travellers between Loneford and Brimhaven, before they had finished the road between the villages.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gauward_2" + } + ] + }, + { + "id": "gauward_2", + "message": "However, nowadays, hardly anyone comes here - because of those cursed creatures from the river.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gauward_3" + } + ] + }, + { + "id": "gauward_3", + "message": "Izthiel, they call them.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gauward_4" + } + ] + }, + { + "id": "gauward_4", + "message": "Ack, if it wasn't for those things out there, I am sure a lot of people would come by here more often.", + "replies": [ + { + "text": "Would you like me to kill the creatures for you?", + "nextPhraseID": "gauward_5" + } + ] + }, + { + "id": "gauward_5", + "message": "Oh sure. I have tried that. But they just keep coming back.", + "replies": [ + { + "text": "N", + "nextPhraseID": "gauward_6" + } + ] + }, + { + "id": "gauward_6", + "message": "Tell you what though. Bring me those claws of theirs, and I'll buy them from you for a good price.", + "replies": [ + { + "text": "Ok, I will return with some of their claws.", + "nextPhraseID": "gauward_7" + } + ] + }, + { + "id": "gauward_7", + "message": "Good. Please do. I like knowing that their numbers are reduced at least.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "nondisplay", + "value": 20 + } + ] + }, + { + "id": "gauward_sell_1", + "message": "Great. How many would you like to sell?", + "replies": [ + { + "text": "Here's one.", + "nextPhraseID": "gauward_sold_1", + "requires": { + "item": { + "itemID": "izthiel_claw", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Here's five.", + "nextPhraseID": "gauward_sold_5", + "requires": { + "item": { + "itemID": "izthiel_claw", + "quantity": 5, + "requireType": 0 + } + } + }, + { + "text": "Here's ten.", + "nextPhraseID": "gauward_sold_10", + "requires": { + "item": { + "itemID": "izthiel_claw", + "quantity": 10, + "requireType": 0 + } + } + }, + { + "text": "Here's twenty.", + "nextPhraseID": "gauward_sold_20", + "requires": { + "item": { + "itemID": "izthiel_claw", + "quantity": 20, + "requireType": 0 + } + } + }, + { + "text": "Never mind. I will be back with more Izthiel claws to sell you.", + "nextPhraseID": "gauward_7" + } + ] + }, + { + "id": "gauward_sold_1", + "message": "Good, thank you. Here's some gold for your troubles.", + "rewards": [ + { + "rewardType": 1, + "rewardID": "gold5" + } + ] + }, + { + "id": "gauward_sold_5", + "message": "Excellent, thank you! Here's some gold for your troubles.", + "rewards": [ + { + "rewardType": 1, + "rewardID": "gold25" + } + ] + }, + { + "id": "gauward_sold_10", + "message": "Excellent, thank you! Here's some gold for your troubles.", + "rewards": [ + { + "rewardType": 1, + "rewardID": "gold50" + } + ] + }, + { + "id": "gauward_sold_20", + "message": "Oh wow, you managed to get twenty of those claws? That's excellent, thank you! Here's some gold and some extra health potions for your troubles.", + "rewards": [ + { + "rewardType": 1, + "rewardID": "gauward_sold_20" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_reinkarr.json b/AndorsTrail/res/raw/conversationlist_reinkarr.json new file mode 100644 index 000000000..0d3b746d1 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_reinkarr.json @@ -0,0 +1,159 @@ +[ + { + "id": "reinkarr", + "message": "You look just like an adventurer. Tell me child, what brings you here?", + "replies": [ + { + "text": "Who are you?", + "nextPhraseID": "reinkarr_3" + }, + { + "text": "I'm looking for my brother Andor.", + "nextPhraseID": "reinkarr_1" + }, + { + "text": "I'm just looking for trouble.", + "nextPhraseID": "reinkarr_2" + } + ] + }, + { + "id": "reinkarr_1", + "message": "Ok then. Good luck with that.", + "replies": [ + { + "text": "Who are you?", + "nextPhraseID": "reinkarr_3" + } + ] + }, + { + "id": "reinkarr_2", + "message": "Ha ha, that sure sounds like an adventurer! Guts, that's what you need to be a successful adventurer, child. You don't seem to lack courage, if I may say so.", + "replies": [ + { + "text": "Who are you?", + "nextPhraseID": "reinkarr_3" + } + ] + }, + { + "id": "reinkarr_3", + "message": "I am Reinkarr. I guess you could call me an adventurer of sorts.", + "replies": [ + { + "text": "Any good tales to tell?", + "nextPhraseID": "reinkarr_4" + } + ] + }, + { + "id": "reinkarr_4", + "message": "No, not really. I never got the hang of the whole adventuring business. Me and some other fellows went looking for these .. crystals .. that we had heard about.", + "replies": [ + { + "text": "What crystals?", + "nextPhraseID": "reinkarr_5" + } + ] + }, + { + "id": "reinkarr_5", + "message": "Doesn't really matter. We never found any of them anyway.", + "replies": [ + { + "text": "What crystals were you looking for?", + "nextPhraseID": "reinkarr_6" + } + ] + }, + { + "id": "reinkarr_6", + "message": "They were called 'Oegyth crystals'. Supposedly very powerful and worth a fortune.", + "replies": [ + { + "text": "I have one of those.", + "nextPhraseID": "reinkarr_oeg_1", + "requires": { + "item": { + "itemID": "oegyth", + "quantity": 1, + "requireType": 1 + } + } + }, + { + "text": "So what made you stop looking?", + "nextPhraseID": "reinkarr_8" + }, + { + "text": "What are they?", + "nextPhraseID": "reinkarr_7" + } + ] + }, + { + "id": "reinkarr_7", + "message": "Actually, all I know is that they are some sort of crystal. As I said, they are supposedly very powerful. We were only looking for them so that we could sell them and become rich.", + "replies": [ + { + "text": "What made you stop looking?", + "nextPhraseID": "reinkarr_8" + } + ] + }, + { + "id": "reinkarr_8", + "message": "Just the boredom of it, I guess. We never were any good at the whole fighting thing, and as such we never found one of those things.", + "replies": [ + { + "text": "N", + "nextPhraseID": "reinkarr_9" + } + ] + }, + { + "id": "reinkarr_9", + "message": "Anyway, it's been nice talking to you, kid. Take care." + }, + { + "id": "reinkarr_oeg_1", + "message": "What!? You actually have one of those things? Let me see. Yes, that sure matches the description I read.", + "replies": [ + { + "text": "N", + "nextPhraseID": "reinkarr_oeg_2" + } + ] + }, + { + "id": "reinkarr_oeg_2", + "message": "You would do well to keep that to yourself, kid. Whatever you do, don't lose it, and don't go around showing it to everyone you might meet. You could get in serious trouble.", + "replies": [ + { + "text": "What can I do with it?", + "nextPhraseID": "reinkarr_oeg_3" + } + ] + }, + { + "id": "reinkarr_oeg_3", + "message": "I hear there are merchants that would do anything to get their hands on some of those crystals. You should seek out the merchants in one of the larger cities, and ask them.", + "replies": [ + { + "text": "N", + "nextPhraseID": "reinkarr_oeg_4" + } + ] + }, + { + "id": "reinkarr_oeg_4", + "message": "Please be careful though!", + "replies": [ + { + "text": "N", + "nextPhraseID": "reinkarr_9" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_remgard_bridgeguard.json b/AndorsTrail/res/raw/conversationlist_remgard_bridgeguard.json new file mode 100644 index 000000000..e0d08d124 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_remgard_bridgeguard.json @@ -0,0 +1,388 @@ +[ + { + "id": "remgard_bridge", + "replies": [ + { + "nextPhraseID": "remgardb_helped_1", + "requires": { + "progress": "remgard:35" + } + }, + { + "nextPhraseID": "remgardb_helped_n", + "requires": { + "progress": "remgard:31" + } + }, + { + "nextPhraseID": "remgardb_helped_y", + "requires": { + "progress": "remgard:30" + } + }, + { + "nextPhraseID": "remgardb_help_return", + "requires": { + "progress": "remgard:20" + } + }, + { + "nextPhraseID": "remgardb_1" + } + ] + }, + { + "id": "remgardb_1", + "message": "Halt! No one is allowed to enter or exit Remgard.", + "replies": [ + { + "text": "Why? Is there something wrong?", + "nextPhraseID": "remgardb_2" + } + ] + }, + { + "id": "remgardb_2", + "message": "Wrong? You bet there is. Several of the townspeople have disappeared, and we are still conducting the investigation.", + "replies": [ + { + "text": "N", + "nextPhraseID": "remgardb_3" + } + ] + }, + { + "id": "remgardb_3", + "message": "We are searching for them in the town, and questioning everyone for clues on where they might be.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 10 + } + ], + "replies": [ + { + "text": "Please continue.", + "nextPhraseID": "remgardb_5" + }, + { + "text": "Maybe they just left?", + "nextPhraseID": "remgardb_4" + } + ] + }, + { + "id": "remgardb_4", + "message": "No, I highly doubt that.", + "replies": [ + { + "text": "N", + "nextPhraseID": "remgardb_5" + } + ] + }, + { + "id": "remgardb_5", + "message": "Considering our town is surrounded by lake Laeroth, we guards are able to keep a watchful eye on everything going on here. We are able to keep a log of who comes and goes, since this bridge is our only connection to the mainland.", + "replies": [ + { + "text": "N", + "nextPhraseID": "remgardb_6" + } + ] + }, + { + "id": "remgardb_6", + "message": "For your sake, it is probably safer for you to remain out of town until our investigation is complete.", + "replies": [ + { + "text": "I am willing to help you with the investigation if you want.", + "nextPhraseID": "remgardb_help_1" + }, + { + "text": "Ok, I will leave you to your investigation.", + "nextPhraseID": "X" + }, + { + "text": "How about you allow me to enter town anyway, so that I can trade. I promise to be quick.", + "nextPhraseID": "remgardb_7" + } + ] + }, + { + "id": "remgardb_7", + "message": "No. As I said, no one except us guards are allowed to enter or exit town until our investigation is completed. I suggest you leave now." + }, + { + "id": "remgardb_help_1", + "message": "Hm, yes, that might be a good idea actually. Considering you made it up here, you must have some knowledge of the surroundings.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 15 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "remgardb_help_2" + } + ] + }, + { + "id": "remgardb_help_2", + "message": "Tell you what. You might be able to help us.", + "replies": [ + { + "text": "N", + "nextPhraseID": "remgardb_help_2b" + } + ] + }, + { + "id": "remgardb_help_2b", + "message": "There is an abandoned house some way to the east of here, on a peninsula on the northern shore of lake Laeroth.", + "replies": [ + { + "text": "N", + "nextPhraseID": "remgardb_help_3" + } + ] + }, + { + "id": "remgardb_help_3", + "message": "We have reason to believe that this cabin is inhabited by someone, since we have seen candlelight coming from there during the night across the lake. We are not certain though, it could just be the moonlight on the water.", + "replies": [ + { + "text": "N", + "nextPhraseID": "remgardb_help_4" + } + ] + }, + { + "id": "remgardb_help_4", + "message": "That's where you come in, and might be able to help us.", + "replies": [ + { + "text": "N", + "nextPhraseID": "remgardb_help_5" + } + ] + }, + { + "id": "remgardb_help_5", + "message": "I must stay here and guard the bridge, but you could go over there and peek inside.", + "replies": [ + { + "text": "N", + "nextPhraseID": "remgardb_help_6" + } + ] + }, + { + "id": "remgardb_help_6", + "message": "Now, I must warn you - this could be dangerous. If it is as we suspected, then the person in the cabin could be a .. shall we say .. persuasive talker.", + "replies": [ + { + "text": "N", + "nextPhraseID": "remgardb_help_7" + } + ] + }, + { + "id": "remgardb_help_7", + "message": "So, if you really want to help us, the task I ask of you is that you only peek inside that cabin and identify if there's anyone there, and if so who that might be.", + "replies": [ + { + "text": "N", + "nextPhraseID": "remgardb_help_8" + } + ] + }, + { + "id": "remgardb_help_8", + "message": "Report back to me as soon as possible, and do not speak for too long with anyone that might be there.", + "replies": [ + { + "text": "N", + "nextPhraseID": "remgardb_help_9s" + } + ] + }, + { + "id": "remgardb_help_9s", + "replies": [ + { + "nextPhraseID": "X", + "requires": { + "progress": "remgard:20" + } + }, + { + "nextPhraseID": "remgardb_help_9" + } + ] + }, + { + "id": "remgardb_help_9", + "message": "Would you be willing to do this task for us?", + "replies": [ + { + "text": "Sure, I would be happy to help.", + "nextPhraseID": "remgardb_help_10" + }, + { + "text": "I'll do it. I sure hope there will be some reward for this though.", + "nextPhraseID": "remgardb_help_10" + }, + { + "text": "No way, this sounds way too dangerous for me.", + "nextPhraseID": "remgardb_help_9d" + }, + { + "text": "Actually, I have already been there. There is a woman called Algangror in the cabin.", + "nextPhraseID": "remgardb_helped_y", + "requires": { + "progress": "algangror:10" + } + }, + { + "text": "Actually, I have already been there, but the cabin was empty.", + "nextPhraseID": "remgardb_helped_n", + "requires": { + "progress": "algangror:10" + } + } + ] + }, + { + "id": "remgardb_help_9d", + "message": "I don't blame you for declining. After all, it could be a dangerous task. Didn't hurt to ask though." + }, + { + "id": "remgardb_help_10", + "message": "Excellent. Report back as soon as possible.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 20 + } + ] + }, + { + "id": "remgardb_help_return", + "message": "Did you find anything in that abandoned house?", + "replies": [ + { + "text": "Not yet. What was I supposed to do again?", + "nextPhraseID": "remgardb_help_2b" + }, + { + "text": "Not yet, I am still working on it.", + "nextPhraseID": "remgardb_help_10" + }, + { + "text": "There is a woman called Algangror in the cabin.", + "nextPhraseID": "remgardb_helped_y", + "requires": { + "progress": "algangror:10" + } + }, + { + "text": "Yes, I have been there, but the cabin was empty.", + "nextPhraseID": "remgardb_helped_n", + "requires": { + "progress": "algangror:10" + } + } + ] + }, + { + "id": "remgardb_helped_y", + "message": "Algangror, sigh. Then it is as we feared. This is terrible news.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "remgardb_helped_1" + } + ] + }, + { + "id": "remgardb_helped_1", + "message": "You should go visit our village elder, Jhaeld, and talk to him about what we should do next. I will let you enter Remgard to speak to him.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 35 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "remgardb_helped_2" + } + ] + }, + { + "id": "remgardb_helped_2", + "message": "You can probably find him in the tavern to the southeast, since that's where he spends most of his time.", + "replies": [ + { + "text": "I will go see him.", + "nextPhraseID": "R" + } + ] + }, + { + "id": "remgardb_helped_n", + "message": "Thank you for scouting that cabin. It's a relief to hear that it is empty. Our fears might not be true then after all.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 31 + } + ], + "replies": [ + { + "text": "You are welcome. Anything else I can help you with?", + "nextPhraseID": "remgardb_helped_n_2" + }, + { + "text": "You are welcome. Now, about that reward?", + "nextPhraseID": "remgardb_helped_n_3" + } + ] + }, + { + "id": "remgardb_helped_n_2", + "message": "I guess you have proven yourself to be useful. We might have more work for you if you are interested.", + "replies": [ + { + "text": "N", + "nextPhraseID": "remgardb_helped_1" + } + ] + }, + { + "id": "remgardb_helped_n_3", + "message": "No no, we did not discuss any reward. But there might be one for you if you are willing to help us further.", + "replies": [ + { + "text": "N", + "nextPhraseID": "remgardb_helped_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_remgard_idolsigns.json b/AndorsTrail/res/raw/conversationlist_remgard_idolsigns.json new file mode 100644 index 000000000..3bdbc18a3 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_remgard_idolsigns.json @@ -0,0 +1,657 @@ +[ + { + "id": "jhaeld_bed", + "replies": [ + { + "nextPhraseID": "jhaeld_bed_2", + "requires": { + "progress": "fiveidols:41" + } + }, + { + "nextPhraseID": "jhaeld_bed_3", + "requires": { + "progress": "fiveidols:31" + } + }, + { + "nextPhraseID": "jhaeld_bed_1" + } + ] + }, + { + "id": "jhaeld_bed_1", + "message": "You see a bed." + }, + { + "id": "jhaeld_bed_2", + "message": "You see a bed. The idol is still where you left it." + }, + { + "id": "jhaeld_bed_3", + "message": "You see a bed, that you suppose must be Jhaeld's bed.", + "replies": [ + { + "text": "Hide one of the idols under the bed.", + "nextPhraseID": "jhaeld_bed_4s1", + "requires": { + "item": { + "itemID": "algangror_idol", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Leave the bed alone.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "jhaeld_bed_4s1", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 41 + } + ], + "replies": [ + { + "nextPhraseID": "jhaeld_bed_4s2", + "requires": { + "progress": "fiveidols:42" + } + }, + { + "nextPhraseID": "jhaeld_bed_4" + } + ] + }, + { + "id": "jhaeld_bed_4s2", + "replies": [ + { + "nextPhraseID": "jhaeld_bed_4s3", + "requires": { + "progress": "fiveidols:43" + } + }, + { + "nextPhraseID": "jhaeld_bed_4" + } + ] + }, + { + "id": "jhaeld_bed_4s3", + "replies": [ + { + "nextPhraseID": "jhaeld_bed_4s4", + "requires": { + "progress": "fiveidols:44" + } + }, + { + "nextPhraseID": "jhaeld_bed_4" + } + ] + }, + { + "id": "jhaeld_bed_4s4", + "replies": [ + { + "nextPhraseID": "jhaeld_bed_4s5", + "requires": { + "progress": "fiveidols:45" + } + }, + { + "nextPhraseID": "jhaeld_bed_4" + } + ] + }, + { + "id": "jhaeld_bed_4s5", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 50 + } + ], + "replies": [ + { + "nextPhraseID": "jhaeld_bed_4" + } + ] + }, + { + "id": "jhaeld_bed_4", + "message": "You hide the idol under the bed." + }, + { + "id": "larni_bed", + "replies": [ + { + "nextPhraseID": "larni_bed_2", + "requires": { + "progress": "fiveidols:42" + } + }, + { + "nextPhraseID": "larni_bed_3", + "requires": { + "progress": "fiveidols:32" + } + }, + { + "nextPhraseID": "larni_bed_1" + } + ] + }, + { + "id": "larni_bed_1", + "message": "You see a bed and nightstand." + }, + { + "id": "larni_bed_2", + "message": "You see a bed and nightstand. The idol is still where you left it." + }, + { + "id": "larni_bed_3", + "message": "You see a bed and nightstand. This must be Larni's bed.", + "replies": [ + { + "text": "Hide one of the idols under the bed.", + "nextPhraseID": "larni_bed_4s1", + "requires": { + "item": { + "itemID": "algangror_idol", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Leave the bed alone.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "larni_bed_4s1", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 42 + } + ], + "replies": [ + { + "nextPhraseID": "larni_bed_4s2", + "requires": { + "progress": "fiveidols:41" + } + }, + { + "nextPhraseID": "larni_bed_4" + } + ] + }, + { + "id": "larni_bed_4s2", + "replies": [ + { + "nextPhraseID": "larni_bed_4s3", + "requires": { + "progress": "fiveidols:43" + } + }, + { + "nextPhraseID": "larni_bed_4" + } + ] + }, + { + "id": "larni_bed_4s3", + "replies": [ + { + "nextPhraseID": "larni_bed_4s4", + "requires": { + "progress": "fiveidols:44" + } + }, + { + "nextPhraseID": "larni_bed_4" + } + ] + }, + { + "id": "larni_bed_4s4", + "replies": [ + { + "nextPhraseID": "larni_bed_4s5", + "requires": { + "progress": "fiveidols:45" + } + }, + { + "nextPhraseID": "larni_bed_4" + } + ] + }, + { + "id": "larni_bed_4s5", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 50 + } + ], + "replies": [ + { + "nextPhraseID": "larni_bed_4" + } + ] + }, + { + "id": "larni_bed_4", + "message": "You hide the idol under the bed." + }, + { + "id": "arnal_bed", + "replies": [ + { + "nextPhraseID": "arnal_bed_2", + "requires": { + "progress": "fiveidols:43" + } + }, + { + "nextPhraseID": "arnal_bed_3", + "requires": { + "progress": "fiveidols:33" + } + }, + { + "nextPhraseID": "arnal_bed_1" + } + ] + }, + { + "id": "arnal_bed_1", + "message": "You see a bed and nightstand." + }, + { + "id": "arnal_bed_2", + "message": "You see a bed and nightstand. The idol is still where you left it." + }, + { + "id": "arnal_bed_3", + "message": "You see a bed and nightstand. This must be Arnal's bed.", + "replies": [ + { + "text": "Hide one of the idols under the bed.", + "nextPhraseID": "arnal_bed_4s1", + "requires": { + "item": { + "itemID": "algangror_idol", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Leave the bed alone.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "arnal_bed_4s1", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 43 + } + ], + "replies": [ + { + "nextPhraseID": "arnal_bed_4s2", + "requires": { + "progress": "fiveidols:41" + } + }, + { + "nextPhraseID": "arnal_bed_4" + } + ] + }, + { + "id": "arnal_bed_4s2", + "replies": [ + { + "nextPhraseID": "arnal_bed_4s3", + "requires": { + "progress": "fiveidols:42" + } + }, + { + "nextPhraseID": "arnal_bed_4" + } + ] + }, + { + "id": "arnal_bed_4s3", + "replies": [ + { + "nextPhraseID": "arnal_bed_4s4", + "requires": { + "progress": "fiveidols:44" + } + }, + { + "nextPhraseID": "arnal_bed_4" + } + ] + }, + { + "id": "arnal_bed_4s4", + "replies": [ + { + "nextPhraseID": "arnal_bed_4s5", + "requires": { + "progress": "fiveidols:45" + } + }, + { + "nextPhraseID": "arnal_bed_4" + } + ] + }, + { + "id": "arnal_bed_4s5", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 50 + } + ], + "replies": [ + { + "nextPhraseID": "arnal_bed_4" + } + ] + }, + { + "id": "arnal_bed_4", + "message": "You hide the idol under the bed." + }, + { + "id": "emerei_bed", + "replies": [ + { + "nextPhraseID": "emerei_bed_2", + "requires": { + "progress": "fiveidols:44" + } + }, + { + "nextPhraseID": "emerei_bed_3", + "requires": { + "progress": "fiveidols:34" + } + }, + { + "nextPhraseID": "emerei_bed_1" + } + ] + }, + { + "id": "emerei_bed_1", + "message": "You see a bed and nightstand." + }, + { + "id": "emerei_bed_2", + "message": "You see a bed and nightstand. The idol is still where you left it." + }, + { + "id": "emerei_bed_3", + "message": "You see a bed and nightstand. This must be Emerei's bed.", + "replies": [ + { + "text": "Hide one of the idols under the bed.", + "nextPhraseID": "emerei_bed_4s1", + "requires": { + "item": { + "itemID": "algangror_idol", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Leave the bed alone.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "emerei_bed_4s1", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 44 + } + ], + "replies": [ + { + "nextPhraseID": "emerei_bed_4s2", + "requires": { + "progress": "fiveidols:41" + } + }, + { + "nextPhraseID": "emerei_bed_4" + } + ] + }, + { + "id": "emerei_bed_4s2", + "replies": [ + { + "nextPhraseID": "emerei_bed_4s3", + "requires": { + "progress": "fiveidols:42" + } + }, + { + "nextPhraseID": "emerei_bed_4" + } + ] + }, + { + "id": "emerei_bed_4s3", + "replies": [ + { + "nextPhraseID": "emerei_bed_4s4", + "requires": { + "progress": "fiveidols:43" + } + }, + { + "nextPhraseID": "emerei_bed_4" + } + ] + }, + { + "id": "emerei_bed_4s4", + "replies": [ + { + "nextPhraseID": "emerei_bed_4s5", + "requires": { + "progress": "fiveidols:45" + } + }, + { + "nextPhraseID": "emerei_bed_4" + } + ] + }, + { + "id": "emerei_bed_4s5", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 50 + } + ], + "replies": [ + { + "nextPhraseID": "emerei_bed_4" + } + ] + }, + { + "id": "emerei_bed_4", + "message": "You hide the idol under the bed." + }, + { + "id": "carthe_bed", + "replies": [ + { + "nextPhraseID": "carthe_bed_2", + "requires": { + "progress": "fiveidols:45" + } + }, + { + "nextPhraseID": "carthe_bed_3", + "requires": { + "progress": "fiveidols:35" + } + }, + { + "nextPhraseID": "carthe_bed_1" + } + ] + }, + { + "id": "carthe_bed_1", + "message": "You see a bed and nightstand." + }, + { + "id": "carthe_bed_2", + "message": "You see a bed and nightstand. The idol is still where you left it." + }, + { + "id": "carthe_bed_3", + "message": "You see a bed and nightstand. This must be Carthe's bed.", + "replies": [ + { + "text": "Hide one of the idols under the bed.", + "nextPhraseID": "carthe_bed_4s1", + "requires": { + "item": { + "itemID": "algangror_idol", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Leave the bed alone.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "carthe_bed_4s1", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 45 + } + ], + "replies": [ + { + "nextPhraseID": "carthe_bed_4s2", + "requires": { + "progress": "fiveidols:41" + } + }, + { + "nextPhraseID": "carthe_bed_4" + } + ] + }, + { + "id": "carthe_bed_4s2", + "replies": [ + { + "nextPhraseID": "carthe_bed_4s3", + "requires": { + "progress": "fiveidols:42" + } + }, + { + "nextPhraseID": "carthe_bed_4" + } + ] + }, + { + "id": "carthe_bed_4s3", + "replies": [ + { + "nextPhraseID": "carthe_bed_4s4", + "requires": { + "progress": "fiveidols:43" + } + }, + { + "nextPhraseID": "carthe_bed_4" + } + ] + }, + { + "id": "carthe_bed_4s4", + "replies": [ + { + "nextPhraseID": "carthe_bed_4s5", + "requires": { + "progress": "fiveidols:44" + } + }, + { + "nextPhraseID": "carthe_bed_4" + } + ] + }, + { + "id": "carthe_bed_4s5", + "rewards": [ + { + "rewardType": 0, + "rewardID": "fiveidols", + "value": 50 + } + ], + "replies": [ + { + "nextPhraseID": "carthe_bed_4" + } + ] + }, + { + "id": "carthe_bed_4", + "message": "You hide the idol under the bed." + } +] diff --git a/AndorsTrail/res/raw/conversationlist_remgard_villagers1.json b/AndorsTrail/res/raw/conversationlist_remgard_villagers1.json new file mode 100644 index 000000000..ab1a1e909 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_remgard_villagers1.json @@ -0,0 +1,320 @@ +[ + { + "id": "remgard_villager1", + "message": "I don't recognize you. You're not from Remgard, are you?", + "replies": [ + { + "text": "No, I am from a small settlement called Crossglen, and I am looking for my brother Andor.", + "nextPhraseID": "remgard_villager1_2" + } + ] + }, + { + "id": "remgard_villager1_2", + "message": "Ok then. Good luck with that." + }, + { + "id": "remgard_villager2", + "message": "Don't get in my way, I'm trying to walk here, don't you see?", + "replies": [ + { + "text": "No problem, please go ahead.", + "nextPhraseID": "X" + }, + { + "text": "No, you get out of *my* way!", + "nextPhraseID": "remgard_villager2_2" + } + ] + }, + { + "id": "remgard_villager2_2", + "message": "Hah! *snort*" + }, + { + "id": "remgard_villager3", + "message": "Have you seen my ring? I dropped it among these trees, I am sure. That was a pretty ring." + }, + { + "id": "remgard_villager4", + "message": "Good day." + }, + { + "id": "remgard_villager5", + "message": "Excuse me, I have no time to talk." + }, + { + "id": "remgard_villager6", + "message": "You are not from around here, are you? If you ever need a place to stay, visit the tavern. I hear that Kendelow has a room available for rent." + }, + { + "id": "remgard_villager7", + "message": "I have heard strange noises from across the water of lake Laeroth. I wonder what lurks on the shores of the other side." + }, + { + "id": "remgard_villager8", + "message": "Hello." + }, + { + "id": "petdog", + "message": "Woof! *pant* *pant*" + }, + { + "id": "taylin", + "message": "No, get away! They can't find me here. Don't give away my good hiding spot!" + }, + { + "id": "larni", + "replies": [ + { + "nextPhraseID": "larni_2", + "requires": { + "progress": "fiveidols:42" + } + }, + { + "nextPhraseID": "larni_1" + } + ] + }, + { + "id": "larni_1", + "message": "Hey, get out of here! This is my house!" + }, + { + "id": "larni_2", + "message": "(You see Larni holding his forehead.) Hey, *cough* get out of here! This is .. *cough* .. my house!" + }, + { + "id": "caeda", + "message": "So much work to do. I sure hope we will have some rain soon." + }, + { + "id": "arnal", + "replies": [ + { + "nextPhraseID": "arnal_2", + "requires": { + "progress": "fiveidols:43" + } + }, + { + "nextPhraseID": "arnal_1" + } + ] + }, + { + "id": "arnal_1", + "message": "Welcome to my shop. Would you like to see what I have available?", + "replies": [ + { + "text": "Yes, please show me what you have.", + "nextPhraseID": "S" + }, + { + "text": "No thank you. Goodbye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "arnal_2", + "message": "(Arnal clears his throat)", + "replies": [ + { + "text": "N", + "nextPhraseID": "arnal_3" + } + ] + }, + { + "id": "arnal_3", + "message": "Welcome to .. *cough* .. my shop. Would you like .. *cough* .. to see what I have available?", + "replies": [ + { + "text": "Yes, please show me what you have.", + "nextPhraseID": "S" + }, + { + "text": "No thank you. Goodbye.", + "nextPhraseID": "X" + }, + { + "text": "Are you all right?", + "nextPhraseID": "arnal_4" + }, + { + "text": "Get away from me, I don't want to catch whatever it is you are infected with!", + "nextPhraseID": "X" + } + ] + }, + { + "id": "arnal_4", + "message": "I don't know what .. *cough* .. happened. I started getting dizzy and nauseous. Now this cough is really irritating. It must have been something I ate. *cough*" + }, + { + "id": "skylenar", + "message": "May you forever walk with the Shadow, my child.", + "replies": [ + { + "text": "Do you have anything to trade?", + "nextPhraseID": "S" + }, + { + "text": "What do you do around here?", + "nextPhraseID": "skylenar_1" + } + ] + }, + { + "id": "skylenar_1", + "message": "I provide .. guidance to those that seek it. The Shadow guides us. It keeps us safe and comforts us when we sleep.", + "replies": [ + { + "text": "N", + "nextPhraseID": "skylenar_2" + } + ] + }, + { + "id": "skylenar_2", + "message": "Lately, it seems Remgard has been in dire need of the comfort that the Shadow provides.", + "replies": [ + { + "text": "I see. Goodbye.", + "nextPhraseID": "X" + }, + { + "text": "Do you have anything to trade?", + "nextPhraseID": "S" + } + ] + }, + { + "id": "atash", + "message": "The Shadow follows us wherever we go. Go with the Shadow my child.", + "replies": [ + { + "text": "Shadow be with you.", + "nextPhraseID": "X" + }, + { + "text": "Whatever, bye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "remgard_guard1", + "message": "I've got my eye on you. Don't do anything stupid." + }, + { + "id": "remgard_prison_guard", + "message": "Don't even think about it." + }, + { + "id": "remgard_drunk1", + "message": "*burp* Ha ha! I never thought she would! Or was it the other way around? I can't remember." + }, + { + "id": "remgard_drunk2", + "message": "*burp* This is the best place in all of the northern lands!", + "replies": [ + { + "text": "N", + "nextPhraseID": "remgard_drunk2_2" + } + ] + }, + { + "id": "remgard_drunk2_2", + "message": "Oh, hello there. *burp* Kid, I tell you, don't go looking for trouble even if you think you can handle it.", + "replies": [ + { + "text": "N", + "nextPhraseID": "remgard_drunk2_3" + } + ] + }, + { + "id": "remgard_drunk2_3", + "message": "I did once, and ended up in those horrid caverns of Mount Galmore.", + "replies": [ + { + "text": "N", + "nextPhraseID": "remgard_drunk2_4" + } + ] + }, + { + "id": "remgard_drunk2_4", + "message": "That place twists your mind. I tell you, don't go there, even if you think you do!", + "replies": [ + { + "text": "Mount Galmore, where is that?", + "nextPhraseID": "remgard_drunk2_5" + }, + { + "text": "I'll keep that in mind.", + "nextPhraseID": "X" + }, + { + "text": "Get out of my way!", + "nextPhraseID": "X" + } + ] + }, + { + "id": "remgard_drunk2_5", + "message": "*burp* What was that? Were you saying something?" + }, + { + "id": "remgard_farmer1", + "message": "Oh, hello. I can't talk right now, must finish planting these crops." + }, + { + "id": "remgard_farmer2", + "message": "I hope the lands will be good to us this season." + }, + { + "id": "chael", + "message": "(Chael gives you a blank stare)", + "replies": [ + { + "text": "N", + "nextPhraseID": "chael_2" + } + ] + }, + { + "id": "chael_2", + "message": "Chael chop wood. Wood make Chael happy." + }, + { + "id": "morgisia", + "message": "Guards! Someone has broken into my room and is trying to rob me!", + "replies": [ + { + "text": "That's right. Hand over all your belongings and you may still live.", + "nextPhraseID": "morgisia_1" + }, + { + "text": "But I was just..", + "nextPhraseID": "morgisia_1" + }, + { + "text": "Sorry, I thought..", + "nextPhraseID": "morgisia_1" + } + ] + }, + { + "id": "morgisia_1", + "message": "Help! Guards!" + }, + { + "id": "easturlie", + "message": "Hey, this is my house. Get out of here before I call the guards!" + } +] diff --git a/AndorsTrail/res/raw/conversationlist_remgard_villagers2.json b/AndorsTrail/res/raw/conversationlist_remgard_villagers2.json new file mode 100644 index 000000000..254e24acd --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_remgard_villagers2.json @@ -0,0 +1,68 @@ +[ + { + "id": "perester", + "message": "If you are looking for Duaina, she is out in the backyard." + }, + { + "id": "freen", + "message": "Sorry, we are closed. If you want to practice your reading skills, please come back another day. If there is a specific book you are looking for, I might be able to help you.", + "replies": [ + { + "text": "No thank you. Goodbye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "almars", + "message": "He he. They will never know what hit them.", + "replies": [ + { + "text": "N", + "nextPhraseID": "almars_1" + } + ] + }, + { + "id": "almars_1", + "message": "Oh, hello! Never mind me, I am just strolling along here. Nothing strange about that. See?" + }, + { + "id": "carthe", + "replies": [ + { + "nextPhraseID": "carthe_1", + "requires": { + "progress": "fiveidols:45" + } + }, + { + "nextPhraseID": "carthe_2" + } + ] + }, + { + "id": "carthe_1", + "message": "*cough* Please leave me be. I haven't *cough* done anything!" + }, + { + "id": "carthe_2", + "message": "Hey, what are you doing in here? Don't try any funny business." + }, + { + "id": "emerei", + "message": "We don't get many visitors here these days. I hope you like what you see here in Remgard." + }, + { + "id": "janach", + "message": "This is no place for children. You had better leave." + }, + { + "id": "perlynn", + "message": "See this? The harvested crops have begun to rot. Argh, I knew we should have fixed that door when we had the chance." + }, + { + "id": "maelf", + "message": "Ah, isn't this place nice? What else could anyone wish for? This place has all that a man needs - good food, a warm bed and people to exchange stories with." + } +] diff --git a/AndorsTrail/res/raw/conversationlist_rogorn.json b/AndorsTrail/res/raw/conversationlist_rogorn.json new file mode 100644 index 000000000..53cf6b825 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_rogorn.json @@ -0,0 +1,501 @@ +[ + { + "id": "rogorn_henchman", + "replies": [ + { + "nextPhraseID": "rogorn_henchman_atk", + "requires": { + "progress": "rogorn:40" + } + }, + { + "nextPhraseID": "rogorn_henchman_noatk", + "requires": { + "progress": "rogorn:45" + } + }, + { + "nextPhraseID": "rogorn_henchman_1" + } + ] + }, + { + "id": "rogorn_henchman_atk", + "message": "For the Shadow!", + "replies": [ + { + "text": "Fight", + "nextPhraseID": "F" + } + ] + }, + { + "id": "rogorn_henchman_noatk", + "message": "Good to hear that there are at least a few people left out there willing to take a stand against Feygard." + }, + { + "id": "rogorn_henchman_1", + "message": "Should you really be out here all by yourself?" + }, + { + "id": "rogorn", + "replies": [ + { + "nextPhraseID": "rogorn_completed_1", + "requires": { + "progress": "rogorn:60" + } + }, + { + "nextPhraseID": "rogorn_attack_1", + "requires": { + "progress": "rogorn:40" + } + }, + { + "nextPhraseID": "rogorn_story_r_9", + "requires": { + "progress": "rogorn:45" + } + }, + { + "nextPhraseID": "rogorn_toldstory_1", + "requires": { + "progress": "rogorn:35" + } + }, + { + "nextPhraseID": "rogorn_first_1" + } + ] + }, + { + "id": "rogorn_first_1", + "message": "Look fellas, a kid! Out strolling here in the wilderness!", + "replies": [ + { + "text": "N", + "nextPhraseID": "rogorn_first_2" + } + ] + }, + { + "id": "rogorn_first_2", + "message": "Should you really be out here kid? These areas are dangerous.", + "replies": [ + { + "text": "I can handle myself", + "nextPhraseID": "rogorn_first_3" + }, + { + "text": "Why? What is out here?", + "nextPhraseID": "rogorn_first_4" + }, + { + "text": "You are right, I better leave", + "nextPhraseID": "X" + } + ] + }, + { + "id": "rogorn_first_3", + "message": "I bet you can.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rogorn_first_6" + } + ] + }, + { + "id": "rogorn_first_4", + "message": "Well, west of here is not much. No towns for quite a while, only the harsh and dangerous wilderness.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rogorn_first_5" + } + ] + }, + { + "id": "rogorn_first_5", + "message": "Of course, there is Carn Tower if you travel really far west, but you really do not want to head there.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rogorn_first_6" + } + ] + }, + { + "id": "rogorn_first_6", + "message": "So, what brings you to these parts of the land?", + "replies": [ + { + "text": "I am looking for a group of men led by someone by the name of Rogorn. Are you him?", + "nextPhraseID": "rogorn_story_1", + "requires": { + "progress": "rogorn:20" + } + }, + { + "text": "Just looking for any treasure that might reveal itself here.", + "nextPhraseID": "rogorn_first_7" + }, + { + "text": "I am just exploring.", + "nextPhraseID": "rogorn_first_7" + } + ] + }, + { + "id": "rogorn_first_7", + "message": "Well, keep on looking then." + }, + { + "id": "rogorn_story_1", + "message": "That depends, why do you want to know?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "rogorn", + "value": 30 + } + ], + "replies": [ + { + "text": "You are wanted by the Feygard patrol for the crimes you have committed.", + "nextPhraseID": "rogorn_story_2" + }, + { + "text": "I am seeking to deal justice wherever I can, and I heard that you are in need of being shown some justice.", + "nextPhraseID": "rogorn_story_3" + }, + { + "text": "I am sent by some guards over at the Crossroads guardhouse to look for you.", + "nextPhraseID": "rogorn_story_6" + }, + { + "text": "The guards from Feygard are looking for you, and I came to warn you.", + "nextPhraseID": "rogorn_story_12" + } + ] + }, + { + "id": "rogorn_story_2", + "message": "Hah! We? Crimes?", + "replies": [ + { + "text": "N", + "nextPhraseID": "rogorn_story_4" + } + ] + }, + { + "id": "rogorn_story_3", + "message": "Justice? What would you know of justice, kid?", + "replies": [ + { + "text": "N", + "nextPhraseID": "rogorn_story_4" + } + ] + }, + { + "id": "rogorn_story_4", + "message": "If there is someone that deserves punishment, it surely isn't us. By the Shadow, it's those snobs from Feygard that should be taught a lesson.", + "replies": [ + { + "text": "I will not listen to your lies! For Feygard!", + "nextPhraseID": "rogorn_attack_1" + }, + { + "text": "Talk all you want, I happen to know that you have stolen from Feygard, which is not acceptable.", + "nextPhraseID": "rogorn_story_5" + }, + { + "text": "What's your side of the story then?", + "nextPhraseID": "rogorn_story_r_1" + } + ] + }, + { + "id": "rogorn_story_5", + "message": "I tell you, we did not steal anything from those snobs.", + "replies": [ + { + "text": "You are still wanted dead by the Feygard patrol. For Feygard!", + "nextPhraseID": "rogorn_attack_1" + }, + { + "text": "Why are they looking for you then?", + "nextPhraseID": "rogorn_story_r_1" + } + ] + }, + { + "id": "rogorn_attack_1", + "message": "I had hoped it would not come to this. For the Shadow!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "rogorn", + "value": 40 + } + ], + "replies": [ + { + "text": "Let's fight!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "rogorn_story_6", + "message": "Talked to those guards from Feygard eh? Tell me, what is your opinion of Feygard?", + "replies": [ + { + "text": "They seem to have honorable ideals of law and order, and I respect that.", + "nextPhraseID": "rogorn_story_10" + }, + { + "text": "Their ideals seem to be a bit oppressive of the people, which I do not like.", + "nextPhraseID": "rogorn_story_9" + }, + { + "text": "I have no opinion, I try not to get involved in their business.", + "nextPhraseID": "rogorn_story_7" + }, + { + "text": "I have no idea.", + "nextPhraseID": "rogorn_story_8" + } + ] + }, + { + "id": "rogorn_story_7", + "message": "Interesting. But now that you are part of their business by coming here to look for me on their behalf, how does that fit into your unwillingness to take sides?", + "replies": [ + { + "text": "I will not listen to your lies! For Feygard!", + "nextPhraseID": "rogorn_attack_1" + }, + { + "text": "I was told that you have stolen from Feygard, which is not acceptable.", + "nextPhraseID": "rogorn_story_5" + }, + { + "text": "I want to hear your side of the story.", + "nextPhraseID": "rogorn_story_r_1" + }, + { + "text": "I am just looking to see if there is some treasure to be gained from this.", + "nextPhraseID": "rogorn_story_8" + }, + { + "text": "I have no idea.", + "nextPhraseID": "rogorn_story_8" + } + ] + }, + { + "id": "rogorn_story_8", + "message": "You should make up your mind about what your priorities are. Tell your Feygard friends that we will not be oppressed by them. Shadow be with you, child." + }, + { + "id": "rogorn_story_9", + "message": "You have got that right. They are always trying to make life hard for us little people. Let me tell you my side of the story.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rogorn_story_r_1" + } + ] + }, + { + "id": "rogorn_story_10", + "message": "Law and order? What use do we have of that if we are always persecuted by them and do not even have the freedom to live our lives the way we want?", + "replies": [ + { + "text": "N", + "nextPhraseID": "rogorn_story_11" + } + ] + }, + { + "id": "rogorn_story_11", + "message": "They are always looking for us, trying to oppress us in some way. Always trying to make our lives a little bit harder.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rogorn_story_4" + } + ] + }, + { + "id": "rogorn_story_12", + "message": "Good to hear that there still are some people willing to make a stand against Feygard. Let me tell you my side of the story.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rogorn_story_r_1" + } + ] + }, + { + "id": "rogorn_story_r_1", + "message": "Me and my boys here travelled from our home in Nor City to these northern lands a few days ago.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rogorn_story_r_2" + } + ] + }, + { + "id": "rogorn_story_r_2", + "message": "We had never been here ourselves. We had only heard stories about how tough the guards from Feygard were, and how they held their precious law above all.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rogorn_story_r_3" + } + ] + }, + { + "id": "rogorn_story_r_3", + "message": "Anyway, we got wind of a certain business opportunity here up north. One where we would be on the receiving end of a very profitable deal.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rogorn_story_r_4" + } + ] + }, + { + "id": "rogorn_story_r_4", + "message": "So we went here to conduct our business. Shortly thereafter, I guess the guards from Feygard must have been tipped off about us, since we noticed that we were being followed by the guards after a while.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rogorn_story_r_5" + } + ] + }, + { + "id": "rogorn_story_r_5", + "message": "Not willing to risk anything, considering the rumors we had heard about the guards from there, we did the only reasonable thing we could do - we abandoned the plan right away and left, before we could conduct the business we had planned.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rogorn_story_r_6" + } + ] + }, + { + "id": "rogorn_story_r_6", + "message": "However, something must have upset the guards there anyway. Now we hear that we are accused of murder and theft in Feygard, without even being there ourselves.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "rogorn", + "value": 35 + } + ], + "replies": [ + { + "text": "What was your business there?", + "nextPhraseID": "rogorn_story_r_7" + }, + { + "text": "I will not listen to your lies! For Feygard!", + "nextPhraseID": "rogorn_attack_1" + }, + { + "text": "Your story does not add up.", + "nextPhraseID": "rogorn_story_r_8" + }, + { + "text": "I believe your story. How can I help you?", + "nextPhraseID": "rogorn_story_r_9" + } + ] + }, + { + "id": "rogorn_story_r_7", + "message": "I can't really say. We do our business on behalf of Nor City, and our business is our own.", + "replies": [ + { + "text": "I will not listen to your lies! For Feygard!", + "nextPhraseID": "rogorn_attack_1" + }, + { + "text": "Your story does not add up.", + "nextPhraseID": "rogorn_story_r_8" + }, + { + "text": "I believe your story. How can I help you?", + "nextPhraseID": "rogorn_story_r_9" + } + ] + }, + { + "id": "rogorn_story_r_8", + "message": "What are you, a spy for Feygard? I told you, the accusations against us are false.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rogorn_attack_1" + } + ] + }, + { + "id": "rogorn_story_r_9", + "message": "Thank you for listening to our side of the story.", + "replies": [ + { + "text": "What now? I was sent here to find you by some guards in the Crossroads guardhouse.", + "nextPhraseID": "rogorn_story_r_10" + } + ] + }, + { + "id": "rogorn_story_r_10", + "message": "You tell those guards that you searched for us, but did not find anyone.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "rogorn", + "value": 45 + } + ], + "replies": [ + { + "text": "Will do. Goodbye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "rogorn_toldstory_1", + "message": "You are back.", + "replies": [ + { + "text": "Can you tell me your side of the story again?", + "nextPhraseID": "rogorn_story_r_1" + }, + { + "text": "I will not listen to your lies! You must be held accountable for your crimes against Feygard!", + "nextPhraseID": "rogorn_story_r_8" + }, + { + "text": "I believe your story. How can I help you?", + "nextPhraseID": "rogorn_story_r_9" + } + ] + }, + { + "id": "rogorn_completed_1", + "message": "Thank you for listening to our side of the story." + } +] diff --git a/AndorsTrail/res/raw/conversationlist_rothses.json b/AndorsTrail/res/raw/conversationlist_rothses.json new file mode 100644 index 000000000..be4842076 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_rothses.json @@ -0,0 +1,564 @@ +[ + { + "id": "rothses", + "replies": [ + { + "nextPhraseID": "rothses_c1", + "requires": { + "progress": "remgard2:45" + } + }, + { + "nextPhraseID": "rothses_1" + } + ] + }, + { + "id": "rothses_c1", + "message": "Our hero enters my shop. I am honored. How may I help you? A new set of boots perhaps, or some new gloves?", + "replies": [ + { + "text": "Let me see what you have for sale.", + "nextPhraseID": "S" + }, + { + "text": "Jhaeld told me you could help me improve my equipment.", + "nextPhraseID": "rothses_c2", + "requires": { + "progress": "remgard2:45" + } + } + ] + }, + { + "id": "rothses_c2", + "message": "Oh yes, I can make modifications to most of our defensive equipment that I sell. Want me to look through your things to see if there's anything I can improve for you?", + "replies": [ + { + "text": "Sure, go ahead.", + "nextPhraseID": "rothses_imp_s0" + }, + { + "text": "No, I would not want you going through my stuff.", + "nextPhraseID": "rothses_c3" + }, + { + "text": "Maybe some other time.", + "nextPhraseID": "rothses_c3" + } + ] + }, + { + "id": "rothses_c3", + "message": "Sure. I would be honored to have you back if you change your mind." + }, + { + "id": "rothses_1", + "message": "Hi. How may I help you? A new set of boots perhaps, or some new gloves?", + "replies": [ + { + "text": "Let me see what you have for sale.", + "nextPhraseID": "S" + }, + { + "text": "Jhaeld sent me to ask you about the people that have gone missing.", + "nextPhraseID": "rothses_3s", + "requires": { + "progress": "remgard:52" + } + }, + { + "text": "How is business?", + "nextPhraseID": "rothses_2" + } + ] + }, + { + "id": "rothses_2", + "message": "It's ok, I guess. Not as good as I would like it to be, now that the gates to the town are closed. But people here still seem to need new pieces of leather every now and then.", + "replies": [ + { + "text": "Let me see what you have for sale.", + "nextPhraseID": "S" + }, + { + "text": "Jhaeld sent me to ask you about the people that have gone missing.", + "nextPhraseID": "rothses_3s", + "requires": { + "progress": "remgard:52" + } + } + ] + }, + { + "id": "rothses_3s", + "replies": [ + { + "nextPhraseID": "rothses_19", + "requires": { + "progress": "remgard:64" + } + }, + { + "nextPhraseID": "rothses_3" + } + ] + }, + { + "id": "rothses_3", + "message": "Oh, I don't know much about that. Funny you should ask. (Rothses gives you a suspicious look)", + "replies": [ + { + "text": "Are you sure? Anything you know or might have seen may be of interest.", + "nextPhraseID": "rothses_4" + } + ] + }, + { + "id": "rothses_4", + "message": "Well, you would think that I see most of what is going on here, considering my shop is this close to Remgard's connecting entrance bridge.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rothses_5" + } + ] + }, + { + "id": "rothses_5", + "message": "However, I don't know anything about it. *cough*", + "replies": [ + { + "text": "Is there something you are not telling me?", + "nextPhraseID": "rothses_7" + }, + { + "text": "Did the guards ask you about what you know?", + "nextPhraseID": "rothses_6" + } + ] + }, + { + "id": "rothses_6", + "message": "Oh yes, they've been around asking everyone. I told them everything I know, already.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rothses_7" + } + ] + }, + { + "id": "rothses_7", + "message": "I did see Bethir the night before she disappeared. She had some equipment to sell. Nothing out of the ordinary though.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rothses_8" + } + ] + }, + { + "id": "rothses_8", + "message": "I did not see where she went after that.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rothses_9" + } + ] + }, + { + "id": "rothses_9", + "message": "Look, I told all this to the guards before. Are you implying anything?", + "replies": [ + { + "text": "I'll keep my eye on you.", + "nextPhraseID": "rothses_jhaeld_s_1" + }, + { + "text": "Thank you for your cooperation.", + "nextPhraseID": "rothses_jhaeld_s_1" + } + ] + }, + { + "id": "rothses_jhaeld_s_1", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 64 + } + ], + "replies": [ + { + "nextPhraseID": "rothses_jhaeld_s_2", + "requires": { + "progress": "remgard:61" + } + }, + { + "nextPhraseID": "rothses_20" + } + ] + }, + { + "id": "rothses_jhaeld_s_2", + "replies": [ + { + "nextPhraseID": "rothses_jhaeld_s_3", + "requires": { + "progress": "remgard:62" + } + }, + { + "nextPhraseID": "rothses_20" + } + ] + }, + { + "id": "rothses_jhaeld_s_3", + "replies": [ + { + "nextPhraseID": "rothses_jhaeld_s_4", + "requires": { + "progress": "remgard:63" + } + }, + { + "nextPhraseID": "rothses_20" + } + ] + }, + { + "id": "rothses_jhaeld_s_4", + "rewards": [ + { + "rewardType": 0, + "rewardID": "remgard", + "value": 70 + } + ], + "replies": [ + { + "nextPhraseID": "rothses_20" + } + ] + }, + { + "id": "rothses_19", + "message": "Look, I told you before.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rothses_20" + } + ] + }, + { + "id": "rothses_20", + "message": "Now, if you'll excuse me, I have things to do." + }, + { + "id": "rothses_imp_s0", + "message": "Hm, let me see.", + "replies": [ + { + "text": "N", + "nextPhraseID": "rothses_imp_s" + } + ] + }, + { + "id": "rothses_imp_s", + "replies": [ + { + "nextPhraseID": "rothses_imp_shield", + "requires": { + "item": { + "itemID": "remgard_shield_1", + "quantity": 1, + "requireType": 1 + } + } + }, + { + "nextPhraseID": "rothses_imp_shield_w", + "requires": { + "item": { + "itemID": "remgard_shield_1", + "quantity": 1, + "requireType": 2 + } + } + }, + { + "nextPhraseID": "rothses_imp_s3" + } + ] + }, + { + "id": "rothses_imp_s3", + "replies": [ + { + "nextPhraseID": "rothses_imp_gloves", + "requires": { + "item": { + "itemID": "gloves_combat1", + "quantity": 1, + "requireType": 1 + } + } + }, + { + "nextPhraseID": "rothses_imp_gloves_w", + "requires": { + "item": { + "itemID": "gloves_combat1", + "quantity": 1, + "requireType": 2 + } + } + }, + { + "nextPhraseID": "rothses_imp_s4" + } + ] + }, + { + "id": "rothses_imp_s4", + "replies": [ + { + "nextPhraseID": "rothses_imp_armour", + "requires": { + "item": { + "itemID": "armour_superior_chain", + "quantity": 1, + "requireType": 1 + } + } + }, + { + "nextPhraseID": "rothses_imp_armour_w", + "requires": { + "item": { + "itemID": "armour_superior_chain", + "quantity": 1, + "requireType": 2 + } + } + }, + { + "nextPhraseID": "rothses_imp_s5" + } + ] + }, + { + "id": "rothses_imp_s5", + "replies": [ + { + "nextPhraseID": "rothses_imp_n" + } + ] + }, + { + "id": "rothses_imp_n", + "message": "No, you don't seem to have anything that I can improve. Come back later and I might be able to help you." + }, + { + "id": "rothses_imp_shield", + "message": "That's a nice looking Remgard shield you have there. For 700 gold, I am able to improve it so that it blocks blows a bit better.", + "replies": [ + { + "text": "Sure, here is the gold.", + "nextPhraseID": "rothses_imp_shield_1", + "requires": { + "item": { + "itemID": "gold", + "quantity": 700, + "requireType": 0 + } + } + }, + { + "text": "Maybe later. Do I have anything else that you can improve?", + "nextPhraseID": "rothses_imp_s3" + } + ] + }, + { + "id": "rothses_imp_shield_1", + "replies": [ + { + "nextPhraseID": "rothses_imp_shield_2", + "requires": { + "item": { + "itemID": "remgard_shield_1", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "nextPhraseID": "rothses_imp_s3" + } + ] + }, + { + "id": "rothses_imp_shield_2", + "message": "Here you go. One improved Remgard shield.", + "rewards": [ + { + "rewardType": 1, + "rewardID": "remgard_shield_2" + } + ], + "replies": [ + { + "text": "Do I have anything else that you can improve?", + "nextPhraseID": "rothses_imp_s3" + } + ] + }, + { + "id": "rothses_imp_shield_w", + "message": "That's a nice looking Remgard shield you are wearing. Remove it from your hands and I might be able to help you improve it, if you want.", + "replies": [ + { + "text": "Anything else?", + "nextPhraseID": "rothses_imp_s3" + } + ] + }, + { + "id": "rothses_imp_gloves", + "message": "Those are some nice looking combat gloves you have there. For 300 gold, I am able to improve them so that they block blows a bit better.", + "replies": [ + { + "text": "Sure, here is the gold.", + "nextPhraseID": "rothses_imp_gloves_1", + "requires": { + "item": { + "itemID": "gold", + "quantity": 300, + "requireType": 0 + } + } + }, + { + "text": "Maybe later. Do I have anything else that you can improve?", + "nextPhraseID": "rothses_imp_s4" + } + ] + }, + { + "id": "rothses_imp_gloves_1", + "replies": [ + { + "nextPhraseID": "rothses_imp_gloves_2", + "requires": { + "item": { + "itemID": "gloves_combat1", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "nextPhraseID": "rothses_imp_s4" + } + ] + }, + { + "id": "rothses_imp_gloves_2", + "message": "Here you go. One pair of improved combat gloves.", + "rewards": [ + { + "rewardType": 1, + "rewardID": "gloves_combat2" + } + ], + "replies": [ + { + "text": "Do I have anything else that you can improve?", + "nextPhraseID": "rothses_imp_s4" + } + ] + }, + { + "id": "rothses_imp_gloves_w", + "message": "Those are some nice looking combat gloves you are wearing. Remove them from your hands and I might be able to help you improve them, if you want.", + "replies": [ + { + "text": "Anything else?", + "nextPhraseID": "rothses_imp_s4" + } + ] + }, + { + "id": "rothses_imp_armour", + "message": "Now that is one fine looking chain mail you have there! For 3000 gold, I am able to improve it so that it not only blocks blows better, but also hinders your attacks less.", + "replies": [ + { + "text": "Sure, here is the gold.", + "nextPhraseID": "rothses_imp_armour_1", + "requires": { + "item": { + "itemID": "gold", + "quantity": 3000, + "requireType": 0 + } + } + }, + { + "text": "Maybe later. Do I have anything else that you can improve?", + "nextPhraseID": "rothses_imp_s5" + } + ] + }, + { + "id": "rothses_imp_armour_1", + "replies": [ + { + "nextPhraseID": "rothses_imp_armour_2", + "requires": { + "item": { + "itemID": "armour_superior_chain", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "nextPhraseID": "rothses_imp_s5" + } + ] + }, + { + "id": "rothses_imp_armour_2", + "message": "Here you go. One improved chain mail.", + "rewards": [ + { + "rewardType": 1, + "rewardID": "armour_chain_remg" + } + ], + "replies": [ + { + "text": "Do I have anything else that you can improve?", + "nextPhraseID": "rothses_imp_s5" + } + ] + }, + { + "id": "rothses_imp_armour_w", + "message": "Now that is one fine looking chain mail you are wearing. Remove it from your chest and I might be able to help you improve it, if you want.", + "replies": [ + { + "text": "Anything else?", + "nextPhraseID": "rothses_imp_s5" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_sign_ulirfendor.json b/AndorsTrail/res/raw/conversationlist_sign_ulirfendor.json new file mode 100644 index 000000000..01d50a0e1 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_sign_ulirfendor.json @@ -0,0 +1,244 @@ +[ + { + "id": "sign_brimcave4", + "replies": [ + { + "nextPhraseID": "sign_ulirfendor_r", + "requires": { + "progress": "darkprotector:70" + } + }, + { + "nextPhraseID": "sign_ulirfendor_8", + "requires": { + "progress": "darkprotector:66" + } + }, + { + "nextPhraseID": "sign_ulirfendor_6", + "requires": { + "progress": "darkprotector:65" + } + }, + { + "nextPhraseID": "sign_ulirfendor_1" + } + ] + }, + { + "id": "sign_ulirfendor_1", + "message": "In front of the shrine, you find a book laying in the sand. 'Reflections on Kazaul rituals'.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_ulirfendor_2" + } + ] + }, + { + "id": "sign_ulirfendor_2", + "message": "You quickly look through the book, and find several chants and rituals of Kazaul.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_ulirfendor_3" + } + ] + }, + { + "id": "sign_ulirfendor_3", + "message": "There is one in particular that you spot, that talks of imbuing ancient artifacts with the power of Kazaul.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_ulirfendor_4" + } + ] + }, + { + "id": "sign_ulirfendor_4", + "message": "The ritual itself would require the heart of a lich, and from the text surrounding the ritual in the book, it could surely restore the helmet to its former glory.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "darkprotector", + "value": 55 + } + ], + "replies": [ + { + "text": "Begin the ritual.", + "nextPhraseID": "sign_ulirfendor_5" + }, + { + "text": "Leave the shrine alone.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "sign_ulirfendor_5", + "message": "You place yourself in front of the shrine, kneeling like the drawings in the book show.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "darkprotector", + "value": 60 + } + ], + "replies": [ + { + "text": "Place the helmet in front of the shrine", + "nextPhraseID": "sign_ulirfendor_6", + "requires": { + "item": { + "itemID": "helm_protector0", + "quantity": 1, + "requireType": 0 + } + } + } + ] + }, + { + "id": "sign_ulirfendor_6", + "message": "You place the helmet on the ground in front of you, leaning it slightly against the shrine.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "darkprotector", + "value": 65 + } + ], + "replies": [ + { + "text": "Place the heart of the lich in front of the shrine", + "nextPhraseID": "sign_ulirfendor_7", + "requires": { + "item": { + "itemID": "toszylae_heart", + "quantity": 1, + "requireType": 0 + } + } + } + ] + }, + { + "id": "sign_ulirfendor_7", + "message": "You place the heart of the lich beside the helmet in front of the shrine.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "darkprotector", + "value": 66 + } + ], + "replies": [ + { + "text": "Speak the words of the ritual from the book", + "nextPhraseID": "sign_ulirfendor_8" + } + ] + }, + { + "id": "sign_ulirfendor_8", + "message": "You start reciting the words of the Kazaul tongue from the book, taking great care of saying the words exactly as the book states them.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_ulirfendor_9" + } + ] + }, + { + "id": "sign_ulirfendor_9", + "message": "As you speak the words, you notice a faint glow coming from the shrine, and you get the eerie feeling that the sand on the ground almost moves by itself.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_ulirfendor_10" + } + ] + }, + { + "id": "sign_ulirfendor_10", + "message": "The movements start to get more visible, almost as if there's something crawling under the sand.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_ulirfendor_11" + } + ] + }, + { + "id": "sign_ulirfendor_11", + "message": "As you get closer to the end of the ritual, the helmet falls forward, face down in the sand.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_ulirfendor_12" + } + ] + }, + { + "id": "sign_ulirfendor_12", + "message": "Once you speak the final words of the ritual, the ground sinks slightly in front of the shrine, taking part of the helmet down under the sand.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_ulirfendor_13" + } + ] + }, + { + "id": "sign_ulirfendor_13", + "message": "As you pull it out and dust off the sand, you notice a change in texture on the part that was submerged in the sand.", + "replies": [ + { + "text": "Take the helmet", + "nextPhraseID": "sign_ulirfendor_14" + } + ] + }, + { + "id": "sign_ulirfendor_14", + "message": "You take the helmet, and examine it more closely.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "darkprotector", + "value": 70 + }, + { + "rewardType": 1, + "rewardID": "sign_ulirfendor", + "value": 0 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_ulirfendor_15" + } + ] + }, + { + "id": "sign_ulirfendor_15", + "message": "Along the side, you notice some ornaments that were not there before. The helmet also gives a slight tingling feeling in the hands as you hold it.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_ulirfendor_16" + } + ] + }, + { + "id": "sign_ulirfendor_16", + "message": "Completing the ritual must have restored the helmet to its former glory." + }, + { + "id": "sign_ulirfendor_r", + "message": "You see the shrine of Kazaul, where you performed the Kazaul ritual." + } +] diff --git a/AndorsTrail/res/raw/conversationlist_sign_waterwaycave.json b/AndorsTrail/res/raw/conversationlist_sign_waterwaycave.json new file mode 100644 index 000000000..0877b4a3b --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_sign_waterwaycave.json @@ -0,0 +1,194 @@ +[ + { + "id": "sign_waterwaycave", + "message": "You notice a slight draft blowing across your ankles as you stand admiring the quality of this woven coil of rope.", + "replies": [ + { + "text": "Take the rope.", + "nextPhraseID": "sign_waterwaycave2" + }, + { + "text": "Leave it alone.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "sign_waterwaycave2", + "message": "Despite your efforts to collect the rope, you find that it runs into what appears to be a crack in the stone wall before you. Unfortunately, this seems to be an adventure for another day." + }, + { + "id": "sign_bwm31", + "message": "(You notice some torn papers on the floor. From the looks of it, these pages seem to have been torn from a larger journal.)", + "replies": [ + { + "text": "Read the journal.", + "nextPhraseID": "sign_bwm31_1" + } + ] + }, + { + "id": "sign_bwm31_1", + "message": "Brakas, day 4. Why, oh why did I venture up here?", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_bwm31_2" + } + ] + }, + { + "id": "sign_bwm31_2", + "message": "These things are too strong for me. The first few of them went down pretty easily, but these .. things .. up here are just too strong for me.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_bwm31_3" + } + ] + }, + { + "id": "sign_bwm31_3", + "message": "I am now almost out of potions as well.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_bwm31_4" + } + ] + }, + { + "id": "sign_bwm31_4", + "message": "As I am writing this journal, I can hear them growling outside the cabin. I need to rest some more before I can have a try at killing some of them again.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_bwm31_5" + } + ] + }, + { + "id": "sign_bwm31_5", + "message": "(The paper is full of dirt, but you still manage to read most of it)", + "replies": [ + { + "text": "Continue reading.", + "nextPhraseID": "sign_bwm31_6" + } + ] + }, + { + "id": "sign_bwm31_6", + "message": "Brakas, day 7. By the Shadow, I cannot even get down the mountain now! These things are in the way, and I am too weak to get past them now.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_bwm31_7" + } + ] + }, + { + "id": "sign_bwm31_7", + "message": "My potions are now all used up. How will I ever get out of here?!", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_bwm31_8" + } + ] + }, + { + "id": "sign_bwm31_8", + "message": "Getting weaker. Must rest.", + "replies": [ + { + "text": "Continue reading.", + "nextPhraseID": "sign_bwm31_9" + } + ] + }, + { + "id": "sign_bwm31_9", + "message": "Brakas, day 9. Success! I managed to kill some of the monsters that were closest to the cabin, and some of them were carrying vials of minor healing that I could pick up!", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_bwm31_10" + } + ] + }, + { + "id": "sign_bwm31_10", + "message": "I don't recall ever being so happy about seeing some of these potions!", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_bwm31_11" + } + ] + }, + { + "id": "sign_bwm31_11", + "message": "With these, I might be able to get down the mountain again!", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_bwm31_12" + } + ] + }, + { + "id": "sign_bwm31_12", + "message": "Ha ha, those bastards down in Prim didn't get rid of me that easily.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_bwm31_13" + } + ] + }, + { + "id": "sign_bwm31_13", + "message": "Maybe if I gather enough of these potions from the monsters around the cabin, I might have enough to safely make it down again.", + "replies": [ + { + "text": "Continue reading.", + "nextPhraseID": "sign_bwm31_14" + } + ] + }, + { + "id": "sign_bwm31_14", + "message": "Brakas, day 10. I have now managed to gather enough healing potions to feel confident that I will make it down alive.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_bwm31_15" + } + ] + }, + { + "id": "sign_bwm31_15", + "message": "I just hope that those disgusting snakes will stay away from me this time, with their nasty venom.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_bwm31_16" + } + ] + }, + { + "id": "sign_bwm31_16", + "message": "If luck is on my side, I might even be home safe by nightfall.", + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_bwm31_17" + } + ] + }, + { + "id": "sign_bwm31_17", + "message": "(The journal has no more pages)" + } +] diff --git a/AndorsTrail/res/raw/conversationlist_signs_pre067.json b/AndorsTrail/res/raw/conversationlist_signs_pre067.json new file mode 100644 index 000000000..6f1befe80 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_signs_pre067.json @@ -0,0 +1,103 @@ +[ + { + "id": "keyarea_andor1", + "message": "You should talk to Mikhail first." + }, + { + "id": "note_lodars", + "message": "On the ground, you find a piece of paper with a lot of strange symbols. You can barely make out the words 'meet me at Lodar's hideaway', but you are not sure what it means." + }, + { + "id": "keyarea_crossglen_smith", + "message": "Audir shouts: Hey you, get away! You are not allowed back there." + }, + { + "id": "sign_crossglen_cave", + "message": "The sign on the wall is cracked in several places. You cannot make out anything comprehensible from the writing." + }, + { + "id": "sign_wild1", + "message": "West: Crossglen\nSouth: Fallhaven\nNorth: Feygard" + }, + { + "id": "sign_notdone", + "message": "This map is not yet done. Please come back in a later version of the game." + }, + { + "id": "sign_wild3", + "message": "West: Crossglen\nEast: Fallhaven\nNorth: Feygard" + }, + { + "id": "sign_pitcave2", + "message": "Gandir lies here, slain by the hand of his former friend Irogotu." + }, + { + "id": "sign_fallhaven1", + "message": "Welcome to Fallhaven. Watch out for pickpockets!" + }, + { + "id": "key_fallhavenchurch", + "message": "You are not allowed to enter the catacombs of Fallhaven Church without permission." + }, + { + "id": "arcir_basement_tornpage", + "message": "You see a torn page from a book titled 'Calomyran Secrets'. Blood stains its edges, and someone has scribbled the words 'Larcal' with the blood.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "calomyran", + "value": 20 + } + ] + }, + { + "id": "arcir_basement_statue", + "message": "Elythara, mother of the light. Protect us from the curse of the Shadow.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "arcir", + "value": 10 + } + ] + }, + { + "id": "fallhaven_tavern_room", + "message": "You are not allowed into the room unless you have rented it." + }, + { + "id": "fallhaven_derelict1", + "message": "Bucus shouts: Hey you, get away from there!" + }, + { + "id": "sign_wild6", + "message": "North: Crossglen\nEast: Fallhaven\nSouth: Stoutford" + }, + { + "id": "sign_wild7", + "message": "West: Stoutford\nNorth: Fallhaven" + }, + { + "id": "sign_wild10", + "message": "North: Fallhaven\nWest: Stoutford" + }, + { + "id": "flagstone_key_demon", + "message": "The demon radiates a force that pushes you back, making it impossible to approach the demon." + }, + { + "id": "flagstone_brokensteps", + "message": "You notice that this tunnel seems to be dug out from below Flagstone. Probably the work of one of the former prisoners from Flagstone.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "flagstone", + "value": 20 + } + ] + }, + { + "id": "sign_wild12", + "message": "North: Fallhaven\nEast: Vilegard\nEast: Nor City" + } +] diff --git a/AndorsTrail/res/raw/conversationlist_signs_v0611.json b/AndorsTrail/res/raw/conversationlist_signs_v0611.json new file mode 100644 index 000000000..771aea29b --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_signs_v0611.json @@ -0,0 +1,65 @@ +[ + { + "id": "remgard_tavern_room", + "message": "You are not allowed to enter this room until you have rented it." + }, + { + "id": "sign_waterway6", + "message": "South: Brimhaven\nWest: Loneford\nEast: Brightport, Lake Laeroth" + }, + { + "id": "sign_waterway9", + "message": "West: Loneford\nEast: Brightport, Lake Laeroth" + }, + { + "id": "sign_waterway11", + "message": "West: Loneford\nSouth: Brightport" + }, + { + "id": "sign_remgard0", + "message": "Welcome to Lake Laeroth and the city of Remgard!" + }, + { + "id": "wild16_cave", + "message": "The thicket is too dense for you to get through." + }, + { + "id": "sign_wild16", + "replies": [ + { + "nextPhraseID": "sign_wild16_r", + "requires": { + "progress": "kaverin:100" + } + }, + { + "nextPhraseID": "sign_wild16_1" + } + ] + }, + { + "id": "sign_wild16_r", + "message": "You squeeze through the narrow opening of the cave." + }, + { + "id": "sign_wild16_1", + "message": "You squeeze through the narrow opening of the cave. The stale air that hangs heavy within the damp cave, with its hints of mold and old parchment, fills your nose.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kaverin", + "value": 100 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "sign_wild16_2" + } + ] + }, + { + "id": "sign_wild16_2", + "message": "This must be the cave that the map leads to. This must be Vacor's old hideout." + } +] diff --git a/AndorsTrail/res/raw/conversationlist_signs_v068.json b/AndorsTrail/res/raw/conversationlist_signs_v068.json new file mode 100644 index 000000000..440306bb5 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_signs_v068.json @@ -0,0 +1,30 @@ +[ + { + "id": "foaming_flask_tavern_room", + "message": "You must rent the room before you may enter it." + }, + { + "id": "sign_vilegard_n", + "message": "The sign says:\nWelcome to Vilegard, the friendliest town around." + }, + { + "id": "sign_foamingflask", + "message": "Welcome to the Foaming Flask tavern!" + }, + { + "id": "sign_road1_nw", + "message": "North: Loneford\nEast: Nor City\nWest: Fallhaven" + }, + { + "id": "sign_road1_s", + "message": "North: Loneford\nEast: Nor City\nSouth: Vilegard" + }, + { + "id": "sign_oluag", + "message": "You see a recently dug grave." + }, + { + "id": "sign_road2", + "message": "East: Nor City\nWest: Vilegard" + } +] diff --git a/AndorsTrail/res/raw/conversationlist_taevinn.json b/AndorsTrail/res/raw/conversationlist_taevinn.json new file mode 100644 index 000000000..5d1f9bc91 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_taevinn.json @@ -0,0 +1,76 @@ +[ + { + "id": "taevinn", + "message": "Please, you must help us!", + "replies": [ + { + "text": "Do you know anything about the illness?", + "nextPhraseID": "taevinn_1", + "requires": { + "progress": "loneford:11" + } + }, + { + "text": "What's wrong?", + "nextPhraseID": "loneford_farmer0_1" + } + ] + }, + { + "id": "taevinn_1", + "message": "I'll tell you what I know. We try to follow the law around here. Without rules and laws, how would we be any different from the savages that roam the southern lands?", + "replies": [ + { + "text": "N", + "nextPhraseID": "taevinn_2" + } + ] + }, + { + "id": "taevinn_2", + "message": "But even if we here in Loneford keep as peaceful as possible, there's always someone that has a desire to cause mischief.", + "replies": [ + { + "text": "N", + "nextPhraseID": "taevinn_3" + } + ] + }, + { + "id": "taevinn_3", + "message": "Have you seen him? That fool Sienn. Him and his 'pet' are always trying to cause some trouble. We can't have that around here in our friendly village. Especially not in times like these when we are trying to show our good side to those magnificent guards from Feygard that are here.", + "replies": [ + { + "text": "N", + "nextPhraseID": "taevinn_4" + } + ] + }, + { + "id": "taevinn_4", + "message": "Did you know I tried to talk to him on several occasions about his so called 'pet'? I couldn't really make out what he was trying to tell me, but that thing of his nearly tried to kill me, it did!", + "replies": [ + { + "text": "N", + "nextPhraseID": "taevinn_5" + } + ] + }, + { + "id": "taevinn_5", + "message": "I tell you, there's mischief all around him and that thing he keeps around. I am sure they are up to something. They probably caused this illness somehow. Maybe we caught something contagious from that thing of his that he keeps around?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 24 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "loneford_ill_c_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_talion.json b/AndorsTrail/res/raw/conversationlist_talion.json new file mode 100644 index 000000000..df2e79587 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_talion.json @@ -0,0 +1,121 @@ +[ + { + "id": "talion", + "replies": [ + { + "nextPhraseID": "talion_0", + "requires": { + "progress": "maggots:51" + } + }, + { + "nextPhraseID": "talion_cured_1", + "requires": { + "progress": "maggots:50" + } + }, + { + "nextPhraseID": "talion_cure_5", + "requires": { + "progress": "maggots:45" + } + }, + { + "nextPhraseID": "talion_infect_30", + "requires": { + "progress": "maggots:30" + } + }, + { + "nextPhraseID": "talion_infect_1", + "requires": { + "progress": "maggots:10" + } + }, + { + "nextPhraseID": "talion_0" + } + ] + }, + { + "id": "talion_0", + "message": "Shadow be with you.", + "replies": [ + { + "text": "Do you know anything about the illness here in Loneford?", + "nextPhraseID": "talion_1", + "requires": { + "progress": "loneford:11" + } + }, + { + "text": "Do you have anything to trade?", + "nextPhraseID": "S" + }, + { + "text": "What blessings can you provide?", + "nextPhraseID": "talion_bless_1", + "requires": { + "progress": "maggots:51" + } + } + ] + }, + { + "id": "talion_1", + "message": "The people of Loneford are very keen on following the will of Feygard, whatever it may be.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_2" + } + ] + }, + { + "id": "talion_2", + "message": "Normally, this would not be a problem. But Lord Geomyr seems to have something against the Shadow. He will do almost anything to oppose all actions that in some way extend the reach of the Shadow.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_3" + } + ] + }, + { + "id": "talion_3", + "message": "Because of this, the people of Loneford are now actively abolishing the thought of the Shadow guiding them through their lives.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_4" + } + ] + }, + { + "id": "talion_4", + "message": "People around here would rather follow the law of Feygard than follow the old ways.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_5" + } + ] + }, + { + "id": "talion_5", + "message": "My feeling is that this illness is caused by the Shadow, as punishment to all of us here in Loneford.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "loneford", + "value": 23 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "loneford_ill_c_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_talion_2.json b/AndorsTrail/res/raw/conversationlist_talion_2.json new file mode 100644 index 000000000..c0324d84a --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_talion_2.json @@ -0,0 +1,1005 @@ +[ + { + "id": "talion_infect_1", + "message": "Oh my, what has happened to you? You don't look too well.", + "replies": [ + { + "text": "I was infected with something by a lich of Kazaul.", + "nextPhraseID": "talion_infect_5" + }, + { + "text": "A man called Ulirfendor told me he thought I might be infected with Kazaul rotworms.", + "nextPhraseID": "talion_infect_2" + }, + { + "text": "I was told to find you, and that you might be able to help me.", + "nextPhraseID": "talion_infect_4" + } + ] + }, + { + "id": "talion_infect_2", + "message": "Ah, my old friend Ulirfendor. It's good to hear that he is still alive. Wait! What was that? Rotworms you say, eh? ", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_infect_3" + } + ] + }, + { + "id": "talion_infect_3", + "message": "Nasty things, they are. I have seen people going mad from the stomach pains, and I have seen people being eaten alive from the inside.", + "replies": [ + { + "text": "Are you able to help me?", + "nextPhraseID": "talion_infect_4" + }, + { + "text": "It's not that bad. I have had worse.", + "nextPhraseID": "talion_infect_4" + } + ] + }, + { + "id": "talion_infect_4", + "message": "It's good that you came to see me. I might be able to help you.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_demon_1" + } + ] + }, + { + "id": "talion_infect_5", + "message": "A lich of Kazaul eh? Then I am sure that whatever ails you are those cursed rotworms.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_infect_3" + } + ] + }, + { + "id": "talion_demon_1", + "message": "Just to be sure, you did kill whatever creature that infected you with this, right?", + "replies": [ + { + "text": "Yes, I killed that lich.", + "nextPhraseID": "talion_demon_2", + "requires": { + "progress": "darkprotector:10" + } + }, + { + "text": "No, I have not killed it yet.", + "nextPhraseID": "talion_demon_3" + } + ] + }, + { + "id": "talion_demon_2", + "message": "Good. Then I am able to help you.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_infect_6" + } + ] + }, + { + "id": "talion_demon_3", + "message": "Then you better go take care of that first!", + "replies": [ + { + "text": "Ok, I will be back once the lich is defeated.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "talion_infect_6", + "message": "However, there is a slight problem. You see, normally my supply of potions and ingredients would be fully stocked. However with this trouble that we have here in Loneford, my supplies are lower than they have ever been before.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_infect_7" + } + ] + }, + { + "id": "talion_infect_7", + "message": "I am not even able to go out and gather new supplies, what with the illness and all.", + "replies": [ + { + "text": "Then what can you do?", + "nextPhraseID": "talion_infect_8" + }, + { + "text": "Is there anything I can do to help?", + "nextPhraseID": "talion_infect_8" + }, + { + "text": "Bah! Then you are useless to me. Guess you should have prepared better before then.", + "nextPhraseID": "talion_infect_9" + } + ] + }, + { + "id": "talion_infect_9", + "message": "Yes, I guess I should have." + }, + { + "id": "talion_infect_8", + "message": "You know what, maybe you can go out and gather some items for me. With your condition, it is important that we hurry as much as we can.", + "replies": [ + { + "text": "What would you like me to do?", + "nextPhraseID": "talion_infect_11" + }, + { + "text": "Argh! The pains are getting worse! Isn't there anything you can do?", + "nextPhraseID": "talion_infect_10" + } + ] + }, + { + "id": "talion_infect_10", + "message": "No, unfortunately not. Not with this few supplies I'm sorry.", + "replies": [ + { + "text": "Fine. What would you like me to do?", + "nextPhraseID": "talion_infect_11" + }, + { + "text": "Bah! Then you are useless to me. Guess you should have prepared better before then.", + "nextPhraseID": "talion_infect_9" + } + ] + }, + { + "id": "talion_infect_11", + "message": "For this particular cure to work, I would need help with gathering four items.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_infect_12" + } + ] + }, + { + "id": "talion_infect_12", + "message": "Or .. well .. actually, eight items in total, but four different types. Eh .. well, you get the idea.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_infect_13" + } + ] + }, + { + "id": "talion_infect_13", + "message": "Anyway, what you need to bring me is, first and foremost, some more fresh bones. Five bones will do I think. Make sure they are fresh. Any old skeleton will do, but I'd rather take some fresh bones of some nasty animal.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_infect_14" + } + ] + }, + { + "id": "talion_infect_14", + "message": "Secondly, I will need some animal fur to go with that. Two pieces of animal hair will surely do. I'm sure any old animal fur from the wilderness outside town will do.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_infect_15" + } + ] + }, + { + "id": "talion_infect_15", + "message": "Third, I will need a gland of poison from a creature called the Irdegh.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_infect_16" + } + ] + }, + { + "id": "talion_infect_16", + "message": "Now, I have not seen an Irdegh myself, but I hear they are particularly nasty creatures. Venomous like nothing I've heard of.", + "replies": [ + { + "text": "Ok, one Irdegh poison gland. Where can I find one?", + "nextPhraseID": "talion_infect_17" + }, + { + "text": "Got it. Anything else?", + "nextPhraseID": "talion_infect_18" + } + ] + }, + { + "id": "talion_infect_17", + "message": "Some people have talked about seeing some of them far to the east, across the bridges.", + "replies": [ + { + "text": "Anything else?", + "nextPhraseID": "talion_infect_18" + } + ] + }, + { + "id": "talion_infect_18", + "message": "Lastly, I would need a clean empty vial to make the potion in. I hear that the potion-maker in Fallhaven has the best vials available.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_infect_19" + } + ] + }, + { + "id": "talion_infect_19", + "message": "Bring me these things and I will be able to help you with your .. condition.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "maggots", + "value": 30 + } + ], + "replies": [ + { + "text": "Very well, I will be back shortly.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "talion_infect_30", + "message": "You return. Have you gathered those things that I asked for?", + "replies": [ + { + "text": "What was I supposed to collect again?", + "nextPhraseID": "talion_infect_11" + }, + { + "text": "I brought five bones for you.", + "nextPhraseID": "talion_bone_s" + }, + { + "text": "I brought two pieces of animal hair for you.", + "nextPhraseID": "talion_hair_s" + }, + { + "text": "I brought an Irdegh poison gland for you.", + "nextPhraseID": "talion_irdegh_s" + }, + { + "text": "I brought an empty vial for you.", + "nextPhraseID": "talion_vial_s" + }, + { + "text": "Do you know anything about the illness here in Loneford?", + "nextPhraseID": "talion_1", + "requires": { + "progress": "loneford:11" + } + }, + { + "text": "Do you have anything to trade?", + "nextPhraseID": "S" + } + ] + }, + { + "id": "talion_infect_31", + "message": "There are still some more of those items that I need.", + "replies": [ + { + "text": "What was I supposed to collect again?", + "nextPhraseID": "talion_infect_11" + }, + { + "text": "I brought five bones for you.", + "nextPhraseID": "talion_bone_s" + }, + { + "text": "I brought two pieces of animal hair for you.", + "nextPhraseID": "talion_hair_s" + }, + { + "text": "I brought an Irdegh poison gland for you.", + "nextPhraseID": "talion_irdegh_s" + }, + { + "text": "I brought an empty vial for you.", + "nextPhraseID": "talion_vial_s" + } + ] + }, + { + "id": "talion_gather_r", + "message": "No need, you already brought me that before. But thank you anyway.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_gather_s" + } + ] + }, + { + "id": "talion_bone_s", + "replies": [ + { + "nextPhraseID": "talion_gather_r", + "requires": { + "progress": "maggots:40" + } + }, + { + "nextPhraseID": "talion_bone_1" + } + ] + }, + { + "id": "talion_bone_1", + "message": "Oh, good. Please, give them to me.", + "replies": [ + { + "text": "Here you go.", + "nextPhraseID": "talion_bone_2", + "requires": { + "item": { + "itemID": "bone", + "quantity": 5, + "requireType": 0 + } + } + }, + { + "text": "On second thought, I'll be right back.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "talion_bone_2", + "message": "Thank you.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "maggots", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_gather_s" + } + ] + }, + { + "id": "talion_hair_s", + "replies": [ + { + "nextPhraseID": "talion_gather_r", + "requires": { + "progress": "maggots:41" + } + }, + { + "nextPhraseID": "talion_hair_1" + } + ] + }, + { + "id": "talion_hair_1", + "message": "Oh, good. Please, give them to me.", + "replies": [ + { + "text": "Here you go.", + "nextPhraseID": "talion_hair_2", + "requires": { + "item": { + "itemID": "hair", + "quantity": 2, + "requireType": 0 + } + } + }, + { + "text": "On second thought, I'll be right back.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "talion_hair_2", + "message": "Thank you.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "maggots", + "value": 41 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_gather_s" + } + ] + }, + { + "id": "talion_irdegh_s", + "replies": [ + { + "nextPhraseID": "talion_gather_r", + "requires": { + "progress": "maggots:42" + } + }, + { + "nextPhraseID": "talion_irdegh_1" + } + ] + }, + { + "id": "talion_irdegh_1", + "message": "Oh, good. Please, give it to me.", + "replies": [ + { + "text": "Here you go.", + "nextPhraseID": "talion_irdegh_2", + "requires": { + "item": { + "itemID": "irdegh", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "On second thought, I'll be right back.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "talion_irdegh_2", + "message": "Thank you.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "maggots", + "value": 42 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_gather_s" + } + ] + }, + { + "id": "talion_vial_s", + "replies": [ + { + "nextPhraseID": "talion_gather_r", + "requires": { + "progress": "maggots:43" + } + }, + { + "nextPhraseID": "talion_vial_1" + } + ] + }, + { + "id": "talion_vial_1", + "message": "Oh, good. Please, give it to me.", + "replies": [ + { + "text": "Here you go, one small empty vial.", + "nextPhraseID": "talion_vial_2", + "requires": { + "item": { + "itemID": "vial_empty1", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Here you go, one empty vial.", + "nextPhraseID": "talion_vial_2", + "requires": { + "item": { + "itemID": "vial_empty2", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "On second thought, I'll be right back.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "talion_vial_2", + "message": "Thank you.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "maggots", + "value": 43 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_gather_s" + } + ] + }, + { + "id": "talion_gather_s", + "replies": [ + { + "nextPhraseID": "talion_gather_s2", + "requires": { + "progress": "maggots:40" + } + }, + { + "nextPhraseID": "talion_infect_31" + } + ] + }, + { + "id": "talion_gather_s2", + "replies": [ + { + "nextPhraseID": "talion_gather_s3", + "requires": { + "progress": "maggots:41" + } + }, + { + "nextPhraseID": "talion_infect_31" + } + ] + }, + { + "id": "talion_gather_s3", + "replies": [ + { + "nextPhraseID": "talion_gather_s4", + "requires": { + "progress": "maggots:42" + } + }, + { + "nextPhraseID": "talion_infect_31" + } + ] + }, + { + "id": "talion_gather_s4", + "replies": [ + { + "nextPhraseID": "talion_cure_1", + "requires": { + "progress": "maggots:43" + } + }, + { + "nextPhraseID": "talion_infect_31" + } + ] + }, + { + "id": "talion_cure_1", + "message": "That's all I need to cure you. Good work.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "maggots", + "value": 45 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_cure_2" + } + ] + }, + { + "id": "talion_cure_2", + "message": "Now, let's get this cure started. I just need to grind this .. and mix those .. and ..", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_cure_3" + } + ] + }, + { + "id": "talion_cure_3", + "message": "Give me a minute.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_cure_4" + } + ] + }, + { + "id": "talion_cure_4", + "message": "(Talion mixes the ground up ingredients together in the vial you brought, with some leaves and berries that he kept with him.)", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_cure_5" + } + ] + }, + { + "id": "talion_cure_5", + "message": "(He gives the potion a thorough shake for quite a while.)", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_cure_6" + } + ] + }, + { + "id": "talion_cure_6", + "message": "There. Drink this. This should do it.", + "replies": [ + { + "text": "Drink the potion.", + "nextPhraseID": "talion_cure_7" + } + ] + }, + { + "id": "talion_cure_7", + "message": "(The potion smells rancid, but you manage to drink it all down. The pain from the stomach decreases, and you feel one of the rotworms crawling up into your mouth. You quickly spit the worm out into the now empty vial.)", + "rewards": [ + { + "rewardType": 0, + "rewardID": "maggots", + "value": 50 + }, + { + "rewardType": 1, + "rewardID": "potion_rotworm", + "value": 0 + }, + { + "rewardType": 3, + "rewardID": "rotworm", + "value": -99 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_cured_1" + } + ] + }, + { + "id": "talion_cured_1", + "message": "Ah, that seems to have worked. Frankly, I was a little worried that it might not have worked, but seeing you spit out that worm really confirms it. Ha ha.", + "replies": [ + { + "text": "Yuck! Those things were inside of me?", + "nextPhraseID": "talion_cured_2" + }, + { + "text": "What now?", + "nextPhraseID": "talion_cured_3" + } + ] + }, + { + "id": "talion_cured_2", + "message": "Yes. Nasty, aren't they? *chuckle*", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_cured_3" + } + ] + }, + { + "id": "talion_cured_3", + "message": "That one worm you spit out, you should make sure you hold on to that. It might be valuable in the future.", + "replies": [ + { + "text": "For what?", + "nextPhraseID": "talion_cured_4" + }, + { + "text": "Ok, I will hold on to it.", + "nextPhraseID": "talion_cured_7" + }, + { + "text": "I think I had better put it under my boot.", + "nextPhraseID": "talion_cured_5" + } + ] + }, + { + "id": "talion_cured_4", + "message": "Well, you never know. Some people really like .. exotic things.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_cured_7" + } + ] + }, + { + "id": "talion_cured_5", + "message": "It's your choice of course.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_cured_7" + } + ] + }, + { + "id": "talion_cured_7", + "message": "Now, I know you must have gone through a lot to get infected with these things. You seem like the experienced type.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_cured_8" + } + ] + }, + { + "id": "talion_cured_8", + "message": "Tell you what, I don't normally offer this to anyone, but you seem like you could use the help.", + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_cured_9" + } + ] + }, + { + "id": "talion_cured_9", + "message": "Seeing as you managed to pull through all of this, I would be willing to offer you the help of giving you blessings of the Shadow if you want.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "maggots", + "value": 51 + } + ], + "replies": [ + { + "text": "Blessings of the Shadow?", + "nextPhraseID": "talion_cured_10" + } + ] + }, + { + "id": "talion_cured_10", + "message": "Yes. Well .. for a fee of course.", + "replies": [ + { + "text": "What blessings can you provide?", + "nextPhraseID": "talion_bless_1" + } + ] + }, + { + "id": "talion_bless_1", + "message": "I am able to bless you with either the Shadow's strength, regeneration, accuracy, or even the blessing of the Shadow guardian.", + "replies": [ + { + "text": "I'm interested in the blessing of Shadow strength", + "nextPhraseID": "talion_bless_str_1" + }, + { + "text": "I'm interested in the blessing of Shadow regeneration", + "nextPhraseID": "talion_bless_heal_1" + }, + { + "text": "I'm interested in the blessing of Shadow accuracy", + "nextPhraseID": "talion_bless_acc_1" + }, + { + "text": "I'm interested in the Shadow guardian blessing", + "nextPhraseID": "talion_bless_guard_1" + }, + { + "text": "Never mind.", + "nextPhraseID": "talion_0" + } + ] + }, + { + "id": "talion_bless_str_1", + "message": "The blessing of Shadow strength grants you more strength while attacking, thus increasing the amount of damage you do on each hit. I can give you the blessing for 300 gold.", + "replies": [ + { + "text": "Ok, I'll take it for 300 gold.", + "nextPhraseID": "talion_bless_str_2", + "requires": { + "item": { + "itemID": "gold", + "quantity": 300, + "requireType": 0 + } + } + }, + { + "text": "Never mind, let's go back to those other blessings.", + "nextPhraseID": "talion_bless_1" + } + ] + }, + { + "id": "talion_bless_heal_1", + "message": "The blessing of Shadow regeneration will slowly heal you back if you get hurt. I can give you the blessing for 250 gold.", + "replies": [ + { + "text": "Ok, I'll take it for 250 gold.", + "nextPhraseID": "talion_bless_heal_2", + "requires": { + "item": { + "itemID": "gold", + "quantity": 250, + "requireType": 0 + } + } + }, + { + "text": "Never mind, let's go back to those other blessings.", + "nextPhraseID": "talion_bless_1" + } + ] + }, + { + "id": "talion_bless_acc_1", + "message": "The blessing of Shadow accuracy grants you a keen sense of where best to strike your opponent, thus increasing the chance of a successful hit while fighting. I can give you the blessing for 250 gold.", + "replies": [ + { + "text": "Ok, I'll take it for 250 gold.", + "nextPhraseID": "talion_bless_acc_2", + "requires": { + "item": { + "itemID": "gold", + "quantity": 250, + "requireType": 0 + } + } + }, + { + "text": "Never mind, let's go back to those other blessings.", + "nextPhraseID": "talion_bless_1" + } + ] + }, + { + "id": "talion_bless_guard_1", + "message": "Ah yes, the blessing of the Shadow guardian. The Shadow protects you in dark places, and keeps you safe where others might not see. I can give you the blessing for 400 gold.", + "replies": [ + { + "text": "Ok, I'll take it for 400 gold.", + "nextPhraseID": "talion_bless_guard_2", + "requires": { + "item": { + "itemID": "gold", + "quantity": 400, + "requireType": 0 + } + } + }, + { + "text": "Never mind, let's go back to those other blessings.", + "nextPhraseID": "talion_bless_1" + } + ] + }, + { + "id": "talion_bless_str_2", + "message": "Very well. *starts chanting*", + "rewards": [ + { + "rewardType": 3, + "rewardID": "shadowbless_str", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_bless_2" + } + ] + }, + { + "id": "talion_bless_heal_2", + "message": "Very well. *starts chanting*", + "rewards": [ + { + "rewardType": 3, + "rewardID": "shadowbless_heal", + "value": 45 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_bless_2" + } + ] + }, + { + "id": "talion_bless_acc_2", + "message": "Very well. *starts chanting*", + "rewards": [ + { + "rewardType": 3, + "rewardID": "shadowbless_acc", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_bless_2" + } + ] + }, + { + "id": "talion_bless_guard_2", + "message": "Very well. *starts chanting*", + "rewards": [ + { + "rewardType": 3, + "rewardID": "shadowbless_guard", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "talion_bless_2" + } + ] + }, + { + "id": "talion_bless_2", + "message": "There. I hope you will find it useful on your travels.", + "replies": [ + { + "text": "Thank you, goodbye.", + "nextPhraseID": "X" + }, + { + "text": "How about some of those other blessings?", + "nextPhraseID": "talion_bless_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_thievesguild_1.json b/AndorsTrail/res/raw/conversationlist_thievesguild_1.json new file mode 100644 index 000000000..6a796b859 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_thievesguild_1.json @@ -0,0 +1,342 @@ +[ + { + "id": "thievesguild_thief_1", + "message": "Hello kid.", + "replies": [ + { + "text": "Hello. Do you know where I can find Umar?", + "nextPhraseID": "thievesguild_thief_4" + }, + { + "text": "What is this place?", + "nextPhraseID": "thievesguild_thief_2" + } + ] + }, + { + "id": "thievesguild_thief_2", + "message": "This is our guild hall. We are safe from the guards of Fallhaven in here.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thievesguild_thief_3" + } + ] + }, + { + "id": "thievesguild_thief_3", + "message": "We can do pretty much as we like here. As long as Umar allows it, that is.", + "replies": [ + { + "text": "Do you know where I can find Umar?", + "nextPhraseID": "thievesguild_thief_4" + }, + { + "text": "Who is Umar?", + "nextPhraseID": "thievesguild_thief_5" + } + ] + }, + { + "id": "thievesguild_thief_4", + "message": "He is probably in his room over there. *points*", + "replies": [ + { + "text": "Thanks.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "thievesguild_thief_5", + "message": "Umar is our guild leader. He decides our rules and guides us in moral decisions.", + "replies": [ + { + "text": "Where can I find him?", + "nextPhraseID": "thievesguild_thief_4" + } + ] + }, + { + "id": "thievesguild_cook_1", + "message": "Hello, did you want something?", + "replies": [ + { + "text": "You look like the cook around here.", + "nextPhraseID": "thievesguild_cook_2" + }, + { + "text": "Can I see what food you have for sale?", + "nextPhraseID": "S" + }, + { + "text": "Farrik said you can prepare me a round of special mead.", + "nextPhraseID": "thievesguild_select_1", + "requires": { + "progress": "farrik:20" + } + } + ] + }, + { + "id": "thievesguild_cook_2", + "message": "That's right. Someone has to keep these ruffians fed.", + "replies": [ + { + "text": "That sure smells good", + "nextPhraseID": "thievesguild_cook_3" + }, + { + "text": "That stew looks disgusting", + "nextPhraseID": "thievesguild_cook_4" + }, + { + "text": "Never mind, bye", + "nextPhraseID": "X" + } + ] + }, + { + "id": "thievesguild_cook_3", + "message": "Thanks. This stew is coming along nicely.", + "replies": [ + { + "text": "I'm interested in buying some of that.", + "nextPhraseID": "S" + } + ] + }, + { + "id": "thievesguild_cook_4", + "message": "Yeah, I know. With ingredients this bad, what can you do? Anyway, it keeps us fed.", + "replies": [ + { + "text": "Can I see what food you have for sale?", + "nextPhraseID": "S" + } + ] + }, + { + "id": "thievesguild_cook_5", + "message": "Oh sure. Planning to get someone a bit sleepy eh?", + "replies": [ + { + "text": "N", + "nextPhraseID": "thievesguild_cook_6" + } + ] + }, + { + "id": "thievesguild_cook_6", + "message": "Don't worry, I won't tell anyone. Making sleepy food is one of my specialties.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thievesguild_cook_7" + } + ] + }, + { + "id": "thievesguild_cook_7", + "message": "Give me a minute to mix it up for you.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thievesguild_cook_8" + } + ] + }, + { + "id": "thievesguild_select_1", + "replies": [ + { + "nextPhraseID": "thievesguild_cook_10", + "requires": { + "progress": "farrik:25" + } + }, + { + "nextPhraseID": "thievesguild_cook_5" + } + ] + }, + { + "id": "thievesguild_cook_8", + "message": "There. This should do it. Here you go.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "farrik", + "value": 25 + }, + { + "rewardType": 1, + "rewardID": "sleepingmead" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "thievesguild_cook_9" + } + ] + }, + { + "id": "thievesguild_cook_10", + "message": "Yes, I gave you the special brew earlier.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thievesguild_cook_9" + } + ] + }, + { + "id": "thievesguild_cook_9", + "message": "Be careful not to get any of that stuff on your fingers, it is really potent.", + "replies": [ + { + "text": "Thank you.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "thievesguild_pickpocket_1", + "message": "Hello there.", + "replies": [ + { + "text": "Who are you?", + "nextPhraseID": "thievesguild_pickpocket_2" + }, + { + "text": "What is this place?", + "nextPhraseID": "thievesguild_thief_2" + } + ] + }, + { + "id": "thievesguild_pickpocket_2", + "message": "My real name is unimportant. People mostly call me Quickfingers.", + "replies": [ + { + "text": "Why is that?", + "nextPhraseID": "thievesguild_pickpocket_3" + } + ] + }, + { + "id": "thievesguild_pickpocket_3", + "message": "Well, I have a tendency to .. how shall I put this .. acquire certain things easily.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thievesguild_pickpocket_4" + } + ] + }, + { + "id": "thievesguild_pickpocket_4", + "message": "Things previously in the possession of other people.", + "replies": [ + { + "text": "Do you mean like stealing?", + "nextPhraseID": "thievesguild_pickpocket_5" + } + ] + }, + { + "id": "thievesguild_pickpocket_5", + "message": "No no. I wouldn't call it stealing. It's more of a transfer of ownership. To me, that is.", + "replies": [ + { + "text": "That sounds a lot like stealing to me.", + "nextPhraseID": "thievesguild_pickpocket_6" + }, + { + "text": "That sounds like a good justification.", + "nextPhraseID": "thievesguild_pickpocket_6" + } + ] + }, + { + "id": "thievesguild_pickpocket_6", + "message": "After all, we are the Thieves' Guild. What did you expect?" + }, + { + "id": "thievesguild_troublemaker_1", + "message": "Hello. Don't I recognize you from somewhere?", + "replies": [ + { + "text": "No, I'm sure we have never met.", + "nextPhraseID": "thievesguild_troublemaker_3" + }, + { + "text": "What do you do around here?", + "nextPhraseID": "thievesguild_troublemaker_2" + }, + { + "text": "Can I take a look at what supplies you have available?", + "nextPhraseID": "S" + } + ] + }, + { + "id": "thievesguild_troublemaker_2", + "message": "I keep an eye on our supplies for the guild.", + "replies": [ + { + "text": "Can I take a look at what you have available?", + "nextPhraseID": "S" + } + ] + }, + { + "id": "thievesguild_troublemaker_3", + "message": "No, I really recognize you.", + "replies": [ + { + "text": "You must have me mixed up with someone else.", + "nextPhraseID": "thievesguild_troublemaker_4" + }, + { + "text": "Maybe you have me mixed up with my brother Andor.", + "nextPhraseID": "thievesguild_troublemaker_5" + } + ] + }, + { + "id": "thievesguild_troublemaker_4", + "message": "Yes, might be.", + "replies": [ + { + "text": "Have you seen my brother around here? He looks somewhat like me.", + "nextPhraseID": "thievesguild_troublemaker_5" + } + ] + }, + { + "id": "thievesguild_troublemaker_5", + "message": "Oh yes, now that you mention it. There was that kid running around here, asking a lot of questions.", + "replies": [ + { + "text": "Do you know what he was looking for, or what he was doing?", + "nextPhraseID": "thievesguild_troublemaker_6" + } + ] + }, + { + "id": "thievesguild_troublemaker_6", + "message": "No. I don't know. I just manage the supplies.", + "replies": [ + { + "text": "Ok, thanks anyway. Goodbye.", + "nextPhraseID": "X" + }, + { + "text": "Bah, you're useless. Goodbye.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_thorin.json b/AndorsTrail/res/raw/conversationlist_thorin.json new file mode 100644 index 000000000..8841083ae --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_thorin.json @@ -0,0 +1,373 @@ +[ + { + "id": "thorin", + "replies": [ + { + "nextPhraseID": "thorin_return_1", + "requires": { + "progress": "thorin:40" + } + }, + { + "nextPhraseID": "thorin_search_1", + "requires": { + "progress": "thorin:20" + } + }, + { + "nextPhraseID": "thorin_1" + } + ] + }, + { + "id": "thorin_1", + "message": "What's this, a visitor? How unexpected.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thorin_2" + } + ] + }, + { + "id": "thorin_2", + "message": "Tell me, what can Thorin do for you?", + "replies": [ + { + "text": "What are you doing here?", + "nextPhraseID": "thorin_what_1" + }, + { + "text": "Who are you?", + "nextPhraseID": "thorin_who_1" + }, + { + "text": "Mind if I use your bed over there to rest?", + "nextPhraseID": "thorin_rest_1" + }, + { + "text": "Do you have anything to trade?", + "nextPhraseID": "thorin_trade_1" + } + ] + }, + { + "id": "thorin_what_1", + "message": "Oh, not much. Well actually, I am waiting for someone - or rather, some people.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thorin_story_1" + } + ] + }, + { + "id": "thorin_story_1", + "message": "You see, me and my fellow gatherers were out investigating the poisonous nature of the Irdegh.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thorin_story_2" + } + ] + }, + { + "id": "thorin_story_2", + "message": "Apparently, I was the only one that was careful enough when handling our wares.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thorin_story_3" + } + ] + }, + { + "id": "thorin_story_3", + "message": "The others got ill quite quick, and we hid in this cave to rest up. However, we had not anticipated these bugs in here.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thorin_story_4" + } + ] + }, + { + "id": "thorin_story_4", + "message": "Those 'Scaradon' things are tough! They did not even seem to take any damage when I hit them.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thorin_story_5" + } + ] + }, + { + "id": "thorin_story_5", + "message": "So, that's where I am now. The people that sent us to investigate told us to set up camp if we encountered any problems, and they would come help us.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thorin_story_6" + } + ] + }, + { + "id": "thorin_story_6", + "message": "So far, you are the first visitor here for quite a while.", + "replies": [ + { + "text": "You don't seem all that upset that your friends died.", + "nextPhraseID": "thorin_story_6_1" + }, + { + "text": "Anything I can do to help you meanwhile?", + "nextPhraseID": "thorin_story_7" + }, + { + "text": "Tough luck. I bet help will be here any day now. Goodbye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "thorin_story_6_1", + "message": "Nah, it's just business. Just business.", + "replies": [ + { + "text": "Anything I can do to help you?", + "nextPhraseID": "thorin_story_7" + }, + { + "text": "Tough luck. I bet your rescue will be here any day now. Goodbye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "thorin_story_7", + "message": "Hmm. Yes, actually there is something that you could do for me.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thorin_story_8" + } + ] + }, + { + "id": "thorin_story_8", + "message": "The others that I was travelling with, they did not make it this far into the cave, but got attacked by those bugs closer to the entrance.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thorin_story_9" + } + ] + }, + { + "id": "thorin_story_9", + "message": "Considering how they died, I would be very interested in seeing what effects both the Irdegh and the Scaradons had on them.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thorin_story_10" + } + ] + }, + { + "id": "thorin_story_10", + "message": "If you could find me their remains, I would be most grateful. Maybe I could continue my investigation based on their remains. Hmm, yes that would be great.", + "replies": [ + { + "text": "Sure, find their remains. Sounds easy enough, I'll do it.", + "nextPhraseID": "thorin_story_11" + }, + { + "text": "I'm all for finding dead things. I'll do it.", + "nextPhraseID": "thorin_story_11" + }, + { + "text": "Hm, this sounds a bit shady to me. I'm not sure I should do this.", + "nextPhraseID": "thorin_decline" + } + ] + }, + { + "id": "thorin_story_11", + "message": "Excellent. Bring me back the remains of all six of them. I would go search myself if those nasty bugs weren't there.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "thorin", + "value": 20 + } + ] + }, + { + "id": "thorin_who_1", + "message": "Oh, I did not introduce me, my apologies. I am Thorin.", + "replies": [ + { + "text": "What are you doing here?", + "nextPhraseID": "thorin_what_1" + } + ] + }, + { + "id": "thorin_decline", + "message": "Too bad. Good day to you then." + }, + { + "id": "thorin_search_1", + "message": "Welcome back. Did you find all six of them?", + "replies": [ + { + "text": "No, not yet. I am still looking.", + "nextPhraseID": "thorin_search_2" + }, + { + "text": "Yes, this is what I found.", + "nextPhraseID": "thorin_search_c_1", + "requires": { + "item": { + "itemID": "thorin_bone", + "quantity": 6, + "requireType": 0 + } + } + }, + { + "text": "Mind if I use your bed over there to rest?", + "nextPhraseID": "thorin_rest_1" + }, + { + "text": "Do you have anything to trade?", + "nextPhraseID": "thorin_trade_1" + } + ] + }, + { + "id": "thorin_search_2", + "message": "Ok then. Please return when you have found them all. I would go search myself if those nasty bugs weren't there." + }, + { + "id": "thorin_rest_1", + "replies": [ + { + "nextPhraseID": "thorin_rest_y", + "requires": { + "progress": "thorin:40" + } + }, + { + "nextPhraseID": "thorin_rest_n" + } + ] + }, + { + "id": "thorin_rest_y", + "message": "Please, go ahead. You may rest here as much as you like." + }, + { + "id": "thorin_rest_n", + "message": "My bed? No, that's mine. Maybe I will let you use it if you help me with a small task.", + "replies": [ + { + "text": "What's that?", + "nextPhraseID": "thorin_story_1" + } + ] + }, + { + "id": "thorin_trade_1", + "replies": [ + { + "nextPhraseID": "thorin_trade_y", + "requires": { + "progress": "thorin:40" + } + }, + { + "nextPhraseID": "thorin_trade_n" + } + ] + }, + { + "id": "thorin_trade_y", + "message": "Oh yes. The upside of this cave is that it literally is crawling with dead bodies of those Scaradon bugs.", + "replies": [ + { + "text": "N", + "nextPhraseID": "thorin_trade_y2" + } + ] + }, + { + "id": "thorin_trade_y2", + "message": "By chance, I happened to find out that with the right mixture, they can be made into a healing substance.", + "replies": [ + { + "text": "Let's see what you have to trade.", + "nextPhraseID": "S" + } + ] + }, + { + "id": "thorin_trade_n", + "message": "No. I might have something to trade if you help me with a small task.", + "replies": [ + { + "text": "What's that?", + "nextPhraseID": "thorin_story_1" + } + ] + }, + { + "id": "thorin_search_c_1", + "message": "Thank you. I would have gone myself if those nasty bugs weren't there. This turned out to be much easier though.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "thorin", + "value": 40 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "thorin_search_c_2" + } + ] + }, + { + "id": "thorin_search_c_2", + "message": "As a token of my appreciation, you are welcome to use the bed over there to rest. Also, if you are interested in healing, I might be able to provide some help.", + "replies": [ + { + "text": "I think I should use the bed to rest right now. Thank you.", + "nextPhraseID": "X" + }, + { + "text": "Do you have anything to trade?", + "nextPhraseID": "thorin_trade_1" + }, + { + "text": "You are welcome. Goodbye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "thorin_return_1", + "message": "My friend returns. What can Thorin do for you?", + "replies": [ + { + "text": "Mind if I use your bed over there to rest?", + "nextPhraseID": "thorin_rest_1" + }, + { + "text": "Do you have anything to trade?", + "nextPhraseID": "thorin_trade_1" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_thorinbone.json b/AndorsTrail/res/raw/conversationlist_thorinbone.json new file mode 100644 index 000000000..c20c99486 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_thorinbone.json @@ -0,0 +1,308 @@ +[ + { + "id": "mountaincave_sleep", + "message": "Thorin shouts at you: Hey, get away from there! That's my bed." + }, + { + "id": "remains_mcave_1", + "replies": [ + { + "nextPhraseID": "remains_mcave_a", + "requires": { + "progress": "thorin:31" + } + }, + { + "nextPhraseID": "remains_mcave_1b", + "requires": { + "progress": "thorin:20" + } + }, + { + "nextPhraseID": "remains_mcave_c" + } + ] + }, + { + "id": "remains_mcave_2", + "replies": [ + { + "nextPhraseID": "remains_mcave_a", + "requires": { + "progress": "thorin:32" + } + }, + { + "nextPhraseID": "remains_mcave_2b", + "requires": { + "progress": "thorin:20" + } + }, + { + "nextPhraseID": "remains_mcave_c" + } + ] + }, + { + "id": "remains_mcave_3", + "replies": [ + { + "nextPhraseID": "remains_mcave_a", + "requires": { + "progress": "thorin:33" + } + }, + { + "nextPhraseID": "remains_mcave_3b", + "requires": { + "progress": "thorin:20" + } + }, + { + "nextPhraseID": "remains_mcave_c" + } + ] + }, + { + "id": "remains_mcave_4", + "replies": [ + { + "nextPhraseID": "remains_mcave_a", + "requires": { + "progress": "thorin:34" + } + }, + { + "nextPhraseID": "remains_mcave_4b", + "requires": { + "progress": "thorin:20" + } + }, + { + "nextPhraseID": "remains_mcave_c" + } + ] + }, + { + "id": "remains_mcave_5", + "replies": [ + { + "nextPhraseID": "remains_mcave_a", + "requires": { + "progress": "thorin:35" + } + }, + { + "nextPhraseID": "remains_mcave_5b", + "requires": { + "progress": "thorin:20" + } + }, + { + "nextPhraseID": "remains_mcave_c" + } + ] + }, + { + "id": "remains_mcave_6", + "replies": [ + { + "nextPhraseID": "remains_mcave_a", + "requires": { + "progress": "thorin:36" + } + }, + { + "nextPhraseID": "remains_mcave_6b", + "requires": { + "progress": "thorin:20" + } + }, + { + "nextPhraseID": "remains_mcave_c" + } + ] + }, + { + "id": "remains_mcave_1b", + "message": "You see a pile of skeletal remains. This must be one of Thorin's former companions.", + "replies": [ + { + "text": "Leave it alone.", + "nextPhraseID": "X" + }, + { + "text": "Pick up one of the bones.", + "nextPhraseID": "remains_mcave_1d" + } + ] + }, + { + "id": "remains_mcave_2b", + "message": "You see a pile of skeletal remains. This must be one of Thorin's former companions.", + "replies": [ + { + "text": "Leave it alone.", + "nextPhraseID": "X" + }, + { + "text": "Pick up one of the bones.", + "nextPhraseID": "remains_mcave_2d" + } + ] + }, + { + "id": "remains_mcave_3b", + "message": "You see a pile of skeletal remains. This must be one of Thorin's former companions.", + "replies": [ + { + "text": "Leave it alone.", + "nextPhraseID": "X" + }, + { + "text": "Pick up one of the bones.", + "nextPhraseID": "remains_mcave_3d" + } + ] + }, + { + "id": "remains_mcave_4b", + "message": "You see a pile of skeletal remains. This must be one of Thorin's former companions.", + "replies": [ + { + "text": "Leave it alone.", + "nextPhraseID": "X" + }, + { + "text": "Pick up one of the bones.", + "nextPhraseID": "remains_mcave_4d" + } + ] + }, + { + "id": "remains_mcave_5b", + "message": "You see a pile of skeletal remains. This must be one of Thorin's former companions.", + "replies": [ + { + "text": "Leave it alone.", + "nextPhraseID": "X" + }, + { + "text": "Pick up one of the bones.", + "nextPhraseID": "remains_mcave_5d" + } + ] + }, + { + "id": "remains_mcave_6b", + "message": "You see a pile of skeletal remains. This must be one of Thorin's former companions.", + "replies": [ + { + "text": "Leave it alone.", + "nextPhraseID": "X" + }, + { + "text": "Pick up one of the bones.", + "nextPhraseID": "remains_mcave_6d" + } + ] + }, + { + "id": "remains_mcave_1d", + "message": "You pick up one of the bones. It seems to have been severely damaged by something corrosive.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "thorin", + "value": 31 + }, + { + "rewardType": 1, + "rewardID": "thorin_bone" + } + ] + }, + { + "id": "remains_mcave_2d", + "message": "You pick up one of the bones. It seems to have been severely damaged by something corrosive.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "thorin", + "value": 32 + }, + { + "rewardType": 1, + "rewardID": "thorin_bone" + } + ] + }, + { + "id": "remains_mcave_3d", + "message": "You pick up one of the bones. It seems to have been severely damaged by something corrosive.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "thorin", + "value": 33 + }, + { + "rewardType": 1, + "rewardID": "thorin_bone" + } + ] + }, + { + "id": "remains_mcave_4d", + "message": "You pick up one of the bones. It seems to have been severely damaged by something corrosive.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "thorin", + "value": 34 + }, + { + "rewardType": 1, + "rewardID": "thorin_bone" + } + ] + }, + { + "id": "remains_mcave_5d", + "message": "You pick up one of the bones. It seems to have been severely damaged by something corrosive.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "thorin", + "value": 35 + }, + { + "rewardType": 1, + "rewardID": "thorin_bone" + } + ] + }, + { + "id": "remains_mcave_6d", + "message": "You pick up one of the bones. It seems to have been severely damaged by something corrosive.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "thorin", + "value": 36 + }, + { + "rewardType": 1, + "rewardID": "thorin_bone" + } + ] + }, + { + "id": "remains_mcave_a", + "message": "You see a pile of skeletal remains, from where you removed some pieces earlier." + }, + { + "id": "remains_mcave_c", + "message": "You see a pile of skeletal remains." + } +] diff --git a/AndorsTrail/res/raw/conversationlist_tinlyn.json b/AndorsTrail/res/raw/conversationlist_tinlyn.json new file mode 100644 index 000000000..cba0c0542 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_tinlyn.json @@ -0,0 +1,280 @@ +[ + { + "id": "tinlyn", + "replies": [ + { + "nextPhraseID": "tinlyn_killedsheep_0", + "requires": { + "progress": "benbyr:21" + } + }, + { + "nextPhraseID": "tinlyn_killedsheep_0", + "requires": { + "progress": "tinlyn:60" + } + }, + { + "nextPhraseID": "tinlyn_complete_1", + "requires": { + "progress": "tinlyn:31" + } + }, + { + "nextPhraseID": "tinlyn_complete_1", + "requires": { + "progress": "tinlyn:30" + } + }, + { + "nextPhraseID": "tinlyn_look_1", + "requires": { + "progress": "tinlyn:15" + } + }, + { + "nextPhraseID": "tinlyn_story_1" + } + ] + }, + { + "id": "tinlyn_killedsheep_0", + "replies": [ + { + "nextPhraseID": "tinlyn_killedsheep_0_1", + "requires": { + "progress": "tinlyn:10" + } + }, + { + "nextPhraseID": "tinlyn_killedsheep_1" + } + ] + }, + { + "id": "tinlyn_killedsheep_0_1", + "rewards": [ + { + "rewardType": 0, + "rewardID": "tinlyn", + "value": 60 + } + ], + "replies": [ + { + "nextPhraseID": "tinlyn_killedsheep_1" + } + ] + }, + { + "id": "tinlyn_killedsheep_1", + "message": "You attacked my sheep! Get away from me you filthy murderer!" + }, + { + "id": "tinlyn_complete_1", + "message": "Hello again. Thank you for helping me find my lost sheep.", + "replies": [ + { + "text": "I talked to Benbyr and heard the story about you two.", + "nextPhraseID": "tinlyn_benbyr_1", + "requires": { + "progress": "benbyr:10" + } + } + ] + }, + { + "id": "tinlyn_story_1", + "message": "Hello there. You wouldn't happen to want to help an old shepherd do you?", + "replies": [ + { + "text": "What's the problem?", + "nextPhraseID": "tinlyn_story_2" + } + ] + }, + { + "id": "tinlyn_story_2", + "message": "You see, I tend my flock of sheep here. These fields are excellent pastures for them.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tinlyn_story_3" + } + ] + }, + { + "id": "tinlyn_story_3", + "message": "The thing is, I have lost four of them. Now I won't dare leave the ones I still have in my sight to go look for the lost ones.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "tinlyn", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "tinlyn_story_3_1" + } + ] + }, + { + "id": "tinlyn_story_3_1", + "replies": [ + { + "nextPhraseID": "tinlyn_story_6", + "requires": { + "progress": "tinlyn:15" + } + }, + { + "nextPhraseID": "tinlyn_story_4" + } + ] + }, + { + "id": "tinlyn_story_4", + "message": "Would you be willing to help me find them?", + "replies": [ + { + "text": "This doesn't sound like there will be any fighting involved. I only do things where there's fighting involved.", + "nextPhraseID": "tinlyn_decline_1" + }, + { + "text": "Absolutely, it would be my honor to assist you in locating your missing sheep.", + "nextPhraseID": "tinlyn_story_5" + }, + { + "text": "What would I gain from this?", + "nextPhraseID": "tinlyn_story_4_1" + } + ] + }, + { + "id": "tinlyn_decline_1", + "message": "Oh well, it didn't hurt to ask." + }, + { + "id": "tinlyn_story_4_1", + "message": "Gain? Why, my thanks of course.", + "replies": [ + { + "text": "This doesn't sound like there will be any fighting involved. I only do things where there's fighting involved.", + "nextPhraseID": "tinlyn_decline_1" + }, + { + "text": "Sure, I will help you find your sheep.", + "nextPhraseID": "tinlyn_story_5" + }, + { + "text": "No thanks, I better not get involved in this.", + "nextPhraseID": "tinlyn_decline_1" + } + ] + }, + { + "id": "tinlyn_story_5", + "message": "Good, thank you. Please put these bells around their necks so I can hear them. Return to me once you have placed bells around the neck of each of the four missing sheep.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "tinlyn", + "value": 15 + }, + { + "rewardType": 1, + "rewardID": "tinlyn_bells" + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "tinlyn_story_6" + } + ] + }, + { + "id": "tinlyn_story_6", + "message": "Return to me once you have placed bells around the neck of each of the four missing sheep." + }, + { + "id": "tinlyn_look_1", + "message": "Hello again. Did you find all four of my missing sheep?", + "replies": [ + { + "text": "Yes, I found all of them.", + "nextPhraseID": "tinlyn_found_1", + "requires": { + "progress": "tinlyn:25" + } + }, + { + "text": "Not yet. I am still looking.", + "nextPhraseID": "tinlyn_story_6" + }, + { + "text": "What was I supposed to do?", + "nextPhraseID": "tinlyn_story_2" + }, + { + "text": "I talked to Benbyr and heard the story about you two.", + "nextPhraseID": "tinlyn_benbyr_1", + "requires": { + "progress": "benbyr:10" + } + } + ] + }, + { + "id": "tinlyn_found_1", + "message": "Yes, I can hear distant sounds of bells from the fields to the south. I am sure they will come back here now that they have the bells on them.", + "replies": [ + { + "text": "I am happy to help.", + "nextPhraseID": "tinlyn_found_3" + }, + { + "text": "That was some hard work. What about a reward?", + "nextPhraseID": "tinlyn_found_2" + } + ] + }, + { + "id": "tinlyn_found_2", + "message": "I am sorry, but I am a simple shepherd. I have no wealth or magical trinkets to give you.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "tinlyn", + "value": 31 + } + ] + }, + { + "id": "tinlyn_found_3", + "message": "Thank you for helping me.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "tinlyn", + "value": 30 + } + ] + }, + { + "id": "tinlyn_benbyr_1", + "message": "Is he still around? I thought the guards got the best of him.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tinlyn_benbyr_2" + } + ] + }, + { + "id": "tinlyn_benbyr_2", + "message": "Anyway, I do not want to talk about that. I have left that kind of life behind me. Herding sheep is what I do now." + } +] diff --git a/AndorsTrail/res/raw/conversationlist_tinlyn_sheep.json b/AndorsTrail/res/raw/conversationlist_tinlyn_sheep.json new file mode 100644 index 000000000..1e7c39e53 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_tinlyn_sheep.json @@ -0,0 +1,359 @@ +[ + { + "id": "tinlyn_lostsheep1", + "replies": [ + { + "nextPhraseID": "tinlyn_lostsheep_y", + "requires": { + "progress": "tinlyn:20" + } + }, + { + "nextPhraseID": "tinlyn_lostsheep1_n" + } + ] + }, + { + "id": "tinlyn_lostsheep2", + "replies": [ + { + "nextPhraseID": "tinlyn_lostsheep_y", + "requires": { + "progress": "tinlyn:21" + } + }, + { + "nextPhraseID": "tinlyn_lostsheep2_n" + } + ] + }, + { + "id": "tinlyn_lostsheep3", + "replies": [ + { + "nextPhraseID": "tinlyn_lostsheep_y", + "requires": { + "progress": "tinlyn:22" + } + }, + { + "nextPhraseID": "tinlyn_lostsheep3_n" + } + ] + }, + { + "id": "tinlyn_lostsheep4", + "replies": [ + { + "nextPhraseID": "tinlyn_lostsheep_y", + "requires": { + "progress": "tinlyn:23" + } + }, + { + "nextPhraseID": "tinlyn_lostsheep4_n" + } + ] + }, + { + "id": "tinlyn_lostsheep1_n", + "message": "Baah!", + "replies": [ + { + "text": "Place Tinlyn's bell around the neck of the sheep.", + "nextPhraseID": "tinlyn_lostsheep1_place", + "requires": { + "item": { + "itemID": "tinlyn_bells", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Attack", + "nextPhraseID": "tinlyn_lostsheep_atk", + "requires": { + "progress": "benbyr:20" + } + } + ] + }, + { + "id": "tinlyn_lostsheep2_n", + "message": "Baah!", + "replies": [ + { + "text": "Place Tinlyn's bell around the neck of the sheep.", + "nextPhraseID": "tinlyn_lostsheep2_place", + "requires": { + "item": { + "itemID": "tinlyn_bells", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Attack", + "nextPhraseID": "tinlyn_lostsheep_atk", + "requires": { + "progress": "benbyr:20" + } + } + ] + }, + { + "id": "tinlyn_lostsheep3_n", + "message": "Baah!", + "replies": [ + { + "text": "Place Tinlyn's bell around the neck of the sheep.", + "nextPhraseID": "tinlyn_lostsheep3_place", + "requires": { + "item": { + "itemID": "tinlyn_bells", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Attack", + "nextPhraseID": "tinlyn_lostsheep_atk", + "requires": { + "progress": "benbyr:20" + } + } + ] + }, + { + "id": "tinlyn_lostsheep4_n", + "message": "Baah!", + "replies": [ + { + "text": "Place Tinlyn's bell around the neck of the sheep.", + "nextPhraseID": "tinlyn_lostsheep4_place", + "requires": { + "item": { + "itemID": "tinlyn_bells", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "Attack", + "nextPhraseID": "tinlyn_lostsheep_atk", + "requires": { + "progress": "benbyr:20" + } + } + ] + }, + { + "id": "tinlyn_lostsheep_y", + "message": "Baah!", + "replies": [ + { + "text": "Attack", + "nextPhraseID": "tinlyn_lostsheep_atk", + "requires": { + "progress": "benbyr:20" + } + } + ] + }, + { + "id": "tinlyn_lostsheep1_place", + "rewards": [ + { + "rewardType": 0, + "rewardID": "tinlyn", + "value": 20 + } + ], + "replies": [ + { + "nextPhraseID": "tinlyn_lostsheep_check_1" + } + ] + }, + { + "id": "tinlyn_lostsheep2_place", + "rewards": [ + { + "rewardType": 0, + "rewardID": "tinlyn", + "value": 21 + } + ], + "replies": [ + { + "nextPhraseID": "tinlyn_lostsheep_check_1" + } + ] + }, + { + "id": "tinlyn_lostsheep3_place", + "rewards": [ + { + "rewardType": 0, + "rewardID": "tinlyn", + "value": 22 + } + ], + "replies": [ + { + "nextPhraseID": "tinlyn_lostsheep_check_1" + } + ] + }, + { + "id": "tinlyn_lostsheep4_place", + "rewards": [ + { + "rewardType": 0, + "rewardID": "tinlyn", + "value": 23 + } + ], + "replies": [ + { + "nextPhraseID": "tinlyn_lostsheep_check_1" + } + ] + }, + { + "id": "tinlyn_lostsheep_check_1", + "replies": [ + { + "nextPhraseID": "tinlyn_lostsheep_check_2", + "requires": { + "progress": "tinlyn:20" + } + }, + { + "nextPhraseID": "tinlyn_lostsheep_placed_2" + } + ] + }, + { + "id": "tinlyn_lostsheep_check_2", + "replies": [ + { + "nextPhraseID": "tinlyn_lostsheep_check_3", + "requires": { + "progress": "tinlyn:21" + } + }, + { + "nextPhraseID": "tinlyn_lostsheep_placed_2" + } + ] + }, + { + "id": "tinlyn_lostsheep_check_3", + "replies": [ + { + "nextPhraseID": "tinlyn_lostsheep_check_4", + "requires": { + "progress": "tinlyn:22" + } + }, + { + "nextPhraseID": "tinlyn_lostsheep_placed_2" + } + ] + }, + { + "id": "tinlyn_lostsheep_check_4", + "replies": [ + { + "nextPhraseID": "tinlyn_lostsheep_placed_1", + "requires": { + "progress": "tinlyn:23" + } + }, + { + "nextPhraseID": "tinlyn_lostsheep_placed_2" + } + ] + }, + { + "id": "tinlyn_lostsheep_placed_1", + "rewards": [ + { + "rewardType": 0, + "rewardID": "tinlyn", + "value": 25 + } + ], + "replies": [ + { + "nextPhraseID": "tinlyn_lostsheep_placed_2" + } + ] + }, + { + "id": "tinlyn_lostsheep_placed_2", + "message": "(You place one of the bells around the neck of the sheep.)" + }, + { + "id": "tinlyn_lostsheep_atk", + "replies": [ + { + "nextPhraseID": "tinlyn_lostsheep_atk1", + "requires": { + "progress": "tinlyn:10" + } + }, + { + "nextPhraseID": "tinlyn_sheep_atk" + } + ] + }, + { + "id": "tinlyn_lostsheep_atk1", + "rewards": [ + { + "rewardType": 0, + "rewardID": "tinlyn", + "value": 60 + } + ], + "replies": [ + { + "nextPhraseID": "tinlyn_sheep_atk" + } + ] + }, + { + "id": "tinlyn_sheep", + "message": "Baah!", + "replies": [ + { + "text": "Attack", + "nextPhraseID": "tinlyn_lostsheep_atk", + "requires": { + "progress": "benbyr:20" + } + } + ] + }, + { + "id": "tinlyn_sheep_atk", + "rewards": [ + { + "rewardType": 0, + "rewardID": "benbyr", + "value": 21 + } + ], + "replies": [ + { + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_toszylae.json b/AndorsTrail/res/raw/conversationlist_toszylae.json new file mode 100644 index 000000000..b724f2020 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_toszylae.json @@ -0,0 +1,167 @@ +[ + { + "id": "toszylae", + "replies": [ + { + "nextPhraseID": "toszylae_10", + "requires": { + "progress": "toszylae:50" + } + }, + { + "nextPhraseID": "toszylae_1" + } + ] + }, + { + "id": "toszylae_1", + "message": "(The lich looks at you with its burning eyes, and glances at the remains of the guardian you defeated.)", + "replies": [ + { + "text": "N", + "nextPhraseID": "toszylae_2" + } + ] + }, + { + "id": "toszylae_2", + "message": "Kazaul'te vaarmun iktel urul. Klatam ku turum Kazaul'te?", + "replies": [ + { + "text": "N", + "nextPhraseID": "toszylae_3" + } + ] + }, + { + "id": "toszylae_3", + "message": "(The lich raises its hands towards the ceiling, chanting something you cannot understand.)", + "replies": [ + { + "text": "N", + "nextPhraseID": "toszylae_4" + } + ] + }, + { + "id": "toszylae_4", + "message": "(While chanting, it slowly lowers its hands forward, until pointing directly at you.)", + "replies": [ + { + "text": "N", + "nextPhraseID": "toszylae_5" + } + ] + }, + { + "id": "toszylae_5", + "message": "Klatam ku turum Kazaul'te.", + "replies": [ + { + "text": "N", + "nextPhraseID": "toszylae_6" + } + ] + }, + { + "id": "toszylae_6", + "message": "(As if having swallowed a thousand needles, you are suddenly stricken with a cascading series of spikes of pain throughout your stomach.)", + "rewards": [ + { + "rewardType": 3, + "rewardID": "rotworm", + "value": 999 + }, + { + "rewardType": 0, + "rewardID": "maggots", + "value": 10 + }, + { + "rewardType": 0, + "rewardID": "toszylae", + "value": 50 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "toszylae_7" + } + ] + }, + { + "id": "toszylae_7", + "message": "(You start to feel nauseous, and your stomach turns and twists - as if it has a life of its own.)", + "replies": [ + { + "text": "N", + "nextPhraseID": "toszylae_8" + } + ] + }, + { + "id": "toszylae_8", + "message": "(The pain increases slightly, and you start to realize that something is moving inside of you.)", + "replies": [ + { + "text": "N", + "nextPhraseID": "toszylae_9" + } + ] + }, + { + "id": "toszylae_9", + "message": "(The lich must have infected you with something.)", + "replies": [ + { + "text": "What is happening to me!?", + "nextPhraseID": "toszylae_10" + } + ] + }, + { + "id": "toszylae_10", + "message": "(The lich seems to enjoy seeing you in pain.)", + "replies": [ + { + "text": "You will pay for what you did to me!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "sign_toszylae", + "replies": [ + { + "nextPhraseID": "sign_toszylae_2", + "requires": { + "progress": "darkprotector:10" + } + }, + { + "nextPhraseID": "sign_toszylae_1" + } + ] + }, + { + "id": "sign_toszylae_1", + "message": "(Among the remains of the lich 'Toszylae' that you defeated, you find a strange looking helmet.)", + "rewards": [ + { + "rewardType": 0, + "rewardID": "darkprotector", + "value": 10 + }, + { + "rewardType": 1, + "rewardID": "sign_toszylae", + "value": 0 + } + ] + }, + { + "id": "sign_toszylae_2", + "message": "(You see the remains of the lich 'Toszylae' that you defeated.)" + } +] diff --git a/AndorsTrail/res/raw/conversationlist_toszylae_guard.json b/AndorsTrail/res/raw/conversationlist_toszylae_guard.json new file mode 100644 index 000000000..65a0261b9 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_toszylae_guard.json @@ -0,0 +1,212 @@ +[ + { + "id": "toszylae_guard", + "replies": [ + { + "nextPhraseID": "toszylae_guard_8", + "requires": { + "progress": "toszylae:45" + } + }, + { + "nextPhraseID": "toszylae_guard_5", + "requires": { + "progress": "toszylae:42" + } + }, + { + "nextPhraseID": "toszylae_guard_1" + } + ] + }, + { + "id": "toszylae_guard_1", + "message": "(The horrifying creature looks down on you with its burning eyes, and speaks in a wheezing voice)", + "replies": [ + { + "text": "N", + "nextPhraseID": "toszylae_guard_s" + } + ] + }, + { + "id": "toszylae_guard_s", + "replies": [ + { + "nextPhraseID": "toszylae_guard_3_1", + "requires": { + "progress": "toszylae:32" + } + }, + { + "nextPhraseID": "toszylae_guard_2_1", + "requires": { + "progress": "toszylae:15" + } + }, + { + "nextPhraseID": "toszylae_guard_1_1" + } + ] + }, + { + "id": "toszylae_guard_1_1", + "message": "Kulauil hamar urum Kazaul'te. Kazaul hamat urul.", + "replies": [ + { + "text": "What?", + "nextPhraseID": "toszylae_guard_1_n" + }, + { + "text": "Kazaul something?", + "nextPhraseID": "toszylae_guard_1_n" + } + ] + }, + { + "id": "toszylae_guard_1_n", + "message": "(The creature turns away)", + "replies": [ + { + "text": "Attack!", + "nextPhraseID": "toszylae_guard_1_n2" + }, + { + "text": "Leave the creature", + "nextPhraseID": "X" + } + ] + }, + { + "id": "toszylae_guard_1_n2", + "message": "(As you try to make your attack against the guardian, your arms are held back by an enormous force.)" + }, + { + "id": "toszylae_guard_2_1", + "message": "Kulauil hamar urum Kazaul'te. Kazaul hamat urul.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "toszylae", + "value": 20 + } + ], + "replies": [ + { + "text": "This must be the phrase that Ulirfendor was looking for.", + "nextPhraseID": "toszylae_guard_2_n" + } + ] + }, + { + "id": "toszylae_guard_2_n", + "message": "(The creature turns away)", + "replies": [ + { + "text": "Attack!", + "nextPhraseID": "toszylae_guard_2_n2" + }, + { + "text": "Leave the creature", + "nextPhraseID": "X" + } + ] + }, + { + "id": "toszylae_guard_2_n2", + "message": "(As you try to make your attack against the guardian, your arms are held back by an enormous force.)", + "rewards": [ + { + "rewardType": 0, + "rewardID": "toszylae", + "value": 21 + } + ] + }, + { + "id": "toszylae_guard_3_1", + "message": "Kulauil hamar urum Kazaul'te. Kazaul hamat urul.", + "replies": [ + { + "text": "Klaatu varmun ur Kazaul'te", + "nextPhraseID": "toszylae_guard_2_n" + }, + { + "text": "Klaatu ur Kazaul'te", + "nextPhraseID": "toszylae_guard_2_n" + }, + { + "text": "Klatam ur turum Kazaul'te", + "nextPhraseID": "toszylae_guard_4" + }, + { + "text": "Klaatu.. verata.. n.. nick.. (hide the rest in a well-timed cough)", + "nextPhraseID": "toszylae_guard_2_n" + } + ] + }, + { + "id": "toszylae_guard_4", + "message": "Kulum Kazaul.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "toszylae", + "value": 42 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "toszylae_guard_5" + } + ] + }, + { + "id": "toszylae_guard_5", + "message": "(Its eyes pulsate in an intense glow as the creature starts moving towards you.)", + "replies": [ + { + "text": "N", + "nextPhraseID": "toszylae_guard_6" + } + ] + }, + { + "id": "toszylae_guard_6", + "message": "(The guardian gives off a laughter that makes the hair on the back of your neck stand up.)", + "replies": [ + { + "text": "N", + "nextPhraseID": "toszylae_guard_7" + } + ] + }, + { + "id": "toszylae_guard_7", + "message": "Kazaul'te vaarmun iktel urul.", + "replies": [ + { + "text": "N", + "nextPhraseID": "toszylae_guard_8" + } + ] + }, + { + "id": "toszylae_guard_8", + "message": "(It raises its claw-like hands above its head, looking to get ready to strike at you.)", + "rewards": [ + { + "rewardType": 0, + "rewardID": "toszylae", + "value": 45 + } + ], + "replies": [ + { + "text": "Attack!", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_ulirfendor.json b/AndorsTrail/res/raw/conversationlist_ulirfendor.json new file mode 100644 index 000000000..585ad1497 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_ulirfendor.json @@ -0,0 +1,1553 @@ +[ + { + "id": "ulirfendor", + "replies": [ + { + "nextPhraseID": "ulirfendor_dp_bless_6", + "requires": { + "progress": "darkprotector:40" + } + }, + { + "nextPhraseID": "ulirfendor_dp_bless_6", + "requires": { + "progress": "darkprotector:41" + } + }, + { + "nextPhraseID": "ulirfendor_helmet_keep3", + "requires": { + "progress": "darkprotector:51" + } + }, + { + "nextPhraseID": "ulirfendor_helmet_keep2", + "requires": { + "progress": "darkprotector:50" + } + }, + { + "nextPhraseID": "ulirfendor_dp_proc_16", + "requires": { + "progress": "darkprotector:35" + } + }, + { + "nextPhraseID": "ulirfendor_dp_proc_3", + "requires": { + "progress": "darkprotector:31" + } + }, + { + "nextPhraseID": "ulirfendor_dp_proc_1", + "requires": { + "progress": "darkprotector:30" + } + }, + { + "nextPhraseID": "ulirfendor_dp_return1", + "requires": { + "progress": "darkprotector:15" + } + }, + { + "nextPhraseID": "ulirfendor_cured_1", + "requires": { + "progress": "maggots:50" + } + }, + { + "nextPhraseID": "ulirfendor_infected_8", + "requires": { + "progress": "toszylae:60" + } + }, + { + "nextPhraseID": "ulirfendor_infected_1", + "requires": { + "progress": "toszylae:50" + } + }, + { + "nextPhraseID": "ulirfendor_findparts_10", + "requires": { + "progress": "toszylae:32" + } + }, + { + "nextPhraseID": "ulirfendor_findparts_6", + "requires": { + "progress": "toszylae:30" + } + }, + { + "nextPhraseID": "ulirfendor_findparts_1", + "requires": { + "progress": "toszylae:15" + } + }, + { + "nextPhraseID": "ulirfendor_4", + "requires": { + "progress": "toszylae:10" + } + }, + { + "nextPhraseID": "ulirfendor_1" + } + ] + }, + { + "id": "ulirfendor_1", + "message": "No! Stay away! You shall not defeat me!", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_2" + } + ] + }, + { + "id": "ulirfendor_2", + "message": "Oh wait, you are not one of them. You.. you are not one of those spawns.", + "replies": [ + { + "text": "Relax, I am not here to hurt you.", + "nextPhraseID": "ulirfendor_4" + }, + { + "text": "What's going on here?", + "nextPhraseID": "ulirfendor_4" + }, + { + "text": "Who are you?", + "nextPhraseID": "ulirfendor_4" + } + ] + }, + { + "id": "ulirfendor_4", + "message": "Oh, how long have I been down here? I can't remember.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_5" + } + ] + }, + { + "id": "ulirfendor_5", + "message": "No matter. I must finish my work here. You see this shrine here?", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_5_1" + } + ] + }, + { + "id": "ulirfendor_5_1", + "message": "If my understanding is correct, this shrine is a remnant of Kazaul.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_6" + } + ] + }, + { + "id": "ulirfendor_6", + "message": "The writings on it have almost vanished, but I have managed to read parts of it. It speaks in an ancient Kazaul tongue, so all parts are not clear to me.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_7" + } + ] + }, + { + "id": "ulirfendor_7", + "message": "I am sure that this shrine is part of the cause for these .. these .. things .. that lurk in this cave. I will do anything in my power to defeat whatever mischief that comes from it.", + "replies": [ + { + "text": "What are these creatures?", + "nextPhraseID": "ulirfendor_8" + }, + { + "text": "How come these creatures do not attack you?", + "nextPhraseID": "ulirfendor_10" + }, + { + "text": "What have you translated so far?", + "nextPhraseID": "ulirfendor_12" + } + ] + }, + { + "id": "ulirfendor_8", + "message": "Ah, the Allaceph. I had not seen one for many years until I entered this cave. They are a remnant of the guardians of Kazaul.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_9" + } + ] + }, + { + "id": "ulirfendor_9", + "message": "Have you noticed how they seem to feed upon whoever tries to fight them? Cursed things, almost got a hold of me, they did.", + "replies": [ + { + "text": "How come these creatures do not attack you?", + "nextPhraseID": "ulirfendor_10" + }, + { + "text": "What have you translated from the shrine so far?", + "nextPhraseID": "ulirfendor_12" + } + ] + }, + { + "id": "ulirfendor_10", + "message": "I have placed a blessing of the Shadow upon this small island here, so that I may work uninterrupted. Strangely enough, it seems to be very effective on them.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_11" + } + ] + }, + { + "id": "ulirfendor_11", + "message": "They seem to be very cautious about it. So far, not even one has dared to approach me. Even those pesky lizards are keeping their distance.", + "replies": [ + { + "text": "What are these creatures?", + "nextPhraseID": "ulirfendor_8" + }, + { + "text": "What have you translated from the shrine so far?", + "nextPhraseID": "ulirfendor_12" + } + ] + }, + { + "id": "ulirfendor_12", + "message": "It speaks of Kazaul and of the misery that comes to anyone that opposes the will of Kazaul.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_13" + } + ] + }, + { + "id": "ulirfendor_13", + "message": "Something about 're-birth from within the followers'. Not sure I have translated that part correctly, but I think that is what it says. Definitely something about re-birth or birth.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_14" + } + ] + }, + { + "id": "ulirfendor_14", + "message": "It also speaks of someone or some .. thing called the 'Dark protector'. Most parts of the text for that is missing from the shrine however.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_15" + } + ] + }, + { + "id": "ulirfendor_15", + "message": "Whatever it means, it seems important. It is also obvious that the 'Dark protector' brings power to Kazaul, and misery to any opposition.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_16" + } + ] + }, + { + "id": "ulirfendor_16", + "message": "Regardless, it must be stopped, whatever it means. Maybe it refers to something deeper down this cave? I have not ventured further into the cave to the east since I could not get past those .. things.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "toszylae", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_16_1" + } + ] + }, + { + "id": "ulirfendor_16_1", + "replies": [ + { + "nextPhraseID": "ulirfendor_19", + "requires": { + "progress": "toszylae:15" + } + }, + { + "nextPhraseID": "ulirfendor_17" + } + ] + }, + { + "id": "ulirfendor_17", + "message": "Forgive me, I must continue translating the few readable parts left on this shrine.", + "replies": [ + { + "text": "Would you like any help with that?", + "nextPhraseID": "ulirfendor_18" + }, + { + "text": "Well, good luck with that.", + "nextPhraseID": "ulirfendor_bye" + } + ] + }, + { + "id": "ulirfendor_bye", + "message": "Thank you. Goodbye." + }, + { + "id": "ulirfendor_18", + "message": "Hm, maybe. I need to figure out what this last part should be. Hmm..", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_19" + } + ] + }, + { + "id": "ulirfendor_19", + "message": "The last part of this piece has been eroded from the rock. It begins with 'Kulauil hamar urum Kazaul'te'. But what is the rest of that?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "toszylae", + "value": 11 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_19_1" + } + ] + }, + { + "id": "ulirfendor_19_1", + "replies": [ + { + "nextPhraseID": "ulirfendor_21", + "requires": { + "progress": "toszylae:15" + } + }, + { + "nextPhraseID": "ulirfendor_19_2" + } + ] + }, + { + "id": "ulirfendor_19_2", + "message": "Argh, if this cave wasn't so damp, I bet the rest of the text would still be there.", + "replies": [ + { + "text": "I could go look for other clues about the missing parts if you want?", + "nextPhraseID": "ulirfendor_20" + }, + { + "text": "Good luck with that, goodbye.", + "nextPhraseID": "ulirfendor_bye" + } + ] + }, + { + "id": "ulirfendor_20", + "message": "Sure, you do that.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_21" + } + ] + }, + { + "id": "ulirfendor_21", + "message": "I have looked thoroughly for any clues in the western part of this cave, but have not found any. I have not entered the eastern parts of the cave however.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_22" + } + ] + }, + { + "id": "ulirfendor_22", + "message": "Also, I should warn you that I believe the shrine talks of a powerful creature somewhere in this cave. Maybe if you find that creature, it will provide some clue as to what the missing parts are? You need to be careful though.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "toszylae", + "value": 15 + } + ], + "replies": [ + { + "text": "I will go look in the eastern parts of the cave then.", + "nextPhraseID": "ulirfendor_bye" + } + ] + }, + { + "id": "ulirfendor_findparts_1", + "message": "Hello again. Did you find any clues about what the missing parts are?", + "replies": [ + { + "text": "No, I have not found any clues yet.", + "nextPhraseID": "ulirfendor_findparts_2" + }, + { + "text": "Can you tell me again what you have translated from the shrine?", + "nextPhraseID": "ulirfendor_5_1" + }, + { + "text": "Yes, I encountered a creature to the east that spoke the words you told me.", + "nextPhraseID": "ulirfendor_findparts_3", + "requires": { + "progress": "toszylae:20" + } + } + ] + }, + { + "id": "ulirfendor_findparts_2", + "message": "If you really want to help, then please go look for any other clues you might find.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_21" + } + ] + }, + { + "id": "ulirfendor_findparts_3", + "message": "Oh good, tell me, did you find any more clues?", + "replies": [ + { + "text": "Yes, the creature also spoke the words 'Kazaul hamat urul', maybe that is part of the missing piece?", + "nextPhraseID": "ulirfendor_findparts_4" + } + ] + }, + { + "id": "ulirfendor_findparts_4", + "message": "Hmm.. 'hamat urul'.. Yes of course! That's what it says on the eroded parts of the shrine!", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_findparts_5" + } + ] + }, + { + "id": "ulirfendor_findparts_5", + "message": "Excellent work my friend! Now I just need to translate it.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "toszylae", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_findparts_6" + } + ] + }, + { + "id": "ulirfendor_findparts_6", + "message": "I wonder what this whole piece means. 'Kulauil hamar urum Kazaul'te. Kazaul hamat urul' - that's the part you heard the creature speak.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_findparts_7" + } + ] + }, + { + "id": "ulirfendor_findparts_7", + "message": "The next part is 'Klatam ur turum Kazaul'te', and I am not sure what that means. Something about handing over some item?", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_findparts_8" + } + ] + }, + { + "id": "ulirfendor_findparts_8", + "message": "Maybe the creature you encountered responds to that phrase if you speak to it? If you want to help, you could go and try speaking that phrase to it.", + "replies": [ + { + "text": "Sure, I will go speak those words to the creature.", + "nextPhraseID": "ulirfendor_findparts_9" + }, + { + "text": "Whatever, I'll do it, but I hope this is the last time that I have to run back and forth!", + "nextPhraseID": "ulirfendor_findparts_9" + }, + { + "text": "No way, I have helped you enough now.", + "nextPhraseID": "ulirfendor_decline" + }, + { + "text": "I had better not get involved in this.", + "nextPhraseID": "ulirfendor_decline" + } + ] + }, + { + "id": "ulirfendor_decline", + "message": "No matter, I will find out myself then. Thank you for your help so far. Goodbye." + }, + { + "id": "ulirfendor_findparts_9", + "message": "Good. Please return as soon as possible.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "toszylae", + "value": 32 + } + ] + }, + { + "id": "ulirfendor_findparts_10", + "message": "Hello again. Did you speak those words to the creature you encountered?", + "replies": [ + { + "text": "What was I supposed to do again?", + "nextPhraseID": "ulirfendor_findparts_6" + }, + { + "text": "Can you repeat the words I was supposed to speak to the guardian?", + "nextPhraseID": "ulirfendor_findparts_11" + }, + { + "text": "No, not yet. But I am working on it.", + "nextPhraseID": "ulirfendor_findparts_9" + }, + { + "text": "Yes, it is done.", + "nextPhraseID": "ulirfendor_findparts_12", + "requires": { + "progress": "toszylae:42" + } + } + ] + }, + { + "id": "ulirfendor_findparts_11", + "message": "Sure. It's 'Klatam ur turum Kazaul'te'." + }, + { + "id": "ulirfendor_findparts_12", + "message": "So, did anything happen?", + "replies": [ + { + "text": "The creature started attacking me.", + "nextPhraseID": "ulirfendor_findparts_13" + }, + { + "text": "No, nothing happened.", + "nextPhraseID": "ulirfendor_findparts_13" + } + ] + }, + { + "id": "ulirfendor_findparts_13", + "message": "Well, you should probably investigate that area some more. I am sure there are more clues in there about what this shrine speaks of." + }, + { + "id": "ulirfendor_infected_1", + "message": "(Ulirfendor gives you a terrified look)", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_infected_2" + } + ] + }, + { + "id": "ulirfendor_infected_2", + "message": "You are back! Please tell me you are well! Please tell me nothing happened to you!", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_infected_3" + } + ] + }, + { + "id": "ulirfendor_infected_3", + "message": "I managed to translate the piece that we spoke about. Oh, what have I done. Please, tell me you are well!", + "replies": [ + { + "text": "No, I am not well. My stomach is turning and I feel weaker than usual. I encountered a lich down there that did something to me.", + "nextPhraseID": "ulirfendor_infected_4" + } + ] + }, + { + "id": "ulirfendor_infected_4", + "message": "Nooo! What have I done?", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_infected_5" + } + ] + }, + { + "id": "ulirfendor_infected_5", + "message": "You see, while you were away, I managed to translate the words that we spoke about before.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_infected_6" + } + ] + }, + { + "id": "ulirfendor_infected_6", + "message": "The part that the creature spoke basically means 'No offering is worthy for Kazaul'.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_infected_7" + } + ] + }, + { + "id": "ulirfendor_infected_7", + "message": "Furthermore, the last part, that I made you speak to the creature, 'Klatam ur turum Kazaul'te', means 'My body for Kazaul'.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_infected_8" + } + ] + }, + { + "id": "ulirfendor_infected_8", + "message": "Oh, what have I done? I made you say it, and now you are touched by its vile essence.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "toszylae", + "value": 60 + } + ], + "replies": [ + { + "text": "It's not that bad. I have had worse.", + "nextPhraseID": "ulirfendor_infected_9" + }, + { + "text": "What can I do to get rid of this affliction?", + "nextPhraseID": "ulirfendor_infected_9" + }, + { + "text": "You better have a plan for how you should repay me for this trickery!", + "nextPhraseID": "ulirfendor_infected_9" + }, + { + "text": "I at least defeated the lich that infected me with this thing.", + "nextPhraseID": "ulirfendor_demon_s", + "requires": { + "progress": "darkprotector:10" + } + }, + { + "text": "I found a strange looking helmet among the remains of the lich that I defeated. Do you know anything about it?", + "nextPhraseID": "ulirfendor_helmet_s", + "requires": { + "progress": "toszylae:70" + } + } + ] + }, + { + "id": "ulirfendor_infected_9", + "message": "Let me have a look at you.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_infected_10" + } + ] + }, + { + "id": "ulirfendor_infected_10", + "message": "No.. can it be? Are they actually real?", + "replies": [ + { + "text": "What is?", + "nextPhraseID": "ulirfendor_infected_11" + } + ] + }, + { + "id": "ulirfendor_infected_11", + "message": "You show all the signs. If this is true, then you are in great danger.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_infected_12" + } + ] + }, + { + "id": "ulirfendor_infected_12", + "message": "Long ago, I read a book on Kazaul rituals. The first part of one particular ritual I read about talks about 'the carrier', that supposedly is infected with Kazaul rotworms.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_infected_13" + } + ] + }, + { + "id": "ulirfendor_infected_13", + "message": "The Kazaul rotworms need a living being to feed upon, before their eggs can hatch. Their eggs can slowly kill a person from the inside, and the worms themselves cause the carrier to become weak during the whole process.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_infected_14" + } + ] + }, + { + "id": "ulirfendor_infected_14", + "message": "The ritual proceeds with the carrier being eaten alive by the rotworms and their eggs. Also, the process can have .. shall we say .. unusual effects on the carrier.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_infected_15" + } + ] + }, + { + "id": "ulirfendor_infected_15", + "message": "Needless to say, you are in great danger, and you should seek help immediately.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "maggots", + "value": 20 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_infected_16" + } + ] + }, + { + "id": "ulirfendor_infected_16", + "message": "The ritual proceeds with the carrier being eaten from the inside by the rotworms and their eggs, in effect, giving birth to the creatures within. Also, the process can have .. shall we say .. unusual effects on the carrier before that.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_infected_17" + } + ] + }, + { + "id": "ulirfendor_infected_17", + "message": "You should hurry and seek help from one of the priests of the Shadow as quickly as possible. My dear friend Talion in the temple of Loneford should be able to help you.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "maggots", + "value": 21 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_infected_18_s" + } + ] + }, + { + "id": "ulirfendor_infected_18_s", + "replies": [ + { + "nextPhraseID": "ulirfendor_infected_18", + "requires": { + "progress": "toszylae:70" + } + }, + { + "nextPhraseID": "ulirfendor_infected_19" + } + ] + }, + { + "id": "ulirfendor_infected_18", + "message": "Seek him out immediately. Hurry! You might not have much time.", + "replies": [ + { + "text": "Ok, I will go to Talion in the Loneford temple at once. Goodbye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "ulirfendor_infected_19", + "message": "I should also tell you that it is of great importance that you first destroy whatever creature that infected you with this.", + "replies": [ + { + "text": "Ok, I will defeat the lich first. Goodbye.", + "nextPhraseID": "X" + }, + { + "text": "I defeated the lich in the depths of the eastern cave.", + "nextPhraseID": "ulirfendor_demon_s", + "requires": { + "progress": "darkprotector:10" + } + } + ] + }, + { + "id": "ulirfendor_demon_s", + "replies": [ + { + "nextPhraseID": "ulirfendor_demon_1", + "requires": { + "progress": "toszylae:70" + } + }, + { + "nextPhraseID": "ulirfendor_demon_d1" + } + ] + }, + { + "id": "ulirfendor_demon_1", + "message": "Yes, you told me that you killed the lich. Excellent work.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_demon_2" + } + ] + }, + { + "id": "ulirfendor_demon_2", + "message": "The people of the surrounding towns will have you to thank.", + "replies": [ + { + "text": "No problem. Goodbye.", + "nextPhraseID": "X" + }, + { + "text": "I found a strange looking helmet among the remains of that lich. Do you know anything about it?", + "nextPhraseID": "ulirfendor_helmet_s", + "requires": { + "progress": "toszylae:70" + } + } + ] + }, + { + "id": "ulirfendor_demon_d1", + "message": "Oh, that is good news indeed. A lich you say? With your help, the people of the surrounding towns should be safe from whatever mischief the lich could have caused now.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "toszylae", + "value": 70 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_demon_d2" + } + ] + }, + { + "id": "ulirfendor_demon_d2", + "message": "Thank you so much for your help!", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_demon_2" + } + ] + }, + { + "id": "ulirfendor_helmet_s", + "replies": [ + { + "nextPhraseID": "ulirfendor_helmet_1", + "requires": { + "progress": "maggots:50" + } + }, + { + "nextPhraseID": "ulirfendor_helmet_d1" + } + ] + }, + { + "id": "ulirfendor_helmet_d1", + "message": "That is most interesting, but you seem to have more pressing matters to attend to.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_infected_17" + } + ] + }, + { + "id": "ulirfendor_cured_1", + "message": "I am glad to see that you are looking better than before. I assume you got the help you needed from Talion in Loneford?", + "replies": [ + { + "text": "Yes, Talion cured me of that thing.", + "nextPhraseID": "ulirfendor_cured_2" + } + ] + }, + { + "id": "ulirfendor_cured_2", + "message": "That's good to hear. I hope that .. thing .. didn't have any permanent side-effects on you.", + "replies": [ + { + "text": "I defeated the lich in the depths of the eastern cave.", + "nextPhraseID": "ulirfendor_demon_s", + "requires": { + "progress": "darkprotector:10" + } + }, + { + "text": "I found a strange looking helmet among the remains of that lich. Do you know anything about it?", + "nextPhraseID": "ulirfendor_helmet_s", + "requires": { + "progress": "toszylae:70" + } + } + ] + }, + { + "id": "ulirfendor_helmet_1", + "message": "Could it be? Hmm. Let me look at that thing.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_helmet_2" + } + ] + }, + { + "id": "ulirfendor_helmet_2", + "message": "Those markings on it are most peculiar. It was found by the lich that you spoke of?", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_helmet_3" + } + ] + }, + { + "id": "ulirfendor_helmet_3", + "message": "Hmm. You know what, this could actually be connected to what the shrine speaks of - The Dark Protector", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_helmet_4" + } + ] + }, + { + "id": "ulirfendor_helmet_4", + "message": "I am not certain of what the term 'The Dark Protector' refers to. At first I thought it might be some creature protecting something, but this helmet seems to fit better in on what the shrine speaks of.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_helmet_5" + } + ] + }, + { + "id": "ulirfendor_helmet_5", + "message": "It could either be the helmet itself, or that the helmet has some effect on whoever wears it, meaning that the wearer will become the Dark Protector.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_helmet_6" + } + ] + }, + { + "id": "ulirfendor_helmet_6", + "message": "Nevertheless, I am almost certain that this artifact is connected to what this shrine speaks of, and that the artifact is rich with Kazaul influence.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_helmet_7" + } + ] + }, + { + "id": "ulirfendor_helmet_7", + "message": "As such, it would most certainly bring misery to the surroundings of whoever carries it. Directly or indirectly, I do not know.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_helmet_8" + } + ] + }, + { + "id": "ulirfendor_helmet_8", + "message": "I say, we must destroy that item immediately to make sure that the Kazaul taint is forever cleansed from this place and to make sure it does not fall into the wrong hands.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "darkprotector", + "value": 15 + } + ], + "replies": [ + { + "text": "He he, a powerful item you say? How much would you think it is worth?", + "nextPhraseID": "ulirfendor_helmet_worth" + }, + { + "text": "What should we do in order to destroy it?", + "nextPhraseID": "ulirfendor_helmet_n2" + }, + { + "text": "Absolutely. I will do anything to protect the people from this thing.", + "nextPhraseID": "ulirfendor_helmet_n1" + }, + { + "text": "Interesting. How powerful could someone become by wearing this thing?", + "nextPhraseID": "ulirfendor_helmet_power" + } + ] + }, + { + "id": "ulirfendor_helmet_worth", + "message": "Worth!? What difference would that make? We need to destroy it immediately!", + "replies": [ + { + "text": "How powerful could someone become by wearing this thing?", + "nextPhraseID": "ulirfendor_helmet_power" + }, + { + "text": "What should we do in order to destroy it?", + "nextPhraseID": "ulirfendor_helmet_n2" + }, + { + "text": "No. I will keep this item for myself instead.", + "nextPhraseID": "ulirfendor_helmet_keep1" + } + ] + }, + { + "id": "ulirfendor_helmet_power", + "message": "I don't even want to think about that. It would surely bring misery to the surroundings of whoever wears it. We must destroy it immediately!", + "replies": [ + { + "text": "He he, sounds powerful. How much would you think it is worth?", + "nextPhraseID": "ulirfendor_helmet_worth" + }, + { + "text": "What should we do in order to destroy it?", + "nextPhraseID": "ulirfendor_helmet_n2" + }, + { + "text": "No. I will keep this item for myself instead.", + "nextPhraseID": "ulirfendor_helmet_keep1" + } + ] + }, + { + "id": "ulirfendor_helmet_n1", + "message": "I'm glad to hear that.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_helmet_n2" + } + ] + }, + { + "id": "ulirfendor_helmet_n2", + "message": "To destroy it, I think it will suffice to use what we normally use when removing the taint of Kazaul - a vial of purifying spirit.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_helmet_n3" + } + ] + }, + { + "id": "ulirfendor_helmet_n3", + "message": "Fortunately, I always carry some on me, so that won't be a problem.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_helmet_n4" + } + ] + }, + { + "id": "ulirfendor_helmet_n4", + "message": "What could be a problem however, is the other thing we will need. This artifact is most likely connected to that lich you encountered.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_helmet_n5" + } + ] + }, + { + "id": "ulirfendor_helmet_n5", + "message": "We would need to use the vial of purifying spirit on something powerful from that lich as well.", + "replies": [ + { + "text": "I managed to get the heart of the lich, would that do?", + "nextPhraseID": "ulirfendor_helmet_n6" + } + ] + }, + { + "id": "ulirfendor_helmet_n6", + "message": "The heart? Oh yes, that would surely do.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "darkprotector", + "value": 26 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_helmet_n7" + } + ] + }, + { + "id": "ulirfendor_helmet_n7", + "message": "Quickly now, give me the helmet and the heart of the lich, and I will begin the procedure.", + "replies": [ + { + "text": "Here is the helmet.", + "nextPhraseID": "ulirfendor_dp_proc_1", + "requires": { + "item": { + "itemID": "helm_protector0", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "I think I should give this a second thought before we begin.", + "nextPhraseID": "ulirfendor_helmet_n8" + }, + { + "text": "No. I will keep this item for myself instead.", + "nextPhraseID": "ulirfendor_helmet_keep1" + } + ] + }, + { + "id": "ulirfendor_helmet_n8", + "message": "Think all you want, but please hurry. We need to destroy this thing as soon as possible!" + }, + { + "id": "ulirfendor_dp_proc_1", + "message": "Thank you. Next, I need the heart of that lich.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "darkprotector", + "value": 30 + } + ], + "replies": [ + { + "text": "Here it is.", + "nextPhraseID": "ulirfendor_dp_proc_2", + "requires": { + "item": { + "itemID": "toszylae_heart", + "quantity": 1, + "requireType": 0 + } + } + } + ] + }, + { + "id": "ulirfendor_dp_proc_2", + "message": "Excellent. I will begin the procedure immediately.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "darkprotector", + "value": 31 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_proc_3" + } + ] + }, + { + "id": "ulirfendor_dp_proc_3", + "message": "(Ulirfendor places the helmet and the lich's heart on the ground before him, and opens his backpack of items.)", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_proc_4" + } + ] + }, + { + "id": "ulirfendor_dp_proc_4", + "message": "(He pulls out a leathery potion case from his backpack, and takes out a vial of clear but almost shining liquid.)", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_proc_5" + } + ] + }, + { + "id": "ulirfendor_dp_proc_5", + "message": "(Ulirfendor pours the contents of the vial on the helmet and the heart in circling motions, taking good care to not spill any on the ground.)", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_proc_6" + } + ] + }, + { + "id": "ulirfendor_dp_proc_6", + "message": "It should be as simple as that really. Powerful stuff this.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_proc_7" + } + ] + }, + { + "id": "ulirfendor_dp_proc_7", + "message": "(The surface of the helmet seems to freeze, almost like it had a layer of ice on it.)", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_proc_8" + } + ] + }, + { + "id": "ulirfendor_dp_proc_8", + "message": "(After a while, small cracks appear on the surface, making tiny sounds as they appear.)", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_proc_9" + } + ] + }, + { + "id": "ulirfendor_dp_proc_9", + "message": "(The cracks start to get larger and more dense along the surface, until the helmet is completely covered by them.)", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_proc_10" + } + ] + }, + { + "id": "ulirfendor_dp_proc_10", + "message": "Now, watch this. I love this part.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_proc_11" + } + ] + }, + { + "id": "ulirfendor_dp_proc_11", + "message": "(Ulirfendor takes aim with his foot and stomps the helmet with the heel of his boot in a powerful motion.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_proc_12" + } + ] + }, + { + "id": "ulirfendor_dp_proc_12", + "message": "(The helmet completely shatters, leaving nothing but a fine dust.)", + "rewards": [ + { + "rewardType": 0, + "rewardID": "darkprotector", + "value": 35 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_proc_13" + } + ] + }, + { + "id": "ulirfendor_dp_proc_13", + "message": "Ha ha! Look at that!", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_proc_14" + } + ] + }, + { + "id": "ulirfendor_dp_proc_14", + "message": "(He does the same with the heart that also seems to have completely frozen and gotten covered with cracks.)", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_proc_15" + } + ] + }, + { + "id": "ulirfendor_dp_proc_15", + "message": "Ah, that sure felt good.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_proc_16" + } + ] + }, + { + "id": "ulirfendor_dp_proc_16", + "message": "You, my friend, have done a great deed here today. This thing would have brought great misery if it would have fallen into the wrong hands.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_proc_17" + } + ] + }, + { + "id": "ulirfendor_dp_proc_17", + "message": "The people of the surrounding towns are now safe from whatever misery that helmet would have brought. All thanks to you!", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_proc_18" + } + ] + }, + { + "id": "ulirfendor_dp_proc_18", + "message": "As a token of my appreciation, I am willing to grant upon you a blessing of the Shadow.", + "replies": [ + { + "text": "What would the blessing do?", + "nextPhraseID": "ulirfendor_dp_bless_2" + }, + { + "text": "Thank you, but that will not be necessary. I am just happy to help.", + "nextPhraseID": "ulirfendor_dp_bless_1" + }, + { + "text": "Thank you, please go ahead.", + "nextPhraseID": "ulirfendor_dp_bless_3" + } + ] + }, + { + "id": "ulirfendor_dp_bless_1", + "message": "You truly have a large heart.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "darkprotector", + "value": 41 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_bless_6" + } + ] + }, + { + "id": "ulirfendor_dp_bless_2", + "message": "The blessing will grant you the aid of the Shadow while in combat, protecting you from harmful effects that you opponent might inflict upon you.", + "replies": [ + { + "text": "Thank you, but that will not be necessary. I am just happy to help.", + "nextPhraseID": "ulirfendor_dp_bless_1" + }, + { + "text": "Thank you, please go ahead.", + "nextPhraseID": "ulirfendor_dp_bless_3" + } + ] + }, + { + "id": "ulirfendor_dp_bless_3", + "message": "Very well, I will give you the dark blessing of the Shadow.", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_bless_4" + } + ] + }, + { + "id": "ulirfendor_dp_bless_4", + "message": "(Ulirfendor starts chanting in a tongue that you do not recognize.)", + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_bless_5" + } + ] + }, + { + "id": "ulirfendor_dp_bless_5", + "message": "There. You now have the dark blessing of the Shadow upon you.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "darkprotector", + "value": 40 + }, + { + "rewardType": 2, + "rewardID": 20, + "value": 1 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_dp_bless_6" + } + ] + }, + { + "id": "ulirfendor_dp_bless_6", + "message": "Thank you yet again for all you have done here." + }, + { + "id": "ulirfendor_helmet_keep1", + "message": "What!? Keep it!? Have you gone mad? We need to destroy it to protect the people!", + "replies": [ + { + "text": "Who knows what power I could gain from it? I will keep this for myself.", + "nextPhraseID": "ulirfendor_helmet_keep2" + }, + { + "text": "It could be worth a lot. I will keep this for myself.", + "nextPhraseID": "ulirfendor_helmet_keep2" + }, + { + "text": "I think I should give this a second thought before we begin.", + "nextPhraseID": "ulirfendor_helmet_n8" + } + ] + }, + { + "id": "ulirfendor_helmet_keep2", + "message": "What is this!? I knew there was something wrong about you the first time I saw you.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "darkprotector", + "value": 50 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "ulirfendor_helmet_keep3" + } + ] + }, + { + "id": "ulirfendor_helmet_keep3", + "message": "By the Shadow, I will stop you. Whatever it takes. You will not live to see the next day!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "darkprotector", + "value": 51 + } + ], + "replies": [ + { + "text": "Attack!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "ulirfendor_dp_return1", + "message": "Hello again. Have you made up your mind about what we talked about before?", + "replies": [ + { + "text": "What was that about destroying the helmet?", + "nextPhraseID": "ulirfendor_helmet_8" + }, + { + "text": "Can you tell me again what you think about this helmet?", + "nextPhraseID": "ulirfendor_helmet_2" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_umar.json b/AndorsTrail/res/raw/conversationlist_umar.json new file mode 100644 index 000000000..fea26af0c --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_umar.json @@ -0,0 +1,346 @@ +[ + { + "id": "umar_select_1", + "replies": [ + { + "nextPhraseID": "umar_return_1", + "requires": { + "progress": "andor:51" + } + }, + { + "nextPhraseID": "umar_novisit_1" + } + ] + }, + { + "id": "umar_return_1", + "message": "Hello again, my friend.", + "replies": [ + { + "text": "Hello.", + "nextPhraseID": "umar_return_2" + }, + { + "text": "Nice to meet you. Goodbye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "umar_return_2", + "message": "Anything else I can help you with?", + "replies": [ + { + "text": "Can you repeat what you said about Andor?", + "nextPhraseID": "umar_5" + }, + { + "text": "Nice to meet you. Goodbye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "umar_novisit_1", + "message": "Hello. How did your search go?", + "replies": [ + { + "text": "What search?", + "nextPhraseID": "umar_2" + } + ] + }, + { + "id": "umar_2", + "message": "Last time we talked, you asked for the way to Lodar's Hideaway. Did you find it?", + "replies": [ + { + "text": "We have never met.", + "nextPhraseID": "umar_3" + }, + { + "text": "You must have me confused with my brother Andor. We look very much alike.", + "nextPhraseID": "umar_4" + } + ] + }, + { + "id": "umar_3", + "message": "Oh. I must have you mixed up with someone else.", + "replies": [ + { + "text": "My brother Andor and I look very much alike.", + "nextPhraseID": "umar_4" + } + ] + }, + { + "id": "umar_4", + "message": "Really? Never mind I said anything then.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 51 + } + ], + "replies": [ + { + "text": "I guess that means that Andor was here. What was he doing?", + "nextPhraseID": "umar_5" + } + ] + }, + { + "id": "umar_5", + "message": "He came here a while ago, asking a lot of questions about what relation the Thieves' Guild has to the Shadow and to the royal guard in Feygard.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_6" + } + ] + }, + { + "id": "umar_6", + "message": "We in the Thieves' Guild really don't care much for the Shadow. Nor do we care for the royal guard.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_7" + } + ] + }, + { + "id": "umar_7", + "message": "We try to be above their bickering and differences. They may fight as much as they want, but the Thieves' Guild will outlive them all.", + "replies": [ + { + "text": "What conflict?", + "nextPhraseID": "umar_conflict_1" + }, + { + "text": "Tell me more about what Andor asked for", + "nextPhraseID": "umar_andor_1" + } + ] + }, + { + "id": "umar_conflict_1", + "message": "Where have you been the last couple of years? Don't you know of the brewing conflict?", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_conflict_2" + } + ] + }, + { + "id": "umar_conflict_2", + "message": "The royal guard, led by Lord Geomyr in Feygard, are trying to ward off the recent increase in illegal activities, and are therefore imposing more restrictions on what is allowed and not.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_conflict_3" + } + ] + }, + { + "id": "umar_conflict_3", + "message": "The priests of the Shadow, mostly seated in Nor City, are opponents to the new restrictions, saying that they limit the ways that they can please the Shadow.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_conflict_4" + } + ] + }, + { + "id": "umar_conflict_4", + "message": "In turn, the rumor is that the priests of the Shadow are planning to overthrow Lord Geomyr and his forces.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_conflict_5" + } + ] + }, + { + "id": "umar_conflict_5", + "message": "Also, the rumor is that the priests of the Shadow are still doing their rituals, despite the fact that most of the rituals have been banned.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_conflict_6" + } + ] + }, + { + "id": "umar_conflict_6", + "message": "Lord Geomyr and his royal guard on the other hand, are still trying their best to rule in a way that they feel is fair.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_conflict_7" + } + ] + }, + { + "id": "umar_conflict_7", + "message": "We in the Thieves' Guild try not to get involved in the conflict. Our business is so far unaffected by all of this.", + "replies": [ + { + "text": "Thank you for telling me.", + "nextPhraseID": "umar_return_2" + }, + { + "text": "Whatever, that doesn't concern me.", + "nextPhraseID": "umar_return_2" + } + ] + }, + { + "id": "umar_andor_1", + "message": "He asked me for my support, and asked of how to find Lodar.", + "replies": [ + { + "text": "Who is Lodar?", + "nextPhraseID": "umar_andor_2" + } + ] + }, + { + "id": "umar_andor_2", + "message": "Lodar? He is one of our famous potion makers in the Thieves' Guild. He can make all sorts of strong sleeping potions, healing potions and cures.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_andor_3" + } + ] + }, + { + "id": "umar_andor_3", + "message": "But his specialty is, of course, his poisons. His poison can harm even the largest of monsters.", + "replies": [ + { + "text": "What would Andor want with him?", + "nextPhraseID": "umar_andor_4" + } + ] + }, + { + "id": "umar_andor_4", + "message": "I don't know. Maybe he was looking for a potion.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "andor", + "value": 55 + } + ], + "replies": [ + { + "text": "So, where can I find this Lodar?", + "nextPhraseID": "umar_lodar_1" + } + ] + }, + { + "id": "umar_lodar_1", + "message": "I really shouldn't tell you. How to get to him is one of our closely guarded secrets in the guild. His hideaway is only reachable by our members.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_lodar_2" + } + ] + }, + { + "id": "umar_lodar_2", + "message": "However, I heard that you helped us find the key of Luthor. This is something we have been trying to get to for a long time.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_lodar_3" + } + ] + }, + { + "id": "umar_lodar_3", + "message": "Ok, I'll tell you how to get to Lodar's Hideaway. But you have to promise to keep it a secret. Do not tell anyone. Not even those that appear to be members of the Thieves' Guild.", + "replies": [ + { + "text": "Ok, I'll promise to keep it a secret.", + "nextPhraseID": "umar_lodar_4" + }, + { + "text": "I can't give any guarantees, but I will try.", + "nextPhraseID": "umar_lodar_4" + } + ] + }, + { + "id": "umar_lodar_4", + "message": "Good. The thing is, you not only need to find the place itself, but you also need to utter the correct words to be allowed entry by the guardian.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_lodar_5" + } + ] + }, + { + "id": "umar_lodar_5", + "message": "The only one that understands the language of the guardian is the old man Ogam in Vilegard.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "lodar", + "value": 10 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_lodar_6" + } + ] + }, + { + "id": "umar_lodar_6", + "message": "You should travel to the town of Vilegard and find Ogam. He can help you get the right words to enter Lodar's Hideaway.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "lodar", + "value": 15 + } + ], + "replies": [ + { + "text": "How do I get to Vilegard?", + "nextPhraseID": "umar_vilegard_1" + }, + { + "text": "Thank you. There was something else I wanted to talk about.", + "nextPhraseID": "umar_return_2" + }, + { + "text": "Thank you, goodbye.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "umar_vilegard_1", + "message": "You travel southeast from Fallhaven. When you reach the main road and the Foaming Flask tavern, head south. It's not very far to the southeast from here.", + "replies": [ + { + "text": "N", + "nextPhraseID": "umar_return_2" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_unzel2.json b/AndorsTrail/res/raw/conversationlist_unzel2.json new file mode 100644 index 000000000..1a13a1adf --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_unzel2.json @@ -0,0 +1,80 @@ +[ + { + "id": "unzel_msg1", + "message": "Kaverin, my old friend! It's good to hear that he is still alive. What is the message?", + "replies": [ + { + "text": "Here it is.", + "nextPhraseID": "unzel_msg2", + "requires": { + "item": { + "itemID": "kaverin_message", + "quantity": 1, + "requireType": 0 + } + } + } + ] + }, + { + "id": "unzel_msg2", + "message": "Hmmm, yes... Let's see... (Unzel opens the sealed message and reads it)", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kaverin", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_msg3" + } + ] + }, + { + "id": "unzel_msg3", + "message": "Yes, this makes sense with what I have seen.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_msg4" + } + ] + }, + { + "id": "unzel_msg4", + "message": "Thank you for bringing it to me.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_msg5" + } + ] + }, + { + "id": "unzel_msg5", + "message": "Your help could prove more valuable than you might realize.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_msg6" + } + ] + }, + { + "id": "unzel_msg6", + "message": "Say hello to my old friend Kaverin the next time you see him, will you?" + }, + { + "id": "unzel_msg_r0", + "message": "Hello again. Thank you for your help with defeating Vacor and bringing me the message from Kaverin.", + "replies": [ + { + "text": "N", + "nextPhraseID": "unzel_msg5" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_v0612graves.json b/AndorsTrail/res/raw/conversationlist_v0612graves.json new file mode 100644 index 000000000..107137312 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_v0612graves.json @@ -0,0 +1,246 @@ +[ + { + "id": "sign_wild3_grave", + "message": "The cross reads: Rest in peace, my friend." + }, + { + "id": "sign_wild6_stump", + "message": "You notice that the tree-stump is partially hollow, and looks like an excellent hiding place. It is empty now." + }, + { + "id": "sign_snakecave3_grave", + "message": "The ground around the grave is full of small holes, probably by something that has slithered its way to its nest down there. The cross has some writing on it, but you cannot understand what it says." + }, + { + "id": "sign_fallhaven_ne_grave1", + "message": "Here lies Kargir the merchant." + }, + { + "id": "sign_fallhaven_ne_grave2", + "message": "(The stone is covered with a thin layer of green moss. The writing on the stone has eroded and is completely unreadable.)" + }, + { + "id": "sign_fallhaven_ne_grave3", + "message": "Rest with the Shadow, one-legged Berth. She lived a full life, but in the end she could not stand up to the illness that befell her." + }, + { + "id": "sign_fallhaven_ne_grave4", + "message": "The remains of Kigrim lies here, after he was killed by wolves south of Fallhaven." + }, + { + "id": "sign_fallhaven_ne_grave5", + "message": "Gimlont the corpulent lies here. May we finally be free from his fat hands being part of all of our businesses." + }, + { + "id": "sign_fallhaven_ne_grave6", + "message": "Here lies Terdar the smith. May he forever be embraced by the comfort of the Shadow." + }, + { + "id": "sign_fallhaven_ne_grave7", + "message": "Here lies O'llath, praised by her fellow citizens of Fallhaven for her delicious cakes." + }, + { + "id": "sign_fallhaven_ne_grave8", + "message": "Sidari the woodcutter lies here. We all told him to be careful with that axe of his, but he never listened." + }, + { + "id": "sign_fallhaven_ne_grave9", + "message": "Tyngose the noble lies here. May her legacy never be forgotten." + }, + { + "id": "sign_catacombs1_grave1", + "message": "Here lies the remains of Sir Eneryth's horse, Shadowsteed." + }, + { + "id": "sign_catacombs1_grave2", + "message": "Here lies Sir Eneryth of house Gellir. Son of Sir Anarogas, and the elder brother of Sir Karthanir." + }, + { + "id": "sign_catacombs1_grave3", + "message": "Here lies Sir Karthanir of house Gellir. Son of Sir Anarogas, and the younger brother of Sir Eneryth." + }, + { + "id": "sign_catacombs1_grave4", + "message": "Here lies Lady Gelythus of house Gellir. Wife of Sir Eneryth of house Gellir." + }, + { + "id": "sign_catacombs2_grave1", + "message": "Here lies ta'Draiden, servant of the Shadow in the chapel of Fallhaven." + }, + { + "id": "sign_catacombs2_grave2", + "message": "Here lies ta'Tembas, servant of the Shadow in the chapel of Fallhaven." + }, + { + "id": "sign_catacombs2_grave3", + "message": "Here lies Elodam, servant of Sir Eneryth of house Gellir." + }, + { + "id": "sign_catacombs2_grave4", + "message": "Here lies the remains of one-eyed Tragdas, servant of Sir Eneryth of house Gellir." + }, + { + "id": "sign_catacombs2_grave5", + "message": "Here lies Lerythal the kind. May she rest with the Shadow." + }, + { + "id": "sign_catacombs2_grave6", + "message": "Here lies Kragnis the second, steward of the chapel of Fallhaven." + }, + { + "id": "sign_catacombs2_grave7", + "message": "The writing on the grave reads: Rest with the Shadow, my dearest." + }, + { + "id": "sign_catacombs2_papers1", + "message": "(On the floor is what looks like some torn out pages from a book.)" + }, + { + "id": "sign_catacombs2_papers2", + "message": "(You find some crumpled papers on the floor, containing scribbled notes about the fine arts of pottery making. You decide to leave them be.)" + }, + { + "id": "sign_catacombs3_grave1", + "message": "(The grave reads: Here lies Sir Anarogas of house Gellir, son of Gellir the brave.)" + }, + { + "id": "sign_catacombs3_grave2", + "message": "(The stench coming from the grave is unbearable. Something must have disturbed the grave recently)" + }, + { + "id": "sign_catacombs4_grave1", + "message": "(The cross reads: ta'Dreg lies here, advisor of the Shadow to king Luthor.)" + }, + { + "id": "sign_catacombs4_grave2", + "message": "(The grave reads: King Luthor, our savior and leader. The grave is also adorned with the golden seal of house Luthor.)" + }, + { + "id": "sign_hh3_papers", + "message": "Perched under the statue, you find some papers with drawings of what looks like skeletons. The drawings look like they were made by a child, and you start to wonder how they could have ended up in a place such as this." + }, + { + "id": "sign_hh3_grave", + "message": "(Someone has written the words 'Rest' and 'Shadow' on the cross, in what looks like dried blood.)" + }, + { + "id": "sign_bwm30_grave", + "message": "(The cross reads: Rest with the Shadow, my dear.)" + }, + { + "id": "sign_bwm33_grave", + "message": "(The tombstone contains writing in a language that you do not understand)" + }, + { + "id": "sign_bwm52_grave1", + "message": "(The cross reads: Here lies Magnir the trader. Another casualty of those beasts.)" + }, + { + "id": "sign_bwm52_grave2", + "message": "(The grave looks like it has been recently dug)" + }, + { + "id": "sign_bwm52_grave3", + "message": "(The cross reads: Here lies Torkurt, loyal servant of the Blackwater settlement.)" + }, + { + "id": "sign_bwm52_grave4", + "message": "(The cross reads: Here lies o'Rani, the most fierce warrior on this side of the mountain. May she rest in peace.)" + }, + { + "id": "sign_bwm52_grave5", + "message": "(The cross reads: Unnamed traveller. Found on the cliff-side, killed by one of those beasts.)" + }, + { + "id": "sign_bwm52_grave7", + "message": "(The cross reads: Here lies Trombul, the famous potion maker.)" + }, + { + "id": "sign_bwm52_grave6", + "message": "(The cross reads: Here lies the remains of Antagnart, loved by none but remembered by everyone.)" + }, + { + "id": "sign_bwm52_papers1", + "message": "(On the floor is what looks like some torn out pages from a book)" + }, + { + "id": "sign_bwm52_papers2", + "message": "(You find a crude drawing of one of the white wyrms, but you decide not to keep it since it must belong to someone.)" + }, + { + "id": "sign_pwcave1_grave", + "message": "(The cross shows lots of small indentations, as if someone hit it repeatedly with a sharp object. You can barely make out the words: Rest with the Shadow, my friend. I will avenge those beasts.)" + }, + { + "id": "sign_pwcave2a_grave", + "message": "(The cross contains symbols that you cannot understand.)" + }, + { + "id": "sign_pwcave4_grave1", + "message": "(The cross contains symbols that you cannot understand. It looks like someone started digging up this grave recently, but stopped halfway.)" + }, + { + "id": "sign_pwcave4_grave2", + "message": "(The cross contains symbols that you cannot understand, in addition to a crude drawing of what you think should resemble an Izthiel beast.)" + }, + { + "id": "sign_pwcave4_grave3", + "message": "(The cross contains symbols that you cannot understand, in addition to a crude drawing of what you think should resemble a frog.)" + }, + { + "id": "sign_pwcave4_grave4", + "message": "(The cross contains symbols that you cannot understand, but you recognize the word 'Iqhan'.)" + }, + { + "id": "sign_pwcave4_grave5", + "message": "(The cross contains symbols that you cannot understand, in addition to a crude drawing of what you think should resemble a sword.)" + }, + { + "id": "sign_pwcave4_grave6", + "message": "(The cross contains symbols that you cannot understand, in addition to a crude drawing of something that you cannot make out what it should resemble.)" + }, + { + "id": "sign_pwcave4_grave7", + "message": "(The cross contains symbols that you cannot understand, in addition to an elaborate drawing of a skull.)" + }, + { + "id": "sign_waterway14_hole", + "message": "(You stop to notice a hole in the wall near the ground, large enough to fit something in. The ground here shows recent shoe-prints, which could indicate that the hole in the wall is a hiding place of some sort. However, it seems to be empty now.)" + }, + { + "id": "sign_waterway11e_grave", + "message": "(The cross reads: Here lies Telban. A beloved friend of many, and a dreaded foe for those that did not pay up.)" + }, + { + "id": "sign_mountaincave0_grave", + "message": "(The cross reads: Tengil the needy lies here, after having succumbed to the nastiest of poisons. Rest with the Shadow, my friend.)" + }, + { + "id": "sign_mountainlake1_grave", + "message": "(The ground around the grave looks like it has been partially dug up by animals. They don't seem to have gotten anywhere yet though.)" + }, + { + "id": "sign_waytobrim3_grave1", + "message": "Here lies the remains of Ilirathos, mother of two." + }, + { + "id": "sign_waytobrim3_grave2", + "message": "Ke'roos lies here. No one knew him in life since he always kept to himself, but we all thank him for the generous gifts he left behind for Brimhaven." + }, + { + "id": "sign_waytobrim3_grave3", + "message": "Here lies Lawellyn the weak." + }, + { + "id": "sign_waytolake2_grave", + "message": "(The cross is covered with a thick layer of web. You wonder why anyone would choose this place as a grave for their fallen)" + }, + { + "id": "sign_lh1_grave", + "message": "(Even though the wood on the cross looks like it was cut recently, you see no signs of anything being buried here.)" + }, + { + "id": "sign_lh1_sign", + "message": "(On the wall, you see a plaque that reads 'Bring unto me, that which I cannot bear, for it makes me stronger.')" + } +] diff --git a/AndorsTrail/res/raw/conversationlist_vacor2.json b/AndorsTrail/res/raw/conversationlist_vacor2.json new file mode 100644 index 000000000..d773e8d8a --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_vacor2.json @@ -0,0 +1,237 @@ +[ + { + "id": "vacor_msg1", + "message": "What's that in your hands?! ... I recognize that seal!", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kaverin", + "value": 70 + } + ], + "replies": [ + { + "text": "You should recognize it, I found this on one of Unzel's associates in Remgard.", + "nextPhraseID": "vacor_msg_a1" + }, + { + "text": "What? ... Oh, this?", + "nextPhraseID": "vacor_msg_b1" + } + ] + }, + { + "id": "vacor_msg_a1", + "message": "Surely, he didn't just give it to you!", + "replies": [ + { + "text": "He was asking too many questions. He needed to be silenced.", + "nextPhraseID": "vacor_msg_a2" + } + ] + }, + { + "id": "vacor_msg_a2", + "message": "So, you killed him? Right?!", + "replies": [ + { + "text": "Kaverin is dead. His blood is still on my boots.", + "nextPhraseID": "vacor_msg_3" + } + ] + }, + { + "id": "vacor_msg_b1", + "message": "How did you get your hands on that document?!", + "replies": [ + { + "text": "A man in Remgard, by the name of Kaverin, was asking about Unzel...", + "nextPhraseID": "vacor_msg_b2" + } + ] + }, + { + "id": "vacor_msg_b2", + "message": "What happened boy?!", + "replies": [ + { + "text": "Kaverin is dead. His blood is still on my boots.", + "nextPhraseID": "vacor_msg_3" + } + ] + }, + { + "id": "vacor_msg_3", + "message": "Good, maybe now I can work on my Rift Spell in peace...", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_msg_4" + } + ] + }, + { + "id": "vacor_msg_4", + "message": "I must have that document!", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_msg_5" + } + ] + }, + { + "id": "vacor_msg_5", + "message": "I must know what they are planning!", + "replies": [ + { + "text": "Here, have the message.", + "nextPhraseID": "vacor_msg_8", + "requires": { + "item": { + "itemID": "kaverin_message", + "quantity": 1, + "requireType": 0 + } + } + }, + { + "text": "What's in it for me?", + "nextPhraseID": "vacor_msg_6" + } + ] + }, + { + "id": "vacor_msg_6", + "message": "I have a cache of potions hidden, far to the southwest.", + "replies": [ + { + "text": "Excellent, I could always use more supplies.", + "nextPhraseID": "vacor_msg_7" + } + ] + }, + { + "id": "vacor_msg_7", + "message": "Good. Now give me the message.", + "replies": [ + { + "text": "Here is the message, Vacor.", + "nextPhraseID": "vacor_msg_8", + "requires": { + "item": { + "itemID": "kaverin_message", + "quantity": 1, + "requireType": 0 + } + } + } + ] + }, + { + "id": "vacor_msg_8", + "message": "Here, take this map as compensation for your troubles.", + "rewards": [ + { + "rewardType": 1, + "rewardID": "vacor_map" + }, + { + "rewardType": 0, + "rewardID": "kaverin", + "value": 75 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_msg_9" + } + ] + }, + { + "id": "vacor_msg_9", + "message": "It will lead you far to the southwest, to one of my secret retreats... where a cache of potions is hidden.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_msg_10" + } + ] + }, + { + "id": "vacor_msg_10", + "message": "(The map shows a location to the northwest of the former prison of Flagstone.)", + "rewards": [ + { + "rewardType": 0, + "rewardID": "kaverin", + "value": 90 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_msg_11" + } + ] + }, + { + "id": "vacor_msg_11", + "message": "Now, let's see here.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_msg_12" + } + ] + }, + { + "id": "vacor_msg_12", + "message": "(Vacor opens the sealed message and starts reading)", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_msg_13" + } + ] + }, + { + "id": "vacor_msg_13", + "message": "Yes ... hm ... Really?! *mumbles* ... yes, indeed ...", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_msg_14" + } + ] + }, + { + "id": "vacor_msg_14", + "message": "Thanks kid, you have helped me more than you can possibly understand.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vacor_msg_15" + } + ] + }, + { + "id": "vacor_msg_15", + "message": "HA HA HA!!! THE POWER WILL SOON BE MINE!", + "replies": [ + { + "text": "Excellent! The Shadow must be stopped!", + "nextPhraseID": "vacor_msg_16" + }, + { + "text": "I just wanted a reward... Weirdo.", + "nextPhraseID": "vacor_msg_16" + } + ] + }, + { + "id": "vacor_msg_16", + "message": "Thanks for giving me that message, but now please leave me. I have more important things to do than to talk to you." + } +] diff --git a/AndorsTrail/res/raw/conversationlist_vilegard_erttu.json b/AndorsTrail/res/raw/conversationlist_vilegard_erttu.json new file mode 100644 index 000000000..c66cb5647 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_vilegard_erttu.json @@ -0,0 +1,97 @@ +[ + { + "id": "erttu_1", + "message": "Hello there outsider. In general, we dislike outsiders here in Vilegard, but there is something about you that I find familiar.", + "replies": [ + { + "text": "N", + "nextPhraseID": "erttu_default" + } + ] + }, + { + "id": "erttu_default", + "message": "What do you want to talk about?", + "replies": [ + { + "text": "Why is everyone in Vilegard so suspicious of outsiders?", + "nextPhraseID": "erttu_distrust_1", + "requires": { + "progress": "vilegard:10" + } + }, + { + "text": "What can you tell me about Vilegard?", + "nextPhraseID": "erttu_vilegard_1" + } + ] + }, + { + "id": "erttu_distrust_1", + "message": "Most of us that live here in Vilegard have a history of trusting people too much. People that have hurt us in the end.", + "replies": [ + { + "text": "N", + "nextPhraseID": "erttu_distrust_2" + } + ] + }, + { + "id": "erttu_distrust_2", + "message": "Now we start by being suspicious, and ask that outsiders coming here gain our trust by helping us first.", + "replies": [ + { + "text": "N", + "nextPhraseID": "erttu_distrust_3" + } + ] + }, + { + "id": "erttu_distrust_3", + "message": "Also, other people generally look down upon us here in Vilegard for some reason. Especially those snobs from Feygard and the northern cities.", + "replies": [ + { + "text": "What else can you tell me about Vilegard?", + "nextPhraseID": "erttu_vilegard_1" + } + ] + }, + { + "id": "erttu_vilegard_1", + "message": "We have almost everything we need here in Vilegard. Our center of the village is the chapel.", + "replies": [ + { + "text": "N", + "nextPhraseID": "erttu_vilegard_2" + } + ] + }, + { + "id": "erttu_vilegard_2", + "message": "The chapel serves as our place of worship for the Shadow, and also as our place to gather when discussing larger issues in our village.", + "replies": [ + { + "text": "N", + "nextPhraseID": "erttu_vilegard_3" + } + ] + }, + { + "id": "erttu_vilegard_3", + "message": "Apart from the chapel, we have a tavern, a smith and an armorer.", + "replies": [ + { + "text": "Thanks for the information. There was something else I wanted to talk about.", + "nextPhraseID": "erttu_default" + }, + { + "text": "Thanks for the information. Goodbye.", + "nextPhraseID": "X" + }, + { + "text": "Wow, nothing more? I wonder what I am doing in a puny village such as this one.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_vilegard_shops.json b/AndorsTrail/res/raw/conversationlist_vilegard_shops.json new file mode 100644 index 000000000..a309854d1 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_vilegard_shops.json @@ -0,0 +1,99 @@ +[ + { + "id": "vilegard_armorer_select", + "replies": [ + { + "nextPhraseID": "vilegard_armorer_1", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "vilegard_shop_notrust" + } + ] + }, + { + "id": "vilegard_armorer_1", + "message": "Hello there. Please browse my selection of fine armors and protection.", + "replies": [ + { + "text": "Let me see your list of wares", + "nextPhraseID": "S" + } + ] + }, + { + "id": "vilegard_smith_select", + "replies": [ + { + "nextPhraseID": "vilegard_smith_1", + "requires": { + "progress": "feygard_shipment:56" + } + }, + { + "nextPhraseID": "vilegard_smith_fg_2", + "requires": { + "progress": "feygard_shipment:55" + } + }, + { + "nextPhraseID": "vilegard_smith_1", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "vilegard_shop_notrust" + } + ] + }, + { + "id": "vilegard_smith_1", + "message": "Hello there. I heard you helped us here in Vilegard. What can I help you with?", + "replies": [ + { + "text": "Can I see what items you have for sale?", + "nextPhraseID": "S" + }, + { + "text": "I have a shipment of Feygard items for you.", + "nextPhraseID": "vilegard_smith_fg_1", + "requires": { + "progress": "feygard_shipment:35", + "item": { + "itemID": "fg_ironsword", + "quantity": 10, + "requireType": 0 + } + } + } + ] + }, + { + "id": "vilegard_shop_notrust", + "message": "You are an outsider. We don't like outsiders here in Vilegard. Please leave.", + "replies": [ + { + "text": "Why is everyone in Vilegard so suspicious of outsiders?", + "nextPhraseID": "vilegard_shop_notrust_2" + }, + { + "text": "Can I see what items you have for sale?", + "nextPhraseID": "vilegard_shop_notrust_2" + } + ] + }, + { + "id": "vilegard_shop_notrust_2", + "message": "I don't trust you. You should go see Jolnor in the chapel if you want some sympathy.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vilegard", + "value": 10 + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_vilegard_tavern.json b/AndorsTrail/res/raw/conversationlist_vilegard_tavern.json new file mode 100644 index 000000000..0ee24e4f5 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_vilegard_tavern.json @@ -0,0 +1,68 @@ +[ + { + "id": "dunla_default", + "message": "You look like a smart fellow. Need any supplies?", + "replies": [ + { + "text": "Sure, let me see what you have available.", + "nextPhraseID": "S" + }, + { + "text": "What can you tell me about yourself?", + "nextPhraseID": "dunla_1" + } + ] + }, + { + "id": "dunla_1", + "message": "Me? I am no one. You didn't even see me. You certainly did not talk to me." + }, + { + "id": "tharwyn_select", + "replies": [ + { + "nextPhraseID": "tharwyn_1", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "vilegard_shop_notrust" + } + ] + }, + { + "id": "tharwyn_1", + "message": "Hello there. I heard you helped Jolnor in the chapel. You have my thanks, friend.", + "replies": [ + { + "text": "N", + "nextPhraseID": "tharwyn_2" + } + ] + }, + { + "id": "tharwyn_2", + "message": "Have a seat anywhere. What can I get you?", + "replies": [ + { + "text": "Show me what food you have available.", + "nextPhraseID": "S" + } + ] + }, + { + "id": "vilegard_tavern_drunk_1", + "message": "Oh look, a lost kid. Here, have some mead kid.", + "replies": [ + { + "text": "No thanks.", + "nextPhraseID": "X" + }, + { + "text": "Watch your tongue, drunkard.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_vilegard_v0610.json b/AndorsTrail/res/raw/conversationlist_vilegard_v0610.json new file mode 100644 index 000000000..c092fb454 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_vilegard_v0610.json @@ -0,0 +1,118 @@ +[ + { + "id": "vilegard_smith_fg_1", + "message": "Oh, this is most unexpected but very welcome. I will not question how you acquired these items, but instead express my gratitude for bringing them to me.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "feygard_shipment", + "value": 55 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "vilegard_smith_fg_2" + } + ] + }, + { + "id": "vilegard_smith_fg_2", + "message": "Thank you for bringing me these items, they will be most useful to us here in the southern lands, and Vilegard in particular. We rarely get our hands on Feygard items, so these are really welcome.", + "replies": [ + { + "text": "I was sent to deliver these items to a Feygard patrol stationed in the Foaming Flask tavern.", + "nextPhraseID": "vilegard_smith_fg_3" + } + ] + }, + { + "id": "vilegard_smith_fg_3", + "message": "Instead, you brought them to me. You have my thanks.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vilegard_smith_fg_4" + } + ] + }, + { + "id": "vilegard_smith_fg_4", + "message": "Hah, this means that we have another opportunity here. What if you were to deliver some other items to the Feygard patrol instead? Hah, this will really make my day.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vilegard_smith_fg_5" + } + ] + }, + { + "id": "vilegard_smith_fg_5", + "message": "I might have something that will do just fine.. Let me just find them.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vilegard_smith_fg_6" + } + ] + }, + { + "id": "vilegard_smith_fg_6", + "message": "Here they are. Ha ha, these will do just fine for those deceiving Feygard snobs.", + "replies": [ + { + "text": "N", + "nextPhraseID": "vilegard_smith_fg_7" + } + ] + }, + { + "id": "vilegard_smith_fg_7", + "message": "Take these items and deliver them to wherever you were supposed to deliver the items you gave me.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "feygard_shipment", + "value": 56 + }, + { + "rewardType": 1, + "rewardID": "vg_smith_fg_items" + } + ] + }, + { + "id": "ff_captain_vg_items_1", + "rewards": [ + { + "rewardType": 0, + "rewardID": "feygard_shipment", + "value": 60 + } + ], + "replies": [ + { + "nextPhraseID": "ff_captain_items_1" + } + ] + }, + { + "id": "ff_captain_fg_items_1", + "rewards": [ + { + "rewardType": 0, + "rewardID": "feygard_shipment", + "value": 50 + } + ], + "replies": [ + { + "nextPhraseID": "ff_captain_items_1" + } + ] + }, + { + "id": "ff_captain_items_1", + "message": "Excellent, I have been waiting for these. Thank you for bringing them to me." + } +] diff --git a/AndorsTrail/res/raw/conversationlist_vilegard_villagers.json b/AndorsTrail/res/raw/conversationlist_vilegard_villagers.json new file mode 100644 index 000000000..7fa02ecb8 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_vilegard_villagers.json @@ -0,0 +1,171 @@ +[ + { + "id": "vilegard_villager_1", + "replies": [ + { + "nextPhraseID": "vilegard_villager_friend", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "vilegard_villager_1_0" + } + ] + }, + { + "id": "vilegard_villager_1_0", + "message": "Hello. Who are you? You are not welcome here in Vilegard.", + "replies": [ + { + "text": "Have you seen my brother, Andor, around here?", + "nextPhraseID": "vilegard_villager_1_2" + } + ] + }, + { + "id": "vilegard_villager_1_2", + "message": "No, I have certainly not. Even if I had, why would I tell you?" + }, + { + "id": "vilegard_villager_2", + "replies": [ + { + "nextPhraseID": "vilegard_villager_friend", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "vilegard_villager_2_0" + } + ] + }, + { + "id": "vilegard_villager_2_0", + "message": "By the Shadow, you are an outsider. We don't like outsiders here.", + "replies": [ + { + "text": "Why is everyone in Vilegard so afraid of outsiders?", + "nextPhraseID": "vilegard_villager_5_1" + } + ] + }, + { + "id": "vilegard_villager_3", + "replies": [ + { + "nextPhraseID": "vilegard_villager_friend", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "vilegard_villager_3_0" + } + ] + }, + { + "id": "vilegard_villager_3_0", + "message": "This is Vilegard. You will find no comfort here, outsider." + }, + { + "id": "vilegard_villager_4", + "replies": [ + { + "nextPhraseID": "vilegard_villager_friend", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "vilegard_villager_4_0" + } + ] + }, + { + "id": "vilegard_villager_4_0", + "message": "You look like that other kid that ran around here. Probably causing trouble, as always with outsiders.", + "replies": [ + { + "text": "Did you see my brother Andor?", + "nextPhraseID": "vilegard_villager_1_2" + }, + { + "text": "I'm not going to cause trouble.", + "nextPhraseID": "vilegard_villager_4_2" + }, + { + "text": "Oh yes, I am going to cause trouble all right.", + "nextPhraseID": "vilegard_villager_4_3" + } + ] + }, + { + "id": "vilegard_villager_4_2", + "message": "No, I am sure you are. Outsiders always do." + }, + { + "id": "vilegard_villager_4_3", + "message": "Yes, I know. That's why we don't want your kind around here. You should leave Vilegard while you still can." + }, + { + "id": "vilegard_villager_5", + "replies": [ + { + "nextPhraseID": "vilegard_villager_friend", + "requires": { + "progress": "vilegard:30" + } + }, + { + "nextPhraseID": "vilegard_villager_5_0" + } + ] + }, + { + "id": "vilegard_villager_5_0", + "message": "Hello there outsider. You look lost, that's good. Now leave Vilegard while you can.", + "replies": [ + { + "text": "Why is everyone in Vilegard so afraid of outsiders?", + "nextPhraseID": "vilegard_villager_5_1" + } + ] + }, + { + "id": "vilegard_villager_5_1", + "message": "I don't trust you. You should go see Jolnor in the chapel if you want some sympathy.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "vilegard", + "value": 10 + } + ] + }, + { + "id": "vilegard_villager_friend", + "message": "Hello there. I heard you helped us common folk here in Vilegard. Please stay for as long as you like friend.", + "replies": [ + { + "text": "Thank you. Have you seen my brother Andor around here?", + "nextPhraseID": "vilegard_villager_friend_1" + }, + { + "text": "Thank you. See you.", + "nextPhraseID": "X" + } + ] + }, + { + "id": "vilegard_villager_friend_1", + "message": "Your brother? No, I haven't seen anyone that looks like you. But then again, I never take much notice to outsiders.", + "replies": [ + { + "text": "Thanks, bye.", + "nextPhraseID": "X" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_wilderness.json b/AndorsTrail/res/raw/conversationlist_wilderness.json new file mode 100644 index 000000000..16775aeed --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_wilderness.json @@ -0,0 +1,74 @@ +[ + { + "id": "fallhaven_bandit", + "message": "Get lost kid. I don't have time for you.", + "replies": [ + { + "text": "I'm looking for a piece of the Rift spell.", + "nextPhraseID": "fallhaven_bandit_2", + "requires": { + "progress": "vacor:20" + } + } + ] + }, + { + "id": "fallhaven_bandit_2", + "message": "No! Vacor will not gain the power of the rift spell! ", + "replies": [ + { + "text": "Let's fight!", + "nextPhraseID": "F" + } + ] + }, + { + "id": "bandit1", + "message": "What have we here? A lost wanderer? ", + "replies": [ + { + "text": "N", + "nextPhraseID": "bandit1_2" + } + ] + }, + { + "id": "bandit1_2", + "message": "How much is your life worth to you? Give me 100 gold and I'll let you go.", + "replies": [ + { + "text": "Ok ok. Here is the gold. Please don't hurt me!", + "nextPhraseID": "bandit1_3", + "requires": { + "item": { + "itemID": "gold", + "quantity": 100, + "requireType": 0 + } + } + }, + { + "text": "How about we fight over it?", + "nextPhraseID": "bandit1_4" + }, + { + "text": "How much is your life worth?", + "nextPhraseID": "bandit1_4" + } + ] + }, + { + "id": "bandit1_3", + "message": "About damn time. You are free to go." + }, + { + "id": "bandit1_4", + "message": "Ok then, your life it is. Let's fight. I have been looking forward to a good fight!", + "replies": [ + { + "text": "Let's fight!", + "nextPhraseID": "F" + } + ] + } +] diff --git a/AndorsTrail/res/raw/conversationlist_wrye.json b/AndorsTrail/res/raw/conversationlist_wrye.json new file mode 100644 index 000000000..0a9c02940 --- /dev/null +++ b/AndorsTrail/res/raw/conversationlist_wrye.json @@ -0,0 +1,488 @@ +[ + { + "id": "wrye_select_1", + "replies": [ + { + "nextPhraseID": "wrye_return_2", + "requires": { + "progress": "wrye:90" + } + }, + { + "nextPhraseID": "wrye_return_1", + "requires": { + "progress": "wrye:40" + } + }, + { + "nextPhraseID": "wrye_mourn_1" + } + ] + }, + { + "id": "wrye_return_1", + "message": "Welcome back. Have you found out anything about my son, Rincel?", + "replies": [ + { + "text": "Can you tell me the story about what happened again?", + "nextPhraseID": "wrye_mourn_5" + }, + { + "text": "No, I have not found anything yet.", + "nextPhraseID": "wrye_story_14" + }, + { + "text": "Yes, I have found out the story about what happened to him.", + "nextPhraseID": "wrye_resolved_1", + "requires": { + "progress": "wrye:80" + } + } + ] + }, + { + "id": "wrye_return_2", + "message": "Welcome back. Thank you for your help in finding out what happened to my son.", + "replies": [ + { + "text": "Shadow be with you.", + "nextPhraseID": "wrye_story_15" + }, + { + "text": "You are welcome.", + "nextPhraseID": "wrye_story_15" + } + ] + }, + { + "id": "wrye_mourn_1", + "message": "Shadow help me.", + "replies": [ + { + "text": "What is the matter?", + "nextPhraseID": "wrye_mourn_2" + } + ] + }, + { + "id": "wrye_mourn_2", + "message": "My son! My son is gone.", + "replies": [ + { + "text": "Jolnor said I should see you about your son.", + "nextPhraseID": "wrye_mourn_5", + "requires": { + "progress": "wrye:10" + } + }, + { + "text": "What about him?", + "nextPhraseID": "wrye_mourn_3" + } + ] + }, + { + "id": "wrye_mourn_3", + "message": "I don't want to talk about it. Not with an outsider like you.", + "replies": [ + { + "text": "Outsider?", + "nextPhraseID": "wrye_mourn_4" + }, + { + "text": "Jolnor said I should see you about your son.", + "nextPhraseID": "wrye_mourn_5", + "requires": { + "progress": "wrye:10" + } + } + ] + }, + { + "id": "wrye_mourn_4", + "message": "Please leave me.\n\nOh Shadow, watch over me." + }, + { + "id": "wrye_mourn_5", + "message": "My son is dead, I know it! And it's those damn guards fault. Those guards with their snobby Feygard attitude.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_mourn_6" + } + ] + }, + { + "id": "wrye_mourn_6", + "message": "At first they come with promises of protection and power. But then you really start to see them for what they are.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_mourn_7" + } + ] + }, + { + "id": "wrye_mourn_7", + "message": "I can feel it in me. The Shadow speaks to me. He is dead.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "wrye", + "value": 20 + } + ], + "replies": [ + { + "text": "Can you tell me what happened?", + "nextPhraseID": "wrye_story_1" + }, + { + "text": "What are you talking about?", + "nextPhraseID": "wrye_story_1" + }, + { + "text": "Shadow be with you.", + "nextPhraseID": "wrye_mourn_8" + } + ] + }, + { + "id": "wrye_mourn_8", + "message": "Thank you. Shadow watch over me.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_1" + } + ] + }, + { + "id": "wrye_story_1", + "message": "It all started with those Feygard royal guards coming here.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_2" + } + ] + }, + { + "id": "wrye_story_2", + "message": "They tried to pressure everyone in Vilegard into recruiting more soldiers.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_3" + } + ] + }, + { + "id": "wrye_story_3", + "message": "The guards would say they needed more support to help squelch the supposed uprising and sabotage.", + "replies": [ + { + "text": "How did this relate to your son?", + "nextPhraseID": "wrye_story_4" + }, + { + "text": "Are you going to get to the point soon?", + "nextPhraseID": "wrye_story_4" + } + ] + }, + { + "id": "wrye_story_4", + "message": "My son, Rincel, did not seem to care much for the stories they told.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_5" + } + ] + }, + { + "id": "wrye_story_5", + "message": "I also told Rincel of how bad an idea I thought it was to recruit more people to the Royal Guard.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_6" + } + ] + }, + { + "id": "wrye_story_6", + "message": "The guards stayed a couple of days to talk to everyone here in Vilegard. Then they left. They went to the next town I guess.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_7" + } + ] + }, + { + "id": "wrye_story_7", + "message": "A few days passed, and then suddenly my boy Rincel was gone one day. I am sure those guards managed to somehow persuade him to join them.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_8" + } + ] + }, + { + "id": "wrye_story_8", + "message": "Oh how I despise those evil and snobby Feygard bastards.", + "replies": [ + { + "text": "What now?", + "nextPhraseID": "wrye_story_9" + } + ] + }, + { + "id": "wrye_story_9", + "message": "This was several weeks ago. Now I feel an emptiness inside. I know in me that something has happened to my son Rincel.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_10" + } + ] + }, + { + "id": "wrye_story_10", + "message": "I fear he has died or got hurt somehow. Those bastards probably drove him into his own death.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "wrye", + "value": 30 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_11" + } + ] + }, + { + "id": "wrye_story_11", + "message": "*sob* Shadow help me.", + "replies": [ + { + "text": "What can I do to help?", + "nextPhraseID": "wrye_story_13" + }, + { + "text": "That sounds awful. I am sure you are just imagining things.", + "nextPhraseID": "wrye_story_13" + }, + { + "text": "Do you have proof that the people from Feygard are involved?", + "nextPhraseID": "wrye_story_12" + } + ] + }, + { + "id": "wrye_story_12", + "message": "No, but I know it in me that they are. The Shadow speaks to me.", + "replies": [ + { + "text": "Ok. Is there anything I can do to help?", + "nextPhraseID": "wrye_story_13" + }, + { + "text": "You sound a bit too occupied with the Shadow. I want no part of this.", + "nextPhraseID": "wrye_mourn_4" + }, + { + "text": "I probably shouldn't get involved in this if it means that I could upset the royal guard.", + "nextPhraseID": "wrye_mourn_4" + } + ] + }, + { + "id": "wrye_story_13", + "message": "If you want to help me, please find out what happened to my son, Rincel.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "wrye", + "value": 40 + } + ], + "replies": [ + { + "text": "Any idea where I should look?", + "nextPhraseID": "wrye_story_16" + }, + { + "text": "Ok. I will go look for your son. I sure hope there will be some reward for this.", + "nextPhraseID": "wrye_story_14" + }, + { + "text": "By the Shadow, your son will be avenged.", + "nextPhraseID": "wrye_story_14" + } + ] + }, + { + "id": "wrye_story_14", + "message": "Please return here as soon as you have found out anything.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_story_15" + } + ] + }, + { + "id": "wrye_story_15", + "message": "Walk with the Shadow." + }, + { + "id": "wrye_story_16", + "message": "I guess you could ask in the tavern here in Vilegard, or the Foaming Flask tavern just north of here.", + "rewards": [ + { + "rewardType": 0, + "rewardID": "wrye", + "value": 41 + } + ], + "replies": [ + { + "text": "By the Shadow, your son will be avenged.", + "nextPhraseID": "wrye_story_14" + }, + { + "text": "Ok. I will go look for your son. I sure hope there will be some reward for this.", + "nextPhraseID": "wrye_story_14" + }, + { + "text": "Ok. I will go look for your son so that you may know what happened to him.", + "nextPhraseID": "wrye_story_14" + } + ] + }, + { + "id": "wrye_resolved_1", + "message": "Please tell me what happened to him!", + "replies": [ + { + "text": "He left Vilegard by his own will because he wanted to see the great city of Feygard.", + "nextPhraseID": "wrye_resolved_2" + } + ] + }, + { + "id": "wrye_resolved_2", + "message": "I don't believe it.", + "replies": [ + { + "text": "He had secretly longed to go to Feygard, but didn't dare tell you.", + "nextPhraseID": "wrye_resolved_3" + } + ] + }, + { + "id": "wrye_resolved_3", + "message": "Really?", + "replies": [ + { + "text": "But he never got far. He was attacked while camping one night.", + "nextPhraseID": "wrye_resolved_4" + } + ] + }, + { + "id": "wrye_resolved_4", + "message": "Attacked?", + "replies": [ + { + "text": "Yes, he could not stand up to the monsters, and was critically wounded.", + "nextPhraseID": "wrye_resolved_5" + } + ] + }, + { + "id": "wrye_resolved_5", + "message": "My dear boy.", + "replies": [ + { + "text": "I talked to a man that found him bleeding to death.", + "nextPhraseID": "wrye_resolved_6" + } + ] + }, + { + "id": "wrye_resolved_6", + "message": "He was still alive?", + "replies": [ + { + "text": "Yes, but not for long. He did not survive the wounds. He is now buried to the northwest of Vilegard.", + "nextPhraseID": "wrye_resolved_7" + } + ] + }, + { + "id": "wrye_resolved_7", + "message": "Oh my poor boy. What have I done?", + "rewards": [ + { + "rewardType": 0, + "rewardID": "wrye", + "value": 90 + } + ], + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_resolved_8" + } + ] + }, + { + "id": "wrye_resolved_8", + "message": "I always thought he shared my view of those Feygard snobs.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_resolved_9" + } + ] + }, + { + "id": "wrye_resolved_9", + "message": "And now he is not with us anymore.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_resolved_10" + } + ] + }, + { + "id": "wrye_resolved_10", + "message": "Thank you, friend, for finding out what happened to him and telling me the truth.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_resolved_11" + } + ] + }, + { + "id": "wrye_resolved_11", + "message": "Oh my poor boy.", + "replies": [ + { + "text": "N", + "nextPhraseID": "wrye_mourn_4" + } + ] + } +] diff --git a/AndorsTrail/res/raw/droplists_crossglen.json b/AndorsTrail/res/raw/droplists_crossglen.json new file mode 100644 index 000000000..bbedaec7d --- /dev/null +++ b/AndorsTrail/res/raw/droplists_crossglen.json @@ -0,0 +1,233 @@ +[ + { + "id": "startitems", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 12, + "max": 12 + }, + "chance": 100 + }, + { + "itemID": "club1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "shirt1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_mikhail", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "startitems2", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 12, + "max": 12 + }, + "chance": 100 + } + ] + }, + { + "id": "gold200", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 200, + "max": 200 + }, + "chance": 100 + } + ] + }, + { + "id": "rat", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 2, + "max": 4 + }, + "chance": 100 + }, + { + "itemID": "rat_tail", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + } + ] + }, + { + "id": "trainingrat", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 0, + "max": 2 + }, + "chance": 100 + }, + { + "itemID": "tail_trainingrat", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "gold20", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 20, + "max": 20 + }, + "chance": 100 + } + ] + }, + { + "id": "canine", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 3, + "max": 6 + }, + "chance": 70 + }, + { + "itemID": "gem1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + }, + { + "itemID": "meat", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + } + ] + }, + { + "id": "insect", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 2, + "max": 4 + }, + "chance": 70 + }, + { + "itemID": "shell", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + } + ] + }, + { + "id": "wasp", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 2, + "max": 4 + }, + "chance": 70 + }, + { + "itemID": "insectwing", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + } + ] + }, + { + "id": "gold51", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 51, + "max": 51 + }, + "chance": 100 + } + ] + }, + { + "id": "caveratboss", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + }, + { + "itemID": "tail_caverat", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gem1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + } + ] + } +] diff --git a/AndorsTrail/res/raw/droplists_crossglen_outside.json b/AndorsTrail/res/raw/droplists_crossglen_outside.json new file mode 100644 index 000000000..bc294b41f --- /dev/null +++ b/AndorsTrail/res/raw/droplists_crossglen_outside.json @@ -0,0 +1,250 @@ +[ + { + "id": "cavemonster", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 4, + "max": 12 + }, + "chance": 70 + }, + { + "itemID": "gem2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 25 + }, + { + "itemID": "hammer0", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + }, + { + "itemID": "health_minor", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 25 + } + ] + }, + { + "id": "snake", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 3, + "max": 6 + }, + "chance": 70 + }, + { + "itemID": "meat", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + }, + { + "itemID": "gland", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + } + ] + }, + { + "id": "haunt", + "items": [ + { + "itemID": "vial_empty1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 25 + }, + { + "itemID": "gem1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 25 + } + ] + }, + { + "id": "cavecritter", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 4, + "max": 8 + }, + "chance": 70 + }, + { + "itemID": "gem1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 25 + }, + { + "itemID": "claws", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + } + ] + }, + { + "id": "lich1", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 5, + "max": 15 + }, + "chance": 70 + }, + { + "itemID": "gem2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 25 + }, + { + "itemID": "health_minor", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 25 + } + ] + }, + { + "id": "irogotu", + "items": [ + { + "itemID": "neck_irogotu", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_gandir", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "health", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "canineboss", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 70 + }, + { + "itemID": "hair", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + }, + { + "itemID": "meat", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + }, + { + "itemID": "boots1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + } + ] + }, + { + "id": "snakemaster", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 9, + "max": 9 + }, + "chance": 70 + }, + { + "itemID": "dagger_venom", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gem3", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "health", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + } +] diff --git a/AndorsTrail/res/raw/droplists_debug.json b/AndorsTrail/res/raw/droplists_debug.json new file mode 100644 index 000000000..c9c15d5fc --- /dev/null +++ b/AndorsTrail/res/raw/droplists_debug.json @@ -0,0 +1,165 @@ +[ + { + "id": "debugshop1", + "items": [ + { + "itemID": "club1", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + }, + { + "itemID": "club3", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "hammer0", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "hammer1", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "shirt1", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "shirt2", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "dagger0", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + } + ] + }, + { + "id": "debuglist1", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 3, + "max": 3 + }, + "chance": 100 + }, + { + "itemID": "dagger0", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "shirt1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "club3", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "debuglist2", + "items": [] + }, + { + "id": "startitems", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 12, + "max": 12 + }, + "chance": 100 + }, + { + "itemID": "club1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "shirt1", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "dagger0", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "debug_dagger1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "debug_ring1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "shadow_slayer", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + } +] diff --git a/AndorsTrail/res/raw/droplists_fallhaven.json b/AndorsTrail/res/raw/droplists_fallhaven.json new file mode 100644 index 000000000..8662a3a41 --- /dev/null +++ b/AndorsTrail/res/raw/droplists_fallhaven.json @@ -0,0 +1,213 @@ +[ + { + "id": "catacombrat", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 1, + "max": 5 + }, + "chance": 70 + }, + { + "itemID": "gem1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 25 + }, + { + "itemID": "vial_empty1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 25 + } + ] + }, + { + "id": "skeleton", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 16, + "max": 23 + }, + "chance": 70 + }, + { + "itemID": "gem2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 25 + }, + { + "itemID": "health", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 25 + }, + { + "itemID": "bone", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + } + ] + }, + { + "id": "luthor", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 1, + "max": 5 + }, + "chance": 70 + }, + { + "itemID": "gem1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "key_luthor", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "health_major", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_thoronir", + "items": [ + { + "itemID": "bonemeal_potion", + "quantity": { + "min": 50, + "max": 50 + }, + "chance": 100 + } + ] + }, + { + "id": "larcal", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 4, + "max": 12 + }, + "chance": 70 + }, + { + "itemID": "club1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "calomyran_secrets", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "milk", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "catacombguard", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 4, + "max": 12 + }, + "chance": 70 + }, + { + "itemID": "gem2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 25 + }, + { + "itemID": "health", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 25 + }, + { + "itemID": "vial_empty2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 25 + }, + { + "itemID": "gloves1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + } + ] + }, + { + "id": "nocmar", + "items": [ + { + "itemID": "gem1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 25 + } + ] + } +] diff --git a/AndorsTrail/res/raw/droplists_v0610_monsters.json b/AndorsTrail/res/raw/droplists_v0610_monsters.json new file mode 100644 index 000000000..bc8621a15 --- /dev/null +++ b/AndorsTrail/res/raw/droplists_v0610_monsters.json @@ -0,0 +1,571 @@ +[ + { + "id": "fieldwasp", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 0, + "max": 10 + }, + "chance": 70 + }, + { + "itemID": "insectwing", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + } + ] + }, + { + "id": "larva_1", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 0, + "max": 5 + }, + "chance": 70 + }, + { + "itemID": "gem1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + } + ] + }, + { + "id": "larva_2", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 0, + "max": 9 + }, + "chance": 70 + }, + { + "itemID": "gem1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + } + ] + }, + { + "id": "fieldcritter_0", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 0, + "max": 4 + }, + "chance": 70 + }, + { + "itemID": "shell", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + } + ] + }, + { + "id": "fieldcritter_1", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 0, + "max": 9 + }, + "chance": 70 + }, + { + "itemID": "shell", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + } + ] + }, + { + "id": "fieldcritter_2", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 3, + "max": 15 + }, + "chance": 70 + }, + { + "itemID": "gland", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + }, + { + "itemID": "ring1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + } + ] + }, + { + "id": "fieldcritter_3", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 3, + "max": 17 + }, + "chance": 70 + }, + { + "itemID": "gland", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + }, + { + "itemID": "ring1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + }, + { + "itemID": "ring2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + } + ] + }, + { + "id": "rivertroll", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 0, + "max": 70 + }, + "chance": 70 + }, + { + "itemID": "bone", + "quantity": { + "min": 3, + "max": 5 + }, + "chance": 50 + }, + { + "itemID": "meat", + "quantity": { + "min": 3, + "max": 5 + }, + "chance": 30 + }, + { + "itemID": "club_fine_wooden", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "izthiel", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 3, + "max": 15 + }, + "chance": 70 + }, + { + "itemID": "izthiel_claw", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + }, + { + "itemID": "ring_jinxed1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 1 + }, + { + "itemID": "ring2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + } + ] + }, + { + "id": "izthiel_4", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 3, + "max": 40 + }, + "chance": 70 + }, + { + "itemID": "izthiel_claw", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + }, + { + "itemID": "ring_jinxed1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 1 + }, + { + "itemID": "ring2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 20 + }, + { + "itemID": "shadowfang", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": "1/1000" + } + ] + }, + { + "id": "frog", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 0, + "max": 3 + }, + "chance": 70 + } + ] + }, + { + "id": "frog_3", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 0, + "max": 3 + }, + "chance": 70 + }, + { + "itemID": "gland", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + } + ] + }, + { + "id": "iqhan_lesser", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 1, + "max": 5 + }, + "chance": 70 + }, + { + "itemID": "iqhan_pendant", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 1 + }, + { + "itemID": "shirt_torn", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + }, + { + "itemID": "dagger0", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + } + ] + }, + { + "id": "iqhan", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 1, + "max": 9 + }, + "chance": 70 + }, + { + "itemID": "iqhan_pendant", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + }, + { + "itemID": "shield1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + }, + { + "itemID": "dagger0", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + } + ] + }, + { + "id": "iqhan_master", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 1, + "max": 9 + }, + "chance": 70 + }, + { + "itemID": "iqhan_pendant", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + }, + { + "itemID": "gloves_crude_cloth", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + }, + { + "itemID": "dagger0", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + }, + { + "itemID": "health", + "quantity": { + "min": 1, + "max": 3 + }, + "chance": 5 + } + ] + }, + { + "id": "iqhan_beast", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 0, + "max": 1 + }, + "chance": 70 + }, + { + "itemID": "chaosreaper", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": "1/1000" + }, + { + "itemID": "health", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + } + ] + }, + { + "id": "iqhan_boss", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 50, + "max": 100 + }, + "chance": 100 + }, + { + "itemID": "iqhan_pendant", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "dagger_shadow_priests", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "health", + "quantity": { + "min": 5, + "max": 7 + }, + "chance": 100 + } + ] + }, + { + "id": "gold5", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + } + ] + }, + { + "id": "gold25", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 25, + "max": 25 + }, + "chance": 100 + } + ] + }, + { + "id": "gold50", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 50, + "max": 50 + }, + "chance": 100 + } + ] + }, + { + "id": "gauward_sold_20", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 100, + "max": 100 + }, + "chance": 100 + }, + { + "itemID": "health", + "quantity": { + "min": 2, + "max": 2 + }, + "chance": 100 + } + ] + } +] diff --git a/AndorsTrail/res/raw/droplists_v0610_npcs.json b/AndorsTrail/res/raw/droplists_v0610_npcs.json new file mode 100644 index 000000000..e59f56b2f --- /dev/null +++ b/AndorsTrail/res/raw/droplists_v0610_npcs.json @@ -0,0 +1,281 @@ +[ + { + "id": "tinlyn_bells", + "items": [ + { + "itemID": "tinlyn_bells", + "quantity": { + "min": 4, + "max": 4 + }, + "chance": 100 + } + ] + }, + { + "id": "fieldwasp_unique", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 0, + "max": 10 + }, + "chance": 70 + }, + { + "itemID": "hadracor_waspwing", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "tinlyn_sheep", + "items": [ + { + "itemID": "meat", + "quantity": { + "min": 0, + "max": 3 + }, + "chance": 70 + }, + { + "itemID": "tinlyn_sheep_meat", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "feygard_shipment", + "items": [ + { + "itemID": "fg_ironsword", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + } + ] + }, + { + "id": "vg_smith_fg_items", + "items": [ + { + "itemID": "fg_ironsword_d", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + } + ] + }, + { + "id": "hadracor_reward", + "items": [ + { + "itemID": "gloves_woodcutter", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "larva_boss", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 0, + "max": 9 + }, + "chance": 100 + }, + { + "itemID": "gem2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "health_minor", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "erinith_book", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "keknazar", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 0, + "max": 45 + }, + "chance": 70 + }, + { + "itemID": "bone", + "quantity": { + "min": 1, + "max": 3 + }, + "chance": 100 + }, + { + "itemID": "health_minor", + "quantity": { + "min": 1, + "max": 2 + }, + "chance": 100 + }, + { + "itemID": "necklace_shield_0", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "rogorn", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 0, + "max": 50 + }, + "chance": 70 + }, + { + "itemID": "rogorn_qitem", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "longsword_hard_iron", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "health_minor", + "quantity": { + "min": 1, + "max": 2 + }, + "chance": 100 + } + ] + }, + { + "id": "rogorn_henchman", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 0, + "max": 20 + }, + "chance": 70 + }, + { + "itemID": "rogorn_qitem", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "health_minor", + "quantity": { + "min": 1, + "max": 2 + }, + "chance": 100 + } + ] + }, + { + "id": "buceth", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 0, + "max": 20 + }, + "chance": 70 + }, + { + "itemID": "buceth_vial", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "health_minor", + "quantity": { + "min": 1, + "max": 4 + }, + "chance": 100 + }, + { + "itemID": "vial_empty2", + "quantity": { + "min": 1, + "max": 3 + }, + "chance": 100 + }, + { + "itemID": "ring_life", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + } +] diff --git a/AndorsTrail/res/raw/droplists_v0610_shops.json b/AndorsTrail/res/raw/droplists_v0610_shops.json new file mode 100644 index 000000000..7c0f0ba9c --- /dev/null +++ b/AndorsTrail/res/raw/droplists_v0610_shops.json @@ -0,0 +1,2195 @@ +[ + { + "id": "shop_audir", + "items": [ + { + "itemID": "axe2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "club1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ironsword0", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "hammer0", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "club3", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "rusted_iron_sword", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ironsword1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "broadsword1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ironsword2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "shortsword1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "longsword_hard_iron", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "broken_buckler", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "shield_crude_wooden", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "shield_cracked_wooden", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "shield_wooden_buckler", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "shield3", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "boots_crude_leather", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_vg_armorer", + "items": [ + { + "itemID": "shield1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "shield4", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "shield_wooden", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "hat3", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "hat4", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "hat_leather1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "hat_hard_leather", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "armor_chain1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "armor_chain2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "armour_rigid_chain", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_vg_smith", + "items": [ + { + "itemID": "hammer1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "club_fine_wooden", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "longsword_hard_iron", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "axe_fine_iron", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "sword_hard_iron", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "broadsword_fine_iron", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "broadsword2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "sword_fencing", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "boots5", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_hadracor", + "items": [ + { + "itemID": "axe1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "woodcutter_hatchet", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "axe_gutsplitter", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "hammer_skullcrusher", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "armour_crude_leather", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "armour_rigid_leather", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gloves1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gloves_woodcutter", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "woodcutter_boots", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_siola", + "items": [ + { + "itemID": "broadsword_fine_iron", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "broadsword2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "broadsword_fine_steel", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "club_wood1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "heavy_club", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "club_brutal", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "club_wood2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "shield6", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "shield7", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "helm_crude_iron", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_minarra", + "items": [ + { + "itemID": "sword_challengers", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "steelsword1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "sword_defenders", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "sword_balanced_steel", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "shield5", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "shield_wooden_defender", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "armour_superior_chain", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "armour_chain_champ", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gloves_guards", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "boots_defender", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_challenger", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_block", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_block2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_arambold", + "items": [ + { + "itemID": "hat1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "hat2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "shirt1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "shirt_torn", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gloves_fumbling", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gloves_fancy", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gloves_crude_cloth", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_dmg1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_dmg2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_challenger", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_fallhaven_clothes", + "items": [ + { + "itemID": "hat1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "hat2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "shirt1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "shirt_torn", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "shirt_weathered", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "shirt_patched_cloth", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "shirt2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "shirt_dmgresist", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gloves_fumbling", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gloves_fancy", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gloves_crude_cloth", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "used_gloves", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gloves_barbrawler", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gloves_attack1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "boots_crude_leather", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "boots_sewn", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "boots1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "boots3", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "jewel_fallhaven", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_fumbling", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_alynndir", + "items": [ + { + "itemID": "vial_empty1", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + }, + { + "itemID": "health", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + }, + { + "itemID": "rat_tail", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "gem2", + "quantity": { + "min": 3, + "max": 3 + }, + "chance": 5 + }, + { + "itemID": "meat", + "quantity": { + "min": 20, + "max": 20 + }, + "chance": 30 + }, + { + "itemID": "hair", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 30 + }, + { + "itemID": "hat_fine_leather", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "hat_leather_vision", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "armour_crude_leather", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "armour_rigid_leather", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gloves_crude_leather", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "boots_hard_leather", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_jinxed1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_gruil", + "items": [ + { + "itemID": "dagger0", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "shirt_weathered", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_crude_combat", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_barbrawler", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gem1", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "gem2", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "gem3", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_ganos", + "items": [ + { + "itemID": "dagger0", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "dagger1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "dagger_sharp_steel", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "shirt_weathered", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "shirt_patched_cloth", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gloves_attack1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gloves_grip", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "boots2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "necklace_strike", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_crit1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_dmg2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_taverbrawler", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_dmg_4", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gem3", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_troublemaker", + "items": [ + { + "itemID": "armour_firm_leather", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "armor1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "armor4", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "used_gloves", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gloves_barbrawler", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gloves_attack2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gloves_troublemaker", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "boots_coward", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_crit2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_troublemaker", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gem3", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_dunla", + "items": [ + { + "itemID": "dagger1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "sword_villains", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "shirt2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "armour_firm_leather", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "armor2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "shirt_dmgresist", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gloves3", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gloves4", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_polished_combat", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_backstab", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gem3", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_ailshara", + "items": [ + { + "itemID": "dagger_sharp_steel", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "dagger2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "quickdagger1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "armor3", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "armour_misfortune", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "armour_leather_villain", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gloves2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gloves_troublemaker", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gloves_leather_attack", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_polished_backstab", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_villain", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_tharal", + "items": [ + { + "itemID": "health_minor2", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + }, + { + "itemID": "health", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + }, + { + "itemID": "health_major2", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + }, + { + "itemID": "necklace_shield_0", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_crude_surehit", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_rough_damage", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_crude_block", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_rough_life", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_dmg1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_atkch1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_life", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_jolnor", + "items": [ + { + "itemID": "health_minor2", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + }, + { + "itemID": "health", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + }, + { + "itemID": "health_major2", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + }, + { + "itemID": "necklace_defender_stone", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "necklace_shield2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_dmg_3", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_defender", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_dmg6", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_protector", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_talion", + "items": [ + { + "itemID": "health_minor2", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + }, + { + "itemID": "health", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + }, + { + "itemID": "health_major2", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + }, + { + "itemID": "necklace_shield1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "necklace_protector", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_block1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_guardian", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_dmg5", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_fallhaven_potions", + "items": [ + { + "itemID": "vial_empty1", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + }, + { + "itemID": "vial_empty2", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + }, + { + "itemID": "vial_empty3", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + }, + { + "itemID": "vial_empty4", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + }, + { + "itemID": "health_minor2", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + }, + { + "itemID": "health", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + }, + { + "itemID": "health_major2", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + }, + { + "itemID": "milk", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + }, + { + "itemID": "rat_tail", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "radish", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "strawberry", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_prim_armorer", + "items": [ + { + "itemID": "rusted_iron_sword", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ironsword1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "broken_buckler", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "used_gloves", + "quantity": { + "min": 1, + "max": 2 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_waeges", + "items": [ + { + "itemID": "bwm_dagger", + "quantity": { + "min": 2, + "max": 2 + }, + "chance": 100 + }, + { + "itemID": "bwm_dagger_venom", + "quantity": { + "min": 2, + "max": 2 + }, + "chance": 100 + }, + { + "itemID": "bwm_ironsword", + "quantity": { + "min": 2, + "max": 2 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_iducus", + "items": [ + { + "itemID": "bwm_leather_armour", + "quantity": { + "min": 2, + "max": 2 + }, + "chance": 100 + }, + { + "itemID": "bwm_leather_cap", + "quantity": { + "min": 2, + "max": 2 + }, + "chance": 100 + }, + { + "itemID": "bwm_combat_ring", + "quantity": { + "min": 2, + "max": 2 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_thieves_guild_cook", + "items": [ + { + "itemID": "meat", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "meat_cooked", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "bread", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "mushroom", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "eggs", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "mead", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_mara", + "items": [ + { + "itemID": "apple_green", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "meat", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "meat_cooked", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "carrot", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "bread", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "mead", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_bela", + "items": [ + { + "itemID": "apple_green", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "apple_red", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "meat", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "meat_cooked", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "carrot", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "mushroom", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "milk", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "mead", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_torilo", + "items": [ + { + "itemID": "meat_cooked", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "bread", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "mushroom", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "eggs", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "mead", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "pear", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_tharwyn", + "items": [ + { + "itemID": "meat", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "meat_cooked", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "carrot", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "mushroom", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "mead", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_gallain", + "items": [ + { + "itemID": "meat_cooked", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "bread", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "mead", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_grimion", + "items": [ + { + "itemID": "meat_cooked", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "carrot", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "mushroom", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "mead", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + } + ] + }, + { + "id": "undropped_items", + "items": [ + { + "itemID": "health_major", + "quantity": { + "min": 0, + "max": 0 + }, + "chance": 0 + }, + { + "itemID": "heartstone", + "quantity": { + "min": 0, + "max": 0 + }, + "chance": 0 + } + ] + } +] diff --git a/AndorsTrail/res/raw/droplists_v0611_monsters.json b/AndorsTrail/res/raw/droplists_v0611_monsters.json new file mode 100644 index 000000000..c66b46e62 --- /dev/null +++ b/AndorsTrail/res/raw/droplists_v0611_monsters.json @@ -0,0 +1,577 @@ +[ + { + "id": "lonelyhouse_sp", + "items": [ + { + "itemID": "algangror_rat", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "irdegh_spawn", + "items": [ + { + "itemID": "meat", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 1 + }, + { + "itemID": "gland", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 1 + } + ] + }, + { + "id": "irdegh", + "items": [ + { + "itemID": "meat", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + }, + { + "itemID": "gland", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 1 + }, + { + "itemID": "irdegh", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + } + ] + }, + { + "id": "irdegh_b", + "items": [ + { + "itemID": "meat", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + }, + { + "itemID": "gland", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 1 + }, + { + "itemID": "irdegh", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + }, + { + "itemID": "ring_crude_combat", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 1 + } + ] + }, + { + "id": "scaradon", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 0, + "max": 4 + }, + "chance": 70 + }, + { + "itemID": "shell", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + }, + { + "itemID": "gem1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + } + ] + }, + { + "id": "scaradon_b", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 0, + "max": 12 + }, + "chance": 70 + }, + { + "itemID": "shell", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + }, + { + "itemID": "gem1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + }, + { + "itemID": "ring_rough_life", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 1 + } + ] + }, + { + "id": "burrower", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 0, + "max": 3 + }, + "chance": 70 + }, + { + "itemID": "shell", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + }, + { + "itemID": "gem1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + } + ] + }, + { + "id": "mwolf", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 1, + "max": 5 + }, + "chance": 50 + }, + { + "itemID": "gem2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 1 + }, + { + "itemID": "meat", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + }, + { + "itemID": "hair", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + } + ] + }, + { + "id": "mwolf_b", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 1, + "max": 12 + }, + "chance": 50 + }, + { + "itemID": "gem4", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 20 + }, + { + "itemID": "meat", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + }, + { + "itemID": "hair", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + } + ] + }, + { + "id": "arulir", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 1, + "max": 12 + }, + "chance": 70 + }, + { + "itemID": "meat", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + }, + { + "itemID": "hair", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 10 + }, + { + "itemID": "arulir_skin", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 1 + } + ] + }, + { + "id": "maonit", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 1, + "max": 7 + }, + "chance": 70 + }, + { + "itemID": "meat", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + }, + { + "itemID": "hair", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 10 + }, + { + "itemID": "ring_crude_block", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 1 + } + ] + }, + { + "id": "allaceph", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 1, + "max": 20 + }, + "chance": 30 + }, + { + "itemID": "gem1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 1 + }, + { + "itemID": "health", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + }, + { + "itemID": "vial_empty2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + } + ] + }, + { + "id": "allaceph_b", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 1, + "max": 20 + }, + "chance": 30 + }, + { + "itemID": "gem4", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + }, + { + "itemID": "health", + "quantity": { + "min": 1, + "max": 2 + }, + "chance": 30 + }, + { + "itemID": "vial_empty2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + } + ] + }, + { + "id": "mbrute", + "items": [ + { + "itemID": "bone", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 10 + }, + { + "itemID": "ring1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 1 + } + ] + }, + { + "id": "mbrute_b", + "items": [ + { + "itemID": "bone", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 10 + }, + { + "itemID": "hair", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 10 + }, + { + "itemID": "ring1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 10 + } + ] + }, + { + "id": "erumen", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 0, + "max": 3 + }, + "chance": 70 + }, + { + "itemID": "gem1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 10 + } + ] + }, + { + "id": "erumen_b", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 0, + "max": 9 + }, + "chance": 70 + }, + { + "itemID": "gem2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + } + ] + }, + { + "id": "plaguespider", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 0, + "max": 3 + }, + "chance": 70 + }, + { + "itemID": "gland", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 1 + }, + { + "itemID": "spider", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + } + ] + }, + { + "id": "plaguespider_b", + "items": [ + { + "itemID": "health", + "quantity": { + "min": 0, + "max": 1 + }, + "chance": 10 + }, + { + "itemID": "vial_empty1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + }, + { + "itemID": "valugha_gown", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": "1/1000" + }, + { + "itemID": "valugha_hat", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": "1/1000" + } + ] + } +] diff --git a/AndorsTrail/res/raw/droplists_v0611_npcs.json b/AndorsTrail/res/raw/droplists_v0611_npcs.json new file mode 100644 index 000000000..22b3831b9 --- /dev/null +++ b/AndorsTrail/res/raw/droplists_v0611_npcs.json @@ -0,0 +1,525 @@ +[ + { + "id": "sign_toszylae", + "items": [ + { + "itemID": "helm_protector0", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "thorin_bone", + "items": [ + { + "itemID": "thorin_bone", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "toszylae", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 0, + "max": 20 + }, + "chance": 100 + }, + { + "itemID": "toszylae_heart", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "health", + "quantity": { + "min": 5, + "max": 7 + }, + "chance": 100 + }, + { + "itemID": "gem5", + "quantity": { + "min": 2, + "max": 2 + }, + "chance": 100 + }, + { + "itemID": "rock", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "toszylae_guard", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 0, + "max": 20 + }, + "chance": 100 + }, + { + "itemID": "health", + "quantity": { + "min": 1, + "max": 2 + }, + "chance": 100 + }, + { + "itemID": "gem4", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "rock", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "sign_ulirfendor", + "items": [ + { + "itemID": "helm_protector", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "potion_rotworm", + "items": [ + { + "itemID": "potion_rotworm", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "ulirfendor", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 0, + "max": 50 + }, + "chance": 70 + }, + { + "itemID": "club3", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "health_minor", + "quantity": { + "min": 1, + "max": 2 + }, + "chance": 100 + }, + { + "itemID": "vial_empty2", + "quantity": { + "min": 3, + "max": 5 + }, + "chance": 100 + } + ] + }, + { + "id": "lyson_marrow", + "items": [ + { + "itemID": "lyson_marrow", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "hjaldar_pots", + "items": [ + { + "itemID": "pot_focus_dmg", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "pot_focus_ac", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "fiveidols", + "items": [ + { + "itemID": "algangror_idol", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + } + ] + }, + { + "id": "algangror", + "items": [ + { + "itemID": "algangror_ring", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gold", + "quantity": { + "min": 0, + "max": 20 + }, + "chance": 100 + }, + { + "itemID": "health", + "quantity": { + "min": 1, + "max": 2 + }, + "chance": 100 + }, + { + "itemID": "gem4", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "vial_empty2", + "quantity": { + "min": 3, + "max": 5 + }, + "chance": 100 + } + ] + }, + { + "id": "gloves_combat2", + "items": [ + { + "itemID": "gloves_combat2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "remgard_shield_2", + "items": [ + { + "itemID": "remgard_shield_2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "armour_chain_remg", + "items": [ + { + "itemID": "armour_chain_remg", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "marrowtaint", + "items": [ + { + "itemID": "marrowtaint", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "ervelyn_hat", + "items": [ + { + "itemID": "hat_crit", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "oegyth1", + "items": [ + { + "itemID": "oegyth", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "wild16_cave1", + "items": [ + { + "itemID": "vial_empty1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "vial_empty2", + "quantity": { + "min": 2, + "max": 2 + }, + "chance": 100 + }, + { + "itemID": "health_minor2", + "quantity": { + "min": 2, + "max": 2 + }, + "chance": 100 + } + ] + }, + { + "id": "wild16_cave2", + "items": [ + { + "itemID": "health", + "quantity": { + "min": 2, + "max": 2 + }, + "chance": 100 + }, + { + "itemID": "milk", + "quantity": { + "min": 3, + "max": 3 + }, + "chance": 100 + }, + { + "itemID": "pot_speed_1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + }, + { + "itemID": "pot_poison_weak", + "quantity": { + "min": 3, + "max": 3 + }, + "chance": 5 + }, + { + "itemID": "pot_poison_weak_antidote", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "pot_blind_rage", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "pot_bleeding_ointment", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "health_major2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "wild16_cave3", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 2000, + "max": 2000 + }, + "chance": 100 + } + ] + }, + { + "id": "kaverin_message", + "items": [ + { + "itemID": "kaverin_message", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "vacor_map", + "items": [ + { + "itemID": "vacor_map", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "kaverin", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 100, + "max": 100 + }, + "chance": 100 + }, + { + "itemID": "health", + "quantity": { + "min": 1, + "max": 2 + }, + "chance": 100 + }, + { + "itemID": "shirt_weathered", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_crude_combat", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "kaverin_message", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + } +] diff --git a/AndorsTrail/res/raw/droplists_v0611_shops.json b/AndorsTrail/res/raw/droplists_v0611_shops.json new file mode 100644 index 000000000..865a6c8ee --- /dev/null +++ b/AndorsTrail/res/raw/droplists_v0611_shops.json @@ -0,0 +1,386 @@ +[ + { + "id": "shop_thorin", + "items": [ + { + "itemID": "pot_scaradon", + "quantity": { + "min": 30, + "max": 30 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_hjaldar", + "items": [ + { + "itemID": "pot_focus_dmg", + "quantity": { + "min": 8, + "max": 8 + }, + "chance": 100 + }, + { + "itemID": "pot_focus_ac", + "quantity": { + "min": 8, + "max": 8 + }, + "chance": 100 + }, + { + "itemID": "pot_focus_dmg2", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "pot_focus_ac2", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_rothses", + "items": [ + { + "itemID": "remgard_shield_1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "helm_combat1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "helm_combat2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "helm_combat3", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "helm_defend1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gloves_guard1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "boots_combat1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "boots_combat2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "boots_remgard1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "boots_guard1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_arghes", + "items": [ + { + "itemID": "ring_barbrawler", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "boots_brawler", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "helm_redeye1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "helm_redeye2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_troublemaker", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_arnal", + "items": [ + { + "itemID": "sword_hard_iron", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "axe_fine_iron", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "longsword_hard_iron", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "dagger_sharp_steel", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gloves_combat1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gloves_remgard1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gloves_remgard2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_ervelyn", + "items": [ + { + "itemID": "shirt_weathered", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "shirt_patched_cloth", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "shirt2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "armour_cvest1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "armour_cvest2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gloves_leather1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gloves_arulir", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_kendelow", + "items": [ + { + "itemID": "meat_cooked", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "carrot", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "mushroom", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + }, + { + "itemID": "mead", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_skylenar", + "items": [ + { + "itemID": "health_minor2", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + }, + { + "itemID": "health", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + }, + { + "itemID": "health_major2", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + }, + { + "itemID": "ring_dmg6", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_protector", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + } +] diff --git a/AndorsTrail/res/raw/droplists_v068.json b/AndorsTrail/res/raw/droplists_v068.json new file mode 100644 index 000000000..82695c291 --- /dev/null +++ b/AndorsTrail/res/raw/droplists_v068.json @@ -0,0 +1,221 @@ +[ + { + "id": "sleepingmead", + "items": [ + { + "itemID": "sleepingmead", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "ff_outsideguard", + "items": [ + { + "itemID": "ffguard_qitem", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "vial_empty1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "shield1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ironsword1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "beetle2", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 0, + "max": 12 + }, + "chance": 70 + }, + { + "itemID": "shell", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + } + ] + }, + { + "id": "shadowgarg1", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 5, + "max": 12 + }, + "chance": 70 + }, + { + "itemID": "gem2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 25 + } + ] + }, + { + "id": "shadowgarg2", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 3, + "max": 19 + }, + "chance": 70 + }, + { + "itemID": "gem2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 25 + }, + { + "itemID": "health", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 25 + }, + { + "itemID": "rock", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 25 + } + ] + }, + { + "id": "shadowgarg3", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 16, + "max": 23 + }, + "chance": 70 + }, + { + "itemID": "gem2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 25 + }, + { + "itemID": "gem3", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 10 + }, + { + "itemID": "health", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 25 + }, + { + "itemID": "rock", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 25 + }, + { + "itemID": "ring_shadow0", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": "1/10000" + } + ] + }, + { + "id": "maelveon", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 52, + "max": 52 + }, + "chance": 100 + }, + { + "itemID": "gem3", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "health", + "quantity": { + "min": 2, + "max": 2 + }, + "chance": 100 + }, + { + "itemID": "armor_stone", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + } +] diff --git a/AndorsTrail/res/raw/droplists_v069_monsters.json b/AndorsTrail/res/raw/droplists_v069_monsters.json new file mode 100644 index 000000000..9ac613581 --- /dev/null +++ b/AndorsTrail/res/raw/droplists_v069_monsters.json @@ -0,0 +1,523 @@ +[ + { + "id": "kazaul_1", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 3, + "max": 19 + }, + "chance": 70 + }, + { + "itemID": "gem4", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 10 + }, + { + "itemID": "health_minor", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 10 + }, + { + "itemID": "rock", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + } + ] + }, + { + "id": "kazaul_2", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 6, + "max": 25 + }, + "chance": 70 + }, + { + "itemID": "gem5", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 10 + }, + { + "itemID": "health", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 10 + }, + { + "itemID": "rock", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + }, + { + "itemID": "rapier_lifesteal", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": "1/10000" + } + ] + }, + { + "id": "restless_dead_1", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 20, + "max": 29 + }, + "chance": 70 + }, + { + "itemID": "gem3", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 10 + }, + { + "itemID": "health_minor", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 10 + }, + { + "itemID": "bone", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 10 + } + ] + }, + { + "id": "restless_dead_2", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 20, + "max": 29 + }, + "chance": 70 + }, + { + "itemID": "gem4", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 10 + }, + { + "itemID": "health", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 10 + }, + { + "itemID": "bone", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 10 + }, + { + "itemID": "gloves_life", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": "1/1000" + } + ] + }, + { + "id": "cave_serpent", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 3, + "max": 10 + }, + "chance": 70 + }, + { + "itemID": "meat", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + }, + { + "itemID": "gland", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + } + ] + }, + { + "id": "gornaud_1", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 1, + "max": 30 + }, + "chance": 70 + }, + { + "itemID": "meat", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + }, + { + "itemID": "hair", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 10 + } + ] + }, + { + "id": "gornaud_2", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 1, + "max": 40 + }, + "chance": 70 + }, + { + "itemID": "meat", + "quantity": { + "min": 1, + "max": 2 + }, + "chance": 5 + }, + { + "itemID": "hair", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 10 + } + ] + }, + { + "id": "gornaud_3", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 1, + "max": 45 + }, + "chance": 70 + }, + { + "itemID": "meat", + "quantity": { + "min": 1, + "max": 3 + }, + "chance": 5 + }, + { + "itemID": "hair", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 10 + }, + { + "itemID": "bwm_brew", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 5 + } + ] + }, + { + "id": "wyrm_1", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 1, + "max": 30 + }, + "chance": 70 + }, + { + "itemID": "bone", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 10 + }, + { + "itemID": "vial_empty1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 25 + }, + { + "itemID": "health_minor", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 10 + } + ] + }, + { + "id": "wyrm_2", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 1, + "max": 40 + }, + "chance": 70 + }, + { + "itemID": "bone", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 10 + }, + { + "itemID": "vial_empty1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 25 + }, + { + "itemID": "health_minor", + "quantity": { + "min": 1, + "max": 2 + }, + "chance": 10 + } + ] + }, + { + "id": "wyrm_3", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 1, + "max": 60 + }, + "chance": 70 + }, + { + "itemID": "bone", + "quantity": { + "min": 1, + "max": 2 + }, + "chance": 10 + }, + { + "itemID": "vial_empty1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 25 + }, + { + "itemID": "health", + "quantity": { + "min": 1, + "max": 2 + }, + "chance": 10 + }, + { + "itemID": "bwm_claws", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 10 + } + ] + }, + { + "id": "wyrm_4", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 1, + "max": 60 + }, + "chance": 70 + }, + { + "itemID": "bone", + "quantity": { + "min": 1, + "max": 2 + }, + "chance": 10 + }, + { + "itemID": "vial_empty1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 25 + }, + { + "itemID": "pot_poison_weak", + "quantity": { + "min": 1, + "max": 3 + }, + "chance": 5 + }, + { + "itemID": "health_minor", + "quantity": { + "min": 1, + "max": 2 + }, + "chance": 10 + }, + { + "itemID": "elytharan_redeemer", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": "1/10000" + } + ] + }, + { + "id": "aulaeth", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 1, + "max": 5 + }, + "chance": 70 + }, + { + "itemID": "bone", + "quantity": { + "min": 1, + "max": 3 + }, + "chance": 10 + }, + { + "itemID": "vial_empty1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 25 + }, + { + "itemID": "health", + "quantity": { + "min": 1, + "max": 2 + }, + "chance": 10 + }, + { + "itemID": "bwm_dagger", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 1 + }, + { + "itemID": "bwm_ironsword", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 1 + }, + { + "itemID": "pot_speed_1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + } + ] + } +] diff --git a/AndorsTrail/res/raw/droplists_v069_npcs.json b/AndorsTrail/res/raw/droplists_v069_npcs.json new file mode 100644 index 000000000..9ff2dfa62 --- /dev/null +++ b/AndorsTrail/res/raw/droplists_v069_npcs.json @@ -0,0 +1,387 @@ +[ + { + "id": "harlenn", + "items": [ + { + "itemID": "harlenn_id", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_shadow_embrace", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gold", + "quantity": { + "min": 20, + "max": 50 + }, + "chance": 100 + } + ] + }, + { + "id": "guthbered", + "items": [ + { + "itemID": "guthbered_id", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "dagger_barbed", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gold", + "quantity": { + "min": 20, + "max": 50 + }, + "chance": 100 + } + ] + }, + { + "id": "harlenn_reward", + "items": [ + { + "itemID": "clouded_rage", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gold", + "quantity": { + "min": 50, + "max": 50 + }, + "chance": 100 + }, + { + "itemID": "health", + "quantity": { + "min": 2, + "max": 2 + }, + "chance": 100 + } + ] + }, + { + "id": "guthbered_reward", + "items": [ + { + "itemID": "bwm_dagger", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gold", + "quantity": { + "min": 50, + "max": 50 + }, + "chance": 100 + }, + { + "itemID": "health", + "quantity": { + "min": 2, + "max": 2 + }, + "chance": 100 + }, + { + "itemID": "bwm_permit", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "throdna_items", + "items": [ + { + "itemID": "q_kazaul_vial", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "fulus_reward", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 450, + "max": 450 + }, + "chance": 100 + } + ] + }, + { + "id": "container_primsleep", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 1, + "max": 5 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_herec", + "items": [ + { + "itemID": "pot_fatigue_restore", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + } + ] + }, + { + "id": "kazaul_guardian", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 52, + "max": 52 + }, + "chance": 100 + }, + { + "itemID": "gem3", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "health", + "quantity": { + "min": 2, + "max": 2 + }, + "chance": 100 + }, + { + "itemID": "shadow_slayer", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "bjorgur_bandit", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 10, + "max": 50 + }, + "chance": 100 + }, + { + "itemID": "gem2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "gloves1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "bjorgur_dagger", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_birgil", + "items": [ + { + "itemID": "mead", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + }, + { + "itemID": "health_minor2", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + }, + { + "itemID": "health", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + }, + { + "itemID": "radish", + "quantity": { + "min": 5, + "max": 5 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_samar", + "items": [ + { + "itemID": "health", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + }, + { + "itemID": "health_major2", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + }, + { + "itemID": "pot_poison_weak_antidote", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + }, + { + "itemID": "pot_bleeding_ointment", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + }, + { + "itemID": "pot_speed_1", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + } + ] + }, + { + "id": "shop_mazeg", + "items": [ + { + "itemID": "health", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + }, + { + "itemID": "health_major2", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + }, + { + "itemID": "bwm_brew", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + }, + { + "itemID": "pot_poison_weak", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + }, + { + "itemID": "pot_blind_rage", + "quantity": { + "min": 10, + "max": 10 + }, + "chance": 100 + } + ] + } +] diff --git a/AndorsTrail/res/raw/droplists_wilderness.json b/AndorsTrail/res/raw/droplists_wilderness.json new file mode 100644 index 000000000..ccf895039 --- /dev/null +++ b/AndorsTrail/res/raw/droplists_wilderness.json @@ -0,0 +1,599 @@ +[ + { + "id": "prisoner", + "items": [ + { + "itemID": "rock", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "skeleton2", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 16, + "max": 23 + }, + "chance": 70 + }, + { + "itemID": "gem2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 25 + }, + { + "itemID": "health", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 25 + }, + { + "itemID": "bone", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + }, + { + "itemID": "ring_dmg1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 1 + } + ] + }, + { + "id": "pack_boss", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 3, + "max": 35 + }, + "chance": 100 + }, + { + "itemID": "gem4", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "meat", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + }, + { + "itemID": "packhide", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "hair", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + } + ] + }, + { + "id": "snake2", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 7, + "max": 12 + }, + "chance": 70 + }, + { + "itemID": "meat", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + }, + { + "itemID": "gland", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + } + ] + }, + { + "id": "bandit1", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 4, + "max": 41 + }, + "chance": 70 + } + ] + }, + { + "id": "pack1", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 3, + "max": 15 + }, + "chance": 70 + }, + { + "itemID": "gem2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + }, + { + "itemID": "meat", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + }, + { + "itemID": "hair", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + } + ] + }, + { + "id": "unzel", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 16, + "max": 30 + }, + "chance": 100 + }, + { + "itemID": "health", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_unzel", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "boots_unzel", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "pack2", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 3, + "max": 25 + }, + "chance": 70 + }, + { + "itemID": "gem3", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + }, + { + "itemID": "meat", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + }, + { + "itemID": "hair", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + } + ] + }, + { + "id": "canine2", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 3, + "max": 25 + }, + "chance": 70 + }, + { + "itemID": "gem1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + }, + { + "itemID": "meat", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + }, + { + "itemID": "hair", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + } + ] + }, + { + "id": "pack3", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 3, + "max": 35 + }, + "chance": 70 + }, + { + "itemID": "gem4", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 5 + }, + { + "itemID": "meat", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + }, + { + "itemID": "hair", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + } + ] + }, + { + "id": "skeleton3", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 20, + "max": 29 + }, + "chance": 70 + }, + { + "itemID": "gem2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 25 + }, + { + "itemID": "health", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 25 + }, + { + "itemID": "bone", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 30 + }, + { + "itemID": "ring_dmg2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 1 + } + ] + }, + { + "id": "vacor", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 16, + "max": 30 + }, + "chance": 100 + }, + { + "itemID": "health", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_vacor", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "boots_vacor", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "fallhaven_bandit", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 4, + "max": 41 + }, + "chance": 100 + }, + { + "itemID": "vacor_spell", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "undead1", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 5, + "max": 23 + }, + "chance": 70 + }, + { + "itemID": "gem2", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 25 + }, + { + "itemID": "health", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 25 + }, + { + "itemID": "ironsword1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 10 + } + ] + }, + { + "id": "flagstone_guard2", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 62, + "max": 62 + }, + "chance": 100 + }, + { + "itemID": "gem4", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "health", + "quantity": { + "min": 3, + "max": 3 + }, + "chance": 100 + }, + { + "itemID": "sword_flagstone", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ring_jinxed1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "flagstone_guard1", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 20, + "max": 52 + }, + "chance": 100 + }, + { + "itemID": "gem4", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "health", + "quantity": { + "min": 2, + "max": 2 + }, + "chance": 100 + }, + { + "itemID": "ring_block1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "ironsword1", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + }, + { + "id": "flagstone_guard0", + "items": [ + { + "itemID": "gold", + "quantity": { + "min": 20, + "max": 29 + }, + "chance": 100 + }, + { + "itemID": "gem4", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "health", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + }, + { + "itemID": "necklace_flagstone", + "quantity": { + "min": 1, + "max": 1 + }, + "chance": 100 + } + ] + } +] diff --git a/AndorsTrail/res/raw/itemcategories_1.json b/AndorsTrail/res/raw/itemcategories_1.json new file mode 100644 index 000000000..af833ed4f --- /dev/null +++ b/AndorsTrail/res/raw/itemcategories_1.json @@ -0,0 +1,330 @@ +[ + { + "id": "dagger", + "name": "Dagger", + "actionType": 2, + "inventorySlot": 0, + "size": 1 + }, + { + "id": "ssword", + "name": "Shortsword", + "actionType": 2, + "inventorySlot": 0, + "size": 1 + }, + { + "id": "rapier", + "name": "Rapier", + "actionType": 2, + "inventorySlot": 0, + "size": 2 + }, + { + "id": "lsword", + "name": "Longsword", + "actionType": 2, + "inventorySlot": 0, + "size": 2 + }, + { + "id": "2hsword", + "name": "Two-handed sword", + "actionType": 2, + "inventorySlot": 0, + "size": 3 + }, + { + "id": "bsword", + "name": "Broadsword", + "actionType": 2, + "inventorySlot": 0, + "size": 2 + }, + { + "id": "axe", + "name": "Axe", + "actionType": 2, + "inventorySlot": 0, + "size": 2 + }, + { + "id": "axe2h", + "name": "Greataxe", + "actionType": 2, + "inventorySlot": 0, + "size": 3 + }, + { + "id": "club", + "name": "Club", + "actionType": 2, + "inventorySlot": 0, + "size": 2 + }, + { + "id": "staff", + "name": "Quarterstaff", + "actionType": 2, + "inventorySlot": 0, + "size": 3 + }, + { + "id": "mace", + "name": "Mace", + "actionType": 2, + "inventorySlot": 0, + "size": 2 + }, + { + "id": "scepter", + "name": "Scepter", + "actionType": 2, + "inventorySlot": 0, + "size": 2 + }, + { + "id": "hammer", + "name": "Warhammer", + "actionType": 2, + "inventorySlot": 0, + "size": 2 + }, + { + "id": "hammer2h", + "name": "Giant hammer", + "actionType": 2, + "inventorySlot": 0, + "size": 3 + }, + { + "id": "buckler", + "name": "Buckler", + "actionType": 2, + "inventorySlot": 1, + "size": 1 + }, + { + "id": "shld_wd_li", + "name": "Shield, wood (light)", + "actionType": 2, + "inventorySlot": 1, + "size": 2 + }, + { + "id": "shld_mtl_li", + "name": "Shield, metal (light)", + "actionType": 2, + "inventorySlot": 1, + "size": 2 + }, + { + "id": "shld_wd_hv", + "name": "Shield, wood (heavy)", + "actionType": 2, + "inventorySlot": 1, + "size": 3 + }, + { + "id": "shld_mtl_hv", + "name": "Shield, metal (heavy)", + "actionType": 2, + "inventorySlot": 1, + "size": 3 + }, + { + "id": "shld_twr", + "name": "Tower shield", + "actionType": 2, + "inventorySlot": 1, + "size": 3 + }, + { + "id": "hd_cloth", + "name": "Headwear, cloth", + "actionType": 2, + "inventorySlot": 2 + }, + { + "id": "hd_lthr", + "name": "Headwear, leather", + "actionType": 2, + "inventorySlot": 2, + "size": 1 + }, + { + "id": "hd_mtl_li", + "name": "Headwear, metal (light)", + "actionType": 2, + "inventorySlot": 2, + "size": 2 + }, + { + "id": "hd_mtl_hv", + "name": "Headwear, metal (heavy)", + "actionType": 2, + "inventorySlot": 2, + "size": 3 + }, + { + "id": "bdy_clth", + "name": "Armor, cloth", + "actionType": 2, + "inventorySlot": 3 + }, + { + "id": "bdy_lthr", + "name": "Armor, leather", + "actionType": 2, + "inventorySlot": 3, + "size": 1 + }, + { + "id": "bdy_hide", + "name": "Hide armor", + "actionType": 2, + "inventorySlot": 3, + "size": 1 + }, + { + "id": "bdy_lt", + "name": "Armor (light)", + "actionType": 2, + "inventorySlot": 3, + "size": 2 + }, + { + "id": "bdy_hv", + "name": "Armor (heavy)", + "actionType": 2, + "inventorySlot": 3, + "size": 3 + }, + { + "id": "chmail", + "name": "Chain mail", + "actionType": 2, + "inventorySlot": 3, + "size": 3 + }, + { + "id": "spmail", + "name": "Splint mail", + "actionType": 2, + "inventorySlot": 3, + "size": 3 + }, + { + "id": "plmail", + "name": "Plate mail", + "actionType": 2, + "inventorySlot": 3, + "size": 3 + }, + { + "id": "hnd_cloth", + "name": "Gloves, cloth", + "actionType": 2, + "inventorySlot": 4 + }, + { + "id": "hnd_lthr", + "name": "Gloves, leather", + "actionType": 2, + "inventorySlot": 4, + "size": 1 + }, + { + "id": "hnd_mtl_li", + "name": "Gloves, metal (light)", + "actionType": 2, + "inventorySlot": 4, + "size": 2 + }, + { + "id": "hnd_mtl_hv", + "name": "Gloves, metal (heavy)", + "actionType": 2, + "inventorySlot": 4, + "size": 3 + }, + { + "id": "feet_clth", + "name": "Footwear, cloth", + "actionType": 2, + "inventorySlot": 5 + }, + { + "id": "feet_lthr", + "name": "Footwear, leather", + "actionType": 2, + "inventorySlot": 5, + "size": 1 + }, + { + "id": "feet_mtl_li", + "name": "Footwear, metal (light)", + "actionType": 2, + "inventorySlot": 5, + "size": 2 + }, + { + "id": "feet_mtl_hv", + "name": "Footwear, metal (heavy)", + "actionType": 2, + "inventorySlot": 5, + "size": 3 + }, + { + "id": "neck", + "name": "Necklace", + "actionType": 2, + "inventorySlot": 6 + }, + { + "id": "ring", + "name": "Ring", + "actionType": 2, + "inventorySlot": 7 + }, + { + "id": "pot", + "name": "Potion", + "actionType": 1 + }, + { + "id": "food", + "name": "Food", + "actionType": 1 + }, + { + "id": "drink", + "name": "Drink", + "actionType": 1 + }, + { + "id": "gem", + "name": "Gem" + }, + { + "id": "animal", + "name": "Animal part" + }, + { + "id": "animal_e", + "name": "Edible animal part", + "actionType": 1 + }, + { + "id": "flask", + "name": "Liquid container" + }, + { + "id": "money", + "name": "Money" + }, + { + "id": "other", + "name": "Other" + } +] diff --git a/AndorsTrail/res/raw/itemlist_animal.json b/AndorsTrail/res/raw/itemlist_animal.json new file mode 100644 index 000000000..69830f6cf --- /dev/null +++ b/AndorsTrail/res/raw/itemlist_animal.json @@ -0,0 +1,58 @@ +[ + { + "id": "hair", + "iconID": "items_misc:48", + "name": "Animal hair", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "insectwing", + "iconID": "items_misc:52", + "name": "Insect wing", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 3 + }, + { + "id": "bone", + "iconID": "items_misc:44", + "name": "Bone", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "claws", + "iconID": "items_misc:47", + "name": "Claws", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "shell", + "iconID": "items_misc:54", + "name": "Insect shell", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "gland", + "iconID": "actorconditions_1:60", + "name": "Poison gland", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 15 + }, + { + "id": "rat_tail", + "iconID": "items_misc:38", + "name": "Rat tail", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 2 + } +] diff --git a/AndorsTrail/res/raw/itemlist_armour.json b/AndorsTrail/res/raw/itemlist_armour.json new file mode 100644 index 000000000..b2230feae --- /dev/null +++ b/AndorsTrail/res/raw/itemlist_armour.json @@ -0,0 +1,260 @@ +[ + { + "id": "shirt1", + "iconID": "items_armours:14", + "name": "Cloth shirt", + "category": "bdy_clth", + "baseMarketCost": 16, + "equipEffect": { + "increaseBlockChance": 2 + } + }, + { + "id": "shirt2", + "iconID": "items_armours:14", + "name": "Fine shirt", + "category": "bdy_clth", + "baseMarketCost": 72, + "equipEffect": { + "increaseBlockChance": 5 + } + }, + { + "id": "shirt_dmgresist", + "iconID": "items_armours:15", + "name": "Hardened leather shirt", + "category": "bdy_lthr", + "displaytype": 4, + "baseMarketCost": 1633, + "equipEffect": { + "increaseBlockChance": 5, + "increaseDamageResistance": 1 + } + }, + { + "id": "armor1", + "iconID": "items_armours:15", + "name": "Leather armour", + "category": "bdy_lthr", + "baseMarketCost": 464, + "equipEffect": { + "increaseBlockChance": 8 + } + }, + { + "id": "armor2", + "iconID": "items_armours:15", + "name": "Superior leather armour", + "category": "bdy_lthr", + "baseMarketCost": 624, + "equipEffect": { + "increaseBlockChance": 9 + } + }, + { + "id": "armor3", + "iconID": "items_armours:16", + "name": "Hard leather armour", + "category": "bdy_lthr", + "baseMarketCost": 2407, + "equipEffect": { + "increaseBlockChance": 13 + } + }, + { + "id": "armor4", + "iconID": "items_armours:16", + "name": "Superior hard leather armour", + "category": "bdy_lthr", + "baseMarketCost": 3866, + "equipEffect": { + "increaseBlockChance": 15 + } + }, + { + "id": "hat1", + "iconID": "items_armours:21", + "name": "Green hat", + "category": "hd_cloth", + "baseMarketCost": 13, + "equipEffect": { + "increaseBlockChance": 1 + } + }, + { + "id": "hat2", + "iconID": "items_armours:21", + "name": "Fine green hat", + "category": "hd_cloth", + "baseMarketCost": 25, + "equipEffect": { + "increaseBlockChance": 2 + } + }, + { + "id": "hat3", + "iconID": "items_armours:24", + "name": "Crude leather cap", + "category": "hd_lthr", + "baseMarketCost": 72, + "equipEffect": { + "increaseBlockChance": 5 + } + }, + { + "id": "hat4", + "iconID": "items_armours:24", + "name": "Leather cap", + "category": "hd_lthr", + "baseMarketCost": 146, + "equipEffect": { + "increaseBlockChance": 6 + } + }, + { + "id": "gloves1", + "iconID": "items_armours:35", + "name": "Leather gloves", + "category": "hnd_lthr", + "baseMarketCost": 23, + "equipEffect": { + "increaseBlockChance": 3 + } + }, + { + "id": "gloves2", + "iconID": "items_armours:35", + "name": "Fine leather gloves", + "category": "hnd_lthr", + "baseMarketCost": 38, + "equipEffect": { + "increaseBlockChance": 4 + } + }, + { + "id": "gloves3", + "iconID": "items_armours:36", + "name": "Snakeskin gloves", + "category": "hnd_cloth", + "baseMarketCost": 72, + "equipEffect": { + "increaseBlockChance": 5 + } + }, + { + "id": "gloves4", + "iconID": "items_armours:36", + "name": "Fine snakeskin gloves", + "category": "hnd_cloth", + "baseMarketCost": 146, + "equipEffect": { + "increaseBlockChance": 6 + } + }, + { + "id": "shield1", + "iconID": "items_armours:0", + "name": "Wooden buckler", + "category": "buckler", + "baseMarketCost": 72, + "equipEffect": { + "increaseAttackChance": -2, + "increaseBlockChance": 5 + } + }, + { + "id": "shield3", + "iconID": "items_armours:1", + "name": "Reinforced wooden buckler", + "category": "buckler", + "baseMarketCost": 226, + "equipEffect": { + "increaseAttackChance": -5, + "increaseBlockChance": 7 + } + }, + { + "id": "shield4", + "iconID": "items_armours:2", + "name": "Crude wooden shield", + "category": "shld_wd_li", + "baseMarketCost": 464, + "equipEffect": { + "increaseAttackChance": -5, + "increaseBlockChance": 8 + } + }, + { + "id": "shield5", + "iconID": "items_armours:2", + "name": "Superior wooden shield", + "category": "shld_wd_li", + "baseMarketCost": 624, + "equipEffect": { + "increaseAttackChance": -4, + "increaseBlockChance": 9 + } + }, + { + "id": "boots1", + "iconID": "items_armours:28", + "name": "Leather boots", + "category": "feet_lthr", + "baseMarketCost": 23, + "equipEffect": { + "increaseBlockChance": 3 + } + }, + { + "id": "boots2", + "iconID": "items_armours:28", + "name": "Superior leather boots", + "category": "feet_lthr", + "baseMarketCost": 38, + "equipEffect": { + "increaseBlockChance": 4 + } + }, + { + "id": "boots3", + "iconID": "items_armours:29", + "name": "Snakeskin boots", + "category": "feet_lthr", + "baseMarketCost": 146, + "equipEffect": { + "increaseBlockChance": 6 + } + }, + { + "id": "boots5", + "iconID": "items_armours:30", + "name": "Reinforced boots", + "category": "feet_mtl_hv", + "baseMarketCost": 226, + "equipEffect": { + "increaseBlockChance": 7 + } + }, + { + "id": "gloves_attack1", + "iconID": "items_armours:35", + "name": "Gloves of swift attack", + "category": "hnd_lthr", + "baseMarketCost": 150, + "equipEffect": { + "increaseAttackChance": 15, + "increaseBlockChance": -9 + } + }, + { + "id": "gloves_attack2", + "iconID": "items_armours:35", + "name": "Fine gloves of swift attack", + "category": "hnd_lthr", + "baseMarketCost": 221, + "equipEffect": { + "increaseAttackChance": 17, + "increaseBlockChance": -9 + } + } +] diff --git a/AndorsTrail/res/raw/itemlist_debug.json b/AndorsTrail/res/raw/itemlist_debug.json new file mode 100644 index 000000000..6f66000a9 --- /dev/null +++ b/AndorsTrail/res/raw/itemlist_debug.json @@ -0,0 +1,63 @@ +[ + { + "id": "debug_dagger1", + "iconID": "items_weapons:20", + "name": "Black heart dagger", + "category": 0, + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 6, + "equipEffect": { + "increaseAttackCost": 2, + "increaseAttackChance": 100, + "increaseCriticalSkill": 30, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 5, + "max": 10 + } + } + }, + { + "id": "debug_ring1", + "iconID": "items_jewelry:4", + "name": "Black heart ring", + "category": 7, + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 3, + "equipEffect": { + "increaseAttackChance": 50, + "increaseAttackDamage": { + "min": 10, + "max": 10 + } + } + }, + { + "id": "shadow_slayer", + "iconID": "items_weapons:60", + "name": "Shadow of the slayer", + "category": 0, + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxAP": 2, + "increaseAttackCost": 7, + "increaseAttackChance": 25, + "increaseCriticalSkill": 10, + "setCriticalMultiplier": 2, + "increaseAttackDamage": { + "min": 5, + "max": 9 + } + }, + "killEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + } +] diff --git a/AndorsTrail/res/raw/itemlist_food.json b/AndorsTrail/res/raw/itemlist_food.json new file mode 100644 index 000000000..ba8e25b8a --- /dev/null +++ b/AndorsTrail/res/raw/itemlist_food.json @@ -0,0 +1,206 @@ +[ + { + "id": "apple_green", + "iconID": "items_consumables:2", + "name": "Green apple", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 14, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 8, + "chance": 100 + } + ] + } + }, + { + "id": "apple_red", + "iconID": "items_consumables:3", + "name": "Red apple", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 22, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 12, + "chance": 100 + } + ] + } + }, + { + "id": "meat", + "iconID": "items_consumables:25", + "name": "Meat", + "category": "animal_e", + "hasManualPrice": 1, + "baseMarketCost": 29, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 2, + "duration": 12, + "chance": 100 + }, + { + "condition": "foodp", + "magnitude": 3, + "duration": 10, + "chance": 10 + } + ] + } + }, + { + "id": "meat_cooked", + "iconID": "items_consumables:27", + "name": "Cooked meat", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 78, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 3, + "duration": 11, + "chance": 100 + } + ] + } + }, + { + "id": "strawberry", + "iconID": "items_consumables:8", + "name": "Strawberry", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 3, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 2, + "chance": 100 + } + ] + } + }, + { + "id": "carrot", + "iconID": "items_consumables:15", + "name": "Carrot", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 14, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 8, + "chance": 100 + } + ] + } + }, + { + "id": "bread", + "iconID": "items_consumables:21", + "name": "Bread", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 6, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 10, + "chance": 100 + } + ] + } + }, + { + "id": "mushroom", + "iconID": "items_consumables:19", + "name": "Mushroom", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 3, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 2, + "chance": 100 + } + ] + } + }, + { + "id": "pear", + "iconID": "items_consumables:9", + "name": "Pear", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 14, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 8, + "chance": 100 + } + ] + } + }, + { + "id": "eggs", + "iconID": "items_consumables:20", + "name": "Eggs", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 10, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 6, + "chance": 100 + } + ] + } + }, + { + "id": "radish", + "iconID": "items_consumables:14", + "name": "Radish", + "category": "food", + "hasManualPrice": 1, + "baseMarketCost": 6, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 1, + "duration": 4, + "chance": 100 + } + ] + } + } +] diff --git a/AndorsTrail/res/raw/itemlist_junk.json b/AndorsTrail/res/raw/itemlist_junk.json new file mode 100644 index 000000000..4f5420a3e --- /dev/null +++ b/AndorsTrail/res/raw/itemlist_junk.json @@ -0,0 +1,50 @@ +[ + { + "id": "rock", + "iconID": "items_misc:28", + "name": "Small rock", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 1 + }, + { + "id": "gem1", + "iconID": "items_misc:0", + "name": "Glass gem", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "gem2", + "iconID": "items_misc:1", + "name": "Ruby gem", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 6 + }, + { + "id": "gem3", + "iconID": "items_misc:2", + "name": "Polished gem", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 8 + }, + { + "id": "gem4", + "iconID": "items_misc:3", + "name": "Sharpened gem", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 13 + }, + { + "id": "gem5", + "iconID": "items_misc:5", + "name": "Polished sparkling gem", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 15 + } +] diff --git a/AndorsTrail/res/raw/itemlist_money.json b/AndorsTrail/res/raw/itemlist_money.json new file mode 100644 index 000000000..21363716a --- /dev/null +++ b/AndorsTrail/res/raw/itemlist_money.json @@ -0,0 +1,10 @@ +[ + { + "id": "gold", + "iconID": "items_misc:10", + "name": "Gold coins", + "category": "money", + "hasManualPrice": 1, + "baseMarketCost": 1 + } +] diff --git a/AndorsTrail/res/raw/itemlist_necklaces.json b/AndorsTrail/res/raw/itemlist_necklaces.json new file mode 100644 index 000000000..8950f9961 --- /dev/null +++ b/AndorsTrail/res/raw/itemlist_necklaces.json @@ -0,0 +1,35 @@ +[ + { + "id": "jewel_fallhaven", + "iconID": "items_jewelry:6", + "name": "Jewel of Fallhaven", + "category": "neck", + "displaytype": 4, + "baseMarketCost": 3125, + "equipEffect": { + "increaseAttackCost": -1 + } + }, + { + "id": "necklace_shield1", + "iconID": "items_jewelry:7", + "name": "Necklace of the guardian", + "category": "neck", + "displaytype": 4, + "baseMarketCost": 935, + "equipEffect": { + "increaseBlockChance": 9 + } + }, + { + "id": "necklace_shield2", + "iconID": "items_jewelry:7", + "name": "Shielding necklace", + "category": "neck", + "displaytype": 4, + "baseMarketCost": 1255, + "equipEffect": { + "increaseBlockChance": 12 + } + } +] diff --git a/AndorsTrail/res/raw/itemlist_potions.json b/AndorsTrail/res/raw/itemlist_potions.json new file mode 100644 index 000000000..ebd4c7cbb --- /dev/null +++ b/AndorsTrail/res/raw/itemlist_potions.json @@ -0,0 +1,141 @@ +[ + { + "id": "vial_empty1", + "iconID": "items_consumables:56", + "name": "Small empty vial", + "category": "flask", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "vial_empty2", + "iconID": "items_consumables:57", + "name": "Empty vial", + "category": "flask", + "hasManualPrice": 1, + "baseMarketCost": 4 + }, + { + "id": "vial_empty3", + "iconID": "items_consumables:59", + "name": "Empty flask", + "category": "flask", + "hasManualPrice": 1, + "baseMarketCost": 6 + }, + { + "id": "vial_empty4", + "iconID": "items_consumables:58", + "name": "Empty potion bottle", + "category": "flask", + "hasManualPrice": 1, + "baseMarketCost": 11 + }, + { + "id": "health_minor", + "iconID": "items_consumables:35", + "name": "Minor vial of health", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 5, + "useEffect": { + "increaseCurrentHP": { + "min": 5, + "max": 5 + } + } + }, + { + "id": "health_minor2", + "iconID": "items_consumables:35", + "name": "Minor potion of health", + "category": "pot", + "baseMarketCost": 18, + "useEffect": { + "increaseCurrentHP": { + "min": 5, + "max": 5 + } + } + }, + { + "id": "health", + "iconID": "items_consumables:49", + "name": "Regular potion of health", + "category": "pot", + "baseMarketCost": 40, + "useEffect": { + "increaseCurrentHP": { + "min": 10, + "max": 10 + } + } + }, + { + "id": "health_major", + "iconID": "items_consumables:28", + "name": "Major flask of health", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 210, + "useEffect": { + "increaseCurrentHP": { + "min": 40, + "max": 40 + } + } + }, + { + "id": "health_major2", + "iconID": "items_consumables:28", + "name": "Major potion of health", + "category": "pot", + "baseMarketCost": 280, + "useEffect": { + "increaseCurrentHP": { + "min": 40, + "max": 40 + } + } + }, + { + "id": "mead", + "iconID": "items_consumables:51", + "name": "Mead", + "category": "drink", + "baseMarketCost": 15, + "useEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "milk", + "iconID": "items_consumables:55", + "name": "Milk", + "category": "drink", + "baseMarketCost": 21, + "useEffect": { + "increaseCurrentHP": { + "min": 2, + "max": 2 + } + } + }, + { + "id": "bonemeal_potion", + "iconID": "items_consumables:34", + "name": "Bonemeal potion", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 45, + "useEffect": { + "increaseCurrentHP": { + "min": 40, + "max": 40 + } + } + } +] diff --git a/AndorsTrail/res/raw/itemlist_pre0610_unused.json b/AndorsTrail/res/raw/itemlist_pre0610_unused.json new file mode 100644 index 000000000..667242a2f --- /dev/null +++ b/AndorsTrail/res/raw/itemlist_pre0610_unused.json @@ -0,0 +1,58 @@ +[ + { + "id": "eye", + "iconID": "items_misc:45", + "name": "Eye", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 6 + }, + { + "id": "bat_wing", + "iconID": "items_misc:46", + "name": "Bat wing", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 2 + }, + { + "id": "feather", + "iconID": "items_misc:16", + "name": "Feather", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 6 + }, + { + "id": "red_feather", + "iconID": "items_misc:15", + "name": "Red feather", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 11 + }, + { + "id": "clay", + "iconID": "actorconditions_1:9", + "name": "Lump of clay", + "category": "other", + "hasManualPrice": 1, + "baseMarketCost": 1 + }, + { + "id": "gem6", + "iconID": "items_misc:4", + "name": "Shimmering gem", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 26 + }, + { + "id": "gem8", + "iconID": "actorconditions_1:50", + "name": "Brilliant gem", + "category": "gem", + "hasManualPrice": 1, + "baseMarketCost": 68 + } +] diff --git a/AndorsTrail/res/raw/itemlist_quest.json b/AndorsTrail/res/raw/itemlist_quest.json new file mode 100644 index 000000000..b415e1f98 --- /dev/null +++ b/AndorsTrail/res/raw/itemlist_quest.json @@ -0,0 +1,188 @@ +[ + { + "id": "tail_caverat", + "iconID": "items_misc:38", + "name": "Cave rat tail", + "category": "animal", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "tail_trainingrat", + "iconID": "items_misc:38", + "name": "Small rat tail", + "category": "animal", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "ring_mikhail", + "iconID": "items_jewelry:0", + "name": "Mikhail's ring", + "category": "ring", + "baseMarketCost": 15, + "equipEffect": { + "increaseAttackChance": 10 + } + }, + { + "id": "neck_irogotu", + "iconID": "items_jewelry:7", + "name": "Irogotu's necklace", + "category": "neck", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 30, + "equipEffect": { + "increaseBlockChance": 5, + "increaseDamageResistance": 1 + } + }, + { + "id": "ring_gandir", + "iconID": "items_jewelry:0", + "name": "Gandir's ring", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "dagger_venom", + "iconID": "items_weapons:17", + "name": "Venomous Dagger", + "category": "dagger", + "displaytype": 3, + "baseMarketCost": 15, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 10, + "increaseCriticalSkill": 5, + "setCriticalMultiplier": 2, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "key_luthor", + "iconID": "items_misc:21", + "name": "Key of Luthor", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "calomyran_secrets", + "iconID": "items_books:0", + "name": "Calomyran secrets", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "heartstone", + "iconID": "items_misc:6", + "name": "Heartstone", + "category": "gem", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "vacor_spell", + "iconID": "items_books:7", + "name": "Piece of Vacor's spell", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "ring_unzel", + "iconID": "items_jewelry:0", + "name": "Unzel's ring", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "ring_vacor", + "iconID": "items_jewelry:0", + "name": "Vacor's ring", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "boots_unzel", + "iconID": "items_armours:29", + "name": "Unzel's defensive boots", + "category": "feet_lthr", + "displaytype": 3, + "baseMarketCost": 185, + "equipEffect": { + "increaseBlockChance": 8 + } + }, + { + "id": "boots_vacor", + "iconID": "items_armours:29", + "name": "Vacor's boots of attack", + "category": "feet_lthr", + "displaytype": 3, + "baseMarketCost": 185, + "equipEffect": { + "increaseAttackChance": 9, + "increaseBlockChance": 2 + } + }, + { + "id": "necklace_flagstone", + "iconID": "items_jewelry:6", + "name": "Flagstone Warden's necklace", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "packhide", + "iconID": "items_armours:15", + "name": "Wolfpack's animal hide", + "category": "bdy_hide", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 121, + "equipEffect": { + "increaseAttackChance": -15, + "increaseBlockChance": 2, + "increaseDamageResistance": 1 + } + }, + { + "id": "sword_flagstone", + "iconID": "items_weapons:7", + "name": "Flagstone's pride", + "category": "lsword", + "displaytype": 3, + "baseMarketCost": 169, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 21, + "increaseCriticalSkill": 10, + "setCriticalMultiplier": 2, + "increaseAttackDamage": { + "min": 1, + "max": 6 + } + } + } +] diff --git a/AndorsTrail/res/raw/itemlist_rings.json b/AndorsTrail/res/raw/itemlist_rings.json new file mode 100644 index 000000000..8bb7548ba --- /dev/null +++ b/AndorsTrail/res/raw/itemlist_rings.json @@ -0,0 +1,124 @@ +[ + { + "id": "ring_dmg1", + "iconID": "items_jewelry:0", + "name": "Ring of damage +1", + "category": "ring", + "baseMarketCost": 215, + "equipEffect": { + "increaseAttackDamage": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "ring_dmg2", + "iconID": "items_jewelry:1", + "name": "Ring of damage +2", + "category": "ring", + "baseMarketCost": 398, + "equipEffect": { + "increaseAttackDamage": { + "min": 2, + "max": 2 + } + } + }, + { + "id": "ring_dmg5", + "iconID": "items_jewelry:2", + "name": "Ring of damage +5", + "category": "ring", + "displaytype": 4, + "baseMarketCost": 2014, + "equipEffect": { + "increaseAttackDamage": { + "min": 5, + "max": 5 + } + } + }, + { + "id": "ring_dmg6", + "iconID": "items_jewelry:3", + "name": "Ring of damage +6", + "category": "ring", + "displaytype": 4, + "baseMarketCost": 3186, + "equipEffect": { + "increaseAttackDamage": { + "min": 6, + "max": 6 + } + } + }, + { + "id": "ring_block1", + "iconID": "items_jewelry:0", + "name": "Lesser ring of block", + "category": "ring", + "displaytype": 4, + "baseMarketCost": 1239, + "equipEffect": { + "increaseBlockChance": 10 + } + }, + { + "id": "ring_block2", + "iconID": "items_jewelry:0", + "name": "Polished ring of block", + "category": "ring", + "displaytype": 4, + "baseMarketCost": 3866, + "equipEffect": { + "increaseBlockChance": 15 + } + }, + { + "id": "ring_atkch1", + "iconID": "items_jewelry:0", + "name": "Ring of surehit", + "category": "ring", + "baseMarketCost": 215, + "equipEffect": { + "increaseAttackChance": 15 + } + }, + { + "id": "ring1", + "iconID": "items_jewelry:0", + "name": "Mundane ring", + "category": "ring", + "hasManualPrice": 1, + "baseMarketCost": 13, + "equipEffect": { + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "ring2", + "iconID": "items_jewelry:0", + "name": "Polished ring", + "category": "ring", + "hasManualPrice": 1, + "baseMarketCost": 21, + "equipEffect": { + "increaseBlockChance": 1 + } + }, + { + "id": "ring_jinxed1", + "iconID": "items_jewelry:2", + "name": "Jinxed ring of damage resistance", + "category": "ring", + "baseMarketCost": 229, + "equipEffect": { + "increaseBlockChance": -9, + "increaseDamageResistance": 1 + } + } +] diff --git a/AndorsTrail/res/raw/itemlist_v0610_1.json b/AndorsTrail/res/raw/itemlist_v0610_1.json new file mode 100644 index 000000000..8bdb8c8dd --- /dev/null +++ b/AndorsTrail/res/raw/itemlist_v0610_1.json @@ -0,0 +1,1021 @@ +[ + { + "id": "dagger_shadow_priests", + "iconID": "items_weapons:17", + "name": "Dagger of the Shadow priests", + "category": "dagger", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 15, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 20, + "increaseCriticalSkill": 20, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "sword_hard_iron", + "iconID": "items_weapons:0", + "name": "Hardened iron sword", + "category": "lsword", + "hasManualPrice": 0, + "baseMarketCost": 369, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 15, + "increaseAttackDamage": { + "min": 2, + "max": 4 + } + } + }, + { + "id": "club_fine_wooden", + "iconID": "items_weapons:42", + "name": "Fine wooden club", + "category": "club", + "hasManualPrice": 0, + "baseMarketCost": 245, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 12, + "increaseAttackDamage": { + "min": 0, + "max": 7 + } + } + }, + { + "id": "axe_fine_iron", + "iconID": "items_weapons:56", + "name": "Fine iron axe", + "category": "axe", + "hasManualPrice": 0, + "baseMarketCost": 365, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 9, + "increaseAttackDamage": { + "min": 4, + "max": 6 + } + } + }, + { + "id": "longsword_hard_iron", + "iconID": "items_weapons:1", + "name": "Hardened iron longsword", + "category": "lsword", + "hasManualPrice": 0, + "baseMarketCost": 362, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 14, + "increaseAttackDamage": { + "min": 2, + "max": 6 + } + } + }, + { + "id": "broadsword_fine_iron", + "iconID": "items_weapons:5", + "name": "Fine iron broadsword", + "category": "bsword", + "hasManualPrice": 0, + "baseMarketCost": 422, + "equipEffect": { + "increaseAttackCost": 7, + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 4, + "max": 10 + } + } + }, + { + "id": "dagger_sharp_steel", + "iconID": "items_weapons:14", + "name": "Sharp steel dagger", + "category": "dagger", + "hasManualPrice": 0, + "baseMarketCost": 1428, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 24, + "increaseAttackDamage": { + "min": 2, + "max": 4 + } + } + }, + { + "id": "sword_balanced_steel", + "iconID": "items_weapons:7", + "name": "Balanced steel sword", + "category": "lsword", + "hasManualPrice": 0, + "baseMarketCost": 2797, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 32, + "increaseAttackDamage": { + "min": 3, + "max": 7 + } + } + }, + { + "id": "broadsword_fine_steel", + "iconID": "items_weapons:6", + "name": "Fine steel broadsword", + "category": "bsword", + "hasManualPrice": 0, + "baseMarketCost": 1206, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 20, + "increaseAttackDamage": { + "min": 4, + "max": 11 + } + } + }, + { + "id": "sword_defenders", + "iconID": "items_weapons:2", + "name": "Defender's blade", + "category": "lsword", + "hasManualPrice": 0, + "baseMarketCost": 1711, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 26, + "increaseAttackDamage": { + "min": 3, + "max": 7 + }, + "increaseBlockChance": 3 + } + }, + { + "id": "sword_villains", + "iconID": "items_weapons:16", + "name": "Villain's blade", + "category": "ssword", + "hasManualPrice": 0, + "baseMarketCost": 1665, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 20, + "increaseCriticalSkill": 5, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "sword_challengers", + "iconID": "items_weapons:1", + "name": "Challenger's iron sword", + "category": "lsword", + "hasManualPrice": 0, + "baseMarketCost": 785, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 20, + "increaseAttackDamage": { + "min": 2, + "max": 6 + } + } + }, + { + "id": "sword_fencing", + "iconID": "items_weapons:13", + "name": "Fencing blade", + "category": "rapier", + "hasManualPrice": 0, + "baseMarketCost": 922, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 14, + "increaseAttackDamage": { + "min": 2, + "max": 5 + }, + "increaseBlockChance": 5 + } + }, + { + "id": "club_brutal", + "iconID": "items_weapons:44", + "name": "Brutal club", + "category": "mace", + "hasManualPrice": 0, + "baseMarketCost": 2522, + "equipEffect": { + "increaseAttackCost": 7, + "increaseAttackChance": 20, + "increaseCriticalSkill": 5, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 2, + "max": 21 + } + } + }, + { + "id": "axe_gutsplitter", + "iconID": "items_weapons:58", + "name": "Gutsplitter", + "category": "axe2h", + "hasManualPrice": 0, + "baseMarketCost": 2733, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 21, + "increaseAttackDamage": { + "min": 7, + "max": 17 + } + } + }, + { + "id": "hammer_skullcrusher", + "iconID": "items_weapons:45", + "name": "Skullcrusher", + "category": "hammer2h", + "hasManualPrice": 0, + "baseMarketCost": 3142, + "equipEffect": { + "increaseAttackCost": 7, + "increaseAttackChance": 20, + "increaseCriticalSkill": 5, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 0, + "max": 26 + } + } + }, + { + "id": "shield_crude_wooden", + "iconID": "items_armours:0", + "name": "Crude wooden buckler", + "category": "buckler", + "hasManualPrice": 0, + "baseMarketCost": 31, + "equipEffect": { + "increaseBlockChance": 1 + } + }, + { + "id": "shield_cracked_wooden", + "iconID": "items_armours:0", + "name": "Cracked wooden buckler", + "category": "buckler", + "hasManualPrice": 0, + "baseMarketCost": 34, + "equipEffect": { + "increaseAttackChance": -2, + "increaseBlockChance": 2 + } + }, + { + "id": "shield_wooden_buckler", + "iconID": "items_armours:0", + "name": "Second-hand wooden buckler", + "category": "buckler", + "hasManualPrice": 0, + "baseMarketCost": 92, + "equipEffect": { + "increaseAttackChance": -2, + "increaseBlockChance": 3 + } + }, + { + "id": "shield_wooden", + "iconID": "items_armours:2", + "name": "Wooden shield", + "category": "shld_wd_li", + "hasManualPrice": 0, + "baseMarketCost": 514, + "equipEffect": { + "increaseAttackChance": -4, + "increaseBlockChance": 8 + } + }, + { + "id": "shield_wooden_defender", + "iconID": "items_armours:2", + "name": "Wooden defender", + "category": "shld_wd_li", + "hasManualPrice": 0, + "baseMarketCost": 1996, + "equipEffect": { + "increaseAttackChance": -8, + "increaseCriticalSkill": -5, + "increaseBlockChance": 14, + "increaseDamageResistance": 1 + } + }, + { + "id": "hat_hard_leather", + "iconID": "items_armours:24", + "name": "Hardened leather cap", + "category": "hd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 648, + "equipEffect": { + "increaseAttackChance": -3, + "increaseCriticalSkill": -1, + "increaseBlockChance": 8 + } + }, + { + "id": "hat_fine_leather", + "iconID": "items_armours:24", + "name": "Fine leather cap", + "category": "hd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 846, + "equipEffect": { + "increaseAttackChance": -3, + "increaseCriticalSkill": -2, + "increaseBlockChance": 9 + } + }, + { + "id": "hat_leather_vision", + "iconID": "items_armours:24", + "name": "Leather cap of reduced vision", + "category": "hd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 971, + "equipEffect": { + "increaseAttackChance": -3, + "increaseCriticalSkill": -4, + "increaseBlockChance": 10 + } + }, + { + "id": "helm_crude_iron", + "iconID": "items_armours:25", + "name": "Crude iron helmet", + "category": "hd_mtl_hv", + "hasManualPrice": 0, + "baseMarketCost": 1120, + "equipEffect": { + "increaseAttackChance": -3, + "increaseCriticalSkill": -5, + "increaseBlockChance": 11 + } + }, + { + "id": "shirt_torn", + "iconID": "items_armours:14", + "name": "Torn shirt", + "category": "bdy_clth", + "hasManualPrice": 0, + "baseMarketCost": 92, + "equipEffect": { + "increaseAttackChance": -2, + "increaseBlockChance": 3 + } + }, + { + "id": "shirt_weathered", + "iconID": "items_armours:14", + "name": "Weathered shirt", + "category": "bdy_clth", + "hasManualPrice": 0, + "baseMarketCost": 125, + "equipEffect": { + "increaseAttackChance": -1, + "increaseBlockChance": 3 + } + }, + { + "id": "shirt_patched_cloth", + "iconID": "items_armours:14", + "name": "Patched cloth shirt", + "category": "bdy_clth", + "hasManualPrice": 0, + "baseMarketCost": 208, + "equipEffect": { + "increaseBlockChance": 4 + } + }, + { + "id": "armour_crude_leather", + "iconID": "items_armours:16", + "name": "Crude leather armour", + "category": "bdy_lthr", + "hasManualPrice": 0, + "baseMarketCost": 514, + "equipEffect": { + "increaseAttackChance": -4, + "increaseBlockChance": 8 + } + }, + { + "id": "armour_firm_leather", + "iconID": "items_armours:16", + "name": "Firm leather armour", + "category": "bdy_lthr", + "hasManualPrice": 0, + "baseMarketCost": 417, + "equipEffect": { + "increaseMoveCost": 1, + "increaseBlockChance": 8 + } + }, + { + "id": "armour_rigid_leather", + "iconID": "items_armours:16", + "name": "Rigid leather armour", + "category": "bdy_lthr", + "hasManualPrice": 0, + "baseMarketCost": 625, + "equipEffect": { + "increaseMoveCost": 1, + "increaseAttackChance": -1, + "increaseBlockChance": 9 + } + }, + { + "id": "armour_rigid_chain", + "iconID": "items_armours:17", + "name": "Rigid chain mail", + "category": "chmail", + "hasManualPrice": 0, + "baseMarketCost": 4667, + "equipEffect": { + "increaseAttackCost": 1, + "increaseAttackChance": -5, + "increaseBlockChance": 23 + } + }, + { + "id": "armour_superior_chain", + "iconID": "items_armours:17", + "name": "Superior chain mail", + "category": "chmail", + "hasManualPrice": 0, + "baseMarketCost": 5992, + "equipEffect": { + "increaseAttackChance": -9, + "increaseBlockChance": 23 + } + }, + { + "id": "armour_chain_champ", + "iconID": "items_armours:17", + "name": "Champion's chain mail", + "category": "chmail", + "hasManualPrice": 0, + "baseMarketCost": 6808, + "equipEffect": { + "increaseMaxHP": 2, + "increaseAttackChance": -9, + "increaseCriticalSkill": -5, + "increaseBlockChance": 24 + } + }, + { + "id": "armour_leather_villain", + "iconID": "items_armours:16", + "name": "Villain's leather armour", + "category": "bdy_lthr", + "hasManualPrice": 0, + "baseMarketCost": 3700, + "equipEffect": { + "increaseMoveCost": -1, + "increaseAttackChance": -4, + "increaseCriticalSkill": 3, + "increaseBlockChance": 15 + } + }, + { + "id": "armour_misfortune", + "iconID": "items_armours:15", + "name": "Leather shirt of misfortune", + "category": "bdy_lthr", + "hasManualPrice": 0, + "baseMarketCost": 2459, + "equipEffect": { + "increaseAttackChance": -5, + "increaseAttackDamage": { + "min": -1, + "max": -1 + }, + "increaseBlockChance": 15 + } + }, + { + "id": "gloves_barbrawler", + "iconID": "items_armours:35", + "name": "Bar brawler's gloves", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 95, + "equipEffect": { + "increaseAttackChance": 5, + "increaseBlockChance": 2 + } + }, + { + "id": "gloves_fumbling", + "iconID": "items_armours:35", + "name": "Gloves of fumbling", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": -432, + "equipEffect": { + "increaseAttackChance": -5, + "increaseBlockChance": 1 + } + }, + { + "id": "gloves_crude_cloth", + "iconID": "items_armours:35", + "name": "Crude cloth gloves", + "category": "hnd_cloth", + "hasManualPrice": 0, + "baseMarketCost": 31, + "equipEffect": { + "increaseBlockChance": 1 + } + }, + { + "id": "gloves_crude_leather", + "iconID": "items_armours:35", + "name": "Crude leather gloves", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 180, + "equipEffect": { + "increaseAttackChance": -4, + "increaseBlockChance": 6 + } + }, + { + "id": "gloves_troublemaker", + "iconID": "items_armours:36", + "name": "Troublemaker's gloves", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 501, + "equipEffect": { + "increaseMaxHP": 1, + "increaseAttackChance": 7, + "increaseCriticalSkill": 4, + "increaseBlockChance": 4 + } + }, + { + "id": "gloves_guards", + "iconID": "items_armours:37", + "name": "Guard's gloves", + "category": "hnd_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 636, + "equipEffect": { + "increaseMaxHP": 3, + "increaseAttackChance": 3, + "increaseBlockChance": 5 + } + }, + { + "id": "gloves_leather_attack", + "iconID": "items_armours:35", + "name": "Leather gloves of attack", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 510, + "equipEffect": { + "increaseMaxHP": 3, + "increaseAttackChance": 13, + "increaseBlockChance": -2 + } + }, + { + "id": "gloves_woodcutter", + "iconID": "items_armours:35", + "name": "Woodcutter's gloves", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 426, + "equipEffect": { + "increaseMaxHP": 3, + "increaseAttackChance": 8, + "increaseBlockChance": 1 + } + }, + { + "id": "boots_crude_leather", + "iconID": "items_armours:28", + "name": "Crude leather boots", + "category": "feet_lthr", + "hasManualPrice": 0, + "baseMarketCost": 31, + "equipEffect": { + "increaseBlockChance": 1 + } + }, + { + "id": "boots_sewn", + "iconID": "items_armours:28", + "name": "Sewn footwear", + "category": "feet_clth", + "hasManualPrice": 0, + "baseMarketCost": 73, + "equipEffect": { + "increaseBlockChance": 2 + } + }, + { + "id": "boots_coward", + "iconID": "items_armours:28", + "name": "Coward's boots", + "category": "feet_lthr", + "hasManualPrice": 0, + "baseMarketCost": 933, + "equipEffect": { + "increaseMoveCost": -1, + "increaseBlockChance": 2 + } + }, + { + "id": "boots_hard_leather", + "iconID": "items_armours:30", + "name": "Hardened leather boots", + "category": "feet_lthr", + "hasManualPrice": 0, + "baseMarketCost": 626, + "equipEffect": { + "increaseMoveCost": 1, + "increaseAttackChance": -4, + "increaseBlockChance": 10 + } + }, + { + "id": "boots_defender", + "iconID": "items_armours:30", + "name": "Defender's boots", + "category": "feet_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 1190, + "equipEffect": { + "increaseMaxHP": 2, + "increaseBlockChance": 9 + } + }, + { + "id": "necklace_shield_0", + "iconID": "items_jewelry:7", + "name": "Lesser shielding necklace", + "category": "neck", + "hasManualPrice": 0, + "baseMarketCost": 131, + "equipEffect": { + "increaseBlockChance": 3 + } + }, + { + "id": "necklace_strike", + "iconID": "items_jewelry:6", + "name": "Necklace of strike", + "category": "neck", + "hasManualPrice": 0, + "baseMarketCost": 832, + "equipEffect": { + "increaseMaxHP": 5, + "increaseCriticalSkill": 5 + } + }, + { + "id": "necklace_defender_stone", + "iconID": "items_jewelry:7", + "name": "Defender's stone", + "category": "neck", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 1325, + "equipEffect": { + "increaseDamageResistance": 1 + } + }, + { + "id": "necklace_protector", + "iconID": "items_jewelry:7", + "name": "Necklace of the protector", + "category": "neck", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 3207, + "equipEffect": { + "increaseMaxHP": 5, + "increaseDamageResistance": 2 + } + }, + { + "id": "ring_crude_combat", + "iconID": "items_jewelry:0", + "name": "Crude combat ring", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 44, + "equipEffect": { + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "ring_crude_surehit", + "iconID": "items_jewelry:0", + "name": "Crude ring of surehit", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 52, + "equipEffect": { + "increaseAttackChance": 7 + } + }, + { + "id": "ring_crude_block", + "iconID": "items_jewelry:0", + "name": "Crude ring of block", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 73, + "equipEffect": { + "increaseBlockChance": 2 + } + }, + { + "id": "ring_rough_life", + "iconID": "items_jewelry:0", + "name": "Rough ring of life force", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 100, + "equipEffect": { + "increaseMaxHP": 1 + } + }, + { + "id": "ring_fumbling", + "iconID": "items_jewelry:0", + "name": "Ring of fumbling", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": -463, + "equipEffect": { + "increaseAttackChance": -5 + } + }, + { + "id": "ring_rough_damage", + "iconID": "items_jewelry:0", + "name": "Rough ring of damage", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 56, + "equipEffect": { + "increaseAttackDamage": { + "min": 0, + "max": 2 + } + } + }, + { + "id": "ring_barbrawler", + "iconID": "items_jewelry:0", + "name": "Bar brawler's ring", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 222, + "equipEffect": { + "increaseAttackChance": 12, + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "ring_dmg_3", + "iconID": "items_jewelry:0", + "name": "Ring of damage +3", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 624, + "equipEffect": { + "increaseAttackDamage": { + "min": 3, + "max": 3 + } + } + }, + { + "id": "ring_life", + "iconID": "items_jewelry:0", + "name": "Ring of life force", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 557, + "equipEffect": { + "increaseMaxHP": 5 + } + }, + { + "id": "ring_taverbrawler", + "iconID": "items_jewelry:0", + "name": "Tavern brawler's ring", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 314, + "equipEffect": { + "increaseAttackChance": 12, + "increaseAttackDamage": { + "min": 0, + "max": 3 + } + } + }, + { + "id": "ring_defender", + "iconID": "items_jewelry:0", + "name": "Defender's ring", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 755, + "equipEffect": { + "increaseAttackChance": -6, + "increaseBlockChance": 11 + } + }, + { + "id": "ring_challenger", + "iconID": "items_jewelry:0", + "name": "Challenger's ring", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 408, + "equipEffect": { + "increaseAttackChance": 12, + "increaseBlockChance": 4 + } + }, + { + "id": "ring_dmg_4", + "iconID": "items_jewelry:2", + "name": "Ring of damage +4", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 1168, + "equipEffect": { + "increaseAttackDamage": { + "min": 4, + "max": 4 + } + } + }, + { + "id": "ring_troublemaker", + "iconID": "items_jewelry:2", + "name": "Troublemaker's ring", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 797, + "equipEffect": { + "increaseAttackChance": 15, + "increaseAttackDamage": { + "min": 2, + "max": 4 + } + } + }, + { + "id": "ring_guardian", + "iconID": "items_jewelry:2", + "name": "Ring of the guardian", + "category": "ring", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 1489, + "equipEffect": { + "increaseAttackChance": 19, + "increaseAttackDamage": { + "min": 3, + "max": 5 + } + } + }, + { + "id": "ring_block", + "iconID": "items_jewelry:2", + "name": "Ring of block", + "category": "ring", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 2192, + "equipEffect": { + "increaseBlockChance": 13 + } + }, + { + "id": "ring_backstab", + "iconID": "items_jewelry:2", + "name": "Ring of backstabbing", + "category": "ring", + "hasManualPrice": 0, + "baseMarketCost": 1363, + "equipEffect": { + "increaseAttackChance": 17, + "increaseCriticalSkill": 7, + "increaseBlockChance": 3 + } + }, + { + "id": "ring_polished_combat", + "iconID": "items_jewelry:2", + "name": "Polished combat ring", + "category": "ring", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 1346, + "equipEffect": { + "increaseMaxHP": 5, + "increaseAttackChance": 15, + "increaseAttackDamage": { + "min": 1, + "max": 5 + } + } + }, + { + "id": "ring_villain", + "iconID": "items_jewelry:2", + "name": "Villain's ring", + "category": "ring", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 2750, + "equipEffect": { + "increaseMaxHP": 4, + "increaseAttackChance": 25, + "increaseAttackDamage": { + "min": 3, + "max": 6 + } + } + }, + { + "id": "ring_polished_backstab", + "iconID": "items_jewelry:2", + "name": "Polished ring of backstabbing", + "category": "ring", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 2731, + "equipEffect": { + "increaseAttackChance": 21, + "increaseCriticalSkill": 7, + "increaseAttackDamage": { + "min": 4, + "max": 4 + } + } + }, + { + "id": "ring_protector", + "iconID": "items_jewelry:4", + "name": "Ring of the protector", + "category": "ring", + "displaytype": 4, + "hasManualPrice": 0, + "baseMarketCost": 3744, + "equipEffect": { + "increaseMaxHP": 3, + "increaseAttackChance": 20, + "increaseAttackDamage": { + "min": 0, + "max": 3 + }, + "increaseBlockChance": 14 + } + } +] diff --git a/AndorsTrail/res/raw/itemlist_v0610_2.json b/AndorsTrail/res/raw/itemlist_v0610_2.json new file mode 100644 index 000000000..2d5e9e9c5 --- /dev/null +++ b/AndorsTrail/res/raw/itemlist_v0610_2.json @@ -0,0 +1,190 @@ +[ + { + "id": "erinith_book", + "iconID": "items_books:0", + "name": "Erinith's book", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "hadracor_waspwing", + "iconID": "items_misc:52", + "name": "Giant wasp wing", + "category": "animal", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "tinlyn_bells", + "iconID": "items_necklaces_1:10", + "name": "Tinlyn's sheep bell", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "tinlyn_sheep_meat", + "iconID": "items_consumables:25", + "name": "Meat from Tinlyn's sheep", + "category": "animal", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "rogorn_qitem", + "iconID": "items_books:7", + "name": "Piece of painting", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "fg_ironsword", + "iconID": "items_weapons:0", + "name": "Feygard iron sword", + "category": "lsword", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 1, + "max": 5 + } + } + }, + { + "id": "fg_ironsword_d", + "iconID": "items_weapons:0", + "name": "Degraded Feygard iron sword", + "category": "lsword", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": -50 + } + }, + { + "id": "buceth_vial", + "iconID": "items_consumables:47", + "name": "Buceth's vial of green liquid", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "chaosreaper", + "iconID": "items_weapons:49", + "name": "Chaosreaper", + "category": "scepter", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 339, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": -30, + "increaseAttackDamage": { + "min": 0, + "max": 2 + } + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 5, + "duration": 3, + "chance": 50 + } + ] + } + }, + { + "id": "izthiel_claw", + "iconID": "items_misc:47", + "name": "Izthiel claw", + "category": "animal_e", + "hasManualPrice": 1, + "baseMarketCost": 1, + "useEffect": { + "conditionsSource": [ + { + "condition": "food", + "magnitude": 3, + "duration": 6, + "chance": 100 + }, + { + "condition": "foodp", + "magnitude": 3, + "duration": 10, + "chance": 20 + } + ] + } + }, + { + "id": "iqhan_pendant", + "iconID": "items_necklaces_1:2", + "name": "Iqhan pendant", + "category": "neck", + "hasManualPrice": 1, + "baseMarketCost": 10, + "equipEffect": { + "increaseAttackChance": 6 + } + }, + { + "id": "shadowfang", + "iconID": "items_weapons_3:41", + "name": "Shadowfang", + "category": "ssword", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 512, + "equipEffect": { + "increaseMaxHP": -20, + "increaseAttackCost": 4, + "increaseAttackChance": 40, + "increaseAttackDamage": { + "min": 2, + "max": 5 + } + }, + "hitEffect": { + "conditionsSource": [ + { + "condition": "fatigue_minor", + "magnitude": 1, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "gloves_life", + "iconID": "items_armours_2:1", + "name": "Gloves of life force", + "category": "hnd_lthr", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 390, + "equipEffect": { + "increaseMaxHP": 9, + "increaseAttackChance": 5, + "increaseBlockChance": 3 + } + } +] diff --git a/AndorsTrail/res/raw/itemlist_v0611_1.json b/AndorsTrail/res/raw/itemlist_v0611_1.json new file mode 100644 index 000000000..664c83e02 --- /dev/null +++ b/AndorsTrail/res/raw/itemlist_v0611_1.json @@ -0,0 +1,477 @@ +[ + { + "id": "pot_focus_dmg", + "iconID": "items_consumables:39", + "name": "Potion of damage focus", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 272, + "useEffect": { + "conditionsSource": [ + { + "condition": "focus_dmg", + "magnitude": 1, + "duration": 4, + "chance": 100 + } + ] + } + }, + { + "id": "pot_focus_dmg2", + "iconID": "items_consumables:39", + "name": "Strong potion of damage focus", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 630, + "useEffect": { + "conditionsSource": [ + { + "condition": "focus_dmg", + "magnitude": 2, + "duration": 4, + "chance": 100 + } + ] + } + }, + { + "id": "pot_focus_ac", + "iconID": "items_consumables:37", + "name": "Potion of accuracy focus", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 210, + "useEffect": { + "conditionsSource": [ + { + "condition": "focus_ac", + "magnitude": 1, + "duration": 4, + "chance": 100 + } + ] + } + }, + { + "id": "pot_focus_ac2", + "iconID": "items_consumables:37", + "name": "Strong potion of accuracy focus", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 618, + "useEffect": { + "conditionsSource": [ + { + "condition": "focus_ac", + "magnitude": 2, + "duration": 4, + "chance": 100 + } + ] + } + }, + { + "id": "pot_scaradon", + "iconID": "items_consumables:48", + "name": "Scaradon extract", + "category": "pot", + "hasManualPrice": 0, + "baseMarketCost": 28, + "useEffect": { + "increaseCurrentHP": { + "min": 5, + "max": 10 + } + } + }, + { + "id": "remgard_shield_1", + "iconID": "items_armours_3:24", + "name": "Remgard shield", + "category": "shld_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 2189, + "equipEffect": { + "increaseAttackChance": -3, + "increaseBlockChance": 9, + "increaseDamageResistance": 1 + } + }, + { + "id": "remgard_shield_2", + "iconID": "items_armours_3:24", + "name": "Remgard combat shield", + "category": "shld_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 2720, + "equipEffect": { + "increaseAttackChance": -3, + "increaseBlockChance": 11, + "increaseDamageResistance": 1 + } + }, + { + "id": "helm_combat1", + "iconID": "items_armours:25", + "name": "Combat helm", + "category": "hd_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 455, + "equipEffect": { + "increaseAttackChance": 5, + "increaseBlockChance": 6 + } + }, + { + "id": "helm_combat2", + "iconID": "items_armours:25", + "name": "Enhanced combat helmet", + "category": "hd_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 485, + "equipEffect": { + "increaseAttackChance": 7, + "increaseBlockChance": 6 + } + }, + { + "id": "helm_combat3", + "iconID": "items_armours:26", + "name": "Remgard combat helmet", + "category": "hd_mtl_hv", + "hasManualPrice": 0, + "baseMarketCost": 1540, + "equipEffect": { + "increaseMaxHP": 1, + "increaseAttackChance": -3, + "increaseCriticalSkill": -5, + "increaseBlockChance": 12 + } + }, + { + "id": "helm_redeye1", + "iconID": "items_armours:24", + "name": "Cap of red eyes", + "category": "hd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 1, + "equipEffect": { + "increaseMaxHP": -5, + "increaseBlockChance": 8 + } + }, + { + "id": "helm_redeye2", + "iconID": "items_armours:24", + "name": "Cap of bloody eyes", + "category": "hd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 1, + "equipEffect": { + "increaseMaxHP": -5, + "increaseAttackDamage": { + "min": 0, + "max": 1 + }, + "increaseBlockChance": 8 + } + }, + { + "id": "helm_defend1", + "iconID": "items_armours_3:31", + "name": "Defender's helmet", + "category": "hd_mtl_hv", + "hasManualPrice": 0, + "baseMarketCost": 1975, + "equipEffect": { + "increaseAttackChance": -3, + "increaseBlockChance": 8, + "increaseDamageResistance": 1 + } + }, + { + "id": "helm_protector0", + "iconID": "items_armours_3:31", + "name": "Strange looking helmet", + "category": "hd_mtl_li", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxHP": -9, + "increaseAttackDamage": { + "min": 0, + "max": 1 + }, + "increaseBlockChance": 5 + } + }, + { + "id": "helm_protector", + "iconID": "items_armours_3:31", + "name": "Dark protector", + "category": "hd_mtl_li", + "displaytype": 3, + "hasManualPrice": 0, + "baseMarketCost": 3119, + "equipEffect": { + "increaseMaxHP": -6, + "increaseAttackDamage": { + "min": 0, + "max": 1 + }, + "increaseBlockChance": 13, + "increaseDamageResistance": 1 + } + }, + { + "id": "armour_chain_remg", + "iconID": "items_armours_3:13", + "name": "Remgard chain mail", + "category": "chmail", + "hasManualPrice": 0, + "baseMarketCost": 8927, + "equipEffect": { + "increaseAttackChance": -7, + "increaseBlockChance": 25 + } + }, + { + "id": "armour_cvest1", + "iconID": "items_armours_3:5", + "name": "Combat vest", + "category": "bdy_lt", + "hasManualPrice": 0, + "baseMarketCost": 1116, + "equipEffect": { + "increaseAttackChance": 15, + "increaseBlockChance": 8 + } + }, + { + "id": "armour_cvest2", + "iconID": "items_armours_3:5", + "name": "Remgard combat vest", + "category": "bdy_lt", + "hasManualPrice": 0, + "baseMarketCost": 1244, + "equipEffect": { + "increaseAttackChance": 17, + "increaseBlockChance": 8 + } + }, + { + "id": "gloves_leather1", + "iconID": "items_armours:38", + "name": "Hardened leather gloves", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 757, + "equipEffect": { + "increaseMaxHP": 3, + "increaseAttackChance": 2, + "increaseBlockChance": 6 + } + }, + { + "id": "gloves_arulir", + "iconID": "items_armours_2:1", + "name": "Arulir skin gloves", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 1793, + "equipEffect": { + "increaseAttackChance": -3, + "increaseBlockChance": 7, + "increaseDamageResistance": 1 + } + }, + { + "id": "gloves_combat1", + "iconID": "items_armours:36", + "name": "Combat gloves", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 956, + "equipEffect": { + "increaseMaxHP": 4, + "increaseAttackChance": -5, + "increaseBlockChance": 9 + } + }, + { + "id": "gloves_combat2", + "iconID": "items_armours:36", + "name": "Enhanced combat gloves", + "category": "hnd_lthr", + "hasManualPrice": 0, + "baseMarketCost": 1204, + "equipEffect": { + "increaseMaxHP": 4, + "increaseAttackChance": -5, + "increaseBlockChance": 10 + } + }, + { + "id": "gloves_remgard1", + "iconID": "items_armours:37", + "name": "Remgard fighting gloves", + "category": "hnd_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 1205, + "equipEffect": { + "increaseMaxHP": 4, + "increaseBlockChance": 8 + } + }, + { + "id": "gloves_remgard2", + "iconID": "items_armours:37", + "name": "Enchanted Remgard gloves", + "category": "hnd_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 1326, + "equipEffect": { + "increaseMaxHP": 5, + "increaseAttackChance": 2, + "increaseBlockChance": 8 + } + }, + { + "id": "gloves_guard1", + "iconID": "items_armours:38", + "name": "Gloves of the guardian", + "category": "hnd_lthr", + "hasManualPrice": 1, + "baseMarketCost": 601, + "equipEffect": { + "increaseAttackChance": -9, + "increaseCriticalSkill": -5, + "increaseBlockChance": 14 + } + }, + { + "id": "boots_combat1", + "iconID": "items_armours:30", + "name": "Combat boots", + "category": "feet_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackChance": 7, + "increaseBlockChance": 7 + } + }, + { + "id": "boots_combat2", + "iconID": "items_armours:30", + "name": "Enhanced combat boots", + "category": "feet_mtl_li", + "hasManualPrice": 0, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackChance": 7, + "increaseBlockChance": 11 + } + }, + { + "id": "boots_remgard1", + "iconID": "items_armours:31", + "name": "Remgard boots", + "category": "feet_mtl_hv", + "hasManualPrice": 0, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxHP": 4, + "increaseBlockChance": 12 + } + }, + { + "id": "boots_guard1", + "iconID": "items_armours:31", + "name": "Boots of the guardian", + "category": "feet_mtl_hv", + "hasManualPrice": 0, + "baseMarketCost": 0, + "equipEffect": { + "increaseBlockChance": 7, + "increaseDamageResistance": 1 + } + }, + { + "id": "boots_brawler", + "iconID": "items_armours_3:38", + "name": "Bar brawler's boots", + "category": "feet_lthr", + "hasManualPrice": 0, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxHP": 2, + "increaseCriticalSkill": 4, + "increaseBlockChance": 7 + } + }, + { + "id": "marrowtaint", + "iconID": "items_necklaces_1:9", + "name": "Marrowtaint", + "category": "neck", + "displaytype": 3, + "hasManualPrice": 0, + "baseMarketCost": 4760, + "equipEffect": { + "increaseMaxHP": 5, + "increaseAttackCost": -1, + "increaseAttackChance": 9, + "increaseBlockChance": 9 + } + }, + { + "id": "valugha_gown", + "iconID": "items_armours_3:2", + "name": "Silk robe of Valugha", + "category": "bdy_clth", + "displaytype": 3, + "hasManualPrice": 0, + "baseMarketCost": 3109, + "equipEffect": { + "increaseMaxHP": 5, + "increaseMoveCost": -1, + "increaseAttackChance": 30, + "increaseBlockChance": -10 + } + }, + { + "id": "valugha_hat", + "iconID": "items_armours_3:1", + "name": "Valugha's shimmering hat", + "category": "hd_cloth", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 648, + "equipEffect": { + "increaseMaxHP": 3, + "increaseMoveCost": -1, + "increaseAttackChance": 15, + "increaseAttackDamage": { + "min": -2, + "max": -2 + }, + "increaseBlockChance": -5 + } + }, + { + "id": "hat_crit", + "iconID": "items_armours_3:0", + "name": "Woodcutter's feathered hat", + "category": "hd_cloth", + "displaytype": 3, + "hasManualPrice": 0, + "baseMarketCost": 1, + "equipEffect": { + "increaseCriticalSkill": 4, + "increaseBlockChance": -5 + } + } +] diff --git a/AndorsTrail/res/raw/itemlist_v0611_2.json b/AndorsTrail/res/raw/itemlist_v0611_2.json new file mode 100644 index 000000000..69fd2544f --- /dev/null +++ b/AndorsTrail/res/raw/itemlist_v0611_2.json @@ -0,0 +1,71 @@ +[ + { + "id": "thorin_bone", + "iconID": "items_misc:44", + "name": "Chewed bone", + "category": "animal", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "spider", + "iconID": "items_misc:40", + "name": "Dead spider", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 1 + }, + { + "id": "irdegh", + "iconID": "items_misc:49", + "name": "Irdegh poison gland", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 5 + }, + { + "id": "arulir_skin", + "iconID": "items_misc:39", + "name": "Arulir skin", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 4 + }, + { + "id": "algangror_rat", + "iconID": "items_misc:38", + "name": "Strange looking rat tail", + "category": "animal", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "oegyth", + "iconID": "items_misc:35", + "name": "Oegyth crystal", + "category": "gem", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "toszylae_heart", + "iconID": "items_misc:6", + "name": "Demon heart", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "potion_rotworm", + "iconID": "items_consumables:63", + "name": "Kazaul rotworm", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + } +] diff --git a/AndorsTrail/res/raw/itemlist_v0611_3.json b/AndorsTrail/res/raw/itemlist_v0611_3.json new file mode 100644 index 000000000..8dc3b8f42 --- /dev/null +++ b/AndorsTrail/res/raw/itemlist_v0611_3.json @@ -0,0 +1,47 @@ +[ + { + "id": "lyson_marrow", + "iconID": "items_consumables:63", + "name": "Vial of Lyson marrow extract", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "algangror_idol", + "iconID": "items_misc_2:220", + "name": "Small idol", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "algangror_ring", + "iconID": "items_rings_1:11", + "name": "Algangror's ring", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "kaverin_message", + "iconID": "items_books:7", + "name": "Kaverin's sealed message", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "vacor_map", + "iconID": "items_books:9", + "name": "Map to Vacor's old hideout", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + } +] diff --git a/AndorsTrail/res/raw/itemlist_v068.json b/AndorsTrail/res/raw/itemlist_v068.json new file mode 100644 index 000000000..29c9050a5 --- /dev/null +++ b/AndorsTrail/res/raw/itemlist_v068.json @@ -0,0 +1,190 @@ +[ + { + "id": "armor_chain1", + "iconID": "items_armours:17", + "name": "Rusty chain mail", + "category": "chmail", + "baseMarketCost": 3629, + "equipEffect": { + "increaseAttackChance": -9, + "increaseBlockChance": 20 + } + }, + { + "id": "armor_chain2", + "iconID": "items_armours:17", + "name": "Ordinary chain mail", + "category": "chmail", + "baseMarketCost": 4191, + "equipEffect": { + "increaseAttackChance": -10, + "increaseBlockChance": 22 + } + }, + { + "id": "hat_leather1", + "iconID": "items_armours:24", + "name": "Ordinary leather cap", + "category": "hd_lthr", + "baseMarketCost": 261, + "equipEffect": { + "increaseAttackChance": -2, + "increaseBlockChance": 7 + } + }, + { + "id": "sleepingmead", + "iconID": "items_consumables:51", + "name": "Prepared sleepy mead", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "ffguard_qitem", + "iconID": "items_jewelry:0", + "name": "Feygard patrol ring", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "shield6", + "iconID": "items_armours:3", + "name": "Wooden tower shield", + "category": "shld_twr", + "baseMarketCost": 952, + "equipEffect": { + "increaseAttackChance": -6, + "increaseBlockChance": 12 + } + }, + { + "id": "shield7", + "iconID": "items_armours:3", + "name": "Strong wooden tower shield", + "category": "shld_twr", + "baseMarketCost": 1538, + "equipEffect": { + "increaseAttackChance": -6, + "increaseBlockChance": 14 + } + }, + { + "id": "club_wood1", + "iconID": "items_weapons:44", + "name": "Heavy iron club", + "category": "mace", + "baseMarketCost": 950, + "equipEffect": { + "increaseAttackCost": 8, + "increaseAttackChance": 15, + "increaseCriticalSkill": 5, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 2, + "max": 11 + } + } + }, + { + "id": "club_wood2", + "iconID": "items_weapons:44", + "name": "Balanced heavy iron club", + "category": "mace", + "baseMarketCost": 2194, + "equipEffect": { + "increaseAttackCost": 7, + "increaseAttackChance": 10, + "increaseCriticalSkill": 10, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 2, + "max": 11 + } + } + }, + { + "id": "gloves_grip", + "iconID": "items_armours:35", + "name": "Gloves of better grip", + "category": "hnd_lthr", + "baseMarketCost": 471, + "equipEffect": { + "increaseAttackChance": 9, + "increaseBlockChance": 1 + } + }, + { + "id": "gloves_fancy", + "iconID": "items_armours:35", + "name": "Fancy gloves", + "category": "hnd_cloth", + "baseMarketCost": 78, + "equipEffect": { + "increaseAttackChance": 5 + } + }, + { + "id": "ring_crit1", + "iconID": "items_jewelry:0", + "name": "Ring of strike", + "category": "ring", + "displaytype": 4, + "baseMarketCost": 2921, + "equipEffect": { + "increaseCriticalSkill": 5 + } + }, + { + "id": "ring_crit2", + "iconID": "items_jewelry:0", + "name": "Ring of vicious strike", + "category": "ring", + "displaytype": 4, + "baseMarketCost": 3455, + "equipEffect": { + "increaseAttackChance": -3, + "increaseCriticalSkill": 7 + } + }, + { + "id": "armor_stone", + "iconID": "items_armours:17", + "name": "Stone Cuirass", + "category": "bdy_hv", + "displaytype": 3, + "baseMarketCost": 52, + "equipEffect": { + "increaseAttackCost": 2, + "increaseBlockChance": 22, + "increaseDamageResistance": 1 + } + }, + { + "id": "ring_shadow0", + "iconID": "items_jewelry:2", + "name": "Ring of lesser Shadow", + "category": "ring", + "displaytype": 2, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackChance": 25, + "increaseCriticalSkill": 6, + "increaseAttackDamage": { + "min": 4, + "max": 7 + }, + "increaseBlockChance": 5, + "addedConditions": [ + { + "condition": "regen", + "magnitude": 1 + } + ] + } + } +] diff --git a/AndorsTrail/res/raw/itemlist_v069.json b/AndorsTrail/res/raw/itemlist_v069.json new file mode 100644 index 000000000..ad68d0ef4 --- /dev/null +++ b/AndorsTrail/res/raw/itemlist_v069.json @@ -0,0 +1,464 @@ +[ + { + "id": "rapier_lifesteal", + "iconID": "items_weapons:71", + "name": "Rapier of lifesteal", + "category": "rapier", + "displaytype": 2, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxHP": 5, + "increaseAttackCost": 5, + "increaseAttackChance": 21, + "increaseAttackDamage": { + "min": 1, + "max": 6 + } + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 0, + "max": 3 + } + }, + "killEffect": { + "increaseCurrentHP": { + "min": 3, + "max": 3 + } + } + }, + { + "id": "dagger_barbed", + "iconID": "items_weapons:17", + "name": "Barbed dagger", + "category": "dagger", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 15, + "increaseBlockChance": 5 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "bleeding_wound", + "magnitude": 1, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "elytharan_redeemer", + "iconID": "items_weapons:70", + "name": "Elytharan redeemer", + "category": "2hsword", + "displaytype": 2, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxAP": 2, + "increaseAttackCost": 5, + "increaseAttackChance": 25, + "increaseAttackDamage": { + "min": 3, + "max": 8 + }, + "increaseBlockChance": 5, + "addedConditions": [ + { + "condition": "bless", + "magnitude": 1 + } + ] + } + }, + { + "id": "clouded_rage", + "iconID": "items_weapons:71", + "name": "Sword of Shadow's rage", + "category": "rapier", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 21, + "increaseAttackDamage": { + "min": 3, + "max": 6 + }, + "increaseBlockChance": 5 + }, + "killEffect": { + "conditionsSource": [ + { + "condition": "rage_minor", + "magnitude": 1, + "duration": 1, + "chance": 50 + } + ] + } + }, + { + "id": "shadow_slayer", + "iconID": "items_weapons:60", + "name": "Shadow of the slayer", + "category": "axe2h", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxAP": 2, + "increaseAttackCost": 7, + "increaseAttackChance": 25, + "increaseCriticalSkill": 10, + "setCriticalMultiplier": 2, + "increaseAttackDamage": { + "min": 5, + "max": 9 + } + }, + "killEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "ring_shadow_embrace", + "iconID": "items_jewelry:0", + "name": "Ring of Shadow embrace", + "category": "ring", + "displaytype": 3, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseMaxHP": 20, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 2, + "max": 2 + } + } + }, + { + "id": "bwm_dagger", + "iconID": "items_weapons:19", + "name": "Blackwater dagger", + "category": "dagger", + "displaytype": 4, + "hasManualPrice": 1, + "baseMarketCost": 539, + "equipEffect": { + "increaseAttackCost": 3, + "increaseAttackChance": 40, + "increaseAttackDamage": { + "min": 1, + "max": 1 + }, + "increaseBlockChance": 5, + "addedConditions": [ + { + "condition": "blackwater_misery", + "magnitude": 1 + } + ] + } + }, + { + "id": "bwm_dagger_venom", + "iconID": "items_weapons:19", + "name": "Blackwater poisoned dagger", + "category": "dagger", + "displaytype": 4, + "hasManualPrice": 1, + "baseMarketCost": 1552, + "equipEffect": { + "increaseAttackCost": 3, + "increaseAttackChance": 45, + "increaseAttackDamage": { + "min": 1, + "max": 1 + }, + "addedConditions": [ + { + "condition": "blackwater_misery", + "magnitude": 1 + } + ] + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_weak", + "magnitude": 1, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "bwm_ironsword", + "iconID": "items_weapons:0", + "name": "Blackwater iron sword", + "category": "lsword", + "displaytype": 4, + "hasManualPrice": 1, + "baseMarketCost": 1224, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 50, + "increaseAttackDamage": { + "min": 3, + "max": 7 + }, + "increaseBlockChance": 5, + "addedConditions": [ + { + "condition": "blackwater_misery", + "magnitude": 1 + } + ] + } + }, + { + "id": "bwm_leather_armour", + "iconID": "items_armours:15", + "name": "Blackwater leather armour", + "category": "bdy_lthr", + "displaytype": 4, + "hasManualPrice": 1, + "baseMarketCost": 2551, + "equipEffect": { + "increaseBlockChance": 25, + "increaseDamageResistance": 1, + "addedConditions": [ + { + "condition": "blackwater_misery", + "magnitude": 1 + } + ] + } + }, + { + "id": "bwm_leather_cap", + "iconID": "items_armours:24", + "name": "Blackwater leather cap", + "category": "hd_lthr", + "displaytype": 4, + "hasManualPrice": 1, + "baseMarketCost": 722, + "equipEffect": { + "increaseMaxHP": 5, + "increaseBlockChance": 21, + "addedConditions": [ + { + "condition": "blackwater_misery", + "magnitude": 1 + } + ] + } + }, + { + "id": "bwm_combat_ring", + "iconID": "items_jewelry:2", + "name": "Blackwater ring of combat", + "category": "ring", + "displaytype": 4, + "hasManualPrice": 1, + "baseMarketCost": 595, + "equipEffect": { + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 0, + "max": 7 + }, + "addedConditions": [ + { + "condition": "blackwater_misery", + "magnitude": 1 + } + ] + } + }, + { + "id": "bwm_brew", + "iconID": "items_consumables:51", + "name": "Blackwater brew", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 57, + "useEffect": { + "increaseCurrentHP": { + "min": 15, + "max": 15 + }, + "conditionsSource": [ + { + "condition": "intoxicated", + "magnitude": 1, + "duration": 10, + "chance": 100 + } + ] + } + }, + { + "id": "woodcutter_hatchet", + "iconID": "items_weapons:57", + "name": "Woodcutter's hatchet", + "category": "axe", + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 9, + "increaseAttackDamage": { + "min": 6, + "max": 12 + } + } + }, + { + "id": "woodcutter_boots", + "iconID": "items_armours:30", + "name": "Woodcutter's boots", + "category": "feet_lthr", + "baseMarketCost": 873, + "equipEffect": { + "increaseMaxHP": 1, + "increaseAttackChance": 3, + "increaseBlockChance": 8 + } + }, + { + "id": "heavy_club", + "iconID": "items_weapons:44", + "name": "Heavy club", + "category": "mace", + "baseMarketCost": 1229, + "equipEffect": { + "increaseAttackCost": 7, + "increaseAttackChance": 15, + "increaseCriticalSkill": 5, + "setCriticalMultiplier": 3, + "increaseAttackDamage": { + "min": 2, + "max": 15 + } + } + }, + { + "id": "pot_speed_1", + "iconID": "items_consumables:41", + "name": "Minor potion of speed", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 261, + "useEffect": { + "conditionsSource": [ + { + "condition": "speed_minor", + "magnitude": 1, + "duration": 5, + "chance": 100 + } + ] + } + }, + { + "id": "pot_poison_weak", + "iconID": "items_consumables:40", + "name": "Weak poison", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 125, + "useEffect": { + "conditionsSource": [ + { + "condition": "poison_weak", + "magnitude": 1, + "duration": 5, + "chance": 100 + } + ] + } + }, + { + "id": "pot_poison_weak_antidote", + "iconID": "items_consumables:54", + "name": "Weak poison antidote", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 337, + "useEffect": { + "conditionsSource": [ + { + "condition": "poison_weak", + "magnitude": -99, + "chance": 100 + } + ] + } + }, + { + "id": "pot_bleeding_ointment", + "iconID": "items_consumables:35", + "name": "Ointment of bleeding wounds", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 310, + "useEffect": { + "conditionsSource": [ + { + "condition": "bleeding_wound", + "magnitude": -99, + "chance": 100 + } + ] + } + }, + { + "id": "pot_fatigue_restore", + "iconID": "items_consumables:41", + "name": "Restore fatigue", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 210, + "useEffect": { + "conditionsSource": [ + { + "condition": "fatigue_minor", + "magnitude": -99, + "chance": 100 + } + ] + } + }, + { + "id": "pot_blind_rage", + "iconID": "items_consumables:63", + "name": "Potion of blind rage", + "category": "pot", + "hasManualPrice": 1, + "baseMarketCost": 495, + "useEffect": { + "conditionsSource": [ + { + "condition": "rage_minor", + "magnitude": 1, + "duration": 5, + "chance": 100 + } + ] + } + } +] diff --git a/AndorsTrail/res/raw/itemlist_v069_2.json b/AndorsTrail/res/raw/itemlist_v069_2.json new file mode 100644 index 000000000..b72c2996e --- /dev/null +++ b/AndorsTrail/res/raw/itemlist_v069_2.json @@ -0,0 +1,38 @@ +[ + { + "id": "rusted_iron_sword", + "iconID": "items_weapons:0", + "name": "Rusted iron sword", + "category": "lsword", + "baseMarketCost": 52, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "broken_buckler", + "iconID": "items_armours:0", + "name": "Broken wooden buckler", + "category": "buckler", + "baseMarketCost": 120, + "equipEffect": { + "increaseAttackChance": -5, + "increaseBlockChance": 1 + } + }, + { + "id": "used_gloves", + "iconID": "items_armours:35", + "name": "Blood-stained gloves", + "category": "hnd_lthr", + "baseMarketCost": 56, + "equipEffect": { + "increaseBlockChance": 1 + } + } +] diff --git a/AndorsTrail/res/raw/itemlist_v069_questitems.json b/AndorsTrail/res/raw/itemlist_v069_questitems.json new file mode 100644 index 000000000..db92ced03 --- /dev/null +++ b/AndorsTrail/res/raw/itemlist_v069_questitems.json @@ -0,0 +1,58 @@ +[ + { + "id": "bwm_claws", + "iconID": "items_misc:47", + "name": "White wyrm claw", + "category": "animal", + "hasManualPrice": 1, + "baseMarketCost": 35 + }, + { + "id": "bwm_permit", + "iconID": "items_books:8", + "name": "Forged papers for Blackwater", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "bjorgur_dagger", + "iconID": "items_weapons:14", + "name": "Bjorgur's family dagger", + "category": "dagger", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0, + "equipEffect": { + "increaseAttackCost": 5 + } + }, + { + "id": "q_kazaul_vial", + "iconID": "items_consumables:57", + "name": "Vial of purifying spirit", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "guthbered_id", + "iconID": "items_jewelry:0", + "name": "Guthbered's ring", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + }, + { + "id": "harlenn_id", + "iconID": "items_jewelry:0", + "name": "Harlenn's ring", + "category": "other", + "displaytype": 1, + "hasManualPrice": 1, + "baseMarketCost": 0 + } +] diff --git a/AndorsTrail/res/raw/itemlist_weapons.json b/AndorsTrail/res/raw/itemlist_weapons.json new file mode 100644 index 000000000..077f612e5 --- /dev/null +++ b/AndorsTrail/res/raw/itemlist_weapons.json @@ -0,0 +1,255 @@ +[ + { + "id": "club1", + "iconID": "items_weapons:42", + "name": "Wooden club", + "category": "club", + "baseMarketCost": 7, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "club3", + "iconID": "items_weapons:44", + "name": "Iron club", + "category": "mace", + "baseMarketCost": 253, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 2, + "max": 7 + } + } + }, + { + "id": "ironsword0", + "iconID": "items_weapons:0", + "name": "Crude iron sword", + "category": "lsword", + "baseMarketCost": 12, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "hammer0", + "iconID": "items_weapons:45", + "name": "Iron hammer", + "category": "hammer", + "baseMarketCost": 12, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "hammer1", + "iconID": "items_weapons:45", + "name": "Giant hammer", + "category": "hammer2h", + "baseMarketCost": 121, + "equipEffect": { + "increaseAttackCost": 10, + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 4, + "max": 7 + } + } + }, + { + "id": "dagger0", + "iconID": "items_weapons:14", + "name": "Iron dagger", + "category": "dagger", + "baseMarketCost": 12, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 0, + "max": 1 + } + } + }, + { + "id": "dagger1", + "iconID": "items_weapons:14", + "name": "Sharp iron dagger", + "category": "dagger", + "baseMarketCost": 53, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 20, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "dagger2", + "iconID": "items_weapons:14", + "name": "Superior iron dagger", + "category": "dagger", + "baseMarketCost": 70, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 25, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "shortsword1", + "iconID": "items_weapons:15", + "name": "Iron shortsword", + "category": "ssword", + "baseMarketCost": 78, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 15, + "increaseAttackDamage": { + "min": 1, + "max": 2 + } + } + }, + { + "id": "ironsword1", + "iconID": "items_weapons:0", + "name": "Iron sword", + "category": "lsword", + "baseMarketCost": 78, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 1, + "max": 3 + } + } + }, + { + "id": "ironsword2", + "iconID": "items_weapons:1", + "name": "Iron longsword", + "category": "lsword", + "baseMarketCost": 121, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 10, + "increaseAttackDamage": { + "min": 1, + "max": 4 + } + } + }, + { + "id": "broadsword1", + "iconID": "items_weapons:5", + "name": "Iron broadsword", + "category": "bsword", + "baseMarketCost": 251, + "equipEffect": { + "increaseAttackCost": 7, + "increaseAttackChance": 2, + "increaseAttackDamage": { + "min": 1, + "max": 10 + } + } + }, + { + "id": "broadsword2", + "iconID": "items_weapons:6", + "name": "Steel broadsword", + "category": "bsword", + "baseMarketCost": 582, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 15, + "increaseAttackDamage": { + "min": 3, + "max": 10 + } + } + }, + { + "id": "steelsword1", + "iconID": "items_weapons:7", + "name": "Steel sword", + "category": "lsword", + "baseMarketCost": 874, + "equipEffect": { + "increaseAttackCost": 4, + "increaseAttackChance": 24, + "increaseAttackDamage": { + "min": 3, + "max": 7 + } + } + }, + { + "id": "axe1", + "iconID": "items_weapons:56", + "name": "Woodcutter axe", + "category": "axe", + "baseMarketCost": 24, + "equipEffect": { + "increaseAttackCost": 5, + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 1, + "max": 3 + } + } + }, + { + "id": "axe2", + "iconID": "items_weapons:56", + "name": "Iron axe", + "category": "axe", + "baseMarketCost": 312, + "equipEffect": { + "increaseAttackCost": 6, + "increaseAttackChance": 5, + "increaseAttackDamage": { + "min": 2, + "max": 5 + } + } + }, + { + "id": "quickdagger1", + "iconID": "items_weapons:14", + "name": "Quickstrike dagger", + "category": "dagger", + "displaytype": 4, + "baseMarketCost": 512, + "equipEffect": { + "increaseAttackCost": 3, + "increaseAttackChance": 20, + "increaseBlockChance": -20 + } + } +] diff --git a/AndorsTrail/res/raw/monsterlist_crossglen_animals.json b/AndorsTrail/res/raw/monsterlist_crossglen_animals.json new file mode 100644 index 000000000..94826e647 --- /dev/null +++ b/AndorsTrail/res/raw/monsterlist_crossglen_animals.json @@ -0,0 +1,469 @@ +[ + { + "id": "tiny_rat", + "iconID": "monsters_rats:0", + "name": "Tiny rat", + "spawnGroup": "trainingrat", + "monsterClass": 4, + "unique": 1, + "maxHP": 2, + "attackCost": 10, + "attackChance": 50, + "droplistID": "trainingrat", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "cave_rat", + "iconID": "monsters_rats:1", + "name": "Cave rat", + "spawnGroup": "crossglen_caverat", + "monsterClass": 4, + "maxHP": 5, + "attackCost": 10, + "attackChance": 90, + "droplistID": "rat", + "attackDamage": { + "min": 2, + "max": 2 + } + }, + { + "id": "tough_cave_rat", + "iconID": "monsters_rats:1", + "name": "Tough cave rat", + "spawnGroup": "crossglen_caverat2", + "monsterClass": 4, + "maxHP": 5, + "attackCost": 5, + "attackChance": 90, + "droplistID": "rat", + "attackDamage": { + "min": 3, + "max": 3 + } + }, + { + "id": "strong_cave_rat", + "iconID": "monsters_rats:3", + "name": "Strong cave rat", + "spawnGroup": "crossglen_caveboss", + "monsterClass": 4, + "unique": 1, + "maxHP": 20, + "attackCost": 5, + "attackChance": 100, + "blockChance": 10, + "droplistID": "caveratboss", + "attackDamage": { + "min": 2, + "max": 4 + } + }, + { + "id": "black_ant", + "iconID": "monsters_insects:0", + "name": "Black ant", + "spawnGroup": "crossglen_ant", + "monsterClass": 1, + "maxHP": 3, + "attackCost": 10, + "attackChance": 70, + "droplistID": "insect", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "small_wasp", + "iconID": "monsters_insects:1", + "name": "Small wasp", + "spawnGroup": "crossglen_wasp", + "monsterClass": 1, + "maxHP": 4, + "attackCost": 10, + "attackChance": 70, + "droplistID": "wasp", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "beetle", + "iconID": "monsters_insects:4", + "name": "Beetle", + "spawnGroup": "crossglen_beetle", + "monsterClass": 1, + "maxHP": 4, + "attackCost": 10, + "attackChance": 70, + "droplistID": "insect", + "attackDamage": { + "min": 3, + "max": 3 + } + }, + { + "id": "forest_wasp", + "iconID": "monsters_insects:1", + "name": "Forest wasp", + "spawnGroup": "forestwasp", + "monsterClass": 1, + "maxHP": 6, + "attackCost": 10, + "attackChance": 70, + "droplistID": "wasp", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "forest_ant", + "iconID": "monsters_insects:0", + "name": "Forest ant", + "spawnGroup": "forestant", + "monsterClass": 1, + "maxHP": 4, + "attackCost": 10, + "attackChance": 90, + "blockChance": 10, + "droplistID": "insect", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "yellow_forest_ant", + "iconID": "monsters_insects:2", + "name": "Yellow forest ant", + "spawnGroup": "forestant", + "monsterClass": 1, + "maxHP": 5, + "attackCost": 10, + "attackChance": 100, + "blockChance": 15, + "droplistID": "insect", + "attackDamage": { + "min": 2, + "max": 2 + } + }, + { + "id": "small_rabid_dog", + "iconID": "monsters_dogs:1", + "name": "Small rabid dog", + "spawnGroup": "forestdog", + "monsterClass": 4, + "maxHP": 6, + "attackCost": 10, + "attackChance": 90, + "droplistID": "canine", + "attackDamage": { + "min": 2, + "max": 2 + } + }, + { + "id": "forest_snake", + "iconID": "monsters_snakes:1", + "name": "Forest Snake", + "spawnGroup": "forestsnake", + "monsterClass": 7, + "maxHP": 7, + "attackCost": 10, + "attackChance": 110, + "blockChance": 10, + "droplistID": "snake", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "young_cave_snake", + "iconID": "monsters_snakes:3", + "name": "Young Cave Snake", + "spawnGroup": "cavesnake1", + "monsterClass": 7, + "maxHP": 8, + "attackCost": 5, + "attackChance": 110, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 10, + "droplistID": "snake", + "attackDamage": { + "min": 2, + "max": 2 + } + }, + { + "id": "cave_snake", + "iconID": "monsters_snakes:3", + "name": "Cave Snake", + "spawnGroup": "cavesnake1", + "monsterClass": 7, + "maxHP": 12, + "attackCost": 5, + "attackChance": 110, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 15, + "droplistID": "snake", + "attackDamage": { + "min": 2, + "max": 2 + } + }, + { + "id": "venomous_cave_snake", + "iconID": "monsters_snakes:3", + "name": "Venomous Cave Snake", + "spawnGroup": "cavesnake2", + "monsterClass": 7, + "maxHP": 15, + "maxAP": 10, + "attackCost": 5, + "attackChance": 110, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 10, + "droplistID": "snake", + "attackDamage": { + "min": 2, + "max": 2 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_weak", + "magnitude": 1, + "duration": 1, + "chance": 10 + } + ] + } + }, + { + "id": "tough_cave_snake", + "iconID": "monsters_snakes:3", + "name": "Tough Cave Snake", + "spawnGroup": "cavesnake2", + "monsterClass": 7, + "maxHP": 21, + "attackCost": 5, + "attackChance": 110, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 15, + "droplistID": "snake", + "attackDamage": { + "min": 2, + "max": 2 + } + }, + { + "id": "basilisk", + "iconID": "monsters_rats:4", + "name": "Basilisk", + "spawnGroup": "cavesnake2_boss", + "monsterClass": 7, + "maxHP": 40, + "attackCost": 7, + "attackChance": 40, + "blockChance": 50, + "damageResistance": 2, + "droplistID": "cavecritter", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "snake_servant", + "iconID": "monsters_liches:0", + "name": "Snake servant", + "spawnGroup": "cavesnake3", + "monsterClass": 6, + "maxHP": 35, + "attackCost": 5, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 3, + "blockChance": 10, + "damageResistance": 1, + "droplistID": "lich1", + "attackDamage": { + "min": 2, + "max": 3 + } + }, + { + "id": "snake_master", + "iconID": "monsters_liches:1", + "name": "Snake master", + "spawnGroup": "cavesnake3_boss", + "monsterClass": 6, + "unique": 1, + "maxHP": 55, + "attackCost": 5, + "attackChance": 60, + "criticalSkill": 200, + "criticalMultiplier": 3, + "blockChance": 10, + "damageResistance": 4, + "droplistID": "snakemaster", + "phraseID": "snakemaster", + "attackDamage": { + "min": 1, + "max": 4 + } + }, + { + "id": "rabid_boar", + "iconID": "monsters_dogs:6", + "name": "Rabid Boar", + "spawnGroup": "forestboar", + "monsterClass": 4, + "maxHP": 20, + "attackCost": 5, + "attackChance": 110, + "blockChance": 30, + "droplistID": "canineboss", + "attackDamage": { + "min": 3, + "max": 3 + } + }, + { + "id": "rabid_fox", + "iconID": "monsters_dogs:3", + "name": "Rabid Fox", + "spawnGroup": "fox1", + "monsterClass": 4, + "maxHP": 25, + "attackCost": 5, + "attackChance": 100, + "blockChance": 50, + "droplistID": "canine", + "attackDamage": { + "min": 3, + "max": 3 + } + }, + { + "id": "yellow_cave_ant", + "iconID": "monsters_insects:2", + "name": "Yellow cave ant", + "spawnGroup": "pitcave1", + "monsterClass": 1, + "maxHP": 20, + "attackCost": 3, + "attackChance": 30, + "blockChance": 80, + "droplistID": "insect", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "young_teeth_critter", + "iconID": "monsters_misc:0", + "name": "Young teeth critter", + "spawnGroup": "pitcave2", + "monsterClass": 7, + "maxHP": 15, + "attackCost": 2, + "attackChance": 50, + "blockChance": 70, + "droplistID": "cavecritter", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "teeth_critter", + "iconID": "monsters_misc:0", + "name": "Teeth critter", + "spawnGroup": "pitcave2", + "monsterClass": 7, + "maxHP": 25, + "attackCost": 2, + "attackChance": 60, + "criticalSkill": 10, + "criticalMultiplier": 3, + "blockChance": 70, + "droplistID": "cavecritter", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "young_minotaur", + "iconID": "monsters_misc:5", + "name": "Young minotaur", + "spawnGroup": "pitcave2", + "monsterClass": 5, + "maxHP": 45, + "attackCost": 6, + "attackChance": 20, + "criticalSkill": 40, + "criticalMultiplier": 3, + "blockChance": 50, + "damageResistance": 2, + "droplistID": "cavemonster", + "attackDamage": { + "min": 4, + "max": 4 + } + }, + { + "id": "strong_minotaur", + "iconID": "monsters_misc:5", + "name": "Strong minotaur", + "spawnGroup": "pitcave2_boss", + "monsterClass": 5, + "maxHP": 53, + "attackCost": 6, + "attackChance": 40, + "criticalSkill": 50, + "criticalMultiplier": 3, + "blockChance": 50, + "damageResistance": 2, + "droplistID": "cavemonster", + "attackDamage": { + "min": 5, + "max": 5 + } + }, + { + "id": "irogotu", + "iconID": "monsters_liches:0", + "name": "Irogotu", + "spawnGroup": "pitcave_boss", + "monsterClass": 6, + "unique": 1, + "maxHP": 61, + "attackCost": 3, + "attackChance": 50, + "criticalSkill": 40, + "criticalMultiplier": 3, + "blockChance": 70, + "damageResistance": 4, + "droplistID": "irogotu", + "phraseID": "irogotu", + "attackDamage": { + "min": 2, + "max": 5 + } + } +] diff --git a/AndorsTrail/res/raw/monsterlist_crossglen_npcs.json b/AndorsTrail/res/raw/monsterlist_crossglen_npcs.json new file mode 100644 index 000000000..7673f8033 --- /dev/null +++ b/AndorsTrail/res/raw/monsterlist_crossglen_npcs.json @@ -0,0 +1,119 @@ +[ + { + "id": "mikhail", + "iconID": "monsters_mage2:0", + "name": "Mikhail", + "spawnGroup": "mikhail", + "monsterClass": 0, + "phraseID": "mikhail_start_select" + }, + { + "id": "leta", + "iconID": "monsters_men:2", + "name": "Leta", + "spawnGroup": "leta", + "monsterClass": 0, + "phraseID": "leta1" + }, + { + "id": "audir", + "iconID": "monsters_men:0", + "name": "Audir", + "spawnGroup": "audir", + "monsterClass": 0, + "droplistID": "shop_audir", + "phraseID": "audir1" + }, + { + "id": "arambold", + "iconID": "monsters_men:3", + "name": "Arambold", + "spawnGroup": "arambold", + "monsterClass": 0, + "droplistID": "shop_arambold", + "phraseID": "arambold1" + }, + { + "id": "tharal", + "iconID": "monsters_men:4", + "name": "Tharal", + "spawnGroup": "tharal", + "monsterClass": 0, + "droplistID": "shop_tharal", + "phraseID": "tharal1" + }, + { + "id": "drunk", + "iconID": "monsters_rltiles3:14", + "name": "Drunk", + "spawnGroup": "drunk", + "monsterClass": 0, + "phraseID": "drunk1" + }, + { + "id": "mara", + "iconID": "monsters_men:7", + "name": "Mara", + "spawnGroup": "mara", + "monsterClass": 0, + "droplistID": "shop_mara", + "phraseID": "mara1" + }, + { + "id": "gruil", + "iconID": "monsters_rogue1:0", + "name": "Gruil", + "spawnGroup": "gruil", + "monsterClass": 0, + "droplistID": "shop_gruil", + "phraseID": "gruil1" + }, + { + "id": "leonid", + "iconID": "monsters_men:3", + "name": "Leonid", + "spawnGroup": "leonid", + "monsterClass": 0, + "phraseID": "leonid1" + }, + { + "id": "farmer", + "iconID": "monsters_man1:0", + "name": "Farmer", + "spawnGroup": "crossglen_farmer1", + "monsterClass": 0, + "phraseID": "farm1" + }, + { + "id": "tired_farmer", + "iconID": "monsters_man1:0", + "name": "Tired farmer", + "spawnGroup": "crossglen_farmer2", + "monsterClass": 0, + "phraseID": "farm2" + }, + { + "id": "oromir", + "iconID": "monsters_man1:0", + "name": "Oromir", + "spawnGroup": "oromir", + "monsterClass": 0, + "phraseID": "oromir1" + }, + { + "id": "odair", + "iconID": "monsters_men:8", + "name": "Odair", + "spawnGroup": "odair", + "monsterClass": 0, + "phraseID": "odair1" + }, + { + "id": "jan", + "iconID": "monsters_rltiles3:14", + "name": "Jan", + "spawnGroup": "jan", + "monsterClass": 0, + "phraseID": "jan_start_select" + } +] diff --git a/AndorsTrail/res/raw/monsterlist_debug.json b/AndorsTrail/res/raw/monsterlist_debug.json new file mode 100644 index 000000000..3ed123049 --- /dev/null +++ b/AndorsTrail/res/raw/monsterlist_debug.json @@ -0,0 +1,109 @@ +[ + { + "id": "traveller1", + "iconID": "monsters_man1:0", + "name": "Traveller1", + "spawnGroup": "debugNPC1", + "monsterClass": 0, + "unique": 1, + "maxHP": 10, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 50, + "droplistID": "debugshop1", + "phraseID": "debugshop", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "traveller2", + "iconID": "monsters_man1:0", + "name": "Traveller2", + "spawnGroup": "debugNPC2", + "monsterClass": 0, + "unique": 1, + "maxHP": 10, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 50, + "droplistID": "debugshop1", + "phraseID": "debugquest", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "black_ant", + "iconID": "monsters_insects:0", + "name": "Ant", + "spawnGroup": "insect", + "monsterClass": 1, + "maxHP": 10, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 50, + "droplistID": "debuglist1", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "small_wasp", + "iconID": "monsters_insects:1", + "name": "Pitiful debug bug with long name", + "spawnGroup": "insect", + "monsterClass": 1, + "maxHP": 10, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 50, + "droplistID": "debuglist1", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "winged_demon", + "iconID": "monsters_demon1:0", + "name": "Winged demon", + "spawnGroup": "demon", + "size": "2x2", + "monsterClass": 2, + "maxHP": 10, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 50, + "droplistID": "debuglist1", + "attackDamage": { + "min": 10, + "max": 20 + } + }, + { + "id": "troll", + "iconID": "monsters_misc:5", + "name": "Troll", + "spawnGroup": "troll", + "monsterClass": 5, + "maxHP": 10, + "maxAP": 10, + "moveCost": 10, + "attackCost": 2, + "attackChance": 50, + "droplistID": "debuglist2", + "attackDamage": { + "min": 1, + "max": 2 + } + } +] diff --git a/AndorsTrail/res/raw/monsterlist_fallhaven_animals.json b/AndorsTrail/res/raw/monsterlist_fallhaven_animals.json new file mode 100644 index 000000000..4c533318b --- /dev/null +++ b/AndorsTrail/res/raw/monsterlist_fallhaven_animals.json @@ -0,0 +1,292 @@ +[ + { + "id": "lost_spirit", + "iconID": "monsters_rltiles2:45", + "name": "Lost spirit", + "spawnGroup": "minorhaunt1", + "monsterClass": 8, + "maxHP": 15, + "attackCost": 10, + "attackChance": 50, + "blockChance": 10, + "damageResistance": 3, + "droplistID": "haunt", + "phraseID": "haunt", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "lost_soul", + "iconID": "monsters_rltiles2:45", + "name": "Lost soul", + "spawnGroup": "minorhaunt2", + "monsterClass": 8, + "maxHP": 15, + "attackCost": 10, + "attackChance": 50, + "blockChance": 10, + "damageResistance": 4, + "droplistID": "haunt", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "haunting", + "iconID": "monsters_ghost1:0", + "name": "Haunting", + "spawnGroup": "haunt3", + "monsterClass": 8, + "maxHP": 31, + "maxAP": 10, + "moveCost": 10, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 30, + "damageResistance": 1, + "droplistID": "haunt", + "attackDamage": { + "min": 1, + "max": 5 + } + }, + { + "id": "skeletal_warrior", + "iconID": "monsters_skeleton1:0", + "name": "Skeletal warrior", + "spawnGroup": "skeleton1", + "monsterClass": 3, + "maxHP": 52, + "maxAP": 10, + "moveCost": 10, + "attackCost": 5, + "attackChance": 60, + "blockChance": 40, + "damageResistance": 1, + "droplistID": "skeleton", + "attackDamage": { + "min": 1, + "max": 3 + } + }, + { + "id": "skeletal_master", + "iconID": "monsters_skeleton2:0", + "name": "Skeletal master", + "spawnGroup": "skeletonmaster", + "monsterClass": 3, + "maxHP": 52, + "maxAP": 10, + "moveCost": 10, + "attackCost": 5, + "attackChance": 70, + "blockChance": 30, + "damageResistance": 2, + "droplistID": "skeleton", + "attackDamage": { + "min": 1, + "max": 3 + } + }, + { + "id": "skeleton", + "iconID": "monsters_skeleton1:0", + "name": "Skeleton", + "spawnGroup": "skeleton1", + "monsterClass": 3, + "maxHP": 35, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 60, + "blockChance": 40, + "droplistID": "skeleton", + "attackDamage": { + "min": 1, + "max": 4 + } + }, + { + "id": "guardian_of_the_catacombs", + "iconID": "monsters_rltiles2:45", + "name": "Guardian of the catacombs", + "spawnGroup": "catacombguard1", + "monsterClass": 8, + "unique": 1, + "maxHP": 6, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 10, + "blockChance": 10, + "damageResistance": 3, + "droplistID": "catacombguard", + "phraseID": "catacombguard", + "attackDamage": { + "min": 1, + "max": 6 + } + }, + { + "id": "catacomb_rat", + "iconID": "monsters_rats:0", + "name": "Catacomb rat", + "spawnGroup": "catacombrat1", + "monsterClass": 4, + "maxHP": 15, + "maxAP": 10, + "moveCost": 10, + "attackCost": 3, + "attackChance": 60, + "blockChance": 40, + "droplistID": "catacombrat", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "large_catacomb_rat", + "iconID": "monsters_rats:3", + "name": "Large catacomb rat", + "spawnGroup": "catacombrat1", + "monsterClass": 4, + "maxHP": 21, + "maxAP": 10, + "moveCost": 10, + "attackCost": 3, + "attackChance": 60, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 40, + "droplistID": "catacombrat", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "ghostly_visage", + "iconID": "monsters_ghost1:0", + "name": "Ghostly visage", + "spawnGroup": "catacombguard2", + "monsterClass": 8, + "maxHP": 16, + "maxAP": 10, + "moveCost": 10, + "attackCost": 5, + "attackChance": 20, + "blockChance": 20, + "damageResistance": 2, + "droplistID": "catacombguard", + "attackDamage": { + "min": 1, + "max": 4 + } + }, + { + "id": "spectre", + "iconID": "monsters_rltiles2:45", + "name": "Spectre", + "spawnGroup": "catacombguard2", + "monsterClass": 8, + "maxHP": 15, + "maxAP": 10, + "moveCost": 10, + "attackCost": 3, + "attackChance": 50, + "blockChance": 60, + "damageResistance": 2, + "droplistID": "catacombguard", + "attackDamage": { + "min": 1, + "max": 5 + } + }, + { + "id": "apparition", + "iconID": "monsters_rltiles2:45", + "name": "Apparition", + "spawnGroup": "catacombguard3", + "monsterClass": 8, + "maxHP": 17, + "maxAP": 10, + "moveCost": 10, + "attackCost": 3, + "blockChance": 70, + "damageResistance": 2, + "droplistID": "catacombguard", + "attackDamage": { + "min": 1, + "max": 5 + } + }, + { + "id": "shade", + "iconID": "monsters_ghost1:0", + "name": "Shade", + "spawnGroup": "catacombguard3", + "monsterClass": 8, + "maxHP": 16, + "maxAP": 10, + "moveCost": 10, + "attackCost": 5, + "attackChance": 20, + "blockChance": 20, + "damageResistance": 3, + "droplistID": "catacombguard", + "attackDamage": { + "min": 1, + "max": 4 + } + }, + { + "id": "young_gargoyle", + "iconID": "monsters_misc:2", + "name": "Young gargoyle", + "spawnGroup": "catacombguard3", + "monsterClass": 3, + "maxHP": 35, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 110, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 70, + "damageResistance": 1, + "droplistID": "catacombguard", + "attackDamage": { + "min": 2, + "max": 5 + } + }, + { + "id": "ghost_of_luthor", + "iconID": "monsters_liches:2", + "name": "Ghost of Luthor", + "spawnGroup": "luthor", + "monsterClass": 6, + "unique": 1, + "maxHP": 86, + "maxAP": 10, + "moveCost": 10, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 15, + "criticalMultiplier": 2, + "blockChance": 50, + "damageResistance": 3, + "droplistID": "luthor", + "phraseID": "luthor", + "attackDamage": { + "min": 2, + "max": 5 + } + } +] diff --git a/AndorsTrail/res/raw/monsterlist_fallhaven_npcs.json b/AndorsTrail/res/raw/monsterlist_fallhaven_npcs.json new file mode 100644 index 000000000..306d4e36c --- /dev/null +++ b/AndorsTrail/res/raw/monsterlist_fallhaven_npcs.json @@ -0,0 +1,333 @@ +[ + { + "id": "warden", + "iconID": "monsters_men:3", + "name": "Warden", + "spawnGroup": "fallhaven_warden", + "monsterClass": 0, + "phraseID": "fallhaven_warden_select_1" + }, + { + "id": "guard", + "iconID": "monsters_rltiles3:14", + "name": "Guard", + "spawnGroup": "fallhaven_guard", + "monsterClass": 0, + "phraseID": "fallhaven_guard" + }, + { + "id": "acolyte", + "iconID": "monsters_men:4", + "name": "Acolyte", + "spawnGroup": "fallhaven_priest", + "monsterClass": 0, + "phraseID": "fallhaven_priest" + }, + { + "id": "bearded_citizen", + "iconID": "monsters_man1:0", + "name": "Bearded Citizen", + "spawnGroup": "fallhaven_citizen1", + "monsterClass": 0, + "phraseID": "fallhaven_citizen1" + }, + { + "id": "old_citizen", + "iconID": "monsters_men:2", + "name": "Old Citizen", + "spawnGroup": "fallhaven_citizen2", + "monsterClass": 0, + "phraseID": "fallhaven_citizen2" + }, + { + "id": "tired_citizen", + "iconID": "monsters_men:7", + "name": "Tired Citizen", + "spawnGroup": "fallhaven_citizen4", + "monsterClass": 0, + "phraseID": "fallhaven_citizen4" + }, + { + "id": "citizen", + "iconID": "monsters_man1:0", + "name": "Citizen", + "spawnGroup": "fallhaven_citizen3", + "monsterClass": 0, + "phraseID": "fallhaven_citizen3" + }, + { + "id": "grumpy_citizen", + "iconID": "monsters_men:2", + "name": "Grumpy Citizen", + "spawnGroup": "fallhaven_citizen5", + "monsterClass": 0, + "phraseID": "fallhaven_citizen5" + }, + { + "id": "blond_citizen", + "iconID": "monsters_men:7", + "name": "Blond Citizen", + "spawnGroup": "fallhaven_citizen6", + "monsterClass": 0, + "phraseID": "fallhaven_citizen6" + }, + { + "id": "bucus", + "iconID": "monsters_rogue1:0", + "name": "Bucus", + "spawnGroup": "bucus", + "monsterClass": 0, + "phraseID": "bucus_welcome" + }, + { + "id": "drunkard", + "iconID": "monsters_men:0", + "name": "Drunkard", + "spawnGroup": "fallhaven_drunk", + "monsterClass": 0, + "phraseID": "fallhaven_drunk" + }, + { + "id": "old_man", + "iconID": "monsters_men:5", + "name": "Old man", + "spawnGroup": "fallhaven_oldman", + "monsterClass": 0, + "phraseID": "fallhaven_oldman" + }, + { + "id": "nocmar", + "iconID": "monsters_men:8", + "name": "Nocmar", + "spawnGroup": "nocmar", + "monsterClass": 0, + "droplistID": "nocmar", + "phraseID": "nocmar" + }, + { + "id": "prisoner", + "iconID": "monsters_rogue1:0", + "name": "Prisoner", + "spawnGroup": "fallhaven_prisoner", + "monsterClass": 0, + "maxHP": 1, + "maxAP": 1, + "moveCost": 1, + "attackCost": 1, + "attackChance": 0 + }, + { + "id": "ganos", + "iconID": "monsters_rogue1:0", + "name": "Ganos", + "spawnGroup": "ganos", + "monsterClass": 0, + "droplistID": "shop_ganos", + "phraseID": "ganos" + }, + { + "id": "arcir", + "iconID": "monsters_mage2:0", + "name": "Arcir", + "spawnGroup": "arcir", + "monsterClass": 0, + "phraseID": "arcir_start" + }, + { + "id": "athamyr", + "iconID": "monsters_men:4", + "name": "Athamyr", + "spawnGroup": "athamyr", + "monsterClass": 0, + "phraseID": "athamyr" + }, + { + "id": "thoronir", + "iconID": "monsters_men2:8", + "name": "Thoronir", + "spawnGroup": "thoronir", + "monsterClass": 0, + "droplistID": "shop_thoronir", + "phraseID": "thoronir_default" + }, + { + "id": "chapelgoer", + "iconID": "monsters_men:6", + "name": "Mourning woman", + "spawnGroup": "chapelgoer", + "monsterClass": 0, + "phraseID": "chapelgoer" + }, + { + "id": "potion_merchant", + "iconID": "monsters_mage2:0", + "name": "Potion merchant", + "spawnGroup": "fallhaven_potions", + "monsterClass": 0, + "droplistID": "shop_fallhaven_potions", + "phraseID": "fallhaven_potions" + }, + { + "id": "tailor", + "iconID": "monsters_men2:0", + "name": "Tailor", + "spawnGroup": "fallhaven_clothes", + "monsterClass": 0, + "droplistID": "shop_fallhaven_clothes", + "phraseID": "fallhaven_clothes" + }, + { + "id": "bela", + "iconID": "monsters_men:7", + "name": "Bela", + "spawnGroup": "bela", + "monsterClass": 0, + "droplistID": "shop_bela", + "phraseID": "bela" + }, + { + "id": "larcal", + "iconID": "monsters_men2:2", + "name": "Larcal", + "spawnGroup": "larcal", + "monsterClass": 0, + "unique": 1, + "maxHP": 51, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 25, + "blockChance": 50, + "droplistID": "larcal", + "phraseID": "larcal", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "gaela", + "iconID": "monsters_men2:9", + "name": "Gaela", + "spawnGroup": "gaela", + "monsterClass": 0, + "phraseID": "gaela" + }, + { + "id": "unnmir", + "iconID": "monsters_mage2:0", + "name": "Unnmir", + "spawnGroup": "unnmir", + "monsterClass": 0, + "phraseID": "unnmir" + }, + { + "id": "rigmor", + "iconID": "monsters_men:1", + "name": "Rigmor", + "spawnGroup": "rigmor", + "monsterClass": 0, + "phraseID": "rigmor" + }, + { + "id": "jakrar", + "iconID": "monsters_men2:2", + "name": "Jakrar", + "spawnGroup": "fallhaven_lumberjack", + "monsterClass": 0, + "phraseID": "fallhaven_lumberjack" + }, + { + "id": "alaun", + "iconID": "monsters_mage2:0", + "name": "Alaun", + "spawnGroup": "alaun", + "monsterClass": 0, + "phraseID": "alaun" + }, + { + "id": "busy_farmer", + "iconID": "monsters_man1:0", + "name": "Busy Farmer", + "spawnGroup": "fallhaven_farmer1", + "monsterClass": 0, + "phraseID": "fallhaven_farmer1" + }, + { + "id": "old_farmer", + "iconID": "monsters_mage2:0", + "name": "Old Farmer", + "spawnGroup": "fallhaven_farmer2", + "monsterClass": 0, + "phraseID": "fallhaven_farmer2" + }, + { + "id": "khorand", + "iconID": "monsters_men:3", + "name": "Khorand", + "spawnGroup": "khorand", + "monsterClass": 0, + "phraseID": "khorand" + }, + { + "id": "vacor", + "iconID": "monsters_mage:0", + "name": "Vacor", + "spawnGroup": "vacor", + "monsterClass": 0, + "unique": 1, + "maxHP": 72, + "attackCost": 5, + "attackChance": 110, + "blockChance": 40, + "damageResistance": 2, + "droplistID": "vacor", + "phraseID": "vacor", + "attackDamage": { + "min": 4, + "max": 8 + } + }, + { + "id": "unzel", + "iconID": "monsters_men:8", + "name": "Unzel", + "spawnGroup": "unzel", + "monsterClass": 0, + "unique": 1, + "maxHP": 59, + "attackCost": 10, + "attackChance": 80, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 40, + "damageResistance": 2, + "droplistID": "unzel", + "phraseID": "unzel", + "attackDamage": { + "min": 5, + "max": 9 + } + }, + { + "id": "shady_bandit", + "iconID": "monsters_men2:9", + "name": "Shady Bandit", + "spawnGroup": "fallhaven_bandit", + "monsterClass": 0, + "unique": 1, + "maxHP": 45, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 50, + "damageResistance": 2, + "droplistID": "fallhaven_bandit", + "phraseID": "fallhaven_bandit", + "attackDamage": { + "min": 3, + "max": 9 + } + } +] diff --git a/AndorsTrail/res/raw/monsterlist_v0610_monsters1.json b/AndorsTrail/res/raw/monsterlist_v0610_monsters1.json new file mode 100644 index 000000000..4f9c3e886 --- /dev/null +++ b/AndorsTrail/res/raw/monsterlist_v0610_monsters1.json @@ -0,0 +1,494 @@ +[ + { + "id": "young_larval_burrower", + "iconID": "monsters_rltiles2:164", + "name": "Young larval burrower", + "spawnGroup": "larva_1", + "monsterClass": 1, + "maxHP": 30, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 35, + "criticalMultiplier": 3, + "blockChance": 25, + "droplistID": "larva_1", + "attackDamage": { + "min": 1, + "max": 6 + } + }, + { + "id": "larval_burrower", + "iconID": "monsters_rltiles2:164", + "name": "Larval burrower", + "spawnGroup": "larva_2", + "monsterClass": 1, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 35, + "criticalMultiplier": 3, + "blockChance": 25, + "droplistID": "larva_2", + "attackDamage": { + "min": 1, + "max": 6 + } + }, + { + "id": "larval_boss", + "iconID": "monsters_rltiles2:164", + "name": "Strong larval burrower", + "spawnGroup": "larva_boss", + "monsterClass": 1, + "unique": 1, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 35, + "criticalMultiplier": 3, + "blockChance": 25, + "droplistID": "larva_boss", + "attackDamage": { + "min": 1, + "max": 6 + } + }, + { + "id": "rivertroll", + "iconID": "monsters_rltiles1:104", + "name": "River troll", + "spawnGroup": "rivertroll", + "monsterClass": 5, + "unique": 1, + "maxHP": 210, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 30, + "criticalMultiplier": 4, + "blockChance": 65, + "damageResistance": 7, + "droplistID": "rivertroll", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "grass_ant", + "iconID": "monsters_insects:0", + "name": "Grasslands ant", + "spawnGroup": "fieldcritter_0", + "monsterClass": 1, + "maxHP": 29, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 80, + "droplistID": "fieldcritter_0", + "attackDamage": { + "min": 0, + "max": 4 + } + }, + { + "id": "grass_ant2", + "iconID": "monsters_insects:2", + "name": "Tough grasslands ant", + "spawnGroup": "fieldcritter_0", + "monsterClass": 1, + "maxHP": 29, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "droplistID": "fieldcritter_0", + "attackDamage": { + "min": 1, + "max": 5 + } + }, + { + "id": "grass_beetle", + "iconID": "monsters_insects:4", + "name": "Grasslands beetle", + "spawnGroup": "fieldcritter_1", + "monsterClass": 1, + "maxHP": 34, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 120, + "blockChance": 80, + "damageResistance": 3, + "droplistID": "fieldcritter_1", + "attackDamage": { + "min": 0, + "max": 5 + } + }, + { + "id": "grass_beetle2", + "iconID": "monsters_insects:4", + "name": "Tough grasslands beetle", + "spawnGroup": "fieldcritter_1", + "monsterClass": 1, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 125, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "fieldcritter_1", + "attackDamage": { + "min": 1, + "max": 6 + } + }, + { + "id": "grass_snake", + "iconID": "monsters_rltiles2:25", + "name": "Grasslands snake", + "spawnGroup": "fieldcritter_2", + "monsterClass": 7, + "maxHP": 36, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 80, + "droplistID": "fieldcritter_2", + "attackDamage": { + "min": 0, + "max": 6 + } + }, + { + "id": "grass_snake2", + "iconID": "monsters_rltiles2:25", + "name": "Tough grasslands snake", + "spawnGroup": "fieldcritter_2", + "monsterClass": 7, + "maxHP": 38, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "droplistID": "fieldcritter_2", + "attackDamage": { + "min": 1, + "max": 7 + } + }, + { + "id": "grass_lizard", + "iconID": "monsters_rltiles2:114", + "name": "Grasslands lizard", + "spawnGroup": "fieldcritter_3", + "monsterClass": 7, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 80, + "damageResistance": 3, + "droplistID": "fieldcritter_3", + "attackDamage": { + "min": 0, + "max": 8 + } + }, + { + "id": "grass_lizard2", + "iconID": "monsters_rltiles2:117", + "name": "Black grasslands lizard", + "spawnGroup": "fieldcritter_3", + "monsterClass": 7, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "fieldcritter_3", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "keknazar", + "iconID": "monsters_misc:9", + "name": "Keknazar", + "spawnGroup": "keknazar", + "monsterClass": 7, + "unique": 1, + "maxHP": 90, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 50, + "criticalSkill": 20, + "criticalMultiplier": 3, + "blockChance": 70, + "damageResistance": 8, + "droplistID": "keknazar", + "phraseID": "keknazar", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "crossroads_rat", + "iconID": "monsters_rats:0", + "name": "Rat", + "spawnGroup": "crossroads_rat", + "monsterClass": 4, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 50, + "blockChance": 30, + "droplistID": "rat", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "fieldwasp_0", + "iconID": "monsters_insects:1", + "name": "Frantic forest wasp", + "spawnGroup": "fieldwasp_0", + "monsterClass": 1, + "maxHP": 29, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 95, + "droplistID": "fieldwasp", + "attackDamage": { + "min": 2, + "max": 6 + } + }, + { + "id": "fieldwasp_1", + "iconID": "monsters_insects:1", + "name": "Frantic forest wasp", + "spawnGroup": "fieldwasp_1", + "monsterClass": 1, + "maxHP": 32, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 70, + "criticalMultiplier": 3, + "blockChance": 125, + "droplistID": "fieldwasp", + "attackDamage": { + "min": 2, + "max": 6 + } + }, + { + "id": "fieldwasp_2", + "iconID": "monsters_insects:1", + "name": "Frantic forest wasp", + "spawnGroup": "fieldwasp_2", + "monsterClass": 1, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 75, + "criticalMultiplier": 3, + "blockChance": 130, + "droplistID": "fieldwasp", + "attackDamage": { + "min": 2, + "max": 6 + } + }, + { + "id": "izthiel_1", + "iconID": "monsters_rltiles2:51", + "name": "Young Izthiel", + "spawnGroup": "izthiel_1", + "monsterClass": 7, + "maxHP": 40, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "blockChance": 57, + "damageResistance": 5, + "droplistID": "izthiel", + "attackDamage": { + "min": 2, + "max": 7 + } + }, + { + "id": "izthiel_2", + "iconID": "monsters_rltiles2:49", + "name": "Izthiel", + "spawnGroup": "izthiel_2", + "monsterClass": 7, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "blockChance": 58, + "damageResistance": 6, + "droplistID": "izthiel", + "attackDamage": { + "min": 2, + "max": 7 + } + }, + { + "id": "izthiel_3", + "iconID": "monsters_rltiles2:48", + "name": "Strong Izthiel", + "spawnGroup": "izthiel_3", + "monsterClass": 7, + "maxHP": 52, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "blockChance": 60, + "damageResistance": 8, + "droplistID": "izthiel", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "bleeding_wound", + "magnitude": 2, + "duration": 4, + "chance": 40 + } + ] + } + }, + { + "id": "izthiel_4", + "iconID": "monsters_rltiles2:52", + "name": "Izthiel Guardian", + "spawnGroup": "izthiel_4", + "monsterClass": 7, + "maxHP": 54, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 60, + "damageResistance": 11, + "droplistID": "izthiel_4", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "bleeding_wound", + "magnitude": 3, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "frog_1", + "iconID": "monsters_rltiles1:131", + "name": "River frog", + "spawnGroup": "frog_1", + "monsterClass": 7, + "maxHP": 15, + "maxAP": 10, + "moveCost": 5, + "attackCost": 2, + "attackChance": 150, + "blockChance": 45, + "droplistID": "frog", + "attackDamage": { + "min": 0, + "max": 5 + } + }, + { + "id": "frog_2", + "iconID": "monsters_rltiles1:131", + "name": "Tough river frog", + "spawnGroup": "frog_2", + "monsterClass": 7, + "maxHP": 17, + "maxAP": 10, + "moveCost": 5, + "attackCost": 2, + "attackChance": 160, + "blockChance": 49, + "droplistID": "frog", + "attackDamage": { + "min": 0, + "max": 5 + } + }, + { + "id": "frog_3", + "iconID": "monsters_rltiles1:130", + "name": "Poisonous river frog", + "spawnGroup": "frog_3", + "monsterClass": 7, + "maxHP": 21, + "maxAP": 10, + "moveCost": 5, + "attackCost": 2, + "attackChance": 165, + "blockChance": 55, + "droplistID": "frog_3", + "attackDamage": { + "min": 0, + "max": 5 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_weak", + "magnitude": 2, + "duration": 5, + "chance": 30 + } + ] + } + } +] diff --git a/AndorsTrail/res/raw/monsterlist_v0610_monsters2.json b/AndorsTrail/res/raw/monsterlist_v0610_monsters2.json new file mode 100644 index 000000000..fe36441b0 --- /dev/null +++ b/AndorsTrail/res/raw/monsterlist_v0610_monsters2.json @@ -0,0 +1,450 @@ +[ + { + "id": "iqhan_1a", + "iconID": "monsters_rltiles2:96", + "name": "Iqhan worker thrall", + "spawnGroup": "iqhan_1", + "monsterClass": 0, + "maxHP": 55, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 110, + "blockChance": 70, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "iqhan_1b", + "iconID": "monsters_rltiles2:96", + "name": "Iqhan thrall servant", + "spawnGroup": "iqhan_1", + "monsterClass": 0, + "maxHP": 57, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "criticalSkill": 15, + "criticalMultiplier": 2, + "blockChance": 70, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "iqhan_2a", + "iconID": "monsters_rltiles2:97", + "name": "Iqhan guard thrall", + "spawnGroup": "iqhan_2", + "monsterClass": 0, + "maxHP": 59, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 130, + "criticalSkill": 15, + "criticalMultiplier": 2, + "blockChance": 70, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "iqhan_2b", + "iconID": "monsters_rltiles2:97", + "name": "Iqhan thrall", + "spawnGroup": "iqhan_2", + "monsterClass": 0, + "maxHP": 62, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 130, + "criticalSkill": 15, + "criticalMultiplier": 2, + "blockChance": 70, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 10 + } + }, + { + "id": "iqhan_3a", + "iconID": "monsters_rltiles2:128", + "name": "Iqhan warrior thrall", + "spawnGroup": "iqhan_3", + "monsterClass": 0, + "maxHP": 65, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 140, + "criticalSkill": 15, + "criticalMultiplier": 2, + "blockChance": 70, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 11 + } + }, + { + "id": "iqhan_3b", + "iconID": "monsters_rltiles2:129", + "name": "Iqhan master", + "spawnGroup": "iqhan_3", + "monsterClass": 0, + "maxHP": 67, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 140, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 12 + } + }, + { + "id": "iqhan_4a", + "iconID": "monsters_rltiles2:129", + "name": "Iqhan master", + "spawnGroup": "iqhan_4", + "monsterClass": 0, + "maxHP": 69, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 140, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "iqhan_lesser", + "attackDamage": { + "min": 2, + "max": 13 + } + }, + { + "id": "iqhan_4b", + "iconID": "monsters_rltiles2:133", + "name": "Iqhan master", + "spawnGroup": "iqhan_4", + "monsterClass": 0, + "maxHP": 71, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 140, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "iqhan", + "attackDamage": { + "min": 2, + "max": 15 + } + }, + { + "id": "iqhan_ch_1a", + "iconID": "monsters_rltiles2:135", + "name": "Iqhan chaos evoker", + "spawnGroup": "iqhan_ch_1", + "monsterClass": 0, + "maxHP": 73, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 140, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "iqhan", + "attackDamage": { + "min": 2, + "max": 15 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 2, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "iqhan_ch_1b", + "iconID": "monsters_rltiles2:135", + "name": "Iqhan chaos evoker", + "spawnGroup": "iqhan_ch_1", + "monsterClass": 0, + "maxHP": 75, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "iqhan", + "attackDamage": { + "min": 2, + "max": 14 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 2, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "iqhan_ch_2a", + "iconID": "monsters_rltiles2:134", + "name": "Iqhan chaos servant", + "spawnGroup": "iqhan_ch_2", + "monsterClass": 0, + "maxHP": 78, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "iqhan", + "attackDamage": { + "min": 2, + "max": 14 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 4, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "iqhan_ch_2b", + "iconID": "monsters_rltiles2:134", + "name": "Iqhan chaos servant", + "spawnGroup": "iqhan_ch_2", + "monsterClass": 0, + "maxHP": 79, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "criticalSkill": 25, + "criticalMultiplier": 2, + "blockChance": 75, + "droplistID": "iqhan", + "attackDamage": { + "min": 2, + "max": 13 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 4, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "iqhan_ch_3a", + "iconID": "monsters_rltiles2:136", + "name": "Iqhan chaos master", + "spawnGroup": "iqhan_ch_3", + "monsterClass": 0, + "maxHP": 83, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 170, + "criticalSkill": 25, + "criticalMultiplier": 2, + "blockChance": 75, + "droplistID": "iqhan_master", + "attackDamage": { + "min": 2, + "max": 13 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 4, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "iqhan_ch_3b", + "iconID": "monsters_rltiles2:137", + "name": "Iqhan chaos master", + "spawnGroup": "iqhan_ch_3", + "monsterClass": 0, + "maxHP": 85, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 170, + "criticalSkill": 25, + "criticalMultiplier": 2, + "blockChance": 75, + "droplistID": "iqhan_master", + "attackDamage": { + "min": 2, + "max": 13 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 4, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "iqhan_chb_1a", + "iconID": "monsters_rltiles1:19", + "name": "Iqhan chaos beast", + "spawnGroup": "iqhan_chb_1", + "monsterClass": 3, + "maxHP": 122, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 150, + "criticalSkill": 10, + "criticalMultiplier": 3, + "blockChance": 45, + "damageResistance": 9, + "droplistID": "iqhan_beast", + "attackDamage": { + "min": 0, + "max": 15 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 5, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "iqhan_chb_1b", + "iconID": "monsters_rltiles1:19", + "name": "Iqhan chaos beast", + "spawnGroup": "iqhan_chb_1", + "monsterClass": 3, + "maxHP": 140, + "maxAP": 10, + "moveCost": 10, + "attackCost": 10, + "attackChance": 150, + "criticalSkill": 10, + "criticalMultiplier": 3, + "blockChance": 45, + "damageResistance": 9, + "droplistID": "iqhan_beast", + "attackDamage": { + "min": 0, + "max": 15 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 5, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "iqhan_greeter", + "iconID": "monsters_men:8", + "name": "Rancent", + "spawnGroup": "iqhan_greeter", + "monsterClass": 0, + "unique": 1, + "phraseID": "iqhan_greeter" + }, + { + "id": "iqhan_boss", + "iconID": "monsters_rltiles1:5", + "name": "Iqhan chaos enslaver", + "spawnGroup": "iqhan_boss", + "monsterClass": 6, + "unique": 1, + "maxHP": 120, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 170, + "criticalSkill": 30, + "criticalMultiplier": 2, + "blockChance": 75, + "damageResistance": 2, + "droplistID": "iqhan_boss", + "phraseID": "iqhan_boss", + "attackDamage": { + "min": 2, + "max": 13 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "chaotic_grip", + "magnitude": 7, + "duration": 5, + "chance": 50 + }, + { + "condition": "chaotic_curse", + "magnitude": 3, + "duration": 5, + "chance": 50 + } + ] + } + } +] diff --git a/AndorsTrail/res/raw/monsterlist_v0610_npcs1.json b/AndorsTrail/res/raw/monsterlist_v0610_npcs1.json new file mode 100644 index 000000000..c737c041e --- /dev/null +++ b/AndorsTrail/res/raw/monsterlist_v0610_npcs1.json @@ -0,0 +1,582 @@ +[ + { + "id": "lostsheep1", + "iconID": "monsters_karvis2:8", + "name": "Sheep", + "spawnGroup": "tinlyn_lostsheep1", + "monsterClass": 4, + "unique": 1, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 10, + "blockChance": 5, + "droplistID": "tinlyn_sheep", + "phraseID": "tinlyn_lostsheep1", + "attackDamage": { + "min": 0, + "max": 1 + } + }, + { + "id": "lostsheep2", + "iconID": "monsters_karvis2:8", + "name": "Sheep", + "spawnGroup": "tinlyn_lostsheep2", + "monsterClass": 4, + "unique": 1, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 10, + "blockChance": 5, + "droplistID": "tinlyn_sheep", + "phraseID": "tinlyn_lostsheep2", + "attackDamage": { + "min": 0, + "max": 1 + } + }, + { + "id": "lostsheep3", + "iconID": "monsters_karvis2:8", + "name": "Sheep", + "spawnGroup": "tinlyn_lostsheep3", + "monsterClass": 4, + "unique": 1, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 10, + "blockChance": 5, + "droplistID": "tinlyn_sheep", + "phraseID": "tinlyn_lostsheep3", + "attackDamage": { + "min": 0, + "max": 1 + } + }, + { + "id": "lostsheep4", + "iconID": "monsters_karvis2:8", + "name": "Sheep", + "spawnGroup": "tinlyn_lostsheep4", + "monsterClass": 4, + "unique": 1, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 10, + "blockChance": 5, + "droplistID": "tinlyn_sheep", + "phraseID": "tinlyn_lostsheep4", + "attackDamage": { + "min": 0, + "max": 1 + } + }, + { + "id": "sheep1", + "iconID": "monsters_karvis2:8", + "name": "Sheep", + "spawnGroup": "tinlyn_sheep", + "monsterClass": 4, + "unique": 1, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 10, + "blockChance": 5, + "droplistID": "tinlyn_sheep", + "phraseID": "tinlyn_sheep", + "attackDamage": { + "min": 0, + "max": 1 + } + }, + { + "id": "ailshara", + "iconID": "monsters_men:8", + "name": "Ailshara", + "spawnGroup": "ailshara", + "monsterClass": 0, + "droplistID": "shop_ailshara", + "phraseID": "ailshara" + }, + { + "id": "arngyr", + "iconID": "monsters_rltiles1:65", + "name": "Arngyr", + "spawnGroup": "arngyr", + "monsterClass": 0, + "phraseID": "arngyr" + }, + { + "id": "benbyr", + "iconID": "monsters_rltiles1:74", + "name": "Benbyr", + "spawnGroup": "benbyr", + "monsterClass": 0, + "phraseID": "benbyr" + }, + { + "id": "celdar", + "iconID": "monsters_rltiles1:94", + "name": "Celdar", + "spawnGroup": "celdar", + "monsterClass": 0, + "phraseID": "celdar" + }, + { + "id": "conren", + "iconID": "monsters_karvis2:5", + "name": "Conren", + "spawnGroup": "conren", + "monsterClass": 0, + "phraseID": "conren" + }, + { + "id": "crossroads_backguard", + "iconID": "monsters_rltiles1:76", + "name": "Guard", + "spawnGroup": "crossroads_backguard", + "monsterClass": 0, + "unique": 1, + "phraseID": "crossroads_backguard" + }, + { + "id": "crossroads_guard", + "iconID": "monsters_rltiles1:76", + "name": "Guard", + "spawnGroup": "crossroads_guard", + "monsterClass": 0, + "phraseID": "crossroads_guard" + }, + { + "id": "crossroads_sleepguard", + "iconID": "monsters_rltiles1:76", + "name": "Guard", + "spawnGroup": "crossroads_sleepguard", + "monsterClass": 0, + "phraseID": "crossroads_sleepguard" + }, + { + "id": "crossroads_guest", + "iconID": "monsters_rltiles1:83", + "name": "Visitor", + "spawnGroup": "crossroads_guest", + "monsterClass": 0, + "phraseID": "crossroads_guest" + }, + { + "id": "erinith", + "iconID": "monsters_rltiles1:82", + "name": "Erinith", + "spawnGroup": "erinith", + "monsterClass": 0, + "phraseID": "erinith" + }, + { + "id": "fanamor", + "iconID": "monsters_men:7", + "name": "Fanamor", + "spawnGroup": "fanamor", + "monsterClass": 0, + "phraseID": "fanamor" + }, + { + "id": "feygard_bridgeguard", + "iconID": "monsters_men2:4", + "name": "Feygard bridge guard", + "spawnGroup": "feygard_bridgeguard", + "monsterClass": 0, + "phraseID": "feygard_bridgeguard" + }, + { + "id": "fieldwasp_unique", + "iconID": "monsters_insects:1", + "name": "Frantic forest wasp", + "spawnGroup": "fieldwasp_unique", + "monsterClass": 1, + "unique": 1, + "maxHP": 70, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 200, + "criticalMultiplier": 3, + "blockChance": 150, + "droplistID": "fieldwasp_unique", + "attackDamage": { + "min": 2, + "max": 6 + } + }, + { + "id": "gallain", + "iconID": "monsters_man1:0", + "name": "Gallain", + "spawnGroup": "gallain", + "monsterClass": 0, + "droplistID": "shop_gallain", + "phraseID": "gallain" + }, + { + "id": "gandoren", + "iconID": "monsters_rltiles1:69", + "name": "Gandoren", + "spawnGroup": "gandoren", + "monsterClass": 0, + "phraseID": "gandoren" + }, + { + "id": "grimion", + "iconID": "monsters_men2:2", + "name": "Grimion", + "spawnGroup": "grimion", + "monsterClass": 0, + "droplistID": "shop_grimion", + "phraseID": "grimion" + }, + { + "id": "hadracor", + "iconID": "monsters_men2:2", + "name": "Hadracor", + "spawnGroup": "hadracor", + "monsterClass": 0, + "droplistID": "shop_hadracor", + "phraseID": "hadracor" + }, + { + "id": "kuldan", + "iconID": "monsters_rltiles1:85", + "name": "Kuldan", + "spawnGroup": "kuldan", + "monsterClass": 0, + "phraseID": "kuldan" + }, + { + "id": "kuldan_guard", + "iconID": "monsters_rltiles3:14", + "name": "Kuldan's Guard", + "spawnGroup": "kuldan_guard", + "monsterClass": 0, + "phraseID": "kuldan_guard" + }, + { + "id": "landa", + "iconID": "monsters_men:0", + "name": "Landa", + "spawnGroup": "landa", + "monsterClass": 0, + "phraseID": "landa" + }, + { + "id": "loneford_chapelguard", + "iconID": "monsters_rltiles1:78", + "name": "Chapel guard", + "spawnGroup": "loneford_chapelguard", + "monsterClass": 0, + "phraseID": "loneford_chapelguard" + }, + { + "id": "loneford_farmer0", + "iconID": "monsters_karvis2:1", + "name": "Farmer", + "spawnGroup": "loneford_farmer0", + "monsterClass": 0, + "phraseID": "loneford_farmer0" + }, + { + "id": "loneford_guard0", + "iconID": "monsters_rltiles3:14", + "name": "Guard", + "spawnGroup": "loneford_guard0", + "monsterClass": 0, + "phraseID": "loneford_guard0" + }, + { + "id": "loneford_tavern_patron", + "iconID": "monsters_karvis2:2", + "name": "Tavern owner", + "spawnGroup": "loneford_tavern_patron", + "monsterClass": 0, + "phraseID": "loneford_tavern_patron" + }, + { + "id": "loneford_villager0", + "iconID": "monsters_karvis2:0", + "name": "Villager", + "spawnGroup": "loneford_villager0", + "monsterClass": 0, + "phraseID": "loneford_villager0" + }, + { + "id": "loneford_villager1", + "iconID": "monsters_karvis2:1", + "name": "Villager", + "spawnGroup": "loneford_villager1", + "monsterClass": 0, + "phraseID": "loneford_villager1" + }, + { + "id": "loneford_villager2", + "iconID": "monsters_karvis2:3", + "name": "Villager", + "spawnGroup": "loneford_villager2", + "monsterClass": 0, + "phraseID": "loneford_villager2" + }, + { + "id": "loneford_villager3", + "iconID": "monsters_karvis2:5", + "name": "Villager", + "spawnGroup": "loneford_villager3", + "monsterClass": 0, + "phraseID": "loneford_villager3" + }, + { + "id": "loneford_villager4", + "iconID": "monsters_men:2", + "name": "Villager", + "spawnGroup": "loneford_villager4", + "monsterClass": 0, + "phraseID": "loneford_villager4" + }, + { + "id": "loneford_wellguard", + "iconID": "monsters_rltiles1:72", + "name": "Guard", + "spawnGroup": "loneford_wellguard", + "monsterClass": 0, + "phraseID": "loneford_wellguard" + }, + { + "id": "mienn", + "iconID": "monsters_rltiles1:87", + "name": "Mienn", + "spawnGroup": "mienn", + "monsterClass": 0, + "phraseID": "mienn" + }, + { + "id": "minarra", + "iconID": "monsters_rltiles1:86", + "name": "Minarra", + "spawnGroup": "minarra", + "monsterClass": 0, + "droplistID": "shop_minarra", + "phraseID": "minarra" + }, + { + "id": "puny_warehouserat", + "iconID": "monsters_rats:1", + "name": "Warehouse rat", + "spawnGroup": "puny_warehouserat", + "monsterClass": 4, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 50, + "blockChance": 30, + "droplistID": "rat", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "rolwynn", + "iconID": "monsters_rltiles1:77", + "name": "Rolwynn", + "spawnGroup": "rolwynn", + "monsterClass": 0, + "phraseID": "rolwynn" + }, + { + "id": "sienn", + "iconID": "monsters_rltiles1:66", + "name": "Sienn", + "spawnGroup": "sienn", + "monsterClass": 0, + "phraseID": "sienn" + }, + { + "id": "sienn_pet", + "iconID": "monsters_misc:0", + "name": "Sienn's pet", + "spawnGroup": "sienn_pet", + "monsterClass": 7, + "phraseID": "sienn_pet" + }, + { + "id": "siola", + "iconID": "monsters_rltiles1:90", + "name": "Siola", + "spawnGroup": "siola", + "monsterClass": 0, + "droplistID": "shop_siola", + "phraseID": "siola" + }, + { + "id": "taevinn", + "iconID": "monsters_karvis2:5", + "name": "Taevinn", + "spawnGroup": "taevinn", + "monsterClass": 0, + "phraseID": "taevinn" + }, + { + "id": "talion", + "iconID": "monsters_men2:8", + "name": "Talion", + "spawnGroup": "talion", + "monsterClass": 0, + "droplistID": "shop_talion", + "phraseID": "talion" + }, + { + "id": "telund", + "iconID": "monsters_rltiles1:74", + "name": "Telund", + "spawnGroup": "telund", + "monsterClass": 0, + "phraseID": "telund" + }, + { + "id": "tinlyn", + "iconID": "monsters_karvis2:7", + "name": "Tinlyn", + "spawnGroup": "tinlyn", + "monsterClass": 0, + "phraseID": "tinlyn" + }, + { + "id": "wallach", + "iconID": "monsters_rltiles1:75", + "name": "Wallach", + "spawnGroup": "wallach", + "monsterClass": 0, + "phraseID": "wallach" + }, + { + "id": "woodcutter_0", + "iconID": "monsters_men:0", + "name": "Woodcutter", + "spawnGroup": "woodcutter_0", + "monsterClass": 0, + "phraseID": "woodcutter_0" + }, + { + "id": "woodcutter_2", + "iconID": "monsters_men:0", + "name": "Woodcutter", + "spawnGroup": "woodcutter_2", + "monsterClass": 0, + "phraseID": "woodcutter_2" + }, + { + "id": "woodcutter_3", + "iconID": "monsters_men2:2", + "name": "Woodcutter", + "spawnGroup": "woodcutter_3", + "monsterClass": 0, + "phraseID": "woodcutter_3" + }, + { + "id": "woodcutter_4", + "iconID": "monsters_rltiles1:93", + "name": "Woodcutter", + "spawnGroup": "woodcutter_4", + "monsterClass": 0, + "phraseID": "woodcutter_4" + }, + { + "id": "woodcutter_5", + "iconID": "monsters_men2:2", + "name": "Woodcutter", + "spawnGroup": "woodcutter_5", + "monsterClass": 0, + "phraseID": "woodcutter_5" + }, + { + "id": "rogorn", + "iconID": "monsters_rltiles1:63", + "name": "Rogorn", + "spawnGroup": "rogorn", + "monsterClass": 0, + "unique": 1, + "maxHP": 145, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "blockChance": 120, + "damageResistance": 5, + "droplistID": "rogorn", + "phraseID": "rogorn", + "attackDamage": { + "min": 5, + "max": 9 + } + }, + { + "id": "rogorn_henchman", + "iconID": "monsters_rogue1:0", + "name": "Rogorn's henchman", + "spawnGroup": "rogorn_henchman", + "monsterClass": 0, + "unique": 1, + "maxHP": 130, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "blockChance": 120, + "damageResistance": 4, + "droplistID": "rogorn_henchman", + "phraseID": "rogorn_henchman", + "attackDamage": { + "min": 5, + "max": 8 + } + }, + { + "id": "buceth", + "iconID": "monsters_men2:7", + "name": "Buceth", + "spawnGroup": "buceth", + "monsterClass": 0, + "unique": 1, + "maxHP": 75, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 200, + "criticalMultiplier": 2, + "blockChance": 120, + "damageResistance": 4, + "droplistID": "buceth", + "phraseID": "buceth", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "gauward", + "iconID": "monsters_mage2:0", + "name": "Gauward", + "spawnGroup": "gauward", + "monsterClass": 0, + "phraseID": "gauward" + } +] diff --git a/AndorsTrail/res/raw/monsterlist_v0611_monsters1.json b/AndorsTrail/res/raw/monsterlist_v0611_monsters1.json new file mode 100644 index 000000000..c6c4905cf --- /dev/null +++ b/AndorsTrail/res/raw/monsterlist_v0611_monsters1.json @@ -0,0 +1,1862 @@ +[ + { + "id": "cbeetle_1", + "iconID": "monsters_rltiles2:63", + "name": "Young carrion beetle", + "spawnGroup": "scaradon_1", + "monsterClass": 1, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "blockChance": 30, + "damageResistance": 9, + "droplistID": "scaradon", + "attackDamage": { + "min": 0, + "max": 5 + } + }, + { + "id": "cbeetle_2", + "iconID": "monsters_rltiles2:63", + "name": "Carrion beetle", + "spawnGroup": "scaradon_1", + "monsterClass": 1, + "maxHP": 51, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 75, + "blockChance": 30, + "damageResistance": 9, + "droplistID": "scaradon", + "attackDamage": { + "min": 0, + "max": 5 + } + }, + { + "id": "scaradon_1", + "iconID": "monsters_rltiles1:98", + "name": "Young Scaradon", + "spawnGroup": "scaradon_1", + "monsterClass": 1, + "maxHP": 32, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 50, + "blockChance": 30, + "damageResistance": 15, + "droplistID": "scaradon", + "attackDamage": { + "min": 0, + "max": 4 + } + }, + { + "id": "scaradon_2", + "iconID": "monsters_rltiles1:98", + "name": "Small Scaradon", + "spawnGroup": "scaradon_2", + "monsterClass": 1, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 50, + "blockChance": 30, + "damageResistance": 15, + "droplistID": "scaradon", + "attackDamage": { + "min": 1, + "max": 4 + } + }, + { + "id": "scaradon_3", + "iconID": "monsters_rltiles1:97", + "name": "Scaradon", + "spawnGroup": "scaradon_2", + "monsterClass": 1, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 50, + "blockChance": 30, + "damageResistance": 17, + "droplistID": "scaradon", + "attackDamage": { + "min": 0, + "max": 4 + } + }, + { + "id": "scaradon_4", + "iconID": "monsters_rltiles1:97", + "name": "Tough Scaradon", + "spawnGroup": "scaradon_2", + "monsterClass": 1, + "maxHP": 37, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 50, + "blockChance": 30, + "damageResistance": 17, + "droplistID": "scaradon", + "attackDamage": { + "min": 1, + "max": 4 + } + }, + { + "id": "scaradon_5", + "iconID": "monsters_rltiles1:97", + "name": "Hardshell Scaradon", + "spawnGroup": "scaradon_3", + "monsterClass": 1, + "maxHP": 38, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 50, + "blockChance": 30, + "damageResistance": 18, + "droplistID": "scaradon_b", + "attackDamage": { + "min": 1, + "max": 5 + } + }, + { + "id": "mwolf_1", + "iconID": "monsters_dogs:3", + "name": "Mountain wolf pup", + "spawnGroup": "mwolf_1", + "monsterClass": 4, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 80, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 40, + "damageResistance": 3, + "droplistID": "mwolf", + "attackDamage": { + "min": 2, + "max": 7 + } + }, + { + "id": "mwolf_2", + "iconID": "monsters_dogs:3", + "name": "Young mountain wolf", + "spawnGroup": "mwolf_1", + "monsterClass": 4, + "maxHP": 52, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 80, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 44, + "damageResistance": 3, + "droplistID": "mwolf", + "attackDamage": { + "min": 3, + "max": 7 + } + }, + { + "id": "mwolf_3", + "iconID": "monsters_dogs:2", + "name": "Young mountain fox", + "spawnGroup": "mwolf_1", + "monsterClass": 4, + "maxHP": 56, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 80, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 48, + "damageResistance": 4, + "droplistID": "mwolf", + "attackDamage": { + "min": 3, + "max": 7 + } + }, + { + "id": "mwolf_4", + "iconID": "monsters_dogs:2", + "name": "Mountain fox", + "spawnGroup": "mwolf_2", + "monsterClass": 4, + "maxHP": 60, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 85, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 52, + "damageResistance": 4, + "droplistID": "mwolf", + "attackDamage": { + "min": 3, + "max": 8 + } + }, + { + "id": "mwolf_5", + "iconID": "monsters_dogs:2", + "name": "Ferocious mountain fox", + "spawnGroup": "mwolf_2", + "monsterClass": 4, + "maxHP": 64, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 85, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 54, + "damageResistance": 5, + "droplistID": "mwolf", + "attackDamage": { + "min": 3, + "max": 8 + } + }, + { + "id": "mwolf_6", + "iconID": "monsters_dogs:4", + "name": "Rabid mountain wolf", + "spawnGroup": "mwolf_2", + "monsterClass": 4, + "maxHP": 67, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 56, + "damageResistance": 5, + "droplistID": "mwolf", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "mwolf_7", + "iconID": "monsters_dogs:4", + "name": "Strong mountain wolf", + "spawnGroup": "mwolf_3", + "monsterClass": 4, + "maxHP": 73, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 57, + "damageResistance": 6, + "droplistID": "mwolf", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "mwolf_8", + "iconID": "monsters_dogs:4", + "name": "Ferocious mountain wolf", + "spawnGroup": "mwolf_3", + "monsterClass": 4, + "maxHP": 78, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 59, + "damageResistance": 6, + "droplistID": "mwolf_b", + "attackDamage": { + "min": 3, + "max": 10 + } + }, + { + "id": "mbrute_1", + "iconID": "monsters_rltiles2:35", + "name": "Young mountain brute", + "spawnGroup": "mbrute_1", + "monsterClass": 5, + "maxHP": 148, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 0, + "max": 14 + } + }, + { + "id": "mbrute_2", + "iconID": "monsters_rltiles2:35", + "name": "Weak mountain brute", + "spawnGroup": "mbrute_1", + "monsterClass": 5, + "maxHP": 157, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 0, + "max": 14 + } + }, + { + "id": "mbrute_3", + "iconID": "monsters_rltiles2:36", + "name": "Whitefur mountain brute", + "spawnGroup": "mbrute_1", + "monsterClass": 5, + "maxHP": 166, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 0, + "max": 14 + } + }, + { + "id": "mbrute_4", + "iconID": "monsters_rltiles2:35", + "name": "Mountain brute", + "spawnGroup": "mbrute_2", + "monsterClass": 5, + "maxHP": 175, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 0, + "max": 14 + } + }, + { + "id": "mbrute_5", + "iconID": "monsters_rltiles2:36", + "name": "Large mountain brute", + "spawnGroup": "mbrute_2", + "monsterClass": 5, + "maxHP": 184, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 0, + "max": 14 + } + }, + { + "id": "mbrute_6", + "iconID": "monsters_rltiles2:34", + "name": "Fast mountain brute", + "spawnGroup": "mbrute_2", + "monsterClass": 5, + "maxHP": 82, + "maxAP": 12, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 0, + "max": 14 + } + }, + { + "id": "mbrute_7", + "iconID": "monsters_rltiles2:34", + "name": "Quick mountain brute", + "spawnGroup": "mbrute_3", + "monsterClass": 5, + "maxHP": 93, + "maxAP": 12, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 0, + "max": 15 + } + }, + { + "id": "mbrute_8", + "iconID": "monsters_rltiles2:34", + "name": "Aggressive mountain brute", + "spawnGroup": "mbrute_3", + "monsterClass": 5, + "maxHP": 104, + "maxAP": 12, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 1, + "max": 15 + } + }, + { + "id": "mbrute_9", + "iconID": "monsters_rltiles2:33", + "name": "Strong mountain brute", + "spawnGroup": "mbrute_3", + "monsterClass": 5, + "maxHP": 115, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 20, + "criticalMultiplier": "2.5", + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 1, + "max": 15 + } + }, + { + "id": "mbrute_10", + "iconID": "monsters_rltiles2:33", + "name": "Tough mountain brute", + "spawnGroup": "mbrute_4", + "monsterClass": 5, + "maxHP": 126, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute", + "attackDamage": { + "min": 2, + "max": 15 + } + }, + { + "id": "mbrute_11", + "iconID": "monsters_rltiles2:33", + "name": "Fearless mountain brute", + "spawnGroup": "mbrute_4", + "monsterClass": 5, + "maxHP": 137, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute_b", + "attackDamage": { + "min": 2, + "max": 15 + } + }, + { + "id": "mbrute_12", + "iconID": "monsters_rltiles2:33", + "name": "Enraged mountain brute", + "spawnGroup": "mbrute_4", + "monsterClass": 5, + "maxHP": 148, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 3, + "blockChance": 60, + "damageResistance": 4, + "droplistID": "mbrute_b", + "attackDamage": { + "min": 2, + "max": 16 + } + }, + { + "id": "erumen_1", + "iconID": "monsters_rltiles2:114", + "name": "Young Erumem Lizard", + "spawnGroup": "erumen_1", + "monsterClass": 7, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "erumen", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "erumen_2", + "iconID": "monsters_rltiles2:114", + "name": "Spotted Erumem Lizard", + "spawnGroup": "erumen_1", + "monsterClass": 7, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "erumen", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "erumen_3", + "iconID": "monsters_rltiles2:114", + "name": "Erumem Lizard", + "spawnGroup": "erumen_2", + "monsterClass": 7, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "erumen", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "erumen_4", + "iconID": "monsters_rltiles2:115", + "name": "Strong Erumen Lizard", + "spawnGroup": "erumen_2", + "monsterClass": 7, + "maxHP": 79, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "erumen", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "erumen_5", + "iconID": "monsters_rltiles2:115", + "name": "Vile Erumen Lizard", + "spawnGroup": "erumen_3", + "monsterClass": 7, + "maxHP": 89, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "erumen", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "erumen_6", + "iconID": "monsters_rltiles2:117", + "name": "Tough Erumen Lizard", + "spawnGroup": "erumen_3", + "monsterClass": 7, + "maxHP": 91, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 90, + "damageResistance": 8, + "droplistID": "erumen", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "erumen_7", + "iconID": "monsters_rltiles2:117", + "name": "Hardened Erumen Lizard", + "spawnGroup": "erumen_4", + "monsterClass": 7, + "maxHP": 93, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 90, + "damageResistance": 12, + "droplistID": "erumen_b", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "plaguesp_1", + "iconID": "monsters_rltiles2:61", + "name": "Puny Plaguecrawler", + "spawnGroup": "plaguespider_1", + "monsterClass": 1, + "maxHP": 55, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 140, + "droplistID": "plaguespider", + "attackDamage": { + "min": 1, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 1, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 1, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_2", + "iconID": "monsters_rltiles2:61", + "name": "Plaguecrawler", + "spawnGroup": "plaguespider_1", + "monsterClass": 1, + "maxHP": 57, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 140, + "droplistID": "plaguespider", + "attackDamage": { + "min": 1, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 3, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 2, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_3", + "iconID": "monsters_rltiles2:61", + "name": "Tough Plaguecrawler", + "spawnGroup": "plaguespider_1", + "monsterClass": 1, + "maxHP": 59, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 140, + "droplistID": "plaguespider", + "attackDamage": { + "min": 1, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 3, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 2, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_4", + "iconID": "monsters_rltiles2:61", + "name": "Black Plaguecrawler", + "spawnGroup": "plaguespider_2", + "monsterClass": 1, + "maxHP": 61, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 150, + "droplistID": "plaguespider", + "attackDamage": { + "min": 1, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 4, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 3, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_5", + "iconID": "monsters_rltiles2:151", + "name": "Plaguestrider", + "spawnGroup": "plaguespider_2", + "monsterClass": 1, + "maxHP": 62, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 150, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 4, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 3, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_6", + "iconID": "monsters_rltiles2:151", + "name": "Hardshell Plaguestrider", + "spawnGroup": "plaguespider_2", + "monsterClass": 1, + "maxHP": 63, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 150, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 5, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 4, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_7", + "iconID": "monsters_rltiles2:151", + "name": "Tough Plaguestrider", + "spawnGroup": "plaguespider_3", + "monsterClass": 1, + "maxHP": 64, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 70, + "criticalMultiplier": 3, + "blockChance": 155, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 5, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 4, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_8", + "iconID": "monsters_rltiles2:153", + "name": "Wooly Plaguestrider", + "spawnGroup": "plaguespider_3", + "monsterClass": 1, + "maxHP": 65, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 70, + "criticalMultiplier": 3, + "blockChance": 155, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 6, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 5, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "plaguesp_9", + "iconID": "monsters_rltiles2:153", + "name": "Tough wooly Plaguestrider", + "spawnGroup": "plaguespider_3", + "monsterClass": 1, + "maxHP": 66, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 70, + "criticalMultiplier": 3, + "blockChance": 160, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 6, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 5, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "plaguesp_10", + "iconID": "monsters_rltiles2:151", + "name": "Vile Plaguestrider", + "spawnGroup": "plaguespider_4", + "monsterClass": 1, + "maxHP": 67, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 85, + "criticalSkill": 70, + "criticalMultiplier": 3, + "blockChance": 160, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 6, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 5, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "plaguesp_11", + "iconID": "monsters_rltiles2:153", + "name": "Nesting Plaguestrider", + "spawnGroup": "plaguespider_4", + "monsterClass": 1, + "maxHP": 68, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 85, + "criticalSkill": 70, + "criticalMultiplier": 3, + "blockChance": 165, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 6, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 5, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "plaguesp_12", + "iconID": "monsters_rltiles2:38", + "name": "Plaguestrider servant", + "spawnGroup": "plaguespider_5", + "monsterClass": 6, + "maxHP": 65, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 85, + "criticalSkill": 120, + "criticalMultiplier": 3, + "blockChance": 165, + "droplistID": "plaguespider", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 7, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 6, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "plaguesp_13", + "iconID": "monsters_rltiles2:38", + "name": "Plaguestrider master", + "spawnGroup": "plaguespider_6", + "monsterClass": 6, + "maxHP": 65, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 85, + "criticalSkill": 120, + "criticalMultiplier": 3, + "blockChance": 175, + "damageResistance": 2, + "droplistID": "plaguespider_b", + "attackDamage": { + "min": 2, + "max": 8 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 7, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 6, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "allaceph_1", + "iconID": "monsters_rltiles2:101", + "name": "Young Allaceph", + "spawnGroup": "allaceph_1", + "monsterClass": 2, + "maxHP": 90, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 105, + "damageResistance": 1, + "droplistID": "allaceph", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 4, + "max": 4 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 2, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "allaceph_2", + "iconID": "monsters_rltiles2:101", + "name": "Allaceph", + "spawnGroup": "allaceph_1", + "monsterClass": 2, + "maxHP": 94, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 105, + "damageResistance": 1, + "droplistID": "allaceph", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 4, + "max": 4 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 2, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "allaceph_3", + "iconID": "monsters_rltiles2:102", + "name": "Strong Allaceph", + "spawnGroup": "allaceph_2", + "monsterClass": 2, + "maxHP": 101, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 105, + "damageResistance": 2, + "droplistID": "allaceph", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 4, + "max": 4 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 2, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "allaceph_4", + "iconID": "monsters_rltiles2:102", + "name": "Tough Allaceph", + "spawnGroup": "allaceph_2", + "monsterClass": 2, + "maxHP": 111, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 110, + "damageResistance": 2, + "droplistID": "allaceph", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 4, + "max": 4 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 3, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "allaceph_5", + "iconID": "monsters_rltiles2:103", + "name": "Radiant Allaceph", + "spawnGroup": "allaceph_3", + "monsterClass": 2, + "maxHP": 124, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 110, + "damageResistance": 3, + "droplistID": "allaceph_b", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 6, + "max": 6 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 3, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "allaceph_6", + "iconID": "monsters_rltiles2:103", + "name": "Ancient Allaceph", + "spawnGroup": "allaceph_3", + "monsterClass": 2, + "maxHP": 133, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 115, + "damageResistance": 3, + "droplistID": "allaceph_b", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 7, + "max": 7 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 3, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "vaeregh_1", + "iconID": "monsters_rltiles1:42", + "name": "Vaeregh", + "spawnGroup": "allaceph_4", + "monsterClass": 2, + "maxHP": 149, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 120, + "damageResistance": 4, + "droplistID": "allaceph", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 10, + "max": 10 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 4, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "irdegh_sp_1", + "iconID": "monsters_rltiles2:26", + "name": "Irdegh spawn", + "spawnGroup": "irdegh_spawn", + "monsterClass": 7, + "maxHP": 57, + "maxAP": 12, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 80, + "droplistID": "irdegh_spawn", + "attackDamage": { + "min": 0, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_irdegh", + "magnitude": 2, + "duration": 3, + "chance": 10 + } + ] + } + }, + { + "id": "irdegh_sp_2", + "iconID": "monsters_rltiles2:26", + "name": "Irdegh spawn", + "spawnGroup": "irdegh_spawn", + "monsterClass": 7, + "maxHP": 68, + "maxAP": 12, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 80, + "droplistID": "irdegh_spawn", + "attackDamage": { + "min": 0, + "max": 6 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_irdegh", + "magnitude": 2, + "duration": 3, + "chance": 10 + } + ] + } + }, + { + "id": "irdegh_1", + "iconID": "monsters_rltiles2:15", + "name": "Irdegh", + "spawnGroup": "irdegh_1", + "monsterClass": 7, + "maxHP": 115, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 60, + "damageResistance": 10, + "droplistID": "irdegh", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_irdegh", + "magnitude": 3, + "duration": 4, + "chance": 50 + } + ] + } + }, + { + "id": "irdegh_2", + "iconID": "monsters_rltiles2:15", + "name": "Venomous Irdegh", + "spawnGroup": "irdegh_2", + "monsterClass": 7, + "maxHP": 120, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 60, + "damageResistance": 11, + "droplistID": "irdegh", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_irdegh", + "magnitude": 3, + "duration": 4, + "chance": 50 + } + ] + } + }, + { + "id": "irdegh_3", + "iconID": "monsters_rltiles2:14", + "name": "Piercing Irdegh", + "spawnGroup": "irdegh_3", + "monsterClass": 7, + "maxHP": 125, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 60, + "damageResistance": 11, + "droplistID": "irdegh", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_irdegh", + "magnitude": 3, + "duration": 4, + "chance": 50 + } + ] + } + }, + { + "id": "irdegh_4", + "iconID": "monsters_rltiles2:14", + "name": "Ancient piercing Irdegh", + "spawnGroup": "irdegh_4", + "monsterClass": 7, + "maxHP": 130, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "criticalSkill": 30, + "criticalMultiplier": 2, + "blockChance": 60, + "damageResistance": 14, + "droplistID": "irdegh_b", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_irdegh", + "magnitude": 3, + "duration": 4, + "chance": 70 + } + ] + } + }, + { + "id": "maonit_1", + "iconID": "monsters_rltiles1:104", + "name": "Maonit troll", + "spawnGroup": "maonit_1", + "monsterClass": 5, + "maxHP": 255, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 10, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 4, + "droplistID": "maonit", + "attackDamage": { + "min": 1, + "max": 20 + } + }, + { + "id": "maonit_2", + "iconID": "monsters_rltiles1:104", + "name": "Giant Maonit troll", + "spawnGroup": "maonit_1", + "monsterClass": 5, + "maxHP": 270, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 10, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 4, + "droplistID": "maonit", + "attackDamage": { + "min": 1, + "max": 20 + } + }, + { + "id": "maonit_3", + "iconID": "monsters_rltiles1:104", + "name": "Strong Maonit troll", + "spawnGroup": "maonit_2", + "monsterClass": 5, + "maxHP": 285, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 20, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 5, + "droplistID": "maonit", + "attackDamage": { + "min": 1, + "max": 20 + } + }, + { + "id": "maonit_4", + "iconID": "monsters_rltiles1:107", + "name": "Maonit brute", + "spawnGroup": "maonit_2", + "monsterClass": 5, + "maxHP": 290, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 20, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 5, + "droplistID": "maonit", + "attackDamage": { + "min": 1, + "max": 20 + } + }, + { + "id": "maonit_5", + "iconID": "monsters_rltiles1:107", + "name": "Tough Maonit brute", + "spawnGroup": "maonit_3", + "monsterClass": 5, + "maxHP": 310, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 6, + "droplistID": "maonit", + "attackDamage": { + "min": 1, + "max": 20 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "stunned", + "magnitude": 1, + "duration": 3, + "chance": 10 + } + ] + } + }, + { + "id": "maonit_6", + "iconID": "monsters_rltiles1:107", + "name": "Strong Maonit brute", + "spawnGroup": "maonit_3", + "monsterClass": 5, + "maxHP": 320, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 6, + "droplistID": "maonit", + "attackDamage": { + "min": 1, + "max": 20 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "stunned", + "magnitude": 1, + "duration": 3, + "chance": 10 + } + ] + } + }, + { + "id": "arulir_1", + "iconID": "monsters_rltiles1:13", + "name": "Arulir", + "spawnGroup": "arulir_1", + "monsterClass": 5, + "maxHP": 325, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 8, + "droplistID": "arulir", + "attackDamage": { + "min": 1, + "max": 20 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "stunned", + "magnitude": 1, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "arulir_2", + "iconID": "monsters_rltiles1:13", + "name": "Giant Arulir", + "spawnGroup": "arulir_1", + "monsterClass": 5, + "maxHP": 330, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 8, + "droplistID": "arulir", + "attackDamage": { + "min": 1, + "max": 20 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "stunned", + "magnitude": 1, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "burrower_1", + "iconID": "monsters_rltiles2:164", + "name": "Larval cave burrower", + "spawnGroup": "burrower_1", + "monsterClass": 1, + "maxHP": 30, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 95, + "blockChance": 80, + "damageResistance": 2, + "droplistID": "burrower", + "attackDamage": { + "min": 1, + "max": 25 + } + }, + { + "id": "burrower_2", + "iconID": "monsters_rltiles2:164", + "name": "Cave burrower", + "spawnGroup": "burrower_1", + "monsterClass": 1, + "maxHP": 37, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 95, + "blockChance": 80, + "damageResistance": 2, + "droplistID": "burrower", + "attackDamage": { + "min": 1, + "max": 25 + } + }, + { + "id": "burrower_3", + "iconID": "monsters_rltiles2:165", + "name": "Strong larval burrower", + "spawnGroup": "burrower_2", + "monsterClass": 1, + "maxHP": 44, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 95, + "blockChance": 80, + "damageResistance": 2, + "droplistID": "burrower", + "attackDamage": { + "min": 1, + "max": 25 + } + }, + { + "id": "burrower_4", + "iconID": "monsters_rltiles2:165", + "name": "Giant larval burrower", + "spawnGroup": "burrower_3", + "monsterClass": 1, + "maxHP": 75, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 95, + "blockChance": 80, + "damageResistance": 2, + "droplistID": "burrower", + "attackDamage": { + "min": 1, + "max": 25 + } + } +] diff --git a/AndorsTrail/res/raw/monsterlist_v0611_npcs1.json b/AndorsTrail/res/raw/monsterlist_v0611_npcs1.json new file mode 100644 index 000000000..205d13cc1 --- /dev/null +++ b/AndorsTrail/res/raw/monsterlist_v0611_npcs1.json @@ -0,0 +1,176 @@ +[ + { + "id": "ulirfendor", + "iconID": "monsters_rltiles1:84", + "name": "Ulirfendor", + "spawnGroup": "ulirfendor", + "monsterClass": 0, + "unique": 1, + "maxHP": 288, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 30, + "criticalMultiplier": 2, + "blockChance": 60, + "damageResistance": 6, + "droplistID": "ulirfendor", + "phraseID": "ulirfendor", + "attackDamage": { + "min": 1, + "max": 16 + } + }, + { + "id": "gylew", + "iconID": "monsters_mage2:0", + "name": "Gylew", + "spawnGroup": "gylew", + "monsterClass": 0, + "phraseID": "gylew" + }, + { + "id": "gylew_henchman", + "iconID": "monsters_men:8", + "name": "Gylew's henchman", + "spawnGroup": "gylew_henchman", + "monsterClass": 0, + "phraseID": "gylew_henchman" + }, + { + "id": "toszylae", + "iconID": "monsters_liches:1", + "name": "Toszylae", + "spawnGroup": "toszylae", + "monsterClass": 6, + "unique": 1, + "maxHP": 207, + "maxAP": 8, + "moveCost": 5, + "attackCost": 2, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 120, + "damageResistance": 4, + "droplistID": "toszylae", + "phraseID": "toszylae", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 6, + "max": 6 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 3, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "toszylae_guard", + "iconID": "monsters_rltiles1:20", + "name": "Radiant guardian", + "spawnGroup": "toszylae_guard", + "monsterClass": 2, + "unique": 1, + "maxHP": 320, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 120, + "damageResistance": 4, + "droplistID": "toszylae_guard", + "phraseID": "toszylae_guard", + "attackDamage": { + "min": 2, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 5, + "max": 5 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 2, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "thorin", + "iconID": "monsters_rltiles1:66", + "name": "Thorin", + "spawnGroup": "thorin", + "monsterClass": 0, + "droplistID": "shop_thorin", + "phraseID": "thorin" + }, + { + "id": "lonelyhouse_sp", + "iconID": "monsters_rats:1", + "name": "Basement rat", + "spawnGroup": "lonelyhouse_sp", + "monsterClass": 4, + "unique": 1, + "maxHP": 79, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 125, + "blockChance": 180, + "damageResistance": 4, + "droplistID": "lonelyhouse_sp", + "attackDamage": { + "min": 2, + "max": 9 + } + }, + { + "id": "algangror", + "iconID": "monsters_rltiles1:68", + "name": "Algangror", + "spawnGroup": "algangror", + "monsterClass": 0, + "unique": 1, + "maxHP": 241, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 200, + "criticalMultiplier": 2, + "blockChance": 120, + "damageResistance": 4, + "droplistID": "algangror", + "phraseID": "algangror", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "remgard_bridge", + "iconID": "monsters_men2:4", + "name": "Bridge lookout", + "spawnGroup": "remgard_bridge", + "monsterClass": 0, + "unique": 1, + "phraseID": "remgard_bridge" + } +] diff --git a/AndorsTrail/res/raw/monsterlist_v0611_npcs2.json b/AndorsTrail/res/raw/monsterlist_v0611_npcs2.json new file mode 100644 index 000000000..debd848ab --- /dev/null +++ b/AndorsTrail/res/raw/monsterlist_v0611_npcs2.json @@ -0,0 +1,580 @@ +[ + { + "id": "ingus", + "iconID": "monsters_rltiles1:94", + "name": "Ingus", + "spawnGroup": "ingus", + "monsterClass": 0, + "phraseID": "ingus" + }, + { + "id": "elwyl", + "iconID": "monsters_rltiles3:17", + "name": "Elwyl", + "spawnGroup": "elwyl", + "monsterClass": 0, + "phraseID": "elwyl" + }, + { + "id": "elwel", + "iconID": "monsters_rltiles3:17", + "name": "Elwel", + "spawnGroup": "elwel", + "monsterClass": 0, + "phraseID": "elwel" + }, + { + "id": "hjaldar", + "iconID": "monsters_rltiles1:70", + "name": "Hjaldar", + "spawnGroup": "hjaldar", + "monsterClass": 0, + "droplistID": "shop_hjaldar", + "phraseID": "hjaldar" + }, + { + "id": "norath", + "iconID": "monsters_ld1:8", + "name": "Norath", + "spawnGroup": "norath", + "monsterClass": 0, + "phraseID": "norath" + }, + { + "id": "rothses", + "iconID": "monsters_ld1:14", + "name": "Rothses", + "spawnGroup": "rothses", + "monsterClass": 0, + "droplistID": "shop_rothses", + "phraseID": "rothses" + }, + { + "id": "duaina", + "iconID": "monsters_ld1:154", + "name": "Duaina", + "spawnGroup": "duaina", + "monsterClass": 0, + "phraseID": "duaina" + }, + { + "id": "rg_villager1", + "iconID": "monsters_ld1:132", + "name": "Commoner", + "spawnGroup": "remgard_villager1", + "monsterClass": 0, + "phraseID": "remgard_villager1" + }, + { + "id": "rg_villager2", + "iconID": "monsters_ld1:20", + "name": "Commoner", + "spawnGroup": "remgard_villager2", + "monsterClass": 0, + "phraseID": "remgard_villager2" + }, + { + "id": "rg_villager3", + "iconID": "monsters_ld1:134", + "name": "Commoner", + "spawnGroup": "remgard_villager3", + "monsterClass": 0, + "phraseID": "remgard_villager3" + }, + { + "id": "jhaeld", + "iconID": "monsters_mage:0", + "name": "Jhaeld", + "spawnGroup": "jhaeld", + "monsterClass": 0, + "phraseID": "jhaeld" + }, + { + "id": "krell", + "iconID": "monsters_men2:6", + "name": "Krell", + "spawnGroup": "krell", + "monsterClass": 0, + "phraseID": "krell" + }, + { + "id": "elythom_kn1", + "iconID": "monsters_men:3", + "name": "Knight of Elythom", + "spawnGroup": "elythom_knight1", + "monsterClass": 0, + "phraseID": "elythom_knight1" + }, + { + "id": "elythom_kn2", + "iconID": "monsters_men:3", + "name": "Knight of Elythom", + "spawnGroup": "elythom_knight2", + "monsterClass": 0, + "phraseID": "elythom_knight2" + }, + { + "id": "almars", + "iconID": "monsters_rogue1:0", + "name": "Almars", + "spawnGroup": "almars", + "monsterClass": 0, + "phraseID": "almars" + }, + { + "id": "arghes", + "iconID": "monsters_rogue1:0", + "name": "Arghes", + "spawnGroup": "arghes", + "monsterClass": 0, + "droplistID": "shop_arghes", + "phraseID": "arghes" + }, + { + "id": "arnal", + "iconID": "monsters_ld1:28", + "name": "Arnal", + "spawnGroup": "arnal", + "monsterClass": 0, + "droplistID": "shop_arnal", + "phraseID": "arnal" + }, + { + "id": "atash", + "iconID": "monsters_ld1:38", + "name": "Aatash", + "spawnGroup": "atash", + "monsterClass": 0, + "phraseID": "atash" + }, + { + "id": "caeda", + "iconID": "monsters_ld1:145", + "name": "Caeda", + "spawnGroup": "caeda", + "monsterClass": 0, + "phraseID": "caeda" + }, + { + "id": "carthe", + "iconID": "monsters_man1:0", + "name": "Carthe", + "spawnGroup": "carthe", + "monsterClass": 0, + "phraseID": "carthe" + }, + { + "id": "chael", + "iconID": "monsters_men:0", + "name": "Chael", + "spawnGroup": "chael", + "monsterClass": 0, + "phraseID": "chael" + }, + { + "id": "easturlie", + "iconID": "monsters_men:6", + "name": "Easturlie", + "spawnGroup": "easturlie", + "monsterClass": 0, + "phraseID": "easturlie" + }, + { + "id": "emerei", + "iconID": "monsters_ld1:27", + "name": "Emerei", + "spawnGroup": "emerei", + "monsterClass": 0, + "phraseID": "emerei" + }, + { + "id": "ervelyn", + "iconID": "monsters_ld1:228", + "name": "Ervelyn", + "spawnGroup": "ervelyn", + "monsterClass": 0, + "droplistID": "shop_ervelyn", + "phraseID": "ervelyn" + }, + { + "id": "freen", + "iconID": "monsters_rltiles1:77", + "name": "Freen", + "spawnGroup": "freen", + "monsterClass": 0, + "phraseID": "freen" + }, + { + "id": "janach", + "iconID": "monsters_rltiles3:8", + "name": "Janach", + "spawnGroup": "janach", + "monsterClass": 0, + "phraseID": "janach" + }, + { + "id": "kendelow", + "iconID": "monsters_man1:0", + "name": "Kendelow", + "spawnGroup": "kendelow", + "monsterClass": 0, + "droplistID": "shop_kendelow", + "phraseID": "kendelow" + }, + { + "id": "larni", + "iconID": "monsters_ld1:26", + "name": "Larni", + "spawnGroup": "larni", + "monsterClass": 0, + "phraseID": "larni" + }, + { + "id": "maelf", + "iconID": "monsters_ld1:53", + "name": "Maelf", + "spawnGroup": "maelf", + "monsterClass": 0, + "phraseID": "maelf" + }, + { + "id": "morgisia", + "iconID": "monsters_rltiles3:5", + "name": "Morgisia", + "spawnGroup": "morgisia", + "monsterClass": 0, + "phraseID": "morgisia" + }, + { + "id": "perester", + "iconID": "monsters_rltiles3:18", + "name": "Perester", + "spawnGroup": "perester", + "monsterClass": 0, + "phraseID": "perester" + }, + { + "id": "perlynn", + "iconID": "monsters_mage2:0", + "name": "Perlynn", + "spawnGroup": "perlynn", + "monsterClass": 0, + "phraseID": "perlynn" + }, + { + "id": "reinkarr", + "iconID": "monsters_rltiles1:66", + "name": "Reinkarr", + "spawnGroup": "reinkarr", + "monsterClass": 0, + "phraseID": "reinkarr" + }, + { + "id": "remgard_d1", + "iconID": "monsters_ld1:18", + "name": "Tavern guest", + "spawnGroup": "remgard_drunk", + "monsterClass": 0, + "phraseID": "remgard_drunk1" + }, + { + "id": "remgard_d2", + "iconID": "monsters_rltiles2:81", + "name": "Tavern guest", + "spawnGroup": "remgard_drunk", + "monsterClass": 0, + "phraseID": "remgard_drunk2" + }, + { + "id": "remgard_farmer1", + "iconID": "monsters_ld1:26", + "name": "Farmer", + "spawnGroup": "remgard_farmer1", + "monsterClass": 0, + "phraseID": "remgard_farmer1" + }, + { + "id": "remgard_farmer2", + "iconID": "monsters_ld1:220", + "name": "Farmer", + "spawnGroup": "remgard_farmer2", + "monsterClass": 0, + "phraseID": "remgard_farmer2" + }, + { + "id": "remgard_g1", + "iconID": "monsters_ld1:4", + "name": "Guard", + "spawnGroup": "remgard_guard", + "monsterClass": 0, + "phraseID": "fallhaven_guard" + }, + { + "id": "remgard_g2", + "iconID": "monsters_ld1:5", + "name": "Guard", + "spawnGroup": "remgard_guard", + "monsterClass": 0, + "phraseID": "blackwater_guard1" + }, + { + "id": "remgard_g3", + "iconID": "monsters_ld1:67", + "name": "Guard", + "spawnGroup": "remgard_guard2", + "monsterClass": 0, + "phraseID": "remgard_guard1" + }, + { + "id": "remgard_pg", + "iconID": "monsters_ld1:11", + "name": "Prison Guard", + "spawnGroup": "remgard_prison_guard", + "monsterClass": 0, + "phraseID": "remgard_prison_guard" + }, + { + "id": "rg_villager4", + "iconID": "monsters_ld1:164", + "name": "Commoner", + "spawnGroup": "remgard_villager4", + "monsterClass": 0, + "phraseID": "remgard_villager4" + }, + { + "id": "rg_villager5", + "iconID": "monsters_ld1:148", + "name": "Commoner", + "spawnGroup": "remgard_villager5", + "monsterClass": 0, + "phraseID": "remgard_villager5" + }, + { + "id": "rg_villager6", + "iconID": "monsters_ld1:188", + "name": "Commoner", + "spawnGroup": "remgard_villager6", + "monsterClass": 0, + "phraseID": "remgard_villager6" + }, + { + "id": "rg_villager7", + "iconID": "monsters_ld1:10", + "name": "Commoner", + "spawnGroup": "remgard_villager7", + "monsterClass": 0, + "phraseID": "remgard_villager7" + }, + { + "id": "rg_villager8", + "iconID": "monsters_rltiles3:18", + "name": "Commoner", + "spawnGroup": "remgard_villager8", + "monsterClass": 0, + "phraseID": "remgard_villager8" + }, + { + "id": "skylenar", + "iconID": "monsters_ld1:3", + "name": "Skylenar", + "spawnGroup": "skylenar", + "monsterClass": 0, + "droplistID": "shop_skylenar", + "phraseID": "skylenar" + }, + { + "id": "taylin", + "iconID": "monsters_rltiles1:74", + "name": "Taylin", + "spawnGroup": "taylin", + "monsterClass": 0, + "phraseID": "taylin" + }, + { + "id": "petdog", + "iconID": "monsters_dogs:0", + "name": "Dog", + "spawnGroup": "petdog", + "monsterClass": 4, + "phraseID": "petdog" + }, + { + "id": "kaverin", + "iconID": "monsters_ld1:100", + "name": "Kaverin", + "spawnGroup": "kaverin", + "monsterClass": 5, + "unique": 1, + "maxHP": 320, + "maxAP": 5, + "moveCost": 5, + "attackCost": 3, + "attackChance": 65, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 90, + "damageResistance": 6, + "droplistID": "kaverin", + "phraseID": "kaverin", + "attackDamage": { + "min": 1, + "max": 20 + } + }, + { + "id": "izthiel_cr", + "iconID": "monsters_rltiles2:52", + "name": "Izthiel Guardian", + "spawnGroup": "izthiel_cr", + "monsterClass": 7, + "unique": 1, + "maxHP": 354, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 60, + "damageResistance": 11, + "droplistID": "oegyth1", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "bleeding_wound", + "magnitude": 3, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "burrower_cr", + "iconID": "monsters_rltiles2:165", + "name": "Giant larval burrower", + "spawnGroup": "burrower_cr", + "monsterClass": 1, + "unique": 1, + "maxHP": 175, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 95, + "blockChance": 80, + "damageResistance": 2, + "droplistID": "oegyth1", + "attackDamage": { + "min": 1, + "max": 25 + } + }, + { + "id": "allaceph_cr", + "iconID": "monsters_rltiles2:103", + "name": "Ancient Allaceph", + "spawnGroup": "allaceph_cr", + "monsterClass": 2, + "unique": 1, + "maxHP": 333, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 115, + "damageResistance": 3, + "droplistID": "oegyth1", + "attackDamage": { + "min": 3, + "max": 7 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 7, + "max": 7 + }, + "conditionsTarget": [ + { + "condition": "feebleness_minor", + "magnitude": 3, + "duration": 3, + "chance": 20 + } + ] + } + }, + { + "id": "plaguesp_cr", + "iconID": "monsters_rltiles2:38", + "name": "Plaguestrider master", + "spawnGroup": "plaguespider_cr", + "monsterClass": 6, + "unique": 1, + "maxHP": 365, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 85, + "criticalSkill": 160, + "criticalMultiplier": 3, + "blockChance": 175, + "damageResistance": 2, + "droplistID": "oegyth1", + "attackDamage": { + "min": 2, + "max": 8 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "contagion", + "magnitude": 4, + "duration": 5, + "chance": 70 + }, + { + "condition": "blister", + "magnitude": 3, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "maonit_cr", + "iconID": "monsters_rltiles1:107", + "name": "Strong Maonit brute", + "spawnGroup": "maonit_cr", + "monsterClass": 5, + "unique": 1, + "maxHP": 620, + "maxAP": 5, + "moveCost": 5, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 30, + "criticalMultiplier": 3, + "blockChance": 20, + "damageResistance": 6, + "droplistID": "oegyth1", + "attackDamage": { + "min": 1, + "max": 20 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "stunned", + "magnitude": 1, + "duration": 3, + "chance": 10 + } + ] + } + } +] diff --git a/AndorsTrail/res/raw/monsterlist_v068_npcs.json b/AndorsTrail/res/raw/monsterlist_v068_npcs.json new file mode 100644 index 000000000..9f0360227 --- /dev/null +++ b/AndorsTrail/res/raw/monsterlist_v068_npcs.json @@ -0,0 +1,423 @@ +[ + { + "id": "smug_looking_thief", + "iconID": "monsters_men2:9", + "name": "Smug looking thief", + "spawnGroup": "tg_thief", + "monsterClass": 0, + "phraseID": "thievesguild_thief_1" + }, + { + "id": "thieves_guild_cook", + "iconID": "monsters_men:0", + "name": "Thieves guild cook", + "spawnGroup": "tg_cook", + "monsterClass": 0, + "droplistID": "shop_thieves_guild_cook", + "phraseID": "thievesguild_cook_1" + }, + { + "id": "pickpocket", + "iconID": "monsters_men:7", + "name": "Pickpocket", + "spawnGroup": "pickpocket", + "monsterClass": 0, + "phraseID": "thievesguild_pickpocket_1" + }, + { + "id": "troublemaker", + "iconID": "monsters_men:8", + "name": "Troublemaker", + "spawnGroup": "troublemaker", + "monsterClass": 0, + "droplistID": "shop_troublemaker", + "phraseID": "thievesguild_troublemaker_1" + }, + { + "id": "farrik", + "iconID": "monsters_rogue1:0", + "name": "Farrik", + "spawnGroup": "farrik", + "monsterClass": 0, + "phraseID": "farrik_select_1" + }, + { + "id": "umar", + "iconID": "monsters_man1:0", + "name": "Umar", + "spawnGroup": "umar", + "monsterClass": 0, + "phraseID": "umar_select_1" + }, + { + "id": "kaori", + "iconID": "monsters_men:7", + "name": "Kaori", + "spawnGroup": "kaori", + "monsterClass": 0, + "phraseID": "kaori_start" + }, + { + "id": "old_vilegard_villager", + "iconID": "monsters_men:0", + "name": "Old Vilegard villager", + "spawnGroup": "vilegard_villager_1", + "monsterClass": 0, + "phraseID": "vilegard_villager_1" + }, + { + "id": "grumpy_vilegard_villager", + "iconID": "monsters_men:5", + "name": "Grumpy Vilegard villager", + "spawnGroup": "vilegard_villager_2", + "monsterClass": 0, + "phraseID": "vilegard_villager_2" + }, + { + "id": "vilegard_citizen", + "iconID": "monsters_men:1", + "name": "Vilegard citizen", + "spawnGroup": "vilegard_villager_3", + "monsterClass": 0, + "phraseID": "vilegard_villager_3" + }, + { + "id": "vilegard_resident", + "iconID": "monsters_men2:0", + "name": "Vilegard resident", + "spawnGroup": "vilegard_villager_4", + "monsterClass": 0, + "phraseID": "vilegard_villager_4" + }, + { + "id": "vilegard_woman", + "iconID": "monsters_men:6", + "name": "Vilegard woman", + "spawnGroup": "vilegard_villager_5", + "monsterClass": 0, + "phraseID": "vilegard_villager_5" + }, + { + "id": "erttu", + "iconID": "monsters_mage2:0", + "name": "Erttu", + "spawnGroup": "erttu", + "monsterClass": 0, + "phraseID": "erttu_1" + }, + { + "id": "dunla", + "iconID": "monsters_rogue1:0", + "name": "Dunla", + "spawnGroup": "dunla", + "monsterClass": 0, + "droplistID": "shop_dunla", + "phraseID": "dunla_default" + }, + { + "id": "tharwyn", + "iconID": "monsters_men:7", + "name": "Tharwyn", + "spawnGroup": "tharwyn", + "monsterClass": 0, + "droplistID": "shop_tharwyn", + "phraseID": "tharwyn_select" + }, + { + "id": "tavern_guest", + "iconID": "monsters_men:0", + "name": "Tavern guest", + "spawnGroup": "vg_tavern_drunk", + "monsterClass": 0, + "phraseID": "vilegard_tavern_drunk_1" + }, + { + "id": "jolnor", + "iconID": "monsters_men2:8", + "name": "Jolnor", + "spawnGroup": "jolnor", + "monsterClass": 0, + "droplistID": "shop_jolnor", + "phraseID": "jolnor_select_1" + }, + { + "id": "alynndir", + "iconID": "monsters_mage2:0", + "name": "Alynndir", + "spawnGroup": "alynndir", + "monsterClass": 0, + "droplistID": "shop_alynndir", + "phraseID": "alynndir_1" + }, + { + "id": "vilegard_armorer", + "iconID": "monsters_mage2:0", + "name": "Vilegard armorer", + "spawnGroup": "vg_armorer", + "monsterClass": 0, + "droplistID": "shop_vg_armorer", + "phraseID": "vilegard_armorer_select" + }, + { + "id": "vilegard_smith", + "iconID": "monsters_mage2:0", + "name": "Vilegard smith", + "spawnGroup": "vg_smith", + "monsterClass": 0, + "droplistID": "shop_vg_smith", + "phraseID": "vilegard_smith_select" + }, + { + "id": "ogam", + "iconID": "monsters_men:0", + "name": "Ogam", + "spawnGroup": "ogam", + "monsterClass": 0, + "phraseID": "ogam_1" + }, + { + "id": "foaming_flask_cook", + "iconID": "monsters_men:0", + "name": "Foaming Flask cook", + "spawnGroup": "ff_cook", + "monsterClass": 0, + "phraseID": "ff_cook_1" + }, + { + "id": "torilo", + "iconID": "monsters_men2:9", + "name": "Torilo", + "spawnGroup": "torilo", + "monsterClass": 0, + "droplistID": "shop_torilo", + "phraseID": "torilo_1" + }, + { + "id": "ambelie", + "iconID": "monsters_men:6", + "name": "Ambelie", + "spawnGroup": "ambelie", + "monsterClass": 0, + "phraseID": "ambelie_1" + }, + { + "id": "feygard_patrol", + "iconID": "monsters_rltiles3:14", + "name": "Feygard patrol", + "spawnGroup": "ff_guard", + "monsterClass": 0, + "phraseID": "ff_guard_1" + }, + { + "id": "feygard_patrol_captain", + "iconID": "monsters_men:3", + "name": "Feygard patrol captain", + "spawnGroup": "ff_captain", + "monsterClass": 0, + "phraseID": "ff_captain_1" + }, + { + "id": "feygard_patrol_watch", + "iconID": "monsters_rltiles3:14", + "name": "Feygard patrol watch", + "spawnGroup": "ff_outsideguard", + "monsterClass": 0, + "unique": 1, + "maxHP": 80, + "attackCost": 5, + "attackChance": 70, + "blockChance": 80, + "damageResistance": 3, + "droplistID": "ff_outsideguard", + "phraseID": "ff_outsideguard_select", + "attackDamage": { + "min": 2, + "max": 7 + } + }, + { + "id": "wrye", + "iconID": "monsters_men:6", + "name": "Wrye", + "spawnGroup": "wrye", + "monsterClass": 0, + "phraseID": "wrye_select_1" + }, + { + "id": "oluag", + "iconID": "monsters_men:8", + "name": "Oluag", + "spawnGroup": "oluag", + "monsterClass": 0, + "phraseID": "oluag_1" + }, + { + "id": "cave_dwelling_boar", + "iconID": "monsters_dogs:6", + "name": "Cave dwelling boar", + "spawnGroup": "caveboar1", + "monsterClass": 4, + "maxHP": 35, + "attackCost": 5, + "attackChance": 70, + "blockChance": 60, + "damageResistance": 3, + "droplistID": "canine2", + "attackDamage": { + "min": 3, + "max": 8 + } + }, + { + "id": "hardshell_beetle", + "iconID": "monsters_insects:4", + "name": "Hardshell beetle", + "spawnGroup": "beetle2", + "monsterClass": 1, + "maxHP": 25, + "attackCost": 5, + "attackChance": 50, + "blockChance": 40, + "damageResistance": 9, + "droplistID": "beetle2", + "attackDamage": { + "min": 0, + "max": 5 + } + }, + { + "id": "young_shadow_gargoyle", + "iconID": "monsters_misc:1", + "name": "Young shadow gargoyle", + "spawnGroup": "shadowgarg1", + "monsterClass": 3, + "maxHP": 35, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 8, + "criticalMultiplier": 3, + "blockChance": 75, + "damageResistance": 3, + "droplistID": "shadowgarg1", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "fledgling_shadow_gargoyle", + "iconID": "monsters_misc:1", + "name": "Fledgling shadow gargoyle", + "spawnGroup": "shadowgarg1", + "monsterClass": 3, + "maxHP": 36, + "attackCost": 5, + "attackChance": 65, + "criticalSkill": 8, + "criticalMultiplier": 3, + "blockChance": 75, + "damageResistance": 3, + "droplistID": "shadowgarg1", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "shadow_gargoyle", + "iconID": "monsters_misc:2", + "name": "Shadow gargoyle", + "spawnGroup": "shadowgarg2", + "monsterClass": 3, + "maxHP": 37, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 8, + "criticalMultiplier": 3, + "blockChance": 85, + "damageResistance": 3, + "droplistID": "shadowgarg1", + "attackDamage": { + "min": 4, + "max": 10 + } + }, + { + "id": "tough_shadow_gargoyle", + "iconID": "monsters_misc:2", + "name": "Tough shadow gargoyle", + "spawnGroup": "shadowgarg2", + "monsterClass": 3, + "maxHP": 37, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 8, + "criticalMultiplier": 3, + "blockChance": 85, + "damageResistance": 4, + "droplistID": "shadowgarg2", + "attackDamage": { + "min": 4, + "max": 10 + } + }, + { + "id": "shadow_gargoyle_trainer", + "iconID": "monsters_liches:0", + "name": "Shadow gargoyle trainer", + "spawnGroup": "shadowgarg3", + "monsterClass": 6, + "maxHP": 35, + "attackCost": 5, + "attackChance": 90, + "criticalSkill": 12, + "criticalMultiplier": 3, + "blockChance": 90, + "damageResistance": 5, + "droplistID": "shadowgarg3", + "attackDamage": { + "min": 3, + "max": 6 + } + }, + { + "id": "shadow_gargoyle_master", + "iconID": "monsters_liches:1", + "name": "Shadow gargoyle master", + "spawnGroup": "shadowgarg4", + "monsterClass": 6, + "maxHP": 35, + "attackCost": 5, + "attackChance": 125, + "criticalSkill": 12, + "criticalMultiplier": 3, + "blockChance": 90, + "damageResistance": 5, + "droplistID": "shadowgarg3", + "attackDamage": { + "min": 3, + "max": 6 + } + }, + { + "id": "maelveon", + "iconID": "monsters_liches:2", + "name": "Maelveon", + "spawnGroup": "maelveon", + "monsterClass": 6, + "unique": 1, + "maxHP": 55, + "attackCost": 3, + "attackChance": 80, + "criticalSkill": 15, + "criticalMultiplier": 3, + "blockChance": 90, + "damageResistance": 5, + "droplistID": "maelveon", + "phraseID": "maelveon", + "attackDamage": { + "min": 0, + "max": 12 + } + } +] diff --git a/AndorsTrail/res/raw/monsterlist_v069_monsters.json b/AndorsTrail/res/raw/monsterlist_v069_monsters.json new file mode 100644 index 000000000..b30715bc6 --- /dev/null +++ b/AndorsTrail/res/raw/monsterlist_v069_monsters.json @@ -0,0 +1,646 @@ +[ + { + "id": "puny_caverat", + "iconID": "monsters_rats:0", + "name": "Cave rat", + "spawnGroup": "puny_caverat", + "monsterClass": 4, + "maxHP": 5, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 50, + "blockChance": 30, + "droplistID": "rat", + "attackDamage": { + "min": 1, + "max": 1 + } + }, + { + "id": "rabid_hound", + "iconID": "monsters_rltiles2:108", + "name": "Rabid hound", + "spawnGroup": "forestwolf2", + "monsterClass": 4, + "maxHP": 40, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 110, + "blockChance": 30, + "droplistID": "canine", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "vicious_hound", + "iconID": "monsters_rltiles2:110", + "name": "Vicious hound", + "spawnGroup": "forestboar4", + "monsterClass": 4, + "maxHP": 31, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 150, + "blockChance": 60, + "damageResistance": 3, + "droplistID": "canineboss", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "mountain_wolf", + "iconID": "monsters_rltiles2:109", + "name": "Mountain wolf", + "spawnGroup": "primwolf1", + "monsterClass": 4, + "maxHP": 49, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 150, + "blockChance": 60, + "damageResistance": 3, + "droplistID": "canine", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "hatchling_white_wyrm", + "iconID": "monsters_rltiles1:118", + "name": "Hatchling white wyrm", + "spawnGroup": "wyrm_1", + "monsterClass": 7, + "maxHP": 41, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 75, + "blockChance": 130, + "damageResistance": 5, + "droplistID": "wyrm_1", + "attackDamage": { + "min": 4, + "max": 10 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "fatigue_minor", + "magnitude": 1, + "duration": 5, + "chance": 10 + } + ] + } + }, + { + "id": "young_white_wyrm", + "iconID": "monsters_rltiles1:118", + "name": "Young white wyrm", + "spawnGroup": "wyrm_2", + "monsterClass": 7, + "maxHP": 47, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 75, + "blockChance": 130, + "damageResistance": 5, + "droplistID": "wyrm_2", + "attackDamage": { + "min": 4, + "max": 10 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "fatigue_minor", + "magnitude": 1, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "white_wyrm", + "iconID": "monsters_rltiles1:119", + "name": "White wyrm", + "spawnGroup": "wyrm_3", + "monsterClass": 7, + "maxHP": 55, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 75, + "blockChance": 130, + "damageResistance": 5, + "droplistID": "wyrm_3", + "attackDamage": { + "min": 4, + "max": 10 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "fatigue_minor", + "magnitude": 1, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "young_aulaeth", + "iconID": "monsters_rltiles2:176", + "name": "Young aulaeth", + "spawnGroup": "wyrm_1", + "monsterClass": 5, + "maxHP": 105, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 40, + "blockChance": 30, + "damageResistance": 5, + "droplistID": "aulaeth", + "attackDamage": { + "min": 0, + "max": 4 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "aulaeth", + "iconID": "monsters_rltiles2:58", + "name": "Aulaeth", + "spawnGroup": "wyrm_2", + "monsterClass": 5, + "maxHP": 120, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 40, + "blockChance": 40, + "damageResistance": 6, + "droplistID": "aulaeth", + "attackDamage": { + "min": 0, + "max": 5 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "strong_aulaeth", + "iconID": "monsters_rltiles2:58", + "name": "Strong aulaeth", + "spawnGroup": "wyrm_3", + "monsterClass": 5, + "maxHP": 135, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 40, + "blockChance": 35, + "damageResistance": 6, + "droplistID": "aulaeth", + "attackDamage": { + "min": 0, + "max": 5 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + } + } + }, + { + "id": "wyrm_trainer", + "iconID": "monsters_rltiles2:0", + "name": "Wyrm trainer", + "spawnGroup": "wyrm_4", + "monsterClass": 6, + "maxHP": 69, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "blockChance": 90, + "damageResistance": 4, + "droplistID": "wyrm_4", + "attackDamage": { + "min": 2, + "max": 9 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + }, + "conditionsTarget": [ + { + "condition": "fatigue_minor", + "magnitude": 1, + "duration": 10, + "chance": 70 + } + ] + } + }, + { + "id": "wyrm_apprentice", + "iconID": "monsters_rltiles2:0", + "name": "Wyrm apprentice", + "spawnGroup": "wyrm_4", + "monsterClass": 6, + "maxHP": 69, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 140, + "blockChance": 90, + "damageResistance": 4, + "droplistID": "wyrm_4", + "attackDamage": { + "min": 2, + "max": 9 + }, + "hitEffect": { + "increaseCurrentHP": { + "min": 1, + "max": 1 + }, + "conditionsTarget": [ + { + "condition": "fatigue_minor", + "magnitude": 1, + "duration": 10, + "chance": 70 + } + ] + } + }, + { + "id": "young_gornaud", + "iconID": "monsters_rltiles2:29", + "name": "Young gornaud", + "spawnGroup": "gornaud_1", + "monsterClass": 5, + "maxHP": 70, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "blockChance": 50, + "droplistID": "gornaud_1", + "attackDamage": { + "min": 0, + "max": 15 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "dazed", + "magnitude": 1, + "duration": 5, + "chance": 20 + } + ] + } + }, + { + "id": "gornaud", + "iconID": "monsters_rltiles2:29", + "name": "Gornaud", + "spawnGroup": "gornaud_2", + "monsterClass": 5, + "maxHP": 95, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "blockChance": 50, + "damageResistance": 4, + "droplistID": "gornaud_2", + "attackDamage": { + "min": 0, + "max": 15 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "dazed", + "magnitude": 1, + "duration": 5, + "chance": 50 + } + ] + } + }, + { + "id": "strong_gornaud", + "iconID": "monsters_rltiles2:30", + "name": "Strong Gornaud", + "spawnGroup": "gornaud_3", + "monsterClass": 5, + "maxHP": 95, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "blockChance": 50, + "damageResistance": 5, + "droplistID": "gornaud_3", + "attackDamage": { + "min": 0, + "max": 15 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "dazed", + "magnitude": 1, + "duration": 5, + "chance": 70 + } + ] + } + }, + { + "id": "slithering_venomfang", + "iconID": "monsters_snakes:2", + "name": "Slithering venomfang", + "spawnGroup": "gornaud_1", + "monsterClass": 7, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 120, + "blockChance": 90, + "damageResistance": 2, + "droplistID": "cave_serpent", + "attackDamage": { + "min": 1, + "max": 2 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_weak", + "magnitude": 1, + "duration": 2, + "chance": 20 + } + ] + } + }, + { + "id": "scaled_venomfang", + "iconID": "monsters_snakes:3", + "name": "Scaled venomfang", + "spawnGroup": "gornaud_2", + "monsterClass": 7, + "maxHP": 35, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "blockChance": 90, + "damageResistance": 2, + "droplistID": "cave_serpent", + "attackDamage": { + "min": 2, + "max": 4 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_weak", + "magnitude": 1, + "duration": 2, + "chance": 50 + } + ] + } + }, + { + "id": "tough_venomfang", + "iconID": "monsters_snakes:3", + "name": "Tough venomfang", + "spawnGroup": "gornaud_3", + "monsterClass": 7, + "maxHP": 41, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "blockChance": 90, + "damageResistance": 2, + "droplistID": "cave_serpent", + "attackDamage": { + "min": 2, + "max": 5 + }, + "hitEffect": { + "conditionsTarget": [ + { + "condition": "poison_weak", + "magnitude": 1, + "duration": 2, + "chance": 50 + } + ] + } + }, + { + "id": "restless_dead", + "iconID": "monsters_rltiles1:47", + "name": "Restless dead", + "spawnGroup": "restless_dead_1", + "monsterClass": 8, + "maxHP": 25, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 50, + "criticalSkill": 80, + "criticalMultiplier": 2, + "blockChance": 140, + "damageResistance": 3, + "droplistID": "restless_dead_1", + "attackDamage": { + "min": 0, + "max": 3 + } + }, + { + "id": "grave_spawn", + "iconID": "monsters_rltiles1:49", + "name": "Grave spawn", + "spawnGroup": "restless_dead_1", + "monsterClass": 2, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 110, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 35, + "damageResistance": 3, + "droplistID": "restless_dead_1", + "attackDamage": { + "min": 2, + "max": 5 + } + }, + { + "id": "restless_apparition", + "iconID": "monsters_rltiles1:47", + "name": "Restless apparition", + "spawnGroup": "restless_dead_2", + "monsterClass": 8, + "maxHP": 29, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 90, + "criticalSkill": 60, + "criticalMultiplier": 3, + "blockChance": 10, + "damageResistance": 1, + "droplistID": "restless_dead_2", + "attackDamage": { + "min": 2, + "max": 6 + } + }, + { + "id": "skeletal_reaper", + "iconID": "monsters_rltiles1:27", + "name": "Skeletal reaper", + "spawnGroup": "restless_dead_2", + "monsterClass": 3, + "maxHP": 15, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 150, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 110, + "droplistID": "restless_dead_2", + "attackDamage": { + "min": 0, + "max": 9 + } + }, + { + "id": "kazaul_spawn", + "iconID": "monsters_rltiles1:41", + "name": "Kazaul spawn", + "spawnGroup": "kazaul_1", + "monsterClass": 2, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 50, + "criticalMultiplier": 2, + "blockChance": 90, + "damageResistance": 1, + "droplistID": "kazaul_1", + "attackDamage": { + "min": 3, + "max": 5 + } + }, + { + "id": "kazaul_imp", + "iconID": "monsters_rltiles1:45", + "name": "Kazaul imp", + "spawnGroup": "kazaul_2", + "monsterClass": 2, + "maxHP": 45, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 70, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 105, + "damageResistance": 1, + "droplistID": "kazaul_2", + "attackDamage": { + "min": 3, + "max": 7 + } + }, + { + "id": "kazaul_guardian", + "iconID": "monsters_rltiles1:42", + "name": "Kazaul guardian", + "spawnGroup": "kazaul_guardian", + "monsterClass": 2, + "unique": 1, + "maxHP": 95, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 90, + "damageResistance": 3, + "droplistID": "kazaul_guardian", + "phraseID": "kazaul_guardian", + "attackDamage": { + "min": 3, + "max": 8 + } + }, + { + "id": "graverobber", + "iconID": "monsters_karvis2:3", + "name": "Graverobber", + "spawnGroup": "bjorgur_bandit", + "monsterClass": 0, + "unique": 1, + "maxHP": 62, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 120, + "blockChance": 72, + "damageResistance": 1, + "droplistID": "bjorgur_bandit", + "phraseID": "bjorgur_bandit", + "attackDamage": { + "min": 2, + "max": 6 + } + } +] diff --git a/AndorsTrail/res/raw/monsterlist_v069_npcs.json b/AndorsTrail/res/raw/monsterlist_v069_npcs.json new file mode 100644 index 000000000..9590f69c2 --- /dev/null +++ b/AndorsTrail/res/raw/monsterlist_v069_npcs.json @@ -0,0 +1,536 @@ +[ + { + "id": "agent1", + "iconID": "monsters_men:4", + "name": "Agent", + "spawnGroup": "bwm_agent_1", + "monsterClass": 0, + "unique": 1, + "phraseID": "bwm_agent_1_start" + }, + { + "id": "agent2", + "iconID": "monsters_men:4", + "name": "Agent", + "spawnGroup": "bwm_agent_2", + "monsterClass": 0, + "unique": 1, + "phraseID": "bwm_agent_2_start" + }, + { + "id": "agent3", + "iconID": "monsters_men:4", + "name": "Agent", + "spawnGroup": "bwm_agent_3", + "monsterClass": 0, + "unique": 1, + "phraseID": "bwm_agent_3_start" + }, + { + "id": "agent4", + "iconID": "monsters_men:4", + "name": "Agent", + "spawnGroup": "bwm_agent_4", + "monsterClass": 0, + "unique": 1, + "phraseID": "bwm_agent_4_start" + }, + { + "id": "agent5", + "iconID": "monsters_men:4", + "name": "Agent", + "spawnGroup": "bwm_agent_5", + "monsterClass": 0, + "unique": 1, + "phraseID": "bwm_agent_5_start" + }, + { + "id": "agent6", + "iconID": "monsters_men:4", + "name": "Agent", + "spawnGroup": "bwm_agent_6", + "monsterClass": 0, + "unique": 1, + "phraseID": "bwm_agent_6_start" + }, + { + "id": "arghest", + "iconID": "monsters_rltiles2:81", + "name": "Arghest", + "spawnGroup": "arghest", + "monsterClass": 0, + "phraseID": "arghest_start" + }, + { + "id": "tonis", + "iconID": "monsters_rltiles1:67", + "name": "Tonis", + "spawnGroup": "tonis", + "monsterClass": 0, + "phraseID": "tonis_start" + }, + { + "id": "moyra", + "iconID": "monsters_rltiles1:74", + "name": "Moyra", + "spawnGroup": "moyra", + "monsterClass": 0, + "phraseID": "moyra_1" + }, + { + "id": "prim_citizen", + "iconID": "monsters_karvis2:6", + "name": "Prim citizen", + "spawnGroup": "prim_commoner1", + "monsterClass": 0, + "phraseID": "prim_commoner1" + }, + { + "id": "prim_commoner", + "iconID": "monsters_rltiles1:68", + "name": "Prim commoner", + "spawnGroup": "prim_commoner2", + "monsterClass": 0, + "phraseID": "prim_commoner2" + }, + { + "id": "prim_resident", + "iconID": "monsters_karvis2:2", + "name": "Prim resident", + "spawnGroup": "prim_commoner3", + "monsterClass": 0, + "phraseID": "prim_commoner3" + }, + { + "id": "prim_evoker", + "iconID": "monsters_rltiles1:84", + "name": "Prim evoker", + "spawnGroup": "prim_commoner4", + "monsterClass": 0, + "phraseID": "prim_commoner4" + }, + { + "id": "laecca", + "iconID": "monsters_rltiles1:72", + "name": "Laecca", + "spawnGroup": "laecca", + "monsterClass": 0, + "phraseID": "laecca_1" + }, + { + "id": "prim_cook", + "iconID": "monsters_karvis2:0", + "name": "Prim cook", + "spawnGroup": "prim_cook", + "monsterClass": 0, + "phraseID": "prim_cook_start" + }, + { + "id": "prim_visitor", + "iconID": "monsters_rltiles1:63", + "name": "Prim visitor", + "spawnGroup": "prim_innguest", + "monsterClass": 0, + "phraseID": "prim_innguest" + }, + { + "id": "birgil", + "iconID": "monsters_rltiles2:81", + "name": "Birgil", + "spawnGroup": "birgil", + "monsterClass": 0, + "droplistID": "shop_birgil", + "phraseID": "birgil_1" + }, + { + "id": "prim_tavern_guest", + "iconID": "monsters_rltiles1:106", + "name": "Prim tavern guest", + "spawnGroup": "prim_tavern_guest1", + "monsterClass": 0, + "phraseID": "prim_tavern_guest1" + }, + { + "id": "prim_tavern_regular", + "iconID": "monsters_rltiles1:106", + "name": "Prim tavern regular", + "spawnGroup": "prim_tavern_guest2", + "monsterClass": 0, + "phraseID": "prim_tavern_guest2" + }, + { + "id": "prim_bar_guest", + "iconID": "monsters_rltiles1:106", + "name": "Prim bar guest", + "spawnGroup": "prim_tavern_guest3", + "monsterClass": 0, + "phraseID": "prim_tavern_guest3" + }, + { + "id": "prim_bar_regular", + "iconID": "monsters_rltiles1:106", + "name": "Prim bar regular", + "spawnGroup": "prim_tavern_guest4", + "monsterClass": 0, + "phraseID": "prim_tavern_guest4" + }, + { + "id": "prim_armorer", + "iconID": "monsters_rltiles1:88", + "name": "Prim armorer", + "spawnGroup": "prim_armorer", + "monsterClass": 0, + "droplistID": "shop_prim_armorer", + "phraseID": "prim_armorer" + }, + { + "id": "jueth", + "iconID": "monsters_men2:0", + "name": "Jueth", + "spawnGroup": "prim_tailor", + "monsterClass": 0, + "phraseID": "prim_tailor" + }, + { + "id": "bjorgur", + "iconID": "monsters_karvis2:7", + "name": "Bjorgur", + "spawnGroup": "bjorgur", + "monsterClass": 0, + "phraseID": "bjorgur_start" + }, + { + "id": "prim_prisoner", + "iconID": "monsters_rltiles2:81", + "name": "Prim prisoner", + "spawnGroup": "prim_prisoner", + "monsterClass": 0, + "phraseID": "prim_guard1" + }, + { + "id": "fulus", + "iconID": "monsters_karvis2:3", + "name": "Fulus", + "spawnGroup": "fulus", + "monsterClass": 0, + "phraseID": "fulus_start" + }, + { + "id": "guthbered", + "iconID": "monsters_rltiles1:92", + "name": "Guthbered", + "spawnGroup": "guthbered", + "monsterClass": 0, + "unique": 1, + "maxHP": 80, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "guthbered", + "phraseID": "guthbered_start", + "attackDamage": { + "min": 4, + "max": 9 + } + }, + { + "id": "guthbereds_bodyguard", + "iconID": "monsters_rltiles1:76", + "name": "Guthbered's bodyguard", + "spawnGroup": "guthbered_guard", + "monsterClass": 0, + "phraseID": "guthbered_guard" + }, + { + "id": "prim_weapon_guard", + "iconID": "monsters_rltiles1:65", + "name": "Prim weapon guard", + "spawnGroup": "prim_guard1", + "monsterClass": 0, + "phraseID": "prim_guard1" + }, + { + "id": "prim_sentry", + "iconID": "monsters_rltiles3:14", + "name": "Prim sentry", + "spawnGroup": "prim_guard2", + "monsterClass": 0, + "phraseID": "prim_guard2" + }, + { + "id": "prim_guard", + "iconID": "monsters_rltiles1:65", + "name": "Prim guard", + "spawnGroup": "prim_guard4", + "monsterClass": 0, + "phraseID": "prim_guard4" + }, + { + "id": "tired_prim_guard", + "iconID": "monsters_rltiles1:76", + "name": "Tired Prim guard", + "spawnGroup": "prim_guard3", + "monsterClass": 0, + "phraseID": "prim_guard3" + }, + { + "id": "prim_treasury_guard", + "iconID": "monsters_rltiles1:69", + "name": "Prim treasury guard", + "spawnGroup": "prim_treasury_guard", + "monsterClass": 0, + "phraseID": "prim_treasury_guard" + }, + { + "id": "samar", + "iconID": "monsters_rltiles2:93", + "name": "Samar", + "spawnGroup": "prim_priest", + "monsterClass": 0, + "droplistID": "shop_samar", + "phraseID": "prim_priest" + }, + { + "id": "prim_priestly_acolyte", + "iconID": "monsters_rltiles1:83", + "name": "Prim priestly acolyte", + "spawnGroup": "prim_acolyte", + "monsterClass": 0, + "phraseID": "prim_acolyte" + }, + { + "id": "studying_prim_pupil", + "iconID": "monsters_rltiles1:74", + "name": "Studying Prim pupil", + "spawnGroup": "prim_pupil1", + "monsterClass": 0, + "phraseID": "prim_pupil1" + }, + { + "id": "reading_prim_pupil", + "iconID": "monsters_rltiles1:74", + "name": "Reading Prim pupil", + "spawnGroup": "prim_pupil2", + "monsterClass": 0, + "phraseID": "prim_pupil2" + }, + { + "id": "prim_pupil", + "iconID": "monsters_rltiles1:74", + "name": "Prim pupil", + "spawnGroup": "prim_pupil3", + "monsterClass": 0, + "phraseID": "prim_pupil3" + }, + { + "id": "blackwater_entrance_guard", + "iconID": "monsters_rltiles3:14", + "name": "Blackwater entrance guard", + "spawnGroup": "blackwater_entranceguard", + "monsterClass": 0, + "maxHP": 30, + "maxAP": 10, + "phraseID": "blackwater_entranceguard" + }, + { + "id": "blackwater_dinner_guest", + "iconID": "monsters_karvis2:2", + "name": "Blackwater dinner guest", + "spawnGroup": "blackwater_guest1", + "monsterClass": 0, + "maxHP": 20, + "maxAP": 10, + "phraseID": "blackwater_guest1" + }, + { + "id": "blackwater_inhabitant", + "iconID": "monsters_man1:0", + "name": "Blackwater inhabitant", + "spawnGroup": "blackwater_guest2", + "monsterClass": 0, + "maxHP": 10, + "maxAP": 10, + "phraseID": "blackwater_guest2" + }, + { + "id": "blackwater_cook", + "iconID": "monsters_karvis2:0", + "name": "Blackwater cook", + "spawnGroup": "blackwater_cook", + "monsterClass": 0, + "phraseID": "blackwater_cook" + }, + { + "id": "keneg", + "iconID": "monsters_rltiles1:86", + "name": "Keneg", + "spawnGroup": "keneg", + "monsterClass": 0, + "phraseID": "keneg" + }, + { + "id": "mazeg", + "iconID": "monsters_rltiles1:85", + "name": "Mazeg", + "spawnGroup": "mazeg", + "monsterClass": 0, + "droplistID": "shop_mazeg", + "phraseID": "mazeg" + }, + { + "id": "waeges", + "iconID": "monsters_rltiles1:88", + "name": "Waeges", + "spawnGroup": "waeges", + "monsterClass": 0, + "droplistID": "shop_waeges", + "phraseID": "waeges" + }, + { + "id": "blackwater_fighter", + "iconID": "monsters_rltiles1:66", + "name": "Blackwater fighter", + "spawnGroup": "blackwater_fighter", + "monsterClass": 0, + "phraseID": "blackwater_fighter" + }, + { + "id": "ungorm", + "iconID": "monsters_rltiles1:83", + "name": "Ungorm", + "spawnGroup": "ungorm", + "monsterClass": 0, + "phraseID": "ungorm" + }, + { + "id": "blackwater_pupil", + "iconID": "monsters_rltiles1:74", + "name": "Blackwater pupil", + "spawnGroup": "blackwater_pupil", + "monsterClass": 0, + "phraseID": "blackwater_pupil" + }, + { + "id": "laede", + "iconID": "monsters_rltiles1:81", + "name": "Laede", + "spawnGroup": "blackwater_sleephall", + "monsterClass": 0, + "phraseID": "laede" + }, + { + "id": "herec", + "iconID": "monsters_men2:9", + "name": "Herec", + "spawnGroup": "herec", + "monsterClass": 0, + "droplistID": "shop_herec", + "phraseID": "herec_start" + }, + { + "id": "iducus", + "iconID": "monsters_rltiles1:87", + "name": "Iducus", + "spawnGroup": "iducus", + "monsterClass": 0, + "droplistID": "shop_iducus", + "phraseID": "iducus" + }, + { + "id": "blackwater_priest", + "iconID": "monsters_rltiles1:80", + "name": "Blackwater priest", + "spawnGroup": "blackwater_priest", + "monsterClass": 0, + "phraseID": "blackwater_priest" + }, + { + "id": "studying_blackwater_priest", + "iconID": "monsters_rltiles1:84", + "name": "Studying Blackwater priest", + "spawnGroup": "blackwater_pupil", + "monsterClass": 0, + "phraseID": "blackwater_pupil" + }, + { + "id": "blackwater_guard", + "iconID": "monsters_rltiles1:76", + "name": "Blackwater guard", + "spawnGroup": "blackwater_guard1", + "monsterClass": 0, + "phraseID": "blackwater_guard1" + }, + { + "id": "blackwater_border_patrol", + "iconID": "monsters_rltiles1:76", + "name": "Blackwater border patrol", + "spawnGroup": "blackwater_guard2", + "monsterClass": 0, + "phraseID": "blackwater_guard2" + }, + { + "id": "harlenns_bodyguard", + "iconID": "monsters_rltiles1:76", + "name": "Harlenn's bodyguard", + "spawnGroup": "blackwater_bossguard", + "monsterClass": 0, + "phraseID": "blackwater_bossguard" + }, + { + "id": "blackwater_chamber_guard", + "iconID": "monsters_men:3", + "name": "Blackwater chamber guard", + "spawnGroup": "blackwater_throneguard", + "monsterClass": 0, + "unique": 1, + "phraseID": "blackwater_throneguard" + }, + { + "id": "harlenn", + "iconID": "monsters_men2:6", + "name": "Harlenn", + "spawnGroup": "harlenn", + "monsterClass": 0, + "unique": 1, + "maxHP": 80, + "maxAP": 10, + "moveCost": 5, + "attackCost": 5, + "attackChance": 70, + "blockChance": 80, + "damageResistance": 4, + "droplistID": "harlenn", + "phraseID": "harlenn_start", + "attackDamage": { + "min": 4, + "max": 9 + } + }, + { + "id": "throdna", + "iconID": "monsters_men2:4", + "name": "Throdna", + "spawnGroup": "throdna", + "monsterClass": 0, + "phraseID": "throdna_start" + }, + { + "id": "throdnas_guard", + "iconID": "monsters_rltiles1:85", + "name": "Throdna's guard", + "spawnGroup": "throdna_guard", + "monsterClass": 0, + "phraseID": "throdna_guard" + }, + { + "id": "blackwater_mage", + "iconID": "monsters_rltiles1:80", + "name": "Blackwater mage", + "spawnGroup": "blackwater_acolyte", + "monsterClass": 0, + "phraseID": "blackwater_acolyte" + } +] diff --git a/AndorsTrail/res/raw/monsterlist_wilderness.json b/AndorsTrail/res/raw/monsterlist_wilderness.json new file mode 100644 index 000000000..01f51f589 --- /dev/null +++ b/AndorsTrail/res/raw/monsterlist_wilderness.json @@ -0,0 +1,513 @@ +[ + { + "id": "wild_fox", + "iconID": "monsters_dogs:3", + "name": "Wild Fox", + "spawnGroup": "fox2", + "monsterClass": 4, + "maxHP": 25, + "attackCost": 5, + "attackChance": 100, + "blockChance": 40, + "droplistID": "canine", + "attackDamage": { + "min": 4, + "max": 5 + } + }, + { + "id": "stinging_wasp", + "iconID": "monsters_insects:1", + "name": "Stinging wasp", + "spawnGroup": "forestwasp2", + "monsterClass": 1, + "maxHP": 15, + "attackCost": 10, + "attackChance": 150, + "blockChance": 60, + "droplistID": "wasp", + "attackDamage": { + "min": 1, + "max": 2 + } + }, + { + "id": "wild_boar", + "iconID": "monsters_dogs:6", + "name": "Wild Boar", + "spawnGroup": "forestboar2", + "monsterClass": 4, + "maxHP": 20, + "attackCost": 5, + "attackChance": 110, + "blockChance": 30, + "droplistID": "canineboss", + "attackDamage": { + "min": 3, + "max": 3 + } + }, + { + "id": "forest_beetle", + "iconID": "monsters_insects:4", + "name": "Forest Beetle", + "spawnGroup": "forestbeetle", + "monsterClass": 1, + "maxHP": 14, + "attackCost": 10, + "attackChance": 150, + "blockChance": 60, + "damageResistance": 2, + "droplistID": "insect", + "attackDamage": { + "min": 2, + "max": 4 + } + }, + { + "id": "wolf", + "iconID": "monsters_dogs:4", + "name": "Wolf", + "spawnGroup": "forestwolf1", + "monsterClass": 4, + "maxHP": 30, + "maxAP": 10, + "moveCost": 3, + "attackCost": 5, + "attackChance": 110, + "blockChance": 30, + "droplistID": "canine", + "attackDamage": { + "min": 3, + "max": 6 + } + }, + { + "id": "forest_serpent", + "iconID": "monsters_snakes:4", + "name": "Forest serpent", + "spawnGroup": "forestserpent1", + "monsterClass": 7, + "maxHP": 20, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "criticalSkill": 30, + "criticalMultiplier": 2, + "blockChance": 60, + "droplistID": "snake2", + "attackDamage": { + "min": 2, + "max": 3 + } + }, + { + "id": "vicious_forest_serpent", + "iconID": "monsters_snakes:4", + "name": "Vicious forest serpent", + "spawnGroup": "forestserpent2", + "monsterClass": 7, + "maxHP": 27, + "maxAP": 10, + "moveCost": 5, + "attackCost": 3, + "attackChance": 150, + "criticalSkill": 30, + "criticalMultiplier": 2, + "blockChance": 50, + "droplistID": "snake2", + "attackDamage": { + "min": 3, + "max": 4 + } + }, + { + "id": "anklebiter", + "iconID": "monsters_dogs:6", + "name": "Anklebiter", + "spawnGroup": "forestboar3", + "monsterClass": 4, + "maxHP": 31, + "attackCost": 5, + "attackChance": 150, + "blockChance": 60, + "damageResistance": 3, + "droplistID": "canine2", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "flagstone_sentry", + "iconID": "monsters_men:3", + "name": "Flagstone Sentry", + "spawnGroup": "flagstone_sentry", + "monsterClass": 0, + "phraseID": "flagstone_sentry" + }, + { + "id": "escaped_prisoner", + "iconID": "monsters_men:0", + "name": "Escaped prisoner", + "spawnGroup": "prisoner1", + "monsterClass": 0, + "unique": 1, + "maxHP": 15, + "attackCost": 10, + "attackChance": 50, + "blockChance": 20, + "droplistID": "prisoner", + "phraseID": "prisoner1", + "attackDamage": { + "min": 3, + "max": 7 + } + }, + { + "id": "starving_prisoner", + "iconID": "monsters_misc:11", + "name": "Starving prisoner", + "spawnGroup": "prisoner2", + "monsterClass": 0, + "unique": 1, + "maxHP": 10, + "attackCost": 3, + "attackChance": 60, + "blockChance": 60, + "droplistID": "prisoner", + "phraseID": "prisoner2", + "attackDamage": { + "min": 3, + "max": 5 + } + }, + { + "id": "bone_warrior", + "iconID": "monsters_skeleton1:0", + "name": "Bone warrior", + "spawnGroup": "skeleton2", + "monsterClass": 3, + "maxHP": 32, + "attackCost": 5, + "attackChance": 120, + "blockChance": 60, + "damageResistance": 2, + "droplistID": "skeleton2", + "attackDamage": { + "min": 3, + "max": 9 + } + }, + { + "id": "bone_champion", + "iconID": "monsters_skeleton1:0", + "name": "Bone champion", + "spawnGroup": "skeleton3", + "monsterClass": 3, + "maxHP": 49, + "attackCost": 5, + "attackChance": 130, + "blockChance": 60, + "damageResistance": 2, + "droplistID": "skeleton3", + "attackDamage": { + "min": 4, + "max": 9 + } + }, + { + "id": "undead_warden", + "iconID": "monsters_liches:0", + "name": "Undead warden", + "spawnGroup": "flagstone_guard0", + "monsterClass": 6, + "unique": 1, + "maxHP": 57, + "attackCost": 5, + "attackChance": 120, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 60, + "damageResistance": 1, + "droplistID": "flagstone_guard0", + "phraseID": "flagstone_guard0", + "attackDamage": { + "min": 4, + "max": 8 + } + }, + { + "id": "cave_guardian", + "iconID": "monsters_rltiles1:16", + "name": "Cave guardian", + "spawnGroup": "flagstone_guard1", + "monsterClass": 2, + "unique": 1, + "maxHP": 61, + "attackCost": 5, + "attackChance": 150, + "criticalSkill": 10, + "criticalMultiplier": 3, + "blockChance": 90, + "damageResistance": 2, + "droplistID": "flagstone_guard1", + "phraseID": "flagstone_guard1", + "attackDamage": { + "min": 4, + "max": 10 + } + }, + { + "id": "winged_demon", + "iconID": "monsters_demon1:0", + "name": "Winged demon", + "spawnGroup": "flagstone_guard2", + "size": "2x2", + "monsterClass": 2, + "unique": 1, + "maxHP": 82, + "attackCost": 5, + "attackChance": 90, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 70, + "damageResistance": 5, + "droplistID": "flagstone_guard2", + "phraseID": "flagstone_guard2", + "attackDamage": { + "min": 4, + "max": 12 + } + }, + { + "id": "narael", + "iconID": "monsters_man1:0", + "name": "Narael", + "spawnGroup": "narael", + "monsterClass": 0, + "phraseID": "narael" + }, + { + "id": "rotting_corpse", + "iconID": "monsters_zombie1:0", + "name": "Rotting corpse", + "spawnGroup": "undead1", + "monsterClass": 6, + "maxHP": 71, + "attackCost": 10, + "attackChance": 30, + "criticalSkill": 50, + "criticalMultiplier": 2, + "blockChance": 30, + "damageResistance": 2, + "droplistID": "undead1", + "phraseID": "zombie1", + "attackDamage": { + "min": 2, + "max": 5 + } + }, + { + "id": "walking_corpse", + "iconID": "monsters_zombie1:0", + "name": "Walking corpse", + "spawnGroup": "undead1", + "monsterClass": 6, + "maxHP": 90, + "attackCost": 10, + "attackChance": 30, + "criticalSkill": 40, + "criticalMultiplier": 2, + "blockChance": 30, + "damageResistance": 2, + "droplistID": "undead1", + "attackDamage": { + "min": 2, + "max": 4 + } + }, + { + "id": "gargoyle", + "iconID": "monsters_misc:2", + "name": "Gargoyle", + "spawnGroup": "undead1", + "monsterClass": 3, + "maxHP": 47, + "attackCost": 10, + "attackChance": 110, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 70, + "damageResistance": 2, + "droplistID": "undead1", + "attackDamage": { + "min": 3, + "max": 7 + } + }, + { + "id": "fledgling_gargoyle", + "iconID": "monsters_misc:1", + "name": "Fledgling Gargoyle", + "spawnGroup": "undead1", + "monsterClass": 3, + "maxHP": 35, + "attackCost": 10, + "attackChance": 110, + "blockChance": 60, + "damageResistance": 2, + "droplistID": "undead1", + "attackDamage": { + "min": 3, + "max": 6 + } + }, + { + "id": "large_cave_rat", + "iconID": "monsters_rats:3", + "name": "Large cave rat", + "spawnGroup": "undeadrat1", + "monsterClass": 4, + "maxHP": 21, + "maxAP": 10, + "moveCost": 10, + "attackCost": 3, + "attackChance": 60, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 40, + "droplistID": "catacombrat", + "attackDamage": { + "min": 3, + "max": 4 + } + }, + { + "id": "pack_leader", + "iconID": "monsters_dogs:5", + "name": "Pack Leader", + "spawnGroup": "pack_boss", + "monsterClass": 4, + "unique": 1, + "maxHP": 65, + "attackCost": 5, + "attackChance": 90, + "criticalSkill": 20, + "criticalMultiplier": 2, + "blockChance": 40, + "damageResistance": 4, + "droplistID": "pack_boss", + "attackDamage": { + "min": 2, + "max": 10 + } + }, + { + "id": "pack_hunter", + "iconID": "monsters_dogs:4", + "name": "Pack hunter", + "spawnGroup": "pack3", + "monsterClass": 4, + "maxHP": 45, + "attackCost": 5, + "attackChance": 90, + "criticalSkill": 10, + "criticalMultiplier": 2, + "blockChance": 40, + "damageResistance": 3, + "droplistID": "pack3", + "attackDamage": { + "min": 2, + "max": 7 + } + }, + { + "id": "rabid_wolf", + "iconID": "monsters_dogs:4", + "name": "Rabid Wolf", + "spawnGroup": "pack2", + "monsterClass": 4, + "maxHP": 42, + "attackCost": 5, + "attackChance": 90, + "blockChance": 50, + "damageResistance": 3, + "droplistID": "pack2", + "attackDamage": { + "min": 2, + "max": 6 + } + }, + { + "id": "fledgling_wolf", + "iconID": "monsters_dogs:3", + "name": "Fledgling wolf", + "spawnGroup": "pack2", + "monsterClass": 4, + "maxHP": 42, + "attackCost": 3, + "attackChance": 70, + "blockChance": 50, + "damageResistance": 3, + "droplistID": "pack2", + "attackDamage": { + "min": 2, + "max": 5 + } + }, + { + "id": "young_wolf", + "iconID": "monsters_dogs:4", + "name": "Young wolf", + "spawnGroup": "pack1", + "monsterClass": 4, + "maxHP": 35, + "attackCost": 3, + "attackChance": 60, + "blockChance": 30, + "damageResistance": 2, + "droplistID": "pack1", + "attackDamage": { + "min": 2, + "max": 5 + } + }, + { + "id": "hunting_dog", + "iconID": "monsters_dogs:2", + "name": "Hunting dog", + "spawnGroup": "pack1", + "monsterClass": 4, + "maxHP": 25, + "attackCost": 5, + "attackChance": 60, + "blockChance": 50, + "droplistID": "pack1", + "attackDamage": { + "min": 2, + "max": 5 + } + }, + { + "id": "highwayman", + "iconID": "monsters_men:8", + "name": "Highwayman", + "spawnGroup": "bandit1", + "monsterClass": 0, + "maxHP": 54, + "attackCost": 5, + "attackChance": 90, + "criticalSkill": 50, + "criticalMultiplier": 2, + "blockChance": 30, + "damageResistance": 2, + "droplistID": "bandit1", + "phraseID": "bandit1", + "attackDamage": { + "min": 2, + "max": 4 + } + } +] diff --git a/AndorsTrail/res/raw/questlist.json b/AndorsTrail/res/raw/questlist.json new file mode 100644 index 000000000..ac37bb235 --- /dev/null +++ b/AndorsTrail/res/raw/questlist.json @@ -0,0 +1,387 @@ +[ + { + "id": "andor", + "name": "Search for Andor", + "showInLog": 1, + "stages": [ + { + "progress": 1, + "logText": "My father Mikhail says that Andor has not been home since yesterday. I should go look for him in the village.", + "finishesQuest": 0 + }, + { + "progress": 10, + "logText": "Leonid tells me that he saw Andor talking to Gruil. I should go ask Gruil if he knows more.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Gruil wants me to bring him a poison gland. Then he might talk more. He tells me that some poisonous snakes have such a gland.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Gruil tells me that Andor was looking for someone called Umar. I should go ask his friend Gaela in Fallhaven to the east.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "I talked to Gaela in Fallhaven. He tells me to go see Bucus and ask about the Thieves' Guild.", + "finishesQuest": 0 + }, + { + "progress": 50, + "logText": "Bucus has allowed me to enter the hatch in the derelict house in Fallhaven. I should go talk to Umar.", + "finishesQuest": 0 + }, + { + "progress": 51, + "logText": "Umar in the Fallhaven Thieves' Guild recognized me, but must have me mixed up with Andor. Apparently, Andor has been to see him.", + "finishesQuest": 0 + }, + { + "progress": 55, + "logText": "Umar told me that Andor went to see a potion maker called Lodar. I should search for his hideaway.", + "finishesQuest": 0 + }, + { + "progress": 61, + "logText": "I heard a story in Loneford, where it seemed like Andor had been in Loneford, and that he might have had something to do with the illness that the people are suffering from there. I am not sure if it actually was Andor. If it was Andor, why would he have made the people of Loneford ill?", + "finishesQuest": 0 + } + ] + }, + { + "id": "mikhail_bread", + "name": "Breakfast bread", + "showInLog": 1, + "stages": [ + { + "progress": 100, + "logText": "I have brought the bread to Mikhail.", + "finishesQuest": 1 + }, + { + "progress": 10, + "logText": "Mikhail wants me to go buy a loaf of bread from Mara at the town hall.", + "finishesQuest": 0 + } + ] + }, + { + "id": "mikhail_rats", + "name": "Rats!", + "showInLog": 1, + "stages": [ + { + "progress": 100, + "logText": "I have killed the two rats in our garden.", + "rewardExperience": 20, + "finishesQuest": 1 + }, + { + "progress": 10, + "logText": "Mikhail wants me to go check our garden for some rats. I should kill the rats in our garden and return to Mikhail. If I get hurt, I can come back to the bed and rest to regain my health.", + "finishesQuest": 0 + } + ] + }, + { + "id": "leta", + "name": "Missing husband", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Leta in Crossglen village wants me to look for her husband Oromir.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "I have found Oromir in Crossglen village, hiding from his wife Leta.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "I have told Leta that Oromir is hiding in Crossglen village.", + "rewardExperience": 50, + "finishesQuest": 1 + } + ] + }, + { + "id": "odair", + "name": "Rat infestation", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Odair wants me to clear the supply cave in Crossglen village of rats. In particular, I should kill the large rat and return to Odair.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "I have helped Odair clear out the rats in the supply cave in Crossglen village.", + "rewardExperience": 300, + "finishesQuest": 1 + } + ] + }, + { + "id": "bonemeal", + "name": "Disallowed substance", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Leonid in Crossglen town hall tells me that there was a disturbance in the village some weeks ago. Apparently, Lord Geomyr has banned all use of bonemeal as a healing substance.\n\nTharal, the town priest should know more.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Tharal does not want to talk about bonemeal. I might be able to persuade him by bringing him 5 insect wings.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Tharal tells me that bonemeal is a very potent healing substance, and is quite upset that it is not allowed anymore. I should go see Thoronir in Fallhaven if I want to learn more. I should tell him the password 'Glow of the Shadow'.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "I have talked to Thoronir in Fallhaven. He might be able to mix me a bonemeal potion if I bring him 5 skeletal bones. There should be some skeletons in an abandoned house north of Fallhaven.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "I have brought the bones to Thoronir. He is now able to supply me with bonemeal potions.\nI should be careful when using them though, since Lord Geomyr has banned their use.", + "rewardExperience": 900, + "finishesQuest": 1 + } + ] + }, + { + "id": "jan", + "name": "Fallen friends", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Jan tells me his story, where he and his two friends Gandir and Irogotu, went down the hole to dig for a hidden treasure, but they started fighting and Irogotu killed Gandir in his rage.\nI should bring back Gandir's ring from Irogotu, and see Jan when I have it.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "Irogotu is dead. I have brought Jan the ring of Gandir, and avenged his friend.", + "rewardExperience": 1500, + "finishesQuest": 1 + } + ] + }, + { + "id": "bucus", + "name": "Key of Luthor", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Bucus in Fallhaven might know something about Andor. He wants me to bring him the key of Luthor from the catacombs beneath Fallhaven church.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "The catacombs beneath Fallhaven church are closed off. Athamyr is the only one with both permission and the bravery to enter them. I should go see him in his house southwest of the church.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Athamyr wants me to bring him some cooked meat, then maybe he will want to talk more.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "I brought some cooked meat to Athamyr.", + "rewardExperience": 700, + "finishesQuest": 0 + }, + { + "progress": 50, + "logText": "Athamyr has given me permission to enter the catacombs beneath Fallhaven church.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "I brought Bucus the key of Luthor.", + "rewardExperience": 2150, + "finishesQuest": 1 + } + ] + }, + { + "id": "fallhavendrunk", + "name": "Drunken tale", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "A drunk outside Fallhaven tavern began telling me his story, but wants me to bring him some mead. I don't know if his story will lead anywhere though.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "The drunk told me he used to travel with Unnmir. I should go talk to Unnmir.", + "finishesQuest": 1 + } + ] + }, + { + "id": "calomyran", + "name": "Calomyran secrets", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "An old man standing outside in Fallhaven has lost his book 'Calomyran Secrets'. I should go look for it. Maybe in Arcir's house to the south?", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "I found a torn page of a book called 'Calomyran Secrets' with the name 'Larcal' written on it.", + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "I gave the book back to the old man.", + "rewardExperience": 600, + "finishesQuest": 1 + } + ] + }, + { + "id": "nocmar", + "name": "Lost treasures", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Unnmir told me he used to be an adventurer, and gave me a hint to go see Nocmar. His house is just southwest of the tavern in Fallhaven.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Nocmar tells me he used to be a smith. But Lord Geomyr has banned the use of heartsteel, so he cannot forge his weapons anymore.\nIf I can find a heartstone and bring it to Nocmar, he should be able to forge the heartsteel again.", + "finishesQuest": 0 + }, + { + "progress": 200, + "logText": "I have brought a heartstone to Nocmar. He should have heartsteel items available now.", + "rewardExperience": 1200, + "finishesQuest": 1 + } + ] + }, + { + "id": "flagstone", + "name": "Ancient secrets", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "I met a guard on sentry outside a fortress called Flagstone. The guard told me that Flagstone used to be a prison camp for runaway workers from Mount Galmore. Recently, there has been an increase in undead monsters pouring out from Flagstone. I should investigate the source of the undead monsters. The guard tells me to return to him if I need help.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "I found a dug out tunnel beneath Flagstone, that seems to lead to a larger cave. The cave is guarded by a demon that I am not even able to approach. Maybe the guard outside Flagstone knows more?", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "The guard tells me that the former warden used to have a necklace that he always wore. The necklace probably has the words required to approach the demon. I should return to the guard to decipher any message on the necklace once I have found it.", + "finishesQuest": 0 + }, + { + "progress": 31, + "logText": "I found the former warden of Flagstone on the upper level. I should return to the guard now.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "I have learned the words required to approach the demon beneath Flagstone. 'Daylight Shadow'.", + "rewardExperience": 1600, + "finishesQuest": 0 + }, + { + "progress": 50, + "logText": "Deep beneath Flagstone, I found the source of the undead infestation. A creature born from the grief of the former prisoners of Flagstone.", + "finishesQuest": 0 + }, + { + "progress": 60, + "logText": "I found one prisoner, Narael, alive deep beneath Flagstone. Narael was once a citizen of Nor City. He is too weak to walk by himself, but if I can find his wife in Nor City, I would be handsomely rewarded.", + "rewardExperience": 2100, + "finishesQuest": 1 + } + ] + }, + { + "id": "vacor", + "name": "Missing pieces", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "A mage called Vacor in southwest Fallhaven has been trying to cast a rift spell.\nThere was something not right about him, he seemed very obsessed with his spell. Something about him gaining a power from it.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Vacor wants me to bring him the four pieces of the rift spell that he claims was stolen from him. The four bandits should be somewhere south of Fallhaven.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "I have brought the four pieces of the rift spell to Vacor.", + "rewardExperience": 1200, + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Vacor tells me about his former apprentice Unzel, who had started to question Vacor. Vacor now wants me to kill Unzel. I should be able to find him to the southwest outside of Fallhaven. I should bring his signet ring to Vacor once I have killed him.", + "finishesQuest": 0 + }, + { + "progress": 50, + "logText": "Unzel gives me a choice to side with either Vacor or him.", + "finishesQuest": 0 + }, + { + "progress": 51, + "logText": "I have chosen to side with Unzel. I should go to southwest Fallhaven to talk to Vacor about Unzel and the Shadow.", + "finishesQuest": 0 + }, + { + "progress": 53, + "logText": "I started a fight with Unzel. I should bring his ring to Vacor once he is dead.", + "finishesQuest": 0 + }, + { + "progress": 54, + "logText": "I started a fight with Vacor. I should bring his ring to Unzel once he is dead.", + "finishesQuest": 0 + }, + { + "progress": 60, + "logText": "I have killed Unzel and told Vacor about the deed.", + "rewardExperience": 1600, + "finishesQuest": 1 + }, + { + "progress": 61, + "logText": "I have killed Vacor and told Unzel about the deed.", + "rewardExperience": 1600, + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw/questlist_debug.json b/AndorsTrail/res/raw/questlist_debug.json new file mode 100644 index 000000000..c9016917f --- /dev/null +++ b/AndorsTrail/res/raw/questlist_debug.json @@ -0,0 +1,26 @@ +[ + { + "id": "debugquest", + "name": "Debug Quest", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "I have talked to the NPC", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "I have asked the NPC for more info.", + "rewardExperience": 20, + "finishesQuest": 0 + }, + { + "progress": 100, + "logText": "I have given the items to the NPC", + "rewardExperience": 40, + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw/questlist_nondisplayed.json b/AndorsTrail/res/raw/questlist_nondisplayed.json new file mode 100644 index 000000000..63f23c558 --- /dev/null +++ b/AndorsTrail/res/raw/questlist_nondisplayed.json @@ -0,0 +1,70 @@ +[ + { + "id": "nondisplay", + "name": "Placeholder for hidden quest stages (not displayed)", + "showInLog": 0, + "stages": [ + { + "progress": 10, + "logText": "Tavern room in Foaming Flask" + }, + { + "progress": 16, + "logText": "Sleeping quarters in Blackwater mountain" + }, + { + "progress": 17, + "logText": "Sleeping quarters in Crossroads1" + }, + { + "progress": 18, + "logText": "Shopping from Minarra in Crossroads tower" + }, + { + "progress": 19, + "logText": "Sleeping quarters in Loneford10" + }, + { + "progress": 20, + "logText": "Selling Izthiel claws to Gauward" + }, + { + "progress": 21, + "logText": "Tavern room in Remgard" + } + ] + }, + { + "id": "crossglen", + "name": "TODO", + "showInLog": 0, + "stages": [ + { + "progress": 1, + "finishesQuest": 0 + } + ] + }, + { + "id": "fallhaventavern", + "name": "Room to rent", + "showInLog": 0, + "stages": [ + { + "progress": 10, + "finishesQuest": 1 + } + ] + }, + { + "id": "arcir", + "name": "Elythara", + "showInLog": 0, + "stages": [ + { + "progress": 10, + "finishesQuest": 0 + } + ] + } +] diff --git a/AndorsTrail/res/raw/questlist_v0610.json b/AndorsTrail/res/raw/questlist_v0610.json new file mode 100644 index 000000000..f853dba45 --- /dev/null +++ b/AndorsTrail/res/raw/questlist_v0610.json @@ -0,0 +1,352 @@ +[ + { + "id": "erinith", + "name": "Deep wound", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Just northeast of Crossglen village, I met Erinith that has set up camp. Apparently, he was attacked during the night and lost a book." + }, + { + "progress": 20, + "logText": "I have agreed to help Erinith find his book. He told me he threw it among some trees to the north of his camp." + }, + { + "progress": 21, + "logText": "I have agreed to help Erinith find his book in return for 200 gold. He told me he threw it among some trees to the north of his camp." + }, + { + "progress": 30, + "logText": "I have returned the book to Erinith.", + "rewardExperience": 2000 + }, + { + "progress": 31, + "logText": "He also needs help with his wound that doesn't seem to be healing. Either I should bring him one potion of major health, or four regular potions of health." + }, + { + "progress": 40, + "logText": "I gave Erinith a bonemeal potion to heal his wound. He was a bit scared to use it since they are prohibited by Lord Geomyr." + }, + { + "progress": 41, + "logText": "I gave Erinith a potion of a major health to heal his wound." + }, + { + "progress": 42, + "logText": "I gave Erinith four regular potions of health to heal his wound." + }, + { + "progress": 50, + "logText": "The wound healed completely and Erinith thanked me for all the help.", + "rewardExperience": 1500, + "finishesQuest": 1 + } + ] + }, + { + "id": "hadracor", + "name": "Devastated land", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "On the road to Carn Tower, west of the crossroads guardhouse, I met a group of woodcutters led by Hadracor. Hadracor wants me to help him get revenge on some wasps that were attacking them while they were cutting down the forest. To help them get revenge, I should look for giant wasps near their encampment and bring him at least five giant wasp wings." + }, + { + "progress": 20, + "logText": "I have brought five giant wasp wings to Hadracor." + }, + { + "progress": 21, + "logText": "I have brought six giant wasp wings to Hadracor. For helping him, he gave me a pair of gloves." + }, + { + "progress": 30, + "logText": "Hadracor thanked me for helping him and the other woodcutters get revenge on the wasps. In return, he offered me to trade for some of his items.", + "finishesQuest": 1 + } + ] + }, + { + "id": "tinlyn", + "name": "Lost sheep", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "On the road to Feygard, near the Feygard bridge, I met a shepherd named Tinlyn. Tinlyn told me that four of his sheep have wandered away and that he won't dare leave the remaining sheep to go look for them." + }, + { + "progress": 15, + "logText": "I have agreed to help Tinlyn find his four lost sheep." + }, + { + "progress": 20, + "logText": "I have found one of Tinlyn's lost sheep." + }, + { + "progress": 21, + "logText": "I have found one of Tinlyn's lost sheep." + }, + { + "progress": 22, + "logText": "I have found one of Tinlyn's lost sheep." + }, + { + "progress": 23, + "logText": "I have found one of Tinlyn's lost sheep." + }, + { + "progress": 25, + "logText": "I have found all four of Tinlyn's lost sheep." + }, + { + "progress": 30, + "logText": "Tinlyn thanked me for finding his lost sheep.", + "rewardExperience": 3500, + "finishesQuest": 1 + }, + { + "progress": 31, + "logText": "Tinlyn thanked me for finding his lost sheep, but he had no reward to give me.", + "rewardExperience": 2000, + "finishesQuest": 1 + }, + { + "progress": 60, + "logText": "I have attacked at least one of Tinlyn's lost sheep and is therefore unable to return them all to Tinlyn.", + "finishesQuest": 1 + } + ] + }, + { + "id": "benbyr", + "name": "Cheap cuts", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "I have met Benbyr outside the Crossroads guardhouse. He wants to get revenge on an old 'business partner' of his - Tinlyn. Benbyr wants me to kill all Tinlyn's sheep." + }, + { + "progress": 20, + "logText": "I have agreed to help Benbyr find Tinlyn's sheep and kill all eight of them. I should go look for them in the fields northwest of the crossroads guardhouse." + }, + { + "progress": 21, + "logText": "I have started attacking the sheep. I should return to Benbyr once I have killed all eight of them." + }, + { + "progress": 30, + "logText": "Benbyr was thrilled to hear that all of Tinlyn's sheep are dead.", + "rewardExperience": 5200, + "finishesQuest": 1 + }, + { + "progress": 60, + "logText": "I declined to help Benbyr kill the sheep.", + "finishesQuest": 1 + } + ] + }, + { + "id": "rogorn", + "name": "The path is clear to me", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Minarra up in the tower at the Crossroads guardhouse has seen a band of rogues heading west from the guardhouse, towards Carn Tower. Minarra was sure they matched the description of some men whose heads have a bounty on them from the Feygard patrol. If these are the men that Minarra thinks, they are supposedly led by particularly ruthless savage named Rogorn." + }, + { + "progress": 20, + "logText": "I am helping Minarra find the band of rogues. I should travel the road west from the Crossroads guardhouse towards Carn Tower and look for them. They have supposedly stolen three pieces of a valuable painting and are wanted dead for their crimes." + }, + { + "progress": 21, + "logText": "Minarra also tells me that I should not trust anything I hear from them. In particular, anything from Rogorn should be viewed with great suspicion." + }, + { + "progress": 30, + "logText": "I have found the band of rogues on the road west towards Carn Tower, led by Rogorn." + }, + { + "progress": 35, + "logText": "Rogorn tells me that they are wrongly accused of murder and theft in Feygard, while they themselves have never even been to Feygard." + }, + { + "progress": 40, + "logText": "I have decided to attack Rogorn and his band of rogues. I should return to Minarra with the three pieces of the painting once they are dead." + }, + { + "progress": 45, + "logText": "I have decided not to attack Rogorn and his band of rogues, but instead report back to Minarra that she must have mistaken the men she saw for someone else." + }, + { + "progress": 50, + "logText": "Minarra thanked me for dealing with the thieves, and told me that my services to Feygard will be appreciated." + }, + { + "progress": 55, + "logText": "After telling Minarra that she must have mistaken the men for someone else, she seemed a bit suspicious, but thanked me for helping her look into the matter." + }, + { + "progress": 60, + "logText": "I have helped Minarra with her task.", + "finishesQuest": 1 + } + ] + }, + { + "id": "feygard_shipment", + "name": "Feygard errands", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "I met Gandoren, the guard captain at the Crossroads guardhouse. He told me about some trouble up in Loneford, that have forced the guards to be even more alert than usual. Because of this, they can't do their regular errands themselves but need help with some basic things." + }, + { + "progress": 20, + "logText": "Gandoren wants me to help him transport a shipment of 10 iron swords to another guard post to the south." + }, + { + "progress": 21, + "logText": "I have agreed to help Gandoren transport the shipment, as a service for Feygard." + }, + { + "progress": 22, + "logText": "I have grudgingly agreed to help Gandoren transport the shipment." + }, + { + "progress": 25, + "logText": "I should deliver the shipment to the Feygard patrol captain stationed in the Foaming Flask tavern." + }, + { + "progress": 26, + "logText": "Gandoren tells me that Ailshara has expressed some interest in the Feygard shipments, and urges me to stay away from her." + }, + { + "progress": 30, + "logText": "Ailshara is indeed interested in the shipment, and wants me to help Nor City with the supplies instead." + }, + { + "progress": 35, + "logText": "If I want to help Ailshara and Nor City, I should deliver the shipment to the smith in Vilegard instead." + }, + { + "progress": 50, + "logText": "I have delivered the shipment to the Feygard patrol captain in the Foaming Flask tavern. I should go tell Gandoren in the Crossroads guardhouse that the shipment is delivered." + }, + { + "progress": 55, + "logText": "I have delivered the shipment to the smith in Vilegard." + }, + { + "progress": 56, + "logText": "The Vilegard smith gave me a shipment of degraded items that I should deliver to the Feygard patrol captain in the Foaming Flask tavern instead of the normal ones." + }, + { + "progress": 60, + "logText": "I have delivered the shipment of degraded items to the Feygard patrol captain in the Foaming Flask tavern. I should go tell Gandoren in the Crossroads guardhouse that the shipment is delivered." + }, + { + "progress": 80, + "logText": "Gandoren thanked me for helping him deliver the shipment.", + "rewardExperience": 4000, + "finishesQuest": 1 + }, + { + "progress": 81, + "logText": "Gandoren thanked me for helping him deliver the shipment. He never suspected anything. I should also report back to Ailshara." + }, + { + "progress": 82, + "logText": "I have reported back to Ailshara.", + "rewardExperience": 4000, + "finishesQuest": 1 + } + ] + }, + { + "id": "loneford", + "name": "Flows through the veins", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "I heard a story about Loneford. Apparently, a lot of people have become ill there recently, and some have even died. The cause is still unknown." + }, + { + "progress": 11, + "logText": "I should investigate what could have caused the people of Loneford to become ill. To gather clues, I should ask the citizens of Loneford and the surrounding areas about what they think is the cause." + }, + { + "progress": 21, + "logText": "The guards in the Crossroads guardhouse are certain that the illness in Loneford is caused by some sabotage done by the priests or people from Nor City." + }, + { + "progress": 22, + "logText": "Some villagers in Loneford believe that the illness is caused by the guards from Feygard, in some scheme to make the people suffer even more than they already have." + }, + { + "progress": 23, + "logText": "Talion, the chapel priest in Loneford, thinks that the illness is the work of the Shadow, as punishment for Loneford's lack of devotion to the Shadow." + }, + { + "progress": 24, + "logText": "Taevinn in Loneford is certain that Sienn in the southeast barn has something to do with the illness. Apparently, Sienn keeps a pet around that has approached Taevinn in a threatening manner several times." + }, + { + "progress": 25, + "logText": "I should go see Landa in the Loneford tavern. Rumor has it that he saw something that he doesn't dare tell anyone." + }, + { + "progress": 30, + "logText": "Landa confused me with someone else at first. He apparently saw a boy doing something around the town well during the night before the illness started. He was scared to talk to me at first since he thought I looked like the boy he had seen. Could it have been Andor that he saw?" + }, + { + "progress": 31, + "logText": "Also, the night after he saw the boy at the well, he saw Buceth taking samples of the water in the well. Strangely enough, Buceth has not gotten ill like the others in the village." + }, + { + "progress": 35, + "logText": "I should go question Buceth at the Loneford chapel about what he was doing at the well, and about whether he knows anything about Andor." + }, + { + "progress": 41, + "logText": "I have bribed Buceth into talking to me." + }, + { + "progress": 42, + "logText": "I have told Buceth that I am ready to follow the Shadow." + }, + { + "progress": 45, + "logText": "Buceth tells me that he is assigned by the priests in Nor City to make sure the Shadow casts its glow over Loneford. Apparently, the priests had sent a boy to do some business in Loneford, and Buceth was tasked with gathering some samples from the water well." + }, + { + "progress": 50, + "logText": "I have attacked Buceth. I should bring any evidence that Buceth has on him to Kuldan, the guard captain in the longhouse in Loneford." + }, + { + "progress": 54, + "logText": "I have given the vial that Buceth had on him to Kuldan, the guard captain in Loneford." + }, + { + "progress": 55, + "logText": "Kuldan thanked me for solving the mystery of the illness in Loneford. They will start bringing in water with help from Feygard instead of drinking from the well from now on. Kuldan also told me to visit the castle steward in Feygard if I want to help further.", + "rewardExperience": 15000, + "finishesQuest": 1 + }, + { + "progress": 60, + "logText": "I have promised to keep Buceth's story a secret. If Andor was indeed here, he must have had a good reason for doing what he did. Buceth also told me to visit the chapel custodian in Nor City if I want to learn more about the Shadow.", + "rewardExperience": 15000, + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw/questlist_v0611.json b/AndorsTrail/res/raw/questlist_v0611.json new file mode 100644 index 000000000..d9ddc31b4 --- /dev/null +++ b/AndorsTrail/res/raw/questlist_v0611.json @@ -0,0 +1,82 @@ +[ + { + "id": "thorin", + "name": "Bits and pieces", + "showInLog": 1, + "stages": [ + { + "progress": 20, + "logText": "In a cave to the east, I found a man called Thorin, that wants me to help him find the remains of his former travelling companions. I should find the remains of all six of them and return them to him." + }, + { + "progress": 31, + "logText": "I have found some skeletal remains in the same cave that I met Thorin in." + }, + { + "progress": 32, + "logText": "I have found some skeletal remains in the same cave that I met Thorin in." + }, + { + "progress": 33, + "logText": "I have found some skeletal remains in the same cave that I met Thorin in." + }, + { + "progress": 34, + "logText": "I have found some skeletal remains in the same cave that I met Thorin in." + }, + { + "progress": 35, + "logText": "I have found some skeletal remains in the same cave that I met Thorin in." + }, + { + "progress": 36, + "logText": "I have found some skeletal remains in the same cave that I met Thorin in." + }, + { + "progress": 40, + "logText": "Thorin thanked me for helping him. In return, he has allowed me to use his bed to rest, and is willing to sell me some of his potions.", + "rewardExperience": 4000, + "finishesQuest": 1 + } + ] + }, + { + "id": "algangror", + "name": "Of mice and men", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "In a lonely house on a peninsula at the northern shore of lake Laeroth up in the mountains to the north-east, I met a woman called Algangror." + }, + { + "progress": 11, + "logText": "She has a rodent problem and needs help dealing with some of them that she has trapped in her basement." + }, + { + "progress": 15, + "logText": "I have agreed to help Algangror deal with her rodent problem. I should return to her when I have killed all six rodents in her basement." + }, + { + "progress": 20, + "logText": "Algangror thanked me for helping her with her problem.", + "rewardExperience": 5000 + }, + { + "progress": 21, + "logText": "She also told me not to talk to anyone in Remgard about her whereabouts. Apparently, they are looking for her for some reason that she would not say. Under no circumstances should I tell anyone where she is.", + "finishesQuest": 1 + }, + { + "progress": 100, + "logText": "I will not help Algangror with her task.", + "finishesQuest": 1 + }, + { + "progress": 101, + "logText": "Algangror won't talk to me, and I will be unable to help her with her task.", + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw/questlist_v0611_2.json b/AndorsTrail/res/raw/questlist_v0611_2.json new file mode 100644 index 000000000..4dc0c296c --- /dev/null +++ b/AndorsTrail/res/raw/questlist_v0611_2.json @@ -0,0 +1,257 @@ +[ + { + "id": "toszylae", + "name": "An involuntary carrier", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "On the road between Loneford and Brimhaven, I found a dried up lake-bed with a major cavern below. Deep inside the cavern, I met Ulirfendor - a priest of the Shadow from Brimhaven. Ulirfendor is trying to translate the inscriptions on a shrine of Kazaul, and has determined that it speaks of the 'Dark protector', but he is unsure what that refers to. Whatever it means, he is determined that it must be stopped." + }, + { + "progress": 11, + "logText": "Ulirfendor needs help with figuring out what some of the missing parts on the shrine says. The inscription reads 'Kulauil hamar urum Kazaul'te', but the next parts have been completely eroded from the rock." + }, + { + "progress": 15, + "logText": "I have agreed to help Ulirfendor find out what the missing parts of the inscription might be. Ulirfendor believes the shrine speaks of a powerful creature that lives deeper inside the dungeon. Maybe that could provide some clue as to what the missing parts are." + }, + { + "progress": 20, + "logText": "Deep inside the dungeon, I encountered a radiant guardian, guarding some other being. The guardian uttered the phrases 'Kulauil hamar urum Kazaul'te. Kazaul hamat urul'. This must be what Ulirfendor was looking for. I should return to him at once." + }, + { + "progress": 21, + "logText": "I tried to attack the guardian, but was unable to even reach it. Some powerful force held me back. Maybe Ulirfendor knows more." + }, + { + "progress": 30, + "logText": "Ulirfendor was very pleased to hear that I uncovered the missing parts of the inscription.", + "rewardExperience": 2000 + }, + { + "progress": 32, + "logText": "He also told me the continuation of the inscription, but did not know what it means. I should go back to the guardian and speak the words that Ulirfendor told me." + }, + { + "progress": 42, + "logText": "I have spoken the words to the guardian.", + "rewardExperience": 5000 + }, + { + "progress": 45, + "logText": "The guardian gave off a chilling laughter, and started attacking me." + }, + { + "progress": 50, + "logText": "I defeated the guardian and reached the lich 'Toszylae'. The lich managed to infect me with something. I must kill the lich and return to Ulirfendor." + }, + { + "progress": 60, + "logText": "Ulirfendor told me that he had managed to translate the parts of the inscription that I told the guardian. Apparently, what I told the guardian roughly means 'My body for Kazaul'. Ulirfendor was very concerned about what this means for me, and was very regretful that he had made me speak the words." + }, + { + "progress": 70, + "logText": "Ulirfendor was very happy to hear that I managed to defeat the lich. With the lich defeated, the people in the surrounding areas should be safe now.", + "rewardExperience": 20000, + "finishesQuest": 1 + } + ] + }, + { + "id": "darkprotector", + "name": "The dark protector", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "I have found a strange looking helmet from the lich 'Toszylae' that I defeated. I should go ask Ulirfendor if he knows anything about it." + }, + { + "progress": 15, + "logText": "Ulirfendor in the same dungeon thinks this artifact is what the shrine speaks of, and that it will bring misery to the surroundings of whoever carries it. He wants me to help him destroy it immediately." + }, + { + "progress": 26, + "logText": "To destroy the artifact, I would need give the helmet and the heart of the lich to Ulirfendor." + }, + { + "progress": 30, + "logText": "I have given the helmet to Ulirfendor." + }, + { + "progress": 31, + "logText": "I have given the heart of the lich to Ulirfendor." + }, + { + "progress": 35, + "logText": "Ulirfendor has destroyed the artifact. The people of the surrounding towns are safe from whatever misery the helmet would have brought." + }, + { + "progress": 40, + "logText": "For helping with both the lich and the helmet, Ulirfendor has given me the dark blessing of the Shadow.", + "rewardExperience": 15000, + "finishesQuest": 1 + }, + { + "progress": 41, + "logText": "For helping with both the lich and the helmet, Ulirfendor wanted to give me the dark blessing of the Shadow, but I declined.", + "rewardExperience": 35000, + "finishesQuest": 1 + }, + { + "progress": 50, + "logText": "I have decided to keep the helmet for myself. Who knows what power I could gain from it." + }, + { + "progress": 51, + "logText": "Ulirfendor attacked me for keeping the helmet." + }, + { + "progress": 55, + "logText": "I found a book by the shrine where Ulirfendor was. The book talks of a ritual that would restore the helmet to its true power. I should complete the ritual by the shrine if I want to use the helmet." + }, + { + "progress": 60, + "logText": "I have started the Kazaul ritual." + }, + { + "progress": 65, + "logText": "I have placed the helmet in front of the Kazaul shrine." + }, + { + "progress": 66, + "logText": "I have placed the lich's heart in front of the Kazaul shrine." + }, + { + "progress": 70, + "logText": "The ritual is complete, and I have restored the power of the helmet to its former glory.", + "rewardExperience": 5000, + "finishesQuest": 1 + } + ] + }, + { + "id": "maggots", + "name": "I have it in me", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Deep inside a cavern, I encountered a lich of Kazaul. Somehow the lich managed to infect me with things that crawl around in my stomach! I must find some way to get rid of these things inside of me. I should go talk to Ulirfendor, or seek help in one of the chapels." + }, + { + "progress": 20, + "logText": "Ulirfendor tells me that he read something long ago about rotworms that feed upon living tissue. They can have what he called 'unusual' effects on whoever carries them, and their eggs can slowly kill a person from the inside. I should seek help immediately, before it is too late." + }, + { + "progress": 21, + "logText": "Ulirfendor says that one of the priests of the Shadow should be able help me. I should go visit Talion at the chapel in Loneford at once." + }, + { + "progress": 30, + "logText": "Talion in Loneford told me that in order to be cured of my affliction, I will need to bring four parts to him. The parts that I will need are five bones, two pieces of animal hair, one Irdegh poison gland and one empty vial. Bones and fur can probably be found on some animal in the wilderness, and the poison gland can be found on one of the Irdeghs that have been spotted to the east." + }, + { + "progress": 40, + "logText": "I have brought the five bones to Talion." + }, + { + "progress": 41, + "logText": "I have brought the two pieces of animal hair to Talion." + }, + { + "progress": 42, + "logText": "I have brought one Irdegh poison gland to Talion." + }, + { + "progress": 43, + "logText": "I have brought an empty vial to Talion." + }, + { + "progress": 45, + "logText": "I have now brought all pieces that Talion needs in order to cure me of these things." + }, + { + "progress": 50, + "logText": "Talion has cured me of the Kazaul rotworms. I managed to get one of the rotworms into an empty vial, and Talion told me that it would be very valuable. I cannot imagine for what.", + "rewardExperience": 30000 + }, + { + "progress": 51, + "logText": "Because of my former affliction, Talion has agreed to help me by placing blessings of the Shadow upon me whenever I wish, for a fee.", + "finishesQuest": 1 + } + ] + }, + { + "id": "sisterfight", + "name": "A difference in opinion", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "I heard a story about two squabbling sisters in Remgard, Elwel and Elwyl. Apparently they have kept people awake at night with the way they are shouting at each other. I should go visit them in their house on the southern shore of the city of Remgard." + }, + { + "progress": 20, + "logText": "I have talked to Elwyl, one of the Elwille sisters in Remgard. She is furious at her sister for not agreeing on even the most simple of facts. Apparently, they have had their disagreements with each other for several years." + }, + { + "progress": 21, + "logText": "Elwel will not speak to me." + }, + { + "progress": 30, + "logText": "One matter that the sisters disagree on currently is the color of a certain potion that the town potion-maker Hjaldar used to make. Elwyl says that the potion of accuracy focus that Hjaldar used to make was a blue potion, but Elwel insists that the potion had a green substance." + }, + { + "progress": 31, + "logText": "Elwyl wants me to get a potion of accuracy focus from Hjaldar here in Remgard so that she can finally prove to Elwel that she is wrong." + }, + { + "progress": 40, + "logText": "I have talked to Hjaldar in Remgard. Hjaldar no longer makes potions since his supply of Lyson marrow extract has gone dry." + }, + { + "progress": 41, + "logText": "Apparently, Hjaldar's old friend Mazeg would surely have some Lyson marrow extract to sell. Unfortunately, he does not know where Mazeg currently lives. He only knows that Mazeg traveled far to the west last time they met." + }, + { + "progress": 45, + "logText": "I should find Mazeg and get some Lyson marrow extract so that Hjaldar can start making potions again." + }, + { + "progress": 50, + "logText": "I have talked to Mazeg in the Blackwater mountain settlement. Since I helped the people of the Blackwater mountain before, he is willing to sell me a vial of Lyson marrow extract for only 400 gold." + }, + { + "progress": 51, + "logText": "I have talked to Mazeg in the Blackwater mountain settlement. He is willing to sell me Lyson marrow extract for 800 gold." + }, + { + "progress": 55, + "logText": "I have bought some Lyson marrow extract from Mazeg. I should return to Remgard and give it to Hjaldar." + }, + { + "progress": 60, + "logText": "Hjaldar thanked me for bringing him the marrow extract.", + "rewardExperience": 15000 + }, + { + "progress": 61, + "logText": "Hjaldar can now create potions again, and is willing to trade with me. He even gave me some of the first potions that he made. I should go visit the Elwille sisters here in Remgard again, and show them a potion of accuracy focus." + }, + { + "progress": 70, + "logText": "I have given a potion of accuracy focus to Elwyl." + }, + { + "progress": 71, + "logText": "Unfortunately, it did not cause their squabbling to diminish. On the contrary, they seem to be even more angry at each other now, since both of them had the color wrong.", + "rewardExperience": 9000, + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw/questlist_v0611_3.json b/AndorsTrail/res/raw/questlist_v0611_3.json new file mode 100644 index 000000000..00f7d9914 --- /dev/null +++ b/AndorsTrail/res/raw/questlist_v0611_3.json @@ -0,0 +1,296 @@ +[ + { + "id": "remgard", + "name": "Everything in order", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "I have reached the bridge to enter the town of Remgard. According to the bridge guard, the town is closed for outsiders to enter, and no-one is currently allowed to leave. They are investigating some disappearances of some of the townspeople." + }, + { + "progress": 15, + "logText": "I have offered my assistance in helping the people of Remgard investigate what has happened to the townspeople that have disappeared." + }, + { + "progress": 20, + "logText": "The bridge guard has asked me to investigate an abandoned house to the east along the northern shore of the lake. I should be wary of any inhabitants that may be there." + }, + { + "progress": 30, + "logText": "I have reported back to the bridge guard that I met Algangror in the abandoned house.", + "rewardExperience": 3000 + }, + { + "progress": 31, + "logText": "I have reported back to the bridge guard that the abandoned house was empty.", + "rewardExperience": 3000 + }, + { + "progress": 35, + "logText": "I have been granted entrance into Remgard. I should go visit Jhaeld, the town elder, to talk about what the next step should be. Jhaeld can probably be found in the tavern to the southeast." + }, + { + "progress": 40, + "logText": "Jhaeld was rather arrogant, but told me that they have had a problem with people disappearing for a while now. They have no clue what could be causing it." + }, + { + "progress": 50, + "logText": "I should visit four people in Remgard, and ask them about any clues on what might have happened to the missing people." + }, + { + "progress": 51, + "logText": "First is Norath, whose wife Bethir has disappeared. Norath can be found in the south-westernmost farmhouse." + }, + { + "progress": 52, + "logText": "Second, I should go talk to the Knights of Elythom, here in the tavern." + }, + { + "progress": 53, + "logText": "Third, I should go talk to the old woman Duaina in her house to the south." + }, + { + "progress": 54, + "logText": "Lastly, I should talk to Rothses, the armorer. He lives on the west side of town." + }, + { + "progress": 59, + "logText": "I tried to tell Jhaeld about Algangror, but he dismissed me as he had not heard me." + }, + { + "progress": 61, + "logText": "I have talked to Norath. He and his wife had been fighting recently, but he has no idea on what may have happened to her." + }, + { + "progress": 62, + "logText": "The Knights of Elythom in the Remgard tavern have had one of their knights disappearing recently. No one noticed anything when she disappeared, however." + }, + { + "progress": 63, + "logText": "Duaina has seen me in her visions. I did not understand all that she spoke of, but the parts that were clear were that me and Andor were parts of a larger plot. I wonder what this means? She did not speak of any disappearing people however, not that I could understand anyway." + }, + { + "progress": 64, + "logText": "Rothses told me that Bethir visited him the night before she disappeared, to sell some equipment. He did not see where she went after that." + }, + { + "progress": 70, + "logText": "I have talked to all of the people that Jhaeld wanted me to talk to, but did not get any information from any of them about what may have happened to the missing people. I should go back to Jhaeld and ask what his plans are next." + }, + { + "progress": 75, + "logText": "Jhaeld was really upset that I did not find out anything from the people that I was sent to talk to.", + "rewardExperience": 15000 + }, + { + "progress": 80, + "logText": "If I still want to help Jhaeld and the people of Remgard, I should look for clues in other places.", + "finishesQuest": 1 + }, + { + "progress": 110, + "logText": "Jhaeld does not want to talk to me. I will not help them find out what happened to the missing people of Remgard.", + "finishesQuest": 1 + } + ] + }, + { + "id": "remgard2", + "name": "What is that stench?", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "I have told Jhaeld, the village elder in Remgard, about the woman named Algangror that lives in the abandoned house to the east along the northern shore of the lake outside Remgard." + }, + { + "progress": 20, + "logText": "Jhaeld told me that he would rather not deal with her, since he believes she is very dangerous. For the sake of his guards, he will not risk going against her since he is afraid of what might happen to all of them." + }, + { + "progress": 21, + "logText": "If I want to help Jhaeld and the people of Remgard, I should find a way to make Algangror disappear. He also warns me to be extremely careful." + }, + { + "progress": 30, + "logText": "Algangror admitted to me that she had made some people disappear from Remgard. She would not tell me what happened to them though." + }, + { + "progress": 35, + "logText": "I have started attacking Algangror. I should return to Jhaeld with proof of defeating her when she is dead." + }, + { + "progress": 40, + "logText": "I have told Jhaeld that I defeated Algangror." + }, + { + "progress": 41, + "logText": "Jhaeld was very pleased to hear the good news. The people of Remgard should now be safe, and the town can be opened to outsiders again." + }, + { + "progress": 45, + "logText": "For helping the people of Remgard find the cause of the disappearing people, Jhaeld told me to talk to Rothses. He might be able to improve some of my equipment.", + "rewardExperience": 21000, + "finishesQuest": 1 + }, + { + "progress": 46, + "logText": "Ervelyn, the Remgard tailor, gave me a feathered hat as thanks for helping the people of Remgard find out what happened to the missing people." + } + ] + }, + { + "id": "fiveidols", + "name": "The five idols", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Algangror wants me to help her with a task. She cannot describe the nature of the task, or the reasoning behind it. If I help her, she has promised to give me her enchanted necklace, that apparently is worth a lot." + }, + { + "progress": 20, + "logText": "I have agreed to help Algangror with her task." + }, + { + "progress": 30, + "logText": "Algangror wants me to place five idols near five different people in Remgard. The idols should be placed near the beds of these five people, and must be hidden so that they are not found easily." + }, + { + "progress": 31, + "logText": "The first person is Jhaeld, the village elder that can be found in the Remgard tavern." + }, + { + "progress": 32, + "logText": "Second, I should place an idol by the bed of Larni the farmer, that lives in one of the northern cabins in Remgard." + }, + { + "progress": 33, + "logText": "The third person is Arnal the weapon-smith, that lives in the northwest of Remgard." + }, + { + "progress": 34, + "logText": "Fourth is Emerei, that can be found to the southeast of Remgard." + }, + { + "progress": 35, + "logText": "The fifth person is Carthe. Carthe lives on the eastern shore of Remgard, near the tavern." + }, + { + "progress": 37, + "logText": "I must not tell anyone of my task, or of the placement of the idols." + }, + { + "progress": 41, + "logText": "I have placed an idol by Jhaeld's bed." + }, + { + "progress": 42, + "logText": "I have placed an idol by Larni the farmer's bed." + }, + { + "progress": 43, + "logText": "I have placed an idol by Arnal's bed." + }, + { + "progress": 44, + "logText": "I have placed an idol by Emerei's bed." + }, + { + "progress": 45, + "logText": "I have placed an idol by Carthe's bed." + }, + { + "progress": 50, + "logText": "All the idols have been placed by the beds of the people that Algangror told me to visit. I should return to Algangror." + }, + { + "progress": 51, + "logText": "Algangror thanked me for helping her." + }, + { + "progress": 60, + "logText": "She told me her story, with how she used to live in the city, but was persecuted for her beliefs. According to her, the persecution was totally unjustified since she does no harm to people." + }, + { + "progress": 61, + "logText": "To take revenge on the city of Remgard, she managed to lure some people into her cabin and turn them into rats." + }, + { + "progress": 70, + "logText": "For helping her with the tasks that she could not perform herself, Algangror gave me her enchanted necklace, 'Marrowtaint'.", + "rewardExperience": 21000, + "finishesQuest": 1 + }, + { + "progress": 100, + "logText": "I have decided not to help Algangror with her task.", + "finishesQuest": 1 + } + ] + }, + { + "id": "kaverin", + "name": "Old friends?", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "I met Kaverin in Remgard, that apparently is an old acquaintance of Unzel, who lives outside of Fallhaven." + }, + { + "progress": 20, + "logText": "Kaverin wants me to deliver a message to Unzel." + }, + { + "progress": 21, + "logText": "I have declined to help Kaverin.", + "finishesQuest": 1 + }, + { + "progress": 22, + "logText": "I have agreed to deliver the message." + }, + { + "progress": 25, + "logText": "Kaverin has given me the message that he wants me to deliver to Unzel." + }, + { + "progress": 30, + "logText": "I have delivered the message to Unzel. I should return to Kaverin in Remgard." + }, + { + "progress": 40, + "logText": "Kaverin thanked me for delivering the message to Unzel.", + "rewardExperience": 10000 + }, + { + "progress": 45, + "logText": "In return, Kaverin gave me an old map that he had acquired. Apparently, it leads to Vacor's old hideout." + }, + { + "progress": 60, + "logText": "Kaverin was furious over the fact that I killed Unzel, and that I helped Vacor. He started attacking me. I should return to Vacor once Kaverin is dead." + }, + { + "progress": 70, + "logText": "Kaverin was carrying a sealed message. Vacor immediately recognized the seal, and seemed very interested in it." + }, + { + "progress": 75, + "logText": "I have given Vacor the message that Kaverin was carrying. In return, Vacor gave me an old map, leading to his old hideout.", + "rewardExperience": 10000 + }, + { + "progress": 90, + "logText": "I should try to find Vacor's old hideout, on the road to the west of the former prison of Flagstone, southwest of Fallhaven." + }, + { + "progress": 100, + "logText": "I have found Vacor's old hideout.", + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw/questlist_v068.json b/AndorsTrail/res/raw/questlist_v068.json new file mode 100644 index 000000000..3e4cdfb84 --- /dev/null +++ b/AndorsTrail/res/raw/questlist_v068.json @@ -0,0 +1,211 @@ +[ + { + "id": "farrik", + "name": "Night visit", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Farrik in the Fallhaven Thieves' Guild told me of a plan to help a fellow thief escape from the Fallhaven jail.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Farrik in the Fallhaven Thieves' Guild told me the details of the plan, and I accepted the task of helping him. The guard captain apparently has a drinking problem. The plan is that I get a prepared mead from the cook in the Thieves' Guild that will knock out the guard captain in the jail. I might be required to bribe the guard captain.", + "finishesQuest": 0 + }, + { + "progress": 25, + "logText": "I got the prepared mead from the cook in the Thieves' Guild.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "I told Farrik that I don't fully agree with their plan. I might tell the guard captain about their shady plan.", + "finishesQuest": 0 + }, + { + "progress": 32, + "logText": "I have given the prepared mead to the guard captain.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "I have told the guard captain of the plan that the thieves have to release their friend.", + "finishesQuest": 0 + }, + { + "progress": 50, + "logText": "The guard captain wants me to tell the thieves that the security will be lowered for tonight. We might be able to catch some of the thieves.", + "finishesQuest": 0 + }, + { + "progress": 60, + "logText": "I managed to bribe the guard captain into drinking the prepared mead. He should be out during the night allowing the thieves to break their friend free.", + "finishesQuest": 0 + }, + { + "progress": 70, + "logText": "Farrik rewarded me for helping the Thieves' Guild.", + "rewardExperience": 1500, + "finishesQuest": 1 + }, + { + "progress": 80, + "logText": "I have told Farrik that the security will be lowered tonight.", + "finishesQuest": 0 + }, + { + "progress": 90, + "logText": "The guard captain thanked me for helping him plan to catch the thieves. He said he will also tell other guards that I helped him.", + "rewardExperience": 1700, + "finishesQuest": 1 + } + ] + }, + { + "id": "lodar", + "name": "A lost potion", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "I should find a potion maker called Lodar. Umar in the Fallhaven Thieves' Guild told me that I will need to know the right words to pass a guardian in order to reach Lodar's hideaway.", + "finishesQuest": 0 + }, + { + "progress": 15, + "logText": "Umar told me I should go see someone called Ogam in Vilegard. Ogam can supply me with the right words to reach Lodar's hideaway.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "I have visited Ogam in southwest Vilegard. He was talking in what seemed like riddles. I could barely make out some details when I asked about Lodar's hideaway. 'Halfway between the Shadow and the light. Rocky formations.' and the words 'Glow of the Shadow.' were among the things he said. I am not sure what they mean.", + "finishesQuest": 0 + } + ] + }, + { + "id": "vilegard", + "name": "Trusting an outsider", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "The people of Vilegard are very suspicious of outsiders. I was told to go see Jolnor in the Vilegard chapel if I want to gain their trust.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "I have talked to Jolnor in the Vilegard chapel. He suggests I help three influential people in order to gain the trust of the people in Vilegard. I should help Kaori, Wrye and Jolnor in Vilegard.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "I have helped all three people in Vilegard that Jolnor suggested. Now the people of Vilegard should trust me more.", + "rewardExperience": 2100, + "finishesQuest": 1 + } + ] + }, + { + "id": "kaori", + "name": "Kaori's errands", + "showInLog": 1, + "stages": [ + { + "progress": 5, + "logText": "Jolnor in Vilegard chapel wants me to talk to Kaori in northern Vilegard, to see if she wants any help.", + "finishesQuest": 0 + }, + { + "progress": 10, + "logText": "Kaori in northern Vilegard wants me to bring her 10 bonemeal potions.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "I have brought 10 bonemeal potions to Kaori.", + "rewardExperience": 520, + "finishesQuest": 1 + } + ] + }, + { + "id": "wrye", + "name": "Uncertain cause", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Jolnor in Vilegard chapel wants me to talk to Wrye in northern Vilegard. She has apparently lost her son recently.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "Wrye in northern Vilegard tells me that her son Rincel has gone missing. She thinks that he has died or gotten critically hurt.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "Wrye tells me that she thinks the royal guard from Feygard are involved in his disappearance, and that they have recruited him.", + "finishesQuest": 0 + }, + { + "progress": 40, + "logText": "Wrye wants me to go search for clues as to what has happened to her son.", + "finishesQuest": 0 + }, + { + "progress": 41, + "logText": "I should go look in the Vilegard tavern and the Foaming Flask tavern north of Vilegard.", + "rewardExperience": 200, + "finishesQuest": 0 + }, + { + "progress": 42, + "logText": "I heard of a boy being in the Foaming Flask tavern a while ago. Apparently he left to the west of the tavern somewhere.", + "finishesQuest": 0 + }, + { + "progress": 80, + "logText": "To the northwest of Vilegard I found a man that had found Rincel fighting some monsters. Rincel had apparently left Vilegard by his own will to go see the city of Feygard. I should go tell Wrye in northern Vilegard what happened to her son.", + "finishesQuest": 0 + }, + { + "progress": 90, + "logText": "I have told Wrye the truth about her son's disappearance.", + "rewardExperience": 520, + "finishesQuest": 1 + } + ] + }, + { + "id": "jolnor", + "name": "Spies in the foam", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Jolnor in Vilegard chapel tells me of a guard outside of the Foaming Flask tavern, that he thinks is a spy for the Feygard royal guard. He wants me to make the guard disappear, in any way that I see fit. The tavern should be just north of Vilegard.", + "finishesQuest": 0 + }, + { + "progress": 20, + "logText": "I have convinced the guard outside the Foaming Flask tavern to leave after his shift ends.", + "finishesQuest": 0 + }, + { + "progress": 21, + "logText": "I have started a fight with the guard outside the Foaming Flask tavern. I should bring his Feygard royal guard ring to Jolnor once he is dead to show Jolnor that he has disappeared.", + "finishesQuest": 0 + }, + { + "progress": 30, + "logText": "I have told Jolnor that the guard is now gone.", + "rewardExperience": 630, + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/raw/questlist_v069.json b/AndorsTrail/res/raw/questlist_v069.json new file mode 100644 index 000000000..7cf9b3c3a --- /dev/null +++ b/AndorsTrail/res/raw/questlist_v069.json @@ -0,0 +1,368 @@ +[ + { + "id": "bwm_agent", + "name": "The agent and the beast", + "showInLog": 1, + "stages": [ + { + "progress": 1, + "logText": "I met a man seeking help for his settlement, the 'Blackwater Mountain'. Supposedly, his settlement is being attacked by monsters and bandits, and they need help from the outside." + }, + { + "progress": 5, + "logText": "I have agreed to help the man and Blackwater Mountain in dealing with the problem." + }, + { + "progress": 10, + "logText": "The man told me to meet him on the other side of the collapsed mine. He will crawl through the mine shaft and I will descend into the pitch-black abandoned mine." + }, + { + "progress": 20, + "logText": "I have navigated through the pitch-black abandoned mine, and met the man on the other side. He seemed very anxious about telling me to head straight to the east once I exit the mine. I should meet the man at the bottom of the mountain to the east." + }, + { + "progress": 25, + "logText": "I heard a story about Prim and the Blackwater Mountain settlement fighting against each other." + }, + { + "progress": 30, + "logText": "I should follow the mountain path up the mountain to the Blackwater settlement." + }, + { + "progress": 40, + "logText": "I met the man again on my way up to Blackwater Mountain. I should proceed further up the mountain." + }, + { + "progress": 50, + "logText": "I have made it up to the snow-filled parts of the Blackwater Mountain. The man told me to proceed further up the mountain. Apparently, the Blackwater Mountain settlement is close by." + }, + { + "progress": 60, + "logText": "I have reached the Blackwater mountain settlement. I should find and talk to their battle master, Harlenn." + }, + { + "progress": 65, + "logText": "I have spoken to Harlenn in the Blackwater Mountain settlement. Apparently, the settlement is under attack by a number of monsters, the Aulaeth and white wyrms. On top of that, they are being attacked by the people of Prim." + }, + { + "progress": 66, + "logText": "Harlenn thinks the people of Prim are behind the monster attacks somehow." + }, + { + "progress": 70, + "logText": "Harlenn wants me to give a message to Guthbered of Prim. Either the people of Prim stop their attacks on the Blackwater Mountain settlement, or they will have to be dealt with themselves. I should go talk to Guthbered in Prim." + }, + { + "progress": 80, + "logText": "Guthbered denies that the people of Prim have anything to do with the monster attacks on the Blackwater mountain settlement. I should go talk to Harlenn" + }, + { + "progress": 90, + "logText": "Harlenn is sure that the people of Prim are behind the attacks somehow." + }, + { + "progress": 95, + "logText": "Harlenn wants me to go to Prim and look for signs that they are preparing for an attack on the settlement. I should go look for clues around where Guthbered stays." + }, + { + "progress": 100, + "logText": "I have found some plans in Prim about recruiting mercenaries and attacking the Blackwater Mountain settlement. I should go talk to Harlenn immediately." + }, + { + "progress": 110, + "logText": "Harlenn thanked me for investigating the attack plans.", + "rewardExperience": 1150 + }, + { + "progress": 120, + "logText": "To make the attacks on the Blackwater Mountain settlement stop, Harlenn wants me to assassinate Guthbered in Prim." + }, + { + "progress": 130, + "logText": "I have started a fight with Guthbered." + }, + { + "progress": 131, + "logText": "I told Guthbered that I was sent to kill him, but I let him live. He thanked me deeply, and left Prim.", + "rewardExperience": 2100 + }, + { + "progress": 149, + "logText": "I have told Harlenn that Guthbered is gone." + }, + { + "progress": 150, + "logText": "Harlenn thanked me for the help I have provided. Hopefully, the attacks on the Blackwater Mountain settlement should stop now.", + "rewardExperience": 5000 + }, + { + "progress": 240, + "logText": "I am now trusted in the Blackwater Mountain settlement, and all services should be available for me to use.", + "finishesQuest": 1 + }, + { + "progress": 250, + "logText": "I have decided to not help the people of the Blackwater Mountain settlement.", + "finishesQuest": 1 + }, + { + "progress": 251, + "logText": "Since I am helping Prim, Harlenn no longer wants to talk to me.", + "finishesQuest": 1 + } + ] + }, + { + "id": "prim_innquest", + "name": "Well rested", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "I talked to the cook in Prim, at the base of Blackwater Mountain. There is a back room available for rent, but it is currently rented out to Arghest. I should go talk to Arghest to see whether he still wants to rent the room. The cook pointed me towards the southwest of Prim." + }, + { + "progress": 20, + "logText": "I talked to Arghest about the back room at the inn. He is still interested in having it as an option to rest at. But he told me he could probably be persuaded to let me use it if I compensate him sufficiently." + }, + { + "progress": 30, + "logText": "Arghest wants me to bring him 5 bottles of milk. I can probably find some milk in any of the larger villages." + }, + { + "progress": 40, + "logText": "I have brought the milk to Arghest. He agreed to let me use the back room at the Prim inn. I should be able to rest there now. I should go talk to the cook at the inn.", + "rewardExperience": 500 + }, + { + "progress": 50, + "logText": "I have explained to the cook that I have permission by Arghest to use the back room.", + "finishesQuest": 1 + } + ] + }, + { + "id": "prim_hunt", + "name": "Clouded intent", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Just outside the collapsed mine on the way to Blackwater Mountain, I met a man from the village of Prim. He begged me to help them." + }, + { + "progress": 11, + "logText": "The village of Prim needs help from someone from the outside to deal with attacks from some monsters. I should speak to Guthbered in Prim if I want to help them." + }, + { + "progress": 15, + "logText": "Guthbered can be found in the main hall of Prim. I should look for a stone house in the center of town." + }, + { + "progress": 20, + "logText": "I talked to Guthbered about the story about Prim. Prim has recently been under constant attack from the Blackwater Mountain settlement." + }, + { + "progress": 25, + "logText": "Guthbered wants me to go up to the settlement atop the Blackwater Mountain and ask their battle master Harlenn why (or if) they have summoned the Gornaud monsters against Prim." + }, + { + "progress": 30, + "logText": "I have talked to Harlenn about the attacks on Prim. He denies that the people of the Blackwater Mountain settlement have anything to do with them. I should go talk to Guthbered in Prim again." + }, + { + "progress": 40, + "logText": "Guthbered still believes that the people in the Blackwater settlement have something to do with the attacks." + }, + { + "progress": 50, + "logText": "Guthbered wants me to go look for any clues that the people of the Blackwater Mountain settlement is preparing for a larger attack on Prim. I should go look for hints near Harlenn's private quarters, but make sure not to be seen." + }, + { + "progress": 60, + "logText": "I have found some papers around Harlenn's private quarters outlining a plan to attack Prim. I should go talk to Guthbered immediately." + }, + { + "progress": 70, + "logText": "Guthbered thanked me for helping him find evidence of the plans for an attack.", + "rewardExperience": 1150 + }, + { + "progress": 80, + "logText": "In order to make the attacks on Prim stop, Guthbered wants me to kill Harlenn up in the Blackwater Mountain settlement." + }, + { + "progress": 90, + "logText": "I have started a fight with Harlenn." + }, + { + "progress": 91, + "logText": "I told Harlenn that I was sent to kill him, but I let him live. He thanked me deeply, and left the settlement.", + "rewardExperience": 2100 + }, + { + "progress": 99, + "logText": "I have told Guthbered that Harlenn is gone." + }, + { + "progress": 100, + "logText": "Guthbered thanked me for the help I have provided to Prim. Hopefully, the attacks on Prim should stop now. As thanks, Guthbered gave me some items and a forged permit so that I can enter the inner chamber up in the Blackwater Mountain settlement.", + "rewardExperience": 5000 + }, + { + "progress": 140, + "logText": "I have shown the forged permit to the guard and was let through to the inner chamber." + }, + { + "progress": 240, + "logText": "I am now trusted in Prim, and all services should be available for me to use.", + "finishesQuest": 1 + }, + { + "progress": 250, + "logText": "I have decided to not help the people of Prim.", + "finishesQuest": 1 + }, + { + "progress": 251, + "logText": "Since I am helping the Blackwater Mountain settlement, Guthbered no longer wants to talk to me.", + "finishesQuest": 1 + } + ] + }, + { + "id": "kazaul", + "name": "Lights in the dark", + "showInLog": 1, + "stages": [ + { + "progress": 8, + "logText": "I have made my way into the inner chamber in the Blackwater Mountain settlement and found a group of mages led by a man named Throdna." + }, + { + "progress": 9, + "logText": "Throdna seems very interested in someone (or something) called Kazaul, and in particular a ritual performed in its name." + }, + { + "progress": 10, + "logText": "I have agreed to help Throdna find out more about the ritual itself, by looking for pieces of the ritual that apparently are scattered across the mountain. I should go look for the parts of the Kazaul ritual on the mountain path down from Blackwater Mountain to Prim." + }, + { + "progress": 11, + "logText": "I need to find the two parts of the chant and the three pieces describing the ritual itself, and return to Throdna once I have found them all." + }, + { + "progress": 21, + "logText": "I have found the first half of the chant for the Kazaul ritual." + }, + { + "progress": 22, + "logText": "I have found the second half of the chant for the Kazaul ritual." + }, + { + "progress": 25, + "logText": "I have found the first piece of the Kazaul ritual." + }, + { + "progress": 26, + "logText": "I have found the second piece of the Kazaul ritual." + }, + { + "progress": 27, + "logText": "I have found the third piece of the Kazaul ritual." + }, + { + "progress": 30, + "logText": "Throdna thanked me for finding all the pieces of the ritual.", + "rewardExperience": 3600 + }, + { + "progress": 40, + "logText": "Throdna wants me to put an end to the Kazaul spawn uprising that has taken place near the Blackwater Mountain. There is a shrine at the base of the mountain that i should investigate closer." + }, + { + "progress": 41, + "logText": "I have been given a vial of purifying spirit that Throdna wants me to apply to the shrine of Kazaul. I should return to Throdna when I have found and purified the shrine." + }, + { + "progress": 50, + "logText": "In the shrine at the base of Blackwater Mountain, I met a guardian of Kazaul. By reciting the verses of the ritual chant, I was able to make the guardian attack me." + }, + { + "progress": 60, + "logText": "I have purified the shrine of Kazaul.", + "rewardExperience": 3200 + }, + { + "progress": 100, + "logText": "I had expected some form of appreciation from Throdna for helping him learn more about the ritual and for purifying the shrine. But he seemed more occupied with rambling on about Kazaul. I could not make out anything sane from his ramblings.", + "finishesQuest": 1 + } + ] + }, + { + "id": "bwm_wyrms", + "name": "No weakness", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Herec on the second level of the Blackwater Mountain settlement is researching the white wyrms outside the settlement. He wants me to bring him 5 white wyrm claws so that he can continue his research. Apparently, only some of the wyrms have these claws. I will have to kill some to find them." + }, + { + "progress": 20, + "logText": "I have given the 5 white wyrm claws to Herec." + }, + { + "progress": 30, + "logText": "Herec has finished making a potion of fatigue restoration that will be very useful when fighting against the wyrms in the future.", + "rewardExperience": 1500, + "finishesQuest": 1 + } + ] + }, + { + "id": "bjorgur_grave", + "name": "Awoken from slumber", + "showInLog": 1, + "stages": [ + { + "progress": 10, + "logText": "Bjorgur in Prim at the base of the Blackwater Mountain thinks that something has disturbed the grave of his parents, to the southwest of Prim, just outside the Elm mine." + }, + { + "progress": 15, + "logText": "Bjorgur wants me to go check the grave, and make sure his family's dagger is still secure in the tomb." + }, + { + "progress": 20, + "logText": "Fulus in Prim is interested in obtaining Bjorgur's family dagger that Bjorgur's grandfather used to possess." + }, + { + "progress": 30, + "logText": "I met a man that wielded a strange looking dagger in the lower parts of a tomb to the southwest of Prim. He must have robbed this dagger from the grave." + }, + { + "progress": 40, + "logText": "I placed the dagger back into its place in the tomb. The restless undead seem much less restless now, strangely enough.", + "rewardExperience": 200 + }, + { + "progress": 50, + "logText": "Bjorgur thanked me for my assistance. He told me I should also seek his relatives in Feygard.", + "rewardExperience": 1100, + "finishesQuest": 1 + }, + { + "progress": 51, + "logText": "I have told Fulus that I helped Bjorgur return his family dagger to its original place." + }, + { + "progress": 60, + "logText": "I have given Bjorgur's family dagger to Fulus. He thanked me for bringing it to him, and rewarded me handsomely.", + "rewardExperience": 1700, + "finishesQuest": 1 + } + ] + } +] diff --git a/AndorsTrail/res/values-de/content_actorconditions.xml b/AndorsTrail/res/values-de/content_actorconditions.xml deleted file mode 100644 index e7365e625..000000000 --- a/AndorsTrail/res/values-de/content_actorconditions.xml +++ /dev/null @@ -1,52 +0,0 @@ - - - - -[id|name|iconID|category|isStacking|isPositive|hasRoundEffect|round_visualEffectID|round_boostHP_Min|round_boostHP_Max|round_boostAP_Min|round_boostAP_Max|hasFullRoundEffect|fullround_visualEffectID|fullround_boostHP_Min|fullround_boostHP_Max|fullround_boostAP_Min|fullround_boostAP_Max|hasAbilityEffect|boostMaxHP|boostMaxAP|moveCostPenalty|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|]; -{bless|Segen|actorconditions_1:41|0||1|||||||||||||1|||||5|||||||}; -{poison_weak|Schwaches Gift|actorconditions_1:60|3|||1|2|-1|-1|||||||||||||||||||||}; -{str|Stärke|actorconditions_1:70|2||1|||||||||||||1||||||||2|2|||}; -{regen|Regeneration des Schattens|actorconditions_1:35|0||1|1|1|1|1|||||||||0||||||||||||}; - - - -[id|name|iconID|category|isStacking|isPositive|hasRoundEffect|round_visualEffectID|round_boostHP_Min|round_boostHP_Max|round_boostAP_Min|round_boostAP_Max|hasFullRoundEffect|fullround_visualEffectID|fullround_boostHP_Min|fullround_boostHP_Max|fullround_boostAP_Min|fullround_boostAP_Max|hasAbilityEffect|boostMaxHP|boostMaxAP|moveCostPenalty|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|]; -{speed_minor|Geringe Geschwindigkeit|actorconditions_1:87|2||1|||||||||||||1||2||||||||||}; -{fatigue_minor|Geringe Ermüdung|actorconditions_1:14|2|||0||||||0||||||1|||2|2||||-1|-1|||}; -{feebleness_minor|Geringe Schwächung der Waffen|actorconditions_1:74|1|||||||||||||||1||||||||-3|-3|||}; -{bleeding_wound|Blutende Wunde|actorconditions_2:0|3|1||1|0|-1|-1|||||||||||||||||||||}; -{rage_minor|Geringe Berserkerwut|actorconditions_1:90|1||1|0|-1|||||||||||1|35||||60|||||-90|-1|}; -{blackwater_misery|Blackwater\'s Elend|actorconditions_1:58|3|||||||||||||||1||||1|-50|-50||||||}; -{intoxicated|Betäubt|actorconditions_2:1|1||1|||||||||||||1|15|||1|-30|||4|4|||}; -{dazed|Benommen|actorconditions_1:65|1|||||||||||||||1||||||||||-40||}; - - - -[id|name|iconID|category|isStacking|isPositive|hasRoundEffect|round_visualEffectID|round_boostHP_Min|round_boostHP_Max|round_boostAP_Min|round_boostAP_Max|hasFullRoundEffect|fullround_visualEffectID|fullround_boostHP_Min|fullround_boostHP_Max|fullround_boostAP_Min|fullround_boostAP_Max|hasAbilityEffect|boostMaxHP|boostMaxAP|moveCostPenalty|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|]; -{chaotic_grip|Chaotischer Griff|actorconditions_1:96|1|||0||||||||||||1||||||||||-10|-1|}; -{chaotic_curse|Chaotischer Fluch|actorconditions_1:89|1|||0||||||||||||1||-1||||||-1|-1|-10|-1|}; - - - -[id|name|iconID|category|isStacking|isPositive|hasRoundEffect|round_visualEffectID|round_boostHP_Min|round_boostHP_Max|round_boostAP_Min|round_boostAP_Max|hasFullRoundEffect|fullround_visualEffectID|fullround_boostHP_Min|fullround_boostHP_Max|fullround_boostAP_Min|fullround_boostAP_Max|hasAbilityEffect|boostMaxHP|boostMaxAP|moveCostPenalty|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|]; -{contagion|Infektion durch Insekten|actorconditions_1:58|3|||0|2|||||||||||1|||||-10|||-1|-1|||}; -{blister|Glühende Haut|actorconditions_1:15|3|||1|0|-1|-1|||||||||||||||||||||}; -{stunned|Betäubt|actorconditions_1:95|2|||||||||||||||1||-2|8|5||||||||}; -{focus_dmg|Wucht|actorconditions_1:70|1||1|||||||||||||1||||1||||3|3|||}; -{focus_ac|Treffsicherheit|actorconditions_1:98|1||1|||||||||||||1||||1|40|||||||}; -{poison_irdegh|Irdegh-Gift|actorconditions_1:60|3|1||1|2|-1|-1|||||||||||||||||||||}; - - - -[id|name|iconID|category|isStacking|isPositive|hasRoundEffect|round_visualEffectID|round_boostHP_Min|round_boostHP_Max|round_boostAP_Min|round_boostAP_Max|hasFullRoundEffect|fullround_visualEffectID|fullround_boostHP_Min|fullround_boostHP_Max|fullround_boostAP_Min|fullround_boostAP_Max|hasAbilityEffect|boostMaxHP|boostMaxAP|moveCostPenalty|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|]; -{rotworm|Kazaul-Maden|actorconditions_1:82|2|||||||||||||||1|-15|-3|||||||||-1|}; -{shadowbless_str|Stärkesegen des Schattens|actorconditions_1:70|0||1|||||||||||||1||||||||1|1|||}; -{shadowbless_heal|Erhohlungssegen des Schattens|actorconditions_1:35|0||1|1|1|1|1|||||||||||||||||||||}; -{shadowbless_acc|Genauigkeitsegen des Schattens|actorconditions_1:98|0||1|||||||||||||1|||||30|||||||}; -{shadowbless_guard|Beschützersegen des Schattens|actorconditions_1:91|0||1|||||||||||||1|30||||||||||1|}; -{crit1|Innere Blutung|actorconditions_1:89|2|1||||||||||||||1||||1|-50|||-3|-3|||}; -{crit2|Knochenbruch|actorconditions_1:89|2|1||||||||||||||1||||||||||-50|-2|}; -{concussion|Gehirnerschütterung|actorconditions_1:80|2|1||||||||||||||1|||||-30|||||||}; - - - diff --git a/AndorsTrail/res/values-de/content_conversationlist.xml b/AndorsTrail/res/values-de/content_conversationlist.xml deleted file mode 100644 index 38e706abd..000000000 --- a/AndorsTrail/res/values-de/content_conversationlist.xml +++ /dev/null @@ -1,1026 +0,0 @@ - - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{mikhail_start_select|||{{|mikhail_start_select2|mikhail_bread:100||||}{|mikhail_bread_continue|mikhail_bread:10||||}{|mikhail_start_select2|||||}}|}; -{mikhail_start_select2|||{{|mikhail_start_select_default|mikhail_rats:100||||}{|mikhail_rats_continue|mikhail_rats:10||||}{|mikhail_start_select_default|||||}}|}; -{mikhail_start_select_default|||{{|mikhail_visited|andor:1||||}{|mikhail_gamestart|||||}}|}; -{mikhail_gamestart|Oh gut, du bist wach.||{{N|mikhail_visited|||||}}|}; -{mikhail_visited|Ich kann deinen Bruder Andor nirgends finden. Weißt du, wo er sein könnte? Er ging gestern weg und ist bis jetzt noch nicht zurück.|{{0|andor|1|}}|{{N|mikhail3|||||}}|}; -{mikhail3|Naja, er wird wahrscheinlich bald wieder da sein.||{{N|mikhail_default|||||}}|}; -{mikhail_default|Kann ich dir noch bei etwas anderem helfen?||{{Hast du eine Aufgabe für mich?|mikhail_tasks|||||}{Gibt es noch etwas anderes, das du mir über Andor sagen kannst?|mikhail_andor1|||||}}|}; -{mikhail_tasks|Oh natürlich, es gibt zwei Dinge, die erledigt werden müssten: Brot und Ratten. Was möchtest du machen?||{{Was ist mit dem Brot?|mikhail_bread_select|||||}{Was ist mit den Ratten?|mikhail_rats_select|||||}{Reden wir über die anderen Dinge.|mikhail_default|||||}}|}; -{mikhail_andor1|Wie ich schon sagte, ging Andor gestern weg und ist seither nicht wieder gekommen. Ich mache mir langsam Sorgen um ihn. Bitte suche nach deinem Bruder, denn er hat eigentlich gesagt, dass er nur kurz weggehen würde.||{{N|mikhail_andor2|||||}}|}; -{mikhail_andor2|Vielleicht ist er wieder in die Lagerhöhle gegangen und sitzt dort fest. Oder er ist in Leta\'s Keller und trainiert wieder mal mit diesem Holzschwert. Bitte schau, ob du ihn irgendwo im Dorf finden kannst.||{{N|mikhail_default|||||}}|}; -{mikhail_bread_select|||{{|mikhail_bread_complete2|mikhail_bread:100||||}{|mikhail_bread_continue|mikhail_bread:10||||}{|mikhail_bread_start|||||}}|}; -{mikhail_bread_start|Oh, das habe ich beinahe vergessen: Wenn du Zeit hast, gehe bitte zu Mara ins Gemeindehaus und kaufe noch ein Brot.|{{0|mikhail_bread|10|}}|{{N|mikhail_default|||||}}|}; -{mikhail_bread_continue|Hast Du das Brot von Mara schon besorgt?||{{Ja, hier ist es.|mikhail_bread_complete||bread|1|0|}{Nein, noch nicht.|mikhail_default|||||}}|}; -{mikhail_bread_complete|Danke schön, jetzt kann ich endlich frühstücken. Hier, diese Münzen hast du dir verdient.|{{0|mikhail_bread|100|}{1|gold20||}}|{{N|mikhail_default|||||}}|}; -{mikhail_bread_complete2|Danke, dass du mir das Brot geholt hast.||{{Gern geschehen.|mikhail_default|||||}}|}; -{mikhail_rats_select|||{{|mikhail_rats_complete2|mikhail_rats:100||||}{|mikhail_rats_continue|mikhail_rats:10||||}{|mikhail_rats_start|||||}}|}; -{mikhail_rats_start|Ich habe heute Morgen ein paar Ratten in unserem Garten entdeckt. Könntest du sie bitte töten, bevor sie Schaden anrichten?|{{0|mikhail_rats|10|}}|{{Ich habe mich schon um die Ratten gekümmert.|mikhail_rats_complete||tail_trainingrat|2|0|}{Okay, ich werde mal im Garten nach dem Rechten sehen.|mikhail_rats_start2|||||}}|}; -{mikhail_rats_start2|Wenn du von den Ratten verletzt wirst, komm\' wieder rein und ruh dich im Bett aus. Das wird dich wieder zu Kräften kommen lassen.||{{N|mikhail_rats_start3|||||}}|}; -{mikhail_rats_start3|Ach so: Schau mal in deinen Rucksack. Vielleicht ist dort noch der alte Ring, den ich dir einmal gegeben habe. Du solltest ihn an den Finger stecken.||{{Okay, verstanden. Ich kann mich hier ausruhen, wenn ich verletzt werde und ich sollte in meinem Rucksack nach nützlichen Gegenständen suchen.|mikhail_default|||||}}|}; -{mikhail_rats_continue|Hast du die beiden Ratten in unserem Garten erwischt?||{{Ja, das Rattenproblem ist erledigt.|mikhail_rats_complete||tail_trainingrat|2|0|}{Nein, ich bin noch dabei.|mikhail_rats_start2|||||}}|}; -{mikhail_rats_complete|Tatsächlich? Ich bin dir wirklich sehr dankbar für deine Hilfe\n\nDenk\' dran: Wenn du verletzt bist, kannst du dich jederzeit im Bett ausruhen.|{{0|mikhail_rats|100|}}|{{N|mikhail_default|||||}}|}; -{mikhail_rats_complete2|Danke nochmal für deine Hilfe mit den Ratten.\n\nWenn du verletzt bist, kannst du dich in dem Bett dort drüben ausruhen.||{{N|mikhail_default|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{leta1|Hey, das ist mein Haus. Raus hier!||{{Aber ich wollte doch nur...|leta2|||||}{Was ist mit deinem Mann Oromir?|leta_oromir_select|||||}}|}; -{leta2|Zisch ab Junge, raus aus meinem Haus!||{{Was ist mit deinem Mann Oromir?|leta_oromir_select|||||}}|}; -{leta_oromir_select|||{{|leta_oromir_complete2|leta:100||||}{|leta_oromir1|||||}}|}; -{leta_oromir1|Weißt du etwas über meinen Ehemann? Der Faulpelz sollte mir heute bei der Arbeit auf dem Hof helfen, aber er glänzt wieder einmal mit seiner Abwesenheit.\n[Seufz].||{{Ich habe keine Ahnung.|leta_oromir2|||||}{Ja, ich habe gesehen, wie er sich bei einigen Bäumen östlich von hier versteckt hat.|leta_oromir_complete|leta:20||||}}|}; -{leta_oromir2|Wenn du ihn findest, kannst du ihm ausrichten, dass er schnellstens zurück kommen soll um mir bei der Arbeit zu helfen.\nUnd jetzt raus hier!|{{0|leta|10|}}||}; -{leta_oromir_complete|Er versteckt sich? Das sieht ihm ja mal wieder ähnlich. Es wird Zeit, dass ich ihn erinnere, wer hier der Boss ist.\nDanke übrigens für die Information.|{{0|leta|100|}}||}; -{leta_oromir_complete2|Danke für deine Informationen über Oromir. Ich werde ihn mir gleich vorknöpfen.|||}; -{oromir1|Puh, hast du mich erschreckt.\nHallo.||{{Hallo|oromir2|||||}}|}; -{oromir2|Ich verstecke mich vor meiner Frau Leta. Sie wird immer ziemlich sauer, wenn ich ihr nicht auf dem Hof helfe. Bitte erzähle ihr nicht, wo ich bin.|{{0|leta|20|}}|{{In Ordnung.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{audir1|Willkommen in meinem Laden!\n\nBitte schaue dir meine erlesenen Waren nur näher an.||{{Bitte zeige mir dein Angebot.|S|||||}}|}; -{arambold1|Oh Mann, ob ich wohl jemals ein wenig schlafen kann, wenn diese Saufköpfe so weitersingen?\n\nJemand sollte etwas dagegen tun.||{{Kann ich mich hier ausruhen?|arambold2|||||}{Hast du etwas zu verkaufen?|S|||||}}|}; -{arambold2|Na klar Junge, du kannst dich hier ausruhen.\n\nNimm\' dir einfach ein Bett.||{{Wiedersehen, und danke!|X|||||}}|}; -{drunk1|Trink, trink, trink - trink noch ein wenig mehr.\nTrink, trink, trink - dann wird der Becher leer.\n\nHey Junge, willst du bei unserem Trinkspiel mitmachen?||{{Nein danke.|X|||||}{Vielleicht ein andermal.|X|||||}}|}; -{mara_default|Achte nicht auf die besoffenen Typen, die machen immer Ärger.\n\nDarf es was zu essen sein?||{{Hast du etwas zu verkaufen?|S|||||}}|}; -{mara1|||{{|mara_thanks|odair:100||||}{|mara_default|||||}}|}; -{mara_thanks|Ich habe gehört, dass du Odair bei der Säuberung der alten Vorratshöhle geholfen hast. Vielen Dank, wir werden sie bald wieder benutzen können.||{{Es war mir ein Vergnügen.|mara_default|||||}}|}; -{farm1|Bitte stör\' mich nicht, ich habe zu arbeiten.||{{Hast du meinen Bruder Andor gesehen?|farm_andor|||||}}|}; -{farm2|Was? Kannst du nicht sehen, dass ich beschäftigt bin. Belästige jemand anderen.||{{Hast du meinen Bruder Andor gesehen?|farm_andor|||||}}|}; -{farm_andor|Andor? Nein, den hab\' ich in letzter Zeit nicht mehr gesehen.|||}; -{snakemaster|Ah, wen haben wir den hier? Einen Besucher, wie nett. Ich bin beeindruckt, dass du es an meinen Leuten vorbei bis hierher geschafft hast.\n\nNun stirb, jämmerliche Kreatur.||{{Wunderbar, ich habe mich auf einen Kampf gefreut!|F|||||}{Wir werden sehen, wer hier stirbt.|F|||||}{Bitte tut mir nichts!|F|||||}}|}; -{haunt|Oh Sterblicher, befreit mich aus dieser verfluchten Welt!||{{Oh, ich werde dich befreien.|F|||||}{Du meinst, ich soll dich töten?|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{tharal1|Das Leuchten des Schattens sei mit dir, mein Junge.||{{Hast du etwas zu verkaufen?|S|||||}{Was kannst du mir über Knochenmehl sagen?|tharal_bonemeal_select|bonemeal:10||||}}|}; -{tharal_bonemeal_select|||{{|tharal_bonemeal4|bonemeal:30||||}{|tharal_bonemeal1|||||}}|}; -{tharal_bonemeal1|Knochenmehl? Darüber sollten wir lieber nicht reden. Laut einem Erlass von Lord Geomyr ist es nicht mehr erlaubt.||{{Bitte?|tharal_bonemeal2_1|||||}}|}; -{tharal_bonemeal2_1|Nein, wir sollten wirklich nicht darüber reden.||{{Ach, komm\' schon.|tharal_bonemeal2|||||}}|}; -{tharal_bonemeal2|Nun, wenn du darauf bestehst: Bring mir 5 Insektenflügel die ich für das Herstellen von Tränken brauche, dann können wir weiterreden.|{{0|bonemeal|20|}}|{{Hier sind die Insektenflügel.|tharal_bonemeal3||insectwing|5|0|}{Okay, ich werde welche holen.|X|||||}}|}; -{tharal_bonemeal3|Danke mein Junge. Ich weiß, dass ich mich auf dich verlassen kann.|{{0|bonemeal|30|}}|{{N|tharal_bonemeal4|||||}}|}; -{tharal_bonemeal4|Oh ja, Knochenmehl. Gemischt mit den richtigen Zutaten kann es zu einem sehr wirksamen Heilmittel werden.||{{N|tharal_bonemeal5|||||}}|}; -{tharal_bonemeal5|Wir haben es früher oft benutzt. Aber jetzt hat der Bastard Lord Geomyr jeglichen Gebrauch verboten.||{{N|tharal_bonemeal6|||||}}|}; -{tharal_bonemeal6|Wie soll ich jetzt die Leute heilen? Mit normalen Heiltränken? Pah, die sind so unwirksam.||{{N|tharal_bonemeal7|||||}}|}; -{tharal_bonemeal7|Ich kenne jemand, der noch einen Vorrat an Knochenmehl hat, wenn du interessiert bist. Rede mit Thoronir, meinem Priesterkollegen in Fallhaven. Nenne ihm das Passwort \'Leuchten des Schattens\'.||{{Danke. Wiedersehen.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{gruil1|Psst, hey.\n\nWillst du was kaufen?||{{Sicher, zeig\' mir deine Waren.|S|||||}{Ich habe gehört, dass du vor einiger Zeit mit meinem Bruder gesprochen hast.|gruil_select|andor:10||||}}|}; -{gruil_select|||{{|gruil_return|andor:30||||}{|gruil2|||||}}|}; -{gruil2|Dein Bruder? Oh, meinst du Andor? Ich könnte etwas wissen, aber diese Information wird dich was kosten. Wenn du mir eine Giftdrüse von einer dieser Giftschlagen bringst, werde ich es dir vielleicht sagen.|{{0|andor|20|}}|{{Hier, ich habe eine Giftdrüse für dich.|gruil_complete||gland|1|0|}{Okay, ich besorge eine.|X|||||}}|}; -{gruil_complete|Danke Kleiner. Das wird genügen.|{{0|andor|30|}}|{{N|gruil_andor1|||||}}|}; -{gruil_return|Schau Junge, ich habe dir doch schon alles erzählt.||{{N|gruil_andor1|||||}}|}; -{gruil_andor1|Ich habe gestern mit ihm gesprochen. Er fragte, ob ich jemanden mit dem Namen Umar oder so ähnlich kenne. Ich habe keine Ahnung, von was er da geredet hat.||{{N|gruil_andor2|||||}}|}; -{gruil_andor2|Er schien wirklich sehr nervös wegen irgendeiner Sache und brach beinahe fluchtartig auf. Es hatte anscheinend etwas mit der Diebesgilde in Fallhaven zu tun.||{{N|gruil_andor3|||||}}|}; -{gruil_andor3|Das ist alles was ich weiß. Vielleicht fragst du ein wenig in Fallhaven herum. Halte nach meinem Freund Gaela Ausschau, er weiß möglicherweise mehr.||{{Danke, Wiedersehen.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{leonid1|Hallo Junge. Du bist Mikhail\'s Sohn, stimmt\'s? Und du hast noch einen Bruder.\n\nIch bin Leonid, der Vogt von Crossglen.||{{Hast du meinen Bruder Andor gesehen?|leonid_andor|||||}{Was kannst du mir über Crossglen berichten?|leonid_crossglen|||||}{Na dann, bis später.|leonid_bye|||||}}|}; -{leonid_andor|Deinen Bruder? Nein, heute habe ich ihn noch nicht gesehen. Ich denke, dass ich ihn gestern mit Gruil zusammen gesehen habe. Vielleicht weiß er mehr?|{{0|andor|10|}}|{{Danke, ich werde mit Gruil reden. Vorher möchte ich jedoch noch etwas anderes wissen.|leonid_continue|||||}{Danke, ich werde dann mal mit Gruil reden.|leonid_bye|||||}}|}; -{leonid_continue|Kann ich dir noch bei etwas anderem helfen?||{{Hast du meinen Bruder Andor gesehen?|leonid_andor|||||}{Was kannst du mir über Crossglen berichten?|leonid_crossglen|||||}{Na dann, bis später.|leonid_bye|||||}}|}; -{leonid_crossglen|Wie du weißt, ist das hier das Dorf Crossglen. Vor allem sind wir eine Bauerngemeinde.||{{N|leonid_crossglen1|||||}}|}; -{leonid_crossglen1|Wir haben Audir mit seiner Schmiede im Südwesten, die Hütte von Leta und ihrem Mann im Westen, dieses Gemeindehaus und natürlich die Hütte deines Vaters im Nordwesten.||{{N|leonid_crossglen2|||||}}|}; -{leonid_crossglen2|Das war es dann auch schon. Wir versuchen, ein friedliches Leben zu leben.||{{Ist im Dorf kürzlich etwas Besonderes geschehen?|leonid_crossglen3|||||}{In Ordnung, zurück zu den Themen von vorhin.|leonid_continue|||||}}|}; -{leonid_crossglen3|Es gab ein paar kleinere Unruhen vor einigen Wochen - wie du vielleicht bemerkt hast. Einige Dörfler stritten sich über den neuen Erlass von Lord Geomyr.||{{N|leonid_crossglen4|||||}}|}; -{leonid_crossglen4|Lord Geomyr ließ eine Anordnung betreffend der illegalen Verwendung von Knochenmehl als Heilsubstanz verkünden. Einige Dorfbewohner meinten, dass wir uns Lord Geomyr\'s Wort entgegenstellen und es dennoch weiter verwenden sollten.|{{0|bonemeal|10|}}|{{N|leonid_crossglen4_1|||||}}|}; -{leonid_crossglen4_1|Tharal, unser Geistlicher, war besonders aufgeregt und schlug vor, dass wir etwas gegen Lord Geomyr unternehmen sollten.||{{N|leonid_crossglen5|||||}}|}; -{leonid_crossglen5|Andere Dörfler meinten, dass wir Lord Geomyr\'s Erlass befolgen sollten.\n\nIch persönlich habe mich noch nicht entschieden.||{{N|leonid_crossglen6|||||}}|}; -{leonid_crossglen6|Einerseits gewährt Lord Geomyr Crossglen seinen Schutz. *er zeigt auf die Soldaten im Gemeindehaus*||{{N|leonid_crossglen7|||||}}|}; -{leonid_crossglen7|Andererseits fordern die Steuern und die jüngsten Bestimmungen, was erlaubt ist und was nicht, hohen Tribut von Crossglen.||{{N|leonid_crossglen8|||||}}|}; -{leonid_crossglen8|Jemand sollte zur Burg Geomyr gehen und mit dem Verwalter dort über unsere Situation hier in Crossglen sprechen.|{{0|crossglen|1|}}|{{N|leonid_crossglen9|||||}}|}; -{leonid_crossglen9|In der Zwischenzeit, haben wir jegliche Verwendung von Knochenmehl als Heilsubstanz untersagt.||{{Danke für die Information. Ich möchte noch etwas anderes fragen.|leonid_continue|||||}{Danke für die Information. Wiedersehen.|leonid_bye|||||}}|}; -{leonid_bye|Der Schatten sei mit dir.||{{Der Schatten sei auch mit dir.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{odair1|Oh, du bist es. Du und dein Bruder, immer für etwas Ärger gut.||{{N|odair_select|||||}}|}; -{odair_select|||{{|odair_complete2|odair:100||||}{|odair_continue|odair:10||||}{|odair2|||||}}|}; -{odair2|Hmm, vielleicht könntest du mir nützlich sein. Meinst du, dass du eine kleine Aufgabe für mich erledigen kannst?||{{Erzähle mir mehr über die Aufgabe.|odair3|||||}{Sicher, wenn dabei etwas für mich herausspringt.|odair3|||||}}|}; -{odair3|Ich war kürzlich in der Höhle dort *er deutet nach Westen*, um unsere Vorräte zu prüfen. Aber offensichtlich wurde die Höhle von Ratten heimgesucht.||{{N|odair4|||||}}|}; -{odair4|Inbesonders ist mir eine Ratte aufgefallen, die größer als alle anderen war. Denkst du, dass du das Zeug dazu hast, die Ratten zu entfernen?||{{Sicher helfe ich, damit Crossglen die Vorratshöhle wieder benutzen kann.|odair5|||||}{Sicher helfe ich, aber nur, weil dabei etwas für mich herausspringen könnte.|odair5|||||}{Nein danke.|odair_cowards|||||}}|}; -{odair5|Du musst in diese Höhle und die große Ratte töten. Damit sollten wir die Rattenplage in der Höhle stoppen können. Dann endlich können wir unsere Vorratshöhle wieder benutzen.|{{0|odair|10|}}|{{Okay.|X|||||}{Wenn ich so darüber nachdenke, denke ich, dass ich dir doch nicht helfen kann.|odair_cowards|||||}}|}; -{odair_cowards|Ich habe mich nicht getäuscht. Du und dein Bruder wart schon immer Feiglinge.||{{Tschüss.|X|||||}}|}; -{odair_continue|Hast du die große Ratte in der Höhle westlich von hier schon getötet?||{{Ja, ich habe die große Ratte getötet.|odair_complete||tail_caverat|1|0|}{Was sollte ich nochmal tun?|odair5|||||}{Nein, noch nicht.|odair_cowards|||||}}|}; -{odair_complete|Vielen Dank für deine Hilfe, Junge! Vielleicht bis du und dein Bruder doch nicht so feige wie ich dachte. Hier, nimm diese Münzen als Belohnung.|{{0|odair|100|}{1|gold20||}}|{{Danke|X|||||}}|}; -{odair_complete2|Nochmals vielen Dank für deine Hilfe. Nun können wir die Höhle endlich wieder als Vorratsraum verwenden.||{{Wiedersehen.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{jan_start_select|||{{|jan_complete2|jan:100||||}{|jan_return|jan:10||||}{|jan_default|||||}}|}; -{jan_default|Hallo Junge. Lass mich bitte allein mit meiner Trauer.||{{Was ist das Problem?|jan_default2|||||}{Möchtest du darüber reden?|jan_default2|||||}{Alles klar, Wiedersehen.|X|||||}}|}; -{jan_default2|Oh, es ist so traurig. Ich möchte wirklich nicht darüber reden.||{{Bitte, erzähl es mir.|jan_default3|||||}{Okay, Wiedersehen.|X|||||}}|}; -{jan_default3|Nun, ich denke es ist in Ordnung wenn ich es dir erzähle. Du scheinst ein freundlicher Junge zu sein.||{{N|jan_default4|||||}}|}; -{jan_default4|Mein Freund Gandir, sein Freund Irogotu und ich gingen hinunter in dieses Loch um zu graben. Wir hatten gehört, dass es hier einen verborgenen Schatz gibt.||{{N|jan_default5|||||}}|}; -{jan_default5|Wir haben angefangen zu graben und sind schließlich in ein tiefer liegendes Höhlensystem durchgebrochen. Da haben wir sie entdeckt: Kriechtiere und Käfer.||{{N|jan_default6|||||}}|}; -{jan_default6|Oh, dieses verdammte Kriechzeugs. Hätten mich beinahe getötet.\n\nGandir und ich sagten zu Irogotu, dass wir die Grabung beenden und fliehen sollten, solange wir noch könnten.||{{N|jan_default7|||||}}|}; -{jan_default7|Aber Irogotu wollte weiter in die Höhlen vordringen. Er und Gandir gerieten in Streit und fingen an zu kämpfen.||{{N|jan_default8|||||}}|}; -{jan_default8|Dann passierte es.\n\n*schluchz*\n\nOh, was haben wir nur getan?||{{Bitte erzähl weiter.|jan_default9|||||}}|}; -{jan_default9|Irogotu tötete Gandir mit seinen bloßen Händen. Man konnte das Feuer in seinen Augen sehen, beinahe als hätte er es genossen.||{{N|jan_default10|||||}}|}; -{jan_default10|Ich bin geflohen und habe mich wegen der Kriechtiere und Irogotu selbst auch nicht mehr zurück nach unten getraut.||{{N|jan_default11|||||}}|}; -{jan_default11|Oh dieser verdammte Irogotu. Wenn ich nur zu ihm gelangen könnte, dann würde ich es ihm schon zeigen.||{{Denkst du, ich kann helfen?|jan_default11_1|||||}}|}; -{jan_default11_1|Glaubst du, dass du mir helfen könntest?||{{Sicher! Da könnten ein paar Schätze auf mich warten.|jan_default12|||||}{Sicher! Irogotu soll für seine Taten bezahlen.|jan_default12|||||}{Nein danke, da möchte ich lieber nicht hineingezogen werden. Das klingt gefährlich.|X|||||}}|}; -{jan_default12|Wirklich? Du glaubst, dass du mir helfen kannst? Hm, vielleicht kannst du das wirklich. Hüte dich vor diesen Käfern, sie sind ziemlich zähe Bastarde.|{{0|jan|10|}}|{{N|jan_default13|||||}}|}; -{jan_default13|Wenn du wirklich helfen willst, finde Irogotu unten in dieser Höhle und bring mir Gandir\'s Ring zurück.||{{Sicher, ich werde dir helfen.|jan_default14|||||}{Kannst du mir deine Geschichte noch mal erzählen?|jan_background|||||}{Nichts für ungut, Wiedersehen.|X|||||}}|}; -{jan_default14|Komm zu mir zurück, wenn du fertig bist. Und hole Gandir\'s Ring von Irogotu unten in der Höhle.||{{Okay, bis später.|X|||||}}|}; -{jan_return|Hallo Junge. Hast du Irogotu in der Höhle gefunden?||{{Nein, noch nicht.|jan_default14|||||}{Kannst du mir deine Geschichte noch mal erzählen?|jan_background|||||}{Ja, ich habe Irogotu getötet.|jan_complete||ring_gandir|1|0|}}|}; -{jan_background|Hast du nicht zugehört, als ich dir alles erzählt habe? Muss ich die Geschichte wirklich noch einmal erzählen?||{{Ja, bitte wiederhole die Geschichte noch einmal.|jan_default3|||||}{Ich habe beim ersten Mal nicht so genau zugehört. Wie war das nochmal mit dem Schatz?|jan_default4|||||}{Nein, vergiss es. Ich erinnere mich wieder.|jan_default14|||||}}|}; -{jan_complete2|Danke für deine Hilfe mit Irogotu! Ich stehe für immer in deiner Schuld.||{{Wiedersehen.|X|||||}}|}; -{jan_complete|Warte mal. Du bist wirklich da hinuntergegangen und lebend zurückgekommen? Wie hast du das gemacht. Wow, ich bin schon beinahe gestorben, als ich in die Höhle gegangen bin.\n\nVielen Dank für Gandir\'s Ring. Jetzt habe ich wenigstens eine Erinnerung an ihn.|{{0|jan|100|}}|{{Ich habe gern geholfen. Auf Wiedersehen.|X|||||}{Möge der Schatten mit dir sein. Auf Wiedersehen.|X|||||}{Jaja, ich hab\' es nur wegen der Beute getan.|X|||||}}|}; - -{irogotu|Wen haben wir den da? Wieder ein Abenteurer der gekommen ist, meinen Schatz zu stehlen. Das ist MEINE HÖHLE. Und der Schatz ist MEIN!||{{Hast du Gandir getötet?|irogotu1|jan:10||||}}|}; -{irogotu1|Dieser Frischling Gandir. Er stand mir im Weg. Ich habe ihn lediglich als Werkzeug benutzt, um mich tiefer in diese Höhle zu graben.||{{N|irogotu2|||||}}|}; -{irogotu2|Nebenbei, ich konnte ihn nie ausstehen.||{{Ich schätze, er hat den Tod verdient. Hatte er einen Ring dabei?|irogotu3|||||}{Jan erwähnte etwas von einem Ring?|irogotu3|||||}}|}; -{irogotu3|NEIN! Du kannst ihn nicht haben. Er gehört mir. Und überhaupt, wer bist du Junge, dass du hier herunterkommst, um mich zu stören?!||{{Ich bin kein Junge mehr! Und jetzt gib mir den Ring!|irogotu4|||||}{Gib mir diesen Ring und wir könnten beide lebend aus dieser Sache heraus kommen.|irogotu4|||||}}|}; -{irogotu4|Nein. Wenn du ihn willst, musst du ihn meiner leblosen Hand entreißen. Der Fairness halber sollte ich dir mitteilen, dass ich über große Macht verfüge, so dass du dich eventuell lieber für die Flucht entscheiden solltest.||{{Sehr gut, lass uns sehen, wer von uns sterben wird.|F|||||}{Beim Schatten, Gandir wird gerächt werden.|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fallhaven_citizen1|Hallo, schönes Wetter, nicht wahr?||{{Hast du meinen Bruder Andor gesehen?|fallhaven_andor_1|||||}}|}; -{fallhaven_citizen2|Hallo, möchtest du etwas von mir?||{{Hast du meinen Bruder Andor gesehen?|fallhaven_andor_2|||||}}|}; -{fallhaven_citizen3|Hallo, kann ich dir helfen?||{{Hast du meinen Bruder Andor gesehen?|fallhaven_andor_3|||||}}|}; -{fallhaven_citizen4|Du bis der Junge aus dem Dorf Crossglen, richtig?||{{Hast du meinen Bruder Andor gesehen?|fallhaven_andor_4|||||}}|}; -{fallhaven_citizen5|Geh mir aus dem Weg.|||}; -{fallhaven_citizen6|Ich wünsche dir einen guten Tag.||{{Hast du meinen Bruder Andor gesehen?|fallhaven_andor_6|||||}}|}; -{fallhaven_andor_1|Nein, leider nicht. Ich habe niemanden gesehen, auf den deine Beschreibung passt.|||}; -{fallhaven_andor_2|Ein anderer Junge sagt du? Lass mich mal nachdenken.||{{N|fallhaven_andor_1|||||}}|}; -{fallhaven_andor_3|Hm, möglicherweise habe ich vor ein paar Tagen jemand gesehen, auf den die Beschreibung passt. Erinnere mich aber nicht mehr wo.|||}; -{fallhaven_andor_4|Oh ja, vor ein paar Tagen war da ein anderer Junge aus dem Dorf Crossglen. Obwohl ich nicht ganz sicher bin, ob deine Beschreibung passt.||{{N|fallhaven_andor_4_1|||||}}|}; -{fallhaven_andor_4_1|Da waren ein paar zwielichtige Gestalten bei ihm. Mehr als das habe ich aber nicht gesehen.|||}; -{fallhaven_andor_6|Nein, ich habe ihn nicht gesehen.|||}; -{fallhaven_guard|Mach keinen Ärger.|||}; - -{fallhaven_priest|Der Schatten sei mit dir.||{{Kannst du mir mehr über den Schatten erzählen?|priest_shadow_1|||||}}|}; -{priest_shadow_1|Der Schatten beschützt uns. Er hält Schaden von uns fern und behütet uns, wenn wir schlafen.||{{N|priest_shadow_2|||||}}|}; -{priest_shadow_2|Er folgt uns wohin wir auch gehen. Geh mit dem Schatten mein Junge.||{{Der Schatten sei mit dir.|X|||||}{Wie du meinst, tschüss.|X|||||}}|}; - -{rigmor|Hey du! Bist du nicht der nette kleine Bursche.||{{Hast du meinen Bruder Andor gesehen?|rigmor_1|||||}{Ich muss jetzt wirklich gehen.|rigmor_leave_select|||||}}|}; -{rigmor_1|Dein Bruder sagst du? Sein Name ist Andor? Nein, ich kann mich nicht an ihn erinnern.||{{Ich muss jetzt wirklich gehen.|rigmor_leave_select|||||}}|}; -{rigmor_leave_select|||{{|rigmor_thanks|calomyran:100||||}{|X|||||}}|}; -{rigmor_thanks|Ich hörte du hast dem alten Mann geholfen sein Buch zu finden, vielen Dank. Seit Wochen hatte er über das Buch gesprochen. Armer Mann, er neigt dazu Dinge zu vergessen.||{{Es war mir ein Vergnügen. Wiedersehen.|X|||||}{Du solltest ihn im Auge behalten, sonst könnten ihm schlimme Dinge passieren.|X|||||}{Egal, ich habe es nur wegen den Goldmünzen gemacht.|X|||||}}|}; - -{fallhaven_clothes|Willkommen in meinem Laden. Bitte schaue dir meine erlesenen Kleider und Juwelen an.||{{Lass mich deine Waren ansehen.|S|||||}}|}; -{fallhaven_potions|Willkommen in meinem Laden. Bitte schaue dir meine wohlmundenden Getränke an.||{{Lass mich sehen, welche Getränke du hast.|S|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bucus_welcome|Hallo nochmal, willkommen zurück zu .. Oh wart mal, Ich dachte, du wärst jemand anders.||{{Hast du meinen Bruder Andor gesehen?|bucus_andor_select|||||}{Was weisst du über die Diebesgilde?|bucus_thieves_select|||||}}|}; -{bucus_andor_select|||{{|bucus_umar_1|bucus:100||||}{|bucus_andor_no_1|||||}}|}; -{bucus_andor_no_1|Wie interessant, dass du fragst. Was wenn ich ihn gesehen hätte? Warum sollte ich es dir erzählen?||{{N|bucus_andor_no_2|||||}}|}; -{bucus_andor_no_2|Nein, das kann ich dir nicht sagen. Jetzt geh bitte.|||}; -{bucus_thieves_select|||{{|bucus_thieves_complete_3|bucus:100||||}{|bucus_thieves_continue|bucus:10||||}{|bucus_thieves_select2|||||}}|}; -{bucus_thieves_select2|||{{|bucus_thieves_1|andor:40||||}{|bucus_thieves_no|||||}}|}; -{bucus_thieves_no|Wa, was? Nein, ich weiss nichts darüber.|||}; -{bucus_umar_1|Okay Junge. Du hast dich als nützlich erwiesen. Ja, ich sah vor ein paar Tagen einen Junge nach deiner Beschreibung hier herumlaufen.||{{N|bucus_umar_2|||||}}|}; -{bucus_umar_2|Ich weiss nicht genau, was er wollte. Er stellte andauernd irgendwelche Fragen. Ganz ähnlich wie du. *kicher*||{{N|bucus_umar_3|||||}}|}; -{bucus_umar_3|Jedenfalls ist das alles, was ich weiss. Du solltest mit Umar sprechen, er weiss wahrscheinlich mehr. Durch die Bodenluke dort hinten.|{{0|andor|50|}}|{{Okay, tschüss|X|||||}}|}; -{bucus_thieves_1|Wer hat dir das gesagt? Argh.\n\nOkay du hast uns gefunden. Und jetzt?||{{Kann ich mich der Diebesgilde anschliessen?|bucus_thieves_2|||||}}|}; -{bucus_thieves_2|Hah! Der Diebesgilde beitreten?! Du?!\n\nDu bist ein spaßiger Junge.||{{Es ist mir ernst.|bucus_thieves_3|||||}{Ja ja, sehr lustig, hä?|bucus_thieves_3|||||}}|}; -{bucus_thieves_3|Okay, ich sag dir was Junge. Erfülle eine Aufgabe für mich und vielleicht ziehe ich es dann in betracht dir mehr Informationen zu geben.||{{Über was für eine Aufgabe sprechen wir?|bucus_thieves_4|||||}{Solange etwas für mich dabei herausspringt, bin ich dabei!|bucus_thieves_4|||||}}|}; -{bucus_thieves_4|Bring mir den Schlüssel von Luthor und wir sprechen weiter. Ich weiß nichts über den Schlüssel selbst, aber Gerüchte sagen er ist irgendwo in den Katakomben unter der Fallhaven Kirche versteckt.|{{0|bucus|10|}}|{{Okay, hört sich leicht genug an.|X|||||}}|}; -{bucus_thieves_continue|Wie geht die Suche nach dem Schlüssel von Luthor vorwärts?||{{Was sollte ich nochmal tun?|bucus_thieves_4|||||}{Hier, ich habe ihn. Den Schlüssel von Luthor.|bucus_thieves_complete_1||key_luthor|1|0|}{Ich bin immer noch am suchen. Tschüss.|X|||||}}|}; -{bucus_thieves_complete_1|Wow, du hast den Schlüssel von Luthor wirklich bekommen? Ich denke, ich würde es dort nicht mehr heraus schaffen.|{{0|bucus|100|}}|{{N|bucus_thieves_complete_2|||||}}|}; -{bucus_thieves_complete_2|Gut gemacht, Junge.||{{N|bucus_thieves_complete_3|||||}}|}; -{bucus_thieves_complete_3|Also lass uns reden. Was wolltest du wissen?||{{Was weißt du über meinen Bruder Andor?|bucus_umar_1|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fallhaven_drunk|Kein Problem. Nein mein Herr! Mache jetzt keinen Ärger mehr. Ich sitze jetzt hier draussen.||{{N|fallhaven_drunk_2|||||}}|}; -{fallhaven_drunk_2|Warte, wer bist du noch? Bist du dieser Wachmann?||{{Ja|fallhaven_drunk_3_1|||||}{Nein|fallhaven_drunk_3_2|||||}}|}; -{fallhaven_drunk_3_1|Oh, Herr. Ich mache jetzt keine Mühe mehr, schau? Ich sitze hier draussen, wie du gesagt hast, okay?||{{N|fallhaven_drunk_4|||||}}|}; -{fallhaven_drunk_3_2|Oh gut. Dieser Wachmann hat mich aus der Schenke geworfen. Falls ich ihn nochmals sehe, zeige ich es ihm aber.||{{N|fallhaven_drunk_4|||||}}|}; -{fallhaven_drunk_4|Trink trink trink, trink noch mehr. Trink, trink .. Wie ging das nochmal?||{{N|fallhaven_drunk_5|||||}}|}; -{fallhaven_drunk_5|Hast du was gesagt? Wo war ich? Ja, wir waren also in dieser Höhle.||{{N|fallhaven_drunk_6|||||}}|}; -{fallhaven_drunk_6|Oder war es doch ein Haus? Ich kann mich nicht erinnern.||{{N|fallhaven_drunk_7|||||}}|}; -{fallhaven_drunk_7|Nein nein, es war draussen! Jetzt erinnere ich mich.||{{N|fallhaven_drunk_7_select|||||}}|}; -{fallhaven_drunk_7_select|||{{|fallhaven_drunk_11|fallhavendrunk:100||||}{|fallhaven_drunk_8|||||}}|}; -{fallhaven_drunk_8|Das war als wir..\n\nHey, wo ist mein Met hin? Hast du es mir weggenommen? ||{{Ja|fallhaven_drunk_9_1|||||}{Nein|fallhaven_drunk_9_2|||||}}|}; -{fallhaven_drunk_9_1|Also dann gib es mir zurück! Oder kauf mir ein anderes Met.|{{0|fallhavendrunk|10|}}|{{Hier, nimm etwas Met.|fallhaven_drunk_10||mead|1|0|}{Okay, ich gehe dir etwas Met kaufen.|X|||||}{Nein. Ich denke nicht, dass ich dir helfen sollte. Auf Wiedersehen.|X|||||}}|}; -{fallhaven_drunk_9_2|Ich muss es wohl getrunken haben. Könntest du mir ein neues Met besorgen? |{{0|fallhavendrunk|10|}}|{{Hier, nimm etwas Met.|fallhaven_drunk_10||mead|1|0|}{Okay, Ich gehe dir etwas Met kaufen.|X|||||}{Nein. Ich denke nicht, dass ich dir helfen sollte. Auf Wiedersehen.|X|||||}}|}; -{fallhaven_drunk_10|Oh, süßer Trank der Freude. Möge der SSSSchatten mir dir sein mein Junge. *macht große Augen*||{{N|fallhaven_drunk_11|||||}}|}; -{fallhaven_drunk_11|*nimmt einen grossen Schluck vom Met*\n\nDas ist gutes Gesöff!||{{N|fallhaven_drunk_12|||||}}|}; -{fallhaven_drunk_12|Jaaa, ich und Unnmir hatten gute Zeiten. Geh, frag in selber, er üblicherweise im Stall östlich von hier. Ich wundere mich *görps* wo der Schatz geblieben ist.|{{0|fallhavendrunk|100|}}|{{Schatz? Ich bin dabei! Ich gehe sofort Unnmir suchen.|X|||||}{Danke für die Geschichte. Auf Wiedersehen.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fallhaven_oldman|||{{|fallhaven_oldman_complete_2|calomyran:100||||}{|fallhaven_oldman_continue|calomyran:10||||}{|fallhaven_oldman_1|||||}}|}; -{fallhaven_oldman_1|Kannst du bitte einem alten Mann helfen?||{{Sicher, für was brauchst du Hilfe?|fallhaven_oldman_2|||||}{Vielleicht. Reden wir über eine Art von Belohnung?|fallhaven_oldman_2|||||}{Nein, ich helfe keinem Oldie wie dir. Tschüss.|X|||||}}|}; -{fallhaven_oldman_2|Ich verlor kürzlich ein mir sehr wertvolles Buch.||{{N|fallhaven_oldman_3|||||}}|}; -{fallhaven_oldman_3|Ich weiß, dass ich es gestern noch hatte. Wie es scheint kann ich es jetzt nicht mehr finden.||{{N|fallhaven_oldman_4|||||}}|}; -{fallhaven_oldman_4|Ich verliere meine Sachen nie! Irgendjemand muss es gestohlen haben, das ist meine Vermutung.||{{N|fallhaven_oldman_5|||||}}|}; -{fallhaven_oldman_5|Würdest du bitte nach meinem Buch suchen? Es heißt \'Calomyranische Geheimnisse\'.||{{N|fallhaven_oldman_6|||||}}|}; -{fallhaven_oldman_6|Ich habe keine Ahnung, wo es sein könnte. Kannst du Arcir fragen, er scheint sehr verliebt in seine Bücher zu sein. *zeigt zum Haus im Süden*|{{0|calomyran|10|}}|{{Okay, ich werde Arcir fragen. Auf Wiedersehen.|X|||||}}|}; -{fallhaven_oldman_continue|Wie geht die Suche nach meinem Buch vorwärts? Es heißt \'Calomyranische Geheimnisse\'. Hast du mein Buch gefunden?||{{Ja, ich habe es.|fallhaven_oldman_complete||calomyran_secrets|1|0|}{Nein, ich habe es noch nicht gefunden.|fallhaven_oldman_6|||||}{Kannst du mir bitte die Geschichte nochmal erzählen?|fallhaven_oldman_2|||||}}|}; -{fallhaven_oldman_complete|Mein Buch! Danke, vielen Dank! Wo war es? Nein, sag es nicht. Hier, nimm ein paar Münzen für deine Bemühungen.|{{0|calomyran|100|}{1|gold51||}}|{{Danke. Auf Wiedersehen.|X|||||}{Letztendlich ein paar Goldmünzen. Tschüss.|X|||||}}|}; -{fallhaven_oldman_complete_2|Vielen vielen Dank, dass du mein Buch gefunden hast!|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{nocmar|Hallo, ich bin Nocmar.||{{Sieht so aus als wäre das hier die Schmiede. Hast du etwas zum handeln?|nocmar_trade_select|||||}{Unnmir schickte mich.|nocmar_quest_select|nocmar:10||||}{Tschüss|X|||||}}|}; -{nocmar_quest_select|||{{|nocmar_complete_5|nocmar:200||||}{|nocmar_continue|nocmar:20||||}{|nocmar_quest|||||}}|}; -{nocmar_trade_select|||{{|S|nocmar:200||||}{|nocmar_trade_1|||||}}|}; -{nocmar_trade_1|Ich habe keine Gegenstände zu verkaufen. Ich hatte viele Sachen zum Verkauf, aber heutzutage ist es mir nicht erlaubt etwas zu verkaufen.||{{N|nocmar_trade_2|||||}}|}; -{nocmar_trade_2|Ich war einmal einer der besten Schmiede in Fallhaven. Dann verbot mir dieser Bastard Lord Geomyr die Benutzung von Herzstahl.||{{N|nocmar_trade_3|||||}}|}; -{nocmar_trade_3|Durch einen Erlass von Lord Geomyr, ist es sogar niemand in Fallhaven auch nur erlaubt Herzstahlwaffen zu benutzen. Und schon gar nicht welche zu verkaufen.||{{N|nocmar_trade_4|||||}}|}; -{nocmar_trade_4|Darum muss ich jetzt die wenigen Herzstahlwaffen, die ich noch habe, verstecken. Und ich riskiere keinesfalls sie zu verkaufen.||{{N|nocmar_trade_4_1|||||}}|}; -{nocmar_trade_4_1|I habe das Herzstahlleuchten, jetzt wo Lord Geomyr ihn verboten hat, seit mehreren Jahren nicht gesehen.||{{N|nocmar_trade_5|||||}}|}; -{nocmar_trade_5|Leider kann ich dir keine meiner Waffen verkaufen.|||}; -{nocmar_quest|Unnmir schickte dich, huh? Ich vermute, es muss dann wichtig sein.|{{0|nocmar|20|}}|{{N|nocmar_quest_1|||||}}|}; -{nocmar_quest_1|Okay, diese alten Waffen haben, nachdem sie länger nicht mehr benutzt wurden, ihr inneres Leuchten verloren.||{{N|nocmar_quest_2|||||}}|}; -{nocmar_quest_2|Um den Herzstahl erneut zum Leuchten zu bringen, brauchen wir einen Herzstein.||{{N|nocmar_quest_3|||||}}|}; -{nocmar_quest_3|Vor Jahren, bekämpften wir die Lichs von Undertell. Ich habe keine Ahnung, ob sie den Ort immer noch heimsuchen.||{{Undertell? Was ist das?|nocmar_quest_4|||||}}|}; -{nocmar_quest_4|Undertell; die Gruben der verlorenen Seelen. Reise nach Süden und betrete die Höhle der Zwerge. Von dort folge dem schrecklichen Gestank.||{{N|nocmar_quest_5|||||}}|}; -{nocmar_quest_5|Hüte dich vor den Lichs von Undertell, falls sie immer noch da sind. Diese Dinger können dich mit ihren Blicken allein töten.|||}; -{nocmar_continue|Hast du schon einen Herzstein gefunden?||{{Ja, letztendlich habe ich einen gefunden.|nocmar_complete||heartstone|1|0|}{Kannst du mir die Geschichte nochmal erzählen?|nocmar_quest_1|||||}{Nein, noch nicht.|nocmar_continue_2|||||}}|}; -{nocmar_continue_2|Bitte such weiter. Unnmir muss etwas Wichtiges mit dir vorhaben.|||}; -{nocmar_complete|Beim Schatten! Du hast tatsächlich einen Herzstein gefunden. Ich dachte, ich würde diesen Tag nicht mehr erleben.|{{0|nocmar|200|}}|{{N|nocmar_complete_2|||||}}|}; -{nocmar_complete_2|Kannst du das Leuchten sehen? Es ist buchstäblich pulsierend.||{{N|nocmar_complete_3|||||}}|}; -{nocmar_complete_3|Schnell. Lass uns die alten Herzstahlwaffen wieder zum Leuchten bringen.||{{N|nocmar_complete_4|||||}}|}; -{nocmar_complete_4|*Nocmar legt den Herzstein zwischen die Herzstahlwaffen*||{{N|nocmar_complete_5|||||}}|}; -{nocmar_complete_5|Kannst du es spüren? Der Herzstahl leuchtet wieder.||{{Lass mich sehen, welche Gegenstände du für mich hast.|S|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bela|Willkommen in der Fallhaven Taverne. Setzt dich irgendwo.||{{Lass mich sehen, welche Speisen und Getränke es hier gibt.|S|||||}{Gibt es freie Zimmer?|bela_room_select|||||}}|}; -{bela_room_1|Ein Zimmer kostet dich nur 10 Goldmünzen.||{{Kaufen [10 Goldmünzen]|bela_room_2||gold|10|0|}{Nein danke.|bela|||||}}|}; -{bela_room_2|Danke. Nimm das Zimmer dort am Ende des Ganges.|{{0|fallhaventavern|10|}}|{{Vielen dank. Da war noch etwas, über das ich reden wollte.|bela|||||}{Danke, tschüss.|X|||||}}|}; -{bela_room_3|Ich hoffe, das Zimmer erfüllt deine Erwartungen. Es ist das letzte Zimmer dort am Ende des Ganges.||{{Vielen dank. Da war noch etwas, über das ich reden wollte.|bela|||||}{Danke, tschüss.|X|||||}}|}; -{bela_room_select|||{{|bela_room_3|fallhaventavern:10||||}{|bela_room_1|||||}}|}; -{ganos|Du kommst mir irgendwie bekannt vor.||{{Hast du etwas zu verkaufen?|S|||||}{Was weißt du über die Diebesgilde?|ganos_1|andor:30||||}}|}; -{ganos_1|Diebesgilde? Wie sollte ich etwas wissen? Sehe ich für dich wie ein Dieb aus?! Hrmpf.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{arcir_start|Hallo, ich bin Arcir.||{{Ich habe deine Statue von Elythara unten bemerkt.|arcir_elythara_1|arcir:10||||}{Du scheinst deine Bücher wirklich zu mögen.|arcir_books_1|||||}}|}; -{arcir_anythingelse|Möchtest du irgend was anderes wissen?||{{Ich habe deine Statue von Elythara unten bemerkt.|arcir_elythara_1|arcir:10||||}{Du scheinst deine Bücher wirklich zu mögen.|arcir_books_1|||||}}|}; -{arcir_elythara_1|Oh, du hast meine Statue im Keller gefunden?\n\nJa, Elythara ist mein Beschützer.||{{Okay.|arcir_anythingelse|||||}}|}; -{arcir_books_1|Ich habe großes Vergnügen an meinen Büchern. Sie enthalten das angehäufte Wissen vergangener Generationen.||{{Hast du ein Buch mit dem Namen \'Calomyranische Geheimnisse\'?|arcir_calomyran_select|calomyran:10||||}{Okay.|arcir_anythingelse|||||}}|}; -{arcir_calomyran_1|\'Calomyranische Geheimnisse\'? Hm, ja ich denke ich habe eins davon im Keller.||{{N|arcir_calomyran_2|||||}}|}; -{arcir_calomyran_2|Der alte Mann Benradas kam letzte Woche vorbei, wollte mir das Buch verkaufen. Weil das Buch nicht wirklich mein Fall ist, habe ich abgelehnt.||{{N|arcir_calomyran_3|||||}}|}; -{arcir_calomyran_3|Er scheint sehr verärgert gewesen zu sein, dass ich sein Buch nicht mochte und warf es nach mir, während er aus dem Haus stürmte.||{{N|arcir_calomyran_4|||||}}|}; -{arcir_calomyran_4|Der arme alte Mann Benradas, er vergass wahrscheinlich, dass er es hier gelassen hatte. Er neigt dazu Dinge zu vergessen.||{{N|arcir_anythingelse|||||}}|}; -{arcir_calomyran_5|Du hast unten nachgeschaut, aber nichts gefunden? Eine Notiz sagst du? Ich vermute, es muss jemand in meinem Haus gewesen sein.||{{N|arcir_calomyran_6|||||}}|}; -{arcir_calomyran_select|||{{|arcir_calomyran_complete|calomyran:100||||}{|arcir_calomyran_5|calomyran:20||||}{|arcir_calomyran_1|||||}}|}; -{arcir_calomyran_complete|Ich hörte du hast es gefunden und zum alten Mann Benradas zurückgebracht. Vielen Dank. Er neigt dazu Dinge zu vergessen.||{{N|arcir_anythingelse|||||}}|}; -{arcir_calomyran_6|Was stand auf der Notiz?\n\nLarcal.. Ist mir bekannt. Macht immer Ärger. Er ist normalerweise im Stall östlich von hier.||{{Danke, tschüss|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{chapelgoer|Schatten, umgebe mich.|||}; -{thoronir_default|Wärm dich beim Schatten, mein Junge.||{{Kannst du mir mehr über den Schatten erzählen?|thoronir_shadow_1|||||}{Kannst du mir mehr über die Kirche erzählen?|thoronir_church_1|||||}{Sind die Knochenmehltränke schon fertig?|thoronir_trade_bonemeal|bonemeal:100||||}}|}; -{thoronir_shadow_1|Der Schatten beschützt uns vor den Gefahren der Nacht. Er hält uns unbeschadet und behütet uns, wenn wir schlafen.||{{Tharal schickt mich und wies mich an dir das Passwort \'Leuchten des Schattens\' zu sagen.|thoronir_tharal_select|bonemeal:30||||}{Der Schatten sei mit dir.|thoronir_default|||||}{Hört sich für mich unsinnig an.|thoronir_default|||||}}|}; -{thoronir_church_1|Das ist unsere Kapelle der Verehrung in Fallhaven. Unsere Gemeinde wendet sich an uns um Unterstützung zu erhalten.||{{N|thoronir_church_2|||||}}|}; -{thoronir_church_2|Diese Kirche hat hunderten von Jahren standgehalten und wurde vor Grabjägern bewahrt.||{{N|thoronir_church_3|||||}}|}; -{thoronir_tharal_select|||{{|thoronir_trade_bonemeal|bonemeal:100||||}{|thoronir_tharal_1|||||}}|}; -{thoronir_tharal_1|\'Leuchten des Schattens\' wirklich mein Junge. Also mein alter Freund Tharal im Dorf Crossglen schickt dich?||{{Was kannst du mir über Knochenmehl erzählen?|thoronir_tharal_2|||||}}|}; -{thoronir_church_3|Die Katakomben unter dem Kirchenschiff gehören zu den Überbleibseln vergangener Anführer. Unser großer König Luthor ist Gerüchten zufolge dort begraben.||{{War schon jemand in den Katakomben?|thoronir_church_4|bucus:10||||}{Da war noch etwas, über das ich reden wollte.|thoronir_default|||||}}|}; -{thoronir_church_4|Niemand ist es erlaubt in die Katakomben zu gehen, abgesehen von Athamyr, meinem Lehrling. Seit Jahren ist er der einzige, der jemals dort unten war.|{{0|bucus|20|}}|{{Okay, vielleicht besuche ich ihn.|thoronir_default|||||}}|}; -{thoronir_tharal_2|Shhh, wir sollten nicht laut über die Verwendung von Knochenmehl reden. Wie du weißt, erliess Lord Geomyr ein Verbot auf jegliche Verwendung von Knochenmehl.||{{N|thoronir_tharal_3|||||}}|}; -{thoronir_tharal_3|Als das Verbot kam, riskierte ich nicht welches zu behalten, darum habe ich alle meine Vorräte weggeworfen. Wenn ich es jetzt bedenke, war das ziemlich töricht.||{{N|thoronir_tharal_4|||||}}|}; -{thoronir_tharal_4|Könntest du mir 5 Skelettknochen finden, die ich zum Anmischen von Knochenmehl verwenden kann? Das Knochenmehl ist sehr gut geeignet alte Wunden zu heilen.||{{Sicher, ich schaff das schon.|thoronir_tharal_5|||||}{Ich habe die Knochen für dich.|thoronir_tharal_complete||bone|5|0|}}|}; -{thoronir_tharal_5|Vielen dank, bitte komm bald zurück. Ich hörte da wären einige Untote bei einem verlassenen Haus ein wenig nördlich von Fallhaven. Vielleicht kannst du dort Knochen finden?|{{0|bonemeal|40|}}|{{Okay, ich werde es überprüfen.|thoronir_default|||||}}|}; -{thoronir_tharal_complete|Vielen dank, diese Knochen werden genügen. Jetzt kann ich anfangen, einige Knochenmehl Heiltränke für dich zu mischen.|{{0|bonemeal|100|}}|{{N|thoronir_complete_2|||||}}|}; -{thoronir_complete_2|Gib mir zum Herstellen der Knochenmehltränke etwas Zeit. Es ist ein sehr starker Heiltrank. Komm in kürze wieder her.|||}; -{thoronir_trade_bonemeal|Ja, die Knochenmehltränke sind fertig. Bitte verwende sie mit Bedacht und lass es die Wachen nicht sehen. Wir dürften es eigentlich nicht mehr verwenden.||{{Lass mich sehen, welche Tränke du schon gemacht hast.|S|||||}{Da war noch etwas anderes, über das ich reden wollte.|thoronir_default|||||}}|}; -{catacombguard|Kehr um solange du noch kannst, Sterblicher. Das ist kein Ort für dich. Nur der Tod erwartet dich hier.||{{Schön, ich kehr um.|X|||||}{Geh zur Seite, ich muss tiefer in die Katakomben hinein kommen.|catacombguard1|||||}{Beim Schatten, du wirst mich nicht aufhalten.|catacombguard1|||||}}|}; -{catacombguard1|Neinnn, du kannst nicht vorbei!||{{Okay. Lass uns kämpfen.|F|||||}}|}; -{luthor|*zischen* Welcher Sterbliche stört meinen Schlaf?||{{Beim Schatten, was bist du?|F|||||}{Immerhin, ein würdiger Kampf! Darauf habe ich gewartet.|F|||||}{Na los, bringen wir es hinter uns.|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{athamyr|Geh mit dem Schatten.||{{Warst du unten in den Katakomben?|athamyr_select|bucus:20||||}}|}; -{athamyr_1|Ja, ich war in den Katakomben unter der Fallhaven Kirche.||{{N|athamyr_2|||||}}|}; -{athamyr_2|Aber ich bin der einzige, der sowohl die Erlaubnis als auch die Tapferkeit hat dort hinunter zu gehen.||{{Wie kann ich die Erlaubnis bekommen hinunter zu gehen?|athamyr_3|||||}}|}; -{athamyr_3|Du willst hinunter in die Katakomben? Hm, vielleicht können wir einen Handel machen.||{{N|athamyr_4|||||}}|}; -{athamyr_4|Bring mir etwas von diesem köstlich zubereiteten Braten aus der Schenke und ich gebe dir die Erlaubnis zum Betreten der Katakomben der Fallhaven Kirche.|{{0|bucus|30|}}|{{Hier, ich habe einen Braten für dich.|athamyr_complete||meat_cooked|1|0|}{Okay, ich gehe etwas holen.|X|||||}}|}; -{athamyr_complete_2|Du hast die Erlaubnis zum Betreten der Katakomben der Fallhaven Kirche.|{{0|bucus|50|}}||}; -{athamyr_select|||{{|athamyr_complete_2|bucus:40||||}{|athamyr_1|||||}}|}; -{athamyr_complete|Danke, den werde ich genießen.|{{0|bucus|40|}}|{{N|athamyr_complete_2|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{larcal|Ich habe keine Zeit für dich, Junge. Verschwinde.||{{Ich fand eine Notiz mit deinem Namen drauf, während ich nach dem Buch \'Calomyranische Geheimnisse\' suchte.|larcal_1|calomyran:20||||}}|}; -{larcal_1|Wie jetzt, was ist denn jetzt los? Willst du andeuten, ich wäre unten in Arcir\'s Keller gewesen?||{{N|larcal_2|||||}}|}; -{larcal_2|Na, möglicherweise war ich das. Das Buch gehört jedenfalls mir.||{{N|larcal_3|||||}}|}; -{larcal_3|Schau, lass uns das friedlich regeln. Du gehst weg und vergisst alles über das Buch und du darfst am Leben bleiben.||{{Also gut. Behalte dein Buch.|larcal_4|||||}{Nein, du wirst mir das Buch geben.|larcal_5|||||}}|}; -{larcal_4|Guter Knabe, jetzt lauf weg.|||}; -{larcal_5|Okay, jetzt fängst du an mich zu nerven, Junge. Verschwinde solange du noch kannst.||{{Also gut, ich gehe.|X|||||}{Nein, dieses Buch gehört nicht dir!|larcal_6|||||}}|}; -{larcal_6|Du bist immer noch da? Also dann, wenn du das Buch so dringend brauchst, wirst du es mir wegnehmen müssen!||{{Na endlich, ein Kampf. Darauf habe ich gewartet!|F|||||}{Ich habe gehofft, dass es nicht so weit kommen würde.|F|||||}{Also gut, ich werde verschwinden.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{unnmir|||{ - {|unnmir_r|nocmar:10||||} - {|unnmir_0|||||} - }|}; -{unnmir_r|Hallo nochmal. Du solltest mit Nocmar reden.||{{N|unnmir_13|||||}}|}; -{unnmir_0|Hallo.||{{Da war ein Betrunkener draußen vor der Schenke, der mir eine Geschichte über euch beide erzählt hat.|unnmir_1|fallhavendrunk:100||||}}|}; -{unnmir_1|Dieser betrunkene alte Mann bei der Schenke hat dir seine Geschichte erzählt, nicht wahr?||{{N|unnmir_2|||||}}|}; -{unnmir_2|Die selbe alte Geschichte. Vor ein paar Jahren pflegten wir miteinander zu Reisen.||{{N|unnmir_3|||||}}|}; -{unnmir_3|Echte Abenteuer du weißt schon, mit Schwertern und Zaubersprüchen.||{{N|unnmir_4|||||}}|}; -{unnmir_4|Aber dann, nach einer Weile, hörten wir auf. Ich kann nicht einmal sagen warum, ich vermute wir wurden des Vagabundenlebens müde. Wir ließen uns hier in Fallhaven nieder.||{{N|unnmir_5|||||}}|}; -{unnmir_5|Nette kleine Stadt hier. Viele Diebe streifen umher, aber die kümmern mich nicht.||{{N|unnmir_6|||||}}|}; -{unnmir_6|Also wie ist deine Geschichte, Junge? Wie bist du nach Fallhaven gekommen?||{{Ich suche nach meinem Bruder.|unnmir_7|||||}}|}; -{unnmir_7|Ja ja, ich verstehe. Dein Bruder ist wahrscheinlich abgehauen um in irgendeiner Höhle ein Abenteuer zu erleben. *rollt mit seinen Augen*||{{N|unnmir_8|||||}}|}; -{unnmir_8|Oder vielleicht ist er in eine der größeren Städte im Norden gegangen.||{{N|unnmir_9|||||}}|}; -{unnmir_9|Ich kann es ihm nicht verübeln, dass er die Welt sehen will.||{{N|unnmir_10|||||}}|}; -{unnmir_10|He, so nebenbei, versuchst du ein Abenteurer zu sein?||{{Ja|unnmir_11|||||}{Nein, nicht wirklich.|unnmir_12|||||}}|}; -{unnmir_11|Gut, ich gebe dir einen Tipp, Junge. *kichert*. Geh zu Nocmar drüben auf der Westseite der Stadt. Sag ihm ich schicke dich.|{{0|nocmar|10|}}|{{N|unnmir_13|||||}}|}; -{unnmir_12|Gute Einstellung. Abenteuer führen zu vielen Narben, wenn du verstehst was ich meine.|||}; -{unnmir_13|Sein Haus ist etwas südwestlich der Schenke.||{{Danke, ich werde zu ihm gehen.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{gaela|||{ - {|gaela_r|andor:40||||} - {|gaela_0|||||} - }|}; -{gaela_r|Hallo nochmal. I hoffe du findest was du suchst.|||}; -{gaela_0|Flink ist meine Klinge. Giftig meine Zunge. Oder war es anders herum?||{{Es gibt hier in Fallhaven scheinbar eine Menge Diebe.|gaela_1|||||}}|}; -{gaela_1|Ja, wir Diebe sind hier stark Präsent.||{{Sonst noch was?|gaela_2|andor:30||||}}|}; -{gaela_2|Ich hörte du hast Gruil, einem Diebesgenossen im Dorf Crossglen, geholfen.||{{N|gaela_3|||||}}|}; -{gaela_3|Es hat mich auch die Nachricht erreicht, dass du jemand suchst. Ich kann dir vielleicht helfen.||{{N|gaela_4|||||}}|}; -{gaela_4|Du solltest mit Bucus, im heruntergekommenen Haus etwas südwestlich von hier, reden. Sag ihm, du möchtest mehr über die Diebesgilde wissen.|{{0|andor|40|}}|{{Danke, ich werde mit ihm reden.|gaela_5|||||}}|}; -{gaela_5|Betrachte diesen Gefallen als Gegenleistung für deine Hilfe Gruil gegenüber.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{vacor|||{{|vacor_return_complete0|vacor:60||||}{|vacor_return2|vacor:40||||}{|vacor_42|vacor:30||||}{|vacor_select1|||||}}|}; -{vacor_select1|||{{|vacor_return1|vacor:20||||}{|vacor_begin|||||}}|}; -{vacor_begin|Hallo.||{{N|vacor_2|||||}}|}; -{vacor_2|Was bist du, eine Art Abenteurer? Hm. Vielleicht kannst für mich nützlich sein.||{{N|vacor_3|||||}}|}; -{vacor_3|Willst du mir helfen?||{{Sicher, was für Hilfe brauchst du?|vacor_4|||||}{Nein, warum sollte ich dir helfen?|vacor_bah|||||}}|}; -{vacor_bah|Bah, niedrige Kreatur. Ich wusste, ich hätte dich nicht fragen sollen. Jetzt verschwinde.|||}; -{vacor_4|Vor einiger Zeit, arbeitete ich an einem Spaltzauber, über den ich gelesen hatte.||{{N|vacor_5|||||}}|}; -{vacor_5|Der Zauberspruch soll angeblich, sagen wir mal so, neue Möglichkeiten eröffnen.||{{N|vacor_6|||||}}|}; -{vacor_6|Erm, ja, der Spaltzauber wird Dinge öffnen, ganz richtig. Ähm.||{{N|vacor_7|||||}}|}; -{vacor_7|Also war ich hart am arbeiten, um die letzten Teile zusammenzusetzen.||{{N|vacor_8|||||}}|}; -{vacor_8|Dann plötzlich, kam eine Rotte von Schlägern hierher und begann mich zu terrorisieren.||{{N|vacor_9|||||}}|}; -{vacor_9|Sie sagten, sie wären Botschafter des Schattens und beharrten darauf, dass ich meine Zauberei unterlassen sollte.||{{N|vacor_10|||||}}|}; -{vacor_10|Lächerlich, nicht war? Ich war so kurz davor die Macht zu besitzen!||{{N|vacor_11|||||}}|}; -{vacor_11|Oh, die Macht, die ich hätte haben können. Mein teurer Spaltzauber.|{{0|vacor|10|}}|{{N|vacor_12|||||}}|}; -{vacor_12|Jedenfalls, ich war gerade dabei den letzten Teils des Spaltzaubers zu beenden, als diese Banditen kamen und mich ausraubten.||{{N|vacor_13|||||}}|}; -{vacor_13|Die Banditen klauten meine Notizen des Zauberspruchs und flüchteten bevor ich die Wache rufen konnten.||{{N|vacor_14|||||}}|}; -{vacor_14|Nach Jahren der Arbeit, kann ich mich scheinbar nicht mehr an die letzten Teile des Zauberspruchs erinnern.||{{N|vacor_15|||||}}|}; -{vacor_15|Kannst du mir helfen, sie zu finden? Dann kann ich letztendlich die Macht doch haben!||{{N|vacor_16|||||}}|}; -{vacor_16|Für deine Beteiligung mir die Macht zu verschaffen wirst du natürlich angemessen belohnt werden.||{{Eine Belohnung? Ich bin dabei!|vacor_17|||||}{Also gut. Ich werde dir helfen.|vacor_17|||||}{Nein danke, das scheint etwas zu sein, in das ich lieber nicht verwickelt werden will.|vacor_bah|||||}}|}; -{vacor_17|Ich wusste ich könnte dir nicht trauen... Warte, was? Du hast wirklich ja gesagt? Ha, also gut.||{{N|vacor_18|||||}}|}; -{vacor_18|Okay, finde die 4 Teile meines Spaltzaubers, die die Banditen weggenommen haben, und bring die Teile zu mir.|{{0|vacor|20|}}|{{N|vacor_19|||||}}|}; -{vacor_19|Es waren 4 Banditen und nachdem sie mich überfallen hatten verteilten sie sich im Süden von Fallhaven .||{{N|vacor_20|||||}}|}; -{vacor_20|Du solltest in den Gegenden südlich von Fallhaven nach den 4 Banditen suchen.||{{N|vacor_21|||||}}|}; -{vacor_21|Bitte beeile dich! Ich bin so begierig den Spalt zu öffnen.. äh, ich meine den Zauberspruch zu vollenden. Ist nichts falsches dabei, oder?|||}; -{vacor_return1|Hallo nochmal. Wie ist die Suche nach meinen verlorenen Teilen des Spaltzaubers verlaufen?||{{Ich habe alle Teile gefunden.|vacor_40||vacor_spell|4|0|}{Was sollte ich nochmal machen?|vacor_18|||||}{Kannst du mir die ganze Geschichte nochmal erzählen?|vacor_4|||||}}|}; -{vacor_40|Oh, du hast alle 4 Teile gefunden? Schnell, gib sie mir.|{{0|vacor|30|}}|{{N|vacor_41|||||}}|}; -{vacor_41|Ja, das sind die Teile, die die Banditen mitgenommen haben.||{{N|vacor_42|||||}}|}; -{vacor_42|Jetzt sollte ich fähig sein den Spaltzauber zu vollenden und den Schattenspalt zu öffnen.. äh, ich meine neue Möglichkeiten zu eröffnen. Ja, das meinte ich.||{{N|vacor_43|||||}}|}; -{vacor_43|Das einzige Hindernis zwischen mir und der fortlaufenden Erforschung des Spaltzaubers, ist dieser blöde Kerl Unzel.||{{N|vacor_44|||||}}|}; -{vacor_44|Unzel war vor einiger Zeit mein Lehrling. Aber er begann mich mit seinen Fragen und seinem Vortrag über Moral zu nerven.||{{N|vacor_45|||||}}|}; -{vacor_45|Er sagte meine Zauberei würde den Willen des Schattens zerbrechen.||{{N|vacor_46|||||}}|}; -{vacor_46|Bah, der Schatten. Was hat er jemals für MICH getan?!||{{N|vacor_47|||||}}|}; -{vacor_47|Eines Tages werde ich meinen Spaltzauber ausführen und wir werden vom Schatten befreit sein.||{{N|vacor_48|||||}}|}; -{vacor_48|Jedenfalls habe ich das Gefühl, dass Unzel diese Banditen zu mir sandte. Wenn ich ihn nicht aufhalte, wird er vermutlich weitere schicken.||{{N|vacor_49|||||}}|}; -{vacor_49|Ich brauche dich um Unzel zu finden und ihn für mich zu töten. Er kann wahrscheinlich irgendwo südwestlich von Fallhaven gefunden werden.|{{0|vacor|40|}}|{{N|vacor_50|||||}}|}; -{vacor_50|Bring mir seinen Siegelring als Beweis wenn du ihn getötet hast.||{{N|vacor_51|||||}}|}; -{vacor_51|Jetzt beeil dich, ich kann nicht mehr viel länger warten. Die Macht soll MIR gehören!|||}; -{vacor_return2|Hallo nochmal. Irgendein Fortschritt bisher?||{{Über Unzel...|vacor_return2_2|||||}{Kannst du mir die Geschichte noch einmal erzählen?|vacor_43|||||}}|}; -{vacor_return2_2|Hast du Unzel schon für mich getötet? Bring mir seinen Siegelring wenn du ihn getötet hast.||{{Ich habe ihn erledigt. Hier ist sein Ring.|vacor_60||ring_unzel|1|0|}{Ich habe mir Unzel\'s Geschichte angehört und habe entschieden auf seine Seite zu wechseln. Der Schatten muss bewahrt werden.|vacor_70|vacor:51||||}}|}; -{vacor_60|Ha ha, Unzel ist tot! Diese erbärmliche Kreatur ist weg!|{{0|vacor|60|}}|{{N|vacor_61|||||}}|}; -{vacor_61|Ich kann Blut an deinen Schuhen sehen. Und ich habe dich sogar überzeugt vorher seine Lakaien zu töten.||{{N|vacor_62|||||}}|}; -{vacor_62|Das ist wirklich ein großer Tag. Bald werde ich die Macht haben!||{{N|vacor_63|||||}}|}; -{vacor_63|Hier, nimm diese Goldmünzen für deine Hilfe.|{{1|gold200||}}|{{N|vacor_64|||||}}|}; -{vacor_64|Jetzt geh, ich muss Vorbereitungen treffen bevor ich den Spaltzauber ausführen kann.|||}; -{vacor_return_complete0|||{ - {|vacor_msg_16|kaverin:90||||} - {|vacor_msg_9|kaverin:75||||} - {|vacor_msg1|kaverin:60|kaverin_message|1|1|} - {|vacor_return_complete|||||} - }|}; -{vacor_return_complete|Hallo nochmal, mein Freund der Attentäter. Bald werde ich den Spaltzauber fertig haben.|||}; -{vacor_70|Was? Er hat dir seine Geschichte erzählt? Du hast sie ihm tatsächlich abgenommen?||{{N|vacor_71|||||}}|}; -{vacor_71|Ich gebe dir noch eine Chance. Entweder du tötest Unzel für mich und ich werde dich stattlich belohnen, oder du musst mit mir kämpfen.||{{Nein. Du musst aufgehalten werden.|vacor_72|||||}{Okay, ich werde noch einmal darüber nachdenken.|X|||||}}|}; -{vacor_72|Bah, niedrige Kreatur. Ich wusste ich hätte dir nicht trauen sollen. Jetzt wirst du sterben zusammen mit deinem heißgeliebten Schatten.|{{0|vacor|54|}}|{{Für den Schatten!|F|||||}{Du musst aufgehalten werden.|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{unzel_1|Hallo. Ich bin Unzel.||{{Ist das dein Lager?|unzel_2|||||}{Ich wurde von Vacor geschickt um dich zu töten.|unzel_3|vacor:40||||}}|}; -{unzel_2|Ja, das ist mein Lager. Herrlicher Platz, nicht wahr?||{{Tschüss|X|||||}}|}; -{unzel_3|Vacor hat dich geschickt huh? Ich fürchte ich hätte wissen müssen, dass er früher oder später jemand schicken wird.||{{N|unzel_4|||||}}|}; -{unzel_4|Nun gut. Töte mich oder erlaube mir dir meine Seite der Geschichte zu erzählen.||{{Hah, ich werde dich mit Vergnügen töten!|unzel_fight|||||}{Okay, ich werde mir deine Geschichte anhören.|unzel_5|||||}}|}; -{unzel_fight|Nun denn, lass uns kämpfen.|{{0|vacor|53|}}|{{Auf in den Kampf!|F|||||}}|}; -{unzel_5|Vielen Dank fürs zuhören.||{{N|unzel_10|||||}}|}; -{unzel_10|Vacor und ich reisten gewöhnlich miteinander, aber er begann von der Zauberei besessen zu werden.||{{N|unzel_11|||||}}|}; -{unzel_11|Er stellte sogar den Schatten in Frage. Ich wusste ich musste etwas tun, um ihn aufzuhalten!||{{N|unzel_12|||||}}|}; -{unzel_12|Ich begann die Dinge die er vorhatte in Frage zu stellen, aber wollte immer nur weitermachen.||{{N|unzel_13|||||}}|}; -{unzel_13|Nach einer Weile, wurde er vom Gedanken eines Spaltzaubers besessen. Er sagte er würde ihm unbeschränkte Macht gegen den Schatten geben.||{{N|unzel_14|||||}}|}; -{unzel_14|Darum konnte ich nur noch eines tun. Ich verließ ihn und musste ihn bei seinen Versuche den Spaltzauber zu erzeugen aufhalten.||{{N|unzel_15|||||}}|}; -{unzel_15|Ich schickte einige Freunde, um ihm den Zauberspruch wegzunehmen.||{{N|unzel_16_select|||||}}|}; -{unzel_16_select|||{{|unzel_16_2|vacor:50||||}{|unzel_16_1|||||}}|}; -{unzel_16_1|So weit die Geschichte.||{{Ich tötete die 4 Banditen, die du zu Vacor geschickt hast.|unzel_17|||||}}|}; -{unzel_16_2|So weit die Geschichte.||{{N|unzel_19|||||}}|}; -{unzel_17|Was? Du hast meine Freunde getötet? Argh, ich fühle die Wut in mir aufsteigen.||{{N|unzel_18|||||}}|}; -{unzel_18|Allerdings verstehe ich auch, dass das die alleinigen Machenschaften von Vacor sind. Ich stelle dich jetzt vor eine Entscheidung. Wähle weise.||{{N|unzel_19|||||}}|}; -{unzel_19|Entweder du wählst die Seite von Vacor und seinem Spaltzauber, oder die Seite des Schattens und hilfst mir, ihn los zu werden. Wem willst du helfen?|{{0|vacor|50|}}|{{Ich will dir helfen. Der Schatten darf nicht gestört werden.|unzel_20|||||}{Ich helfe Vacor.|unzel_fight|||||}}|}; -{unzel_20|Vielen Dank mein Freund. Wir werden den Schatten vor Vacor bewahren.|{{0|vacor|51|}}|{{N|unzel_21|||||}}|}; -{unzel_21|Du solltest nochmals mit ihm über den Schatten sprechen.|||}; -{unzel_return_1|Willkommen zurück. Hast du mit Vacor gesprochen?||{{Ja, ich habe ihn erledigt.|unzel_30||ring_vacor|1|0|}{Nein, noch nicht.|X|||||}}|}; -{unzel_30|Du hast ihn getötet? Du hast meinen Dank verdient, Freund. Nun sind wir sicher vor Vacor\'s Spaltzauber. Hier, nimm diese Goldmünzen für deine Hilfe.|{{0|vacor|61|}{1|gold200||}}|{{Der Schatten sei mit dir.|X|||||}{Vielen Dank.|X|||||}}|}; -{unzel_40|Danke für deine Hilfe. Nun sind wir vor Vacor\'s Spaltzauber sicher.||{{Ich habe eine Nachricht von Kaverin in Remgard für dich.|unzel_msg1|kaverin:25|kaverin_message|1|1|}}|}; -{unzel|||{{|unzel_msg_r0|kaverin:30||||}{|unzel_40|vacor:61||||}{|unzel_return_1|vacor:51||||}{|unzel_1|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fallhaven_bandit|Verschwinde Junge. Ich habe keine Zeit für dich.||{{Ich suche einen Teil des Spaltzaubers.|fallhaven_bandit_2|vacor:20||||}}|}; -{fallhaven_bandit_2|Nein! Vacor wird die Macht des Spaltzaubers nicht bekommen! ||{{Lass uns kämpfen!|F|||||}}|}; -{bandit1|Was haben wir hier? Einen verirrten Wanderer?||{{N|bandit1_2|||||}}|}; -{bandit1_2|Wie viel ist dir dein Leben wert? Gib mir 100 Goldmünzen und ich lasse dich gehen.||{{Okay okay. Hier sind die Goldmünzen. Bitte verletze mich nicht!|bandit1_3||gold|100|0|}{Wie wäre es, wenn wir darum kämpfen?|bandit1_4|||||}{Wie wertvoll ist dir dein Leben?|bandit1_4|||||}}|}; -{bandit1_3|Wird langsam Zeit. Du kannst gehen wohin du willst.|||}; -{bandit1_4|Nun gut, dein Leben also. Lass uns kämpfen. Ich habe schon auf einen guten Kampf gewartet!||{{Lass uns anfangen!|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{zombie1|Frischfleisch!||{{Beim Schatten, ich werde dich erschlagen.|F|||||}{Bah, was bist du? Und was ist das für ein Geruch?|F|||||}}|}; -{prisoner1|Neiiin, ich werde nicht wieder gefangen sein!||{{Aber ich bin nicht...|F|||||}}|}; -{prisoner2|Aaaa! Wer ist da? Ich werde nie wieder unterjocht!||{{Beruhige dich, ich wollte nur...|F|||||}}|}; - -{flagstone_guard0|Ah, ein anderer Sterblicher. Bereite dich darauf vor, Teil meiner Armee von Untoten zu werden!|{{0|flagstone|31|}}|{{Der Schatten soll dich nehmen.|F|||||}{Mach dich bereit, ein weiteres Mal zu sterben.|F|||||}}|}; -{flagstone_guard1|Stirb, Sterblicher!||{{Der Schatten soll dich nehmen.|F|||||}{Bereite dich vor, meine Klinge zu spüren.|F|||||}}|}; -{flagstone_guard2|Was? Ein Sterblicher, den ich noch nicht umgebracht habe?|{{0|flagstone|50|}}|{{N|flagstone_guard2_2|||||}}|}; -{flagstone_guard2_2|Du scheinst schmackhaft und weich zu sein, willst du Teil des Festessens sein?||{{N|flagstone_guard2_3|||||}}|}; -{flagstone_guard2_3|Ja, ich denke, du wirst. Meine Untotenhorde wird sich weit über Flagstone hinaus ausbreiten, wenn ich mit dir fertig bin.||{{Beim Schatten, du musst aufgehalten werden!|F|||||}{Nein! Dieses Land muss vor den Untoten beschützt werden!|F|||||}}|}; -{flagstone_sentry|||{{|flagstone_sentry_return4|flagstone:60||||}{|flagstone_sentry_return3|flagstone:40||||}{|flagstone_sentry_select0|||||}}|}; -{flagstone_sentry_select0|||{{|flagstone_sentry_return2|flagstone:30||||}{|flagstone_sentry_return1|flagstone:10||||}{|flagstone_sentry_1|||||}}|}; -{flagstone_sentry_1|Halt! Wer ist da? Niemandem ist es erlaubt, sich Flagstone zu nähern.||{{N|flagstone_sentry_2|||||}}|}; -{flagstone_sentry_2|Du solltest umkehren, solange du noch kannst.||{{N|flagstone_sentry_3|||||}}|}; -{flagstone_sentry_3|Flagstone wurde von den Untoten überrannt, und ich stehe hier Wache, um sicherzustellen, dass kein Untoter entfliehen kann.||{{Kannst du mir die Geschichte von Flagstone erzählen?|flagstone_sentry_4|||||}}|}; -{flagstone_sentry_4|Flagstone war als Gefängnislager für weggelaufene Arbeiter gedacht, während im Mount Galmore gegraben wurde.||{{N|flagstone_sentry_5|||||}}|}; -{flagstone_sentry_5|Aber als dort der Abbau aufhörte, verlor es seinen Zweck.||{{N|flagstone_sentry_6|||||}}|}; -{flagstone_sentry_6|Der Lord zu dieser Zeit sorgte sich nicht besonders viel um die Häftlinge, die schon in Flagstone waren und so ließ er sie dort.||{{N|flagstone_sentry_7|||||}}|}; -{flagstone_sentry_7|Andererseits nahm der Leiter des Lagers seine Pflicht sehr genau und ließ Flagstone genauso weiterlaufen, wie es war, als im Mount Galmore noch gegraben wurde.||{{N|flagstone_sentry_8|||||}}|}; -{flagstone_sentry_8|Viele Jahre lang achtete niemand auf Flagstone, abgesehen von gelegentlichen Berichten Reisender über grausame Schreie aus der Nähe des Lagers.||{{N|flagstone_sentry_9|||||}}|}; -{flagstone_sentry_9|Kürzlich änderte sich das und nun tauchen die Untoten in großen Zahlen auf.||{{N|flagstone_sentry_10|||||}}|}; -{flagstone_sentry_10|So weit die Geschichte. Ich muss die Straße vor den Untoten beschützen, so dass sie sich nicht über die Grenzen Flagstones hinaus ausbreiten können.||{{N|flagstone_sentry_11|||||}}|}; -{flagstone_sentry_11|So, ich würde dir raten du gehst, wenn du nicht von ihnen überrannt werden willst.||{{Kann ich mir die Ruinen von Flagstone einmal ansehen?|flagstone_sentry_12|||||}{Ja, ich sollte verschwinden.|X|||||}}|}; -{flagstone_sentry_12|Bist du wirklich sicher, hinein gehen zu wollen? Gut, in Ordnung, von mir aus.||{{N|flagstone_sentry_13|||||}}|}; -{flagstone_sentry_13|Ich werde dich nicht aufhalten und ich werde dich nicht beklagen, falls du niemals zurückkehrst.||{{N|flagstone_sentry_14|||||}}|}; -{flagstone_sentry_14|Geh nur. Lass mich wissen, falls ich dir etwas sagen kann, was dir weiterhelfen könnte.||{{N|flagstone_sentry_15|||||}}|}; -{flagstone_sentry_15|Kehre hierher zurück, wenn du meinen Rat brauchst.|{{0|flagstone|10|}}|{{In Ordnung. Ich werde zu dir zurückkehren, falls es etwas gibt, bei dem ich Hilfe brauche.|X|||||}}|}; -{flagstone_sentry_return1|Hallo nochmal. Hast du Flagstone betreten? Ich bin überrascht, dass du es wirklich geschafft hast, zurückzukehren.||{{Kannst du die Geschichte wiederholen?|flagstone_sentry_4|||||}{Es gibt da einen Wächter in den tieferen Ebenen Flagstones, dem man sich nicht nähern kann.|flagstone_sentry_20|flagstone:20||||}}|}; -{flagstone_sentry_20|Ein Wächter, sagst du? Das sind beunruhigende Nachrichten und bedeutet, dass es hinter alldem eine größere Kraft gibt, die dafür verantwortlich ist.||{{N|flagstone_sentry_21|||||}}|}; -{flagstone_sentry_21|Hast du den ehemaligen Leiter von Flagstone gefunden? Er hatte für gewöhnlich immer eine Halskette bei sich.||{{N|flagstone_sentry_22|||||}}|}; -{flagstone_sentry_22|Denn er war durch sie geschützt. Vielleicht war die Kette eine Art Schlüssel?||{{N|flagstone_sentry_23|||||}}|}; -{flagstone_sentry_23|Wenn du den Leiter gefunden und die Kette ausfindig gemacht hast, kehre bitte hierher zurück und ich werde, falls darauf eine Nachricht vorhanden ist, diese entziffern.|{{0|flagstone|30|}}|{{Ich habe sie gefunden, hier.|flagstone_sentry_40||necklace_flagstone|1|0|}{Was war nochmal mit diesem Wächter?|flagstone_sentry_20|||||}{Ok, ich werde nach dem ehemaligen Leiter suchen.|X|||||}}|}; -{flagstone_sentry_return2|Hallo nochmal. Hast du den ehemaligen Leiter Flagstones schon gefunden?||{{Über den ehemaligen Leiter...|flagstone_sentry_23|||||}{Kannst du die Geschichte noch einmal wiederholen?|flagstone_sentry_3|||||}}|}; -{flagstone_sentry_40|Du hast die Kette gefunden? Gut. Hier, gib sie mir.|{{0|flagstone|40|}}|{{N|flagstone_sentry_41|||||}}|}; -{flagstone_sentry_41|Nun, lass uns sehen. Ah ja, es ist wie ich es mir gedacht habe. Die Halskette enthält ein Passwort.||{{N|flagstone_sentry_42|||||}}|}; -{flagstone_sentry_42|\'Licht und Schatten\'. Das muss es sein. Du solltest versuchen, dich dem Wächter mit diesem Passwort zu nähern.||{{Danke, auf Wiedersehen.|X|||||}}|}; -{flagstone_sentry_return3|Hallo nochmal. Wie geht es mit deiner Untersuchung der Untoten in Flagstone voran?||{{Es gibt noch keine Fortschritte.|flagstone_sentry_43|||||}}|}; -{flagstone_sentry_43|Gut, bleib wachsam. Komm zu mir, wenn du meinen Rat brauchst.|||}; -{flagstone_sentry_return4|Hallo nochmal. Es scheint, dass etwas in Flagstone geschehen ist, das die Untoten geschwächt hat. Ich bin sicher, wir müssen dir dafür danken.|||}; - -{narael|Vielen Dank, dass du mich von dem Ungeheuer befreit hast.||{{N|narael_select|||||}}|}; -{narael_select|||{{|narael_9|flagstone:60||||}{|narael_1|||||}}|}; -{narael_1|Mir kommt es so vor, als wäre ich hier eine Ewigkeit gefangen gewesen.||{{N|narael_2|||||}}|}; -{narael_2|Oh, all die Dinge, die sie mir antaten. Vielen vielen Dank, dass du mich gerettet hast.||{{N|narael_3|||||}}|}; -{narael_3|Ich war einmal ein Bürger Nor Citys und arbeitete beim Abbau im Mount Galmore.||{{N|narael_4|||||}}|}; -{narael_4|Nach einer Weile kam der Tag, an dem ich meinen Posten verlassen und zu meiner Frau zurückkehren wollte.||{{N|narael_5|||||}}|}; -{narael_5|Der verantwortliche Offizier wollte mich nicht gehen lassen und ich wurde als Gefangener nach Flagstone geschickt, weil ich den Gehorsam verweigert hatte.||{{N|narael_6|||||}}|}; -{narael_6|Wenn ich meine Frau nur noch einmal sehen könnte. Ich habe kaum noch Leben in mir, und ich habe nicht einmal genug Kraft um diesen Ort zu verlassen.||{{N|narael_7|||||}}|}; -{narael_7|Ich schätze, es ist mein Schicksal, hier zu sterben, aber nun wenigstens als freier Mann.||{{N|narael_8|||||}}|}; -{narael_8|Jetzt überlass mich meinem Schicksal. Ich habe nicht genug Kraft, diesen Ort zu verlassen.|{{0|flagstone|60|}}|{{N|narael_9|||||}}|}; -{narael_9|Wenn du meine Frau Taurum in Nor City findest, erzähle ihr bitte, dass ich am Leben bin und dass ich sie nicht vergessen habe.||{{Werde ich. Auf Wiedersehen.|X|||||}{Werde ich. Der Schatten sei mit dir.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fallhaven_lumberjack|Hallo, ich bin Jakrar.||{{Bist du ein Holzfäller?|fallhaven_lumberjack_2|||||}}|}; -{fallhaven_lumberjack_2|Ja, Ich bin Fallhaven\'s Holzfäller. Brauchst du irgend etwas aus feinstem Holz? Wahrscheinlich habe ich es.|||}; -{alaun|Hallo. Ich bin Alaun. Wie kann ich dir helfen?||{{Hast du meinen Bruder Andor gesehen? Er sieht mir ähnlich.|alaun_2|||||}}|}; -{alaun_2|Du suchst nach deinem Bruder, sagst du? Sieht aus wie du? Hm.||{{N|alaun_3|||||}}|}; -{alaun_3|Nein, ich kann mich nicht daran erinnern, jemanden nach dieser Beschreibung gesehen zu haben. Vielleicht solltest du es im Dorf Crossglen westlich von hier probieren.|||}; -{fallhaven_farmer1|Hallo. Bitte störe mich nicht, ich habe viel zu tun.|||}; -{fallhaven_farmer2|Hallo. Könntest du mir bitte aus dem Weg gehen? Ich versuche zu arbeiten.|||}; -{khorand|Hey du, denk nicht mal dran, eine von den Kisten auch nur anzufassen. Ich beobachte dich!|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{keyarea_andor1|Du solltest als erstes mit Mikhail reden.|||}; -{note_lodars|Auf dem Boden findest du ein Stück Papier mit lauter merkwürdigen Zeichen. Du kannst gerade so die Worte \'treffe mich bei Lodars Versteck\' entziffern, aber du weißt nicht, was das bedeuten soll.|||}; -{keyarea_crossglen_smith|Audir ruft: Hey du, verschwinde! Du hast da hinten nichts zu suchen.|||}; -{sign_crossglen_cave|Das Schild an der Wand ist an mehreren Stellen gesprungen. Du kannst aus der Schrift nichts verständliches herauslesen.|||}; -{sign_wild1|westlich: Crossglen\nsüdlich: Fallhaven\nnördlich: Feygard|||}; -{sign_notdone|Diese Karte ist noch nicht fertig. Bitte komm in einer späteren Version des Spiels zurück.|||}; -{sign_wild3|westlich: Crossglen\nöstlich: Fallhaven\nnördlich: Feygard|||}; -{sign_pitcave2|Gandir liegt hier begraben, ermordet von der Hand seines früheren Freundes Irogotu.|||}; -{sign_fallhaven1|Willkommen in Fallhaven. Achte auf Taschendiebe!|||}; -{key_fallhavenchurch|Es ist nicht erlaubt, die Katakomben der Kirche von Fallhaven ohne Genehmigung zu betreten.|||}; -{arcir_basement_tornpage|Du siehst eine ausgerissene Seite eines Buches mit dem Namen \'Calomyranische Geheimnisse\'. Blut befleckt seine Ränder und jemand hat das Wort \'Larcal\' mit Blut darauf geschrieben.|{{0|calomyran|20|}}||}; -{arcir_basement_statue|Elythara, Mutter des Lichts. Beschütze uns vor dem Fluch des Schattens.|{{0|arcir|10|}}||}; -{fallhaven_tavern_room|Dir ist der Zutritt zu dem Raum nicht erlaubt, solange du ihn nicht gemietet hast.|||}; -{fallhaven_derelict1|Bucus ruft: Hey du, geh dort weg!|||}; -{sign_wild6|nördlich: Crossglen\nöstlich: Fallhaven\nsüdlich: Stoutford|||}; -{sign_wild7|westlich: Stoutford\nnördlich: Fallhaven|||}; -{sign_wild10|nördlich: Fallhaven\nwestlich: Stoutford|||}; -{flagstone_key_demon|Der Dämon strahlt eine Kraft aus, die dich zurückdrückt, was es dir unmöglich macht, den Dämon zu erreichen.|||}; -{flagstone_brokensteps|Du bemerkst, dass dieser Tunnel scheinbar unterhalb von Flagstone ausgegraben wurde. Vermutlich die Arbeit eines früheren Häftlings von Flagstone.|{{0|flagstone|20|}}||}; -{sign_wild12|nördlich: Fallhaven\nöstlich: Vilegard\nöstlich: Nor City|||}; - - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{thievesguild_thief_1|Hallo Junge.||{{Hallo. Weißt du, wo ich Umar finden kann?|thievesguild_thief_4|||||}{Was ist das für ein Ort?|thievesguild_thief_2|||||}}|}; -{thievesguild_thief_2|Das ist unsere Gildenhalle. Hier sind wir vor den Wachen von Fallhaven sicher.||{{N|thievesguild_thief_3|||||}}|}; -{thievesguild_thief_3|Wir können hier so ziemlich alles machen, was wir wollen. Solange Umar es erlaubt, versteht sich.||{{Weißt du, wo ich Umar finden kann?|thievesguild_thief_4|||||}{Wer ist Umar?|thievesguild_thief_5|||||}}|}; -{thievesguild_thief_4|Er ist wahrscheinlich in seinem Raum, dort drüben. *zeigt darauf*||{{Danke.|X|||||}}|}; -{thievesguild_thief_5|Umar ist unser Gildenoberhaupt. Er macht unsere Regeln und entscheidet für uns bei moralischen Fragen.||{{Wo kann ich ihn finden?|thievesguild_thief_4|||||}}|}; - -{thievesguild_cook_1|Hallo, möchtest du etwas?||{{Du siehst aus, als wärst du hier der Koch.|thievesguild_cook_2|||||}{Darf ich sehen, welches Essen du verkaufst?|S|||||}{Farrik sagte, du kannst mir einen speziellen Met zubereiten.|thievesguild_select_1|farrik:20||||}}|}; -{thievesguild_cook_2|Das ist richtig. Jemand muss dafür sorgen, dass diese Raufbolde satt werden.||{{Das riecht auf jeden Fall sehr gut|thievesguild_cook_3|||||}{Dieser Eintopf sieht ekelhaft aus|thievesguild_cook_4|||||}{Na dann, bis später|X|||||}}|}; -{thievesguild_cook_3|Danke. Mit diesem Eintopf geht es gut voran.||{{Ich bin daran interessiert, etwas davon zu kaufen.|S|||||}}|}; -{thievesguild_cook_4|Ja, ich weiß. Mit diesen schlechten Zutaten kann man nicht viel machen? Immerhin macht es uns satt.||{{Darf ich sehen, was du zu verkaufen hast?|S|||||}}|}; -{thievesguild_cook_5|Oh sicher. Du hast vor, jemand ins Reich der Träume zu schicken, oder?||{{N|thievesguild_cook_6|||||}}|}; -{thievesguild_cook_6|Keine Angst, ich werde es niemandem erzählen. So etwas zuzubereiten gehört zu meinen Spezialitäten.||{{N|thievesguild_cook_7|||||}}|}; -{thievesguild_cook_7|Gib mir eine Minute, um ihn für dich zusammenzumischen.||{{N|thievesguild_cook_8|||||}}|}; -{thievesguild_select_1|||{{|thievesguild_cook_10|farrik:25||||}{|thievesguild_cook_5|||||}}|}; -{thievesguild_cook_8|Hier. Das sollte genügen. Bitte schön.|{{0|farrik|25|}{1|sleepingmead||}}|{{N|thievesguild_cook_9|||||}}|}; -{thievesguild_cook_10|Ja, ich hab dir vorhin einen speziellen Trank gegeben.||{{N|thievesguild_cook_9|||||}}|}; -{thievesguild_cook_9|Sei vorsichtig, damit du nicht etwas von dem Zeug an die Finger bekommst, es ist wirklich sehr stark.||{{Vielen Dank.|X|||||}}|}; - -{thievesguild_pickpocket_1|Hallo.||{{Wer bist du?|thievesguild_pickpocket_2|||||}{Was ist das für ein Ort?|thievesguild_thief_2|||||}}|}; -{thievesguild_pickpocket_2|Mein richtiger Name ist unwichtig. Die Leute nennen mich meistens Flinke Hände.||{{Warum das?|thievesguild_pickpocket_3|||||}}|}; -{thievesguild_pickpocket_3|Nun, ich habe eine Tendenz zu .. wie soll ich es sagen .. gewisse Dinge einfach anzueignen.||{{N|thievesguild_pickpocket_4|||||}}|}; -{thievesguild_pickpocket_4|Dinge, die früher anderen Besitzern gehörten.||{{Meinst du stehlen?|thievesguild_pickpocket_5|||||}}|}; -{thievesguild_pickpocket_5|Nein nein. ich würde es nicht stehlen nennen. Es ist mehr ein Eigentumstransfer. Für mich ist es das.||{{Das hört sich für mich aber sehr nach stehlen an.|thievesguild_pickpocket_6|||||}{Das hört sich für mich wie eine gute Rechtfertigung an.|thievesguild_pickpocket_6|||||}}|}; -{thievesguild_pickpocket_6|Naja, wir sind die Diebesgilde. Was hast du erwartet?|||}; - -{thievesguild_troublemaker_1|Hallo. Kenne ich dich nicht irgendwoher?||{{Nein, ich bin sicher, wir sind uns noch nie begegnet.|thievesguild_troublemaker_3|||||}{Was machst du hier?|thievesguild_troublemaker_2|||||}{Kann ich einen Blick auf deine Vorräte werfen?|S|||||}}|}; -{thievesguild_troublemaker_2|Ich habe ein Auge auf unsere Vorräte für die Gilde.||{{Kann ich einen Blick auf deine Vorräte werfen?|S|||||}}|}; -{thievesguild_troublemaker_3|Nein, ich erkenne dich wirklich.||{{Du musst mich mit jemand anderem verwechselt haben.|thievesguild_troublemaker_4|||||}{Vielleicht hast du mich mit meinem Bruder Andor verwechselt.|thievesguild_troublemaker_5|||||}}|}; -{thievesguild_troublemaker_4|Ja, das könnte sein.||{{Hast du meinen Bruder hier gesehen? Er sieht mir ähnlich.|thievesguild_troublemaker_5|||||}}|}; -{thievesguild_troublemaker_5|Oh ja, jetzt wo du es sagst. Da war dieser Junge, der hier umher rannte und eine Menge Fragen stellte.||{{Weißt du, was er gesucht oder gemacht hat?|thievesguild_troublemaker_6|||||}}|}; -{thievesguild_troublemaker_6|Nein. Ich weiß es nicht. Ich kümmere mich bloß um die Vorräte.||{{Ok, vielen Dank jedenfalls. Auf Wiedersehen.|X|||||}{Bah, du bist nutzlos. Auf Wiedersehen.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{farrik_1|Hallo. I habe gehört, dass du den Schlüssel von Luthor für uns gefunden hast. Gute Arbeit, er wird uns wirklich nützlich sein.||{{Wer bist du?|farrik_2|||||}{Was kannst du mir über die Diebesgilde erzählen?|farrik_4|||||}}|}; -{farrik_2|Ich bin Farrik, Umars Bruder.||{{Was machst du hier?|farrik_3|||||}{Was kannst du mir über die Diebesgilde erzählen?|farrik_4|||||}}|}; -{farrik_3|Ich bin vor allem für den Handel mit anderen Gilden zuständig und habe ein Auge darauf, was die Diebe brauchen, um so effektiv wie möglich zu sein.||{{Was kannst du mir über die Diebesgilde erzählen?|farrik_4|||||}}|}; -{farrik_4|Wir versuchen so stark wie möglich zueinander zu halten und helfen unseren Kameraden so gut es nur geht.||{{Gibt es irgendwelche Neuigkeiten?|farrik_5|||||}}|}; -{farrik_5|Nun, da gab es etwas vor ein paar Wochen. Eines unserer Gildenmitglieder wurde wegen einem Einbruch inhaftiert.||{{N|farrik_6|||||}}|}; -{farrik_6|Die Wache von Fallhaven nimmt seit kurzem großen Anstoß an uns. Wahrscheinlich, weil wir auf unseren jüngsten Missionen sehr erfolgreich waren.||{{N|farrik_7|||||}}|}; -{farrik_7|Die Wachen haben ihre Sicherheitsmaßnahmen in letzter Zeit verschärft, was zur Verhaftung eines unserer Mitglieder führte.||{{N|farrik_8|||||}}|}; -{farrik_8|Er wird zur Zeit im Gefängnis von Fallhaven festgehalten und wartet auf seine bevorstehende Verlegung nach Feygard.||{{Was hat er gemacht?|farrik_9|||||}}|}; -{farrik_9|Oh, nichts schlimmes. Er versuchte in die Katakomben der Kirche von Fallhaven einzubrechen.||{{N|farrik_10|||||}}|}; -{farrik_10|Aber nun, da du uns bei dieser Mission geholfen hast, schätze ich, dass wir dort nicht mehr hingehen müssen.||{{N|farrik_11|||||}}|}; -{farrik_11|Ich vermute, ich kann dir ein Geheimnis anvertrauen. Wir planen eine Mission in dieser Nacht, um ihn aus dem Gefängnis zu befreien.|{{0|farrik|10|}}|{{Diese Wachen scheinen wirklich lästig zu sein.|farrik_13|||||}{Naja, wenn es ihm nicht erlaubt war dort hinunter zu gehen, dann hatten die Wachen doch Recht damit, ihn zu verhaften.|farrik_12|||||}}|}; -{farrik_12|Ja, vermutlich. Aber der Gilde wegen hätten wir unseren Freund lieber frei als gefangen.||{{Vielleicht sollte ich den Wachen erzählen, dass ihr vorhabt, ihn zu befreien?|farrik_15|||||}{Keine Sorge, euer geheimer Plan, ihn zu befreien, ist bei mir sicher.|farrik_14|||||}{[Lüge] Keine Sorge, euer geheimer Plan, ihn zu befreien, ist bei mir sicher.|farrik_14|||||}}|}; -{farrik_13|Oh ja, das sind sie. Die Allgemeinheit kann sie auch nicht leiden, das empfinden nicht nur wir in der Diebesgilde so.||{{Gibt es etwas, womit ich euch gegen diese lästigen Wachen helfen kann?|farrik_16|||||}}|}; -{farrik_14|Vielen Dank. Nun geh bitte.|||}; -{farrik_15|Wie du meinst, sie würden dir sowieso nicht glauben.|{{0|farrik|30|}}||}; -{farrik_16|Bist du sicher, dass du die Wachen verärgern möchtest? Fall sie bemerken, dass du daran beteiligt bist, könntest du in große Schwierigkeiten geraten.||{{Kein Problem, ich kann auf mich aufpassen!|farrik_18|||||}{Dafür könnte es später eine Belohnung geben. Ich bin dabei.|farrik_18|||||}{Wenn ich es mir recht überlege, sollte ich mich aus der Sache raushalten.|farrik_17|||||}}|}; -{farrik_17|Sicher, es liegt an dir.||{{Viel Glück auf deiner Mission.|farrik_14|||||}{Vielleicht sollte ich der Wache erzählen, dass ihr vorhabt, ihn zu befreien?|farrik_15|||||}}|}; -{farrik_18|Gut.||{{N|farrik_19|||||}}|}; -{farrik_19|Ok, hier ist der Plan. Der Kommandant der Wache hat ein kleines Alkoholproblem.||{{N|farrik_20|||||}}|}; -{farrik_20|Falls wir ihm den Met, den wir vorbereitet haben, in die Hände spielen würden, dann könnten wir in der Lage sein, unseren Freund in der Nacht, während der Kommandant seinen Rausch ausschläft, zu befreien.||{{N|farrik_20a|||||}}|}; -{farrik_20a|Unser Koch kann dir ein speziell zubereiteten Met herstellen, das ihn außer Gefecht setzen wird.||{{N|farrik_21|||||}}|}; -{farrik_21|Es wird wahrscheinlich nötig sein, ihn zu überzeugen, bei der Pflicht zu trinken. Falls das nicht klappt, könnte er vielleicht stattdessen bestochen werden.||{{N|farrik_22|||||}}|}; -{farrik_22|Wie klingt das für dich? Denkst du, du schaffst das?||{{Sicher, klingt leicht!|farrik_23|||||}{Klingt ein bisschen gefährlich, aber ich denke, ich werde es versuchen.|farrik_23|||||}{Nein, das hört sich mittlerweile wirklich langsam nach einer schlechten Idee an.|farrik_17|||||}}|}; -{farrik_23|Gut. Erstatte mir Bericht, sobald du es geschafft hast, dem Kommandanten den speziellen Met zu verabreichen.|{{0|farrik|20|}}|{{Werde ich tun|farrik_14|||||}}|}; -{farrik_return_1|Sei gegrüßt, mein Freund. Wie lief deine Mission, den Kommandanten betrunken zu machen?||{{Ich bin noch nicht fertig, aber ich arbeite dran.|farrik_23|||||}{[Lüge] Es ist geschafft. Er sollte heute Nacht kein Problem sein.|farrik_26|farrik:50||||}{Es ist geschafft. Er sollte heute Nacht kein Problem sein.|farrik_24|farrik:60||||}}|}; -{farrik_select_1|||{{|farrik_return_2|farrik:70||||}{|farrik_return_2|farrik:80||||}{|farrik_select_2|||||}}|}; -{farrik_select_2|||{{|farrik_return_1|farrik:20||||}{|farrik_1|||||}}|}; -{farrik_24|Das sind gute Nachrichten! Nun sollte es uns möglich sein, unseren Freund heute Nacht aus dem Gefängnis zu befreien.|{{0|farrik|70|}}|{{N|farrik_25|||||}}|}; -{farrik_25|Ich danke dir für deine Hilfe, mein Freund. Nimm diese Münzen als Zeichen unserer Anerkennung.|{{1|gold200||}}|{{Danke sehr. Tschüss.|X|||||}{Endlich ein paar Goldmünzen.|X|||||}}|}; -{farrik_return_2|Danke für deine Hilfe mit dem Kommandanten der Wache neulich.|||}; -{farrik_26|Oh, du hast es geschafft? Gut gemacht. Du hast meinen Dank, mein Freund.|{{0|farrik|80|}}||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fallhaven_warden|Erkläre dein Vorhaben.||{{Wer ist dieser Gefangene?|warden_prisoner_1|||||}{Ich hörte, dass du Met magst.|fallhaven_warden_1|farrik:20||||}{Die Diebe planen, ihren Freund zu befreien.|fallhaven_warden_20|farrik:30||||}}|}; -{warden_prisoner_1|Dieser Dieb? Er wurde auf frischer Tat ertappt. Einbrechen wollte er. Er versuchte hinunter in die Katakomben der Kirche von Fallhaven zu gelangen.||{{N|warden_prisoner_2|||||}}|}; -{warden_prisoner_2|Glücklicherweise konnten wir ihn festnehmen, bevor er nach unten gelangen konnte. Nun wird er für alle anderen Diebe als Exempel dienen.||{{N|warden_prisoner_3|||||}}|}; -{warden_prisoner_3|Verdammte Diebe. Es muss hier irgendwo ein Nest von ihnen geben. Wenn ich nur herausfinden könnte, wo sie sich verstecken.|||}; -{fallhaven_warden_1|Met? Oh.. nein, Ich mach das nicht mehr. Wer hat dir das erzählt?||{{N|fallhaven_warden_2|||||}}|}; -{fallhaven_warden_2|Ich habe vor Jahren damit aufgehört.||{{Klingt nach einem guten Vorsatz. Viel Glück dabei, damit weiterzumachen.|X|||||}{Nicht mal ein kleines bisschen?|fallhaven_warden_3|||||}}|}; -{fallhaven_warden_3|Hm. *räuspert sich* Ich sollte wirklich nicht.||{{Ich habe welchen dabei, wenn du ein Schlückchen willst.|fallhaven_warden_4|farrik:25|sleepingmead|1|0|}{Ok, auf Wiedersehen|X|||||}}|}; -{fallhaven_warden_4|Oh, süßes Getränk der Freude. Ich sollte das allerdings nicht trinken, während ich Dienst habe.|{{0|farrik|32|}}|{{N|fallhaven_warden_5|||||}}|}; -{fallhaven_warden_5|Ich könnte für das Trinken im Dienst bestraft werden. Ich denke nicht, dass ich es im Augenblick wagen sollte.||{{N|fallhaven_warden_6|||||}}|}; -{fallhaven_warden_6|Danke aber für das Getränk, ich werde es später genießen, wenn ich morgen nach Hause gekommen bin.||{{Du bist willkommen. Tschüss.|X|||||}{Was wäre, wenn jemand dir die Strafe bezahlen würde?|fallhaven_warden_7|||||}}|}; -{fallhaven_warden_7|Oh, das klingt ein bisschen fragwürdig. Ich bezweifle stark, dass jemand hier die 450 Goldmünzen aufbringen könnte. Außerdem würde ich ein bisschen mehr als das brauchen, um dies zu riskieren.||{{Ich habe gerade 500 Goldmünzen dabei, die kannst du haben.|fallhaven_warden_9||gold|500|0|}{Du weißt, du willst den Met, richtig?|fallhaven_warden_8|||||}{Ja, ich stimme dir zu. Das fängt wirklich an, sich sehr fragwürdig anzuhören. Tschüss.|X|||||}}|}; -{fallhaven_warden_8|Oh sicher. Jetzt da du es sagst. Es würde sicher gut sein.||{{Was wäre, wenn ich dir, sagen wir, 400 Goldmünzen zahle. Würde das deiner Beunruhigung, den Trunk jetzt zu genießen, genug entgegenwirken?|fallhaven_warden_9||gold|400|0|}{Das fängt an, für mich zu fragwürdig zu klingen. Ich überlasse dich deiner Pflicht, tschüss.|X|||||}{Ich mache mich auf, die Goldmünzen für dich aufzutreiben. Tschüss.|X|||||}}|}; -{fallhaven_warden_9|Wow, so viele Goldmünzen? Ich bin sicher, ich könnte sogar damit davonkommen, ohne bestraft zu werden. Dann könnte ich die Goldmünzen UND einen schönen Met gleichzeitig haben.|{{0|farrik|60|}}|{{N|fallhaven_warden_10|||||}}|}; -{fallhaven_warden_10|Ich danke dir, Junge, du bist wirklich nett. Nun geh, damit ich mein Getränk genießen kann.|||}; -{fallhaven_warden_select_1|||{{|fallhaven_warden_11|farrik:60||||}{|fallhaven_warden_35|farrik:90||||}{|fallhaven_warden_select_2|||||}}|}; -{fallhaven_warden_select_2|||{{|fallhaven_warden_30|farrik:50||||}{|fallhaven_warden_12|farrik:32||||}{|fallhaven_warden|||||}}|}; -{fallhaven_warden_11|Hallo nochmal, Junge. Danke für das Getränk vorhin. Ich habe alles auf einmal getrunken. Ich bin mir sicher, es hat anders als vorher geschmeckt, aber ich vermute, es liegt daran, dass ich daran schon nicht mehr gewöhnt bin.||{{Wer ist dieser Gefangene?|warden_prisoner_1|||||}}|}; -{fallhaven_warden_12|Hallo nochmal, Junge. Danke für das Getränk vorhin. Ich habe es noch immer nicht getrunken.||{{N|fallhaven_warden_5|||||}}|}; -{fallhaven_warden_20|Wirklich, sie würden es wagen, gegen die Wache in Fallhaven vorzugehen? Hast du irgendwelche Details ihres Plans?||{{Ich hörte, sie planen seine Flucht heute Nacht|fallhaven_warden_21|||||}{Nein, ich habe mir bloß einen Scherz erlaubt. Mach dir nichts daraus.|X|||||}{Wenn ich es recht bedenke, sollte ich die Diebesgilde besser nicht enttäuschen. Vergiss, dass ich etwas gesagt habe.|X|||||}}|}; -{fallhaven_warden_21|Heute Nacht? Danke für diese Information. Wir werden sicherstellen, dass die Sicherheit heute Nacht erhöht wird, aber auf eine Art, dass sie davon nichts mitbekommen werden.|{{0|farrik|40|}}|{{N|fallhaven_warden_22|||||}}|}; -{fallhaven_warden_22|Sobald sie sich dafür entscheiden, ihn zu befreien, werden wir vorbereitet sein. Vielleicht können wir mehr von diesen schmutzigen Dieben verhaften.||{{N|fallhaven_warden_23|||||}}|}; -{fallhaven_warden_23|Danke nochmal für die Benachrichtigung. Auch wenn ich nicht genau weiß, wie du das herausbekommen konntest, bin ich sehr froh, dass du es mir gesagt hast.||{{N|fallhaven_warden_24|||||}}|}; -{fallhaven_warden_24|Ich möchte dass du noch einen draufsetzt und ihnen sagst, dass die Zelle heute Nacht nur schwach bewacht wird. Aber stattdessen werden wir die Sicherheit erhöhen. Auf diese Art können wir wirklich auf sie gefasst sein.||{{Sicher kann ich das tun.|fallhaven_warden_25|||||}}|}; -{fallhaven_warden_25|Gut. Sag mir Bescheid, sobald du es ihnen gesagt hast.|{{0|farrik|50|}}|{{Werde ich machen.|X|||||}}|}; -{fallhaven_warden_30|Hallo nochmal, mein Freund. Hast du diesen Dieben erzählt, dass wir heute Nacht die Sicherheit verringern?||{{Ja, sie sind auf nichts gefasst.|fallhaven_warden_31|||||}{Nein, noch nicht. Ich arbeite daran.|fallhaven_warden_25|||||}}|}; -{fallhaven_warden_31|Großartig. Danke für deine Hilfe. Hier, nimm diese Münzen als ein Zeichen unserer Anerkennung.|{{0|farrik|90|}{1|gold200||}}|{{N|fallhaven_warden_36|||||}}|}; -{fallhaven_warden_35|Hallo nochmal, mein Freund. Danke für deine Hilfe mit diesen Dieben neulich.||{{N|fallhaven_warden_36|||||}}|}; -{fallhaven_warden_36|Ich werde dafür sorgen, dass man den anderen Wachen erzählt, wie du uns hier in Fallhaven geholfen hast.||{{Ich danke dir. Auf Wiedersehen.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{umar_select_1|||{{|umar_return_1|andor:51||||}{|umar_novisit_1|||||}}|}; -{umar_return_1|Hallo nochmal, mein Freund.||{{Hallo.|umar_return_2|||||}{Schön dich gesehen zu haben. Tschüss.|X|||||}}|}; -{umar_return_2|Irgendetwas anderes, womit ich dir helfen kann?||{{Könntest du wiederholen, was du über Andor gesagt hast?|umar_5|||||}{Schön dich gesehen zu haben. Tschüss.|X|||||}}|}; -{umar_novisit_1|Hallo. Wie lief deine Suche?||{{Welche Suche?|umar_2|||||}}|}; -{umar_2|Als wir uns das letzte Mal unterhielten, fragtest du nach dem Weg zu Lodars Zufluchtsort. Hast du ihn gefunden?||{{Wir haben uns noch nie getroffen.|umar_3|||||}{Du musst mich mit meinem Bruder Andor verwechselt haben. Wir sehen uns sehr ähnlich.|umar_4|||||}}|}; -{umar_3|Oh. Ich muss dich mit jemand anderem verwechselt haben.||{{Mein Bruder Andor und ich sehen uns sehr ähnlich.|umar_4|||||}}|}; -{umar_4|Wirklich? Dann vergiss, was ich gesagt habe.|{{0|andor|51|}}|{{Ich schätze das heißt, dass Andor hier war. Was hat er gemacht?|umar_5|||||}}|}; -{umar_5|Er kam vor einer Weile hierher und stellte eine Menge Fragen darüber, welches Verhältnis die Diebesgilde zum Schatten und zur königlichen Garde in Feygard hat.||{{N|umar_6|||||}}|}; -{umar_6|Wir in der Diebesgilde kümmern uns weder so richtig um den Schatten noch kümmern wir uns um die königliche Garde.||{{N|umar_7|||||}}|}; -{umar_7|Wir versuchen, über ihren Zänkereien und Streitigkeiten zu stehen. Sie können so viel kämpfen, wie sie wollen, aber die Diebesgilde wird sie alle überdauern.||{{Was für einen Konflikt meinst du?|umar_conflict_1|||||}{Erzähl mir mehr von dem, wonach Andor gefragt hat|umar_andor_1|||||}}|}; -{umar_conflict_1|Wo warst du die letzten paar Jahre? Weißt du nichts von dem brodelndem Konflikt?||{{N|umar_conflict_2|||||}}|}; -{umar_conflict_2|Die königliche Garde, unter der Führung von Lord Geomyr in Feygard, versucht den jüngsten Anstieg von illegalen Aktivitäten Einhalt zu gebieten und erlässt aus dem Grund immer mehr Regeln, was erlaubt ist und was nicht.||{{N|umar_conflict_3|||||}}|}; -{umar_conflict_3|Die Priester des Schattens, die hauptsächlich in Nor City leben, sind Gegner der neuen Verbote und sagen, dass sie die Art und Weise einschränken, auf die sie den Schatten erfreuen können.||{{N|umar_conflict_4|||||}}|}; -{umar_conflict_4|Im Gegenzug planen die Priester des Schattens Lord Geomyr und seine Truppen zu stürzen.||{{N|umar_conflict_5|||||}}|}; -{umar_conflict_5|Außerdem munkelt man, dass die Priester weiterhin ihre Rituale ausüben, obwohl die meisten dieser Rituale verboten worden sind.||{{N|umar_conflict_6|||||}}|}; -{umar_conflict_6|Lord Geomyr und seine königliche Garde auf der anderen Seite, versuchen weiterhin ihr Bestes, auf eine Weise zu regieren, die sie als gerecht empfinden.||{{N|umar_conflict_7|||||}}|}; -{umar_conflict_7|Wir in der Diebesgilde versuchen, nicht in diesen Konflikt verwickelt zu werden. Unsere Aktivitäten wurden bislang noch nicht von dem Konflikt beeinträchtigt.||{{Danke, dass du mir das alles erzählt hast.|umar_return_2|||||}{Was auch immer, das ist nicht meine Angelegenheit.|umar_return_2|||||}}|}; -{umar_andor_1|Er fragte nach meiner Unterstützung und fragte, wie man Lodar finden kann.||{{Wer ist Lodar?|umar_andor_2|||||}}|}; -{umar_andor_2|Lodar? Er ist einer von unseren berühmten Alchemisten in der Diebesgilde. Er kann alle Sorten von starken Schlafmitteln, Heiltränken und Heilmitteln herstellen.||{{N|umar_andor_3|||||}}|}; -{umar_andor_3|Aber seine Spezialität sind natürlich seine Gifte. Seine Gifte können sogar den größten Monstern schaden.||{{Was würde Andor von ihm wollen?|umar_andor_4|||||}}|}; -{umar_andor_4|Ich weiß es nicht. Vielleicht hat er nach einem Trank gesucht.|{{0|andor|55|}}|{{So, wo kann ich diesen Lodar finden?|umar_lodar_1|||||}}|}; -{umar_lodar_1|Das sollte ich dir wirklich nicht sagen. Wie man ihn findet ist ein streng gehütetes Geheimnis in der Gilde. Sein Zufluchtsort ist nur von unseren Mitgliedern erreichbar.||{{N|umar_lodar_2|||||}}|}; -{umar_lodar_2|Andererseits, ich habe gehört, dass du uns geholfen hast, den Schlüssel von Luthor zu finden. Er ist etwas, das wir schon seit langer Zeit haben wollten.||{{N|umar_lodar_3|||||}}|}; -{umar_lodar_3|Ok, ich werde dir sagen, wie man zu Lodars Zufluchtsort kommt. Aber du musst versprechen, es geheimzuhalten. Erzähle es niemandem. Nicht einmal denen, die Mitglieder der Diebesgilde zu sein scheinen.||{{Ok, ich verspreche, es niemandem zu sagen.|umar_lodar_4|||||}{Ich kann dir keine Garantie geben, aber ich werde es versuchen.|umar_lodar_4|||||}}|}; -{umar_lodar_4|Gut. Das Ding ist, dass du nicht nur den Ort selbst finden musst, sondern du außerdem auch die richtigen Worte nennen musst, damit dir der Wächter Zutritt gewährt.||{{N|umar_lodar_5|||||}}|}; -{umar_lodar_5|Der einzige, der die Sprache des Wächters versteht, ist der alte Mann Ogam in Vilegard.|{{0|lodar|10|}}|{{N|umar_lodar_6|||||}}|}; -{umar_lodar_6|Du solltest in die Stadt Vilegard reisen und Ogam aufsuchen. Er kann dir helfen, die richtigen Worte zu bekommen, um Lodars Zufluchtsort betreten zu können.|{{0|lodar|15|}}|{{Wie komme ich nach Vilegard?|umar_vilegard_1|||||}{Danke sehr. Da war noch etwas anderes, über das ich reden wollte.|umar_return_2|||||}{Danke vielmals, auf Wiedersehen.|X|||||}}|}; -{umar_vilegard_1|Du reist von Fallhaven in Richtung Südosten. Wenn du die Hauptstraße und die Taverne \'Schäumende Flasche\' erreichst, reise nach Süden. Es liegt nicht weit von hier im Südosten.||{{N|umar_return_2|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{kaori_start|||{{|kaori_default_1|kaori:20||||}{|kaori_return_1|kaori:10||||}{|kaori_1|||||}}|}; -{kaori_1|Du bist hier nicht willkommen. Bitte geh jetzt.||{{Warum hat hier in Vilegard jeder so viel Angst vor Fremden?|kaori_2|||||}{Jolnor bat mich mit dir zu reden.|kaori_3|kaori:5||||}}|}; -{kaori_2|Ich möchte nicht mit dir reden. Geh und sprich mit Jolnor in der Kapelle, wenn du uns helfen willst.|{{0|vilegard|10|}}|{{Ok, tschüss.|X|||||}{Na gut, dann rede eben nicht mit mir.|X|||||}}|}; -{kaori_3|Das tat er? Ich vermute, du bist nicht so schlimm wie ich zuerst dachte.||{{N|kaori_4|||||}}|}; -{kaori_4|Ich bin noch nicht davon überzeugt, dass du kein Spion von Feygard bist, der geschickt wurde, um Unheil zu stiften.||{{Was kannst du mir über Vilegard erzählen?|kaori_trust_1|||||}{Ich kann dir versichern, dass ich kein Spion bin.|kaori_5|||||}{Feygard, wo oder was ist das?|kaori_trust_1|||||}}|}; -{kaori_5|Hm. Vielleicht nicht. Aber andererseits, vielleicht bist du einer. Ich bin immer noch unsicher.||{{Gibt es irgendetwas, das ich tun kann, um dein Vertrauen zu gewinnen?|kaori_10|||||}{[Bestechung] Wie würden sich 100 Goldmünzen anhören? Könnte dir das helfen, mir zu vertrauen?|kaori_bribe|||||}}|}; -{kaori_trust_1|Ich traue dir noch immer nicht genug, um mit dir darüber zu sprechen.||{{Gibt es irgendetwas, das ich tun kann, um dein Vertrauen zu gewinnen?|kaori_10|||||}{[Bestechung] Wie würden sich 100 Goldmünzen anhören? Könnte dir das helfen, mir zu vertrauen?|kaori_bribe|||||}}|}; -{kaori_bribe|Möchtest du mich bestechen, Junge? Das klappt bei mir nicht. Welchen Nutzen hätte ich von Goldmünzen, wenn du ein Spion wärst?||{{Gibt es irgendetwas, das ich tun kann, um dein Vertrauen zu gewinnen?|kaori_10|||||}}|}; -{kaori_10|Wenn du mir wirklich beweisen möchtest, dass du kein Spion von Feygard bist, gibt es da etwas, das du für mich tun kannst.||{{N|kaori_11|||||}}|}; -{kaori_11|Bis vor kurzem haben wir spezielle Tränke, die aus gemahlenen Knochen hergestellt werden, als Heilmittel benutzt. Diese Tränke sind sehr starke Heiltränke und werden für verschiedene Zwecke genutzt.||{{N|kaori_12|||||}}|}; -{kaori_12|Aber nun wurden sie von Lord Geomyr verboten und die meisten haben aufgehört, sie zu verwenden.||{{N|kaori_13|||||}}|}; -{kaori_13|Ich würde wirklich gern ein paar mehr davon haben. Wenn du mir 10 Knochenmehltränke bringen kannst, könnte ich es in Betracht ziehen, dir ein bisschen mehr zu vertrauen.|{{0|kaori|10|}}|{{Ok. Ich werde ein paar Tränke für dich auftreiben.|kaori_14|||||}{Nein. Wenn etwas verboten ist, gibt es dafür meist einen guten Grund. Du solltest sie nicht verwenden.|kaori_15|||||}{Ich habe schon einige von diesen Tränken bei mir, die du haben kannst|kaori_20||bonemeal_potion|10|0|}}|}; -{kaori_return_1|Hallo nochmal. Hast du diese 10 Knochenmehltränke schon besorgt, nach denen ich gefragt habe?||{{Nein, ich versuche immer noch welche zu bekommen.|kaori_14|||||}{Ja, ich habe deine Tränke mitgebracht.|kaori_20||bonemeal_potion|10|0|}{Nein. Wenn etwas verboten ist, gibt es dafür meist einen guten Grund. Du solltest sie nicht verwenden.|kaori_15|||||}}|}; -{kaori_14|Gut, beeil dich. Ich brauche sie wirklich bald.|||}; -{kaori_15|Nun gut. Jetzt geh bitte.|||}; -{kaori_20|Ausgezeichnet. Gib sie mir.|{{0|kaori|20|}}|{{N|kaori_21|||||}}|}; -{kaori_21|Ja, sie werden mir von Nutzen sein. Vielen Dank, Junge. Vielleicht bist du letztendlich ja doch ganz in Ordnung. Möge der Schatten über dich wachen.||{{N|kaori_default_1|||||}}|}; -{kaori_default_1|War da etwas, worüber du reden wolltest?||{{Was kannst du mir über Vilegard erzählen?|kaori_vilegard_1|||||}{Warum hat hier in Vilegard jeder so viel Angst vor Fremden?|kaori_vilegard_2|||||}}|}; -{kaori_vilegard_1|Du solltest mit Erttu sprechen, wenn du die Hintergrundgeschichte über Vilegard hören möchtest. Sie lebt schon viel länger hier in der Gegend als ich.||{{Ok, das werde ich machen.|kaori_default_1|||||}}|}; -{kaori_vilegard_2|Es gibt eine lange Liste von Leuten, die in der Vergangenheit hier herkamen und Unheil stifteten. Über die Zeit haben wir gelernt, dass es das beste ist, unter uns zu bleiben.||{{Das klingt nach einem guten Vorgehen.|kaori_vilegard_3|||||}{Das klingt falsch.|kaori_vilegard_3|||||}}|}; -{kaori_vilegard_3|Auf jeden Fall sind wir deshalb so misstrauisch gegenüber Fremden.||{{Ich verstehe.|kaori_default_1|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{vilegard_villager_1|||{{|vilegard_villager_friend|vilegard:30||||}{|vilegard_villager_1_0|||||}}|}; -{vilegard_villager_1_0|Hallo. Wer bist du? Du bist hier in Vilegard nicht willkommen.||{{Hast du meinen Bruder Andor hier gesehen?|vilegard_villager_1_2|||||}}|}; -{vilegard_villager_1_2|Nein, habe ich bestimmt nicht. Und wenn ich es hätte, warum sollte ich es dir erzählen?|||}; -{vilegard_villager_2|||{{|vilegard_villager_friend|vilegard:30||||}{|vilegard_villager_2_0|||||}}|}; -{vilegard_villager_2_0|Beim Schatten, du bist ein Fremder. Wir mögen hier keine Fremden.||{{Warum hat hier in Vilegard jeder so viel Angst vor Fremden?|vilegard_villager_5_1|||||}}|}; -{vilegard_villager_3|||{{|vilegard_villager_friend|vilegard:30||||}{|vilegard_villager_3_0|||||}}|}; -{vilegard_villager_3_0|Das ist Vilegard. Du wirst hier keine Annehmlichkeiten finden, Fremder.|||}; -{vilegard_villager_4|||{{|vilegard_villager_friend|vilegard:30||||}{|vilegard_villager_4_0|||||}}|}; -{vilegard_villager_4_0|Du siehst aus wie der andere Junge, der hier herumrannte. Wahrscheinlich verursachst du Ärger, wie immer bei Fremden.||{{Hast du meinen Bruder Andor gesehen?|vilegard_villager_1_2|||||}{Ich werde keinen Ärger machen.|vilegard_villager_4_2|||||}{Oh ja, ich werde Ärger machen, schon klar.|vilegard_villager_4_3|||||}}|}; -{vilegard_villager_4_2|Nein, ich bin sicher das tust du. Fremde tun das immer.|||}; -{vilegard_villager_4_3|Ja, ich weiß. Deshalb wollen wir deine Sorte hier nicht haben. Du solltest Vilegard verlassen, solange du noch kannst.|||}; -{vilegard_villager_5|||{{|vilegard_villager_friend|vilegard:30||||}{|vilegard_villager_5_0|||||}}|}; -{vilegard_villager_5_0|Hallo Fremder. Du siehst verloren aus, das ist gut. Jetzt verlasse Vilegard, solange du noch kannst.||{{Warum hat hier in Vilegard jeder so viel Angst vor Fremden?|vilegard_villager_5_1|||||}}|}; -{vilegard_villager_5_1|Ich traue dir nicht über den Weg. Du solltest Jolnor in der Kapelle aufsuchen, falls du etwas Sympathie möchtest.|{{0|vilegard|10|}}||}; -{vilegard_villager_friend|Hallo. Ich hörte, du halfst uns einfachem Volk hier in Vilegard. Bitte bleib solange wie du willst als Freund.||{{Danke sehr. Hast du meinen Bruder Andor hier gesehen?|vilegard_villager_friend_1|||||}{Vielen Dank. Man sieht sich.|X|||||}}|}; -{vilegard_villager_friend_1|Dein Bruder? Nein, ich habe niemanden gesehen, der aussieht wie du. Aber andererseits nehme ich nie viel Notiz von Fremden.||{{Danke, tschüss.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{erttu_1|Hallo Fremder. Normalerweise können wir hier in Vilegard Fremde nicht ausstehen, aber du hast etwas an dir, das mir vertraut vorkommt.||{{N|erttu_default|||||}}|}; -{erttu_default|Worüber möchtest du reden?||{{Warum ist hier in Vilegard jeder so misstrauisch gegenüber Fremden?|erttu_distrust_1|vilegard:10||||}{Was kannst du mir über Vilegard erzählen?|erttu_vilegard_1|||||}}|}; -{erttu_distrust_1|Die meisten von uns hier in Vilegard haben in ihrer Vorgeschichte Leuten zu sehr vertraut. Leuten, die uns am Ende verletzt haben.||{{N|erttu_distrust_2|||||}}|}; -{erttu_distrust_2|Nun beginnen wir damit, erst einmal misstrauisch zu sein und fragen Fremde, die hierher kommen, erst einmal ob sie unser Vertrauen gewinnen wollen, indem sie uns helfen.||{{N|erttu_distrust_3|||||}}|}; -{erttu_distrust_3|Außerdem blicken andere Leute gewöhnlicherweise aus irgendeinem Grund auf uns hier in Vilegard herab. Besonders diese Wichtigtuer aus Feygard und den nördlichen Städten.||{{Was kannst du mir noch über Vilegard erzählen?|erttu_vilegard_1|||||}}|}; -{erttu_vilegard_1|Wir haben hier in Vilegard fast alles was wir brauchen. Das Zentrum unseres Dorfes ist die Kapelle.||{{N|erttu_vilegard_2|||||}}|}; -{erttu_vilegard_2|Die Kapelle dient als unser Platz zur Verehrung des Schattens und außerdem als unser Versammlungsort wenn wir in unserem Dorf größere Belange besprechen müssen.||{{N|erttu_vilegard_3|||||}}|}; -{erttu_vilegard_3|Abgesehen von der Kapelle haben wir eine Taverne, einen Schmied und einen Waffenschmied.||{{Danke für die Information. Da war noch etwas anderes, über das ich reden wollte.|erttu_default|||||}{Danke für die Information. Auf Wiedersehen.|X|||||}{Wow, nicht noch mehr? Ich frage mich, was ich in einem mickrigen Dörflein wie diesem hier mache.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{dunla_default|Du siehst aus wie ein gerissenes Kerlchen. Brauchst du ein paar Vorräte?||{{Sicher, lass mich sehen, was du zu verkaufen hast.|S|||||}{Was kannst du mir über dich erzählen?|dunla_1|||||}}|}; -{dunla_1|Ich? Ich bin niemand. Du hast mich nicht einmal gesehen und ganz sicher hast du nicht mit mir gesprochen.|||}; -{tharwyn_select|||{{|tharwyn_1|vilegard:30||||}{|vilegard_shop_notrust|||||}}|}; -{tharwyn_1|Hallo. Ich hörte, du hast Jolnor in der Kapelle geholfen. Du hast meinen Dank, mein Freund.||{{N|tharwyn_2|||||}}|}; -{tharwyn_2|Setz dich irgendwo hin. Was kann ich dir bringen?||{{Zeig mir welches Essen du anzubieten hast.|S|||||}}|}; -{vilegard_tavern_drunk_1|Sieh an, ein verlorener Junge. Hier, nimm etwas Met, Kleiner.||{{Nein, danke.|X|||||}{Achte auf deine Zunge, Saufbold.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{jolnor_select_1|||{{|jolnor_default_3|vilegard:30||||}{|jolnor_default_2|vilegard:20||||}{|jolnor_default|||||}}|}; -{jolnor_default|Geh mit dem Schatten, mein Sohn.||{{Was ist das für ein Ort?|jolnor_chapel_1|||||}{Mir wurde gesagt, dass ich dich fragen soll, warum jeder in Vilegard Fremden gegenüber so misstrauisch ist.|jolnor_suspicious_1|vilegard:10||||}}|}; -{jolnor_default_2|Geh mit dem Schatten, mein Sohn.||{{Kannst du mir nochmal erzählen, was das für ein Ort ist?|jolnor_chapel_1|||||}{Lass uns über diese Missionen zum Vertrauensbeweis reden, von denen du gesprochen hattest.|jolnor_quests_1|||||}{Ich benötige Heilung. Darf ich einen Blick auf deine Waren werfen?|jolnor_shop_1|||||}}|}; -{jolnor_default_3|Geh mit dem Schatten, mein Freund.||{{Kannst du mir nochmal sagen, was das für ein Ort ist?|jolnor_chapel_1|||||}{Ich benötige Heilung. Darf ich einen Blick auf deine Waren werfen?|jolnor_shop_1|||||}}|}; -{jolnor_chapel_1|Dies ist Vilegards Verehrungsstätte für den Schatten. Wir preisen den Schatten in all seiner Macht und Herrlichkeit.||{{Kannst du mir mehr über den Schatten sagen?|jolnor_shadow_1|||||}{Ich benötige Heilung. Darf ich einen Blick auf deine Waren werfen?|jolnor_shop_1|||||}{Wie auch immer. Zeig mir einfach deine Waren.|jolnor_shop_1|||||}}|}; -{jolnor_shadow_1|Der Schatten beschützt uns vor den Gefahren der Nacht. Bei ihm sind wir sicher aufgehoben und er stärkt uns während wir schlafen.||{{N|jolnor_select_1|||||}}|}; -{jolnor_shop_1|||{{|S|vilegard:30||||}{|jolnor_shop_2|||||}}|}; -{jolnor_shop_2|Ich vertraue dir noch nicht genug, um mich bei dem Gedanken mit dir zu handeln wohl zu fühlen.||{{Warum bist du so misstrauisch?|jolnor_suspicious_1|||||}{Nun gut.|jolnor_select_1|||||}}|}; -{jolnor_suspicious_1|Misstrauisch? Nein, ich würde es nicht Misstrauen nennen. Ich würde eher sagen, dass wir heutzutage vorsichtig sind.||{{N|jolnor_suspicious_2|||||}}|}; -{jolnor_suspicious_2|Um das Vertrauen des Dorfes zu gewinnen, müssen Fremde beweisen, dass sie nicht hier sind um Unheil zu stiften.||{{Klingt nach einer guten Idee. Da draußen gibt es viele selbstsüchtige Menschen.|jolnor_suspicious_3|||||}{Das klingt wirklich unnötig. Warum sollte man den Menschen nicht von vornherein vertrauen?|jolnor_suspicious_4|||||}}|}; -{jolnor_suspicious_3|Ja, das ist richtig. Du scheinst uns gut zu verstehen, ich mag das.||{{Gibt es etwas, was ich machen kann um euer Vertrauen zu gewinnen?|jolnor_gaintrust_select|||||}}|}; -{jolnor_suspicious_4|Wir haben mit der Zeit gelernt, Fremden nicht zu vertrauen und du bist ein Fremder. Warum sollten wir dir trauen?||{{Was kann ich machen, um euer Vertrauen zu gewinnen?|jolnor_gaintrust_select|||||}{Da hast du Recht. Du solltest mir vermutlich nicht vertrauen.|X|||||}}|}; -{jolnor_gaintrust_select|||{{|jolnor_gaintrust_return_2|vilegard:30||||}{|jolnor_gaintrust_return|vilegard:20||||}{|jolnor_gaintrust_1|||||}}|}; -{jolnor_gaintrust_return_2|Durch deine Hilfe neulich hast du unser Vertrauen schon gewonnen.||{{N|jolnor_default_3|||||}}|}; -{jolnor_gaintrust_return|Wie ich schon gesagt habe, um unser Vertrauen zu gewinnen musst du manchen Leuten hier in Vilegard helfen.||{{N|jolnor_quests_1|||||}}|}; -{jolnor_gaintrust_1|Wenn du uns einen Gefallen tust, könnten wir es in Erwägung ziehen, dir zu vertrauen. Mir fallen drei Leute ein, die hier in Vilegard einflussreich sind und denen du versuchen solltest zu helfen.||{{N|jolnor_gaintrust_2|||||}}|}; -{jolnor_gaintrust_2|Zuerst gibt es da Kaori. Sie lebt im nördlichen Teil von Vilegard. Frag sie, ob sie deine Hilfe benötigt.|{{0|kaori|5|}}|{{Ok. Mit Kaori reden. Verstanden.|jolnor_gaintrust_3|||||}}|}; -{jolnor_gaintrust_3|Dann ist da noch Wrye. Wrye lebt auch im nördlichen Teil von Vilegard. Viele Leute hier in Vilegard fragen sie in verschieden Fällen um Rat.||{{N|jolnor_gaintrust_4|||||}}|}; -{jolnor_gaintrust_4|Unlängst verlor sie ihren Sohn auf tragische Art. Wenn du es schaffst, ihr Vertrauen zu gewinnen, wirst du in ihr einen starken Verbündeten haben.|{{0|wrye|10|}}|{{Mit Wrye reden. Verstanden.|jolnor_gaintrust_5|||||}}|}; -{jolnor_gaintrust_5|Und zu guter Letzt habe ich noch einen Gefallen, den du mir erweisen kannst.||{{Welcher Gefallen ist das?|jolnor_gaintrust_6|||||}}|}; -{jolnor_gaintrust_6|Nördlich von Vilegard gibt es eine Taverne mit dem Namen \'Schäumende Flasche\'. Meiner Meinung nach ist diese Taverne eine getarnte Wachstation von Feygard.||{{N|jolnor_gaintrust_7|||||}}|}; -{jolnor_gaintrust_7|Diese Taverne wird nahezu immer von der königlichen Garde Lord Geomyrs besucht.||{{N|jolnor_gaintrust_8|||||}}|}; -{jolnor_gaintrust_8|Sie ist vermutlich hier, um uns auszuspionieren, da wir ja Anhänger des Schattens sind. Lord Geomyrs Truppen versuchen immer, uns und dem Schatten das Leben schwer zu machen.||{{Ja, sie verhalten sich überall wie Störenfriede.|jolnor_gaintrust_9|||||}{Ich bin sicher, sie haben ihre Gründe für das, was sie tun.|jolnor_gaintrust_10|||||}}|}; -{jolnor_gaintrust_9|Richtig. Störenfriede in der Tat.||{{Was möchtest du das ich tun soll?|jolnor_gaintrust_11|||||}}|}; -{jolnor_gaintrust_10|Ja, ihr Grund ist es, uns das Leben schwer zu machen, da bin ich sicher.||{{Was möchtest du das ich tun soll?|jolnor_gaintrust_11|||||}}|}; -{jolnor_gaintrust_11|Meinen Berichten zufolge ist eine Wache außerhalb der Taverne stationiert, um ein Auge auf mögliche Gefahren zu haben.||{{N|jolnor_gaintrust_12|||||}}|}; -{jolnor_gaintrust_12|Ich möchte, dass du dafür sorgst, dass die Wache irgendwie verschwindet. Wie du das anstellst, liegt völlig an dir.|{{0|jolnor|10|}}|{{Ich bin nicht sicher, ob ich die Wachen von Feygard verärgern sollte. Das könnte mich wirklich in Schwierigkeiten bringen.|jolnor_gaintrust_13|||||}{Für den Schatten. Ich werde tun, wonach du verlangst.|jolnor_gaintrust_14|||||}{Ok, ich hoffe das bringt mir am Ende eine Belohnung ein.|jolnor_gaintrust_14|||||}}|}; -{jolnor_gaintrust_13|Du hast die Wahl. Du kannst dir zumindest die Taverne einmal ansehen und nachsehen, ob du etwas verdächtiges findest.||{{Vielleicht.|jolnor_gaintrust_15|||||}}|}; -{jolnor_gaintrust_14|Gut. Gib mir Bescheid, wenn du damit fertig bist.||{{N|jolnor_gaintrust_15|||||}}|}; -{jolnor_gaintrust_15|Also, um unser Vertrauen hier in Vilegard zu gewinnen, würde ich vorschlagen, du hilfst Kaori, Wrye und mir.|{{0|vilegard|20|}}|{{Danke für die Information. Ich werde zurück sein, wenn ich etwas zu berichten habe.|X|||||}}|}; -{jolnor_quests_1|Ich würde vorschlagen, du hilfst Kaori, Wrye und mir, um unser Vertrauen zu gewinnen.||{{Was die Wache vor der Taverne "\'Schäumende Flasche\'" angeht...|jolnor_guard_select|||||}{Über diese Aufgaben...|jolnor_quests_2|||||}{Wie auch immer, lass uns über andere Themen sprechen.|jolnor_select_1|||||}}|}; -{jolnor_quests_2|Ja, was ist damit?||{{Was sollte ich nochmal tun?|jolnor_suspicious_2|||||}{Ich habe alle Aufgaben erfüllt, die du mir gegeben hast.|jolnor_quests_select_1|jolnor:30||||}{Wie auch immer, lass uns über andere Themen sprechen.|jolnor_select_1|||||}}|}; -{jolnor_guard_select|||{{|jolnor_guard_completed|jolnor:30||||}{|jolnor_guard_1|||||}}|}; -{jolnor_guard_1|Ja, was ist mit ihr?. Hast du sie schon entfernt?||{{Ja, er wird seinen Posten verlassen, sobald seine Schicht vorüber ist.|jolnor_guard_2|jolnor:20||||}{Ja, er ist verschwunden.|jolnor_guard_2||ffguard_qitem|1|0|}{Nein, aber ich arbeite daran.|jolnor_gaintrust_14|||||}}|}; -{jolnor_guard_completed|Ja, du hattest dich um die Wache gekümmert. Vielen Dank für deine Hilfe.||{{N|jolnor_quests_1|||||}}|}; -{jolnor_guard_2|Sehr gut. Danke für deine Hilfe.|{{0|jolnor|30|}}|{{Kein Problem. Lass uns über die anderen Aufgaben reden von denen du erzählt hast.|jolnor_quests_2|||||}}|}; -{jolnor_quests_select_1|||{{|jolnor_quests_select_2|kaori:20||||}{|jolnor_quests_kaori_1|||||}}|}; -{jolnor_quests_kaori_1|Du musst Kaori immer noch bei ihrer Aufgabe helfen.||{{N|jolnor_select_1|||||}}|}; -{jolnor_quests_select_2|||{{|jolnor_quests_completed|wrye:90||||}{|jolnor_quests_wrye_1|||||}}|}; -{jolnor_quests_wrye_1|Du musst Wrye immer noch bei ihrer Aufgabe helfen.||{{N|jolnor_select_1|||||}}|}; -{jolnor_quests_completed|Gut. Du hast uns allen dreien geholfen.|{{0|vilegard|30|}}|{{N|jolnor_quests_completed_2|||||}}|}; -{jolnor_quests_completed_2|Ich denke, du hast Einsatz gezeigt und wir können dir jetzt vertrauen.||{{N|jolnor_quests_completed_3|||||}}|}; -{jolnor_quests_completed_3|Du hast unseren Dank, Freund. Du wirst uns in Vilegard immer willkommen sein. Wir begrüßen dich in unserem Dorf.||{{N|jolnor_select_1|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{alynndir_1|Hallo. Willkommen in meiner Hütte.||{{Was machst du hier?|alynndir_2|||||}{Was kannst du mir über die Umgebung hier erzählen?|alynndir_3|||||}}|}; -{alynndir_2|Meistens handle ich mit Reisenden auf der Hauptstraße auf dem Weg nach Nor City.||{{Hast du etwas zu tauschen?|S|||||}{Was kannst du mir über die Umgebung hier erzählen?|alynndir_3|||||}}|}; -{alynndir_3|Oh, hier gibt es nicht viel. Vilegard im Westen und Brightport im Osten.||{{N|alynndir_4|||||}}|}; -{alynndir_4|Nördlich ist bloß Wald. Aber dort geschehen manche merkwürdigen Dinge.||{{N|alynndir_5|||||}}|}; -{alynndir_5|Ich habe schreckliche Schreie aus dem Wald im Nordwesten gehört.||{{N|alynndir_6|||||}}|}; -{alynndir_6|Ich frage mich wirklich, was dort ist.||{{Auf Wiedersehen.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{vilegard_armorer_select|||{{|vilegard_armorer_1|vilegard:30||||}{|vilegard_shop_notrust|||||}}|}; -{vilegard_armorer_1|Hallo. Bitte durchstöbere meine feine Auswahl an Waffen und Rüstungen.||{{Zeig mir deine Waren|S|||||}}|}; -{vilegard_smith_select|||{{|vilegard_smith_1|feygard_shipment:56||||}{|vilegard_smith_fg_2|feygard_shipment:55||||}{|vilegard_smith_1|vilegard:30||||}{|vilegard_shop_notrust|||||}}|}; -{vilegard_smith_1|Hallo. Ich hörte, dass du uns hier in Vilegard geholfen hast. Womit kann ich dienen?||{ - {Darf ich einen Blick auf deine Waren werfen?|S|||||} - {Ich habe eine Lieferung von Waren aus Feygard für dich.|vilegard_smith_fg_1|feygard_shipment:35|fg_ironsword|10|0|} - }|}; -{vilegard_shop_notrust|Du bist ein Fremder. Wir mögen keine Fremden hier in Vilegard. Bitte geh.||{{Warum ist jeder hier in Vilegard Fremden gegenüber so misstrauisch?|vilegard_shop_notrust_2|||||}{Darf ich einen Blick auf deine Waren werfen?|vilegard_shop_notrust_2|||||}}|}; -{vilegard_shop_notrust_2|Ich vertraue dir nicht. Du solltest Jolnor in der Kapelle aufsuchen, falls du etwas Sympathie möchtest.|{{0|vilegard|10|}}||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{ogam_1|Glaube. Stärke. Anstrengung.||{{Wie bitte?|ogam_2|||||}{Mir wurde gesagt ich solle dich treffen.|ogam_2|lodar:15||||}}|}; -{ogam_2|Umgekehrt ist die Last hoch und tief.||{{Wie bitte?|ogam_3|||||}{Bitte fahre fort|ogam_3|||||}{Hallo? Umar aus der Diebesgilde in Fallhaven schickt mich dich zu treffen.|ogam_3|lodar:15||||}}|}; -{ogam_3|Verborgen im Schatten.||{{N|ogam_4|||||}}|}; -{ogam_4|Zwei ähneln sich in Körper und Geist.||{{Willst du überhaupt mal etwas sinnvolles sagen?|ogam_5|||||}{Was meinst du?|ogam_5|||||}}|}; -{ogam_5|Der rechtmäßige und der chaotische.||{{Hallo? Weißt du, wie ich Lodars Zufluchtsort finden kann?|ogam_lodar_1|lodar:15||||}{Ich verstehe das nicht.|ogam_6|||||}}|}; -{ogam_lodar_1|Lodar? Klar, dröhnend, verletzt.||{{N|ogam_6|||||}}|}; -{ogam_6|Ja. Die wahre Form. Erblicken.||{{N|ogam_7|||||}}|}; -{ogam_7|Verborgen im Schatten.||{{Der Schatten?|ogam_4|||||}{Hörst du überhaupt, was ich gesagt habe?|ogam_4|||||}{Hallo? Weißt du, wie ich Lodars Zufluchtsort finden kann?|ogam_lodar_2|lodar:15||||}}|}; -{ogam_lodar_2|Lodar, auf halbem Wege zwischen dem Schatten und dem Licht. Felsformationen.||{{Ok, auf halbem Wege zwischen zwei Plätzen. Einige Felsen?|ogam_lodar_3|||||}{Uh. Könntest du das wiederholen?|ogam_lodar_3|||||}}|}; -{ogam_lodar_3|Wächter. Leuchten des Schattens.|{{0|lodar|20|}}|{{Leuchten des Schattens? Sind das die Worte, die der Wächter hören soll?|ogam_lodar_4|||||}{\'Leuchten des Schattens\'? Das kommt mir von irgendwoher bekannt vor.|ogam_lodar_4|bonemeal:30||||}}|}; -{ogam_lodar_4|Biegung. Drehung. Klare Form.||{{Was bedeutet das?|ogam_1|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{ff_cook_1|Hallo. Möchtest du etwas aus der Küche?||{{Sicher, zeig mir, welches Essen du zu verkaufen hast.|ff_cook_3|||||}{Das riecht grauenhaft. Was kochst du?|ff_cook_2|||||}{Das riecht wunderbar. Was kochst du?|ff_cook_2|||||}}|}; -{ff_cook_2|Oh das? Das soll ein Keiler-Eintopf werden. Ich vermute er braucht noch etwas Würze.||{{Ich freue mich, davon zu probieren, wenn er fertig ist. Viel Glück beim Kochen.|X|||||}{Bäh, das klingt furchtbar. Kannst du diese Viecher wirklich essen? Ich bin angeekelt, tschüss.|X|||||}}|}; -{ff_cook_3|Nein tut mir leid, ich kann dir kein Essen verkaufen. Geh und sprich mit Torilo dort drüben, wenn du fertiges Essen oder etwas zum Trinken möchtest.|||}; -{torilo_1|Willkommen in der Taverne \'Schäumende Flasche\'. Wir heißen hier alle Reisenden herzlich Willkommen.||{{Danke sehr. Bist du der Gastwirt hier?|torilo_2|||||}{Hast du kürzlich einen Jungen namens Rincel gesehen?|torilo_rincel_1|wrye:41||||}}|}; -{torilo_2|Ich bin Torilo, der Besitzer dieser Einrichtung. Bitte setz dich, wo auch immer du willst.||{{Darf ich sehen, welches Essen und welche Getränke erhältlich sind?|torilo_shop_1|||||}{Gibt es einen Raum zu mieten?|torilo_rest_select|||||}{Schreien und brüllen diese Wachen immer so viel?|torilo_guards_1|||||}}|}; -{torilo_default|Gibt es noch etwas anderes, was du möchtest?||{{Darf ich sehen, welches Essen und welche Getränke erhältlich sind?|torilo_shop_1|||||}{Schreien und brüllen diese Wachen immer so viel?|torilo_guards_1|||||}{Hast du kürzlich einen Jungen namens Rincel gesehen?|torilo_rincel_1|wrye:41||||}}|}; -{torilo_shop_1|Auf jeden Fall. Wir haben eine große Auswahl an Speisen und Getränken.||{{N|S|||||}}|}; -{torilo_rest_select|||{{|torilo_rest_1|nondisplay:10||||}{|torilo_rest_3|||||}}|}; -{torilo_rest_1|Ja, du hast das Hinterzimmer bereits gemietet.||{{N|torilo_rest_2|||||}}|}; -{torilo_rest_2|Fühl dich bitte frei das Zimmer für jegliche Zwecke zu verwenden. Ich hoffe, du kannst ein wenig schlafen, auch wenn diese Wachen ihre Lieder rumbrüllen.||{{Danke.|torilo_default|||||}}|}; -{torilo_rest_3|Oh ja. Wir haben hier einen sehr komfortablen Raum in der Taverne \'Schäumende Flasche\'.||{{N|torilo_rest_4|||||}}|}; -{torilo_rest_4|Erhältlich für nur 250 Goldmünzen. Dann kannst du ihn so oft benutzen, wie du es willst.||{{250 Goldmünzen? Sicher, das macht mir nichts aus. Hier hast du sie.|torilo_rest_6||gold|250|0|}{250 Goldmünzen sind einiges, aber ich schätze, das ist es wert. Hier hast du sie.|torilo_rest_6||gold|250|0|}{Das hört sich nach ein bisschen zu viel Goldmünzen für mich an.|torilo_rest_5|||||}}|}; -{torilo_rest_5|Nun gut, dabei entgeht dir etwas.||{{N|torilo_default|||||}}|}; -{torilo_rest_6|Ich danke dir. Der Raum ist ab jetzt an dich vermietet.|{{0|nondisplay|10|}}|{{N|torilo_rest_2|||||}}|}; -{torilo_rincel_1|Rincel? Nein, nicht dass ich mich erinnern würde. Eigentlich sind hier drin nicht oft Kinder. *kicher*||{{N|torilo_default|||||}}|}; -{torilo_guards_1|*Seufz* Ja. Diese Wachen sind jetzt schon seit einiger Zeit hier.||{{N|torilo_guards_2|||||}}|}; -{torilo_guards_2|Sie scheinen nach etwas oder jemandem Ausschau zu halten, aber ich weiß nicht nach wem oder was.||{{N|torilo_guards_3|||||}}|}; -{torilo_guards_3|Ich hoffe, der Schatten wacht über uns, so dass wegen ihnen nichts Schlimmes über die Taverne \'Schäumende Flasche\' hereinbricht.||{{N|torilo_default|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{ambelie_1|Oh nein, ein Bürgerlicher. Geh weg von mir. Ich könnte mir etwas holen.||{{Wer bist du?|ambelie_2|||||}{Was macht eine noble Frau, wie du es bist, an einem Ort wie diesem?|ambelie_5|||||}{Ich würde froh darüber sein, von einer Wichtigtuerin wie dir fortzukommen.|X|||||}}|}; -{ambelie_2|Ich bin Ambelie vom Hause Laumwill in Feygard. Ich bin sicher, dass du von mir und meinem Haus gehört haben musst.||{{Oh, ja.. Äh.. Haus von Laumwill in Feygard. Natürlich.|ambelie_3|||||}{Ich habe noch nie etwas von dir oder deinem Haus gehört.|ambelie_4|||||}{Wo ist Feygard?|ambelie_3|||||}}|}; -{ambelie_3|Feygard, die großartige Stadt des Friedens. Sicher musst du sie kennen. Im Nordwesten unseres großartigen Landes.||{{Was macht eine noble Frau, wie du es bist, an einem Ort wie diesem?|ambelie_5|||||}{Nein, ich habe noch nie davon gehört.|ambelie_4|||||}}|}; -{ambelie_4|Pfft. Das beweist alles, was ich von euch Wilden hier im Süden gehört habe. So ungebildet.|||}; -{ambelie_5|Ich, Ambelie, vom Hause Laumwill in Feygard, bin auf einer Reise zum südlichen Nor City.||{{N|ambelie_6|||||}}|}; -{ambelie_6|Eine Reise um zu sehen, ob Nor City wirklich so ist, wie man sagt. Ob es wirklich mit dem Glanz der großartigen Stadt Feygard verglichen werden kann.||{{Nor City, wo ist das?|ambelie_7|||||}{Wenn du es in Feygard so magst, warum verlässt du es dann überhaupt?|ambelie_9|||||}}|}; -{ambelie_7|Hast du noch nie von Nor City gehört? Ich werde eine Notiz machen, dass die Wilden hier nicht einmal von der Stadt gehört haben.||{{N|ambelie_8|||||}}|}; -{ambelie_8|Ich bin mir immer sicherer, dass Nor City nicht einmal in meinen wildesten Träumen, mit der großartigen Stadt von Feygard verglichen werden kann.||{{Viel Glück auf deiner Reise.|ambelie_10|||||}}|}; -{ambelie_9|All die Edelfrauen in Feygard reden immer wieder über den mysteriösen Schatten von Nor City. Ich habe es selbst gesehen.||{{Nor City, wo ist das?|ambelie_7|||||}{Viel Glück auf deiner Reise.|ambelie_10|||||}}|}; -{ambelie_10|Vielen Dank. Nun geh bitte, bevor mich noch jemand mit einem Bürgerlichen wie dir reden sieht.||{{Bürgerlichen? Versuchst du mich zu beleidigen? Tschüss.|X|||||}{Was immer du sagst, du würdest vermutlich nicht einmal eine Waldwespe überleben.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{ff_guard_1|Ha ha, du erzählst es ihm, Garl!\n\n*burp*||{{N|ff_guard_2|||||}}|}; -{ff_guard_2|Singen, Trinken, Kämpfen! Alle, die sich Feygard widersetzen, werden fallen!||{{N|ff_guard_3|||||}}|}; -{ff_guard_3|Wir werden stramm stehen. Feygard, Stadt des Friedens!||{{Ich sollte besser gehen|X|||||}{Feygard, wo ist das?|ff_guard_4|||||}{Habt ihr hier kürzlich einen Jungen namens Rincel gesehen?|ff_guard_rincel_1|wrye:41||||}}|}; -{ff_guard_4|Was, du hast noch nie von Feygard gehört, Junge? Folge einfach der Straße nach Nordwesten und du wirst sehen, wie sich die großartige Stadt Feygard über den Baumspitzen erhebt.||{{Danke. Tschüss.|X|||||}}|}; -{ff_guard_rincel_1|Ein Junge?! Abgesehen von dir gibt es hier drinnen keine Kinder, die ich gesehen habe.||{{N|ff_guard_rincel_2|||||}}|}; -{ff_guard_rincel_2|Sprich mit dem Kommandanten dort drüben. Er ist hier schon länger als wir.||{{Vielen Dank, tschüss.|X|||||}{Vielen Dank. Der Schatten sei mit dir.|ff_guard_shadow_1|||||}}|}; -{ff_guard_shadow_1|Bring nicht den verfluchten Schatten hier herein, Sohn. Wir möchten das nicht. Nun geh.|||}; -{ff_captain_1|Hast du dich verlaufen, Sohn? Dies ist kein Ort für einen Junge wie dich.||{ - {Ich habe eine Lieferung Eisenschwerter von Gandoren für dich.|ff_captain_vg_items_1|feygard_shipment:56|fg_ironsword_d|10|0|} - {Ich habe eine Lieferung Eisenschwerter von Gandoren für dich.|ff_captain_fg_items_1|feygard_shipment:25|fg_ironsword|10|0|} - {Wer bist du?|ff_captain_2|||||} - {Hast du kürzlich einen Jungen namens Rincel hier gesehen?|ff_captain_rincel_1|wrye:41||||} - }|}; -{ff_captain_2|Ich bin der Kommandant dieser Wachen. Wir grüßen dich von der großen Stadt Feygard.||{{Feygard, wo ist das?|ff_captain_4|||||}{Was macht ihr hier?|ff_captain_3|||||}}|}; -{ff_captain_3|Wir bereisen die Hauptstraße, um dafür zu sorgen, dass die Händler und Reisenden sicher sind. Wir bewahren den Frieden hier.||{{Du erwähntest Feygard. Wo ist das?|ff_captain_4|||||}}|}; -{ff_captain_4|Die große Stadt Feygard ist die größte Sehenswürdigkeit, die du jemals sehen wirst. Folge der Straße in Richtung Nordwesten.||{{Vielen Dank. Der Schatten sei mit dir.|ff_captain_shadow_1|||||}{Vielen Dank, auf Wiedersehen.|X|||||}}|}; -{ff_captain_rincel_1|Vor einer Weile rannte hier ein Junge herum.||{{N|ff_captain_rincel_2|||||}}|}; -{ff_captain_rincel_2|Ich habe nie mit ihm gesprochen, also weiß ich leider nicht, ob er derjenige ist, nach dem du suchst.||{{Ok, es könnte trotzdem nützlich sein, dass zu überprüfen.|ff_captain_rincel_3|||||}}|}; -{ff_captain_rincel_3|Ich habe mitbekommen, dass er die Taverne \'Schäumende Flasche\' in Richtung Westen verließ.|{{0|wrye|42|}}|{{Westen. Geht klar. Danke für die Information.|ff_captain_rincel_4|||||}}|}; -{ff_captain_rincel_4|Ich bin immer froh, wenn ich helfen kann. Alles für den Glanz Feygards.||{{Der Schatten sei mit dir.|ff_captain_shadow_1|||||}{Auf Wiedersehen.|X|||||}}|}; -{ff_captain_shadow_1|Der Schatten? Erzähl mir nicht, dass du an diesen Quatsch glaubst. Meiner Erfahrung nach sprechen bloß Unruhestifter vom Schatten.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{ff_outsideguard_select|||{{|ff_outsideguard_trouble_24|jolnor:20||||}{|ff_outsideguard_1|||||}}|}; -{ff_outsideguard_1|Hallo. Solltest du hier sein? Du weißt, dass dies eine Taverne ist. Die \'Schäumende Flasche\', um genau zu sein.||{{Wer bist du?|ff_outsideguard_2|||||}}|}; -{ff_outsideguard_2|Ich bin Mitglied der königlichen Garde von Feygard.||{{Feygard, wo ist das?|ff_outsideguard_3|||||}{Was machst du hier?|ff_outsideguard_3|||||}}|}; -{ff_outsideguard_3|Geh und sprich mit dem Kommandanten drinnen, wenn du reden willst. Ich muss auf meinem Posten wachsam sein.||{{Ok. Auf Wiedersehen.|X|||||}{Warum musst du vor einer Taverne wachsam sein?|ff_outsideguard_trouble_1|jolnor:10||||}}|}; -{ff_outsideguard_trouble_1|Wirklich, ich kann nicht mit dir reden. Ich könnte Ärger bekommen.||{{Ok. Ich werde dich nicht mehr belästigen. Der Schatten sei mit dir.|ff_outsideguard_shadow_1|||||}{Ok. Ich werde dich nicht mehr belästigen. Auf Wiedersehen.|X|||||}{Was für Ärger?|ff_outsideguard_trouble_2|||||}}|}; -{ff_outsideguard_trouble_2|Nein wirklich, der Kommandant könnte mich sehen. Ich muss jederzeit wachsam auf meinem Posten sein. *seufz*||{{Ok. ich werde dich nicht mehr belästigen. Der Schatten sei mit dir.|ff_outsideguard_shadow_1|||||}{Ok. Ich werde dich nicht mehr belästigen. Auf Wiedersehen.|X|||||}{Magst du deine Arbeit hier?|ff_outsideguard_trouble_3|||||}}|}; -{ff_outsideguard_trouble_3|Meine Arbeit? Ich schätze, die königliche Garde ist in Ordnung. Ich meine, Feygard ist ein wirklich schöner Platz zum leben.||{{N|ff_outsideguard_trouble_4|||||}}|}; -{ff_outsideguard_trouble_4|Wachdienst hier irgendwo im Nirgendwo zu haben, ist nicht wirklich das, wofür ich mich zum Dienst gemeldet habe.||{{Darauf wette ich. Dieser Ort ist wirklich langweilig.|ff_outsideguard_trouble_5|||||}{Du musst auch Müde werden, wenn du hier nur herumstehst.|ff_outsideguard_trouble_5|||||}}|}; -{ff_outsideguard_trouble_5|Ja, ich weiß. Ich würde lieber in der Taverne sein und wie die älteren Offiziere und der Kommandant trinken. Wie kommt es dazu, dass ich hier draußen stehen muss?||{{Wenigstens wacht der Schatten über dich.|ff_outsideguard_shadow_1|||||}{Warum gehst du nicht einfach, wenn es nicht das ist was du machen möchtest?|ff_outsideguard_trouble_7|||||}{Die größere Aufgabe der königlichen Garde, den Frieden zu bewahren, ist es auf lange Sicht Wert.|ff_outsideguard_trouble_6|||||}}|}; -{ff_outsideguard_trouble_6|Ja, du hast natürlich Recht. Unsere Pflicht gilt Feygard und den Frieden vor allen, die ihn stören wollen, zu erhalten.||{{Ja. Der Schatten wird nicht gefällig auf die sehen, die den Frieden stören wollen.|ff_outsideguard_shadow_1|||||}{Ja. Die Störenfriede sollen bestraft werden.|ff_outsideguard_trouble_8|||||}}|}; -{ff_outsideguard_trouble_7|Nein, meine Loyalität gehört Feygard. Wenn ich gehen würde, würde ich auch meine Loyalität zurücklassen.||{{Was bedeutet das, wenn du mit dem, was du tust, nicht Zufrieden bist?|ff_outsideguard_trouble_9|||||}{Ja, das hört sich richtig an. Nach dem, was ich gehört habe, scheint Feygard eine tolle Stadt zu sein.|ff_outsideguard_trouble_6|||||}}|}; -{ff_outsideguard_trouble_8|Richtig. Ich mag dich, Junge. Weißt du was? Wenn du möchtest, lege ich in den Kasernen für dich ein gutes Wort ein, wenn wir nach Feygard zurückkehren.||{{Sicher, das klingt gut.|ff_outsideguard_trouble_20|||||}{Nein, danke. Ich habe schon genug zu tun.|ff_outsideguard_trouble_20|||||}}|}; -{ff_outsideguard_trouble_9|Naja, ich bin davon überzeugt, dass ich den Gesetzen folgen muss, die von unseren Herrschern gemacht wurden. Wenn wir die Gesetze nicht befolgen, was bleibt dann übrig?||{{N|ff_outsideguard_trouble_10|||||}}|}; -{ff_outsideguard_trouble_10|Chaos. Unordnung.\n\nNein, ich bevorzuge den gesetzestreuen Weg von Feygard. Meine Loyalität ist beständig.||{{Hört sich gut an. Gesetze werden gemacht, um befolgt zu werden.|ff_outsideguard_trouble_8|||||}{Da stimme ich nicht zu. Wir sollten unserem Herzen folgen, auch wenn das gegen die Regeln verstößt.|ff_outsideguard_trouble_12|||||}}|}; -{ff_outsideguard_trouble_20|Gab es noch etwas anderes, was du wolltest?||{{Ich habe mich gefragt, warum du hier Wache stehst.|ff_outsideguard_trouble_21|||||}}|}; -{ff_outsideguard_trouble_12|Deine Einstellungen machen mich besorgt. Wir könnten uns in der Zukunft erneut treffen. Aber dann wird uns möglicherweise so eine zivilisierte Diskussion nicht möglich sein.|||}; -{ff_outsideguard_trouble_21|Richtig, darüber haben wir gesprochen. Wie ich gesagt habe, würde ich lieber drinnen am Feuer sein.||{{Ich könnte für dich übernehmen, wenn du rein gehen möchtest.|ff_outsideguard_trouble_23|||||}{Hartes Schicksal. Ich vermute, du wirst hier draußen zurück gelassen, während dein Kommandant und deine Kameraden drinnen sind.|ff_outsideguard_trouble_22|||||}}|}; -{ff_outsideguard_trouble_22|Ja, das ist wieder mein Glück.|||}; -{ff_outsideguard_trouble_23|Wirklich? Ja, das wäre großartig. Dann könnte ich wenigstens etwas Essen und die Wärme am Feuer genießen.||{{N|ff_outsideguard_trouble_24|||||}}|}; -{ff_outsideguard_trouble_24|Ich werde kurz reingehen. Wirst du Wache stehen, während ich reingehe?|{{0|jolnor|20|}}|{{Sicher, das werde ich tun.|ff_outsideguard_trouble_25|||||}{[Lüge] Sicher, das werde ich tun.|ff_outsideguard_trouble_25|||||}}|}; -{ff_outsideguard_trouble_25|Vielen Dank, mein Freund.|||}; -{ff_outsideguard_shadow_1|Schatten? Merkwürdig, dass du das erwähnst. Erkläre dich!||{{Ich meinte damit gar nichts. Vergiss, dass ich etwas gesagt habe.|ff_outsideguard_shadow_2|||||}{Der Schatten wacht über uns, während wir schlafen.|ff_outsideguard_shadow_3|||||}}|}; -{ff_outsideguard_shadow_2|Gut. Nun verschwinde, bevor ich dich noch fertig machen muss.|||}; -{ff_outsideguard_shadow_3|Was? Bist du einer von diesen Unruhestiftern, die hierher geschickt wurden, um unsere Mission zu sabotieren?||{{Der Schatten beschützt uns.|ff_outsideguard_shadow_4|||||}{Nun gut. Ich fange besser keinen Kampf mit der königlichen Garde an.|X|||||}}|}; -{ff_outsideguard_shadow_4|Das reicht. Besser du kämpfst oder fliehst jetzt, Junge.||{{Gut. Ich habe schon auf einen Kampf gewartet!|ff_outsideguard_shadow_5|||||}{Für den Schatten!|ff_outsideguard_shadow_5|||||}{Schon gut. Ich habe bloß mit dir gescherzt.|ff_outsideguard_shadow_2|||||}}|}; -{ff_outsideguard_shadow_5||{{0|jolnor|21|}}|{{|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{wrye_select_1|||{{|wrye_return_2|wrye:90||||}{|wrye_return_1|wrye:40||||}{|wrye_mourn_1|||||}}|}; -{wrye_return_1|Willkommen zurück. Hast du etwas über meinen Sohn Rincel herausgefunden?||{{Kannst du mir nochmal erzählen, was passiert ist?|wrye_mourn_5|||||}{Nein, bis jetzt noch nicht.|wrye_story_14|||||}{Ja, ich habe herausgefunden, was mit ihm passiert ist.|wrye_resolved_1|wrye:80||||}}|}; -{wrye_return_2|Willkommen zurück. Danke, dass du herausgefunden hast, was mit meinem Sohn passiert ist.||{{Der Schatten sei mit dir.|wrye_story_15|||||}{Gern geschehen.|wrye_story_15|||||}}|}; -{wrye_mourn_1|Schatten, hilf mir.||{{Was ist los?|wrye_mourn_2|||||}}|}; -{wrye_mourn_2|Mein Sohn! Mein Sohn ist gegangen.||{{Jolnor sagte, ich sollte dich sprechen, wegen deinem Sohn.|wrye_mourn_5|wrye:10||||}{Was ist mit ihm?|wrye_mourn_3|||||}}|}; -{wrye_mourn_3|Ich möchte nicht darüber sprechen. Nicht mit einem Fremden wie dir.||{{Outsider?|wrye_mourn_4|||||}{Jolnor sagte, ich sollte dich sprechen, wegen deinem Sohn.|wrye_mourn_5|wrye:10||||}}|}; -{wrye_mourn_4|Bitte geh.\n\nOh, Schatten, wache über mich.|||}; -{wrye_mourn_5|Mein Sohn ist tot, ich weiß es! Und diese verdammten Wachen sind daran schuld. Diese Wachen mit ihrem wichtigtuerischen Feygard-Verhalten.||{{N|wrye_mourn_6|||||}}|}; -{wrye_mourn_6|Als erstes kommen sie mit Versprechungen von Schutz und Kraft. Aber dann irgendwann merkst du, wie sie wirklich sind.||{{N|wrye_mourn_7|||||}}|}; -{wrye_mourn_7|Ich spüre es. Der Schatten spricht zu mir. Er ist tot.|{{0|wrye|20|}}|{{Kannst du mir erzählen, was passiert ist?|wrye_story_1|||||}{Worüber sprichst du?|wrye_story_1|||||}{Der Schatten sei mit dir.|wrye_mourn_8|||||}}|}; -{wrye_mourn_8|Danke. Schatten, wache über mich.||{{N|wrye_story_1|||||}}|}; -{wrye_story_1|Es fing alles damit an, dass die königliche Garde von Feygard hierher kam.||{{N|wrye_story_2|||||}}|}; -{wrye_story_2|Sie versuchten, jeden in Vilegard zu bedrängen, um mehr Soldaten zu rekrutieren.||{{N|wrye_story_3|||||}}|}; -{wrye_story_3|Die Wachen sagten, sie bräuchten mehr Unterstützung, um einen angeblichen Aufstand und Sabotage zu bekämpfen.||{{Was hat das mit deinem Sohn zu tun?|wrye_story_4|||||}{Kommst du bald mal auf den Punkt?|wrye_story_4|||||}}|}; -{wrye_story_4|Mein Sohn Rincel kümmerte sich nicht wirklich um die Geschichten, die sie erzählten.||{{N|wrye_story_5|||||}}|}; -{wrye_story_5|Außerdem erzählte ich ihm, was für eine schlechte Idee es meiner Meinung nach war, mehr Soldaten für die königliche Garde zu rekrutieren.||{{N|wrye_story_6|||||}}|}; -{wrye_story_6|Die Wachen blieben für ein paar Tage hier, um mit jedem hier in Vilegard zu reden. Dann gingen sie. Ich schätze, sie zogen weiter in die nächste Stadt.||{{N|wrye_story_7|||||}}|}; -{wrye_story_7|Ein paar Tage vergingen bis eines Tages auf einmal mein Sohn Rincel verschwunden war. Ich bin sicher, dass die Wachen es irgendwie geschafft haben, ihn zu überzeugen, ihnen beizutreten.||{{N|wrye_story_8|||||}}|}; -{wrye_story_8|Oh, wie ich diese bösen und wichtigtuerischen Feygard-Bastarde verachte.||{{Was nun?|wrye_story_9|||||}}|}; -{wrye_story_9|Das war mehrere Wochen her. Nun fühle ich in mir eine Leere. Etwas in mir gibt mir die Gewissheit, dass meinem Sohn Rincel irgendwas zugestoßen ist.||{{N|wrye_story_10|||||}}|}; -{wrye_story_10|Ich befürchte, er starb oder wurde irgendwie verletzt. Diese Bastarde haben ihn vermutlich in seinen eigenen Tod getrieben.|{{0|wrye|30|}}|{{N|wrye_story_11|||||}}|}; -{wrye_story_11|*schluchz* Schatten, hilf mir.||{{Was kann ich tun, um zu helfen?|wrye_story_13|||||}{Das klingt fürchterlich. Ich bin sicher, du bildest dir diese Dinge bloß ein.|wrye_story_13|||||}{Hast du Beweise, dass die Leute von Feygard etwas damit zu tun haben?|wrye_story_12|||||}}|}; -{wrye_story_12|Nein, aber ich weiß es einfach. Der Schatten spricht zu mir.||{{Ok. Gibt es da irgendetwas, womit ich helfen kann?|wrye_story_13|||||}{Es hört sich ein wenig so an, als ob du dich zu viel mit dem Schatten befasst. Ich will davon nichts hören.|wrye_mourn_4|||||}{Ich sollte mich vermutlich nicht darin verwickeln lassen, falls das bedeutet, dass ich die königliche Wache gegen mich aufbringen könnte.|wrye_mourn_4|||||}}|}; -{wrye_story_13|Wenn du mir helfen willst, finde bitte heraus, was mit meinem Sohn Rincel passiert ist.|{{0|wrye|40|}}|{{Irgendeine Idee, wo ich nachsehen sollte?|wrye_story_16|||||}{Ok. Ich werde nach deinem Sohn suchen. Ich hoffe, ich bekomme dafür eine Belohnung.|wrye_story_14|||||}{Beim Schatten, dein Sohn wird gerächt werden.|wrye_story_14|||||}}|}; -{wrye_story_14|Bitte komm hierher zurück, sobald du etwas herausgefunden hast.||{{N|wrye_story_15|||||}}|}; -{wrye_story_15|Geh mit dem Schatten.|||}; -{wrye_story_16|I denke, du könntest in der Taverne hier in Vilegard oder der Taverne \'Schäumende Flasche\' etwas nördlich von hier nachfragen.|{{0|wrye|41|}}|{{Beim Schatten, dein Sohn wird gerächt werden.|wrye_story_14|||||}{Ok. Ich werde nach deinem Sohn suchen. Ich hoffe, ich bekomme dafür eine Belohnung.|wrye_story_14|||||}{Ok. Ich werde nach deinem Sohn suchen, damit du weißt, was mit ihm passiert ist.|wrye_story_14|||||}}|}; -{wrye_resolved_1|Bitte erzähl mir, was mit ihm passiert ist!||{{Er verließ Vilegard aus freien Stücken, weil er die großartige Stadt Feygard sehen wollte.|wrye_resolved_2|||||}}|}; -{wrye_resolved_2|Das glaube ich nicht.||{{Er hatte sich insgeheim gesehnt nach Feygard zu gehen, aber er wagte nicht, es dir zu sagen.|wrye_resolved_3|||||}}|}; -{wrye_resolved_3|Wirklich?||{{Aber er kam nicht weit. In einer Nacht wurde er in seinem Lager angegriffen.|wrye_resolved_4|||||}}|}; -{wrye_resolved_4|Angegriffen?||{{Ja, er wurde von den Monstern übermannt und schwer verletzt.|wrye_resolved_5|||||}}|}; -{wrye_resolved_5|Mein geliebter Junge.||{{Ich sprach mit einem Mann, der ihn fand, als er verblutete.|wrye_resolved_6|||||}}|}; -{wrye_resolved_6|Er war noch am Leben?||{{Ja, aber nicht lange. Er überlebte die Wunden nicht. Er liegt nun im Nordwesten Vilegards begraben.|wrye_resolved_7|||||}}|}; -{wrye_resolved_7|Oh, mein armer Junge. Was habe ich getan?|{{0|wrye|90|}}|{{N|wrye_resolved_8|||||}}|}; -{wrye_resolved_8|Ich dachte immer, er teilte meine Ansicht, dass die Leute aus Feygard Wichtigtuer sind.||{{N|wrye_resolved_9|||||}}|}; -{wrye_resolved_9|Und nun ist er nicht mehr bei uns.||{{N|wrye_resolved_10|||||}}|}; -{wrye_resolved_10|Vielen Dank, Freund, dass du herausgefunden hast, was mit ihm passiert ist und mir die Wahrheit gesagt hast.||{{N|wrye_resolved_11|||||}}|}; -{wrye_resolved_11|Oh, mein armer Junge.||{{N|wrye_mourn_4|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{oluag_1|||{ - {|oluag_grave_16|wrye:80||||} - {|oluag_1_1|||||} - }|}; -{oluag_1_1|Hallo. Ich bin Oluag.||{{Was machst du hier bei all diesen Kisten?|oluag_2|||||}}|}; -{oluag_2|Ach die. Sie sind nicht von Bedeutung. Kümmere dich nicht darum. Um das Grab dort drüben solltest du dir auch keine Gedanken machen.||{{Welches Grab?|oluag_grave_select|||||}{Nicht von Bedeutung? Wirklich? Das klingt verdächtig.|oluag_boxes_1|||||}}|}; -{oluag_boxes_1|Nein nein, nichts von alledem ist verdächtig. Es ist ja nicht so, dass sie Schmuggelware oder irgendetwas ähnliches enthalten würden.||{{Was hattest du von einem Grab gesagt?|oluag_grave_select|||||}{Nun gut. Ich vermute, dann habe ich nichts gesehen.|oluag_goodbye|||||}}|}; -{oluag_goodbye|Richtig. Tschüss.|||}; -{oluag_grave_select|||{{|oluag_grave_return|wrye:80||||}{|oluag_grave_1|||||}}|}; -{oluag_grave_return|Ich habe dir meine Geschichte bereits erzählt.||{{N|oluag_grave_5|||||}}|}; -{oluag_grave_1|Ja, ok. Also gleich dort drüben ist ein Grab. Ich schwöre, ich hatte damit nichts zu tun.||{{Nichts? Wirklich?|oluag_grave_2|||||}{Ok. Ich vermute, du hast wirklich nichts damit zu tun.|oluag_goodbye|||||}}|}; -{oluag_grave_2|Nun, wenn ich sage \'nichts\', dann meine ich auch wirklich nichts. Oder vielleicht auch ein ganz kleines bisschen.||{{Ein kleines bisschen?|oluag_grave_3|||||}}|}; -{oluag_grave_3|Ok, also vielleicht hatte ich ein kleines bisschen damit zu tun.||{{Du fängst besser an, zu reden.|oluag_grave_5|||||}{Was hast du getan?|oluag_grave_5|||||}{Muss ich es aus dir rausprügeln?|oluag_grave_4|||||}}|}; -{oluag_grave_4|Entspann dich, entspann dich. Ich will keine Kämpfe mehr.||{{N|oluag_grave_5|||||}}|}; -{oluag_grave_5|Da war dieser Junge, den ich gefunden habe. Er war schon fast verblutet.||{{N|oluag_grave_6|||||}}|}; -{oluag_grave_6|Ich konnte ein paar Sätze aus ihm herausbekommen, bevor er starb.||{{N|oluag_grave_7|||||}}|}; -{oluag_grave_7|Also begrub ich ihn dort drüben in diesem Grab.||{{Was waren die letzten Sätze, die du von ihm gehört hast?|oluag_grave_8|||||}}|}; -{oluag_grave_8|Irgendetwas über Vilegard und Ryndel, ich bin mir nicht sicher? Ich habe nicht wirklich zugehört, ich war mehr an dem interessiert, was er bei sich hatte.||{{Ich sollte mir das Grab einmal ansehen. Tschüss.|X|||||}{Rincel, war es das? Aus Vilegard? Wryes vermisster Sohn.|oluag_grave_9|wrye:40||||}}|}; -{oluag_grave_9|Ja, das könnte es gewesen sein. Auf jeden Fall sagte er etwas darüber, den Traum zu erfüllen, die großartige Stadt Feygard zu sehen.||{{N|oluag_grave_10|||||}}|}; -{oluag_grave_10|Und er erzählte mir etwas darüber, dass er es sich nicht traute, jemandem davon zu erzählen.||{{Vielleicht hatte er sich nicht getraut, es Wrye zu erzählen?|oluag_grave_11|||||}}|}; -{oluag_grave_11|Ja sicher, das ist möglich. Er hatte hier sein Lager aufgeschlagen, aber er wurde von einigen Monstern angegriffen.||{{N|oluag_grave_12|||||}}|}; -{oluag_grave_12|Offenbar war er kein so guter Kämpfer wie beispielsweise jemand wie ich. Deshalb verwundeten ihn die Monster zu stark, als das er die Nacht hätte überleben können.||{{N|oluag_grave_13|||||}}|}; -{oluag_grave_13|Dummerweise müssen sie ihm auch alles abgenommen haben, da ich nichts bei ihm finden konnte.||{{N|oluag_grave_14|||||}}|}; -{oluag_grave_14|Ich hörte den Kampflärm, konnte aber erst zu ihm zu gelangen, als die Monster schon geflohen waren.||{{N|oluag_grave_15|||||}}|}; -{oluag_grave_15|Wie auch immer. Jetzt liegt er dort drüben begraben. Ruhe in Frieden.|{{0|wrye|80|}}|{{N|oluag_grave_16|||||}}|}; -{oluag_grave_16|Lausiger Junge. Er hätte wenigstens ein paar Goldmünzen dabeihaben können.||{{Vielen Dank für die Geschichte. Auf Wiedersehen.|oluag_goodbye|||||}{Vielen Dank für die Geschichte. Der Schatten sei mit dir.|oluag_goodbye|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{foaming_flask_tavern_room|Du musst das Zimmer mieten, bevor du es betreten darfst.|||}; -{sign_vilegard_n|Auf dem Schild steht:\nWillkommen in Vilegard, der freundlichsten Stadt in der Umgebung.|||}; -{sign_foamingflask|Willkommen in der Taverne \'Schäumende Flasche\'!|||}; -{sign_road1_nw|nördlich: Loneford\nöstlich: Nor City\nwestlich: Fallhaven|||}; -{sign_road1_s|nördlich: Loneford\nöstlich: Nor City\nsüdlich: Vilegard|||}; -{sign_oluag|Du siehst ein erst vor kurzem ausgehobenes Grab.|||}; -{sign_road2|östlich: Nor City\nwestlich: Vilegard|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{maelveon|[dir läuft ein Schauer den Rücken hinunter, als die furchteinjagende Kreatur zu sprechen beginnt]||{{N|maelveon_1|||||}}|}; -{maelveon_1|Ssschatten, verzehre dich.||{{N|maelveon_2|||||}}|}; -{maelveon_2|G.. argoyle-Schatten.||{{N|maelveon_3|||||}}|}; -{maelveon_3|Ge.. währe den Ssschatten Raum in dir.||{{Den Schatten, was meinst du damit?|maelveon_4|||||}{Stirb, elende Kreatur!|maelveon_4|||||}{Dein Geschwätz interessiert mich nicht!|maelveon_4|||||}}|}; -{maelveon_4|[die Figur hebt ihre Hand und zeigt auf dich]||{{N|maelveon_5|||||}}|}; -{maelveon_5|Ssschatten, sei mit dir.||{{Schatten, was?|F|||||}{Stirb, elende Kreatur!|F|||||}{Bitte verletze mich nicht!|F|||||}}|}; - - - diff --git a/AndorsTrail/res/values-de/content_itemcategories.xml b/AndorsTrail/res/values-de/content_itemcategories.xml deleted file mode 100644 index b06bc2193..000000000 --- a/AndorsTrail/res/values-de/content_itemcategories.xml +++ /dev/null @@ -1,66 +0,0 @@ - - - - -[id|name|actionType|inventorySlot|size|]; -{dagger|Dolch|2|0|1|}; -{ssword|Kurzschwert|2|0|1|}; -{rapier|Degen|2|0|2|}; -{lsword|Langschwert|2|0|2|}; -{2hsword|Zweihandschwert|2|0|3|}; -{bsword|Breitschwert|2|0|2|}; -{axe|Axt|2|0|2|}; -{axe2h|Große Axt|2|0|3|}; -{club|Knüppel|2|0|2|}; -{staff|Kampfstab|2|0|3|}; -{mace|Streitkolben|2|0|2|}; -{scepter|Zepter|2|0|2|}; -{hammer|Kriegshammer|2|0|2|}; -{hammer2h|Riesenhammer|2|0|3|}; - -{buckler|Faustschild|2|1|1|}; -{shld_wd_li|Schild, Holz (leicht)|2|1|2|}; -{shld_mtl_li|Schild, Metall (leicht)|2|1|2|}; -{shld_wd_hv|Schild, Holz (schwer)|2|1|3|}; -{shld_mtl_hv|Schild, Metall (schwer)|2|1|3|}; -{shld_twr|Turmschild|2|1|3|}; - -{hd_cloth|Kopfbedeckung, Stoff|2|2||}; -{hd_lthr|Kopfbedeckung, Leder|2|2|1|}; -{hd_mtl_li|Kopfbedeckung, Metall (leicht)|2|2|2|}; -{hd_mtl_hv|Kopfbedeckung, Metall (schwer)|2|2|3|}; - -{bdy_clth|Rüstung, Stoff|2|3||}; -{bdy_lthr|Rüstung, Leder|2|3|1|}; -{bdy_hide|Tarnrüstung|2|3|1|}; -{bdy_lt|Rüstung (leicht)|2|3|2|}; -{bdy_hv|Rüstung (schwer)|2|3|3|}; -{chmail|Kettenrüstung|2|3|3|}; -{spmail|Kettenhemd|2|3|3|}; -{plmail|Plattenpanzer|2|3|3|}; - -{hnd_cloth|Handschuhe, Stoff|2|4||}; -{hnd_lthr|Handschuhe, Leder|2|4|1|}; -{hnd_mtl_li|Handschuhe, Metall (leicht)|2|4|2|}; -{hnd_mtl_hv|Handschuhe, Metall (schwer)|2|4|3|}; - -{feet_clth|Schuhwerk, Stoff|2|5||}; -{feet_lthr|Schuhwerk, Leder|2|5|1|}; -{feet_mtl_li|Schuhwerk, Metall (leicht)|2|5|2|}; -{feet_mtl_hv|Schuhwerk, Metall (schwer)|2|5|3|}; - -{neck|Halskette|2|6||}; -{ring|Ring|2|7||}; - -{pot|Trank|1|||}; -{food|Lebensmittel|1|||}; -{drink|Getränk|1|||}; -{gem|Edelstein||||}; -{animal|Tierbestandteil||||}; -{animal_e|essbarer Tierbestandteil|1|||}; -{flask|Flüssigkeitsbehälter||||}; -{money|Geld||||}; -{other|Sonstige||||}; - - - diff --git a/AndorsTrail/res/values-de/content_itemlist.xml b/AndorsTrail/res/values-de/content_itemlist.xml deleted file mode 100644 index 200864b83..000000000 --- a/AndorsTrail/res/values-de/content_itemlist.xml +++ /dev/null @@ -1,362 +0,0 @@ - - - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{gold|items_misc:10|Goldmünzen|money||1|1|||||||||||||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{club1|items_weapons:42|Holzknüppel|club|||7|1||||5|10|||0|1|||||||||||||||||||||||}; -{club3|items_weapons:44|Eisenknüppel|mace|||253|1||||6|5|||2|7|||||||||||||||||||||||}; -{ironsword0|items_weapons:0|Plumpes Eisenschwert|lsword|||12|1||||5|10|||0|1|||||||||||||||||||||||}; -{hammer0|items_weapons:45|Eisenhammer|hammer|||12|1||||5|10|||0|1|||||||||||||||||||||||}; -{hammer1|items_weapons:45|Riesenhammer|hammer2h|||121|1||||10|5|||4|7|||||||||||||||||||||||}; -{dagger0|items_weapons:14|Eisendolch|dagger|||12|1||||5|10|||0|1|||||||||||||||||||||||}; -{dagger1|items_weapons:14|Scharfer Eisendolch|dagger|||53|1||||4|20|||1|2|||||||||||||||||||||||}; -{dagger2|items_weapons:14|Guter Eisendolch|dagger|||70|1||||4|25|||1|2|||||||||||||||||||||||}; -{shortsword1|items_weapons:15|Eisenkurzschwert|ssword|||78|1||||4|15|||1|2|||||||||||||||||||||||}; -{ironsword1|items_weapons:0|Eisenschwert|lsword|||78|1||||5|10|||1|3|||||||||||||||||||||||}; -{ironsword2|items_weapons:1|Eisenlangschwert|lsword|||121|1||||5|10|||1|4|||||||||||||||||||||||}; -{broadsword1|items_weapons:5|Eisenbreitschwert|bsword|||251|1||||7|2|||1|10|||||||||||||||||||||||}; -{broadsword2|items_weapons:6|Stahlbreitschwert|bsword|||582|1||||6|15|||3|10|||||||||||||||||||||||}; -{steelsword1|items_weapons:7|Stahlschwert|lsword|||874|1||||4|24|||3|7|||||||||||||||||||||||}; -{axe1|items_weapons:56|Holzfälleraxt|axe|||24|1||||5|5|||1|3|||||||||||||||||||||||}; -{axe2|items_weapons:56|Eisenaxt|axe|||312|1||||6|5|||2|5|||||||||||||||||||||||}; -{quickdagger1|items_weapons:14|Schnellstoßdolch|dagger|4||512|1||||3|20|||0|0|-20||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{ring_dmg1|items_jewelry:0|Angriffsring +1|ring|||215|1||||||||1|1|||||||||||||||||||||||}; -{ring_dmg2|items_jewelry:1|Angriffsring +2|ring|||398|1||||||||2|2|||||||||||||||||||||||}; -{ring_dmg5|items_jewelry:2|Angriffsring +5|ring|4||2014|1||||||||5|5|||||||||||||||||||||||}; -{ring_dmg6|items_jewelry:3|Angriffsring +6|ring|4||3186|1||||||||6|6|||||||||||||||||||||||}; -{ring_block1|items_jewelry:0|Geringer Schutzring|ring|4||1239|1||||||||||10||||||||||||||||||||||}; -{ring_block2|items_jewelry:0|Polierter Schutzring|ring|4||3866|1||||||||||15||||||||||||||||||||||}; -{ring_atkch1|items_jewelry:0|Ring der Treffsicherheit|ring|||215|1|||||15|||||||||||||||||||||||||||}; -{ring1|items_jewelry:0|Einfacher Ring|ring||1|13|1||||||||0|1|||||||||||||||||||||||}; -{ring2|items_jewelry:0|Polierter Ring|ring||1|21|1||||||||||1||||||||||||||||||||||}; -{ring_jinxed1|items_jewelry:2|Verfluchter Ring des Widerstands|ring|||229|1||||||||||-9|1|||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{jewel_fallhaven|items_jewelry:6|Juwel von Fallhaven|neck|4||3125|1||||-1||||||||||||||||||||||||||||}; -{necklace_shield1|items_jewelry:7|Halskette des Beschützers|neck|4||935|1||||||||||9||||||||||||||||||||||}; -{necklace_shield2|items_jewelry:7|Schützende Halskette|neck|4||1255|1||||||||||12||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{shirt1|items_armours:14|Stoffhemd|bdy_clth|||16|1||||||||||2||||||||||||||||||||||}; -{shirt2|items_armours:14|Feines Hemd|bdy_clth|||72|1||||||||||5||||||||||||||||||||||}; -{shirt_dmgresist|items_armours:15|Gehärtetes Lederhemd|bdy_lthr|4||1633|1||||||||||5|1|||||||||||||||||||||}; -{armor1|items_armours:15|Lederrüstung|bdy_lthr|||464|1||||||||||8||||||||||||||||||||||}; -{armor2|items_armours:15|Gute Lederrüstung|bdy_lthr|||624|1||||||||||9||||||||||||||||||||||}; -{armor3|items_armours:16|Gehärtete Lederrüstung|bdy_lthr|||2407|1||||||||||13||||||||||||||||||||||}; -{armor4|items_armours:16|Gute Hartlederrüstung|bdy_lthr|||3866|1||||||||||15||||||||||||||||||||||}; -{hat1|items_armours:21|Grüner Hut|hd_cloth|||13|1||||||||||1||||||||||||||||||||||}; -{hat2|items_armours:21|Feiner grüner Hut|hd_cloth|||25|1||||||||||2||||||||||||||||||||||}; -{hat3|items_armours:24|Plumpe Lederkappe|hd_lthr|||72|1||||||||||5||||||||||||||||||||||}; -{hat4|items_armours:24|Lederkappe|hd_lthr|||146|1||||||||||6||||||||||||||||||||||}; -{gloves1|items_armours:35|Lederhandschuhe|hnd_lthr|||23|1||||||||||3||||||||||||||||||||||}; -{gloves2|items_armours:35|Feine Lederhandschuhe|hnd_lthr|||38|1||||||||||4||||||||||||||||||||||}; -{gloves3|items_armours:36|Schlangenlederhandschuhe|hnd_cloth|||72|1||||||||||5||||||||||||||||||||||}; -{gloves4|items_armours:36|Feine Schlangenlederhandschuhe|hnd_cloth|||146|1||||||||||6||||||||||||||||||||||}; -{shield1|items_armours:0|Faustschild aus Holz|buckler|||72|1|||||-2|||||5||||||||||||||||||||||}; -{shield3|items_armours:1|Faustschild aus Hartholz|buckler|||226|1|||||-5|||||7||||||||||||||||||||||}; -{shield4|items_armours:2|Plumpes Holzschild|shld_wd_li|||464|1|||||-5|||||8||||||||||||||||||||||}; -{shield5|items_armours:2|Gutes Holzschild|shld_wd_li|||624|1|||||-4|||||9||||||||||||||||||||||}; -{boots1|items_armours:28|Lederstiefel|feet_lthr|||23|1||||||||||3||||||||||||||||||||||}; -{boots2|items_armours:28|Gute Lederstiefel|feet_lthr|||38|1||||||||||4||||||||||||||||||||||}; -{boots3|items_armours:29|Schlangenlederstiefel|feet_lthr|||146|1||||||||||6||||||||||||||||||||||}; -{boots5|items_armours:30|Panzerstiefel|feet_mtl_hv|||226|1||||||||||7||||||||||||||||||||||}; -{gloves_attack1|items_armours:35|Handschuhe des Blitzangriffs|hnd_lthr|||150|1|||||15|||||-9||||||||||||||||||||||}; -{gloves_attack2|items_armours:35|Feine Handschuhe des Blitzangriffs|hnd_lthr|||221|1|||||17|||||-9||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{apple_green|items_consumables:2|Grüner Apfel|food||1|14||||||||||||||1|||||{{food|1|8|100|}}||||||||||||||}; -{apple_red|items_consumables:3|Roter Apfel|food||1|22||||||||||||||1|||||{{food|1|12|100|}}||||||||||||||}; -{meat|items_consumables:25|Fleisch|animal_e||1|29||||||||||||||1|||||{{food|2|12|100|}{foodp|3|10|10|}}||||||||||||||}; -{meat_cooked|items_consumables:27|Braten|food||1|78||||||||||||||1|||||{{food|3|11|100|}}||||||||||||||}; -{strawberry|items_consumables:8|Erdbeere|food||1|3||||||||||||||1|||||{{food|1|2|100|}}||||||||||||||}; -{carrot|items_consumables:15|Karotte|food||1|14||||||||||||||1|||||{{food|1|8|100|}}||||||||||||||}; -{bread|items_consumables:21|Brot|food||1|6||||||||||||||1|||||{{food|1|10|100|}}||||||||||||||}; -{mushroom|items_consumables:19|Pilz|food||1|3||||||||||||||1|||||{{food|1|2|100|}}||||||||||||||}; -{pear|items_consumables:9|Birne|food||1|14||||||||||||||1|||||{{food|1|8|100|}}||||||||||||||}; -{eggs|items_consumables:20|Eier|food||1|10||||||||||||||1|||||{{food|1|6|100|}}||||||||||||||}; -{radish|items_consumables:14|Rettich|food||1|6||||||||||||||1|||||{{food|1|4|100|}}||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{vial_empty1|items_consumables:56|Leeres Glasröhrchen|flask||1|2|||||||||||||||||||||||||||||||||}; -{vial_empty2|items_consumables:57|Leere Ampulle|flask||1|4|||||||||||||||||||||||||||||||||}; -{vial_empty3|items_consumables:59|Leeres Fläschchen|flask||1|6|||||||||||||||||||||||||||||||||}; -{vial_empty4|items_consumables:58|Leere Flasche|flask||1|11|||||||||||||||||||||||||||||||||}; -{health_minor|items_consumables:35|Kleine Ampulle der Gesundheit|pot||1|5||||||||||||||1|5|5|||||||||||||||||}; -{health_minor2|items_consumables:35|Kleiner Trank der Gesundheit|pot|||18||||||||||||||1|5|5|||||||||||||||||}; -{health|items_consumables:49|Trank der Gesundheit|pot|||40||||||||||||||1|10|10|||||||||||||||||}; -{health_major|items_consumables:28|Große Flasche der Gesundheit|pot||1|210||||||||||||||1|40|40|||||||||||||||||}; -{health_major2|items_consumables:28|Großer Trank der Gesundheit|pot|||280||||||||||||||1|40|40|||||||||||||||||}; -{mead|items_consumables:51|Met|drink|||15||||||||||||||1|1|1|||||||||||||||||}; -{milk|items_consumables:55|Milch|drink|||21||||||||||||||1|2|2|||||||||||||||||}; -{bonemeal_potion|items_consumables:34|Knochenmehltrank|pot||1|45||||||||||||||1|40|40|||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{hair|items_misc:48|Tierhaar|animal||1|2|||||||||||||||||||||||||||||||||}; -{insectwing|items_misc:52|Insektenflügel|animal||1|3|||||||||||||||||||||||||||||||||}; -{bone|items_misc:44|Knochen|animal||1|2|||||||||||||||||||||||||||||||||}; -{claws|items_misc:47|Klauen|animal||1|2|||||||||||||||||||||||||||||||||}; -{shell|items_misc:54|Insektenpanzer|animal||1|2|||||||||||||||||||||||||||||||||}; -{gland|actorconditions_1:60|Giftdrüse|animal||1|15|||||||||||||||||||||||||||||||||}; -{rat_tail|items_misc:38|Rattenschwanz|animal||1|2|||||||||||||||||||||||||||||||||}; - - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{rock|items_misc:28|Kleiner Stein|gem||1|1|||||||||||||||||||||||||||||||||}; -{gem1|items_misc:0|Glaskristall|gem||1|2|||||||||||||||||||||||||||||||||}; -{gem2|items_misc:1|Rubin|gem||1|6|||||||||||||||||||||||||||||||||}; -{gem3|items_misc:2|Polierter Edelstein|gem||1|8|||||||||||||||||||||||||||||||||}; -{gem4|items_misc:3|Geschnittener Edelstein|gem||1|13|||||||||||||||||||||||||||||||||}; -{gem5|items_misc:5|Funkelnder Edelstein|gem||1|15|||||||||||||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{tail_caverat|items_misc:38|Schwanz einer Höhlenratte|animal|1|1|0|||||||||||||||||||||||||||||||||}; -{tail_trainingrat|items_misc:38|Kleiner Rattenschwanz|animal|1|1|0|||||||||||||||||||||||||||||||||}; -{ring_mikhail|items_jewelry:0|Mikhail\'s Ring|ring|||15|1|||||10|||||||||||||||||||||||||||}; -{neck_irogotu|items_jewelry:7|Irogotu\'s Halskette|neck|3|1|30|1||||||||||5|1|||||||||||||||||||||}; -{ring_gandir|items_jewelry:0|Gandir\'s Ring|other|1|1|0|||||||||||||||||||||||||||||||||}; -{dagger_venom|items_weapons:17|Giftdolch|dagger|3||15|1||||4|10|5|2|1|2|||||||||||||||||||||||}; -{key_luthor|items_misc:21|Schlüssel von Luthor|other|1|1|0|||||||||||||||||||||||||||||||||}; -{calomyran_secrets|items_books:0|Calomyranische Geheimnisse|other|1|1|0|||||||||||||||||||||||||||||||||}; -{heartstone|items_misc:6|Herzstein|gem|1|1|0|||||||||||||||||||||||||||||||||}; -{vacor_spell|items_books:7|Teil von Vacor\'s Zauberspruch|other|1|1|0|||||||||||||||||||||||||||||||||}; -{ring_unzel|items_jewelry:0|Unzel\'s Ring|other|1|1|0|||||||||||||||||||||||||||||||||}; -{ring_vacor|items_jewelry:0|Vacor\'s Ring|other|1|1|0|||||||||||||||||||||||||||||||||}; -{boots_unzel|items_armours:29|Unzel\'s Abwehrstiefel|feet_lthr|3||185|1||||||||||8||||||||||||||||||||||}; -{boots_vacor|items_armours:29|Vacor\'s Angriffsstiefel|feet_lthr|3||185|1|||||9|||||2||||||||||||||||||||||}; -{necklace_flagstone|items_jewelry:6|Flagstone Warden\'s Halskette|other|1|1|0|||||||||||||||||||||||||||||||||}; -{packhide|items_armours:15|Wolfpack\'s Fell|bdy_hide|3|1|121|1|||||-15|||||2|1|||||||||||||||||||||}; -{sword_flagstone|items_weapons:7|Flagstone\'s Stolz|lsword|3||169|1||||4|21|10|2|1|6|||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{armor_chain1|items_armours:17|Rostige Kettenrüstung|chmail|||3629|1|||||-9|||||20||||||||||||||||||||||}; -{armor_chain2|items_armours:17|Einfache Kettenrüstung|chmail|||4191|1|||||-10|||||22||||||||||||||||||||||}; -{hat_leather1|items_armours:24|Einfache Lederkappe|hd_lthr|||261|1|||||-2|||||7||||||||||||||||||||||}; -{sleepingmead|items_consumables:51|Vorbereiteter Schlafmet|other|1|1|0|||||||||||||||||||||||||||||||||}; -{ffguard_qitem|items_jewelry:0|Ring der Feygard Patrouille|other|1|1|0|||||||||||||||||||||||||||||||||}; -{shield6|items_armours:3|Turmschild aus Holz|shld_twr|||952|1|||||-6|||||12||||||||||||||||||||||}; -{shield7|items_armours:3|Turmschild aus Hartholz|shld_twr|||1538|1|||||-6|||||14||||||||||||||||||||||}; -{club_wood1|items_weapons:44|Schwerer Eisenknüppel|mace|||950|1||||8|15|5|3|2|11|||||||||||||||||||||||}; -{club_wood2|items_weapons:44|Kriegseisenknüppel|mace|||2194|1||||7|10|10|3|2|11|||||||||||||||||||||||}; -{gloves_grip|items_armours:35|Handschuhe der besseren Haftung|hnd_lthr|||471|1|||||9|||||1||||||||||||||||||||||}; -{gloves_fancy|items_armours:35|Modische Handschuhe|hnd_cloth|||78|1|||||5|||||||||||||||||||||||||||}; -{ring_crit1|items_jewelry:0|Schlagring|ring|4||2921|1||||||5||||||||||||||||||||||||||}; -{ring_crit2|items_jewelry:0|Brutaler Schlagring|ring|4||3455|1|||||-3|7||||||||||||||||||||||||||}; -{armor_stone|items_armours:17|Steinbrustpanzer|bdy_hv|3||52|1||||2||||||22|1|||||||||||||||||||||}; -{ring_shadow0|items_jewelry:2|Ring der helleren Schatten|ring|2|1|0|1|||||25|6||4|7|5||{{regen|1|}}||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{rapier_lifesteal|items_weapons:71|Vampirdegen|rapier|2|1|0|1|5|||5|21|||1|6||||||||||1|0|3|||||1|3|3||||}; -{dagger_barbed|items_weapons:17|Spitzdolch|dagger|3|1|0|1||||4|15|||0|0|5|||||||||1||||||{{bleeding_wound|1|5|50|}}|||||||}; -{elytharan_redeemer|items_weapons:70|Elytharanischer Erlöser|2hsword|2|1|0|1||2||5|25|||3|8|5||{{bless|1|}}|0|||||||||||||||||||}; -{clouded_rage|items_weapons:71|Raserei des Schattens|rapier|3|1|0|1||||5|21|||3|6|5|||0|||||||||||||1|||||{{rage_minor|1|1|50|}}|}; -{shadow_slayer|items_weapons:60|Schatten des Mörders|axe2h|3|1|0|1||2||7|25|10|2|5|9|||||||||||||||||1|1|1||||}; -{ring_shadow_embrace|items_jewelry:0|Umarmung des Schattens|ring|3|1|0|1|20||||10|||2|2|||||||||||||||||||||||}; -{bwm_dagger|items_weapons:19|Blackwater Dolch|dagger|4|1|539|1||||3|40|||1|1|5||{{blackwater_misery|1|}}||||||||||||||||||||}; -{bwm_dagger_venom|items_weapons:19|Blackwater Giftdolch|dagger|4|1|1552|1||||3|45|||1|1|||{{blackwater_misery|1|}}|||||||1||||||{{poison_weak|1|5|50|}}|||||||}; -{bwm_ironsword|items_weapons:0|Blackwater Eisenschwert|lsword|4|1|1224|1||||4|50|||3|7|5||{{blackwater_misery|1|}}||||||||||||||||||||}; -{bwm_leather_armour|items_armours:15|Blackwater Lederrüstung|bdy_lthr|4|1|2551|1||||||||||25|1|{{blackwater_misery|1|}}||||||||||||||||||||}; -{bwm_leather_cap|items_armours:24|Blackwater Lederkappe|hd_lthr|4|1|722|1|5|||||||||21||{{blackwater_misery|1|}}||||||||||||||||||||}; -{bwm_combat_ring|items_jewelry:2|Blackwater Kampfring|ring|4|1|595|1|||||5|||0|7|||{{blackwater_misery|1|}}||||||||||||||||||||}; -{bwm_brew|items_consumables:51|Blackwater Bräu|pot||1|57||||||||||||||1|15|15|||{{intoxicated|1|10|100|}}||||||||||||||}; -{woodcutter_hatchet|items_weapons:57|Holzfällerbeil|axe|||0|1||||6|9|||6|12|||||||||||||||||||||||}; -{woodcutter_boots|items_armours:30|Holzfällerstiefel|feet_lthr|||873|1|1||||3|||||8||||||||||||||||||||||}; -{heavy_club|items_weapons:44|Schwerer Knüppel|mace|||1229|1||||7|15|5|3|2|15|||||||||||||||||||||||}; -{pot_speed_1|items_consumables:41|Kleiner Trank der Geschwindigkeit|pot||1|261||||||||||||||1|||||{{speed_minor|1|5|100|}}||||||||||||||}; -{pot_poison_weak|items_consumables:40|Schwaches Gift|pot||1|125||||||||||||||1|||||{{poison_weak|1|5|100|}}||||||||||||||}; -{pot_poison_weak_antidote|items_consumables:54|Schwaches Gegengift|pot||1|337||||||||||||||1|||||{{poison_weak|-99||100|}}||||||||||||||}; -{pot_bleeding_ointment|items_consumables:35|Wundbalsam|pot||1|310||||||||||||||1|||||{{bleeding_wound|-99||100|}}||||||||||||||}; -{pot_fatigue_restore|items_consumables:41|Erholungstrank|pot||1|210||||||||||||||1|||||{{fatigue_minor|-99||100|}}||||||||||||||}; -{pot_blind_rage|items_consumables:63|Trank der wilden Raserei|pot||1|495||||||||||||||1|||||{{rage_minor|1|5|100|}}|0|||||||0||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{rusted_iron_sword|items_weapons:0|Rostiges Eisenschwert|lsword|||52|1||||5|10|||1|2|||||||||||||||||||||||}; -{broken_buckler|items_armours:0|Gebrochenes Faustschild aus Holz|buckler|||120|1|||||-5|||||1||||||||||||||||||||||}; -{used_gloves|items_armours:35|Blutverschmierte Handschuhe|hnd_lthr|||56|1||||||||||1||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{bwm_claws|items_misc:47|Klauen des weißen Lindwurms|animal||1|35|||||||||||||||||||||||||||||||||}; -{bwm_permit|items_books:8|Gefälschte Papiere für Blackwater|other|1|1|0|||||||||||||||||||||||||||||||||}; -{bjorgur_dagger|items_weapons:14|Bjorgur\'s Familiendolch|dagger|1|1|0|1||||5||||||||||||||||||||||||||||}; -{q_kazaul_vial|items_consumables:57|Ampulle des reinigenden Geistes|other|1|1|0|||||||||||||||||||||||||||||||||}; -{guthbered_id|items_jewelry:0|Guthbered\'s Ring|other|1|1|0|||||||||||||||||||||||||||||||||}; -{harlenn_id|items_jewelry:0|Harlenn\'s Ring|other|1|1|0|||||||||||||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{dagger_shadow_priests|items_weapons:17|Dolch des Schattenpriesters|dagger|3|1|15|1||||4|20|20|3|1|2|||||||||||||||||||||||}; -{sword_hard_iron|items_weapons:0|Gehärtetes Eisenschwert|lsword||0|369|1||||5|15|||2|4|||||||||||||||||||||||}; -{club_fine_wooden|items_weapons:42|Feiner Holzknüppel|club||0|245|1||||5|12|||0|7|||||||||||||||||||||||}; -{axe_fine_iron|items_weapons:56|Feine Eisenaxt|axe||0|365|1||||6|9|||4|6|||||||||||||||||||||||}; -{longsword_hard_iron|items_weapons:1|Gehärtetes Eisenlangschwert|lsword||0|362|1||||5|14|||2|6|||||||||||||||||||||||}; -{broadsword_fine_iron|items_weapons:5|Feines Eisenbreitschwert|bsword||0|422|1||||7|5|||4|10|||||||||||||||||||||||}; -{dagger_sharp_steel|items_weapons:14|Scharfer Stahldolch|dagger||0|1428|1||||4|24|||2|4|||||||||||||||||||||||}; -{sword_balanced_steel|items_weapons:7|Kriegsstahlschwert|lsword||0|2797|1||||4|32|||3|7|||||||||||||||||||||||}; -{broadsword_fine_steel|items_weapons:6|Feines Stahlbreitschwert|bsword||0|1206|1||||6|20|||4|11|||||||||||||||||||||||}; -{sword_defenders|items_weapons:2|Klinge des Verteidigers|lsword||0|1711|1||||5|26|||3|7|3||||||||||||||||||||||}; -{sword_villains|items_weapons:16|Villain\'s Klinge|ssword||0|1665|1||||4|20|5|3|1|2|||||||||||||||||||||||}; -{sword_challengers|items_weapons:1|Eisenschwert des Herausforderers|lsword||0|785|1||||5|20|||2|6|||||||||||||||||||||||}; -{sword_fencing|items_weapons:13|Fechtklinge|rapier||0|922|1||||4|14|||2|5|5||||||||||||||||||||||}; -{club_brutal|items_weapons:44|Morgenstern|mace||0|2522|1||||7|20|5|3|2|21|||||||||||||||||||||||}; -{axe_gutsplitter|items_weapons:58|Bauchschlitzer|axe2h||0|2733|1||||6|21|||7|17|||||||||||||||||||||||}; -{hammer_skullcrusher|items_weapons:45|Schädelbrecher|hammer2h||0|3142|1||||7|20|5|3|0|26|||||||||||||||||||||||}; -{shield_crude_wooden|items_armours:0|Plumpes Faustschild aus Holz|buckler||0|31|1||||||||||1||||||||||||||||||||||}; -{shield_cracked_wooden|items_armours:0|Gerissenes Faustschild aus Holz|buckler||0|34|1|||||-2|||||2||||||||||||||||||||||}; -{shield_wooden_buckler|items_armours:0|Gebrauchtes Faustschild aus Holz|buckler||0|92|1|||||-2|||||3||||||||||||||||||||||}; -{shield_wooden|items_armours:2|Holzschild|shld_wd_li||0|514|1|||||-4|||||8||||||||||||||||||||||}; -{shield_wooden_defender|items_armours:2|Hölzerner Verteidiger|shld_wd_li||0|1996|1|||||-8|-5||||14|1|||||||||||||||||||||}; -{hat_hard_leather|items_armours:24|Gehärtete Lederkappe|hd_lthr||0|648|1|||||-3|-1||||8||||||||||||||||||||||}; -{hat_fine_leather|items_armours:24|Feine Lederkappe|hd_lthr||0|846|1|||||-3|-2||||9||||||||||||||||||||||}; -{hat_leather_vision|items_armours:24|Lederkappe der beschränkten Sicht|hd_lthr||0|971|1|||||-3|-4||||10||||||||||||||||||||||}; -{helm_crude_iron|items_armours:25|Plumper Eisenhelm|hd_mtl_hv||0|1120|1|||||-3|-5||||11||||||||||||||||||||||}; -{shirt_torn|items_armours:14|Gerissenes Hemd|bdy_clth||0|92|1|||||-2|||||3||||||||||||||||||||||}; -{shirt_weathered|items_armours:14|Zersetztes Hemd|bdy_clth||0|125|1|||||-1|||||3||||||||||||||||||||||}; -{shirt_patched_cloth|items_armours:14|Geflicktes Stoffhemd|bdy_clth||0|208|1||||||||||4||||||||||||||||||||||}; -{armour_crude_leather|items_armours:16|Plumpe Lederrüstung|bdy_lthr||0|514|1|||||-4|||||8||||||||||||||||||||||}; -{armour_firm_leather|items_armours:16|Stabile Lederrüstung|bdy_lthr||0|417|1|||1|||||||8||||||||||||||||||||||}; -{armour_rigid_leather|items_armours:16|Versteifte Lederrüstung|bdy_lthr||0|625|1|||1||-1|||||9||||||||||||||||||||||}; -{armour_rigid_chain|items_armours:17|Versteifte Kettenrüstung|chmail||0|4667|1||||1|-5|||||23||||||||||||||||||||||}; -{armour_superior_chain|items_armours:17|Gute Kettenrüstung|chmail||0|5992|1|||||-9|||||23||||||||||||||||||||||}; -{armour_chain_champ|items_armours:17|Kettenrüstung des Champions|chmail||0|6808|1|2||||-9|-5||||24||||||||||||||||||||||}; -{armour_leather_villain|items_armours:16|Villain\'s Lederrüstung|bdy_lthr||0|3700|1|||-1||-4|3||||15||||||||||||||||||||||}; -{armour_misfortune|items_armours:15|Lederhemd des Unglücks|bdy_lthr||0|2459|1|||||-5|||-1|-1|15||||||||||||||||||||||}; -{gloves_barbrawler|items_armours:35|Handschuhe des Kneipenraufboldes|hnd_lthr||0|95|1|||||5|||||2||||||||||||||||||||||}; -{gloves_fumbling|items_armours:35|Stümperhafte Handschuhe|hnd_lthr||0|-432|1|||||-5|||||1||||||||||||||||||||||}; -{gloves_crude_cloth|items_armours:35|Plumpe Stoffhandschuhe|hnd_cloth||0|31|1||||||||||1||||||||||||||||||||||}; -{gloves_crude_leather|items_armours:35|Plumpe Lederhandschuhe|hnd_lthr||0|180|1|||||-4|||||6||||||||||||||||||||||}; -{gloves_troublemaker|items_armours:36|Handschuhe des Hitzkopfes|hnd_lthr||0|501|1|1||||7|4||||4||||||||||||||||||||||}; -{gloves_guards|items_armours:37|Handschuhe des Wachpostens|hnd_mtl_li||0|636|1|3||||3|||||5||||||||||||||||||||||}; -{gloves_leather_attack|items_armours:35|Lederhandschuhe des Angriffs|hnd_lthr||0|510|1|3||||13|||||-2||||||||||||||||||||||}; -{gloves_woodcutter|items_armours:35|Handschuhe des Holzfällers|hnd_lthr||0|426|1|3||||8|||||1||||||||||||||||||||||}; -{boots_crude_leather|items_armours:28|Plumpe Lederstiefel|feet_lthr||0|31|1||||||||||1||||||||||||||||||||||}; -{boots_sewn|items_armours:28|Genähtes Schuhwerk|feet_clth||0|73|1||||||||||2||||||||||||||||||||||}; -{boots_coward|items_armours:28|Stiefel des Feiglings|feet_lthr||0|933|1|||-1|||||||2||||||||||||||||||||||}; -{boots_hard_leather|items_armours:30|Gehärtete Lederstiefel|feet_lthr||0|626|1|||1||-4|||||10||||||||||||||||||||||}; -{boots_defender|items_armours:30|Stiefel des Verteidigers|feet_mtl_li||0|1190|1|2|||||||||9||||||||||||||||||||||}; -{necklace_shield_0|items_jewelry:7|Geringe schützende Halskette|neck||0|131|1||||||||||3||||||||||||||||||||||}; -{necklace_strike|items_jewelry:6|Halskette des Treffers|neck||0|832|1|5|||||5||||||||||||||||||||||||||}; -{necklace_defender_stone|items_jewelry:7|Stein des Verteidigers|neck|4|0|1325|1|||||||||||1|||||||||||||||||||||}; -{necklace_protector|items_jewelry:7|Halskette des Beschützers|neck|4|0|3207|1|5||||||||||2|||||||||||||||||||||}; -{ring_crude_combat|items_jewelry:0|Plumper Kampfring|ring||0|44|1|||||5|||0|1|||||||||||||||||||||||}; -{ring_crude_surehit|items_jewelry:0|Plumper Ring der Treffsicherheit|ring||0|52|1|||||7|||||||||||||||||||||||||||}; -{ring_crude_block|items_jewelry:0|Plumper Schutzring|ring||0|73|1||||||||||2||||||||||||||||||||||}; -{ring_rough_life|items_jewelry:0|Unebener Ring der Lebenskraft|ring||0|100|1|1|||||||||||||||||||||||||||||||}; -{ring_fumbling|items_jewelry:0|Stümperhafter Ring|ring||0|-463|1|||||-5|||||||||||||||||||||||||||}; -{ring_rough_damage|items_jewelry:0|Unebener Angriffsring|ring||0|56|1||||||||0|2|||||||||||||||||||||||}; -{ring_barbrawler|items_jewelry:0|Ring des Kneipenraufboldes|ring||0|222|1|||||12|||0|1|||||||||||||||||||||||}; -{ring_dmg_3|items_jewelry:0|Angriffsring +3|ring||0|624|1||||||||3|3|||||||||||||||||||||||}; -{ring_life|items_jewelry:0|Ring der Lebenskraft|ring||0|557|1|5|||||||||||||||||||||||||||||||}; -{ring_taverbrawler|items_jewelry:0|Ring des Tavernenraufboldes|ring||0|314|1|||||12|||0|3|||||||||||||||||||||||}; -{ring_defender|items_jewelry:0|Ring des Verteidigers|ring||0|755|1|||||-6|||||11||||||||||||||||||||||}; -{ring_challenger|items_jewelry:0|Ring des Herausforderers|ring||0|408|1|||||12|||||4||||||||||||||||||||||}; -{ring_dmg_4|items_jewelry:2|Angriffsring +4|ring||0|1168|1||||||||4|4|||||||||||||||||||||||}; -{ring_troublemaker|items_jewelry:2|Ring des Hitzkopfes|ring||0|797|1|||||15|||2|4|||||||||||||||||||||||}; -{ring_guardian|items_jewelry:2|Ring des Beschützers|ring|4|0|1489|1|||||19|||3|5|||||||||||||||||||||||}; -{ring_block|items_jewelry:2|Schutzring|ring|4|0|2192|1||||||||||13||||||||||||||||||||||}; -{ring_backstab|items_jewelry:2|Ring des Verrats|ring||0|1363|1|||||17|7||||3||||||||||||||||||||||}; -{ring_polished_combat|items_jewelry:2|Polierter Kampfring|ring|4|0|1346|1|5||||15|||1|5|||||||||||||||||||||||}; -{ring_villain|items_jewelry:2|Villain\'s Ring|ring|4|0|2750|1|4||||25|||3|6|||||||||||||||||||||||}; -{ring_polished_backstab|items_jewelry:2|Polierter Ring des Verrats|ring|4|0|2731|1|||||21|7||4|4|||||||||||||||||||||||}; -{ring_protector|items_jewelry:4|Ring des Beschützers|ring|4|0|3744|1|3||||20|||0|3|14||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{erinith_book|items_books:0|Erinith\'s Buch|other|1|1|0|||||||||||||||||||||||||||||||||}; -{hadracor_waspwing|items_misc:52|Riesiger Wespenflügel|animal|1|1|0|||||||||||||||||||||||||||||||||}; -{tinlyn_bells|items_necklaces_1:10|Tinlyn\'s Schafsglocken|other|1|1|0|||||||||||||||||||||||||||||||||}; -{tinlyn_sheep_meat|items_consumables:25|Fleisch von Tinlyn\'s Schafen|animal|1|1|0|||||||||||||||||||||||||||||||||}; -{rogorn_qitem|items_books:7|Teil eines Gemäldes|other|1|1|0|||||||||||||||||||||||||||||||||}; -{fg_ironsword|items_weapons:0|Feygard Eisenschwert|lsword|1|1|0|1||||5|10|||1|5|||||||||||||||||||||||}; -{fg_ironsword_d|items_weapons:0|Minderwertiges Feygard Eisenschwert|lsword|1|1|0|1||||5|-50|||0|0|||||||||||||||||||||||}; -{buceth_vial|items_consumables:47|Buceth\'s Ampulle mit grüner Flüssigkeit|other|1|1|0|||||||||||||||||||||||||||||||||}; -{chaosreaper|items_weapons:49|Zepter des Chaos|scepter|3|1|339|1||||4|-30|||0|2||||0||||||1||||||{{chaotic_grip|5|3|50|}}|||||||}; -{izthiel_claw|items_misc:47|Izthiel Klauen|animal_e||1|1||||||||||||||1|||||{{food|3|6|100|}{foodp|3|10|20|}}||||||||||||||}; -{iqhan_pendant|items_necklaces_1:2|Iqhan Anhänger|neck||1|10|1|||||6|||||||||||||||||||||||||||}; -{shadowfang|items_weapons_3:41|Reißzahn des Schattens|ssword|3|1|512|1|-20|||4|40|||2|5||||0||||||1|||||{{fatigue_minor|1|3|20|}}||||||||}; -{gloves_life|items_armours_2:1|Handschuhe der Lebenskraft|hnd_lthr|3|1|390|1|9||||5|||||3||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{pot_focus_dmg|items_consumables:39|Trank der Wucht|pot||1|272||||||||||||||1|||||{{focus_dmg|1|4|100|}}||||||||||||||}; -{pot_focus_dmg2|items_consumables:39|Starker Trank der Wucht|pot||1|630||||||||||||||1|||||{{focus_dmg|2|4|100|}}||||||||||||||}; -{pot_focus_ac|items_consumables:37|Trank der Treffsicherheit|pot||1|210||||||||||||||1|||||{{focus_ac|1|4|100|}}||||||||||||||}; -{pot_focus_ac2|items_consumables:37|Starker Trank der Treffsicherheit|pot||1|618||||||||||||||1|||||{{focus_ac|2|4|100|}}||||||||||||||}; -{pot_scaradon|items_consumables:48|Scaradon Extrakt|pot||0|28||||||||||||||1|5|10|||||||||||||||||}; -{remgard_shield_1|items_armours_3:24|Remgard Schild|shld_mtl_li||0|2189|1|||||-3|||||9|1|||||||||||||||||||||}; -{remgard_shield_2|items_armours_3:24|Remgard Kampfschild|shld_mtl_li||0|2720|1|||||-3|||||11|1|||||||||||||||||||||}; -{helm_combat1|items_armours:25|Kampfhelm|hd_mtl_li||0|455|1|||||5|||||6||||||||||||||||||||||}; -{helm_combat2|items_armours:25|Verbesserter Kampfhelm|hd_mtl_li||0|485|1|||||7|||||6||||||||||||||||||||||}; -{helm_combat3|items_armours:26|Remgard Kampfhelm|hd_mtl_hv||0|1540|1|1||||-3|-5||||12||||||||||||||||||||||}; -{helm_redeye1|items_armours:24|Kappe der roten Augen|hd_lthr||0|1|1|-5|||||||||8||||||||||||||||||||||}; -{helm_redeye2|items_armours:24|Kappe der blutigen Augen|hd_lthr||0|1|1|-5|||||||0|1|8||||||||||||||||||||||}; -{helm_defend1|items_armours_3:31|Helm des Verteidigers|hd_mtl_hv||0|1975|1|||||-3|||||8|1|||||||||||||||||||||}; -{helm_protector0|items_armours_3:31|seltsam aussehender Helm|hd_mtl_li|1|1|0|1|-9|||||||0|1|5||||||||||||||||||||||}; -{helm_protector|items_armours_3:31|Dunkler Beschützer|hd_mtl_li|3|0|3119|1|-6|||||||0|1|13|1|||||||||||||||||||||}; -{armour_chain_remg|items_armours_3:13|Remgard Kettenrüstung|chmail||0|8927|1|||||-7|||||25||||||||||||||||||||||}; -{armour_cvest1|items_armours_3:5|Kampfweste|bdy_lt||0|1116|1|||||15|||||8||||||||||||||||||||||}; -{armour_cvest2|items_armours_3:5|Remgard Kampfweste|bdy_lt||0|1244|1|||||17|||||8||||||||||||||||||||||}; -{gloves_leather1|items_armours:38|Gehärtete Lederhandschuhe|hnd_lthr||0|757|1|3||||2|||||6||||||||||||||||||||||}; -{gloves_arulir|items_armours_2:1|Handschuhe aus Arulirfell|hnd_lthr||0|1793|1|||||-3|||||7|1|||||||||||||||||||||}; -{gloves_combat1|items_armours:36|Kampfhandschuhe|hnd_lthr||0|956|1|4||||-5|||||9||||||||||||||||||||||}; -{gloves_combat2|items_armours:36|Verbesserte Kampfhandschuhe|hnd_lthr||0|1204|1|4||||-5|||||10||||||||||||||||||||||}; -{gloves_remgard1|items_armours:37|Remgard Kampfhandschuhe|hnd_mtl_li||0|1205|1|4|||||||||8||||||||||||||||||||||}; -{gloves_remgard2|items_armours:37|Verbesserte Remgard Handschuhe|hnd_mtl_li||0|1326|1|5||||2|||||8||||||||||||||||||||||}; -{gloves_guard1|items_armours:38|Handschuhe des Beschützers|hnd_lthr||1|601|1|||||-9|-5||||14||||||||||||||||||||||}; -{boots_combat1|items_armours:30|Kampfschuhe|feet_mtl_li||0|0|1|||||7|||||7||||||||||||||||||||||}; -{boots_combat2|items_armours:30|Verbesserte Kampfschuhe|feet_mtl_li||0|0|1|||||7|||||11||||||||||||||||||||||}; -{boots_remgard1|items_armours:31|Remgard Schuhe|feet_mtl_hv||0|0|1|4|||||||||12||||||||||||||||||||||}; -{boots_guard1|items_armours:31|Schuhe des Beschützers|feet_mtl_hv||0|0|1||||||||||7|1|||||||||||||||||||||}; -{boots_brawler|items_armours_3:38|Schuhe des Kneipenraufboldes|feet_lthr||0|0|1|2|||||4||||7||||||||||||||||||||||}; -{marrowtaint|items_necklaces_1:9|Marrow\'s Verderben|neck|3|0|4760|1|5|||-1|9|||||9||||||||||||||||||||||}; -{valugha_gown|items_armours_3:2|Valugha\'s Seidengewand|bdy_clth|3|0|3109|1|5||-1||30|||||-10|||||||||0|||||||||||||}; -{valugha_hat|items_armours_3:1|Valugha\'s schimmernder Hut|hd_cloth|3|1|648|1|3||-1||15|||-2|-2|-5||||||||||||||||||||||}; -{hat_crit|items_armours_3:0|Gefederter Hut des Holzfällers|hd_cloth|3|0|1|1||||||4||||-5||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{thorin_bone|items_misc:44|Angenagter Knochen|animal|1|1|0|||||||||||||||||||||||||||||||||}; -{spider|items_misc:40|Tote Spinne|animal||1|1|||||||||||||||||||||||||||||||||}; -{irdegh|items_misc:49|Irdegh Giftdrüse|animal||1|5|||||||||||||||||||||||||||||||||}; -{arulir_skin|items_misc:39|Arulir Fell|animal||1|4|||||||||||||||||||||||||||||||||}; -{algangror_rat|items_misc:38|Eigenartig aussehender Rattenschwanz|animal|1|1|0|||||||||||||||||||||||||||||||||}; -{oegyth|items_misc:35|Oegyth Kristall|gem|1|1|0|||||||||||||||||||||||||||||||||}; -{toszylae_heart|items_misc:6|Dämonenherz|other|1|1|0|||||||||||||||||||||||||||||||||}; -{potion_rotworm|items_consumables:63|Kazaul-Maden|other|1|1|0|||||||||||||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{lyson_marrow|items_consumables:63|Glasröhrchen mit Lyson Marrowextrakt|other|1|1|0|||||||||||||||||||||||||||||||||}; -{algangror_idol|items_misc_2:220|Kleine Figur|other|1|1|0|||||||||||||||||||||||||||||||||}; -{algangror_ring|items_rings_1:11|Algangror\'s Ring|other|1|1|0|||||||||||||||||||||||||||||||||}; -{kaverin_message|items_books:7|Kaverin\'s versiegelte Nachricht|other|1|1|0|||||||||||||||||||||||||||||||||}; -{vacor_map|items_books:9|Karte zu Vacor\'s altem Versteck|other|1|1|0|||||||||||||||||||||||||||||||||}; - - diff --git a/AndorsTrail/res/values-de/content_monsterlist.xml b/AndorsTrail/res/values-de/content_monsterlist.xml deleted file mode 100644 index e1e47dd06..000000000 --- a/AndorsTrail/res/values-de/content_monsterlist.xml +++ /dev/null @@ -1,562 +0,0 @@ - - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{tiny_rat|monsters_rats:0|Kleine Ratte|trainingrat||4|1||2|||10|50|||1|1|||trainingrat|||||||||}; -{cave_rat|monsters_rats:1|Höhlenratte|crossglen_caverat||4|||5|||10|90|||2|2|||rat|||||||||}; -{tough_cave_rat|monsters_rats:1|Kräftige Höhlenratte|crossglen_caverat2||4|||5|||5|90|||3|3|||rat|||||||||}; -{strong_cave_rat|monsters_rats:3|Starke Höhlenratte|crossglen_caveboss||4|1||20|||5|100|||2|4|10||caveratboss|||||||||}; -{black_ant|monsters_insects:0|Schwarze Ameise|crossglen_ant||1|||3|||10|70|||1|2|||insect|||||||||}; -{small_wasp|monsters_insects:1|Kleine Wespe|crossglen_wasp||1|||4|||10|70|||1|2|||wasp|||||||||}; -{beetle|monsters_insects:4|Käfer|crossglen_beetle||1|||4|||10|70|||3|3|||insect|||||||||}; -{forest_wasp|monsters_insects:1|Waldwespe|forestwasp||1|||6|||10|70|||1|2|||wasp|||||||||}; -{forest_ant|monsters_insects:0|Waldameise|forestant||1|||4|||10|90|||1|2|10||insect|||||||||}; -{yellow_forest_ant|monsters_insects:2|Gelbe Waldameise|forestant||1|||5|||10|100|||2|2|15||insect|||||||||}; -{small_rabid_dog|monsters_dogs:1|Kleiner tollwütiger Hund|forestdog||4|||6|||10|90|||2|2|||canine|||||||||}; -{forest_snake|monsters_snakes:1|Waldschlange|forestsnake||7|||7|||10|110|||1|2|10||snake|||||||||}; -{young_cave_snake|monsters_snakes:3|Junge Höhlenschlange|cavesnake1||7|||8|||5|110|10|2|2|2|10||snake|||||||||}; -{cave_snake|monsters_snakes:3|Höhlenschlange|cavesnake1||7|||12|||5|110|20|2|2|2|15||snake|||||||||}; -{venomous_cave_snake|monsters_snakes:3|Giftige Höhlenschlange|cavesnake2||7|||15|10||5|110|40|2|2|2|10||snake||1||||||{{poison_weak|1|1|10|}}|}; -{tough_cave_snake|monsters_snakes:3|Kräftige Höhlenschlange|cavesnake2||7|||21|||5|110|20|2|2|2|15||snake|||||||||}; -{basilisk|monsters_rats:4|Basilisk|cavesnake2_boss||7|||40|||7|40|||3|9|50|2|cavecritter|||||||||}; -{snake_servant|monsters_liches:0|Schlangendiener|cavesnake3||6|||35|||5|80|40|3|2|3|10|1|lich1|||||||||}; -{snake_master|monsters_liches:1|Schlangenmeister|cavesnake3_boss||6|1||55|||5|60|200|3|1|4|10|4|snakemaster|snakemaster||||||||}; -{rabid_boar|monsters_dogs:6|Tollwütiger Eber|forestboar||4|||20|||5|110|||3|3|30||canineboss|||||||||}; -{rabid_fox|monsters_dogs:3|Tollwütiger Fuchs|fox1||4|||25|||5|100|||3|3|50||canine|||||||||}; -{yellow_cave_ant|monsters_insects:2|Gelbe Höhlenameise|pitcave1||1|||20|||3|30|||1|1|80||insect|||||||||}; -{young_teeth_critter|monsters_misc:0|Junges gefräßiges Kriechtier|pitcave2||7|||15|||2|50|||1|1|70||cavecritter|||||||||}; -{teeth_critter|monsters_misc:0|Gefräßiges Kriechtier|pitcave2||7|||25|||2|60|10|3|1|1|70||cavecritter|||||||||}; -{young_minotaur|monsters_misc:5|Junger Minotaurus|pitcave2||5|||45|||6|20|40|3|4|4|50|2|cavemonster|||||||||}; -{strong_minotaur|monsters_misc:5|Starker Minotaurus|pitcave2_boss||5|||53|||6|40|50|3|5|5|50|2|cavemonster|||||||||}; -{irogotu|monsters_liches:0|Irogotu|pitcave_boss||6|1||61|||3|50|40|3|2|5|70|4|irogotu|irogotu||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{lost_spirit|monsters_rltiles2:45|Verlorener Geist|minorhaunt1||8|||15|||10|50|||1|2|10|3|haunt|haunt||||||||}; -{lost_soul|monsters_rltiles2:45|Verlorene Seele|minorhaunt2||8|||15|||10|50|||1|2|10|4|haunt|||||||||}; -{haunting|monsters_ghost1:0|Geist|haunt3||8|||31|10|10|5|120|20|2|1|5|30|1|haunt|||||||||}; -{skeletal_warrior|monsters_skeleton1:0|Skelettkrieger|skeleton1||3|||52|10|10|5|60|||1|3|40|1|skeleton|||||||||}; -{skeletal_master|monsters_skeleton2:0|Skelettmeister|skeletonmaster||3|||52|10|10|5|70|||1|3|30|2|skeleton|||||||||}; -{skeleton|monsters_skeleton1:0|Skelett|skeleton1||3|||35|10|10|10|60|||1|4|40||skeleton|||||||||}; - -{guardian_of_the_catacombs|monsters_rltiles2:45|Wächter der Katakomben|catacombguard1||8|1||6|10|10|10|10|||1|6|10|3|catacombguard|catacombguard||||||||}; -{catacomb_rat|monsters_rats:0|Katakombenratte|catacombrat1||4|||15|10|10|3|60|||1|1|40||catacombrat|||||||||}; -{large_catacomb_rat|monsters_rats:3|Große Katakombenratte|catacombrat1||4|||21|10|10|3|60|10|2|1|2|40||catacombrat|||||||||}; -{ghostly_visage|monsters_ghost1:0|Geisterhafte Erscheinung|catacombguard2||8|||16|10|10|5|20|||1|4|20|2|catacombguard|||||||||}; -{spectre|monsters_rltiles2:45|Gespenst|catacombguard2||8|||15|10|10|3|50|||1|5|60|2|catacombguard|||||||||}; -{apparition|monsters_rltiles2:45|Erscheinung|catacombguard3||8|||17|10|10|3||||1|5|70|2|catacombguard|||||||||}; -{shade|monsters_ghost1:0|Schatten|catacombguard3||8|||16|10|10|5|20|||1|4|20|3|catacombguard|||||||||}; -{young_gargoyle|monsters_misc:2|Junger Gargoyle|catacombguard3||3|||35|10|10|10|110|10|2|2|5|70|1|catacombguard|||||||||}; -{ghost_of_luthor|monsters_liches:2|Geist von Luthor|luthor||6|1||86|10|10|5|120|15|2|2|5|50|3|luthor|luthor||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{mikhail|monsters_mage2:0|Mikhail|mikhail||0|||||||||||||||mikhail_start_select||||||||}; -{leta|monsters_men:2|Leta|leta||0|||||||||||||||leta1||||||||}; -{audir|monsters_men:0|Audir|audir||0||||||||||||||shop_audir|audir1||||||||}; -{arambold|monsters_men:3|Arambold|arambold||0||||||||||||||shop_arambold|arambold1||||||||}; -{tharal|monsters_men:4|Tharal|tharal||0||||||||||||||shop_tharal|tharal1||||||||}; -{drunk|monsters_rltiles3:14|Betrunkener|drunk||0|||||||||||||||drunk1||||||||}; -{mara|monsters_men:7|Mara|mara||0||||||||||||||shop_mara|mara1||||||||}; -{gruil|monsters_rogue1:0|Gruil|gruil||0||||||||||||||shop_gruil|gruil1||||||||}; -{leonid|monsters_men:3|Leonid|leonid||0|||||||||||||||leonid1||||||||}; -{farmer|monsters_man1:0|Bauer|crossglen_farmer1||0|||||||||||||||farm1||||||||}; -{tired_farmer|monsters_man1:0|Erschöpfter Bauer|crossglen_farmer2||0|||||||||||||||farm2||||||||}; -{oromir|monsters_man1:0|Oromir|oromir||0|||||||||||||||oromir1||||||||}; -{odair|monsters_men:8|Odair|odair||0|||||||||||||||odair1||||||||}; -{jan|monsters_rltiles3:14|Jan|jan||0|||||||||||||||jan_start_select||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{warden|monsters_men:3|Aufseher|fallhaven_warden||0|||||||||||||||fallhaven_warden_select_1||||||||}; -{guard|monsters_rltiles3:14|Wachposten|fallhaven_guard||0|||||||||||||||fallhaven_guard||||||||}; -{acolyte|monsters_men:4|Messdiener|fallhaven_priest||0|||||||||||||||fallhaven_priest||||||||}; -{bearded_citizen|monsters_man1:0|Bärtiger Bewohner|fallhaven_citizen1||0|||||||||||||||fallhaven_citizen1||||||||}; -{old_citizen|monsters_men:2|Alter Bewohner|fallhaven_citizen2||0|||||||||||||||fallhaven_citizen2||||||||}; -{tired_citizen|monsters_men:7|Erschöpfter Bewohner|fallhaven_citizen4||0|||||||||||||||fallhaven_citizen4||||||||}; -{citizen|monsters_man1:0|Bewohner|fallhaven_citizen3||0|||||||||||||||fallhaven_citizen3||||||||}; -{grumpy_citizen|monsters_men:2|Griesgram|fallhaven_citizen5||0|||||||||||||||fallhaven_citizen5||||||||}; -{blond_citizen|monsters_men:7|Blonder Bewohner|fallhaven_citizen6||0|||||||||||||||fallhaven_citizen6||||||||}; -{bucus|monsters_rogue1:0|Bucus|bucus||0|||||||||||||||bucus_welcome||||||||}; -{drunkard|monsters_men:0|Säufer|fallhaven_drunk||0|||||||||||||||fallhaven_drunk||||||||}; -{old_man|monsters_men:5|Alter Mann|fallhaven_oldman||0|||||||||||||||fallhaven_oldman||||||||}; -{nocmar|monsters_men:8|Nocmar|nocmar||0||||||||||||||nocmar|nocmar||||||||}; -{prisoner|monsters_rogue1:0|Gefangener|fallhaven_prisoner||0|||1|1|1|1|0|||0|0||||||||||||}; -{ganos|monsters_rogue1:0|Ganos|ganos||0||||||||||||||shop_ganos|ganos||||||||}; -{arcir|monsters_mage2:0|Arcir|arcir||0|||||||||||||||arcir_start||||||||}; -{athamyr|monsters_men:4|Athamyr|athamyr||0|||||||||||||||athamyr||||||||}; -{thoronir|monsters_men2:8|Thoronir|thoronir||0||||||||||||||shop_thoronir|thoronir_default||||||||}; -{chapelgoer|monsters_men:6|Trauernde Frau|chapelgoer||0|||||||||||||||chapelgoer||||||||}; -{potion_merchant|monsters_mage2:0|Händler für Tränke|fallhaven_potions||0||||||||||||||shop_fallhaven_potions|fallhaven_potions||||||||}; -{tailor|monsters_men2:0|Schneider|fallhaven_clothes||0||||||||||||||shop_fallhaven_clothes|fallhaven_clothes||||||||}; -{bela|monsters_men:7|Bela|bela||0||||||||||||||shop_bela|bela||||||||}; -{larcal|monsters_men2:2|Larcal|larcal||0|1||51|10|10|10|25|||1|2|50||larcal|larcal||||||||}; -{gaela|monsters_men2:9|Gaela|gaela||0|||||||||||||||gaela||||||||}; -{unnmir|monsters_mage2:0|Unnmir|unnmir||0|||||||||||||||unnmir||||||||}; -{rigmor|monsters_men:1|Rigmor|rigmor||0|||||||||||||||rigmor||||||||}; - -{jakrar|monsters_men2:2|Jakrar|fallhaven_lumberjack||0|||||||||||||||fallhaven_lumberjack||||||||}; -{alaun|monsters_mage2:0|Alaun|alaun||0|||||||||||||||alaun||||||||}; -{busy_farmer|monsters_man1:0|Beschäftigter Bauer|fallhaven_farmer1||0|||||||||||||||fallhaven_farmer1||||||||}; -{old_farmer|monsters_mage2:0|Alter Bauer|fallhaven_farmer2||0|||||||||||||||fallhaven_farmer2||||||||}; -{khorand|monsters_men:3|Khorand|khorand||0|||||||||||||||khorand||||||||}; - -{vacor|monsters_mage:0|Vacor|vacor||0|1||72|||5|110|||4|8|40|2|vacor|vacor||||||||}; -{unzel|monsters_men:8|Unzel|unzel||0|1||59|||10|80|30|3|5|9|40|2|unzel|unzel||||||||}; -{shady_bandit|monsters_men2:9|Dubioser Bandit|fallhaven_bandit||0|1||45|||5|70|30|3|3|9|50|2|fallhaven_bandit|fallhaven_bandit||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{wild_fox|monsters_dogs:3|Wilder Fuchs|fox2||4|||25|||5|100|||4|5|40||canine|||||||||}; -{stinging_wasp|monsters_insects:1|Stechende Wespen|forestwasp2||1|||15|||10|150|||1|2|60||wasp|||||||||}; -{wild_boar|monsters_dogs:6|Wilder Eber|forestboar2||4|||20|||5|110|||3|3|30||canineboss|||||||||}; -{forest_beetle|monsters_insects:4|Waldkäfer|forestbeetle||1|||14|||10|150|||2|4|60|2|insect|||||||||}; -{wolf|monsters_dogs:4|Wolf|forestwolf1||4|||30|10|3|5|110|||3|6|30||canine|||||||||}; -{forest_serpent|monsters_snakes:4|Waldschlange|forestserpent1||7|||20|10|5|3|150|30|2|2|3|60||snake2|||||||||}; -{vicious_forest_serpent|monsters_snakes:4|Tückische Waldschlange|forestserpent2||7|||27|10|5|3|150|30|2|3|4|50||snake2|||||||||}; -{anklebiter|monsters_dogs:6|Keiler|forestboar3||4|||31|||5|150|||3|9|60|3|canine2|||||||||}; -{flagstone_sentry|monsters_men:3|Flagstone Wachposten|flagstone_sentry||0|||||||||||||||flagstone_sentry||||||||}; -{escaped_prisoner|monsters_men:0|Entflohener Gefangener|prisoner1||0|1||15|||10|50|||3|7|20||prisoner|prisoner1||||||||}; -{starving_prisoner|monsters_misc:11|Verhungernder Gefangener|prisoner2||0|1||10|||3|60|||3|5|60||prisoner|prisoner2||||||||}; -{bone_warrior|monsters_skeleton1:0|Knochenkämpfer|skeleton2||3|||32|||5|120|||3|9|60|2|skeleton2|||||||||}; -{bone_champion|monsters_skeleton1:0|Knochenchampion|skeleton3||3|||49|||5|130|||4|9|60|2|skeleton3|||||||||}; -{undead_warden|monsters_liches:0|Untoter Aufseher|flagstone_guard0||6|1||57|||5|120|20|2|4|8|60|1|flagstone_guard0|flagstone_guard0||||||||}; -{cave_guardian|monsters_rltiles1:16|Höhlenwächter|flagstone_guard1||2|1||61|||5|150|10|3|4|10|90|2|flagstone_guard1|flagstone_guard1||||||||}; -{winged_demon|monsters_demon1:0|Beflügelter Dämon|flagstone_guard2|2x2|2|1||82|||5|90|10|2|4|12|70|5|flagstone_guard2|flagstone_guard2||||||||}; -{narael|monsters_man1:0|Narael|narael||0|||||||||||||||narael||||||||}; -{rotting_corpse|monsters_zombie1:0|Verfaulende Leiche|undead1||6|||71|||10|30|50|2|2|5|30|2|undead1|zombie1||||||||}; -{walking_corpse|monsters_zombie1:0|Laufende Leiche|undead1||6|||90|||10|30|40|2|2|4|30|2|undead1|||||||||}; -{gargoyle|monsters_misc:2|Gargoyle|undead1||3|||47|||10|110|10|2|3|7|70|2|undead1|||||||||}; -{fledgling_gargoyle|monsters_misc:1|Halbwüchsiger Gargoyle|undead1||3|||35|||10|110|||3|6|60|2|undead1|||||||||}; -{large_cave_rat|monsters_rats:3|Große Höhlenratte|undeadrat1||4|||21|10|10|3|60|10|2|3|4|40||catacombrat|||||||||}; -{pack_leader|monsters_dogs:5|Rudelführer|pack_boss||4|1||65|||5|90|20|2|2|10|40|4|pack_boss|||||||||}; -{pack_hunter|monsters_dogs:4|Rudeljäger|pack3||4|||45|||5|90|10|2|2|7|40|3|pack3|||||||||}; -{rabid_wolf|monsters_dogs:4|Tollwütiger Wolf|pack2||4|||42|||5|90|||2|6|50|3|pack2|||||||||}; -{fledgling_wolf|monsters_dogs:3|Halbwüchsiger Wolf|pack2||4|||42|||3|70|||2|5|50|3|pack2|||||||||}; -{young_wolf|monsters_dogs:4|Junger Wolf|pack1||4|||35|||3|60|||2|5|30|2|pack1|||||||||}; -{hunting_dog|monsters_dogs:2|Jagdhund|pack1||4|||25|||5|60|||2|5|50||pack1|||||||||}; -{highwayman|monsters_men:8|Straßenräuber|bandit1||0|||54|||5|90|50|2|2|4|30|2|bandit1|bandit1||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{smug_looking_thief|monsters_men2:9|Überheblich wirkender Dieb|tg_thief||0|||||||||||||||thievesguild_thief_1||||||||}; -{thieves_guild_cook|monsters_men:0|Koch der Diebesgilde|tg_cook||0||||||||||||||shop_thieves_guild_cook|thievesguild_cook_1||||||||}; -{pickpocket|monsters_men:7|Taschendieb|pickpocket||0|||||||||||||||thievesguild_pickpocket_1||||||||}; -{troublemaker|monsters_men:8|Hitzkopf|troublemaker||0||||||||||||||shop_troublemaker|thievesguild_troublemaker_1||||||||}; -{farrik|monsters_rogue1:0|Farrik|farrik||0|||||||||||||||farrik_select_1||||||||}; -{umar|monsters_man1:0|Umar|umar||0|||||||||||||||umar_select_1||||||||}; -{kaori|monsters_men:7|Kaori|kaori||0|||||||||||||||kaori_start||||||||}; -{old_vilegard_villager|monsters_men:0|Greis aus Vilegard|vilegard_villager_1||0|||||||||||||||vilegard_villager_1||||||||}; -{grumpy_vilegard_villager|monsters_men:5|Griesgram aus Vilegard|vilegard_villager_2||0|||||||||||||||vilegard_villager_2||||||||}; -{vilegard_citizen|monsters_men:1|Bürger von Vilegard|vilegard_villager_3||0|||||||||||||||vilegard_villager_3||||||||}; -{vilegard_resident|monsters_men2:0|Einwohner von Vilegard|vilegard_villager_4||0|||||||||||||||vilegard_villager_4||||||||}; -{vilegard_woman|monsters_men:6|Frau aus Vilegard|vilegard_villager_5||0|||||||||||||||vilegard_villager_5||||||||}; -{erttu|monsters_mage2:0|Erttu|erttu||0|||||||||||||||erttu_1||||||||}; -{dunla|monsters_rogue1:0|Dunla|dunla||0||||||||||||||shop_dunla|dunla_default||||||||}; -{tharwyn|monsters_men:7|Tharwyn|tharwyn||0||||||||||||||shop_tharwyn|tharwyn_select||||||||}; -{tavern_guest|monsters_men:0|Tavernengast|vg_tavern_drunk||0|||||||||||||||vilegard_tavern_drunk_1||||||||}; -{jolnor|monsters_men2:8|Jolnor|jolnor||0||||||||||||||shop_jolnor|jolnor_select_1||||||||}; -{alynndir|monsters_mage2:0|Alynndir|alynndir||0||||||||||||||shop_alynndir|alynndir_1||||||||}; -{vilegard_armorer|monsters_mage2:0|Vilegard\'s Rüstungsbauer|vg_armorer||0||||||||||||||shop_vg_armorer|vilegard_armorer_select||||||||}; -{vilegard_smith|monsters_mage2:0|Vilegard\'s Schmied|vg_smith||0||||||||||||||shop_vg_smith|vilegard_smith_select||||||||}; -{ogam|monsters_men:0|Ogam|ogam||0|||||||||||||||ogam_1||||||||}; -{foaming_flask_cook|monsters_men:0|Koch der Taverne \'Schäumende Flasche\'|ff_cook||0|||||||||||||||ff_cook_1||||||||}; -{torilo|monsters_men2:9|Torilo|torilo||0||||||||||||||shop_torilo|torilo_1||||||||}; -{ambelie|monsters_men:6|Ambelie|ambelie||0|||||||||||||||ambelie_1||||||||}; -{feygard_patrol|monsters_rltiles3:14|Feygard Patrouille|ff_guard||0|||||||||||||||ff_guard_1||||||||}; -{feygard_patrol_captain|monsters_men:3|Feygard Patrouillenhauptmann|ff_captain||0|||||||||||||||ff_captain_1||||||||}; -{feygard_patrol_watch|monsters_rltiles3:14|Feygard Türwache|ff_outsideguard||0|1||80|||5|70|||2|7|80|3|ff_outsideguard|ff_outsideguard_select||||||||}; -{wrye|monsters_men:6|Wrye|wrye||0|||||||||||||||wrye_select_1||||||||}; -{oluag|monsters_men:8|Oluag|oluag||0|||||||||||||||oluag_1||||||||}; - -{cave_dwelling_boar|monsters_dogs:6|Höhleneber|caveboar1||4|||35|||5|70|||3|8|60|3|canine2|||||||||}; -{hardshell_beetle|monsters_insects:4|Hartschalenkäfer|beetle2||1|||25|||5|50|||0|5|40|9|beetle2|||||||||}; -{young_shadow_gargoyle|monsters_misc:1|Junger Schattengargoyle|shadowgarg1||3|||35|||5|65|8|3|3|9|75|3|shadowgarg1|||||||||}; -{fledgling_shadow_gargoyle|monsters_misc:1|Halbwüchsiger Schattengargoyle|shadowgarg1||3|||36|||5|65|8|3|3|9|75|3|shadowgarg1|||||||||}; -{shadow_gargoyle|monsters_misc:2|Schattengargoyle|shadowgarg2||3|||37|||5|70|8|3|4|10|85|3|shadowgarg1|||||||||}; -{tough_shadow_gargoyle|monsters_misc:2|Kräftiger Schattengargoyle|shadowgarg2||3|||37|||5|70|8|3|4|10|85|4|shadowgarg2|||||||||}; -{shadow_gargoyle_trainer|monsters_liches:0|Schattengargoyle Ausbilder|shadowgarg3||6|||35|||5|90|12|3|3|6|90|5|shadowgarg3|||||||||}; -{shadow_gargoyle_master|monsters_liches:1|Schattengargoyle Meister|shadowgarg4||6|||35|||5|125|12|3|3|6|90|5|shadowgarg3|||||||||}; -{maelveon|monsters_liches:2|Maelveon|maelveon||6|1||55|||3|80|15|3|0|12|90|5|maelveon|maelveon||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{puny_caverat|monsters_rats:0|Höhlenratte|puny_caverat||4|||5|10|5|5|50|||1|1|30||rat|||||||||}; -{rabid_hound|monsters_rltiles2:108|Tollwütiger Jagdhund|forestwolf2||4|||40|10|5|5|110|||3|9|30||canine|||||||||}; -{vicious_hound|monsters_rltiles2:110|Tückischer Jagdhund|forestboar4||4|||31|10|5|5|150|||3|9|60|3|canineboss|||||||||}; -{mountain_wolf|monsters_rltiles2:109|Bergwolf|primwolf1||4|||49|10|5|5|150|||3|9|60|3|canine|||||||||}; - -{hatchling_white_wyrm|monsters_rltiles1:118|Geschlüpfter weißer Lindwurm|wyrm_1||7|||41|10|5|5|75|||4|10|130|5|wyrm_1||1||||||{{fatigue_minor|1|5|10|}}|}; -{young_white_wyrm|monsters_rltiles1:118|Junger weißer Lindwurm|wyrm_2||7|||47|10|5|5|75|||4|10|130|5|wyrm_2||1||||||{{fatigue_minor|1|5|20|}}|}; -{white_wyrm|monsters_rltiles1:119|Weißer Lindwurm|wyrm_3||7|||55|10|5|3|75|||4|10|130|5|wyrm_3||1||||||{{fatigue_minor|1|5|50|}}|}; -{young_aulaeth|monsters_rltiles2:176|Junger Aulaeth|wyrm_1||5|||105|10|5|5|40|||0|4|30|5|aulaeth||1|1|1|||||}; -{aulaeth|monsters_rltiles2:58|Aulaeth|wyrm_2||5|||120|10|5|5|40|||0|5|40|6|aulaeth||1|1|1|||||}; -{strong_aulaeth|monsters_rltiles2:58|Starker Aulaeth|wyrm_3||5|||135|10|5|5|40|||0|5|35|6|aulaeth||1|1|1|||||}; -{wyrm_trainer|monsters_rltiles2:0|Lindwurm Ausbilder|wyrm_4||6|||69|10|5|3|90|||2|9|90|4|wyrm_4||1|1|1||||{{fatigue_minor|1|10|70|}}|}; -{wyrm_apprentice|monsters_rltiles2:0|Lindwurm Lehrling|wyrm_4||6|||69|10|5|5|140|||2|9|90|4|wyrm_4||1|1|1||||{{fatigue_minor|1|10|70|}}|}; -{young_gornaud|monsters_rltiles2:29|Junger Gornaud|gornaud_1||5|||70|10|5|5|70|||0|15|50||gornaud_1||1||||||{{dazed|1|5|20|}}|}; -{gornaud|monsters_rltiles2:29|Gornaud|gornaud_2||5|||95|10|5|5|70|||0|15|50|4|gornaud_2||1||||||{{dazed|1|5|50|}}|}; -{strong_gornaud|monsters_rltiles2:30|Starker Gornaud|gornaud_3||5|||95|10|5|5|70|||0|15|50|5|gornaud_3||1||||||{{dazed|1|5|70|}}|}; -{slithering_venomfang|monsters_snakes:2|Schlüpfrige Giftschlange|gornaud_1||7|||35|10|5|3|120|||1|2|90|2|cave_serpent||1||||||{{poison_weak|1|2|20|}}|}; -{scaled_venomfang|monsters_snakes:3|Geschuppte Giftschlange|gornaud_2||7|||35|10|5|3|150|||2|4|90|2|cave_serpent||1||||||{{poison_weak|1|2|50|}}|}; -{tough_venomfang|monsters_snakes:3|Kräftige Giftschlange|gornaud_3||7|||41|10|5|3|150|||2|5|90|2|cave_serpent||1||||||{{poison_weak|1|2|50|}}|}; - -{restless_dead|monsters_rltiles1:47|Ruheloser Toter|restless_dead_1||8|||25|10|5|5|50|80|2|0|3|140|3|restless_dead_1|||||||||}; -{grave_spawn|monsters_rltiles1:49|Gruftbewohner|restless_dead_1||2|||45|10|5|5|110|40|2|2|5|35|3|restless_dead_1|||||||||}; -{restless_apparition|monsters_rltiles1:47|Ruhelose Erscheinung|restless_dead_2||8|||29|10|5|3|90|60|3|2|6|10|1|restless_dead_2|||||||||}; -{skeletal_reaper|monsters_rltiles1:27|Sensenmann|restless_dead_2||3|||15|10|5|5|150|20|2|0|9|110||restless_dead_2|||||||||}; -{kazaul_spawn|monsters_rltiles1:41|Kazaul Nestling|kazaul_1||2|||45|10|5|3|70|50|2|3|5|90|1|kazaul_1|||||||||}; -{kazaul_imp|monsters_rltiles1:45|Kazaul Kobold|kazaul_2||2|||45|10|5|3|70|40|2|3|7|105|1|kazaul_2|||||||||}; -{kazaul_guardian|monsters_rltiles1:42|Kazaul Wächter|kazaul_guardian||2|1||95|10|5|5|70|40|2|3|8|90|3|kazaul_guardian|kazaul_guardian||||||||}; -{graverobber|monsters_karvis2:3|Grabräuber|bjorgur_bandit||0|1||62|10|5|5|120|||2|6|72|1|bjorgur_bandit|bjorgur_bandit||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{agent1|monsters_men:4|Abgesandter|bwm_agent_1||0|1||||||||||||||bwm_agent_1_start||||||||}; -{agent2|monsters_men:4|Abgesandter|bwm_agent_2||0|1||||||||||||||bwm_agent_2_start||||||||}; -{agent3|monsters_men:4|Abgesandter|bwm_agent_3||0|1||||||||||||||bwm_agent_3_start||||||||}; -{agent4|monsters_men:4|Abgesandter|bwm_agent_4||0|1||||||||||||||bwm_agent_4_start||||||||}; -{agent5|monsters_men:4|Abgesandter|bwm_agent_5||0|1||||||||||||||bwm_agent_5_start||||||||}; -{agent6|monsters_men:4|Abgesandter|bwm_agent_6||0|1||||||||||||||bwm_agent_6_start||||||||}; -{arghest|monsters_rltiles2:81|Arghest|arghest||0|||||||||||||||arghest_start||||||||}; -{tonis|monsters_rltiles1:67|Tonis|tonis||0|||||||||||||||tonis_start||||||||}; - -{moyra|monsters_rltiles1:74|Moyra|moyra||0|||||||||||||||moyra_1||||||||}; -{prim_citizen|monsters_karvis2:6|Bürger von Prim|prim_commoner1||0|||||||||||||||prim_commoner1||||||||}; -{prim_commoner|monsters_rltiles1:68|Bürger von Prim|prim_commoner2||0|||||||||||||||prim_commoner2||||||||}; -{prim_resident|monsters_karvis2:2|Einwohner von Prim|prim_commoner3||0|||||||||||||||prim_commoner3||||||||}; -{prim_evoker|monsters_rltiles1:84|Bürger von Prim|prim_commoner4||0|||||||||||||||prim_commoner4||||||||}; -{laecca|monsters_rltiles1:72|Laecca|laecca||0|||||||||||||||laecca_1||||||||}; -{prim_cook|monsters_karvis2:0|Prim\'s Koch|prim_cook||0|||||||||||||||prim_cook_start||||||||}; -{prim_visitor|monsters_rltiles1:63|Besucher in Prim|prim_innguest||0|||||||||||||||prim_innguest||||||||}; -{birgil|monsters_rltiles2:81|Birgil|birgil||0||||||||||||||shop_birgil|birgil_1||||||||}; -{prim_tavern_guest|monsters_rltiles1:106|Prim Tavernengast|prim_tavern_guest1||0|||||||||||||||prim_tavern_guest1||||||||}; -{prim_tavern_regular|monsters_rltiles1:106|Prim Tavernenstammgast|prim_tavern_guest2||0|||||||||||||||prim_tavern_guest2||||||||}; -{prim_bar_guest|monsters_rltiles1:106|Prim Tavernengast|prim_tavern_guest3||0|||||||||||||||prim_tavern_guest3||||||||}; -{prim_bar_regular|monsters_rltiles1:106|Prim Tavernenstammgast|prim_tavern_guest4||0|||||||||||||||prim_tavern_guest4||||||||}; -{prim_armorer|monsters_rltiles1:88|Prim\'s Rüstungsbauer|prim_armorer||0||||||||||||||shop_prim_armorer|prim_armorer||||||||}; -{jueth|monsters_men2:0|Jueth|prim_tailor||0|||||||||||||||prim_tailor||||||||}; -{bjorgur|monsters_karvis2:7|Bjorgur|bjorgur||0|||||||||||||||bjorgur_start||||||||}; -{prim_prisoner|monsters_rltiles2:81|Gefangener in Prim|prim_prisoner||0|||||||||||||||prim_guard1||||||||}; -{fulus|monsters_karvis2:3|Fulus|fulus||0|||||||||||||||fulus_start||||||||}; -{guthbered|monsters_rltiles1:92|Guthbered|guthbered||0|1||80|10|5|5|70|||4|9|80|4|guthbered|guthbered_start||||||||}; -{guthbereds_bodyguard|monsters_rltiles1:76|Guthbered\'s Leibwächter|guthbered_guard||0|||||||||||||||guthbered_guard||||||||}; -{prim_weapon_guard|monsters_rltiles1:65|Prim Wachposten für die Waffen|prim_guard1||0|||||||||||||||prim_guard1||||||||}; -{prim_sentry|monsters_rltiles3:14|Prim Wachposten|prim_guard2||0|||||||||||||||prim_guard2||||||||}; -{prim_guard|monsters_rltiles1:65|Prim Wachposten|prim_guard4||0|||||||||||||||prim_guard4||||||||}; -{tired_prim_guard|monsters_rltiles1:76|Müder Prim Wachposten|prim_guard3||0|||||||||||||||prim_guard3||||||||}; -{prim_treasury_guard|monsters_rltiles1:69|Prim Wachposten für den Schatz|prim_treasury_guard||0|||||||||||||||prim_treasury_guard||||||||}; -{samar|monsters_rltiles2:93|Samar|prim_priest||0||||||||||||||shop_samar|prim_priest||||||||}; -{prim_priestly_acolyte|monsters_rltiles1:83|Prim Messdiener|prim_acolyte||0|||||||||||||||prim_acolyte||||||||}; -{studying_prim_pupil|monsters_rltiles1:74|Studierender Prim Schüler|prim_pupil1||0|||||||||||||||prim_pupil1||||||||}; -{reading_prim_pupil|monsters_rltiles1:74|Lesender Prim Schüler|prim_pupil2||0|||||||||||||||prim_pupil2||||||||}; -{prim_pupil|monsters_rltiles1:74|Prim Schüler|prim_pupil3||0|||||||||||||||prim_pupil3||||||||}; - -{blackwater_entrance_guard|monsters_rltiles3:14|Blackwater Eingangswachposten|blackwater_entranceguard||0|||30|10|||||||||||blackwater_entranceguard||||||||}; -{blackwater_dinner_guest|monsters_karvis2:2|Blackwater Tischgast|blackwater_guest1||0|||20|10|||||||||||blackwater_guest1||||||||}; -{blackwater_inhabitant|monsters_man1:0|Bürger von Blackwater|blackwater_guest2||0|||10|10|||||||||||blackwater_guest2||||||||}; -{blackwater_cook|monsters_karvis2:0|Blackwater\'s Koch|blackwater_cook||0|||||||||||||||blackwater_cook||||||||}; -{keneg|monsters_rltiles1:86|Keneg|keneg||0|||||||||||||||keneg||||||||}; -{mazeg|monsters_rltiles1:85|Mazeg|mazeg||0||||||||||||||shop_mazeg|mazeg||||||||}; -{waeges|monsters_rltiles1:88|Waeges|waeges||0||||||||||||||shop_waeges|waeges||||||||}; -{blackwater_fighter|monsters_rltiles1:66|Blackwater Kämpfer|blackwater_fighter||0|||||||||||||||blackwater_fighter||||||||}; -{ungorm|monsters_rltiles1:83|Ungorm|ungorm||0|||||||||||||||ungorm||||||||}; -{blackwater_pupil|monsters_rltiles1:74|Blackwater Schüler|blackwater_pupil||0|||||||||||||||blackwater_pupil||||||||}; -{laede|monsters_rltiles1:81|Laede|blackwater_sleephall||0|||||||||||||||laede||||||||}; -{herec|monsters_men2:9|Herec|herec||0||||||||||||||shop_herec|herec_start||||||||}; -{iducus|monsters_rltiles1:87|Iducus|iducus||0||||||||||||||shop_iducus|iducus||||||||}; -{blackwater_priest|monsters_rltiles1:80|Blackwater Priester|blackwater_priest||0|||||||||||||||blackwater_priest||||||||}; -{studying_blackwater_priest|monsters_rltiles1:84|Studierender Blackwater Priester|blackwater_pupil||0|||||||||||||||blackwater_pupil||||||||}; -{blackwater_guard|monsters_rltiles1:76|Blackwater Wachposten|blackwater_guard1||0|||||||||||||||blackwater_guard1||||||||}; -{blackwater_border_patrol|monsters_rltiles1:76|Blackwater Grenzpatrouille|blackwater_guard2||0|||||||||||||||blackwater_guard2||||||||}; -{harlenns_bodyguard|monsters_rltiles1:76|Harlenn\'s Leibwächter|blackwater_bossguard||0|||||||||||||||blackwater_bossguard||||||||}; -{blackwater_chamber_guard|monsters_men:3|Blackwater Hinterzimmerwachposten|blackwater_throneguard||0|1||||||||||||||blackwater_throneguard||||||||}; -{harlenn|monsters_men2:6|Harlenn|harlenn||0|1||80|10|5|5|70|||4|9|80|4|harlenn|harlenn_start||||||||}; -{throdna|monsters_men2:4|Throdna|throdna||0|||||||||||||||throdna_start||||||||}; -{throdnas_guard|monsters_rltiles1:85|Throdna\'s Leibwächter|throdna_guard||0|||||||||||||||throdna_guard||||||||}; -{blackwater_mage|monsters_rltiles1:80|Blackwater Magier|blackwater_acolyte||0|||||||||||||||blackwater_acolyte||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{young_larval_burrower|monsters_rltiles2:164|Junger Raupengräber|larva_1||1|||30|10|5|5|120|35|3|1|6|25||larva_1|||||||||}; -{larval_burrower|monsters_rltiles2:164|Raupengräber|larva_2||1|||35|10|5|5|120|35|3|1|6|25||larva_2|||||||||}; -{larval_boss|monsters_rltiles2:164|Starker Raupengräber|larva_boss||1|1||35|10|5|5|120|35|3|1|6|25||larva_boss|||||||||}; - -{rivertroll|monsters_rltiles1:104|Flusstroll|rivertroll||5|1||210|10|5|5|120|30|4|2|9|65|7|rivertroll|||||||||}; -{grass_ant|monsters_insects:0|Wiesenameise|fieldcritter_0||1|||29|10|5|3|120|||0|4|80||fieldcritter_0|||||||||}; -{grass_ant2|monsters_insects:2|Kräftige Wiesenameise|fieldcritter_0||1|||29|10|5|3|125|||1|5|80||fieldcritter_0|||||||||}; -{grass_beetle|monsters_insects:4|Wiesenkäfer|fieldcritter_1||1|||34|10|5|5|120|||0|5|80|3|fieldcritter_1|||||||||}; -{grass_beetle2|monsters_insects:4|Kräftiger Wiesenkäfer|fieldcritter_1||1|||35|10|5|5|125|||1|6|80|4|fieldcritter_1|||||||||}; -{grass_snake|monsters_rltiles2:25|Wiesenschlange|fieldcritter_2||7|||36|10|5|3|120|||0|6|80||fieldcritter_2|||||||||}; -{grass_snake2|monsters_rltiles2:25|Kräftige Wiesenschlange|fieldcritter_2||7|||38|10|5|3|125|||1|7|80||fieldcritter_2|||||||||}; -{grass_lizard|monsters_rltiles2:114|Wieseneidechse|fieldcritter_3||7|||45|10|5|3|120|||0|8|80|3|fieldcritter_3|||||||||}; -{grass_lizard2|monsters_rltiles2:117|Schwarze Wieseneidechse|fieldcritter_3||7|||45|10|5|3|125|||2|9|80|4|fieldcritter_3|||||||||}; - -{keknazar|monsters_misc:9|Keknazar|keknazar||7|1||90|10|5|5|50|20|3|3|9|70|8|keknazar|keknazar||||||||}; - -{crossroads_rat|monsters_rats:0|Ratte|crossroads_rat||4|||5|10|5|5|50|||1|1|30||rat|||||||||}; -{fieldwasp_0|monsters_insects:1|Rasende Waldwespe|fieldwasp_0||1|||29|10|5|3|70|60|3|2|6|95||fieldwasp|||||||||}; -{fieldwasp_1|monsters_insects:1|Rasende Waldwespe|fieldwasp_1||1|||32|10|5|3|70|70|3|2|6|125||fieldwasp|||||||||}; -{fieldwasp_2|monsters_insects:1|Rasende Waldwespe|fieldwasp_2||1|||35|10|5|3|70|75|3|2|6|130||fieldwasp|||||||||}; - -{izthiel_1|monsters_rltiles2:51|Junger Izthiel|izthiel_1||7|||40|10|5|3|70|||2|7|57|5|izthiel||0|||||||}; -{izthiel_2|monsters_rltiles2:49|Izthiel|izthiel_2||7|||45|10|5|3|90|||2|7|58|6|izthiel||0|||||||}; -{izthiel_3|monsters_rltiles2:48|Starker Izthiel|izthiel_3||7|||52|10|5|3|80|||2|7|60|8|izthiel||1||||||{{bleeding_wound|2|4|40|}}|}; -{izthiel_4|monsters_rltiles2:52|Izthiel Wächter|izthiel_4||7|||54|10|5|3|120|||3|7|60|11|izthiel_4||1||||||{{bleeding_wound|3|5|50|}}|}; -{frog_1|monsters_rltiles1:131|Flussfrosch|frog_1||7|||15|10|5|2|150|||0|5|45||frog||0|||||||}; -{frog_2|monsters_rltiles1:131|Kräftiger Flussfrosch|frog_2||7|||17|10|5|2|160|||0|5|49||frog||0|||||||}; -{frog_3|monsters_rltiles1:130|Giftiger Flussfrosch|frog_3||7|||21|10|5|2|165|||0|5|55||frog_3||1||||||{{poison_weak|2|5|30|}}|}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{lostsheep1|monsters_karvis2:8|Schaf|tinlyn_lostsheep1||4|1||5|10|5|5|10|||0|1|5||tinlyn_sheep|tinlyn_lostsheep1||||||||}; -{lostsheep2|monsters_karvis2:8|Schaf|tinlyn_lostsheep2||4|1||5|10|5|5|10|||0|1|5||tinlyn_sheep|tinlyn_lostsheep2||||||||}; -{lostsheep3|monsters_karvis2:8|Schaf|tinlyn_lostsheep3||4|1||5|10|5|5|10|||0|1|5||tinlyn_sheep|tinlyn_lostsheep3||||||||}; -{lostsheep4|monsters_karvis2:8|Schaf|tinlyn_lostsheep4||4|1||5|10|5|5|10|||0|1|5||tinlyn_sheep|tinlyn_lostsheep4||||||||}; -{sheep1|monsters_karvis2:8|Schaf|tinlyn_sheep||4|1||5|10|5|5|10|||0|1|5||tinlyn_sheep|tinlyn_sheep||||||||}; - -{ailshara|monsters_men:8|Ailshara|ailshara||0||||||||||||||shop_ailshara|ailshara||||||||}; -{arngyr|monsters_rltiles1:65|Arngyr|arngyr||0|||||||||||||||arngyr||||||||}; -{benbyr|monsters_rltiles1:74|Benbyr|benbyr||0|||||||||||||||benbyr||||||||}; -{celdar|monsters_rltiles1:94|Celdar|celdar||0|||||||||||||||celdar||||||||}; -{conren|monsters_karvis2:5|Conren|conren||0|||||||||||||||conren||||||||}; -{crossroads_backguard|monsters_rltiles1:76|Wachposten|crossroads_backguard||0|1||||||||||||||crossroads_backguard||||||||}; -{crossroads_guard|monsters_rltiles1:76|Wachposten|crossroads_guard||0|||||||||||||||crossroads_guard||||||||}; -{crossroads_sleepguard|monsters_rltiles1:76|Wachposten|crossroads_sleepguard||0|||||||||||||||crossroads_sleepguard||||||||}; -{crossroads_guest|monsters_rltiles1:83|Besucher|crossroads_guest||0|||||||||||||||crossroads_guest||||||||}; -{erinith|monsters_rltiles1:82|Erinith|erinith||0|||||||||||||||erinith||||||||}; -{fanamor|monsters_men:7|Fanamor|fanamor||0|||||||||||||||fanamor||||||||}; -{feygard_bridgeguard|monsters_men2:4|Feygard Brückenwachposten|feygard_bridgeguard||0|||||||||||||||feygard_bridgeguard||||||||}; -{fieldwasp_unique|monsters_insects:1|Rasende Waldwespe|fieldwasp_unique||1|1||70|10|5|3|70|200|3|2|6|150||fieldwasp_unique|||||||||}; -{gallain|monsters_man1:0|Gallain|gallain||0||||||||||||||shop_gallain|gallain||||||||}; -{gandoren|monsters_rltiles1:69|Gandoren|gandoren||0|||||||||||||||gandoren||||||||}; -{grimion|monsters_men2:2|Grimion|grimion||0||||||||||||||shop_grimion|grimion||||||||}; -{hadracor|monsters_men2:2|Hadracor|hadracor||0||||||||||||||shop_hadracor|hadracor||||||||}; -{kuldan|monsters_rltiles1:85|Kuldan|kuldan||0|||||||||||||||kuldan||||||||}; -{kuldan_guard|monsters_rltiles3:14|Kuldan\'s Leibwächter|kuldan_guard||0|||||||||||||||kuldan_guard||||||||}; -{landa|monsters_men:0|Landa|landa||0|||||||||||||||landa||||||||}; -{loneford_chapelguard|monsters_rltiles1:78|Kapellen Wachposten|loneford_chapelguard||0|||||||||||||||loneford_chapelguard||||||||}; -{loneford_farmer0|monsters_karvis2:1|Bauer|loneford_farmer0||0|||||||||||||||loneford_farmer0||||||||}; -{loneford_guard0|monsters_rltiles3:14|Wachposten|loneford_guard0||0|||||||||||||||loneford_guard0||||||||}; -{loneford_tavern_patron|monsters_karvis2:2|Loneford Gastwirt|loneford_tavern_patron||0|||||||||||||||loneford_tavern_patron||||||||}; -{loneford_villager0|monsters_karvis2:0|Dorfbewohner|loneford_villager0||0|||||||||||||||loneford_villager0||||||||}; -{loneford_villager1|monsters_karvis2:1|Dorfbewohner|loneford_villager1||0|||||||||||||||loneford_villager1||||||||}; -{loneford_villager2|monsters_karvis2:3|Dorfbewohner|loneford_villager2||0|||||||||||||||loneford_villager2||||||||}; -{loneford_villager3|monsters_karvis2:5|Dorfbewohner|loneford_villager3||0|||||||||||||||loneford_villager3||||||||}; -{loneford_villager4|monsters_men:2|Dorfbewohner|loneford_villager4||0|||||||||||||||loneford_villager4||||||||}; -{loneford_wellguard|monsters_rltiles1:72|Wachposten|loneford_wellguard||0|||||||||||||||loneford_wellguard||||||||}; -{mienn|monsters_rltiles1:87|Mienn|mienn||0|||||||||||||||mienn||||||||}; -{minarra|monsters_rltiles1:86|Minarra|minarra||0||||||||||||||shop_minarra|minarra||||||||}; -{puny_warehouserat|monsters_rats:1|Warenhaus Ratte|puny_warehouserat||4|||5|10|5|5|50|||1|1|30||rat|||||||||}; -{rolwynn|monsters_rltiles1:77|Rolwynn|rolwynn||0|||||||||||||||rolwynn||||||||}; -{sienn|monsters_rltiles1:66|Sienn|sienn||0|||||||||||||||sienn||||||||}; -{sienn_pet|monsters_misc:0|Sienn\'s Haustier|sienn_pet||7|||||||||||||||sienn_pet||||||||}; -{siola|monsters_rltiles1:90|Siola|siola||0||||||||||||||shop_siola|siola||||||||}; -{taevinn|monsters_karvis2:5|Taevinn|taevinn||0|||||||||||||||taevinn||||||||}; -{talion|monsters_men2:8|Talion|talion||0||||||||||||||shop_talion|talion||||||||}; -{telund|monsters_rltiles1:74|Telund|telund||0|||||||||||||||telund||||||||}; -{tinlyn|monsters_karvis2:7|Tinlyn|tinlyn||0|||||||||||||||tinlyn||||||||}; -{wallach|monsters_rltiles1:75|Wallach|wallach||0|||||||||||||||wallach||||||||}; -{woodcutter_0|monsters_men:0|Holzfäller|woodcutter_0||0|||||||||||||||woodcutter_0||||||||}; -{woodcutter_2|monsters_men:0|Holzfäller|woodcutter_2||0|||||||||||||||woodcutter_2||||||||}; -{woodcutter_3|monsters_men2:2|Holzfäller|woodcutter_3||0|||||||||||||||woodcutter_3||||||||}; -{woodcutter_4|monsters_rltiles1:93|Holzfäller|woodcutter_4||0|||||||||||||||woodcutter_4||||||||}; -{woodcutter_5|monsters_men2:2|Holzfäller|woodcutter_5||0|||||||||||||||woodcutter_5||||||||}; -{rogorn|monsters_rltiles1:63|Rogorn|rogorn||0|1||145|10|5|3|90|||5|9|120|5|rogorn|rogorn||||||||}; -{rogorn_henchman|monsters_rogue1:0|Rogorn\'s Anhänger|rogorn_henchman||0|1||130|10|5|3|80|||5|8|120|4|rogorn_henchman|rogorn_henchman||||||||}; -{buceth|monsters_men2:7|Buceth|buceth||0|1||75|10|5|3|80|200|2|3|9|120|4|buceth|buceth||||||||}; -{gauward|monsters_mage2:0|Gauward|gauward||0|||||||||||||||gauward||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{iqhan_1a|monsters_rltiles2:96|Iqhan Sklavenarbeiter|iqhan_1||0|||55|10|5|3|110|||2|9|70||iqhan_lesser|||||||||}; -{iqhan_1b|monsters_rltiles2:96|Iqhan Sklavendiener|iqhan_1||0|||57|10|5|3|120|15|2|2|9|70||iqhan_lesser|||||||||}; -{iqhan_2a|monsters_rltiles2:97|Iqhan Sklavenwachposten|iqhan_2||0|||59|10|5|3|130|15|2|2|9|70||iqhan_lesser|||||||||}; -{iqhan_2b|monsters_rltiles2:97|Iqhan Sklave|iqhan_2||0|||62|10|5|3|130|15|2|2|10|70||iqhan_lesser|||||||||}; -{iqhan_3a|monsters_rltiles2:128|Iqhan Sklavenkämpfer|iqhan_3||0|||65|10|5|3|140|15|2|2|11|70||iqhan_lesser|||||||||}; -{iqhan_3b|monsters_rltiles2:129|Iqhan Meister|iqhan_3||0|||67|10|5|3|140|20|2|2|12|60||iqhan_lesser|||||||||}; -{iqhan_4a|monsters_rltiles2:129|Iqhan Meister|iqhan_4||0|||69|10|5|3|140|20|2|2|13|60||iqhan_lesser|||||||||}; -{iqhan_4b|monsters_rltiles2:133|Iqhan Meister|iqhan_4||0|||71|10|5|3|140|20|2|2|15|60||iqhan|||||||||}; -{iqhan_ch_1a|monsters_rltiles2:135|Iqhan Chaos Beschwörer|iqhan_ch_1||0|||73|10|5|3|140|20|2|2|15|60||iqhan||1||||||{{chaotic_grip|2|5|20|}}|}; -{iqhan_ch_1b|monsters_rltiles2:135|Iqhan Chaos Beschwörer|iqhan_ch_1||0|||75|10|5|3|150|20|2|2|14|60||iqhan||1||||||{{chaotic_grip|2|5|20|}}|}; -{iqhan_ch_2a|monsters_rltiles2:134|Iqhan Chaos Diener|iqhan_ch_2||0|||78|10|5|3|150|20|2|2|14|60||iqhan||1||||||{{chaotic_grip|4|5|50|}}|}; -{iqhan_ch_2b|monsters_rltiles2:134|Iqhan Chaos Diener|iqhan_ch_2||0|||79|10|5|3|150|25|2|2|13|75||iqhan||1||||||{{chaotic_grip|4|5|50|}}|}; -{iqhan_ch_3a|monsters_rltiles2:136|Iqhan Chaos Meister|iqhan_ch_3||0|||83|10|5|3|170|25|2|2|13|75||iqhan_master||1||||||{{chaotic_grip|4|5|50|}}|}; -{iqhan_ch_3b|monsters_rltiles2:137|Iqhan Chaos Meister|iqhan_ch_3||0|||85|10|5|3|170|25|2|2|13|75||iqhan_master||1||||||{{chaotic_grip|4|5|50|}}|}; -{iqhan_chb_1a|monsters_rltiles1:19|Iqhan Chaos Bestie|iqhan_chb_1||3|||122|10|10|10|150|10|3|0|15|45|9|iqhan_beast||1||||||{{chaotic_grip|5|5|50|}}|}; -{iqhan_chb_1b|monsters_rltiles1:19|Iqhan Chaos Bestie|iqhan_chb_1||3|||140|10|10|10|150|10|3|0|15|45|9|iqhan_beast||1||||||{{chaotic_grip|5|5|50|}}|}; -{iqhan_greeter|monsters_men:8|Rancent|iqhan_greeter||0|1||||||||||||||iqhan_greeter||||||||}; -{iqhan_boss|monsters_rltiles1:5|Iqhan Chaos Versklaver|iqhan_boss||6|1||120|10|5|3|170|30|2|2|13|75|2|iqhan_boss|iqhan_boss|1||||||{{chaotic_grip|7|5|50|}{chaotic_curse|3|5|50|}}|}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{cbeetle_1|monsters_rltiles2:63|Junger Aaskäfer|scaradon_1||1|||45|10|5|5|65|||0|5|30|9|scaradon|||||||||}; -{cbeetle_2|monsters_rltiles2:63|Aaskäfer|scaradon_1||1|||51|10|5|5|75|||0|5|30|9|scaradon|||||||||}; -{scaradon_1|monsters_rltiles1:98|Junger Scaradon|scaradon_1||1|||32|10|5|3|50|||0|4|30|15|scaradon|||||||||}; -{scaradon_2|monsters_rltiles1:98|Kleiner Scaradon|scaradon_2||1|||35|10|5|3|50|||1|4|30|15|scaradon|||||||||}; -{scaradon_3|monsters_rltiles1:97|Scaradon|scaradon_2||1|||35|10|5|3|50|||0|4|30|17|scaradon|||||||||}; -{scaradon_4|monsters_rltiles1:97|Kräftiger Scaradon|scaradon_2||1|||37|10|5|3|50|||1|4|30|17|scaradon|||||||||}; -{scaradon_5|monsters_rltiles1:97|Hartschalen Scaradon|scaradon_3||1|||38|10|5|3|50|||1|5|30|18|scaradon_b|||||||||}; - -{mwolf_1|monsters_dogs:3|Bergwolfwelpe|mwolf_1||4|||45|10|5|5|80|10|2|2|7|40|3|mwolf|||||||||}; -{mwolf_2|monsters_dogs:3|Junger Bergwolf|mwolf_1||4|||52|10|5|5|80|10|2|3|7|44|3|mwolf|||||||||}; -{mwolf_3|monsters_dogs:2|Junger Bergfuchs|mwolf_1||4|||56|10|5|5|80|10|2|3|7|48|4|mwolf|||||||||}; -{mwolf_4|monsters_dogs:2|Bergfuchs|mwolf_2||4|||60|10|5|5|85|10|2|3|8|52|4|mwolf|||||||||}; -{mwolf_5|monsters_dogs:2|Wilder Bergfuchs|mwolf_2||4|||64|10|5|3|85|10|2|3|8|54|5|mwolf|||||||||}; -{mwolf_6|monsters_dogs:4|Tollwütiger Bergwolf|mwolf_2||4|||67|10|5|3|90|10|2|3|9|56|5|mwolf|||||||||}; -{mwolf_7|monsters_dogs:4|Starker Bergwolf|mwolf_3||4|||73|10|5|3|90|10|2|3|9|57|6|mwolf|||||||||}; -{mwolf_8|monsters_dogs:4|Wilder Bergwolf|mwolf_3||4|||78|10|5|3|90|10|2|3|10|59|6|mwolf_b|||||||||}; - -{mbrute_1|monsters_rltiles2:35|Junge Bergkreatur|mbrute_1||5|||148|10|5|5|70|20|2.5|0|14|60|4|mbrute|||||||||}; -{mbrute_2|monsters_rltiles2:35|Schwache Bergkreatur|mbrute_1||5|||157|10|5|5|70|20|2.5|0|14|60|4|mbrute|||||||||}; -{mbrute_3|monsters_rltiles2:36|Weißpelzige Bergkreatur|mbrute_1||5|||166|10|5|5|70|20|2.5|0|14|60|4|mbrute|||||||||}; -{mbrute_4|monsters_rltiles2:35|Bergkreatur|mbrute_2||5|||175|10|5|5|70|20|2.5|0|14|60|4|mbrute|||||||||}; -{mbrute_5|monsters_rltiles2:36|Große Bergkreatur|mbrute_2||5|||184|10|5|5|70|20|2.5|0|14|60|4|mbrute|||||||||}; -{mbrute_6|monsters_rltiles2:34|Schnelle Bergkreatur|mbrute_2||5|||82|12|5|3|80|20|2.5|0|14|60|4|mbrute|||||||||}; -{mbrute_7|monsters_rltiles2:34|Flinke Bergkreatur|mbrute_3||5|||93|12|5|3|80|20|2.5|0|15|60|4|mbrute|||||||||}; -{mbrute_8|monsters_rltiles2:34|Aggressive Bergkreatur|mbrute_3||5|||104|12|5|3|80|20|2.5|1|15|60|4|mbrute|||||||||}; -{mbrute_9|monsters_rltiles2:33|Starke Bergkreatur|mbrute_3||5|||115|10|5|3|80|20|2.5|1|15|60|4|mbrute|||||||||}; -{mbrute_10|monsters_rltiles2:33|Kräftige Bergkreatur|mbrute_4||5|||126|10|5|3|80|30|3|2|15|60|4|mbrute|||||||||}; -{mbrute_11|monsters_rltiles2:33|Furchtlose Bergkreatur|mbrute_4||5|||137|10|5|3|80|30|3|2|15|60|4|mbrute_b|||||||||}; -{mbrute_12|monsters_rltiles2:33|Wütende Bergkreatur|mbrute_4||5|||148|10|5|3|80|40|3|2|16|60|4|mbrute_b|||||||||}; - -{erumen_1|monsters_rltiles2:114|Junge Erumem Echse|erumen_1||7|||45|10|5|3|125|||2|9|80|4|erumen|||||||||}; -{erumen_2|monsters_rltiles2:114|Gefleckte Erumem Echse|erumen_1||7|||45|10|5|3|125|||2|9|80|4|erumen|||||||||}; -{erumen_3|monsters_rltiles2:114|Erumem Echse|erumen_2||7|||45|10|5|3|125|||2|9|80|4|erumen|||||||||}; -{erumen_4|monsters_rltiles2:115|Starke Erumen Echse|erumen_2||7|||79|10|5|3|125|||2|9|80|4|erumen|||||||||}; -{erumen_5|monsters_rltiles2:115|Widerliche Erumen Echse|erumen_3||7|||89|10|5|3|150|||2|9|80|4|erumen|||||||||}; -{erumen_6|monsters_rltiles2:117|Kräftige Erumen Echse|erumen_3||7|||91|10|5|3|125|||2|9|90|8|erumen|||||||||}; -{erumen_7|monsters_rltiles2:117|Gehärtete Erumen Echse|erumen_4||7|||93|10|5|3|125|||2|9|90|12|erumen_b||||||||{{bleeding_wound|3|3|50|}}|}; - -{plaguesp_1|monsters_rltiles2:61|Mickriger Seuchenkrabbler|plaguespider_1||1|||55|10|5|3|80|60|3|1|6|140||plaguespider||1||||||{{contagion|1|5|70|}{blister|1|5|20|}}|}; -{plaguesp_2|monsters_rltiles2:61|Seuchenkrabbler|plaguespider_1||1|||57|10|5|3|80|60|3|1|6|140||plaguespider||1||||||{{contagion|3|5|70|}{blister|2|5|20|}}|}; -{plaguesp_3|monsters_rltiles2:61|Kräftiger Seuchenkrabbler|plaguespider_1||1|||59|10|5|3|80|60|3|1|6|140||plaguespider||1||||||{{contagion|3|5|70|}{blister|2|5|20|}}|}; -{plaguesp_4|monsters_rltiles2:61|Schwarzer Seuchenkrabbler|plaguespider_2||1|||61|10|5|3|80|60|3|1|6|150||plaguespider||1||||||{{contagion|4|5|70|}{blister|3|5|20|}}|}; -{plaguesp_5|monsters_rltiles2:151|Pestkrabbler|plaguespider_2||1|||62|10|5|3|80|60|3|2|6|150||plaguespider||1||||||{{contagion|4|5|70|}{blister|3|5|20|}}|}; -{plaguesp_6|monsters_rltiles2:151|Hartschalen Pestkrabbler|plaguespider_2||1|||63|10|5|3|80|60|3|2|6|150||plaguespider||1||||||{{contagion|5|5|70|}{blister|4|5|20|}}|}; -{plaguesp_7|monsters_rltiles2:151|Kräftiger Pestkrabbler|plaguespider_3||1|||64|10|5|3|80|70|3|2|6|155||plaguespider||1||||||{{contagion|5|5|70|}{blister|4|5|20|}}|}; -{plaguesp_8|monsters_rltiles2:153|Flauschiger Pestkrabbler|plaguespider_3||1|||65|10|5|3|80|70|3|2|6|155||plaguespider||1||||||{{contagion|6|5|70|}{blister|5|5|50|}}|}; -{plaguesp_9|monsters_rltiles2:153|Kräftiger flauschiger Pestkrabbler|plaguespider_3||1|||66|10|5|3|80|70|3|2|7|160||plaguespider||1||||||{{contagion|6|5|70|}{blister|5|5|50|}}|}; -{plaguesp_10|monsters_rltiles2:151|Widerlicher Pestkrabbler|plaguespider_4||1|||67|10|5|3|85|70|3|2|7|160||plaguespider||1||||||{{contagion|6|5|70|}{blister|5|5|50|}}|}; -{plaguesp_11|monsters_rltiles2:153|Nistender Pestkrabbler|plaguespider_4||1|||68|10|5|3|85|70|3|2|7|165||plaguespider||1||||||{{contagion|6|5|70|}{blister|5|5|50|}}|}; -{plaguesp_12|monsters_rltiles2:38|Pestkrabbler Diener|plaguespider_5||6|||65|10|5|3|85|120|3|2|7|165||plaguespider||1||||||{{contagion|7|5|70|}{blister|6|5|50|}}|}; -{plaguesp_13|monsters_rltiles2:38|Pestkrabbler Meister|plaguespider_6||6|||65|10|5|3|85|120|3|2|8|175|2|plaguespider_b||1||||||{{contagion|7|5|70|}{blister|6|5|50|}}|}; - -{allaceph_1|monsters_rltiles2:101|Junger Allaceph|allaceph_1||2|||90|10|5|3|80|40|2|3|7|105|1|allaceph||1|4|4||||{{feebleness_minor|2|3|20|}}|}; -{allaceph_2|monsters_rltiles2:101|Allaceph|allaceph_1||2|||94|10|5|3|80|40|2|3|7|105|1|allaceph||1|4|4||||{{feebleness_minor|2|3|20|}}|}; -{allaceph_3|monsters_rltiles2:102|Starker Allaceph|allaceph_2||2|||101|10|5|3|80|40|2|3|7|105|2|allaceph||1|4|4||||{{feebleness_minor|2|3|20|}}|}; -{allaceph_4|monsters_rltiles2:102|Kräftiger Allaceph|allaceph_2||2|||111|10|5|3|80|40|2|3|7|110|2|allaceph||1|4|4||||{{feebleness_minor|3|3|20|}}|}; -{allaceph_5|monsters_rltiles2:103|Strahlender Allaceph|allaceph_3||2|||124|10|5|3|80|40|2|3|7|110|3|allaceph_b||1|6|6||||{{feebleness_minor|3|3|20|}}|}; -{allaceph_6|monsters_rltiles2:103|Ehrwürdiger Allaceph|allaceph_3||2|||133|10|5|3|80|40|2|3|7|115|3|allaceph_b||1|7|7||||{{feebleness_minor|3|3|20|}}|}; -{vaeregh_1|monsters_rltiles1:42|Vaeregh|allaceph_4||2|||149|10|5|3|80|40|2|2|7|120|4|allaceph||1|10|10||||{{feebleness_minor|4|3|20|}}|}; - -{irdegh_sp_1|monsters_rltiles2:26|Irdegh Nestling|irdegh_spawn||7|||57|12|5|3|120|||0|6|80||irdegh_spawn||1||||||{{poison_irdegh|2|3|10|}}|}; -{irdegh_sp_2|monsters_rltiles2:26|Irdegh Nestling|irdegh_spawn||7|||68|12|5|3|120|||0|6|80||irdegh_spawn||1||||||{{poison_irdegh|2|3|10|}}|}; -{irdegh_1|monsters_rltiles2:15|Irdegh|irdegh_1||7|||115|10|5|3|120|||3|7|60|10|irdegh||1||||||{{poison_irdegh|3|4|50|}}|}; -{irdegh_2|monsters_rltiles2:15|Giftiger Irdegh|irdegh_2||7|||120|10|5|3|120|||3|7|60|11|irdegh||1||||||{{poison_irdegh|3|4|50|}}|}; -{irdegh_3|monsters_rltiles2:14|Stachliger Irdegh|irdegh_3||7|||125|10|5|3|120|10|2|3|7|60|11|irdegh||1||||||{{poison_irdegh|3|4|50|}}|}; -{irdegh_4|monsters_rltiles2:14|Ehrwürdiger stachliger Irdegh|irdegh_4||7|||130|10|5|3|120|30|2|3|7|60|14|irdegh_b||1||||||{{poison_irdegh|3|4|70|}}|}; - -{maonit_1|monsters_rltiles1:104|Maonit Kobold|maonit_1||5|||255|5|5|5|65|10|3|1|20|20|4|maonit|||||||||}; -{maonit_2|monsters_rltiles1:104|Riesiger Maonit Kobold|maonit_1||5|||270|5|5|5|65|10|3|1|20|20|4|maonit|||||||||}; -{maonit_3|monsters_rltiles1:104|Starker Maonit Kobold|maonit_2||5|||285|5|5|5|65|20|3|1|20|20|5|maonit|||||||||}; -{maonit_4|monsters_rltiles1:107|Maonitkreatur brute|maonit_2||5|||290|5|5|5|65|20|3|1|20|20|5|maonit|||||||||}; -{maonit_5|monsters_rltiles1:107|Kräftige Maonitkreatur|maonit_3||5|||310|5|5|5|65|30|3|1|20|20|6|maonit||1||||||{{stunned|1|3|10|}}|}; -{maonit_6|monsters_rltiles1:107|Starke Maonitkreatur|maonit_3||5|||320|5|5|5|65|30|3|1|20|20|6|maonit||1||||||{{stunned|1|3|10|}}|}; -{arulir_1|monsters_rltiles1:13|Arulir|arulir_1||5|||325|5|5|5|70|30|3|1|20|20|8|arulir||1||||||{{stunned|1|3|20|}}|}; -{arulir_2|monsters_rltiles1:13|Riesiger Arulir|arulir_1||5|||330|5|5|5|70|30|3|1|20|20|8|arulir||1||||||{{stunned|1|3|20|}}|}; - -{burrower_1|monsters_rltiles2:164|Höhlengräberraupe|burrower_1||1|||30|10|5|5|95|||1|25|80|2|burrower|||||||||}; -{burrower_2|monsters_rltiles2:164|Höhlengräber|burrower_1||1|||37|10|5|5|95|||1|25|80|2|burrower|||||||||}; -{burrower_3|monsters_rltiles2:165|Starker Raupengräber|burrower_2||1|||44|10|5|5|95|||1|25|80|2|burrower|||||||||}; -{burrower_4|monsters_rltiles2:165|Riesiger Raupengräber|burrower_3||1|||75|10|5|5|95|||1|25|80|2|burrower|||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{ulirfendor|monsters_rltiles1:84|Ulirfendor|ulirfendor||0|1||288|10|5|3|70|30|2|1|16|60|6|ulirfendor|ulirfendor||||||||}; -{gylew|monsters_mage2:0|Gylew|gylew||0|||||||||||||||gylew||||||||}; -{gylew_henchman|monsters_men:8|Gylew\'s Anhänger|gylew_henchman||0|||||||||||||||gylew_henchman||||||||}; -{toszylae|monsters_liches:1|Toszylae|toszylae||6|1||207|8|5|2|80|40|2|2|7|120|4|toszylae|toszylae|1|6|6||||{{feebleness_minor|3|3|20|}}|}; -{toszylae_guard|monsters_rltiles1:20|Strahlender Wächter|toszylae_guard||2|1||320|10|5|3|80|40|2|2|7|120|4|toszylae_guard|toszylae_guard|1|5|5||||{{feebleness_minor|2|3|20|}}|}; -{thorin|monsters_rltiles1:66|Thorin|thorin||0||||||||||||||shop_thorin|thorin||||||||}; - -{lonelyhouse_sp|monsters_rats:1|Kellerratte|lonelyhouse_sp||4|1||79|10|5|3|125|||2|9|180|4|lonelyhouse_sp|||||||||}; -{algangror|monsters_rltiles1:68|Algangror|algangror||0|1||241|10|5|3|80|200|2|3|9|120|4|algangror|algangror||||||||}; -{remgard_bridge|monsters_men2:4|Brücken Beobachtungsposten|remgard_bridge||0|1||||||||||||||remgard_bridge||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{ingus|monsters_rltiles1:94|Ingus|ingus||0|||||||||||||||ingus||||||||}; -{elwyl|monsters_rltiles3:17|Elwyl|elwyl||0|||||||||||||||elwyl||||||||}; -{elwel|monsters_rltiles3:17|Elwel|elwel||0|||||||||||||||elwel||||||||}; -{hjaldar|monsters_rltiles1:70|Hjaldar|hjaldar||0||||||||||||||shop_hjaldar|hjaldar||||||||}; -{norath|monsters_ld1:8|Norath|norath||0|||||||||||||||norath||||||||}; -{rothses|monsters_ld1:14|Rothses|rothses||0||||||||||||||shop_rothses|rothses||||||||}; -{duaina|monsters_ld1:154|Duaina|duaina||0|||||||||||||||duaina||||||||}; -{rg_villager1|monsters_ld1:132|Bürger|remgard_villager1||0|||||||||||||||remgard_villager1||||||||}; -{rg_villager2|monsters_ld1:20|Bürger|remgard_villager2||0|||||||||||||||remgard_villager2||||||||}; -{rg_villager3|monsters_ld1:134|Bürger|remgard_villager3||0|||||||||||||||remgard_villager3||||||||}; -{jhaeld|monsters_mage:0|Jhaeld|jhaeld||0|||||||||||||||jhaeld||||||||}; -{krell|monsters_men2:6|Krell|krell||0|||||||||||||||krell||||||||}; -{elythom_kn1|monsters_men:3|Ritter von Elythom|elythom_knight1||0|||||||||||||||elythom_knight1||||||||}; -{elythom_kn2|monsters_men:3|Ritter von Elythom|elythom_knight2||0|||||||||||||||elythom_knight2||||||||}; - -{almars|monsters_rogue1:0|Almars|almars||0|||||||||||||||almars||||||||}; -{arghes|monsters_rogue1:0|Arghes|arghes||0||||||||||||||shop_arghes|arghes||||||||}; -{arnal|monsters_ld1:28|Arnal|arnal||0||||||||||||||shop_arnal|arnal||||||||}; -{atash|monsters_ld1:38|Aatash|atash||0|||||||||||||||atash||||||||}; -{caeda|monsters_ld1:145|Caeda|caeda||0|||||||||||||||caeda||||||||}; -{carthe|monsters_man1:0|Carthe|carthe||0|||||||||||||||carthe||||||||}; -{chael|monsters_men:0|Chael|chael||0|||||||||||||||chael||||||||}; -{easturlie|monsters_men:6|Easturlie|easturlie||0|||||||||||||||easturlie||||||||}; -{emerei|monsters_ld1:27|Emerei|emerei||0|||||||||||||||emerei||||||||}; -{ervelyn|monsters_ld1:228|Ervelyn|ervelyn||0||||||||||||||shop_ervelyn|ervelyn||||||||}; -{freen|monsters_rltiles1:77|Freen|freen||0|||||||||||||||freen||||||||}; -{janach|monsters_rltiles3:8|Janach|janach||0|||||||||||||||janach||||||||}; -{kendelow|monsters_man1:0|Kendelow|kendelow||0||||||||||||||shop_kendelow|kendelow||||||||}; -{larni|monsters_ld1:26|Larni|larni||0|||||||||||||||larni||||||||}; -{maelf|monsters_ld1:53|Maelf|maelf||0|||||||||||||||maelf||||||||}; -{morgisia|monsters_rltiles3:5|Morgisia|morgisia||0|||||||||||||||morgisia||||||||}; -{perester|monsters_rltiles3:18|Perester|perester||0|||||||||||||||perester||||||||}; -{perlynn|monsters_mage2:0|Perlynn|perlynn||0|||||||||||||||perlynn||||||||}; -{reinkarr|monsters_rltiles1:66|Reinkarr|reinkarr||0|||||||||||||||reinkarr||||||||}; -{remgard_d1|monsters_ld1:18|Tavernengast|remgard_drunk||0|||||||||||||||remgard_drunk1||||||||}; -{remgard_d2|monsters_rltiles2:81|Tavernengast|remgard_drunk||0|||||||||||||||remgard_drunk2||||||||}; -{remgard_farmer1|monsters_ld1:26|Bauer|remgard_farmer1||0|||||||||||||||remgard_farmer1||||||||}; -{remgard_farmer2|monsters_ld1:220|Bauer|remgard_farmer2||0|||||||||||||||remgard_farmer2||||||||}; -{remgard_g1|monsters_ld1:4|Wachposten|remgard_guard||0|||||||||||||||fallhaven_guard||||||||}; -{remgard_g2|monsters_ld1:5|Wachposten|remgard_guard||0|||||||||||||||blackwater_guard1||||||||}; -{remgard_g3|monsters_ld1:67|Wachposten|remgard_guard2||0|||||||||||||||remgard_guard1||||||||}; -{remgard_pg|monsters_ld1:11|Gefängnis Wachposten|remgard_prison_guard||0|||||||||||||||remgard_prison_guard||||||||}; -{rg_villager4|monsters_ld1:164|Bürger|remgard_villager4||0|||||||||||||||remgard_villager4||||||||}; -{rg_villager5|monsters_ld1:148|Bürger|remgard_villager5||0|||||||||||||||remgard_villager5||||||||}; -{rg_villager6|monsters_ld1:188|Bürger|remgard_villager6||0|||||||||||||||remgard_villager6||||||||}; -{rg_villager7|monsters_ld1:10|Bürger|remgard_villager7||0|||||||||||||||remgard_villager7||||||||}; -{rg_villager8|monsters_rltiles3:18|Bürger|remgard_villager8||0|||||||||||||||remgard_villager8||||||||}; -{skylenar|monsters_ld1:3|Skylenar|skylenar||0||||||||||||||shop_skylenar|skylenar||||||||}; -{taylin|monsters_rltiles1:74|Taylin|taylin||0|||||||||||||||taylin||||||||}; -{petdog|monsters_dogs:0|Hund|petdog||4|||||||||||||||petdog||||||||}; -{kaverin|monsters_ld1:100|Kaverin|kaverin||5|1||320|5|5|3|65|30|3|1|20|90|6|kaverin|kaverin|0|||||||}; - -{izthiel_cr|monsters_rltiles2:52|Izthiel Wächter|izthiel_cr||7|1||354|10|5|3|120|||3|7|60|11|oegyth1||1||||||{{bleeding_wound|3|5|50|}}|}; -{burrower_cr|monsters_rltiles2:165|Riesiger Raupengräber|burrower_cr||1|1||175|10|5|5|95|||1|25|80|2|oegyth1|||||||||}; -{allaceph_cr|monsters_rltiles2:103|Ehrwürdiger Allaceph|allaceph_cr||2|1||333|10|5|3|80|40|2|3|7|115|3|oegyth1||1|7|7||||{{feebleness_minor|3|3|20|}}|}; -{plaguesp_cr|monsters_rltiles2:38|Pestkrabbler Meister|plaguespider_cr||6|1||365|10|5|3|85|160|3|2|8|175|2|oegyth1||1||||||{{contagion|4|5|70|}{blister|3|5|50|}}|}; -{maonit_cr|monsters_rltiles1:107|Starke Maonitkreatur|maonit_cr||5|1||620|5|5|5|65|30|3|1|20|20|6|oegyth1||1||||||{{stunned|1|3|10|}}|}; - - - diff --git a/AndorsTrail/res/values-de/content_questlist.xml b/AndorsTrail/res/values-de/content_questlist.xml deleted file mode 100644 index 26f1555a9..000000000 --- a/AndorsTrail/res/values-de/content_questlist.xml +++ /dev/null @@ -1,497 +0,0 @@ - - - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{nondisplay|Platzhalter für versteckte Queststatus (wird nicht angezeigt)|0|{ - {10|Raum in der \'Foaming Flask\'|||} - {16|Quartier in Blackwater Mountain|||} - {17|Schlafplatz in Crossroads1|||} - {18|Einkaufen bei Minarra im Turm von Crossroads|||} - {19|Quartier in Loneford10|||} - {20|Verkauf von Izthiel Klauen an Gauward|||} - {21|Raum in der Taverne in Remgard|||} - }|}; -{crossglen|ToDo|0|{{1|||0|}}|}; -{fallhaventavern|Zimmer zur Miete|0|{{10|||1|}}|}; -{arcir|Elythara|0|{{10|||0|}}|}; - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{andor|Suche nach Andor|1|{ - {1|Mein Vater Mikhail sagte mir, dass mein Bruder Andor gestern nicht nach Hause gekommen sei. Ich soll im Dorf nach ihm suchen.||0|} - {10|Leonid erzählte mir, dass er gesehen hat wie Andor mit Gruil sprach. Ich sollte Gruil danach fragen, vielleicht kann er mir weiterhelfen.||0|} - {20|Gruil möchte, dass ich ihm eine Giftdrüse bringe, dann wird er mir mehr erzählen. Er sagte, dass einige Giftschlagen so eine Drüse haben.||0|} - {30|Gruil sagte, dass Andor nach jemand namens Umar gesucht hat. Ich soll seinen Freund Gaela danach fragen. Er wohnt im Osten von Fallhaven.||0|} - {40|Ich habe mit Gaela in Fallhaven gesprochen. Er riet mir, Bucus zu suchen und ihn nach der Diebesgilde zu fragen.||0|} - {50|Bucus erlaubte mir, die Falltür in dem verfallenen Haus in Fallhaven zu benutzen. Ich soll mit Umar sprechen.||0|} - {51|Umar, ein Mitglied der Diebesgilde in Fallhaven, schien mich zu kennen, verwechselte mich aber mit Andor. Offensichtlich war Andor also hier und hat sich mit ihm getroffen.||0|} - {55|Umar sagte mir, dass Andor nach einem Alchemisten namens Lodar gesucht hat. Ich sollte nach seinem Versteck suchen.||0|} - {61|Ich hörte eine Geschichte in Loneford die besagte, dass Andor wohl dort gewesen sein soll und vielleicht auch etwas mit der Krankheit zu tun haben könnte, die die Menschen dort plagt. Ich kann mir nicht vorstellen, dass das Andor war. Aber wenn doch, warum sollte er die Leute von Loneford krank machen wollen?||0|} - }|}; -{mikhail_bread|Brot zum Frühstück|1|{ - {100|Ich habe das Brot gekauft und Mikhail gegeben.||1|} - {10|Mikhail möchte, dass ich bei Mara im Gemeindehaus ein Brot kaufe.||0|} - }|}; -{mikhail_rats|Ratten!|1|{ - {100|Ich habe die beiden Ratten in unserem Garten getötet.|20|1|} - {10|Mikhail wäre mir dankbar, wenn ich mich um die Ratten in unserem Garten kümmern würde. Nachdem ich die Ratten getötet habe, soll ich zu ihm zurück kommen. Falls ich verletzt werde, kann ich mich jederzeit im Bett ausruhen, um meine Gesundheit wieder herzustellen.||0|} - }|}; -{leta|Verschollener Ehemann|1|{ - {10|Leta in Crossglen bat mich, nach ihrem Ehemann Oromir zu suchen.||0|} - {20|Ich habe Oromir im Süden von Crossglen gefunden. Er versteckte sich vor seiner Frau Leta.||0|} - {100|Ich habe Leta erzählt, dass sich Oromir in Crossglen versteckt.|50|1|} - }|}; -{odair|Rattenplage|1|{ - {10|Odair möchte, dass ich mich um die Ratten in der Vorratshöhle von Crossglen kümmere. Genaugenommen hat er mir aufgetragen, die große Ratte zu töten, die dort ihr Unwesen treibt.||0|} - {100|Ich habe für Odair die Vorratshöhle von Crossglen von den Ratten befreit.|300|1|} - }|}; -{bonemeal|Verbotene Substanz|1|{ - {10|Leonid erzählte mir in der Gemeindehalle von Crossglen etwas über eine Unruhe im Dorf vor einigen Wochen. Offensichtlich hat Lord Geomyr jeglichen Gebrauch von Knochenmehl als Heilsubstanz untersagt.\n\nTharal, der Dorfpriester sollte mehr darüber wissen.||0|} - {20|Tharal möchte nicht über Knochenmehl reden. Mit 5 Insektenflügeln sollte ich ihn umstimmen können.||0|} - {30|Tharal erzählte mir, dass Knochenmehl eine sehr wirksame Heilsubstanz ist und er hat sich ziemlich darüber aufgeregt, dass es nicht mehr erlaubt ist, welches zu besitzen. Falls ich mehr darüber wissen will, soll ich zu Thoronir nach Fallhaven reisen und das Passwort \'Das Leuchten des Schattens\' nennen.||0|} - {40|Ich habe mit Thoronir in Fallhaven gesprochen. Er könnte mir einen Knochenmehltrank herstellen, wenn ich ihm 5 Skelettknochen bringe. Er meinte, dass es in dem verlassenen Haus nördlich von Fallhaven wahrscheinlich ein paar Skelette geben könnte.||0|} - {100|Ich habe Thoronir die Knochen gegeben. Er kann mich ab jetzt mit Knochenmehltränken versorgen.\nIch sollte aber vorsichtig sein, wenn ich sie benutzen will, da das Verwenden der Tränke von Lord Geomyr verboten wurde.|900|1|} - }|}; -{jan|Zerbrochene Freundschaft|1|{ - {10|Jan erzählte mir seine Geschichte, in der er und seine beiden Freunde Gandir und Irogotu in eine Höhle kletterten, um dort nach einem versteckten Schatz zu suchen. Aber sie fingen an zu streiten und Irogotu tötete in seiner Wut Gandir.\nIch soll Gandir\'s Ring von Irogotu zurückbringen und mich bei Jan melden, wenn ich ihn habe.||0|} - {100|Irogotu ist tot. Ich habe Jan den Ring von Gandir zurückgebracht und seinen Freund gerächt.|1500|1|} - }|}; -{bucus|Der Schlüssel von Luthor|1|{ - {10|Bucus aus Fallhaven könnte etwas über Andor wissen. Er will, dass ich ihm den Schlüssel von Luthor aus den Katakomben unter der Kirche von Fallhaven bringe.||0|} - {20|Die Katakomben unter der Kirche von Fallhaven sind nicht zugänglich. Athamyr ist die einzige Person, die sowohl die Erlaubnis als auch den Mut dafür hat, die Katakomben zu betreten. Ich sollte mich mit ihm in seinem Haus südwestlich der Kirche treffen.||0|} - {30|Athamyr hat Appetit auf einen leckeren Braten. Nach dem Essen kann er mir wohl mehr erzählen.||0|} - {40|Ich habe Athamyr einen leckeren Braten gebracht.|700|0|} - {50|Athamyr gab mir die Erlaubnis, die Katakomben unter der Kirche von Fallhaven zu betreten.||0|} - {100|Ich habe Bucus den Schlüssel von Luthor gebracht.|2150|1|} - }|}; -{fallhavendrunk|Erzählung eines Säufers|1|{ - {10|Ein Betrunkener vor der Taverne von Fallhaven hat angefangen, mir seine Geschichte zu erzählen. Um mehr zu hören, soll ich ihm ein wenig Met holen. Ich weiß nicht, ob das was bringt.||0|} - {100|Der Betrunkene schwärmte von seinen früheren Reisen mit Unnmir. Ich sollte einmal mit Unnmir reden.||1|} - }|}; -{calomyran|Calomyranische Geheimnisse|1|{ - {10|Ein alter Mann aus Fallhaven sagte mir, dass er sein Buch \'Calomyranische Geheimnisse\' verloren habe. Ich soll danach suchen. Vielleicht in Arcir\'s Haus im südlichen Teil von Fallhaven?||0|} - {20|Ich habe eine herausgerissene Seite aus einem Buch mit dem Titel \'Calomyranische Geheimnisse\' gefunden. Der Name \'Larcal\' wurde darauf geschrieben.||0|} - {100|Ich habe dem alten Mann das Buch zurückgegeben.|600|1|} - }|}; -{nocmar|Verlorene Schätze|1|{ - {10|Unnmir hat mir von seinem Leben als Abenteurer erzählt und schickte mich zu Nocmar. Sein Haus ist ein wenig südwestlich von der Taverne in Fallhaven.||0|} - {20|Nocmar sagte mir, dass er früher einmal als Schmied gearbeitet hat. Aber da Lord Geomyr die Verwendung von Herzstahl verboten hat, kann er seine Waffen nicht mehr schmieden.\nWenn ich einen Herzstein finde und ihn zu Nocmar bringe, sollte er wieder Herzstahl schmieden können.||0|} - {200|Ich habe einen Herzstein zu Nocmar gebracht. Bald wird es wieder Gegenstände aus Herzstahl geben.|1200|1|} - }|}; -{flagstone|Uralte Geheimnisse|1|{ - {10|Ich traf einen Wachposten außerhalb der Festung Flagstone. Er erzählte mir, dass Flagstone früher als Straflager für flüchtige Arbeiter von Mount Galmore genutzt wurde. Neuerdings ergiesst sich allerdings ein Strom untoter Monster aus Flagstone. Ich sollte die Quelle der Untoten finden! Der Wachposten will mir helfen, falls es nötig sein sollte.||0|} - {20|Ich habe eine Art Fluchttunnel unterhalb von Flagstone gefunden, der in eine größere Höhle führt. Diese Höhle wird von einem Dämon bewacht, dem ich auf keinen Fall gewachsen bin. Vielleicht weiß der Wachposten außerhalb von Flagstone mehr?||0|} - {30|Der Wachposten erzählt mir, dass der frühere Leiter eine Halskette hatte, die er immer trug. Auf dieser Kette könnten möglicherweise die Worte zu finden sein, die den Dämon besänftigen. Ich soll zum Wachposten zurückkehren wenn ich die Kette gefunden habe, damit er die Worte entschlüsseln kann.||0|} - {31|Ich habe den früheren Leiter von Flagstone auf der oberen Etage gefunden. Ich sollte nun zum Wachposten zurückkehren.||0|} - {40|Ich kenne jetzt die Worte, die man benötigt, um sich dem Dämon unter Flagstone zu nähern: \'Licht und Schatten\'.|1600|0|} - {50|Tief unterhalb von Flagstone habe ich endlich die Quelle der untoten Heimsuchung gefunden: Eine Kreatur, die aus dem Leid der früheren Häftlinge von Flagstone entstand.||0|} - {60|Ich habe Narael, einen überlebenen Häftling tief unterhalb von Flagstone gefunden. Narael stammt aus Nor. Er ist zu schwach, um zu laufen. Wenn ich aber sein Frau in Nor finden kann, werde ich sicher großzügig belohnt.|2100|1|} - }|}; -{vacor|Fehlende Teile|1|{ - {10|Der Magier Vacor im Südwesten von Fallhaven hat versucht, einen magischen Spalt zu schaffen. Irgendwie kam er mir komisch vor, fast besessen von diesem Zauberspruch. Er schien sich große Macht davon zu versprechen.||0|} - {20|Vacor möchte, dass ich ihm die vier Teile des Spaltzaubers zurückbringe. Er behauptet, dass sie ihm von vier Banditen irgendwo südlich von Fallhaven gestohlen wurden.||0|} - {30|Ich habe die vier Teile des Spaltzaubers zu Vacor zurückgebracht.|1200|0|} - {40|Vacor erzählte mir von seinem ehemaligen Lehrling Unzel, der anfing ihn in Frage zu stellen. Vacor möchte, dass ich Unzel umbringe, und seinen Siegelring als Beweis dafür bringe. Unzel sollte irgendwo südwestlich außerhalb von Fallhaven zu finden sein.||0|} - {50|Unzel sagte, ich solle entweder Partei für Vacor oder für ihn ergreifen. Er lässt mir die Wahl.||0|} - {51|Ich habe mich für Unzel entschieden. Ich sollte mit Vacor im Süden von Fallhaven über Unzel und den Schatten sprechen.||0|} - {53|Ich habe Unzel angegriffen. Ich sollte seinen Ring zu Vacor bringen, sobald er tot ist.||0|} - {54|Ich habe Vacor angegriffen. Ich sollte seinen Ring zu Unzel bringen, sobald er tot ist.||0|} - {60|Ich habe Unzel getötet und Vacor über die Tat informiert.|1600|1|} - {61|Ich habe Vacor getötet und Unzel über die Tat informiert.|1600|1|} - }|}; - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{farrik|Nächtlicher Besuch|1|{ - {10|Farrik, ein Mitglied der Diebesgilde in Fallhaven, hat mir von einer geplanten Flucht erzählt. Ein Mitglied der Gilde soll aus dem Gefängnis von Fallhaven befreit werden.||0|} - {20|Farrik hat mir die Details zu dem Fluchtplan genannt und ich habe die Aufgabe der Gilde zu helfen angenommen. Der Hauptmann der Wache im Gefängnis hat anscheinend ein Alkoholproblem. Dem Plan zufolge soll ich eine präparierte Flasche Met vom Koch der Diebesgilde an ihn übergeben, was ihn mit Sicherheit einige Stunden außer Gefecht setzen wird. Es könnte außerdem notwendig sein, den Hauptmann zu bestechen.||0|} - {25|Ich habe den präparierten Met vom Koch der Diebesgilde erhalten.||0|} - {30|Ich habe Ferrik gesagt, dass ich nicht in allen Punkten mit seinem Plan einverstanden bin. Ich könnte dem Hauptmann der Wache von ihrem zwielichtigen Plan berichten...||0|} - {32|Ich habe den präparierten Met an den Hauptmann der Wache übergeben.||0|} - {40|Ich habe dem Hauptmann der Wache von Plan der Diebe, ihren Freund zu befreien, erzählt.||0|} - {50|Der Hauptmann möchte, dass ich den Dieben erzähle, dass die Wache heute Nacht nur aus einer Notmannschaft besteht. Das sollte dafür sorgen, dass einige Diebe gefangen werden können.||0|} - {60|Ich habe den Hauptmann dazu gebracht, den präparierten Met zu trinken. Er sollte heute Nacht außer Gefecht sein, so dass die Diebe ihren Freund befreien können.||0|} - {70|Farrik hat mich für meine Hilfe der Diebesgilde gegenüber belohnt.|1500|1|} - {80|Ich habe Ferrik erzählt, dass die Wache heute Nacht nur sehr dünn besetzt sein wird.||0|} - {90|Der Hauptmann der Gefängniswache dankte mir für die Hilfe bei der Gefangennahme der Diebe. Er sagte, dass er auch den anderen Wachen davon erzählen würde.|1700|1|} - }|}; -{lodar|Ein verlorener Trank|1|{ - {10|Ich soll einen Alchemisten namens Lodar finden. Umar von der Diebesgilde in Fallhaven erzählte mir auch, dass ich auf dem Weg zu Lodar\'s Versteck einen Wächter passieren müsse, für den ich ein Passwort benötigen würde.||0|} - {15|Umar sagte mir, dass ich das Passwort für Lodar\'s Versteck bei Ogam in Vilegard in Erfahrung bringen könnte.||0|} - {20|Ich habe Ogam im Südwesten von Vilegard besucht. Er schien in Rätseln zu sprechen. Ich konnte kaum etwas verstehen, als ich in nach Lodar\'s Versteck fragte. \'Auf halbem Weg zwischen dem Schatten und dem Licht. Felsformationen.\' und \'Das Leuchten des Schattens.\' waren einige seiner Worte. Ich habe keine Ahnung, was das bedeuten könnte.||0|} - }|}; -{vilegard|Vertrauen für einen Fremden|1|{ - {10|Die Leute von Vilegard sind sehr misstrauisch gegenüber Fremden. Mir wurde gesagt, dass ich mit Jolnor in der Kapelle von Vilegard rede soll, wenn ich das Vertrauen der Bewohner erlangen möchte.||0|} - {20|Ich habe mit Jolnor in der Kapelle von Vilegard geredet. Er schlägt vor, dass ich drei einflussreichen Menschen helfen solle, um das Vertrauen der Menschen zu gewinnen. Ich soll Kaori, Wrye und Jolnar selbst nach Aufgaben fragen.||0|} - {30|Ich habe den drei wichtigen Bürgern von Vilegard geholfen, so wie Jolnor mir geraten hat. Nun sollten mir die Leute etwas mehr vertrauen.|2100|1|} - }|}; -{kaori|Botengang für Kaori|1|{ - {5|Jolnor hat mir in der Kapelle von Vilegard den Auftrag gegeben, mit Kaori im Norden von Vilegard zu reden, um sie nach einer Aufgabe zu fragen.||0|} - {10|Kaori aus Nord-Vilegard will 10 Knochenmehltränke von mir.||0|} - {20|Ich habe Kaori die 10 Knochentränke gebracht.|520|1|} - }|}; -{wrye|Eine zweifelhafte Angelegenheit|1|{ - {10|Jolnor aus Vilegard möchte, dass ich mit Wrye im Norden von Vilegard rede. Sie vermisst ihren Sohn scheinbar seit kurzem.||0|} - {20|Wrye aus Nord-Vilegard erzählte mir, dass ihr Sohn Rincel vermisst wird. Sie glaubt, dass er entweder tot oder sehr schwer verletzt ist.||0|} - {30|Wrye erzählte mir, dass sie die königliche Garde aus Feygard mit dem Verschwinden ihres Sohnes in Verbindung bringt und das diese ihn rekrutiert hätten.||0|} - {40|Wrye möchte, dass ich nach Hinweisen suche, die offenbaren, was ihrem Sohn zugestoßen ist.||0|} - {41|Ich sollte in der Taverne von Vilegard und in der Taverne \'Schäumende Flasche\' nördlich von Vilegard nach dem Verbleib von Rincel forschen.|200|0|} - {42|Ich hörte, dass ein Junge vor einiger Zeit in der Taverne \'Schäumende Flasche\' war. Offenbar ging er von hier aus nach Westen.||0|} - {80|Nordwestlich von Vilegard bin ich auf einen Mann gestoßen, der Rincel beim Kampf mit Monstern beobachtet hat. Anscheinend verließ Rincel Vilegard freiwillig, um sich die Stadt Feygard anzusehen. Ich sollte seiner Mutter Wrye im Norden von Vilegard berichten, was ihrem Sohn passiert ist.||0|} - {90|Ich habe Wrye die Wahrheit über das Verschwinden ihres Sohnes erzählt.|520|1|} - }|}; -{jolnor|Spione im Schaum|1|{ - {10|Jolnor aus Vilegard erzählte mir in der Kapelle von einem Wachposten vor der Taverne \'Schäumende Flasche\', von dem er annimmt, dass es sich um einen Spion der königlichen Garde aus Feygard handelt. Er möchte, dass ich irgendwie dafür sorge, dass der Wachposten dort verschwindet. Die Taverne liegt nördlich von Vilegard.||0|} - {20|Ich konnte den Wächter vor der Taverne \'Schäumende Flasche\' davon überzeugen, dass er nach seiner Schicht den Posten verlässt.||0|} - {21|Ich habe den Wachtposten vor der Taverne \'Schäumende Flasche\' angegriffen. Seinen Ring mit dem Wappen der königlichen Garde werde ich Jolnor als Beweis dafür bringen, dass er den Posten für immer verlassen hat.||0|} - {30|Ich habe Jolnor berichtet, dass die Wache nicht mehr auf ihrem Posten ist.|630|1|} - }|}; - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{bwm_agent|Der Agent und das Biest|1|{ - {1|Ich habe eine Mann auf der Suche nach Hilfe für seine Siedlung \'Blackwater Mountain\' getroffen. Anscheinend wird seine Siedlung von Monstern und Banditen angegriffen und die Siedler benötigen dringend Hilfe.|||} - {5|Ich habe zugestimmt, dem Mann und \'Blackwater Mountain\' bei der Lösung ihres Problems zu helfen.|||} - {10|Der Mann bat mich, ihn auf der anderen Seite der eingestürzten Mine zu treffen. Er wird durch einen Schacht kriechen und ich soll in die stockdunkle verlassene Mine hinabsteigen.|||} - {20|Ich habe mich durch die finstere Mine gearbeitet und traf den Mann auf der anderen Seite. Er war sehr erpicht darauf mit klarzumachen, dass ich mich geradewegs nach Osten wenden soll, sobald ich die Mine verlassen habe. Ich würde ihn am Fuße der Berge im Osten treffen.|||} - {25|Ich schnappte ein Gerücht auf, nach dem sich Prim und die Siedlung von Blackwater Mountain gegenseitig bekämpfen sollen.|||} - {30|Ich sollte dem Pfad die Berge hinauf zur Blackwater Siedlung folgen.|||} - {40|Ich habe den Mann auf meinem Weg nach Blackwater Mountain wieder getroffen. Er ermutigte mich, dem Pfad weiter zu folgen.|||} - {50|Ich habe die schneebedeckten Region der Blackwater Mountains erreicht. Der Mann sagte mir, das ich noch ein wenig weiter gehen solle. Offenbar ist die Siedlung von Blackwater Mountain nicht mehr weit entfernt.|||} - {60|Ich habe die Siedlung von Blackwater Mountain erreicht. Ich sollte nach ihrem Schwertmeister Harlenn suchen und mit ihm reden.|||} - {65|Ich habe mit Harlenn in der Siedlung von Blackwater Mountain gesprochen. Anscheinend ist die Siedlung häufigen Angriffen durch verschiedene Monster, den Aulaeth und weißen Lindwürmern ausgesetzt. Zusätzlich werden sie auch noch von den Einwohnern von Prim attackiert.|||} - {66|Harlenn denkt, dass die Leute von Prim irgendwie hinter den Angriffen der Monster stecken.|||} - {70|Harlenn hat eine Nachricht für Guthbered aus Prim. Entweder beenden die Leute von Prim ihre Angriffe auf Blackwater Mountain oder Harlenn werde nicht eher ruhen, bis Prim vernichtet ist. Das soll ich Guthbered in Prim ausrichten.|||} - {80|Guthbered meint, dass die Leute von Prim nichts mit den Angriffen der Monster auf Blackwater Mountain zu tun hätten. Das soll ich Harlenn ausrichten.|||} - {90|Harlenn ist sich absolut sicher, dass Prim irgendwie hinter den Angriffen steckt.|||} - {95|Harlenn bat mich, nach Prim zu gehen und nach Hinweisen Ausschau zu halten, ob dort ein Angriff auf seine Siedlung geplant wird. Ich soll vor allem das Umfeld von Guthbered im Auge behalten.|||} - {100|Ich habe Beweise gefunden, dass Prim Söldner für eine Angriff auf Blackwater Mountain rekrutiert hat. Ich sollte das sofort Harlenn berichten.|||} - {110|Harlenn hat sich bei mir bedankt, dass ich ihm von den Angriffsplänen berichtet habe.|1150||} - {120|Um die Angriffe auf Blackwater Mountain ein für alle Mal zu beenden, möchte Harlenn, dass ich Guthbered in Prim töte.|||} - {130|Ich habe Guthbered angegriffen.|||} - {131|Ich habe Guthbered gesagt, dass ich ihn töten soll. Ich habe ihn aber am Leben gelassen, wofür er mit zutiefst dankbar war und Prim verlassen hat.|2100||} - {149|Ich habe Harlenn gesagt, dass Guthbered von uns gegangen ist.|||} - {150|Harlenn hat sich für meine Hilfe bedankt. Nun sollten die Angriffe auf Blackwater Mountain ein Ende haben.|5000||} - {240|Ich genieße nun das Vertrauen der Einwohner von Blackwater Mountain und alle Dienstleistungen sollten jetzt für mich verfügbar sein.||1|} - {250|Ich habe mich entschieden, den Menschen von Blackwater Mountain nicht zu helfen.||1|} - {251|Da ich Prim unterstütze, will Harlenn nicht mehr mit mir reden.||1|} - }|}; -{prim_innquest|Gut ausgeruht|1|{ - {10|Ich habe mich mit dem Koch in Prim unterhalten. Er kann ein Hinterzimmer vermieten, es ist aber derzeit von einem Typen namens Arghest angemietet. Ich sollte Arghest finden und feststellen, ob er den Raum noch braucht. Der Koch schickte mich in den Südwesten von Prim.|||} - {20|Ich habe mit Arghest über das Hinterzimmer im Gasthaus geredet. Er möchte das Zimmer gern behalten, falls er sich einmal erholen müsse. Allerdings würde er es mir überlassen, wenn ich ihn ausreichen entschädigen würde.|||} - {30|Arghest möchte 5 Flaschen Milch von mir. Wahrscheinlich kann ich Milch in den größeren Dörfern kaufen.|||} - {40|Ich habe die Milch zu Arghest gebracht. Er hat zugestimmt, dass ich den Raum im Gasthaus übernehmen kann. Damit ich mich dort ausruhen kann, sollte ich vorher mit dem Koch reden.|500||} - {50|Ich habe dem Koch erklärt, dass ich die Erlaubnis von Arghest habe, das Hinterzimmer zu benutzen.||1|} - }|}; -{prim_hunt|Düstere Absichten|1|{ - {10|Gleich nach dem Verlassen der eingestürzten Mine traf ich auf dem Weg nach Blackwater Mountain einen Mann aus dem Dorf Prim. Er flehte mich an, ihm zu helfen.|||} - {11|Prim benötigt Hilfe von außerhalb, um sich gegen die Angriffe einiger Monster wehren zu können. Ich soll mit Guthbered in Prim sprechen, wenn ich den Leuten dort helfen will.|||} - {15|Guthbered soll sich im Gemeinschaftshaus von Prim aufhalten. Ich werde nach einem Steinhaus in der Mitte des Dorfes Ausschau halten.|||} - {20|Ich habe mit Guthbered über die Geschichte mit den Angriffen gesprochen. Prim befindet sich seit kurzem unter ständigem Angriff aus der Siedlung von Blackwater Mountain.|||} - {25|Guthbered möchte, dass ich zur Siedlung in den Bergen von Blackwater gehe und dort Schwertmeister Harlenn frage, warum (oder ob) er die Beschwörung von Gornauds für den Kampf gegen Prim veranlasst hat.|||} - {30|Ich habe mit Harlenn über die Angriffe auf Prim gesprochen. Er sagt, dass seine Leute nichts mit den Angriffen zu tun hätten. Das soll ich Guthbered in Prim ausrichten.|||} - {40|Guthbered glaubt immer noch, dass die Leute aus Blackwater Mountain hinter den Angriffen stecken.|||} - {50|Guthbered möchte, dass ich nach Hinweisen auf eine größere Offensive aus Blackwater Mountain gegen Prim suche. Er würde irgendwo in der Nähe von Harlenn\'s Privatquartier suchen, natürlich ohne gesehen zu werden.|||} - {60|Ich habe in Harlenn\'s Privatquartier Dokumente mit Angriffsplänen gegen Prim gefunden. Ich sollte das Guthbered so schnell wie möglich mitteilen.|||} - {70|Guthbered dankte mir für meine Hilfe beim Aufdecken der Angriffspläne aus Blackwater Mountain.|1150||} - {80|Um die Angriffe auf Prim ein für alle Mal zu beenden, möchte Guthbered, dass ich Harlenn in Blackwater Mountain töte.|||} - {90|Ich habe Harlenn angegriffen.|||} - {91|Ich habe Harlenn erklärt, dass ich geschickt wurde, ihn zu töten. Ich ließ ihn aber am Leben, wofür er mir zutiefst dankbar war und die Siedlung verlassen hat.|2100||} - {99|Ich habe Guthbered gesagt, dass Harlenn von uns gegangen ist.|||} - {100|Guthbered hat sich für meine Hilfe bedankt. Nun sollten die Angriffe auf Prim ein Ende haben. Als Dank erhielt ich außerdem einige Sachen und eine gefälschte Zugangserlaubnis für die inneren Kammern in der Siedlung von Blackwater Mountain.|5000||} - {140|Ich habe den Wachen die gefälschte Zugangserlaubnis gezeigt und wurde in die inneren Kammern vorgelassen.|||} - {240|Ich genieße nun das Vertrauen der Einwohner von Prim und alle Dienstleistungen sollten jetzt für mich verfügbar sein.||1|} - {250|Ich habe mich entschieden, den Menschen von Prim nicht zu helfen.||1|} - {251|Da ich Blackwater Mountain unterstütze, will Guthbered nicht mehr mit mir reden.||1|} - }|}; -{kazaul|Licht im Dunkel|1|{ - {8|Ich habe die innere Kammer der Siedlung von Blackwater Mountain erreicht und einige Magier angetroffen, die von einem Mann namens Throdna angeführt werden.|||} - {9|Throdna schien sehr interessiert an jemand (oder etwas) mit dem Namen Kazaul, insbesondere an einem Ritual das in dessen Namen ausgeführt wird.|||} - {10|Ich habe Throdna versprochen ihm dabei zu helfen, mehr über das Ritual selbst herauszufinden. Dazu soll ich nach Bruchstücken für das Ritual suchen, welche irgendwo um den Berg herum zu finden sein müssen. Ich sollte nach den Stücken auf dem Bergpfad suchen, der von Blackwater Mountain nach Prim führt.|||} - {11|Ich muss die zwei Teile für den Gesang finden und die drei Teile, die das Ritual selbst beschreiben. Wenn ich alle Teile habe, soll ich zu Throdna zurückkehren.|||} - {21|Ich habe die erste Hälfte des Gesangs für das Ritual von Kazaul.|||} - {22|Ich habe die zweite Hälfte des Gesangs für das Ritual von Kazaul.|||} - {25|Ich habe das erste Teil für das Ritual von Kazaul gefunden.|||} - {26|Ich habe das zweite Teil für das Ritual von Kazaul gefunden.|||} - {27|Ich habe das dritte Teil für das Ritual von Kazaul gefunden.|||} - {30|Throdna dankte mir für das Auffinden aller Teile des Rituals.|3600||} - {40|Throdna will, dass ich die Kazaul Brutstätte in der Nähe von Blackwater Mountain zerstöre. Es gibt einen Schrein am Fuß des Berges, den ich mir näher ansehen sollte.|||} - {41|Ich habe eine Essenz des reinen Geistes von Throdna erhalten. Ich soll den Inhalt über den Schrein von Kazaul verteilen. Nachdem ich den Schrein gefunden und gereinigt habe, soll ich zu Throdna zurückkehren.|||} - {50|Im Schrein unterhalb von Blackwater Mountain bin ich einem Wächter von Kazaul begegnet. Nachdem ich die Verse des Ritualgesangs angestimmt hatte, griff er mich an.|||} - {60|Ich habe den Schrein von Kazaul gereinigt.|3200||} - {100|Ich hatte zumindest eine kleine Anerkennung von Throdna erwartet, nachdem ich ihm behilflich war, mehr über das Ritual herauszufinden und für das Reinigen des Schreins. Er schien jedoch mehr mit den Ausführungen über Kazaul beschäftigt, aus denen ich nicht Verständliches heraushören konnte.||1|} - }|}; -{bwm_wyrms|Keine Schwäche|1|{ - {10|Auf der zweiten Ebene der Blackwater Mountain Siedlung erforscht Herec die weißen Lindwürmer, die außerhalb der Siedlung leben. Er braucht dafür 5 Krallen von weißen Lindwürmern. Offenbar haben nur einige der Lindwürmer diese Krallen, so dass ich wohl ein wenig jagen muss, um sie zu finden.|||} - {20|Ich habe Herec 5 Krallen von weißen Lindwürmern gebracht.|||} - {30|Herec hat einen Trank für die Wiederherstellung der Ausdauer hergestellt. Dieser wird sehr hilfreich sein, wenn ich wieder einmal gegen die Lindwürmer kämpfen muss.|1500|1|} - }|}; -{bjorgur_grave|Aus dem Schlummer erwacht|1|{ - {10|Bjorgur aus Prim am Fuße der Berge von Blackwater denkt, dass irgendetwas die Grabruhe seiner Eltern gestört hat. Das Grab liegt südwestlich von Prim, beim Eingang zur Ulmenmine.|||} - {15|Bjorgur hat mich beauftrag, das Grab seiner Eltern zu überprüfen und sicherzustellen, dass der Erbdolch seiner Familie immer noch sicher in der Gruft liegt.|||} - {20|Fulus aus Prim ist daran interessiert, den Dolch aus Bjorgur\'s Familienbesitz zu bekommen, der früher Bjorgur\'s Großvater gehörte.|||} - {30|Ich traf einen Mann in den unteren Ebenen einer Gruft südwestlich von Prim. Er trug einen außergewöhnlichen Dolch bei sich. Er muss ihn aus dem Grab geraubt haben.|||} - {40|Ich habe den Dolch an seinen Platz in der Gruft zurückgelegt. Die rastlosen Untoten scheinen nun seltsamerweise ein wenig ruhiger zu sein.|200||} - {50|Bjorgur dankte mir für meine Hilfe. Er meinte, ich solle auch seine Verwandten in Feygard besuchen.|1100|1|} - {51|Ich habe Fulus erzählt, dass ich für Bjorgur den Familiendolch wieder an seinen angestammten Platz zurückgebracht habe.|||} - {60|Ich habe Fulus Bjorgur\'s Familiendolch gegeben. Er dankte mir und belohnte mich entsprechend.|1700|1|} - }|}; - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{erinith|Tiefe Wunde|1|{ - {10|Nordöstlich von Crossglen habe ich Erinith gefunden, der hilflos in den Büschen lag. Offensichtlich wurde er nachts angegriffen und verwundet. Dabei hat er ein wertvolles Buch verloren.|||} - {20|Ich habe Erinith versprochen, das Buch für ihn zu finden. Er meinte, dass er es zwischen ein paar Bäume nördlich von seinem Lager geworfen hätte.|||} - {21|Ich habe mit Erinith vereinbart, für 200 Goldmünzen das Buch für ihn zu finden. Er meinte, dass er es zwischen ein paar Bäume nördlich von seinem Lager geworfen hätte.|||} - {30|Ich habe das Buch zu Erinith zurückgebracht.|2000||} - {31|Erinith braucht auch noch Hilfe mit seiner Verwundung, die einfach nicht verheilt. Ich soll ihm entweder einen großen Heiltrank oder vier normale Heiltränke bringen, das sollte die Wunde schließen.|||} - {40|Ich habe Erinith einen Knochenmehltrank gegeben. Er zögerte ein wenig, weil die Verwendung durch Lord Geomyr verboten ist.|||} - {41|Ich habe Erinith einen großen Heiltrank zur Versorgung seiner Wunde gebracht.|||} - {42|Ich habe Erinith vier normale Heiltränke zur Versorgung seiner Wunde gebracht.|||} - {50|Die Wunde heilte vollständig und Erinith dankte mir herzlich für all die Hilfe.|1500|1|} - }|}; -{hadracor|Verwüstetes Land|1|{ - {10|Auf der Straße nach Carn Tower, westlich der Wachstube von Crossroads, bin ich auf einige Holzfäller gestoßen. Ihr Anführer Hadracor möchte, dass ich mich um ein paar Wespen kümmere, die sie immer bei ihren Arbeiten stören. Ich soll nach Riesenwespen in der Nähe des Holzfällerlagers suchen und mindestens 5 Flügel von Riesenwespen als Beweis für meine \'Arbeit\' zu Hadracor bringen.|||} - {20|Ich habe Hadracor fünf Riesenwespenflügel gebracht.|||} - {21|Ich habe Hadracor sechs Riesenwespenflügel gebracht. Für die Hilfe gab er mir ein paar Handschuhe.|||} - {30|Hadracor dankte mir für die Hilfe mit den Wespen. Er bot mir einige Waren zum Handeln an.||1|} - }|}; -{tinlyn|Verlorene Schafe|1|{ - {10|Auf der Straße nach Feygard, nahe der Brücke von Feygard, traf ich den Schafhirten Tinlyn. Er beklagte, das vier seiner Schafe entwischt seinen, er sich aber nicht traue, die übrigen Tiere bei der Suche nach den Entflohenen unbeaufsichtigt zu lassen.|||} - {15|Ich habe Tinlyn Hilfe bei der Suche nach den vier Schafen versprochen.|||} - {20|Ich habe eines von Tinlyn\'s verlorenen Schafen gefunden.|||} - {21|Ich habe eines von Tinlyn\'s verlorenen Schafen gefunden.|||} - {22|Ich habe eines von Tinlyn\'s verlorenen Schafen gefunden.|||} - {23|Ich habe eines von Tinlyn\'s verlorenen Schafen gefunden.|||} - {25|Ich habe nun alle vier verlorenen Schafe von Tinlyn gefunden.|||} - {30|Tinlyn dankte mir für die Suche nach seinen Schafen.|3500|1|} - {31|Tinlyn dankte mir für die Suche nach seinen Schafen, aber er hatte leider keine Belohnung für mich.|2000|1|} - {60|Ich habe eines von Tinlyn\'s Schafen angegriffen. Nun kann ich ihm nicht mehr alle Schafe zurückbringen.||1|} - }|}; -{benbyr|Schlachtung|1|{ - {10|Ich traf Benbyr vor der Wachstube von Crossroads. Er möchte sich an seinem alten \'Geschäftspartner\' Tinlyn rächen. Benbyr will, dass ich alle Schafe von Tinlyn abschlachte.|||} - {20|Ich habe versprochen, für Benbyr alle acht Schafe von Tinlyn zu finden und zu töten. Ich soll auf den Feldern nordwestlich von der Wachstube Ausschau nach ihnen halten.|||} - {21|Ich habe mit der Schlachtung begonnen. Wenn ich alle acht Schafe getötet habe, sollte ich zu Benbyr zurückkehren.|||} - {30|Benbyr war begeistert zu hören, dass Tinlyn\'s Schafe tot sind.|5200|1|} - {60|Ich habe es abgelehnt, für Benbyr wehrlose Schafe abzuschlachten.||1|} - }|}; -{rogorn|Der Weg liegt klar vor mir|1|{ - {10|Vom Turm der Wachstube von Crossroads aus hat Minarra ein paar Gauner beobachtet, die nach Westen Richtung Carn Tower schlichen. Minarra glaubt, dass es sich bei den Typen um Verbrecher handelt, auf die in Feygard ein Kopfgeld ausgesetzt wurde. Wenn das wahr ist, werden diese Männer von einem besonders rücksichtslosen Rohling namens Rogorn angeführt.|||} - {20|Ich helfe Minarra bei der Suche nach den Schurken. I soll auf der Straße westlich von der Wachstube in Richtung Carn Tower reisen und nach ihnen Ausschau halten. Sie haben angeblich drei Teile eines wertvollen Gemäldes gestohlen und sollen für ihre Verbrechen hingerichtet werden.|||} - {21|Minarra hat mir auch gesagt, dass ich ihnen auf keinen Fall trauen dürfe, egal was sie sagen. Besonders die Worte von Rogorn sollten mit äußerster Skepsis beurteilt werden.|||} - {30|Ich habe die Bande auf der Straße nach Carn Tower aufgespürt und sie wird wie erwartet von Rogorn angeführt.|||} - {35|Rogorn erzählte mir, dass er und seine Leute zu Unrecht wegen Mord und Diebstahl in Feygard beschuldigt werden, den keiner von ihnen war jemals in Feygard gewesen.|||} - {40|Ich habe beschlossen, Rogorn und seine Kumpane anzugreifen. Wenn sie tot sind, werde ich mit den drei Teilen des Gemäldes zu Minarra zurückkehren.|||} - {45|Ich habe beschlossen, Rogorn und seine Kumpane am Leben zu lassen und stattdessen Minarra zu berichten, dass sie sich geirrt haben müsse.|||} - {50|Minarra bedankte sich bei mir für das Ergreifen der Diebe. Sie versprach mir, dass meine Dienste für Feygard gewürdigt werden würden.|||} - {55|Nachdem ich Minarra gesagt habe, dass sie die Männer mit jemand anderem verwechselt habe, schien sie etwas misstrauisch, dankte mir aber für meine Hilfe in der Sache.|||} - {60|Ich habe Minarra bei ihrer Aufgabe unterstützt.||1|} - }|}; -{feygard_shipment|Botengang für Feygard|1|{ - {10|Ich habe Gandoren, den Hauptmann der Garde in der Wachstube von Crossroads getroffen. Er erzählte mir von einigen Schwierigkeiten in Loneford, welche die Wachleute zu erhöhter Wachsamkeit zwingen. Aus diesem Grund haben sie keine Zeit für ihre gewöhnlichen Botengänge und könnten da ein wenig Hilfe gebrauchen.|||} - {20|Gandoren möchte, dass ich eine Lieferung von 10 Eisenschwerter zu einem Gardeposten im Süden bringe.|||} - {21|Ich habe zugestimmt, die Lieferung für Gandoren zu übernehmen, als Dienst an Feygard.|||} - {22|Ich habe widerwillig zugestimmt, die Lieferung für Gandoren zu übernehmen.|||} - {25|Ich soll die Lieferung zum Hauptmann der Patrouille bringen, die in der Taverne \'Schäumende Flasche\' stationiert ist.|||} - {26|Gandoren sagte mir, dass Ailshara Interesse an den Lieferungen von Feygard bekundet hat und drängte mich, Abstand von ihr zu halten.|||} - {30|Ailshara ist in der Tat an der Lieferungen interessiert und möchte, dass ich Nor City mit den Lieferungen helfe.|||} - {35|Wenn ich Ailshara und Nor City helfen möchte, soll ich die Lieferung stattdessen zum Schmied in Vilegard bringen.|||} - {50|Ich habe die Lieferung zum Hauptmann der Patrouille in der Taverne \'Schäumende Flasche\' gebracht. Ich sollte Gandoren in der Wachstube von Crossroads mitteilen, das die Lieferung erfolgt ist.|||} - {55|Ich habe die Lieferung beim Schmied in Vilegard abgegeben.|||} - {56|Der Schmied von Vilegard hat mir eine Lieferung von minderwertigen Schwertern mitgegeben, die ich beim Hauptmann der Patrouille in der Taverne \'Schäumende Flasche\' statt der normalen Schwerter abliefern kann.|||} - {60|Ich habe die Lieferung mit den minderwertigen Schwertern zum Hauptmann der Patrouille in der Taverne \'Schäumende Flasche\' gebracht. Ich sollte Gandoren mitteilen, das die Lieferung erfolgt ist.|||} - {80|Gandoren dankte mir für die Hilfe bei der Lieferung der Waffen.|4000|1|} - {81|Gandoren dankte mir für die Hilfe bei der Lieferung der Waffen. Er hat nichts gemerkt. Ich sollte nun auch Ailshara berichten.|||} - {82|Ich habe Ailshara von der Lieferung berichtet.|4000|1|} - }|}; -{loneford|Es fließt durch die Adern|1|{ - {10|Ich habe eine Geschichte über Loneford gehört. Offenbar wurden dort in der letzten Zeit viele Menschen krank, einige sind sogar gestorben. Die Ursache ist immer noch unbekannt.|||} - {11|Ich sollte herausbekommen, was die Leute aus Loneford krank gemacht haben könnte. Um Hinweise zu sammeln sollte ich die Einwohner von Loneford und der näheren Umgebung nach möglichen Ursachen befragen.|||} - {21|Die Wächter aus der Wachstube von Crossroads sind sich sicher, dass die Krankheit in Loneford durch einen Anschlag der Priester oder durch Leute aus Nor City ausgelöst wurde.|||} - {22|Einige Dorfbewohner aus Loneford glauben, dass die Krankheit durch die Wachen aus Feygard verursacht wurde - als Teil eines Plans, die Leute noch mehr leiden zu lassen.|||} - {23|Talion, der Priester aus Loneford denkt, dass die Krankheit ein Werk des Schattens ist - als Strafe für Loneford\'s mangelnde Hingabe an den Schatten.|||} - {24|Taevinn aus Loneford ist sicher, dass Sienn in der Scheune im Südosten irgendetwas mit der Krankheit zu tun hat. Offenbar hält Sienn ein Haustier, durch das sich Taevinn schon mehrmals bedroht fühlte.|||} - {25|Ich sollte nach Landa in der Taverne von Loneford sehen. Gerüchten zufolge solle er etwas gesehen haben, das er sich niemandem zu erzählen traut.|||} - {30|Landa verwechselte mich zunächst mit jemandem. Er behauptet, einen kleinen Jungen gesehen zu haben, der in der Nacht, bevor sich die Krankheit ausbreitete um den Dorfbrunnen schlich und irgendetwas machte. Er hatte zuerst Angst mit mir zu sprechen, weil ich dem Jungen den er gesehen hat sehr ähnlich bin. Könnte der Junge, den er gesehen hat, vielleicht Andor gewesen sein?|||} - {31|Außerdem hat er in der Nacht, als er den Jungen am Brunnen gesehen hatte, Buceth dabei beobachtet, wie dieser Proben des Brunnenwassers genommen hat. Verdächtigerweise ist Buceth auch nicht krank geworden wie die anderen im Dorf.|||} - {35|Ich sollte Buceth in der Kapelle von Loneford aufsuchen und ihn danach fragen, was er am Brunnen gemacht hat. Vielleicht weiß er auch etwas über Andor.|||} - {41|Ich habe Buceth bestochen, damit er mit mir redet.|||} - {42|Ich habe Buceth erzählt, dass ich bereit bin, dem Schatten zu folgen.|||} - {45|Buceth erzählte mir, dass er von den Priestern aus Nor City beauftragt worden war sicherzustellen, dass der Schatten sein Leuchten über Loneford ausbreiten kann. Offenbar haben die Priester einen Jungen geschickt, um etwas in Loneford zu erledigen und Buceth damit beauftragt, einige Wasserproben zu nehmen.|||} - {50|Ich habe Buceth angegriffen. Ich sollte die Beweise von Buceth zu Kuldan, den Hauptmann der Wache im Langhaus von Loneford bringen.|||} - {54|Ich habe das Fläschchen, das Buceth bei sich hatte zu Kuldan, dem Hauptmann der Wache in Loneford gebracht.|||} - {55|Kuldan dankte mir für das Lösen des Rätsels um die mysteriöse Krankheit in Loneford. Sie werden nun Wasser aus Feygard importieren, anstatt es aus dem Brunnen zu schöpfen. Er sagte mir auch, dass ich den Haushofmeister in der Burg von Feygard besuchen soll, wenn ich noch mehr helfen will.|15000|1|} - {60|Ich habe Buceth versprochen, sein Geheimnis zu hüten. Wenn Andor wirklich hier war, muss er einen guten Grund dafür gehabt haben. Buceth sagt mir auch, dass ich den Hüter der Kapelle in Nor City besuchen soll, um mehr über den Schatten zu erfahren.|15000|1|} - }|}; - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{thorin|Stückchen und Teile|1|{ - {20|In einer Höhle im Osten habe ich Thorin gefunden. Er möchte, dass ich ihm helfe, die Knochen seiner früheren Weggefährten zu finden. Wenn ich die Gebeine der sechs Gefährten gefunden habe, soll ich sie zu ihm bringen.|||} - {31|Ich habe ein paar Knochenreste in der gleichen Höhle gefunden, in der ich Thorin getroffen habe.|||} - {32|Ich habe ein paar Knochenreste in der gleichen Höhle gefunden, in der ich Thorin getroffen habe.|||} - {33|Ich habe ein paar Knochenreste in der gleichen Höhle gefunden, in der ich Thorin getroffen habe.|||} - {34|Ich habe ein paar Knochenreste in der gleichen Höhle gefunden, in der ich Thorin getroffen habe.|||} - {35|Ich habe ein paar Knochenreste in der gleichen Höhle gefunden, in der ich Thorin getroffen habe.|||} - {36|Ich habe ein paar Knochenreste in der gleichen Höhle gefunden, in der ich Thorin getroffen habe.|||} - {40|Thorin dankte mir für meine Hilfe. Im Gegenzug darf ich sein Lager nutzen um mich auszuruhen. Er hat mir auch angeboten ein paar Tränke von ihm zu erwerben.|4000|1|} - }|}; -{algangror|Von Mäusen und Menschen|1|{ - {10|In einem einsamen Haus auf einer Halbinsel am Nordufer vom Laerothsee in den nordöstlichen Bergen habe ich Algangror getroffen.|||} - {11|Sie hat ein Problem mit Nagertieren und hat ein paar davon im Keller eingesperrt. Sie möchte, dass ich ihr bei der Beseitigung helfe.|||} - {15|Ich werde Algangror bei ihrem Nagertier-Problem helfen. Wenn die sechs Störenfriede beseitigt sind, soll ich ihr Bescheid geben.|||} - {20|Algangror war dankbar für die Hilfe bei ihrem Problem.|5000||} - {21|Sie bat mich noch, mit niemandem in Remgard über ihren Aufenthaltsort zu sprechen. Offensichtlich wird sie dort wegen irgendetwas gesucht, will mir aber nicht sagen warum. Ich soll unter keinen Umständen sagen wo sie ist.||1|} - {100|Ich werde Algangror mit ihrer Aufgabe nicht helfen.||1|} - {101|Algangror wird nicht mit mir reden, ich werde ihr deswegen mit ihrer Aufgabe nicht helfen können.||1|} - }|}; - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{toszylae|Ein unfreiwilliger Botschafter|1|{ - {10|Auf der Straße zwischen Loneford und Brimhaven habe ich ein ausgetrocknetes Flussbett mit einer größeren Höhle darunter gefunden. Tief in der Höhle traf ich auf Ulirfendor, einen Priester des Schattens aus Brimhaven. Ulirfendor versucht, die Inschriften auf einem Schrein von Kazaul zu entziffern und hat herausgefunden, dass sie von einem \'Dunklen Beschützer\' sprechen. Er weiß allerdings nicht, wer das sein soll. Was auch immer es bedeutet, er hat beschlossen, dass es aufgehalten werden muss.|||} - {11|Ulirfendor braucht Hilfe beim Bestimmen der fehlenden Teile der Inschriften auf dem Schrein. Die Inschrift lautet \'Kulauil hamar urum Kazaul\'te\', aber die nächsten Teile sind auf dem Felsen nicht mehr lesbar.|||} - {15|Ich habe Ulirfendor meine Hilfe angeboten und werde versuchen herauszufinden, wie die fehlenden Teile der Inschrift lauten. Ulirfendor glaubt, dass der Schrein von einer mächtigen Kreatur spricht, welche tiefer in der Höhle hausen soll. Vielleicht kann ich dort Hinweise über die fehlenden Teile finden.|||} - {20|Tief im inneren der Höhle, bin ich auf einen strahlenden Wächter gestoßen, der irgendeine andere Kreatur beschützt. Er stieß die Worte \'Kulauil hamar urum Kazaul\'te. Kazaul hamat urul\' hervor. Das müssen die fehlenden Worte sein, nach denen Ulirfendor sucht. Ich sollte sofort zu ihm zurückkehren.|||} - {21|Ich habe versucht, den Wächter anzugreifen, konnte ihm jedoch nicht einmal nahe kommen. Irgendeine starke Macht hielt mich zurück. Vielleicht weiß Ulirfendor mehr.|||} - {30|Ulirfendor war sehr davon angetan, dass ich die fehlenden Teile der Inschrift in Erfahrung bringen konnte.|2000||} - {32|Er erzählte mir auch, wie die Inschrift weiter lautete, wusste jedoch wieder nicht um deren Bedeutung. Ich soll zum Wächter zurückgehen und ihm die Worte von Ulirfendor ausrichten.|||} - {42|Ich habe die Worte vor dem Wächter ausgesprochen.|5000||} - {45|Der Wächter brach in schallendes Lachen aus und griff mich an.|||} - {50|Ich habe den Wächter besiegt und gelangte so zum Lich \'Toszylae\'. Er hat es geschafft, mich mit irgendetwas zu infizieren. Ich muss ihn töten und zu Ulirfendor zurückkehren.|||} - {60|Ulirfendor teilte mir mit, dass er es geschafft habe, die Worte zu übersetzen, die ich zu dem Wächter gesagt habe. Frei übersetzt lauteten die Worte \'Mein Körper für Kazaul\'. Ulirfendor war sehr betroffen von der Bedeutung der Worte für mich und bedauerte, dass er mich diese Worte sprechen lies.|||} - {70|Ulirfendor war sehr glücklich zu hören, dass ich den Lich besiegen konnte. Das wird die Leute in der Umgebung wieder ruhiger schlafen lassen.|20000|1|} - }|}; -{darkprotector|Der dunkle Beschützer|1|{ - {10|Ich habe nach dem Sieg über den Lich \'Toszylae\' einen fremdartigen Helm gefunden. Ich werde Ulirfendor fragen, ob er mir etwas darüber sagen kann.|||} - {15|Ulirfendor denkt, dass dieses Artefakt der Gegenstand ist, von dem die Inschrift auf dem Schrein spricht. Er wird Kummer im Umfeld desjenigen verursachen, der ihn trägt. Er möchte, dass ich ihn sofort zerstöre.|||} - {26|Für die Zerstörung des Helms braucht Ulirfendor den Helm und das Herz des Lichs.|||} - {30|Ich habe Ulirfendor den Helm gegeben.|||} - {31|Ich habe Ulirfendor das Herz des Lichs gegeben.|||} - {35|Ulirfendor hat das Artefakt zerstört. Die Menschen in den umliegenden Gegenden sind nun sicher vor dem Leid, das der Helm über sie gebracht hätte.|||} - {40|Für die Hilfe mit dem Lich und dem Helm hat mir Ulirfendor den dunklen Segen des Schattens zuteil werden lassen.|15000|1|} - {41|Für die Hilfe mit dem Lich und dem Helm wollte mir Ulirfendor den dunklen Segen des Schattens zuteil werden lassen. Ich habe jedoch abgelehnt.|35000|1|} - {50|Ich habe beschlossen, den Helm für mich zu behalten. Wer weiß, welche Kräfte er für mich bereit hält.|||} - {51|Ulirfendor hat mich angegriffen, weil ich den Helm behalten habe.|||} - {55|Ich habe ein Buch in der Nähe des Schreins gefunden. Das Buch beschreibt ein Ritual, bei dem die wahre Macht des Helms wiederhergestellt werden kann. Ich sollte es durchführen, wenn ich den Helm tragen will.|||} - {60|Ich habe mit dem Ritual von Kazaul begonnen.|||} - {65|Ich habe den Helm vor dem Schrein von Kazaul platziert.|||} - {66|Ich habe das Herz des Lichs vor dem Schrein von Kazaul platziert.|||} - {70|Das Ritual ist beendet und die Macht und der uralte Ruhm des Helmes wurden wiederhergestellt.|5000|1|} - }|}; -{maggots|Es ist in mir!|1|{ - {10|Tief im inneren einer Höhle bin ich mit einem Lich von Kazaul zusammengestoßen. Irgendwie hat es der Lich geschafft, mich mit etwas zu infizieren, was in meinem Bauch herumkrabbelt! Ich muss das irgendwie los werden. Ich sollte Ulirfendor fragen, oder gleich Hilfe in einer Kirche suchen.|||} - {20|Ulirfendor sagte, dass er einmal etwas über Maden gelesen hätte, die sich von lebendem Gewebe ernähren. Das kann bei mir \'ungewöhnliche\' Auswirkungen haben und die Eier der Maden können einen Menschen langsam von innen her töten. Ich sollte so schnell wie möglich Hilfe suchen, bevor es zu spät ist.|||} - {21|Ulirfendor meinte, dass mir ein Priester des Schattens helfen könnte. Ich solle Talion in Loneford sofort aufsuchen.|||} - {30|Der Priester Talion aus Loneford sagte mir, dass er für die Heilung meines Leidens ein paar Sachen benötigt. Zunächst einmal braucht er fünf Knochen und zwei Büschel Tierfell. Außerdem wird noch eine Irdegh-Giftdrüse und ein leeres Fläschchen benötigt. Knochen und Fell sollten sich in der Wildnis leicht finden lassen. Die Giftdrüse sollte einer der Irdeghs liefern können, die östlich von hier gesichtet wurden.|||} - {40|Ich habe fünf Knochen zu Talion gebracht.|||} - {41|Ich habe die zwei Büschel Tierhaar zu Talion gebracht.|||} - {42|Ich habe die Giftdrüse bei Talion abgeliefert.|||} - {43|Ich habe Talion ein leeres Fläschchen gegeben.|||} - {45|Ich habe jetzt alle Zutaten die Talion für meine Heilung braucht besorgt.|||} - {50|Talion hat mich von den Kazaul-Maden geheilt. Ich konnte eine der Maden in einem leeren Fläschchen auffangen. Talion meinte, das wäre sehr wertvoll. Ich kann mir aber nicht vorstellen wofür.|30000||} - {51|Wegen meiner früheren Erkrankung kann ich mich jetzt jederzeit gegen eine geringe Gebühr bei Talion mit dem Segen des Schattens belegen lassen.||1|} - }|}; -{sisterfight|Meinungsverschiedenheiten|1|{ - {10|Ich habe von zwei zankenden Schwestern aus Remgard gehört: Elwel und Elwyl. Anscheinend halten sie nachts die Leute wach, so laut schreien sie sich gegenseitig an. Ich sollte sie vielleicht einmal in ihrem Haus am Südrand von Remgard besuchen.|||} - {20|Ich habe mit Elwyl, einer der Elwille Schwestern in Remgard, geredet. Sie ist wütend auf ihre Schweser, da sie ihr nicht einmal bei ganz einfachen Fakten zustimmt. Scheinbar haben sie ihre gegenseitigen Meinungsverschiedenheiten seit mehreren Jahren.|||} - {21|Elwel will nicht mit mir reden.|||} - {30|Eine Sache in der die beiden Schwestern aktuell unterschiedlicher Meinung sind ist die Farbe eines bestimmten Trankes, den der Stadtalchemist Hjaldar zubereitet. Elwyl sagt, dass der Trank der Treffsicherheit den Hjaldar macht ein blauer Trank ist, aber Elwel besteht darauf, dass der Trank aus einer grünen Substanz ist.|||} - {31|Elwyl will, dass ich einen Trank der Treffsicherheit von Hjaldar hier in Remgard besorge, so dass sie endgültig beweisen kann, dass Elwel falsch liegt.|||} - {40|Ich habe mit Hjaldar in Remgard gesprochen. Hjaldar kann seine Tränke nicht mehr zubereiten, da ihm sein Vorrat an Lyson Marrowextrakt ausgegangen ist.|||} - {41|Offenbar hätte Hjaldar\'s alter Freund Mazeg sicher noch etwas Lyson Marrowextrakt zu verkaufen. Unglücklicherweise weiß er nicht wo Mazeg aktuell lebt. Er weiß nur, dass Mazeg bei ihrem letzten Treffen auf der Reise weit nach Westen war.|||} - {45|Ich sollte Mazeg finden um etwas Lyson Marrowextrakt zu bekommen, so dass Hjaldar wieder seine Tränke machen kann.|||} - {50|Ich habe mit Mazeg in der Blackwater Mountain Siedlung gesprochen. Da ich den Leuten aus Blackwater Mountain geholfen habe, würde er mir Lyson Marrowextrakt für nur 400 Goldmünzen verkaufen.|||} - {51|Ich habe mit Mazeg in der Blackwater Mountain Siedlung gesprochen. Er würde mir Lyson Marrowextrakt für 800 Goldmünzen verkaufen.|||} - {55|Ich habe etwas Lyson Marrowextrakt von Mazeg gekauft. Ich sollte nach Remgard zurückkehren und es Hjaldar geben.|||} - {60|Hjaldar dankte mir für das Lyson Marrowextrakt, dass ich ihm gebracht habe.|15000||} - {61|Hjaldar kann jetzt wieder Tränke herstellen, und er würde gern mit mir handeln. Er gab mir sogar ein paar seiner ersten Tränke, die er zubereitet hatte. Ich sollte die Elwille sisters hier in Remgard wieder besuchen und ihnen einen Trank der Treffsicherheit zeigen.|||} - {70|Ich habe Elwyl einen Trank der Treffsicherheit gegeben.|||} - {71|Bedauerlicherweise haben ihre Zankereien nicht aufgehört. Im Gegensatz, sie scheinen noch wütender aufeinander zu sein, da sie bei der Farbe beide falsch lagen.|9000|1|} - }|}; - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{remgard|Alles in Ordnung|1|{ - {10|Ich habe die Brücke erreicht, die nach Remgard führt. Dem Brückenwächter zufolge ist die Stadt für Fremde gesperrt und es darf gegenwärtig auch niemand die Stadt verlassen. Es finden Untersuchungen wegen dem Verschwinden einiger Bewohner statt.|||} - {15|Ich habe angeboten, den Leuten von Remgard bei der Untersuchung im Fall der verschwundenen Bewohner zu helfen.|||} - {20|Der Brückenwächter hat mich gefragt, ob ich das verlassene Haus im Osten am Nordufer des Sees untersuchen könnte. Ich soll vor jeglichen Bewohnern die sich dort aufhalten auf der Hut sein.|||} - {30|Ich habe dem Brückenwächter berichtet, dass ich Algangror in dem verlassenen Haus getroffen habe.|3000||} - {31|Ich habe dem Brückenwächter berichtet, dass außer ein paar Ratten niemand in dem Haus war.|3000||} - {35|Ich habe Zugang zur Stadt Remgard erhalten. Ich sollte bei Jhaeld dem Stadtältesten vorsprechen, um weitere Schritte zu erfahren. Jhaeld könnte sich möglicherweise in der Taverne im Südosten der Stadt aufhalten.|||} - {40|Jhaeld war ziemlich überheblich, aber er hat mir gesagt sie hätten seit einer ganzen Weile ein Problem mit verschwindenden Bewohner. Sie haben keinen Anhaltspunkt was die Ursache dafür sein könnte.|||} - {50|Ich soll 4 Bewohner in Remgard besuchen und sie nach Hinweisen was mit den verschwundenen Bewohnern passiert sein könnte befragen.|||} - {51|Der erste ist Norath, dessen Frau Bethir verschwunden ist. Norath kann im südwestlichsten Bauernhaus gefunden werden.|||} - {52|Als zweites sollte ich mit den Rittern von Elythom hier in der Taverne reden.|||} - {53|Als drittes sollte ich mit der alten Frau Duaina in ihrem Haus im Süden reden.|||} - {54|Als letztes sollte ich mit Rothses dem Rüstungsbauer reden. Er lebt auf der Westseite der Stadt.|||} - {59|Ich habe versucht mit Jhaeld über Algangror zu reden, aber er entließ als ob er mich nicht gehört hätte.|||} - {61|Ich habe mit Norath gesprochen. Er und seine Frau hatten kürzlich einen Streit, aber er hat keine Ahnung was mit ihr passiert sein könnte.|||} - {62|Die Ritter von Elythom in der Remgard Taverne sagen eine der Ritterinnen sei kürzlich verschwunden. Allerdings hatte niemand etwas bemerkt als sie verschwunden war.|||} - {63|Duaina hat mich ih ihrer Vision gesehen. Ich habe nicht alles verstanden was sie gesagt hatte, aber was ich verstanden hatte war, dass ich und Andor teil eines größeren Plans wären. Ich frage mich was das bedeutet? Sie redete nicht über irgendwelche verschwundenen Bewohner, jedenfalls nicht so, dass ich es verstehen konnte.|||} - {64|Rothses hat mir gesagt, dass Bethir ihn in der Nacht vor ihrem Verschwinden besucht hatte, um einige Gegenstände zu verkaufen. Er hatte nicht gesehen, wo sie anschließend hingegangen ist.|||} - {70|Wie Jhaeld es wollte habe ich mit allen Bewohnern gesprochen, aber ich habe von niemanden Informationen bekommen, was mir den verschwundenen Bewohnern passiert sein könnte. Ich sollte zurück zu Jhaeld gehen und ihn nach seinen weiteren Plänen fragen.|||} - {75|Jhaeld war sehr enttäuscht, dass ich von den Bewohnern, mit denen ich sprechen sollte, nichts herausfinden konnte.|15000||} - {80|Wenn ich Jhaeld und den Bewohnern von Remgard immer noch helfen will, sollte ich an anderen Orten nach Hinweisen suchen.||1|} - {110|Jhaeld will nicht mit mir reden. Ich werde ihnen nicht helfen herauszufinden was mit den vermissten Bewohnern aus Remgard passiert ist.||1|} - }|}; -{remgard2|Was ist das für ein Gestank?|1|{ - {10|Ich habe Jhaeld dem Stadtältesten in Remgard über die Frau namens Algangror erzählt. Sie wohnt in dem verlassenen Haus im Osten des Nordstrandes von dem See außerhalb Remgard\'s.|||} - {20|Jhaeld hat mir gesagt er würde sich lieber nicht mit ihr anlegen, da er glaubt, dass sie sehr gefährlich sei. Den Wachen zuliebe wird er es nicht riskieren gegen sie vorzugehen, da er Angst hat was mit ihnen allen passieren könnte.|||} - {21|Wenn ich Jhaeld und den Bewohnern von Remgard helfen wollte, sollte ich einen Weg finden damit Algangror verschwindet. Er hat mich auch gewarnt äußerst vorsichtig zu sein.|||} - {30|Algangror hat mir gegenüber zugegeben einige Bewohner Remgard\'s verschwinden zu lassen. Aber sie würde mir nicht erzählen was mit ihnen passiert ist.|||} - {35|Ich habe Algangror angegriffen. Ich sollte mit einem Beweis sie besiegt zu haben zu Jhaeld zurückkehren wenn sie tot ist.|||} - {40|Ich habe Jhaeld erzählt, dass ich Algangror besiegt habe.|||} - {41|Jhaeld war sehr erfreut die guten Neuigkeiten zu hören. Die Bewohner aus Remgard sollten jetzt sicher sein und die Stadt kann nun für Fremde wieder geöffnet werden.|||} - {45|Dafür, dass ich die Ursache für das Verschwinden der Bewohner aus Remgard gefunden habe, sagte Jhaeld mir ich sollte mit Rothses reden. Es könnte ihm möglich sein etwas von meiner Ausrüstung zu verbessern.|21000|1|} - {46|Ervelyn, der Schneider aus Remgard, gab mir einen gefederten Hut als Dank für die Hilfe den Bewohnern Remgard\'s gegenüber.|||} - }|}; -{fiveidols|Die fünf Figuren|1|{ - {10|Algangror will, dass ich ihr bei einer Aufgabe helfe. Sie kann mir weder den Inhalt der Aufgabe beschreiben, noch ihre Beweggründe erklären. Sie hat versprochen mir ihre magische Halskette, die offensichtlich sehr wertvoll ist, zu geben, wenn ich ihr helfe.|||} - {20|Ich habe zugestimmt Algangror mit ihrer Aufgabe zu helfen.|||} - {30|Algangror will, dass ich fünf Figuren bei fünf verschiedenen Bewohnern aus Remgard aufstelle. Die Figuren soll ich jeweils nah am Bett der fünf Bewohner platzieren. Die Figuren müssen gut versteckt werden, damit sie nicht so einfach gefunden werden können.|||} - {31|Der erste Bewohner ist Jhaeld, der Stadtältesten der in der Remgard Tavern gefunden werden kann.|||} - {32|Als zweites soll ich eine Figur beim Bett von Larni dem Bauern platzieren. Er wohnt in einem Haus im Norden von Remgard.|||} - {33|Der dritte Bewohner ist Arnal der Waffenschmied, der im Nordwesten von Remgard lebt.|||} - {34|Der vierte ist Emerei, der im Südosten von Remgard gefunden werden kann.|||} - {35|Der fünfte Bewohner ist Carthe. Carthe lebt am östlichem Strand von Remgard, in der Nähe der Taverne.|||} - {37|Ich darf niemand von meiner Aufgabe oder dem Platzieren der Figuren erzählen.|||} - {41|Ich habe eine Figur bei Jhaeld\'s Bett platziert.|||} - {42|Ich habe eine Figur bei dem Bett von Larni dem Bauern platziert.|||} - {43|Ich habe eine Figur bei Arnal\'s Bett platziert.|||} - {44|Ich habe eine Figur bei Emerei\'s Bett platziert.|||} - {45|Ich habe eine Figur bei Carthe\'s Bett platziert.|||} - {50|Wie Algangror mir gesagt hat habe ich alle Figuren bei den Betten der fünf Bewohner aufgestellt. Ich sollte zu Algangror zurückkehren.|||} - {51|Algangror dankte mir, dass ich ihr geholfen hatte.|||} - {60|Sie erzählte mir ihre Geschichte, wie sie in der Stadt lebte, aber für ihren Glauben verfolgt wurde. Ihrer Meinung nach war die Verfolgung vollkommen ungerechtfertigt, da sie den Bewohnern kein Schaden zugefügt hatte.|||} - {61|Um sich an der Stadt Remgard zu rächen, hatte sie es geschafft ein paar Bewohner in ihr Haus zu locken und sie in Ratten zu verwandeln.|||} - {70|Für die Hilfe bei der Aufgabe, die sie selbst nicht durchführen konnte, gab mir Algangror ihre magische Halskette, \'Marrow\'s Verderben\'.|21000|1|} - {100|Ich habe mich entschieden Algangror bei ihrer Aufgabe nicht zu helfen.||1|} - }|}; -{kaverin|Alte Freunde?|1|{ - {10|Ich traf Kaverin in Remgard, der offenbar ein alter Bekannter von Unzel ist, der außerhalb von Fallhaven lebt.|||} - {20|Kaverin will, dass ich Unzel eine Nachricht überbringe.|||} - {21|Ich habe abgelehnt Kaverin zu helfen.||1|} - {22|Ich habe zugestimmt die Nachricht zu überbringen.|||} - {25|Kaverin hat mir die Nachricht gegeben, die ich Unzel weitergeben soll.|||} - {30|Ich habe Unzel die Nachricht überreicht. Ich sollte zu Kaverin in Remgard zurückkehren.|||} - {40|Kaverin dankte mir für das überbringen der Nachricht an Unzel.|10000||} - {45|Im Gegenzug, gab Kaverin mir eine alte Karte, die in seinen Besitz gelangt war. Offenbar führt sie zu Vacor\'s altem Versteck.|||} - {60|Kaverin war darüber dass ich Unzel getötet und Vacor geholfen hatte sehr aufgebracht. Er fing an mich zu attakieren. Ich sollte zu Vacor zurückkehren, wenn Kaverin tot ist.|||} - {70|Kaverin trug eine versiegelte Nachricht bei sich. Vacor hatte das Siegel sofort erkannt und schien sehr an der Nachricht interessiert zu sein.|||} - {75|Ich habe Vacor die Nachricht von Kaverin gegeben. Im Gegenzug gab mir Vacor eine alte Karte, die zu seinem alten Versteck führte.|10000||} - {90|Ich sollte versuchen Vacor\'s altes Versteck auf der Straße westlich des ehemaligen Gefängnisses in Flagstone, südwestlich von Fallhaven zu finden.|||} - {100|Ich habe Vacor\'s altes Versteck gefunden.||1|} - }|}; - - - diff --git a/AndorsTrail/res/values-fr/content_actorconditions.xml b/AndorsTrail/res/values-fr/content_actorconditions.xml deleted file mode 100644 index 44f543da1..000000000 --- a/AndorsTrail/res/values-fr/content_actorconditions.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - -[id|name|iconID|category|isStacking|isPositive|hasRoundEffect|round_visualEffectID|round_boostHP_Min|round_boostHP_Max|round_boostAP_Min|round_boostAP_Max|hasFullRoundEffect|fullround_visualEffectID|fullround_boostHP_Min|fullround_boostHP_Max|fullround_boostAP_Min|fullround_boostAP_Max|hasAbilityEffect|boostMaxHP|boostMaxAP|moveCostPenalty|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|]; -{bless|Bénédiction|actorconditions_1:41|0||1|||||||||||||1|||||5|||||||}; -{poison_weak|Poison d\'affaiblissement|actorconditions_1:60|3|||1|2|-1|-1|||||||||||||||||||||}; -{str|Force|actorconditions_1:70|2||1|||||||||||||1||||||||2|2|||}; -{regen|Régénération|actorconditions_1:35|0||1|1|1|1|1|||||||||0||||||||||||}; - - - -[id|name|iconID|category|isStacking|isPositive|hasRoundEffect|round_visualEffectID|round_boostHP_Min|round_boostHP_Max|round_boostAP_Min|round_boostAP_Max|hasFullRoundEffect|fullround_visualEffectID|fullround_boostHP_Min|fullround_boostHP_Max|fullround_boostAP_Min|fullround_boostAP_Max|hasAbilityEffect|boostMaxHP|boostMaxAP|moveCostPenalty|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|]; -{speed_minor|Rapidité mineure|actorconditions_1:87|2||1|||||||||||||1||2||||||||||}; -{fatigue_minor|Fatigue mineure|actorconditions_1:14|2|||0||||||0||||||1|||2|2||||-1|-1|||}; -{feebleness_minor|Maladresse mineure au combat|actorconditions_1:74|1|||||||||||||||1||||||||-3|-3|||}; -{bleeding_wound|Blessure saignante|actorconditions_2:0|3|1||1|0|-1|-1|||||||||||||||||||||}; -{rage_minor|Rage de folie furieuse mineure|actorconditions_1:90|1||1|0|-1|||||||||||1|35||||60|||||-90|-1|}; -{blackwater_misery|Abattement de Blackwater|actorconditions_1:58|3|||||||||||||||1||||1|-50|-50||||||}; -{intoxicated|Intoxication|actorconditions_2:1|1||1|||||||||||||1|15|||1|-30|||4|4|||}; -{dazed|Hébétude|actorconditions_1:65|1|||||||||||||||1||||||||||-40||}; - - diff --git a/AndorsTrail/res/values-fr/content_conversationlist.xml b/AndorsTrail/res/values-fr/content_conversationlist.xml deleted file mode 100644 index 9f2e2e28f..000000000 --- a/AndorsTrail/res/values-fr/content_conversationlist.xml +++ /dev/null @@ -1,455 +0,0 @@ - - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{mikhail_start_select|||{{|mikhail_start_select2|mikhail_bread:100||||}{|mikhail_bread_continue|mikhail_bread:10||||}{|mikhail_start_select2|||||}}|}; -{mikhail_start_select2|||{{|mikhail_start_select_default|mikhail_rats:100||||}{|mikhail_rats_continue|mikhail_rats:10||||}{|mikhail_start_select_default|||||}}|}; -{mikhail_start_select_default|||{{|mikhail_visited|andor:1||||}{|mikhail_gamestart|||||}}|}; -{mikhail_gamestart|Ah, parfait, tu es réveillé.||{{N|mikhail_visited|||||}}|}; -{mikhail_visited|Je ne trouve nulle part ton frère Andor. Il n\'est pas rentré depuis son départ d\'hier.|{{0|andor|1|}}|{{N|mikhail3|||||}}|}; -{mikhail3|Cela n\'est pas grave, il sera probablement bientôt de retour.||{{N|mikhail_default|||||}}|}; -{mikhail_default|Puis-je faire quelque chose d\'autre pour t\'aider ?||{{As-tu d\'autres tâches à me confier ?|mikhail_tasks|||||}{Pourrais-tu m\'en dire plus au sujet d\'Andor ?|mikhail_andor1|||||}}|}; -{mikhail_tasks|Ah oui, tu pourrais m\'aider à faire deux-trois choses. Le pain et les rats. Par quoi veux-tu commencer ?||{{Que veux-tu dire au sujet du pain ?|mikhail_bread_select|||||}{Que veux-tu dire au sujet des rats ?|mikhail_rats_select|||||}{Qu\'importe, parlons d\'autre chose.|mikhail_default|||||}}|}; -{mikhail_andor1|Comme je te le disais, Andor est sorti hier et n\'est pas revenu depuis lors. Je commence à m\'inquiéter à son sujet. S\'il te plaît, part à sa recherche, il a dit qu\'il n\'en aurait pas pour très longtemps.||{{N|mikhail_andor2|||||}}|}; -{mikhail_andor2|Peut-être est-il allé dans la caverne qui sert de réserve et est resté coincé. Il peut aussi être allé s\'entrainer encore avec son épée en bois dans la maison de Leta. S\'il te plaît, pars à sa recherche au village.||{{N|mikhail_default|||||}}|}; -{mikhail_bread_select|||{{|mikhail_bread_complete2|mikhail_bread:100||||}{|mikhail_bread_continue|mikhail_bread:10||||}{|mikhail_bread_start|||||}}|}; -{mikhail_bread_start|Ah, j\'ai failli oublier. Si tu as le temps, pourrais-tu aller chez Mara à la halle du village pour m\'acheter un peu de pain.|{{0|mikhail_bread|10|}}|{{N|mikhail_default|||||}}|}; -{mikhail_bread_continue|M\'as tu trouvé du pain chez Mara à la halle du village ?||{{Oui, le voilà.|mikhail_bread_complete||bread|1|0|}{Non, pas encore.|mikhail_default|||||}}|}; -{mikhail_bread_complete|Merci beaucoup, je vais pouvoir prendre mon petit déjeuner. Voici quelques pièces pour ton aide.|{{0|mikhail_bread|100|}{1|gold20||}}|{{N|mikhail_default|||||}}|}; -{mikhail_bread_complete2|Merci de m\'avoir rapporté le pain tout à l\'heure.||{{De rien.|mikhail_default|||||}}|}; -{mikhail_rats_select|||{{|mikhail_rats_complete2|mikhail_rats:100||||}{|mikhail_rats_continue|mikhail_rats:10||||}{|mikhail_rats_start|||||}}|}; -{mikhail_rats_start|J\'ai vu quelques rats dans le jardin tout à l\'heure. Pourrais-tu nous débarasser de tous ceux que tu trouves ?|{{0|mikhail_rats|10|}}|{{Je me suis déjà occupé des rats.|mikhail_rats_complete||tail_trainingrat|2|0|}{D\'accord, je vais aller voir au jardin.|mikhail_rats_start2|||||}}|}; -{mikhail_rats_start2|Si les rats te blessent, reviens ici et repose toi dans le lit. Tu pourras ainsi recouvrer toutes tes forces.||{{N|mikhail_rats_start3|||||}}|}; -{mikhail_rats_start3|Au fait n\'oublie pas de faire l\'inventaire de ton équipement. Tu as probablement toujours le vieil anneau que je t\'avais donné. N\'oublie pas de le porter.||{{Très bien, je comprends. Je peux me reposer ici si je suis blessé, et je dois vérifier mon inventaire pour tous les objets utiles que je peux avoir.|mikhail_default|||||}}|}; -{mikhail_rats_continue|As-tu tué les deux rats du jardin ?||{{Oui, je m\'en suis occupé.|mikhail_rats_complete||tail_trainingrat|2|0|}{Non, pas encore.|mikhail_rats_start2|||||}}|}; -{mikhail_rats_complete|Ah tu l\'as fait ? Bravo, merci pour ton aide !\n\nSi tu es blessé, reviens à ton lit ici pour te reposer et reprendre des forces.|{{0|mikhail_rats|100|}}|{{N|mikhail_default|||||}}|}; -{mikhail_rats_complete2|Merci de m\'avoir débarassé des rats tout à l\'heure.\n\nSi tu es blessé, reviens à ton lit ici pour te reposer et reprendre des forces.||{{N|mikhail_default|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{leta1|Hé, c\'est ma maison, sors de là !||{{Mais j\'étais juste ...|leta2|||||}{Que se passe-t-il avec votre mari Oromir ?|leta_oromir_select|||||}}|}; -{leta2|File, gamin, sors de ma maison !||{{Que se passe-t-il avec votre mari Oromir ?|leta_oromir_select|||||}}|}; -{leta_oromir_select|||{{|leta_oromir_complete2|leta:100||||}{|leta_oromir1|||||}}|}; -{leta_oromir1|Tu as appris quelque chose au sujet de mon mari ? Il devait m\'aider à la ferme aujourd\'hui, mais comme d\'habitude il n\'est pas là.\nPffff.||{{Je ne sais pas.|leta_oromir2|||||}{Oui, je l\'ai trouvé. Il se cache dans le bosquet à l\'Est.|leta_oromir_complete|leta:20||||}}|}; -{leta_oromir2|Si tu le vois, dis-lui de rappliquer vite et de m\'aider à m\'occuper de la maison.\nEt maintenant, file !|{{0|leta|10|}}||}; -{leta_oromir_complete|Il se cache ? Ce n\'est pas étonnant. Je vais aller le chercher et lui montrer qui est le chef ici.\nMerci du renseignement.|{{0|leta|100|}}||}; -{leta_oromir_complete2|Merci de m\'avoir indiqué où se cachait Oromir tout à l\'heure. Je vais aller le chercher dans une minute.|||}; -{oromir1|Oh, tu m\'as fait peur.\nBonjour.||{{Hello|oromir2|||||}}|}; -{oromir2|Je me cache ici à cause de mon épouse. Elle est toujours après moi parce que je ne l\'aide pas assez à la ferme. S\'il te plaît, ne lui dis pas que je suis ici.|{{0|leta|20|}}|{{Ok.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{audir1|Bienvenue dans mon échope !\n\nVeuillez prendre la peine de regarder tous mes articles.||{{Montrez-moi vos articles s\'il vous plaît.|S|||||}}|}; -{arambold1|Nom d\'un chien, pourrais-je jamais dormir avec des ivrognes qui chantent ainsi ?\n\nQuelqu\'un devrait s\'en occuper.||{{Puis-je me reposer ici ?|arambold2|||||}{Avez-vous quelque chose à marchander ?|S|||||}}|}; -{arambold2|Bien sûr gamin,tu peux te reposer ici.\n\nPrends le lit que tu veux.||{{Merci, au revoir|X|||||}}|}; -{drunk1|Et glou, et glou, et glou, buvons encore !\nBois, bois, bois jusqu\'à ce que tu roules par terre.\n\nHé gamin, tu veux te joindre à nous ?||{{Non, merci.|X|||||}{Peut-être un autre jour.|X|||||}}|}; -{mara_default|Ne t\'occupe pas de ces ivrognes, ils sont toujours là à causer du désordre.\n\nTu veux manger quelque chose ?||{{As-tu quelque chose à marchander ?|S|||||}}|}; -{mara1|||{{|mara_thanks|odair:100||||}{|mara_default|||||}}|}; -{mara_thanks|J\'ai appris que tu avais aidé Odair à débarasser la vielle réserve. Merci beaucoup, nous allons pouvoir nous en servir à nouveau.||{{C\'était avec plaisir.|mara_default|||||}}|}; -{farm1|Laisse-moi tranquille, j\'ai du boulot.||{{As-tu vu mon frère Andor ?|farm_andor|||||}}|}; -{farm2|Quoi ? Tu ne vois pas que je suis occupé ? Vas embêter quelqu\'un d\'autre !||{{As-tu vu mon frère Andor ?|farm_andor|||||}}|}; -{farm_andor|Andor ? Non, je ne l\'ai pas vu récemment|||}; -{snakemaster|Bien, bien, qui voilà donc ? Un visiteur, comme c\'est gentil. Je suis impressionné que tu sois parvenu ici à travers tous mes adorateurs.\n\nPrépare-toi à mourir, pitoyable créature.||{{Bien, j\'attendais un beau combat !|F|||||}{Voyons qui de nous deux périra.|F|||||}{Pitié, ne me faites pas de mal !|F|||||}}|}; -{haunt|Oh mortel, délivre-moi de ce monde maudit !||{{Oh, Je vais vous libérer de ce pas.|F|||||}{Vous voulez dire en vous tuant ?|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{tharal1|Marche dans la lueur de l\'Ombre, mon enfant.||{{Avez-vous quelque chose à marchander ?|S|||||}{Qu\'en est-il de la potion d\'os ?|tharal_bonemeal_select|bonemeal:10||||}}|}; -{tharal_bonemeal_select|||{{|tharal_bonemeal4|bonemeal:30||||}{|tharal_bonemeal1|||||}}|}; -{tharal_bonemeal1|La potion d\'os ? Nous ne devons pas parler de cela. Le seigneur Geomyr a publié un décret. Ce n\'est plus autorisé.||{{S\'il vous plaît ?|tharal_bonemeal2_1|||||}}|}; -{tharal_bonemeal2_1|Non, nous ne devrions vraiment pas en parler.||{{Oh, allez ...|tharal_bonemeal2|||||}}|}; -{tharal_bonemeal2|Bon, puisque tu insistes. Rapporte moi cinq ailes d\'insectes que je pourrais utiliser pour concocter mes potions, et peut-être t\'en dirais-je plus.|{{0|bonemeal|20|}}|{{Voici les ailes d\'insectes.|tharal_bonemeal3||insectwing|5|0|}{Très bien, je vous les rapporterai.|X|||||}}|}; -{tharal_bonemeal3|Merci mon petit. Je savais que je pouvais compter sur toi|{{0|bonemeal|30|}}|{{N|tharal_bonemeal4|||||}}|}; -{tharal_bonemeal4|Alors la potion d\'os. Préparée avec les bons ingrédients, cela peut être l\'un des soins les plus efficaces à notre disposition.||{{N|tharal_bonemeal5|||||}}|}; -{tharal_bonemeal5|Nous en faisions grand usage auparavant. Mais maintenant, ce bâtard de seigneur Geomyr en a interdit toute utilisation.||{{N|tharal_bonemeal6|||||}}|}; -{tharal_bonemeal6|Comment vais-je pouvoir soigner les gens maintenant ? En utilisant les potions classiques ? Bah, elles sont tellement inefficaces.||{{N|tharal_bonemeal7|||||}}|}; -{tharal_bonemeal7|Je connais quelqu\'un qui a toujours de la potion d\'os disponible si tu cela t\'intéresse. Va parler à Thoronir, un confrère prêtre à Fallhaven. Donne-lui le mot de passe « Lueur de l\'Ombre ».||{{Merci, au revoir.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{gruil1|Psst, hé tu veux j\'ai des trucs qui peuvent t\'intéresser ?||{{Bien sûr, marchandons.|S|||||}{J\'ai appris que tu avais parlé avec mon frère il y a quelques temps.|gruil_select|andor:10||||}}|}; -{gruil_select|||{{|gruil_return|andor:30||||}{|gruil2|||||}}|}; -{gruil2|Ton frère ? Ah, tu veux parler d\'Andor ? J\'ai peut-être quelques informations, mais je ne te les donnerais pas pour rien. Rapporte-moi une glande à venin de l\'un de ces serpents venimeux et peut-être que je parlerais.|{{0|andor|20|}}|{{Voici une glande à venin pour toi.|gruil_complete||gland|1|0|}{D\'accord, j\'en rapporterais une.|X|||||}}|}; -{gruil_complete|Merci beaucoup gamin. C\'est parfait.|{{0|andor|30|}}|{{N|gruil_andor1|||||}}|}; -{gruil_return|Écoute gamin, je t\'ai déjà tout dit.||{{N|gruil_andor1|||||}}|}; -{gruil_andor1|Je lui ai parlé hier. Il m\'a demandé si je connaissais un certain Umar ou quelque chose de ce genre. Je n\'ai aucune idée de qui il parlait.||{{N|gruil_andor2|||||}}|}; -{gruil_andor2|Il paraissait vraiment en colère et est parti en trombes. Un truc à propos de la guilde des voleurs de Fallhaven.||{{N|gruil_andor3|||||}}|}; -{gruil_andor3|C\'est tout ce que je sais. Tu devrais aller demander du côté de Fallhaven. Demande à mon ami Gaela, il en sait certainement plus.||{{Merci, au revoir.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{leonid1|Bonjour gamin, tu es le fils de Mikhail, non ? Et tu as un frère aussi.\n\nJe suis Leonid, le régent du village de Crossglen.||{{Avez-vous vu mon frère Andor ?|leonid_andor|||||}{Que pouvez-vous me dire à propos de Crossglen ?|leonid_crossglen|||||}{Cela ne fait rien, à plus tard.|leonid_bye|||||}}|}; -{leonid_andor|Ton frère ? Non, je ne l\'ai pas vu de la journée. Je crois que je l\'ai vu ici hier discutant avec Gruil. Peut-être en sait-il plus ?|{{0|andor|10|}}|{{Merci, je vais aller parler à Gruil. Je voulais vous demander autre chose.|leonid_continue|||||}{Merci, je vais aller parler à Gruil.|leonid_bye|||||}}|}; -{leonid_continue|Puis-je t\'aider à quelque chose ?||{{Avez-vous vu mon frère Andor ?|leonid_andor|||||}{Que pouvez-vous me dire à propos de Crossglen ?|leonid_crossglen|||||}{Cela ne fait rien, à plus tard.|leonid_bye|||||}}|}; -{leonid_crossglen|Comme tu le sais, nous sommes ici au village de Crossglen. C\'est avant tout une communauté agricole.||{{N|leonid_crossglen1|||||}}|}; -{leonid_crossglen1|Nous avons Audir et sa forge au Sud-Ouest, la cabane de Leta et de son mari à l\'Ouest, la halle du village ici et la cabane de ton père au Nord-Ouest.||{{N|leonid_crossglen2|||||}}|}; -{leonid_crossglen2|C\'est à peu près tout. Nous essayons de vivre en paix.||{{Y a-t-il eu quelque évènement récent au village ?|leonid_crossglen3|||||}{Revenons-en à ce dont nous parlions plus tôt.|leonid_continue|||||}}|}; -{leonid_crossglen3|Tu as pu remarquer quelques troubles il y a de cela quelques semaines. Certains villageois ce sont battus à propos d\'un nouveau décret du seigneur Geomyr.||{{N|leonid_crossglen4|||||}}|}; -{leonid_crossglen4|Le seigneur Geomyr a promulgé l\'interdiction de la potion d\'os comme médicament. Certains villageois voulaient que nous nous opposions aux règles du seigneur Geomyr et que nous continuions à l\'utiliser|{{0|bonemeal|10|}}|{{N|leonid_crossglen4_1|||||}}|}; -{leonid_crossglen4_1|Tharal, notre prêtre, était particulièrement en colère et suggérait que nous fassions quelque chose au sujet du seigner Geomyr.||{{N|leonid_crossglen5|||||}}|}; -{leonid_crossglen5|D\'autres villageois pensaient que nous devions obéir au décret du seigneur Geomyr.\n\nPersonnellement, je ne me suis pas encore décidé.||{{N|leonid_crossglen6|||||}}|}; -{leonid_crossglen6|D\'un côté, le seigneur Geomyr aide le village en lui apportant sa protection. *il pointe les soldats dans la halle*||{{N|leonid_crossglen7|||||}}|}; -{leonid_crossglen7|Mais d\'un autre côté, les impôts et les nouvelles règles sur ce qui est interdit font vraiment du tort à Crossglen.||{{N|leonid_crossglen8|||||}}|}; -{leonid_crossglen8|Quelqu\'un devrait aller au château de Geomyr et plaider la cause de Crossglen auprès du régent.|{{0|crossglen|1|}}|{{N|leonid_crossglen9|||||}}|}; -{leonid_crossglen9|Pour le moment, nous avons banni toute utilisation de la potion d\'os comme substance de soin.||{{Merci pour ces informations. Je voulais vous demander autre chose.|leonid_continue|||||}{Merci pour ces informations. Au revoir.|leonid_bye|||||}}|}; -{leonid_bye|Que l\'Ombre soit avec toi.||{{Que l\'Ombre soit avec vous.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{odair1|Ah, c\'est toi. Tu es bien comme ton frère. Toujours à faire des histoires.||{{N|odair_select|||||}}|}; -{odair_select|||{{|odair_complete2|odair:100||||}{|odair_continue|odair:10||||}{|odair2|||||}}|}; -{odair2|Hmm, il y a peut-être quelque chose que tu pourrais faire pour moi. Penses-tu pouvoir m\'aider à accomplir une petite tâche ?||{{Dis-m\'en plus au sujet de cette tâche.|odair3|||||}{Bien sûr, à condition que cela me rapporte quelque chose.|odair3|||||}}|}; -{odair3|Je suis allé récemment dans cette caverne *il pointe vers l\'Ouest*, pour vérifier nos réserves. Apparemment, la caverne est infestée de rats.||{{N|odair4|||||}}|}; -{odair4|J\'ai vu en particulier un rat qui était plus gros que les autres. Penses-tu être capable de les éliminer ?||{{Bien sûr, je t\'aiderais pour que Crossglen puisse à nouveau utiliser la caverne comme réserve.|odair5|||||}{Bien sûr, je vais t\'aider. Mais c\'est uniquement parce que je peux y gagner quelque chose.|odair5|||||}{Non, désolé|odair_cowards|||||}}|}; -{odair5|Je voudrais que tu ailles dans cette caverne et que tu tues le gros rat, cela pourrait peut-être stopper l\'infestation de la caverne et nous pourrions l\'utiliser à nouveau comme réserve.|{{0|odair|10|}}|{{Ok|X|||||}{À bien y réfléchir, je ne pense pas pouvoir t\'aider.|odair_cowards|||||}}|}; -{odair_cowards|Je ne pensais pas que tu le ferais. Toi et ton frère avez toujours été des trouillards.||{{Bye|X|||||}}|}; -{odair_continue|As-tu tué le gros rat de la caverne à l\'Ouest ?||{{Oui, j\'ai tué le gros rat.|odair_complete||tail_caverat|1|0|}{Qu\'est ce que j\'étais supposé faire exactement ?|odair5|||||}{Non, pas encore.|odair_cowards|||||}}|}; -{odair_complete|Merci beaucoup de ton aide gamin ! Peut-être que toi et ton frère n\'êtes pas si trouillards que je le pensais finalement. Tiens, prends ces pièces pour ton aide.|{{0|odair|100|}{1|gold20||}}|{{Merci|X|||||}}|}; -{odair_complete2|Merci beaucoup pour ton aide tout à l\'heure. Nous allons désormais pouvoir utiliser à nouveau notre vieille caverne comme réserve.||{{Bye|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{jan_start_select|||{{|jan_complete2|jan:100||||}{|jan_return|jan:10||||}{|jan_default|||||}}|}; -{jan_default|Bonjour petit. Laisse moi à mes lamentations.||{{Que ce passe-t-il ?|jan_default2|||||}{Désirez-vous en parler ?|jan_default2|||||}{Entendu, au revoir.|X|||||}}|}; -{jan_default2|Oh, c\'est tellement triste. Je ne veux vraiment pas en parler.||{{Si, faites-le s\'il vous plaît.|jan_default3|||||}{D\'accord, au revoir.|X|||||}}|}; -{jan_default3|Très bien, je pense que je peux t\'en parler. Tu me paraît être un brave petit.||{{N|jan_default4|||||}}|}; -{jan_default4|Mon ami Gandir, son ami Irogotu et moi même sommes venu ici creuser cette fosse. Nous avions entendu dire qu\'il y avait un trésor caché là-dessous.||{{N|jan_default5|||||}}|}; -{jan_default5|Nous avons creusé et avons finalement débouché sur un dédale sous-terrain. C\'est à ce moment que nous les avons trouvés. Les créatures et les bestioles.||{{N|jan_default6|||||}}|}; -{jan_default6|Ah ces créatures. Satané bâtards. Ils m\'ont quasiment tué.\n\nGandir et moi avons dit à Irogotu que nous devions arrêter de creuser et partir pendant que nous le pouvions encore.||{{N|jan_default7|||||}}|}; -{jan_default7|Mais Irogotu voulait continuer plus profondément dans ces oubliettes. Lui et Gandir se sont disputés et ont commencés à se battre.||{{N|jan_default8|||||}}|}; -{jan_default8|C\'est à ce moment là que c\'est arrivé.\n\n*snif*\n\nOh, qu\'avons nous fait ?||{{Continuez s\'il vous plaît|jan_default9|||||}}|}; -{jan_default9|Irogotu a tué Gandir de ses mains nues. On pouvait voir la fureur dans ses yeux. Il semblait presque y prendre plaisir.||{{N|jan_default10|||||}}|}; -{jan_default10|Je me suis enfui et n\'ai pas osé redescendre à cause des créatures et à cause d\'Irogotu lui-même.||{{N|jan_default11|||||}}|}; -{jan_default11|Ah ce satané Irogotu. Si seulement je pouvais l\'atteindre. Je lui montrerais de quel bois je me chauffe.||{{Penses-tu que tu pourrais m\'aider ?|jan_default11_1|||||}}|}; -{jan_default11_1|Penses-tu que tu pourrais m\'aider ?||{{Bien sûr, s\'il y a un trésor sur lequel je puisse mettre la main.|jan_default12|||||}{Bien sûr. Irogotu doit payer pour ce qu\'il a fait.|jan_default12|||||}{Non, merci, je préfère ne pas me mêler à cela. Cela paraît dangereux.|X|||||}}|}; -{jan_default12|Vraiment ? Tu penses que tu peux m\'aider ? Hmm, oui, tu pourrais peut-être y arriver. Méfies-toi de ces bestioles cependant, ce sont vraiment des bâtards coriaces.|{{0|jan|10|}}|{{N|jan_default13|||||}}|}; -{jan_default13|Si tu veux vraiment m\'aider, descends chercher Irogotu dans ce dédale et ramène-moi l\'anneau de Gandir.||{{Entendu.|jan_default14|||||}{Background|jan_background|||||}{Au revoir.|X|||||}}|}; -{jan_default14|Reviens me voir lorsque tu auras terminé. Ramène-moi l\'anneau de Gandir qu\'a Irogotu dans ce dédale.||{{Ok, bye|X|||||}}|}; -{jan_return|Re-bonjour petit. As-tu trouvé Irogotu dans ce dédale ?||{{Non, pas encore.|jan_default14|||||}{Pouvez-vous me raconter une nouvelle fois votre histoire ?|jan_background|||||}{Oui, j\'ai tué Irogotu.|jan_complete||ring_gandir|1|0|}}|}; -{jan_background|N\'as tu pas écouté la première fois que je te l\'ai racontée ? Dois-je vraiment te la répéter une nouvelle fois ?||{{Oui, s\'il vous plaît, racontez moi à nouveau ce qui s\'est passé.|jan_default3|||||}{Je n\'ai pas vraiment écouté la première fois que vous me l\'avez racontée. C\'est quoi cette histoire de trésor ?|jan_default4|||||}{Non, c\'est bon, je m\'en souviens maintenant.|jan_default14|||||}}|}; -{jan_complete2|Merci de t\'être occupé d\'Irogotu plus tôt ! Je suis à jamais ton débiteur.||{{Au revoir.|X|||||}}|}; -{jan_complete|Attends, quoi ? Tu es vraiment descendu et tu reviens vivant ? Comment as-tu réussi à faire cela ? Mince, je suis quasiment mort dans ces grottes.\n\nOh merci de tout cœur de m\'avoir rapporté l\'anneau de Gandir ! Maintenant, j\'ai un souvenir de lui.|{{0|jan|100|}}|{{Je suis heureux d\'avoir pu vous aider. Au revoir.|X|||||}{Que l\'Ombre soit avec vous. au revoir.|X|||||}{Qu\'importe. Je ne l\'ai fait que pour le butin.|X|||||}}|}; - -{irogotu|Bien, qui voilà donc. Voici un nouvel aventurier qui vient pour me voler mon butin. C\'est MA CAVERNE. Ce trésor restera À MOI !||{{Avez-vous tué Gandir ?|irogotu1|jan:10||||}}|}; -{irogotu1|Ce roquet de Gandir ? Il me gênait. Je me suis servi de lui pour pouvoir descendre plus profondément dans ces grottes.||{{N|irogotu2|||||}}|}; -{irogotu2|De toute façon, je ne l\'aimais pas beaucoup.||{{Il méritait probablement de mourir. Portait-il un anneau ?|irogotu3|||||}{Jan m\'a parlé d\'un anneau.|irogotu3|||||}}|}; -{irogotu3|NON ! Tu ne l\'auras pas. Il est à moi ! Qui es-tu donc gamin, à venir me déranger ainsi ?||{{Je ne suis plus un gamin ! Maintenant, donnez-moi cet anneau !|irogotu4|||||}{Donnez-moi cet anneau et nous pourrions bien sortir tous les deux vivants de cet endroit.|irogotu4|||||}}|}; -{irogotu4|Non. Si tu le veux, il faudra me le prendre de force, et je dois te prévenir que mes pouvoirs sont grands. De toute façon, tu n\'oseras probablement pas t\'attaquer à moi.||{{Très bien, voyons de nous deux qui mourra.|F|||||}{Par l\'Ombre, Gandir sera vengé.|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fallhaven_citizen1|Bonjour vous. Beau temps, n\'est-ce pas ?||{{Avez-vous vu mon frère Andor ?|fallhaven_andor_1|||||}}|}; -{fallhaven_citizen2|Bonjour. Vous désirez quelque chose ?||{{Avez-vous vu mon frère Andor ?|fallhaven_andor_2|||||}}|}; -{fallhaven_citizen3|Salut. Puis-je vous aider ?||{{Avez-vous vu mon frère Andor ?|fallhaven_andor_3|||||}}|}; -{fallhaven_citizen4|Vous êtes le gamin du village de Crossglen, non ?||{{Avez-vous vu mon frère Andor ?|fallhaven_andor_4|||||}}|}; -{fallhaven_citizen5|Hors de mon chemin paysan.|||}; -{fallhaven_citizen6|Bonjour à vous.||{{Avez-vous vu mon frère Andor ?|fallhaven_andor_6|||||}}|}; -{fallhaven_andor_1|Non, désolé. Je n\'ai vu personne qui corresponde à cette description.|||}; -{fallhaven_andor_2|Un autre gamin dans votre genre vous dites ? Hmm, laissez-moi réfléchir.||{{N|fallhaven_andor_1|||||}}|}; -{fallhaven_andor_3|Hmm, J\'ai peut-être vu quelqu\'un ressemblant à cette description il y a quelques jours. Je ne me souviens pas où cependant.|||}; -{fallhaven_andor_4|Ah oui, il y avait un autre jeune du village de Crossglen ici il y a quelques jours. Je ne suis pas sûr qu\'il corresponde à votre description cependant.||{{N|fallhaven_andor_4_1|||||}}|}; -{fallhaven_andor_4_1|Il y avait des gens louches qui lui tournaient autour. Je n\'ai rien vu de plus que cela.|||}; -{fallhaven_andor_6|Non, je ne l\'ai pas vu.|||}; -{fallhaven_guard|Circulez.|||}; - -{fallhaven_priest|Que l\'Ombre soit avec toi.||{{Pouvez-vous m\'en dire plus au sujet de l\'Ombre ?|priest_shadow_1|||||}}|}; -{priest_shadow_1|L\'Ombre nous protège. Elle nous garde à l\'abri du péril et nous réconforte lorsque nous dormons.||{{N|priest_shadow_2|||||}}|}; -{priest_shadow_2|Elle nous suit parout où nous allons. Va avec l\'Ombre mon enfant.||{{Que l\'Ombre soit avec vous.|X|||||}{Qu\'importe, au revoir.|X|||||}}|}; - -{rigmor|Tiens, bonjour toi ! N\'es-tu pas un adorable petit bonhomme.||{{Avez-vous vu mon frère Andor ?|rigmor_1|||||}{Je dois vraiment m\'en aller.|rigmor_leave_select|||||}}|}; -{rigmor_1|Ton frère, dis-tu ? Son nom serait Andor ? Non, je ne me souviens pas avoir rencontré quelqu\'un comme cela.||{{Je dois vraiment m\'en aller.|rigmor_leave_select|||||}}|}; -{rigmor_leave_select|||{{|rigmor_thanks|calomyran:100||||}{|X|||||}}|}; -{rigmor_thanks|J\'ai entendu dire que tu avais aidé mon vieux monsieur à retrouver son livre, merci. Il parle de ce livre depuis des semaines. C\'est bien triste, il a tendance à tout oublier.||{{C\'était avec plaisir. Au revoir.|X|||||}{Vous devriez garder un œil sur lui, ou des choses graves pourraient lui arriver.|X|||||}{Qu\'importe, je ne l\'ai fait que pour l\'argent.|X|||||}}|}; - -{fallhaven_clothes|Bienvenue dans mon échoppe. Laissez-vous tenter par mon grand choix de vêtements fins et de bijoux.||{{Montrez-moi vos articles.|S|||||}}|}; -{fallhaven_potions|Bienvenue dans ma boutique. Voyez donc mes potions pour toutes les occasions.||{{Montrez-moi de quelles potions vous disposez.|S|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bucus_welcome|Re-bonjour, bon retour à la ... Oh, excusez-moi, je vous ai pris pour quelqu\'un d\'autre.||{{Avez-vous vu mon frère Andor ?|bucus_andor_select|||||}{Que savez-vous de la guilde des voleurs ?|bucus_thieves_select|||||}}|}; -{bucus_andor_select|||{{|bucus_umar_1|bucus:100||||}{|bucus_andor_no_1|||||}}|}; -{bucus_andor_no_1|Comme c\'est intéressant que tu me poses cette question. Et si je l\'avais vu ? Pourquoi devrais-je te le dire ?||{{N|bucus_andor_no_2|||||}}|}; -{bucus_andor_no_2|Non, je n\'ai rien à dire. Maintenant, vas t\'en.|||}; -{bucus_thieves_select|||{{|bucus_thieves_complete_3|bucus:100||||}{|bucus_thieves_continue|bucus:10||||}{|bucus_thieves_select2|||||}}|}; -{bucus_thieves_select2|||{{|bucus_thieves_1|andor:40||||}{|bucus_thieves_no|||||}}|}; -{bucus_thieves_no|Qu, quoi ? Non, je ne sais rien de tout cela.|||}; -{bucus_umar_1|C\'est bon gamin. Tu as fait tes preuves. Oui, j\'ai vu un autre gamin ressemblant à cela se baladant dans les environs il y a quelques jours.||{{N|bucus_umar_2|||||}}|}; -{bucus_umar_2|Je ne sais pas ce qu\'il cherchait cependant. Il n\'arrêtait pas de poser des questions à tout bout de champ. Un peu comme toi. *rire sarcastique*||{{N|bucus_umar_3|||||}}|}; -{bucus_umar_3|De toute façon, c\'est tout ce que je sais. Tu devrais aller en parler avec Umar, il en sait sûrement plus. En bas de cette trappe par là.|{{0|andor|50|}}|{{Ok, bye|X|||||}}|}; -{bucus_thieves_1|Qui t\'as dit ça ? Argh\n\nD\'accord, tu nous as trouvés. Et maintenant ?||{{Puis-je rejoindre la guilde des voleurs ?|bucus_thieves_2|||||}}|}; -{bucus_thieves_2|Ha ! Rejoindre la guilde des voleurs ?! Toi ?!\n\nTu es un gamin marrant.||{{Je suis sérieux.|bucus_thieves_3|||||}{Oui, un vrai boute-en-train, pas vrai ?|bucus_thieves_3|||||}}|}; -{bucus_thieves_3|D\'accord, je vais te dire gamin. Rends-moi un service et je pourrais peut-être envisager te donner quelques renseignements supplémentaires.||{{De quel genre de service parlons-nous ?|bucus_thieves_4|||||}{Tant qu\'il y a quelque butin à la clef, ça me va !|bucus_thieves_4|||||}}|}; -{bucus_thieves_4|Ramène-moi la clef de Luthor et nous pourrons parler un peu plus. Je ne sais rien sur la clef elle-même, mais la rumeur dit qu\'elle est quelque part dans les catacombes sous l\'église de Fallhaven.|{{0|bucus|10|}}|{{Ok, cela semble assez facile.|X|||||}}|}; -{bucus_thieves_continue|Alors, où en es-tu de ta quête de la clef de Luthor ?||{{Qu\'est-ce que j\'étais supposé faire, déjà ?|bucus_thieves_4|||||}{La voici, la clef de Luthor.|bucus_thieves_complete_1||key_luthor|1|0|}{Je suis toujours à sa recherche. Au revoir.|X|||||}}|}; -{bucus_thieves_complete_1|Mince, tu as réellement récupéré la clef de Luthor ? Je ne pensais pas que tu y arriverais.|{{0|bucus|100|}}|{{N|bucus_thieves_complete_2|||||}}|}; -{bucus_thieves_complete_2|Bravo gamin.||{{N|bucus_thieves_complete_3|||||}}|}; -{bucus_thieves_complete_3|Bon, causons. Que veux-tu savoir ?||{{Que savez-vous de mon frère Andor ?|bucus_umar_1|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fallhaven_drunk|Pas de problème. Non m\'sieuuuuuur ! Plus faire d\'ennui maintenant. Je reste assis dehors maintenant.||{{N|fallhaven_drunk_2|||||}}|}; -{fallhaven_drunk_2|Attends, qui t\'es toi ? C\'est toi le garde ?||{{Oui|fallhaven_drunk_3_1|||||}{Non|fallhaven_drunk_3_2|||||}}|}; -{fallhaven_drunk_3_1|Oh, monsieur. Tu vois, j\'fais plus de problème maintenant. Je reste assis comme tu l\'as dit maintenant, c\'est bon ?||{{N|fallhaven_drunk_4|||||}}|}; -{fallhaven_drunk_3_2|Ah, bien. Ce garde m\'a jeté hors de la taverne. Si je le revois, je lui montrerais un truc ou deux.||{{N|fallhaven_drunk_4|||||}}|}; -{fallhaven_drunk_4|Boire, boire, boire encore et encore. Boire encore un petit coup ... Eh, comment ça faisait déjà ?||{{N|fallhaven_drunk_5|||||}}|}; -{fallhaven_drunk_5|Tu me parlais ? Où c\'était déjà ? Ah oui, on était dans ce donjon.||{{N|fallhaven_drunk_6|||||}}|}; -{fallhaven_drunk_6|Ou alors c\'était une maison ? Je n\'arrive pas à me rappeler.||{{N|fallhaven_drunk_7|||||}}|}; -{fallhaven_drunk_7|Non, non, c\'était dehors ! Je m\'en souviens maintenent.||{{N|fallhaven_drunk_7_select|||||}}|}; -{fallhaven_drunk_7_select|||{{|fallhaven_drunk_11|fallhavendrunk:100||||}{|fallhaven_drunk_8|||||}}|}; -{fallhaven_drunk_8|C\'est là que ...\n\nHé, où est passé mon hydromel ? C\'est toi qui l\'a fauché ?||{{Oui|fallhaven_drunk_9_1|||||}{Non|fallhaven_drunk_9_2|||||}}|}; -{fallhaven_drunk_9_1|Alors tu va me l\'a rendre ! Ou alors tu vas m\'en acheter d\'autre.|{{0|fallhavendrunk|10|}}|{{Voilà ton hydromel.|fallhaven_drunk_10||mead|1|0|}{D\'accord, je vais t\'en acheter un peu.|X|||||}{Non, je ne pense pas pouvoir t\'aider. Au revoir.|X|||||}}|}; -{fallhaven_drunk_9_2|Alors j\'ai dû la boire. Tu pourrais m\'en ramener un broc ?|{{0|fallhavendrunk|10|}}|{{Voilà ton hydromel.|fallhaven_drunk_10||mead|1|0|}{D\'accord, je vais t\'en acheter un peu.|X|||||}{Non, je ne pense pas pouvoir t\'aider. Au revoir.|X|||||}}|}; -{fallhaven_drunk_10|Oh douces gorgées de plaisir. Puisse l\'Ooooombre être avec toi gamin. *roule des yeux*||{{N|fallhaven_drunk_11|||||}}|}; -{fallhaven_drunk_11|*prends une gorgée d\'hydromel*\n\nÇa c\'est de la bonne !||{{N|fallhaven_drunk_12|||||}}|}; -{fallhaven_drunk_12|Ouais, moi et Unnmir, on a eu du bon temps. Vas lui demander, tiens. Tu devrais le trouver dans la grange un peu à l\'Est d\'ici. Je m\'demande *burps* où est passé le trésor.|{{0|fallhavendrunk|100|}}|{{Trésor ? Ça m\'intéresse ! Je vais de ce pas rechercher Unnmir.|X|||||}{Merci pour l\'histoire. Au revoir.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fallhaven_oldman|||{{|fallhaven_oldman_complete_2|calomyran:100||||}{|fallhaven_oldman_continue|calomyran:10||||}{|fallhaven_oldman_1|||||}}|}; -{fallhaven_oldman_1|S\'il vous plaît, accepteriez-vous d\'aider un vieil homme ?||{{Bien sûr, que puis-je faire pour vous ?|fallhaven_oldman_2|||||}{Peut-être. Y a-t-il quelque récompense à la clef ?|fallhaven_oldman_2|||||}{Non, je n\'aide pas les vieillards dans votre genre. Au revoir.|X|||||}}|}; -{fallhaven_oldman_2|J\'ai perdu il y a peu un livre qui m\'était précieux.||{{N|fallhaven_oldman_3|||||}}|}; -{fallhaven_oldman_3|Je sais que je l\'avais encore hier .Maintenant, je ne le retrouve plus.||{{N|fallhaven_oldman_4|||||}}|}; -{fallhaven_oldman_4|Je ne perds jamais rien ! Quelqu\'un a dû me le voler à mon avis.||{{N|fallhaven_oldman_5|||||}}|}; -{fallhaven_oldman_5|Voudriez-vous partir à la recherche de mon livre ? Il s\'intitule « les secrets de Calomyran ».||{{N|fallhaven_oldman_6|||||}}|}; -{fallhaven_oldman_6|Je n\'ai pas la moindre idée de l\'endroit où il pourrait être. Vous pourriez demander à Arcir, il semble adorer ses livres. *montre la maison au Sud*|{{0|calomyran|10|}}|{{D\'accord, je vais demander à Arcir. Au revoir.|X|||||}}|}; -{fallhaven_oldman_continue|Comment avance la recherche de mon livre ? Il s\'intitule « les secrets de Calomyran ». L\'avez-vous retrouvé ?||{{Oui, je l\'ai retrouvé.|fallhaven_oldman_complete||calomyran_secrets|1|0|}{Non, je ne l\'ai pas encore trouvé.|fallhaven_oldman_6|||||}{Pourriez-vous me répéter votre histoire s\'il vous plaît ?|fallhaven_oldman_2|||||}}|}; -{fallhaven_oldman_complete|Mon livre ! Merci, merci ! Où était-il ? Non, ne me le dites pas. Tenez, prenez cet argent pour votre dédommagement.|{{0|calomyran|100|}{1|gold51||}}|{{Merci, au revoir.|X|||||}{Enfin un peu d\'or. Salut.|X|||||}}|}; -{fallhaven_oldman_complete_2|Merci mille fois d\'avoir retrouvé mon livre !|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{nocmar|Bonjour, je suis Nocmar.||{{Cet endroit ressemble à une forge. Avez-vous quelque chose à vendre ?|nocmar_trade_select|||||}{Unnmir m\'envoie.|nocmar_quest_select|nocmar:10||||}{Au revoir.|X|||||}}|}; -{nocmar_quest_select|||{{|nocmar_complete_5|nocmar:200||||}{|nocmar_continue|nocmar:20||||}{|nocmar_quest|||||}}|}; -{nocmar_trade_select|||{{|S|nocmar:200||||}{|nocmar_trade_1|||||}}|}; -{nocmar_trade_1|Je n\'ai rien à vendre. J\'avais beaucoup de choses avant, mais je n\'ai plus le droit de vendre quoi que ce soit désormais.||{{N|nocmar_trade_2|||||}}|}; -{nocmar_trade_2|À une époque, j\'étais le plus grand forgeron de Fallhaven. C\'est alors que ce batard de seigneur Geomyr m\'a interdit l\'usage de l\'acier-cœur.||{{N|nocmar_trade_3|||||}}|}; -{nocmar_trade_3|Par décret du seigneur Geomyr, personne à Fallhaven n\'est autorisé ne serait-ce qu\'à utiliser des armes en acier-cœur. Ne parlons même pas d\'en faire commerce.||{{N|nocmar_trade_4|||||}}|}; -{nocmar_trade_4|Maintenant, je dois cacher les quelques armes qui me restent. Et je n\'oserais pas les vendre à qui que ce soit.||{{N|nocmar_trade_4_1|||||}}|}; -{nocmar_trade_4_1|Maintenant que le seigneur Geomyr l\'a banni, je n\'ai plus vu l\'acier-cœur luire depuis plusieurs années.||{{N|nocmar_trade_5|||||}}|}; -{nocmar_trade_5|Je ne peux donc malheureusement vous vendre aucune de mes armes.|||}; -{nocmar_quest|Unnmir vous a envoyé dites-vous ? Je suppose que ce doit être important alors.|{{0|nocmar|20|}}|{{N|nocmar_quest_1|||||}}|}; -{nocmar_quest_1|Bon, ces vieilles armes ont perdu leur lueur interne à force de ne plus être utilisées depuis aussi longtemps.||{{N|nocmar_quest_2|||||}}|}; -{nocmar_quest_2|Pour faire luire à nouveau l\'acier-cœur, il me faudrait une pierre-cœur.||{{N|nocmar_quest_3|||||}}|}; -{nocmar_quest_3|Il y a des années, nous combattions les liches d\'Undertell. Je ne sais pas si elles hantent toujours cet endroit.||{{Undertell ? Qu\'est-ce que c\'est ?|nocmar_quest_4|||||}}|}; -{nocmar_quest_4|Undertell ; le puits des âmes perdues. Allez vers le Sud et pénétrez dans les grottes des nains. Suivez l\'odeur épouvantable à partir de là.||{{N|nocmar_quest_5|||||}}|}; -{nocmar_quest_5|Méfiez-vous des liches d\'Undertell si elles sont toujours là. Ces choses peuvent vous tuer rien qu\'avec leur regard.|||}; -{nocmar_continue|Alors, avez-vous trouvé la pierre-cœur ?||{{Oui, je l\'ai enfin trouvée.|nocmar_complete||heartstone|1|0|}{Pourriez-vous me raconter votre histoire une nouvelle fois ?|nocmar_quest_1|||||}{Non, pas encore.|nocmar_continue_2|||||}}|}; -{nocmar_continue_2|Continuez à cherchez s\'il vous plaît. Unnmir a probablement prévu de vous faire faire quelque chose d\'important.|||}; -{nocmar_complete|Par l\'Ombre. Vous avez vraiment trouvé une pierre-cœur. Je n\'aurais jamais pensé en revoir une de mon vivant.|{{0|nocmar|200|}}|{{N|nocmar_complete_2|||||}}|}; -{nocmar_complete_2|Voyez-vous cette lueur ? Regardez ses pulsations.||{{N|nocmar_complete_3|||||}}|}; -{nocmar_complete_3|Vite. Faisons luire à nouveau ces vieilles armes en acier-cœur.||{{N|nocmar_complete_4|||||}}|}; -{nocmar_complete_4|*Nocmar met la pierre-cœur au milieu des armes d\'acier-cœur*||{{N|nocmar_complete_5|||||}}|}; -{nocmar_complete_5|Vous le sentez ? L\'acier-cœur luit à nouveau.||{{Montrez-moi les articles que vous avez.|S|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bela|Bienvenue à la taverne de Fallhaven. Prenez place où vous voulez.||{{Montrez-moi ce que vous avez à boire|S|||||}{Avez-vous des chambres libres ?|bela_room_select|||||}}|}; -{bela_room_1|Une chambre ne vous coûtera que 10 ors.||{{Acheter [10 ors]|bela_room_2||gold|10|0|}{Non merci.|bela|||||}}|}; -{bela_room_2|Merci. Prenez la dernière chambre au fond.|{{0|fallhaventavern|10|}}|{{Merci. J\'avais autre chose à vous dire.|bela|||||}{Merci. Au revoir.|X|||||}}|}; -{bela_room_3|J\'espère que la chambre vous convient. C\'est la dernière au fond.||{{Merci. J\'avais autre chose à vous dire.|bela|||||}{Merci. Au revoir.|X|||||}}|}; -{bela_room_select|||{{|bela_room_3|fallhaventavern:10||||}{|bela_room_1|||||}}|}; -{ganos|Vous me rappelez quelqu\'un.||{{Avez-vous quelque chose à marchander ?|S|||||}{Auriez-vous des informations concernant la guilde des voleurs ?|ganos_1|andor:30||||}}|}; -{ganos_1|La guilde des voleurs ? Comment saurais-je ? Est-ce que je ressemble à un voleur d\'après vous ? Hrmpf.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{arcir_start|Bonjour, je suis Arcir.||{{J\'ai vu votre statue d\'Elythara en bas.|arcir_elythara_1|arcir:10||||}{Vous semblez beaucoup aimer vos livres.|arcir_books_1|||||}}|}; -{arcir_anythingelse|Y a-t-il autre chose que vous vouliez savoir ?||{{J\'ai vu votre statue d\'Elythara en bas.|arcir_elythara_1|arcir:10||||}{Vous semblez beaucoup aimer vos livres.|arcir_books_1|||||}}|}; -{arcir_elythara_1|Oh, vous avez trouvé ma statue à la cave ?\n\nOui, Elythara me protège.||{{Okay.|arcir_anythingelse|||||}}|}; -{arcir_books_1|Je trouve beaucoup de plaisir dans mes livres. Ils contiennent le savoir accumulé depuis les générations passées.||{{Auriez-vous un livre intitulé « les secrets de Calomyran » ?|arcir_calomyran_select|calomyran:10||||}{D\'accord.|arcir_anythingelse|||||}}|}; -{arcir_calomyran_1|« les secrets de Calomyran » ? Hmm, oui, je dois en avoir un exemplaire à la cave.||{{N|arcir_calomyran_2|||||}}|}; -{arcir_calomyran_2|Le vieux Benradas est venu ici la semaine dernière, il voulait me vendre ce livre. Comme ce n\'est pas vraiment mon style de livre, j\'ai décliné son offre.||{{N|arcir_calomyran_3|||||}}|}; -{arcir_calomyran_3|Il était très en colère que je n\'apprécie pas son livre et il me l\'a jeté en se ruant hors de la maison.||{{N|arcir_calomyran_4|||||}}|}; -{arcir_calomyran_4|Pauvre vieux Benradas, il a probablement oublié qu\'il l\'avait laissé ici. Il a tendance à tout oublier.||{{N|arcir_anythingelse|||||}}|}; -{arcir_calomyran_5|Vous êtes allé en bas et vous ne l\'avez pas trouvé ? Et il y avait une note dites-vous ? J\'imagine que quelqu\'un est entré chez moi.||{{N|arcir_calomyran_6|||||}}|}; -{arcir_calomyran_select|||{{|arcir_calomyran_complete|calomyran:100||||}{|arcir_calomyran_5|calomyran:20||||}{|arcir_calomyran_1|||||}}|}; -{arcir_calomyran_complete|J\'ai entendu dire que vous aviez retrouvé le livre et l\'aviez rendu au vieux Benradas. Merci. Il a tendance à tout oublier.||{{N|arcir_anythingelse|||||}}|}; -{arcir_calomyran_6|Que disait la note ?\n\nLarcal ... Je le connais. Toujours à faire des problèmes. Il est souvent dans la grange à l\'Est d\'ici.||{{Merci, au revoir.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{chapelgoer|Ombre, étreins-moi.|||}; -{thoronir_default|Trouve la paix dans l\'Ombre, mon enfant.||{{Que pouvez-vous me dire au sujet de l\'Ombre ?|thoronir_shadow_1|||||}{Pouvez-vous me parler un peu plus de l\'église ?|thoronir_church_1|||||}{Les potions d\'os sont-elles prêtes ?|thoronir_trade_bonemeal|bonemeal:100||||}}|}; -{thoronir_shadow_1|L\'Ombre nous protège des dangers de la nuit. Elle nous garde à l\'abri et nous réconforte lorsque nous dormons.||{{Tharal m\'a envoyé et m\'a dit de vous donner le mot de passe « lueur de l\'Ombre ».|thoronir_tharal_select|bonemeal:30||||}{Que l\'Ombre soit avec vous.|thoronir_default|||||}{Cela ne veut rien dire pour moi.|thoronir_default|||||}}|}; -{thoronir_church_1|C\'est notre chapelle de piété à Fallhaven. Notre communauté compte sur nous pour les aider.||{{N|thoronir_church_2|||||}}|}; -{thoronir_church_2|Cette église se dresse depuis des centaines d\'années ; elle nous a protégé des pilleurs de tombes.||{{N|thoronir_church_3|||||}}|}; -{thoronir_tharal_select|||{{|thoronir_trade_bonemeal|bonemeal:100||||}{|thoronir_tharal_1|||||}}|}; -{thoronir_tharal_1|Lueur de l\'Ombre, mon enfant. Ainsi c\'est mon vieil ami Tharal du village de Crossglen qui t\'a envoyé ?||{{Que pouvez-vous m\'apprendre sur la potion d\'os ?|thoronir_tharal_2|||||}}|}; -{thoronir_church_3|Les catacombes sous l\'église sont le lieu où se trouvent les restes de nos anciens seigneurs. On dit que notre grand roi Luthor serait enseveli ici.||{{Quelqu\'un est-il déjà entré dans ces catacombes ?|thoronir_church_4|bucus:10||||}{Je voulais vous dire autre chose.|thoronir_default|||||}}|}; -{thoronir_church_4|Personne n\'a le droit de descendre dans les catacombes hormis Athamyr, mon apprenti. Il est le seul à s\'y être rendu depuis des années.|{{0|bucus|20|}}|{{D\'accord, je vais aller le voir.|thoronir_default|||||}}|}; -{thoronir_tharal_2|Chut, il ne faut pas parler aussi fort de la potion d\'os. Comme tu le sais, le seigneur Geomyr à interdit tout usage de la potion d\'os.||{{N|thoronir_tharal_3|||||}}|}; -{thoronir_tharal_3|Quand l\'interdiction a été prononcée, je n\'ai pas osé en garder et j\'ai jeté tout ce que j\'avais. Lorsque j\'y repense, je crois que c\'était un geste inconsidéré.||{{N|thoronir_tharal_4|||||}}|}; -{thoronir_tharal_4|Penses-tu pouvoir me trouver 5 os de squelettes que je pourrais utiliser pour concocter à nouveau de la potion d\'os ? La potion d\'os est très efficace pour soigner les vieilles blessures.||{{Bien sûr, je devrais pouvoir faire cela.|thoronir_tharal_5|||||}{J\'ai ramené ces os pour vous.|thoronir_tharal_complete||bone|5|0|}}|}; -{thoronir_tharal_5|Merci, reviens bientôt. J\'ai entendu dire qu\'il y avait quelques morts-vivants du côté d\'une vieille maison abandonnée au Nord de Fallhaven. Peut-être pourrais-tu trouver des os par là bas ?|{{0|bonemeal|40|}}|{{D\'accord, je vais aller cherchez de ce côté.|thoronir_default|||||}}|}; -{thoronir_tharal_complete|Merci, ces os seront parfaits. Je peux maintenant concocter à nouveau de la potion d\'os pour te soigner.|{{0|bonemeal|100|}}|{{N|thoronir_complete_2|||||}}|}; -{thoronir_complete_2|Laisse-moi un peu de temps pour concocter des potions d\'os. Ce sont des potions de soins très efficaces. Reviens dans quelques temps.|||}; -{thoronir_trade_bonemeal|Oui, les potions d\'os sont prêtes. Utilises-les avec précaution, et ne te fais pas prendre par les gardes. Nous n\'avons plus le droit de les utiliser.||{{Montrez-moi les potions que vous avez déjà faites.|S|||||}{Je voulais vous parler d\'autre chose.|thoronir_default|||||}}|}; -{catacombguard|Retourne sur tes pas tant que tu le peux encore, mortel. Cet endroit n\'est pas pour toi. Seule la mort t\'attend ici.||{{Très bien. Je repars.|X|||||}{Poussez-vous, je dois descendre plus bas dans les catacombes.|catacombguard1|||||}{Par l\'Ombre, tu ne m\'arrêteras pas.|catacombguard1|||||}}|}; -{catacombguard1|Nooooonn, tu ne passeras pas !||{{Très bien, en garde.|F|||||}}|}; -{luthor|*hissss* Quel mortel trouble mon repos ?||{{Par l\'Ombre, qu\'êtes-vous ?|F|||||}{Enfin un combat qui en vaut la peine ! Je l\'attendais.|F|||||}{Qu\'importe, finissons cette tâche.|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{athamyr|Marche avec l\'Ombre.||{{Êtes-vous descendu dans les catacombes ?|athamyr_select|bucus:20||||}}|}; -{athamyr_1|Oui, je suis déjà allé dans les catacombes sous l\'église de Fallhaven.||{{N|athamyr_2|||||}}|}; -{athamyr_2|Mais je suis le seul à avoir à la fois l\'autorisation et la bravoure pour y descendre.||{{Comment puis-je obtenir la permission d\'y descendre également ?|athamyr_3|||||}}|}; -{athamyr_3|Tu veux descendre dans les catacombes ? Hmm, on pourrait peut-être s\'arranger.||{{N|athamyr_4|||||}}|}; -{athamyr_4|Apporte-moi l\'un de ces délicieux plats de viande préparée de la taverne, et je te donnerais l\'autorisation d\'entrer dans les catacombes de l\'église de Fallhaven.|{{0|bucus|30|}}|{{Voici la viande préparée.|athamyr_complete||meat_cooked|1|0|}{Très bien, je vais vous en ramener.|X|||||}}|}; -{athamyr_complete_2|Tu as ma permission d\'entrer dans les catacombes de l\'église de Fallhaven.|{{0|bucus|50|}}||}; -{athamyr_select|||{{|athamyr_complete_2|bucus:40||||}{|athamyr_1|||||}}|}; -{athamyr_complete|Merci,cela ira très bien.|{{0|bucus|40|}}|{{N|athamyr_complete_2|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{larcal|Je n\'ai pas de temps à perdre avec toi, gamin. Vas-t-en.||{{J\'ai trouvé une note portant votre nom alors que je cherchais le livre « les secrets de Calomyran ».|larcal_1|calomyran:20||||}}|}; -{larcal_1|Voyez-vous ça ? Insinuerais-tu que je sois descendu dans la cave d\'Arcir ?||{{N|larcal_2|||||}}|}; -{larcal_2|Après-tout, c\'est bien possible. De toute façon, ce livre est à moi.||{{N|larcal_3|||||}}|}; -{larcal_3|Écoute, ne nous énervons pas. Tu t\'en vas, tu oublies ce livre et peut-être que je te laisserais vivre.||{{Très bien, gardez vore livre.|larcal_4|||||}{Non, vous allez me donner ce livre.|larcal_5|||||}}|}; -{larcal_4|Tu es un bon garçon. Maintenant, file.|||}; -{larcal_5|Là, tu commences à m\'ennuyer gamin. Vas-t-en tant que tu es encore capable de le faire.||{{Très bien, je m\'en vais.|X|||||}{Non, ce livre n\'est pas à vous !|larcal_6|||||}}|}; -{larcal_6|Tu es encore là ? Et bien si tu veux tellement avoir ce livre, il va falloir que tu me le prennes !||{{Enfin un bagarre. Je l\'attendais !|F|||||}{J\'aurais préféré que cela n\'en arrive pas là..|F|||||}{Très bien, je m\'en vais.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{unnmir|||{ - {|unnmir_r|nocmar:10||||} - {|unnmir_0|||||} - }|}; -{unnmir_r|Hello again. You should go talk to Nocmar.||{{N|unnmir_13|||||}}|}; -{unnmir_0|Bonjour.||{{J\'ai croisé un ivrogne devant la taverne qui m\'a raconté une histoire à propos de vous deux.|unnmir_1|fallhavendrunk:100||||}}|}; -{unnmir_1|Ce vieux radoteur de la taverne t\'a raconté notre histoire ?||{{N|unnmir_2|||||}}|}; -{unnmir_2|C\'est toujours la même vieille histoire. Nous voyagions ensemble il y a de cela quelques années.||{{N|unnmir_3|||||}}|}; -{unnmir_3|La grande aventure, tu vois, avec les épées et les sorts.||{{N|unnmir_4|||||}}|}; -{unnmir_4|Et puis nous nous sommes arrêtés. Je ne sais pas très bien pour quelle raison, je suppose que nous étions fatigués de cette vie errante. Nous nous sommes installés ici à Fallhaven.||{{N|unnmir_5|||||}}|}; -{unnmir_5|C\'est une jolie petite ville. Il y a bien tous ces voleurs, mais ils ne m\'embêtent pas.||{{N|unnmir_6|||||}}|}; -{unnmir_6|Alors quelle est ton histoire, gamin ? Comment es-tu arrivé ici à Fallhaven ?||{{Je suis à la recherche de mon frère.|unnmir_7|||||}}|}; -{unnmir_7|Ah, oui, je comprends. Ton frère est probablement parti en quête de quelque donjon, à l\'aventure. *roule des yeux*||{{N|unnmir_8|||||}}|}; -{unnmir_8|Ou alors il est parti dans l\'une des grandes villes au Nord.||{{N|unnmir_9|||||}}|}; -{unnmir_9|Je ne peux guère le blâmer d\'avoir envie de voir du pays.||{{N|unnmir_10|||||}}|}; -{unnmir_10|Au fait, est-ce que toi non plus tu n\'aurais pas envie de devenir aventurier ?||{{Si|unnmir_11|||||}{Non, pas vraiment.|unnmir_12|||||}}|}; -{unnmir_11|C\'est bien. Je vais te donner un conseil, gamin. *ricane*. Vas voir Nocmar à l\'Ouest de la ville. Dis-lui que je t\'ai envoyé.|{{0|nocmar|10|}}|{{N|unnmir_13|||||}}|}; -{unnmir_12|Sage décision. L\'aventure est cause de bien des cicatrices. Si tu vois ce que je veux dire.|||}; -{unnmir_13|Sa maison est juste au Sud-Ouest de la taverne.||{{Merci, je vais aller le voir.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{gaela|||{ - {|gaela_r|andor:40||||} - {|gaela_0|||||} - }|}; -{gaela_r|Hello again. I hope you will find what you are looking for.|||}; -{gaela_0|Prompte est ma lame. Empoisonnée est ma langue. À moins que ce ne soit le contraire ?||{{On dirait qu\'il y a beaucoup de voleurs à Fallhaven.|gaela_1|||||}}|}; -{gaela_1|Oui, ils sont très présents ici.||{{Qu\'y a-t-il d\'autre ?|gaela_2|andor:30||||}}|}; -{gaela_2|J\'ai entendu dire que tu avais aidé Gruil, un compagnon voleur du village de Crossglen.||{{N|gaela_3|||||}}|}; -{gaela_3|J\'ai aussi eu vent que tu recherchais quelqu\'un. Peut-être pourrais-je t\'aider.||{{N|gaela_4|||||}}|}; -{gaela_4|Tu devrais aller parler avec Bucus, dans la maison en ruines un peu au Sud-Ouest d\'ici. Dis-lui que tu veux en savoir plus sur la guilde des voleurs.|{{0|andor|40|}}|{{Merci, je vais aller lui parler.|gaela_5|||||}}|}; -{gaela_5|Considère que c\'est une faveur en remerciement de l\'aide que tu as apportée à Gruil.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{vacor|||{{|vacor_return_complete0|vacor:60||||}{|vacor_return2|vacor:40||||}{|vacor_42|vacor:30||||}{|vacor_select1|||||}}|}; -{vacor_select1|||{{|vacor_return1|vacor:20||||}{|vacor_begin|||||}}|}; -{vacor_begin|Bonjour.||{{N|vacor_2|||||}}|}; -{vacor_2|Qui es-tu ? Le genre aventurier ? Hmm. Tu pourrais peut-être m\'être utile.||{{N|vacor_3|||||}}|}; -{vacor_3|Veux-tu m\'aider ?||{{Bien sûr, que puis-je faire pour vous ?|vacor_4|||||}{Non, pourquoi vous aiderais-je ?|vacor_bah|||||}}|}; -{vacor_bah|Bah, vile créature. Je savais bien que je n\'aurais pas dû te demander. Laisse-moi maintenant.|||}; -{vacor_4|Il y a quelques temps, je travaillais sur un sort de scission au sujet duquel j\'avais lu quelque chose.||{{N|vacor_5|||||}}|}; -{vacor_5|Ce sort était supposé, comment dire, ouvrir de nouvelles possibilités.||{{N|vacor_6|||||}}|}; -{vacor_6|Heu, oui, c\'est ça, le sort de scission ouvrira de nouvelles choses. Ahem.||{{N|vacor_7|||||}}|}; -{vacor_7|J\'étais donc là à travailler dur pour assembler le nécessaire.||{{N|vacor_8|||||}}|}; -{vacor_8|Soudainement, une bande de voyoux est arrivée et a commencé à me tourmenter.||{{N|vacor_9|||||}}|}; -{vacor_9|Ils se disaient messagers de l\'Ombre, et voulaient me dissuader de faire mon sort.||{{N|vacor_10|||||}}|}; -{vacor_10|C\'est grotesque, n\'est-ce pas ? J\'étais tellement près d\'obtenir le pouvoir !||{{N|vacor_11|||||}}|}; -{vacor_11|Oh, ce pouvoir que je pourrais avoir. Mon cher sort de scission.|{{0|vacor|10|}}|{{N|vacor_12|||||}}|}; -{vacor_12|Enfin, alors que j\'étais en train de parachever mon sort de scission, ces bandits sont venus et me l\'ont dérobé.||{{N|vacor_13|||||}}|}; -{vacor_13|Les bandits ont pris mes notes pour le sort et se sont enfuis avant que je ne puisse appeler la garde.||{{N|vacor_14|||||}}|}; -{vacor_14|Après des années de travail, je ne puis me souvenir des derniers éléments du sort.||{{N|vacor_15|||||}}|}; -{vacor_15|Penses-tu que tu pourrais m\'aider à le récupérer ? Alors je pourrais enfin avoir le pouvoir !||{{N|vacor_16|||||}}|}; -{vacor_16|Bien entendu, tu serais largement récompensé pour ta participation à ma conquête de ce pouvoir.||{{Une récompense ? J\'en suis !|vacor_17|||||}{Très bien, je vais vous aider.|vacor_17|||||}{Non merci, j\'ai l\'impression qu\'il vaudrait mieux que je ne me mêle pas de cela.|vacor_bah|||||}}|}; -{vacor_17|Je savais que je ne pouvais faire confiance ... Attends, quoi ? Tu as vraiment dit oui ? Ah, très bien alors.||{{N|vacor_18|||||}}|}; -{vacor_18|Bon, trouve les quatre parties de mon sort de scission que ces bandits m\'ont prises et ramène-les moi.|{{0|vacor|20|}}|{{N|vacor_19|||||}}|}; -{vacor_19|Il y avait quatre bandits et ils sont partis vers le Sud de Fallhaven après m\'avoir attaqué.||{{N|vacor_20|||||}}|}; -{vacor_20|Tu devrais rechercher ces quatre bandits dans la zone au Sud de Fallhaven.||{{N|vacor_21|||||}}|}; -{vacor_21|Dépêche-toi s\'il te plaît ! Je suis tellement pressé d\'ouvrir la faille ... Heu, de finir mon sort. Il n\'y a aucun mal à cela, non ?|||}; -{vacor_return1|Re-bonjour. Comment avance la recherche des parties manquantes de mon sort de scission ?||{{Je les ai toutes trouvées.|vacor_40||vacor_spell|4|0|}{Qu\'est-ce que j\'étais censé faire déjà ?|vacor_18|||||}{Pourriez-vous me répéter toute l\'histoire ?|vacor_4|||||}}|}; -{vacor_40|Oh, tu as trouvé les quatre parties ? Dépêche-toi, donne-les moi.|{{0|vacor|30|}}|{{N|vacor_41|||||}}|}; -{vacor_41|Oui, ce sont bien les quatre parties que ces bandits m\'ont prises.||{{N|vacor_42|||||}}|}; -{vacor_42|Maintenant je vais pouvoir finir le sort de scission et ouvrir la faille de l\'Ombre ... Heu, je veux dire ouvrir les nouvelles possibilités. Oui, c\'est ce que je voulais dire.||{{N|vacor_43|||||}}|}; -{vacor_43|Le seul obstacle qui m\'empêche encore de continuer mes recherches sur le sort de scission est ce stupide étudiant Unzel.||{{N|vacor_44|||||}}|}; -{vacor_44|Unzel était mon apprenti il y a quelques temps. Mais il a commencé à m\'ennuyer avec ses questions et ses discours sur la moralité.||{{N|vacor_45|||||}}|}; -{vacor_45|Il disait que mon sort allait à l\'encontre de la volonté de l\'Ombre.||{{N|vacor_46|||||}}|}; -{vacor_46|Bah, l\'Ombre. Qu\'a-t-elle jamais fait pour MOI ?!||{{N|vacor_47|||||}}|}; -{vacor_47|Il faut qu\'un jour je puisse lancer mon sort et me débarasser de l\'Ombre.||{{N|vacor_48|||||}}|}; -{vacor_48|Qu\'importe. Je suis sûr que c\'est Unzel qui m\'a envoyé ces bandits, et si je ne l\'arrête pas, il m\'en enverra probablement d\'autres.||{{N|vacor_49|||||}}|}; -{vacor_49|Il faut que tu me trouves Unzel et que tu le tues pour moi. Tu le trouveras probablement au Sud-Ouest de Fallhaven.|{{0|vacor|40|}}|{{N|vacor_50|||||}}|}; -{vacor_50|Rapporte-moi sa chevalière comme preuve que tu l\'as tué.||{{N|vacor_51|||||}}|}; -{vacor_51|Dépêche-toi maintenant, je ne peux plus attendre. La pouvoir doit être à MOI !|||}; -{vacor_return2|Re-bonjour. As-tu progressé ?||{{À propos d\'Unzel...|vacor_return2_2|||||}{Pourriez-vous me répéter l\'histoire ?|vacor_43|||||}}|}; -{vacor_return2_2|As-tu déjà tué Unzel pour moi ? Ramène-moi sa chevalière lorsque tu l\'auras tué.||{{Je me suis occupé de lui. Voici sa chevalière.|vacor_60||ring_unzel|1|0|}{J\'ai écouté la version d\'Unzel et décidé de me ranger à ses côtés. L\'Ombre doit être préservée.|vacor_70|vacor:51||||}}|}; -{vacor_60|Ha ha, Unzel est mort ! Cette créature pathétique est partie !|{{0|vacor|60|}}|{{N|vacor_61|||||}}|}; -{vacor_61|Je vois le sang sur tes bottes. Et j\'ai même pû te faire tuer ses subalternes auparavant.||{{N|vacor_62|||||}}|}; -{vacor_62|C\'est vraiment un grand jour. J\'aurais bientôt le pouvoir !||{{N|vacor_63|||||}}|}; -{vacor_63|Allez, prends ces pièces pour ton aide.|{{1|gold200||}}|{{N|vacor_64|||||}}|}; -{vacor_64|Maintenant, laisse-moi, j\'ai du travail à faire avant de pouvoir lancer le sort de scission.|||}; -{vacor_return_complete0|||{ - {|vacor_msg_16|kaverin:90||||} - {|vacor_msg_9|kaverin:75||||} - {|vacor_msg1|kaverin:60|kaverin_message|1|1|} - {|vacor_return_complete|||||} - }|}; -{vacor_return_complete|Re-bonjour, mon ami assassin. Bientôt, mon sort de scission sera prêt.|||}; -{vacor_70|Quoi ? Il t\'a raconté son histoire ? Et tu l\'as cru ?||{{N|vacor_71|||||}}|}; -{vacor_71|Je te donne encore une chance. Soit tu tues Unzel pour moi, auquel cas je te récompenserais avec largesse, soit tu devras me combattre.||{{Non. Vous devez être arrêté.|vacor_72|||||}{D\'accord, je vais y réfléchir.|X|||||}}|}; -{vacor_72|Bah, vile créature. Je savais que je ne pouvais pas te faire confiance. Maintenant tu vas mourir aux côtés de ta précieuse Ombre.|{{0|vacor|54|}}|{{Pour l\'Ombre !|F|||||}{Vous devez être arrêté.|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{unzel_1|Bonjour, je suis Unzel.||{{Est-ce votre campement ?|unzel_2|||||}{Vacor m\'a envoyé pour vous tuer.|unzel_3|vacor:40||||}}|}; -{unzel_2|Oui, c\'est mon campement. C\'est un joli coin, non ?||{{Au revoir|X|||||}}|}; -{unzel_3|Ah, Vacor vous a envoyé ? Je suppose que j\'aurais du me douter qu\'il enverrait quelqu\'un un jour ou l\'autre.||{{N|unzel_4|||||}}|}; -{unzel_4|Très bien alors. Tuez-moi si vous devez le faire, ou alors permettez-moi de vous raconter ma version de l\'histoire.||{{Ha, je vais me faire un plaisir de vous tuer !|unzel_fight|||||}{Je vous écoute.|unzel_5|||||}}|}; -{unzel_fight|Très bien alors, en garde..|{{0|vacor|53|}}|{{A fight it is!|F|||||}}|}; -{unzel_5|Merci de m\'écouter.||{{N|unzel_10|||||}}|}; -{unzel_10|Vacor et moi voyagions ensemble. Puis il est devenu obsédé par ses sortilèges.||{{N|unzel_11|||||}}|}; -{unzel_11|Il a même commencé à mettre en doute l\'Ombre. Je savais que je devais faire quelque chose pour l\'arrêter !||{{N|unzel_12|||||}}|}; -{unzel_12|J\'ai commencé à l\'interroger sur ce qu\'il comptait faire, mais il n\'en faisait qu\' sa tête.||{{N|unzel_13|||||}}|}; -{unzel_13|Au bout d\'un moment, il est devenu obsédé par l\'idée d\'un sort de scission. Il disait que cela lui octroirait un pouvoir sans limite contre l\'Ombre.||{{N|unzel_14|||||}}|}; -{unzel_14|Il n\'y avait plus qu\'une seule chose à faire. Je suis parti et j\'ai cherché comment l\'empêcher de créer ce sort de scission.||{{N|unzel_15|||||}}|}; -{unzel_15|J\'ai envoyé des amis lui prendre le sort.||{{N|unzel_16_select|||||}}|}; -{unzel_16_select|||{{|unzel_16_2|vacor:50||||}{|unzel_16_1|||||}}|}; -{unzel_16_1|Et nous voila.||{{J\'ai tué les quatre bandits que vous avez envoyé à Vacor.|unzel_17|||||}}|}; -{unzel_16_2|Et nous voila.||{{N|unzel_19|||||}}|}; -{unzel_17|Quoi ? Vous avez tué mes quatre amis ? Argh, je sens la rage m\'étreindre.||{{N|unzel_18|||||}}|}; -{unzel_18|Mais je réalise aussi que tout ceci est la faute de Vacor. Je vais vous donner une chance maintenant, choisissez avec sagesse.||{{N|unzel_19|||||}}|}; -{unzel_19|Soit vous vous rangez du côté de Vacor et de son sort de scission, soit vous vous rangez du côté de l\'Ombre et vous m\'aidez à me débarasser de lui. Qui allez-vous aider ?|{{0|vacor|50|}}|{{Je suis à votre côté. L\'Ombre ne doit pas être perturbée.|unzel_20|||||}{Je suis avec Vacor.|unzel_fight|||||}}|}; -{unzel_20|Merci mon ami. Nous allons sauver l\'Ombre des agissements de Vacor.|{{0|vacor|51|}}|{{N|unzel_21|||||}}|}; -{unzel_21|Vous devriez aller lui parler de l\'Ombre.|||}; -{unzel_return_1|Bienvenue. Avez-vous parlé à Vacor ?||{{Oui, je me suis occupé de lui.|unzel_30||ring_vacor|1|0|}{Non, pas encore.|X|||||}}|}; -{unzel_30|Vous l\'avez tué ? Je vous remercie mon ami. Maintenant nous sommes à l\'abri du sort de scission de Vacor. Tenez, prenez ces pièces pour votre aide.|{{0|vacor|61|}{1|gold200||}}|{{Que l\'Ombre soit avec vous.|X|||||}{Merci.|X|||||}}|}; -{unzel_40|Merci pour votre aide. Maintenant, nous sommes à l\'abri du sort de scission de Vacor.||{{I have a message for you from Kaverin in Remgard|unzel_msg1|kaverin:25|kaverin_message|1|1|}}|}; -{unzel|||{{|unzel_msg_r0|kaverin:30||||}{|unzel_40|vacor:61||||}{|unzel_return_1|vacor:51||||}{|unzel_1|||||}}|}; - - - diff --git a/AndorsTrail/res/values-fr/content_itemlist.xml b/AndorsTrail/res/values-fr/content_itemlist.xml deleted file mode 100644 index 7bf8253ac..000000000 --- a/AndorsTrail/res/values-fr/content_itemlist.xml +++ /dev/null @@ -1,354 +0,0 @@ - - - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{gold|items_misc:10|Pièces d\'or|money||1|1|||||||||||||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{club1|items_weapons:42|Massue en bois|club|||7|1||||5|10|||0|1|||||||||||||||||||||||}; -{club3|items_weapons:44|Bâton en fer|mace|||253|1||||6|5|||2|7|||||||||||||||||||||||}; -{ironsword0|items_weapons:0|Épée en fer|lsword|||12|1||||5|10|||0|1|||||||||||||||||||||||}; -{hammer0|items_weapons:45|Marteau en fer|hammer|||12|1||||5|10|||0|1|||||||||||||||||||||||}; -{hammer1|items_weapons:45|Marteau géant|hammer2h|||121|1||||10|5|||4|7|||||||||||||||||||||||}; -{dagger0|items_weapons:14|Dague en fer|dagger|||12|1||||5|10|||0|1|||||||||||||||||||||||}; -{dagger1|items_weapons:14|Dague en fer effilé|dagger|||53|1||||4|20|||1|2|||||||||||||||||||||||}; -{dagger2|items_weapons:14|Dague en fer supérieure|dagger|||70|1||||4|25|||1|2|||||||||||||||||||||||}; -{shortsword1|items_weapons:15|Épée courte en fer|ssword|||78|1||||4|15|||1|2|||||||||||||||||||||||}; -{ironsword1|items_weapons:0|Épée en fer|lsword|||78|1||||5|10|||1|3|||||||||||||||||||||||}; -{ironsword2|items_weapons:1|Épée longue en fer|lsword|||121|1||||5|10|||1|4|||||||||||||||||||||||}; -{broadsword1|items_weapons:5|Glaive en fer|bsword|||251|1||||7|2|||1|10|||||||||||||||||||||||}; -{broadsword2|items_weapons:6|Glaive en acier|bsword|||582|1||||6|15|||3|10|||||||||||||||||||||||}; -{steelsword1|items_weapons:7|Épée en acier|lsword|||874|1||||4|24|||3|7|||||||||||||||||||||||}; -{axe1|items_weapons:56|Hache de bûcheron|axe|||24|1||||5|5|||1|3|||||||||||||||||||||||}; -{axe2|items_weapons:56|Hache en fer|axe|||312|1||||6|5|||2|5|||||||||||||||||||||||}; -{quickdagger1|items_weapons:14|Poignard d\'attaque rapide|dagger|4||512|1||||3|20|||0|0|-20||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{ring_dmg1|items_jewelry:0|Anneau de dégât +1|ring|||215|1||||||||1|1|||||||||||||||||||||||}; -{ring_dmg2|items_jewelry:1|Anneau de dégât +2|ring|||398|1||||||||2|2|||||||||||||||||||||||}; -{ring_dmg5|items_jewelry:2|Anneau de dégât +5|ring|4||2014|1||||||||5|5|||||||||||||||||||||||}; -{ring_dmg6|items_jewelry:3|Anneau de dégât +6|ring|4||3186|1||||||||6|6|||||||||||||||||||||||}; -{ring_block1|items_jewelry:0|Anneau de blocage|ring|4||1239|1||||||||||10||||||||||||||||||||||}; -{ring_block2|items_jewelry:0|Anneau de blocage|ring|4||3866|1||||||||||15||||||||||||||||||||||}; -{ring_atkch1|items_jewelry:0|Anneau du coup sûr|ring|||215|1|||||15|||||||||||||||||||||||||||}; -{ring1|items_jewelry:0|Anneau ordinaire|ring||1|13|1||||||||0|1|||||||||||||||||||||||}; -{ring2|items_jewelry:0|Anneau poli|ring||1|21|1||||||||||1||||||||||||||||||||||}; -{ring_jinxed1|items_jewelry:2|Anneau ensorcelé de résistance aux dégâts|ring|||229|1||||||||||-9|1|||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{jewel_fallhaven|items_jewelry:6|Joyau de Fallhaven|neck|4||3125|1||||-1||||||||||||||||||||||||||||}; -{necklace_shield1|items_jewelry:7|Collier du gardien|neck|4||935|1||||||||||9||||||||||||||||||||||}; -{necklace_shield2|items_jewelry:7|Collier de protection|neck|4||1255|1||||||||||12||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{shirt1|items_armours:14|Chemise|bdy_clth|||16|1||||||||||2||||||||||||||||||||||}; -{shirt2|items_armours:14|Chemise de bonne facture|bdy_clth|||72|1||||||||||5||||||||||||||||||||||}; -{shirt_dmgresist|items_armours:15|Chemise de cuir durci|bdy_lthr|4||1633|1||||||||||5|1|||||||||||||||||||||}; -{armor1|items_armours:15|Armure de cuir|bdy_lthr|||464|1||||||||||8||||||||||||||||||||||}; -{armor2|items_armours:15|Armure de cuir supérieure|bdy_lthr|||624|1||||||||||9||||||||||||||||||||||}; -{armor3|items_armours:16|Armure de cuir dur|bdy_lthr|||2407|1||||||||||13||||||||||||||||||||||}; -{armor4|items_armours:16|Armure de cuir dur supérieure|bdy_lthr|||3866|1||||||||||15||||||||||||||||||||||}; -{hat1|items_armours:21|Chapeau vert|hd_cloth|||13|1||||||||||1||||||||||||||||||||||}; -{hat2|items_armours:21|Chapeau vert de bonne facture|hd_cloth|||25|1||||||||||2||||||||||||||||||||||}; -{hat3|items_armours:24|Casquette en cuir de mauvaise facture|hd_lthr|||72|1||||||||||5||||||||||||||||||||||}; -{hat4|items_armours:24|Casquette en cuir|hd_lthr|||146|1||||||||||6||||||||||||||||||||||}; -{gloves1|items_armours:35|Gants en cuir|hnd_lthr|||23|1||||||||||3||||||||||||||||||||||}; -{gloves2|items_armours:35|Gants en cuir de bonne facture|hnd_lthr|||38|1||||||||||4||||||||||||||||||||||}; -{gloves3|items_armours:36|Gants en peau de serpent|hnd_cloth|||72|1||||||||||5||||||||||||||||||||||}; -{gloves4|items_armours:36|Gants en peau de serpent de bonne facture|hnd_cloth|||146|1||||||||||6||||||||||||||||||||||}; -{shield1|items_armours:0|Petit bouclier en bois|buckler|||72|1|||||-2|||||5||||||||||||||||||||||}; -{shield3|items_armours:1|Petit bouclier en bois renforcé|buckler|||226|1|||||-5|||||7||||||||||||||||||||||}; -{shield4|items_armours:2|Bouclier en bois|shld_wd_li|||464|1|||||-5|||||8||||||||||||||||||||||}; -{shield5|items_armours:2|Bouclier en bois supérieur|shld_wd_li|||624|1|||||-4|||||9||||||||||||||||||||||}; -{boots1|items_armours:28|Bottes en cuir|feet_lthr|||23|1||||||||||3||||||||||||||||||||||}; -{boots2|items_armours:28|Bottes en cuir supérieures|feet_lthr|||38|1||||||||||4||||||||||||||||||||||}; -{boots3|items_armours:29|Bottes en peau de serpent|feet_lthr|||146|1||||||||||6||||||||||||||||||||||}; -{boots5|items_armours:30|Bottes renforcées|feet_mtl_hv|||226|1||||||||||7||||||||||||||||||||||}; -{gloves_attack1|items_armours:35|Gants d\'attaque rapide|hnd_lthr|||150|1|||||15|||||-9||||||||||||||||||||||}; -{gloves_attack2|items_armours:35|Gants d\'attaque rapide de bonne facture|hnd_lthr|||221|1|||||17|||||-9||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{apple_green|items_consumables:2|Pomme verte|food||1|14||||||||||||||1|||||{{food|1|8|100|}}||||||||||||||}; -{apple_red|items_consumables:3|Pomme rouge|food||1|22||||||||||||||1|||||{{food|1|12|100|}}||||||||||||||}; -{meat|items_consumables:25|Viande|animal_e||1|29||||||||||||||1|||||{{food|2|12|100|}{foodp|3|10|10|}}||||||||||||||}; -{meat_cooked|items_consumables:27|Viande préparée|food||1|78||||||||||||||1|||||{{food|3|11|100|}}||||||||||||||}; -{strawberry|items_consumables:8|Fraise|food||1|3||||||||||||||1|||||{{food|1|2|100|}}||||||||||||||}; -{carrot|items_consumables:15|Carotte|food||1|14||||||||||||||1|||||{{food|1|8|100|}}||||||||||||||}; -{bread|items_consumables:21|Pain|food||1|6||||||||||||||1|||||{{food|1|10|100|}}||||||||||||||}; -{mushroom|items_consumables:19|Champignon|food||1|3||||||||||||||1|||||{{food|1|2|100|}}||||||||||||||}; -{pear|items_consumables:9|Poire|food||1|14||||||||||||||1|||||{{food|1|8|100|}}||||||||||||||}; -{eggs|items_consumables:20|Œufs|food||1|10||||||||||||||1|||||{{food|1|6|100|}}||||||||||||||}; -{radish|items_consumables:14|Radis|food||1|6||||||||||||||1|||||{{food|1|4|100|}}||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{vial_empty1|items_consumables:56|Petit flacon vide|flask||1|2|||||||||||||||||||||||||||||||||}; -{vial_empty2|items_consumables:57|Flacon vide|flask||1|4|||||||||||||||||||||||||||||||||}; -{vial_empty3|items_consumables:59|Fiole vide|flask||1|6|||||||||||||||||||||||||||||||||}; -{vial_empty4|items_consumables:58|Potion vide|flask||1|11|||||||||||||||||||||||||||||||||}; -{health_minor|items_consumables:35|Petit flacon de santé|pot||1|5||||||||||||||1|5|5|||||||||||||||||}; -{health_minor2|items_consumables:35|Petite potion de santé|pot|||18||||||||||||||1|5|5|||||||||||||||||}; -{health|items_consumables:49|Potion de santé|pot|||40||||||||||||||1|10|10|||||||||||||||||}; -{health_major|items_consumables:28|Grande fiole de santé|pot||1|210||||||||||||||1|40|40|||||||||||||||||}; -{health_major2|items_consumables:28|Grande potion de santé|pot|||280||||||||||||||1|40|40|||||||||||||||||}; -{mead|items_consumables:51|Hydromel|drink|||15||||||||||||||1|1|1|||||||||||||||||}; -{milk|items_consumables:55|Lait|drink|||21||||||||||||||1|2|2|||||||||||||||||}; -{bonemeal_potion|items_consumables:34|Potion d\'os|pot||1|45||||||||||||||1|40|40|||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{hair|items_misc:48|Pelage d\'animal|animal||1|2|||||||||||||||||||||||||||||||||}; -{insectwing|items_misc:52|Aile d\'insecte|animal||1|3|||||||||||||||||||||||||||||||||}; -{bone|items_misc:44|Os|animal||1|2|||||||||||||||||||||||||||||||||}; -{claws|items_misc:47|Griffe|animal||1|2|||||||||||||||||||||||||||||||||}; -{shell|items_misc:54|Carapace d\'animal|animal||1|2|||||||||||||||||||||||||||||||||}; -{gland|actorconditions_1:60|Glande à venin|animal||1|15|||||||||||||||||||||||||||||||||}; -{rat_tail|items_misc:38|Queue de rat|animal||1|2|||||||||||||||||||||||||||||||||}; - - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{rock|items_misc:28|Petit caillou|gem||1|1|||||||||||||||||||||||||||||||||}; -{gem1|items_misc:0|Gemme en verre|gem||1|2|||||||||||||||||||||||||||||||||}; -{gem2|items_misc:1|Gemme en rubis|gem||1|6|||||||||||||||||||||||||||||||||}; -{gem3|items_misc:2|Gemme polie|gem||1|8|||||||||||||||||||||||||||||||||}; -{gem4|items_misc:3|Gemme taillée|gem||1|13|||||||||||||||||||||||||||||||||}; -{gem5|items_misc:5|Joyau poli étincelant|gem||1|15|||||||||||||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{tail_caverat|items_misc:38|Queue de rat des caves|animal|1|1|0|||||||||||||||||||||||||||||||||}; -{tail_trainingrat|items_misc:38|Queue de petit rat|animal|1|1|0|||||||||||||||||||||||||||||||||}; -{ring_mikhail|items_jewelry:0|Anneau de Mikhail|ring|||15|1|||||10|||||||||||||||||||||||||||}; -{neck_irogotu|items_jewelry:7|Collier d\'Irogotu|neck|3|1|30|1||||||||||5|1|||||||||||||||||||||}; -{ring_gandir|items_jewelry:0|Anneau de Gandir|other|1|1|0|||||||||||||||||||||||||||||||||}; -{dagger_venom|items_weapons:17|Dague empoisonnée|dagger|3||15|1||||4|10|5|2|1|2|||||||||||||||||||||||}; -{key_luthor|items_misc:21|Clef de Luthor|other|1|1|0|||||||||||||||||||||||||||||||||}; -{calomyran_secrets|items_books:0|Les secrets de Calomyran|other|1|1|0|||||||||||||||||||||||||||||||||}; -{heartstone|items_misc:6|Pierre de vie|gem|1|1|0|||||||||||||||||||||||||||||||||}; -{vacor_spell|items_books:7|Morceau du sort de Vacor|other|1|1|0|||||||||||||||||||||||||||||||||}; -{ring_unzel|items_jewelry:0|Anneau d\'Unzel|other|1|1|0|||||||||||||||||||||||||||||||||}; -{ring_vacor|items_jewelry:0|Anneau de Vacor|other|1|1|0|||||||||||||||||||||||||||||||||}; -{boots_unzel|items_armours:29|Bottes défensive d\'Unzel|feet_lthr|3||185|1||||||||||8||||||||||||||||||||||}; -{boots_vacor|items_armours:29|Bottes d\'attaque de Vacor|feet_lthr|3||185|1|||||9|||||2||||||||||||||||||||||}; -{necklace_flagstone|items_jewelry:6|Collier du garde de Flagstone|other|1|1|0|||||||||||||||||||||||||||||||||}; -{packhide|items_armours:15|Peau de Wolfpack|bdy_hide|3|1|121|1|||||-15|||||2|1|||||||||||||||||||||}; -{sword_flagstone|items_weapons:7|Fierté de Flagstone|lsword|3||169|1||||4|21|10|2|1|6|||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{armor_chain1|items_armours:17|Cotte de mailles rouillée|chmail|||3629|1|||||-9|||||20||||||||||||||||||||||}; -{armor_chain2|items_armours:17|Cotte de mailles ordinaire|chmail|||4191|1|||||-10|||||22||||||||||||||||||||||}; -{hat_leather1|items_armours:24|Casquette de cuir ordinaire|hd_lthr|||261|1|||||-2|||||7||||||||||||||||||||||}; -{sleepingmead|items_consumables:51|Hydromel somnifère|other|1|1|0|||||||||||||||||||||||||||||||||}; -{ffguard_qitem|items_jewelry:0|Bague de la patrouille de Feygard|other|1|1|0|||||||||||||||||||||||||||||||||}; -{shield6|items_armours:3|Pavois en bois|shld_twr|||952|1|||||-6|||||12||||||||||||||||||||||}; -{shield7|items_armours:3|Pavois en bois épais|shld_twr|||1538|1|||||-6|||||14||||||||||||||||||||||}; -{club_wood1|items_weapons:44|Bâton lourd en acier|mace|||950|1||||8|15|5|3|2|11|||||||||||||||||||||||}; -{club_wood2|items_weapons:44|Bâton lourd équilibré en acier|mace|||2194|1||||7|10|10|3|2|11|||||||||||||||||||||||}; -{gloves_grip|items_armours:35|Gant de prise assurée|hnd_lthr|||471|1|||||9|||||1||||||||||||||||||||||}; -{gloves_fancy|items_armours:35|Gants fantaisistes|hnd_cloth|||78|1|||||5|||||||||||||||||||||||||||}; -{ring_crit1|items_jewelry:0|Anneau d\'attaque|ring|4||2921|1||||||5||||||||||||||||||||||||||}; -{ring_crit2|items_jewelry:0|Anneau d\'attaque vicieuse|ring|4||3455|1|||||-3|7||||||||||||||||||||||||||}; -{armor_stone|items_armours:17|Cuirasse de pierre|bdy_hv|3||52|1||||2||||||22|1|||||||||||||||||||||}; -{ring_shadow0|items_jewelry:2|Anneau de l\'Ombre Mineure|ring|2|1|0|1|||||25|6||4|7|5||{{regen|1|}}||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{rapier_lifesteal|items_weapons:71|Rapière du drain de vie|rapier|2|1|0|1|5|||5|21|||1|6||||||||||1|0|3|||||1|3|3||||}; -{dagger_barbed|items_weapons:17|Dague dentelée|dagger|3|1|0|1||||4|15|||0|0|5|||||||||1||||||{{bleeding_wound|1|5|50|}}|||||||}; -{elytharan_redeemer|items_weapons:70|Rédempteur d\'Elytharan|2hsword|2|1|0|1||2||5|25|||3|8|5||{{bless|1|}}|0|||||||||||||||||||}; -{clouded_rage|items_weapons:71|Épée de la rage de l\'Ombre|rapier|3|1|0|1||||5|21|||3|6|5|||0|||||||||||||1|||||{{rage_minor|1|1|50|}}|}; -{shadow_slayer|items_weapons:60|Ombre du tueur|axe2h|3|1|0|1||2||7|25|10|2|5|9|||||||||||||||||1|1|1||||}; -{ring_shadow_embrace|items_jewelry:0|Anneau de l\'étreinte de l\'Ombre|ring|3|1|0|1|20||||10|||2|2|||||||||||||||||||||||}; -{bwm_dagger|items_weapons:19|Dague de Blackwater|dagger|4|1|539|1||||3|40|||1|1|5||{{blackwater_misery|1|}}||||||||||||||||||||}; -{bwm_dagger_venom|items_weapons:19|Dague empoisonnée de Blackwater|dagger|4|1|1552|1||||3|45|||1|1|||{{blackwater_misery|1|}}|||||||1||||||{{poison_weak|1|5|50|}}|||||||}; -{bwm_ironsword|items_weapons:0|Épée en fer de Blackwater|lsword|4|1|1224|1||||4|50|||3|7|5||{{blackwater_misery|1|}}||||||||||||||||||||}; -{bwm_leather_armour|items_armours:15|Armure en cuir de Blackwater|bdy_lthr|4|1|2551|1||||||||||25|1|{{blackwater_misery|1|}}||||||||||||||||||||}; -{bwm_leather_cap|items_armours:24|Casquette en cuir de Blackwater|hd_lthr|4|1|722|1|5|||||||||21||{{blackwater_misery|1|}}||||||||||||||||||||}; -{bwm_combat_ring|items_jewelry:2|Anneau de combat de Blackwater|ring|4|1|595|1|||||5|||0|7|||{{blackwater_misery|1|}}||||||||||||||||||||}; -{bwm_brew|items_consumables:51|Infusion de Blackwater|pot||1|57||||||||||||||1|15|15|||{{intoxicated|1|10|100|}}||||||||||||||}; -{woodcutter_hatchet|items_weapons:57|Hachette du bûcheron|axe|||0|1||||6|9|||6|12|||||||||||||||||||||||}; -{woodcutter_boots|items_armours:30|Bottes du bûcheron|feet_lthr|||873|1|1||||3|||||8||||||||||||||||||||||}; -{heavy_club|items_weapons:44|Bâton lourd|mace|||1229|1||||7|15|5|3|2|15|||||||||||||||||||||||}; -{pot_speed_1|items_consumables:41|Petite potion de rapidité|pot||1|261||||||||||||||1|||||{{speed_minor|1|5|100|}}||||||||||||||}; -{pot_poison_weak|items_consumables:40|Poison faible|pot||1|125||||||||||||||1|||||{{poison_weak|1|5|100|}}||||||||||||||}; -{pot_poison_weak_antidote|items_consumables:54|Antidote de poison faible|pot||1|337||||||||||||||1|||||{{poison_weak|-99||100|}}||||||||||||||}; -{pot_bleeding_ointment|items_consumables:35|Pommade cicatrisante|pot||1|310||||||||||||||1|||||{{bleeding_wound|-99||100|}}||||||||||||||}; -{pot_fatigue_restore|items_consumables:41|Soulagement de fatigue|pot||1|210||||||||||||||1|||||{{fatigue_minor|-99||100|}}||||||||||||||}; -{pot_blind_rage|items_consumables:63|Potion de rage aveugle|pot||1|495||||||||||||||1|||||{{rage_minor|1|5|100|}}|0|||||||0||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{rusted_iron_sword|items_weapons:0|Épée en fer rouillée|lsword|||52|1||||5|10|||1|2|||||||||||||||||||||||}; -{broken_buckler|items_armours:0|Bouclier en bois brisé|buckler|||120|1|||||-5|||||1||||||||||||||||||||||}; -{used_gloves|items_armours:35|Gants tâchés de sang|hnd_lthr|||56|1||||||||||1||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{bwm_claws|items_misc:47|Griffe de wyrm blanche|animal||1|35|||||||||||||||||||||||||||||||||}; -{bwm_permit|items_books:8|Laissez-passer falsifié pour Blackwater|other|1|1|0|||||||||||||||||||||||||||||||||}; -{bjorgur_dagger|items_weapons:14|Dague de famille de Bjorgur|dagger|1|1|0|1||||5||||||||||||||||||||||||||||}; -{q_kazaul_vial|items_consumables:57|Fiole d\'élixir purificateur|other|1|1|0|||||||||||||||||||||||||||||||||}; -{guthbered_id|items_jewelry:0|Anneau de Guthbered|other|1|1|0|||||||||||||||||||||||||||||||||}; -{harlenn_id|items_jewelry:0|Anneau d\'Harlenn|other|1|1|0|||||||||||||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{dagger_shadow_priests|items_weapons:17|Dague des prêtres de l\'Ombre|dagger|3|1|15|1||||4|20|20|3|1|2|||||||||||||||||||||||}; -{sword_hard_iron|items_weapons:0|Épée en fer renforcée|lsword||0|369|1||||5|15|||2|4|||||||||||||||||||||||}; -{club_fine_wooden|items_weapons:42|Bâton en bois de bonne facture|club||0|245|1||||5|12|||0|7|||||||||||||||||||||||}; -{axe_fine_iron|items_weapons:56|Hache en fer de bonne facture|axe||0|365|1||||6|9|||4|6|||||||||||||||||||||||}; -{longsword_hard_iron|items_weapons:1|Épée longue en fer renforcée|lsword||0|362|1||||5|14|||2|6|||||||||||||||||||||||}; -{broadsword_fine_iron|items_weapons:5|Épée large en fer de bonne facture|bsword||0|422|1||||7|5|||4|10|||||||||||||||||||||||}; -{dagger_sharp_steel|items_weapons:14|Dague en acier aiguisée|dagger||0|1428|1||||4|24|||2|4|||||||||||||||||||||||}; -{sword_balanced_steel|items_weapons:7|Épée équilibrée en acier |lsword||0|2797|1||||4|32|||3|7|||||||||||||||||||||||}; -{broadsword_fine_steel|items_weapons:6|Épée large en acier de bonne facture|bsword||0|1206|1||||6|20|||4|11|||||||||||||||||||||||}; -{sword_defenders|items_weapons:2|Lame du défenseur|lsword||0|1711|1||||5|26|||3|7|3||||||||||||||||||||||}; -{sword_villains|items_weapons:16|Lame du traître|ssword||0|1665|1||||4|20|5|3|1|2|||||||||||||||||||||||}; -{sword_challengers|items_weapons:1|Épée en fer du provocateur|lsword||0|785|1||||5|20|||2|6|||||||||||||||||||||||}; -{sword_fencing|items_weapons:13|Lame d\'escrime|rapier||0|922|1||||4|14|||2|5|5||||||||||||||||||||||}; -{club_brutal|items_weapons:44|Bâton offensif|mace||0|2522|1||||7|20|5|3|2|21|||||||||||||||||||||||}; -{axe_gutsplitter|items_weapons:58|Répandeur d\'entrailles|axe2h||0|2733|1||||6|21|||7|17|||||||||||||||||||||||}; -{hammer_skullcrusher|items_weapons:45|Écraseur de crâne|hammer2h||0|3142|1||||7|20|5|3|0|26|||||||||||||||||||||||}; -{shield_crude_wooden|items_armours:0|Petit bouclier en bois de mauvaise facture|buckler||0|31|1||||||||||1||||||||||||||||||||||}; -{shield_cracked_wooden|items_armours:0|Petit bouclier en bois fendu|buckler||0|34|1|||||-2|||||2||||||||||||||||||||||}; -{shield_wooden_buckler|items_armours:0|Petit bouclier en bois d\'occasion|buckler||0|92|1|||||-2|||||3||||||||||||||||||||||}; -{shield_wooden|items_armours:2|Bouclier en bois|shld_wd_li||0|514|1|||||-4|||||8||||||||||||||||||||||}; -{shield_wooden_defender|items_armours:2|Grand bouclier en bois|shld_wd_li||0|1996|1|||||-8|-5||||14|1|||||||||||||||||||||}; -{hat_hard_leather|items_armours:24|Casquette en cuir durci|hd_lthr||0|648|1|||||-3|-1||||8||||||||||||||||||||||}; -{hat_fine_leather|items_armours:24|Casquette en cuir de bonne facture|hd_lthr||0|846|1|||||-3|-2||||9||||||||||||||||||||||}; -{hat_leather_vision|items_armours:24|Casquette en cuir de vision réduite|hd_lthr||0|971|1|||||-3|-4||||10||||||||||||||||||||||}; -{helm_crude_iron|items_armours:25|Casque en fer de mauvaise facture|hd_mtl_hv||0|1120|1|||||-3|-5||||11||||||||||||||||||||||}; -{shirt_torn|items_armours:14|Chemise déchirée|bdy_clth||0|92|1|||||-2|||||3||||||||||||||||||||||}; -{shirt_weathered|items_armours:14|Chemise délavée|bdy_clth||0|125|1|||||-1|||||3||||||||||||||||||||||}; -{shirt_patched_cloth|items_armours:14|Chemise rapiécée|bdy_clth||0|208|1||||||||||4||||||||||||||||||||||}; -{armour_crude_leather|items_armours:16|Armure de cuir de mauvaise facture|bdy_lthr||0|514|1|||||-4|||||8||||||||||||||||||||||}; -{armour_firm_leather|items_armours:16|Armure de cuir solide|bdy_lthr||0|417|1|||1|||||||8||||||||||||||||||||||}; -{armour_rigid_leather|items_armours:16|Armure de cuir rigide|bdy_lthr||0|625|1|||1||-1|||||9||||||||||||||||||||||}; -{armour_rigid_chain|items_armours:17|Cotte de mailles rigide|chmail||0|4667|1||||1|-5|||||23||||||||||||||||||||||}; -{armour_superior_chain|items_armours:17|Cotte de mailles supérieure|chmail||0|5992|1|||||-9|||||23||||||||||||||||||||||}; -{armour_chain_champ|items_armours:17|Cotte de mailles du Champion|chmail||0|6808|1|2||||-9|-5||||24||||||||||||||||||||||}; -{armour_leather_villain|items_armours:16|Armure de cuir du Traître|bdy_lthr||0|3700|1|||-1||-4|3||||15||||||||||||||||||||||}; -{armour_misfortune|items_armours:15|Chemise en cuir de malchance|bdy_lthr||0|2459|1|||||-5|||-1|-1|15||||||||||||||||||||||}; -{gloves_barbrawler|items_armours:35|Gants de bagarreur de bistrot|hnd_lthr||0|95|1|||||5|||||2||||||||||||||||||||||}; -{gloves_fumbling|items_armours:35|Gants de fouille|hnd_lthr||0|-432|1|||||-5|||||1||||||||||||||||||||||}; -{gloves_crude_cloth|items_armours:35|Gants en tissu de mauvaise facture|hnd_cloth||0|31|1||||||||||1||||||||||||||||||||||}; -{gloves_crude_leather|items_armours:35|Gants en cuir de mauvaise facture|hnd_lthr||0|180|1|||||-4|||||6||||||||||||||||||||||}; -{gloves_troublemaker|items_armours:36|Gants du Fauteur de troubles|hnd_lthr||0|501|1|1||||7|4||||4||||||||||||||||||||||}; -{gloves_guards|items_armours:37|Gants de garde|hnd_mtl_li||0|636|1|3||||3|||||5||||||||||||||||||||||}; -{gloves_leather_attack|items_armours:35|Gants d\'attaque en cuir|hnd_lthr||0|510|1|3||||13|||||-2||||||||||||||||||||||}; -{gloves_woodcutter|items_armours:35|Gants de bûcheron|hnd_lthr||0|426|1|3||||8|||||1||||||||||||||||||||||}; -{boots_crude_leather|items_armours:28|Bottes en cuir de mauvaise facture|feet_lthr||0|31|1||||||||||1||||||||||||||||||||||}; -{boots_sewn|items_armours:28|Chaussures cousues|feet_clth||0|73|1||||||||||2||||||||||||||||||||||}; -{boots_coward|items_armours:28|Bottes du Froussard|feet_lthr||0|933|1|||-1|||||||2||||||||||||||||||||||}; -{boots_hard_leather|items_armours:30|Bottes en cuir durci|feet_lthr||0|626|1|||1||-4|||||10||||||||||||||||||||||}; -{boots_defender|items_armours:30|Bottes du Défenseur|feet_mtl_li||0|1190|1|2|||||||||9||||||||||||||||||||||}; -{necklace_shield_0|items_jewelry:7|Collier de protection mineure|neck||0|131|1||||||||||3||||||||||||||||||||||}; -{necklace_strike|items_jewelry:6|Collier d\'attaque|neck||0|832|1|5|||||5||||||||||||||||||||||||||}; -{necklace_defender_stone|items_jewelry:7|Pierre du Défenseur|neck|4|0|1325|1|||||||||||1|||||||||||||||||||||}; -{necklace_protector|items_jewelry:7|Collier du protecteur|neck|4|0|3207|1|5||||||||||2|||||||||||||||||||||}; -{ring_crude_combat|items_jewelry:0|Anneau de combat de mauvaise facture|ring||0|44|1|||||5|||0|1|||||||||||||||||||||||}; -{ring_crude_surehit|items_jewelry:0|Anneau du coup sûr de mauvaise facture|ring||0|52|1|||||7|||||||||||||||||||||||||||}; -{ring_crude_block|items_jewelry:0|Anneau de blocage de mauvaise facture|ring||0|73|1||||||||||2||||||||||||||||||||||}; -{ring_rough_life|items_jewelry:0|Anneau grossier de force vive|ring||0|100|1|1|||||||||||||||||||||||||||||||}; -{ring_fumbling|items_jewelry:0|Anneau de fouille|ring||0|-463|1|||||-5|||||||||||||||||||||||||||}; -{ring_rough_damage|items_jewelry:0|Anneau grossier de dégâts|ring||0|56|1||||||||0|2|||||||||||||||||||||||}; -{ring_barbrawler|items_jewelry:0|Anneau du bagarreur de bistrot|ring||0|222|1|||||12|||0|1|||||||||||||||||||||||}; -{ring_dmg_3|items_jewelry:0|Anneau de dégât +3|ring||0|624|1||||||||3|3|||||||||||||||||||||||}; -{ring_life|items_jewelry:0|Anneau de force vive|ring||0|557|1|5|||||||||||||||||||||||||||||||}; -{ring_taverbrawler|items_jewelry:0|Anneau du bagarreur de taverne|ring||0|314|1|||||12|||0|3|||||||||||||||||||||||}; -{ring_defender|items_jewelry:0|Anneau du Défenseur|ring||0|755|1|||||-6|||||11||||||||||||||||||||||}; -{ring_challenger|items_jewelry:0|Anneau du Provocateur|ring||0|408|1|||||12|||||4||||||||||||||||||||||}; -{ring_dmg_4|items_jewelry:2|Anneau de dégât +4|ring||0|1168|1||||||||4|4|||||||||||||||||||||||}; -{ring_troublemaker|items_jewelry:2|Anneau du Fauteur de trouble|ring||0|797|1|||||15|||2|4|||||||||||||||||||||||}; -{ring_guardian|items_jewelry:2|Anneau du Gardien|ring|4|0|1489|1|||||19|||3|5|||||||||||||||||||||||}; -{ring_block|items_jewelry:2|Anneau de blocage|ring|4|0|2192|1||||||||||13||||||||||||||||||||||}; -{ring_backstab|items_jewelry:2|Anneau de poignardage|ring||0|1363|1|||||17|7||||3||||||||||||||||||||||}; -{ring_polished_combat|items_jewelry:2|Anneau de combat poli|ring|4|0|1346|1|5||||15|||1|5|||||||||||||||||||||||}; -{ring_villain|items_jewelry:2|Anneau du Traître|ring|4|0|2750|1|4||||25|||3|6|||||||||||||||||||||||}; -{ring_polished_backstab|items_jewelry:2|Anneau de poignardage poli|ring|4|0|2731|1|||||21|7||4|4|||||||||||||||||||||||}; -{ring_protector|items_jewelry:4|Anneau du Protecteur|ring|4|0|3744|1|3||||20|||0|3|14||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{erinith_book|items_books:0|Livre d\'Erinith|other|1|1|0|||||||||||||||||||||||||||||||||}; -{hadracor_waspwing|items_misc:52|Aile de guêpe géante|animal|1|1|0|||||||||||||||||||||||||||||||||}; -{tinlyn_bells|items_necklaces_1:10|Cloche à mouton de Tinlyn|other|1|1|0|||||||||||||||||||||||||||||||||}; -{tinlyn_sheep_meat|items_consumables:25|Viande de mouton de Tinlyn|animal|1|1|0|||||||||||||||||||||||||||||||||}; -{rogorn_qitem|items_books:7|Morceaux de peinture|other|1|1|0|||||||||||||||||||||||||||||||||}; -{fg_ironsword|items_weapons:0|Épée en fer deFeygard|lsword|1|1|0|1||||5|10|||1|5|||||||||||||||||||||||}; -{fg_ironsword_d|items_weapons:0|Épée en fer de Feygard dégradée|lsword|1|1|0|1||||5|-50|||0|0|||||||||||||||||||||||}; -{buceth_vial|items_consumables:47|Flacon de Buceth rempli de liquide vert|other|1|1|0|||||||||||||||||||||||||||||||||}; -{chaosreaper|items_weapons:49|Rapière du Chaos|scepter|3|1|339|1||||4|-30|||0|2||||0||||||1||||||{{chaotic_grip|5|3|50|}}|||||||}; -{izthiel_claw|items_misc:47|Griffe d\'Izthiel|animal_e||1|1||||||||||||||1|||||{{food|3|6|100|}{foodp|3|10|20|}}||||||||||||||}; -{iqhan_pendant|items_necklaces_1:2|Pendentif d\'Iqhan|neck||1|10|1|||||6|||||||||||||||||||||||||||}; -{shadowfang|items_weapons_3:41|Croc de l\'Ombre|ssword|3|1|512|1|-20|||4|40|||2|5||||0||||||1|||||{{fatigue_minor|1|3|20|}}||||||||}; -{gloves_life|items_armours_2:1|Gants de force vive|hnd_lthr|3|1|390|1|9||||5|||||3||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{pot_focus_dmg|items_consumables:39|Potion de concentration des dégâts|pot||1|272||||||||||||||1|||||{{focus_dmg|1|4|100|}}||||||||||||||}; -{pot_focus_dmg2|items_consumables:39|Grande potion de concentration des dégâts|pot||1|630||||||||||||||1|||||{{focus_dmg|2|4|100|}}||||||||||||||}; -{pot_focus_ac|items_consumables:37|Potion de concentration en précision|pot||1|210||||||||||||||1|||||{{focus_ac|1|4|100|}}||||||||||||||}; -{pot_focus_ac2|items_consumables:37|Grande potion de concentration en précision|pot||1|618||||||||||||||1|||||{{focus_ac|2|4|100|}}||||||||||||||}; -{pot_scaradon|items_consumables:48|Extrait de Scaradon|pot||0|28||||||||||||||1|5|10|||||||||||||||||}; -{remgard_shield_1|items_armours_3:24|Bouclier de Remgard|shld_mtl_li||0|2189|1|||||-3|||||9|1|||||||||||||||||||||}; -{remgard_shield_2|items_armours_3:24|Bouclier de combat de Remgard|shld_mtl_li||0|2720|1|||||-3|||||11|1|||||||||||||||||||||}; -{helm_combat1|items_armours:25|Casque de combat|hd_mtl_li||0|455|1|||||5|||||6||||||||||||||||||||||}; -{helm_combat2|items_armours:25|Casque de combat amélioré|hd_mtl_li||0|485|1|||||7|||||6||||||||||||||||||||||}; -{helm_combat3|items_armours:26|Casque de combat de Remgard|hd_mtl_hv||0|1540|1|1||||-3|-5||||12||||||||||||||||||||||}; -{helm_redeye1|items_armours:24|Chapeau des yeux rouges|hd_lthr||0|1|1|-5|||||||||8||||||||||||||||||||||}; -{helm_redeye2|items_armours:24|Chapeau des yeux de sang|hd_lthr||0|1|1|-5|||||||0|1|8||||||||||||||||||||||}; -{helm_defend1|items_armours_3:31|Casque du Défenseur|hd_mtl_hv||0|1975|1|||||-3|||||8|1|||||||||||||||||||||}; -{helm_protector0|items_armours_3:31|Casque d\'allure étrange|hd_mtl_li|1|1|0|1|-9|||||||0|1|5||||||||||||||||||||||}; -{helm_protector|items_armours_3:31|Protecteur sombre|hd_mtl_li|3|0|3119|1|-6|||||||0|1|13|1|||||||||||||||||||||}; -{armour_chain_remg|items_armours_3:13|Cotte de mailles de Remgard|chmail||0|8927|1|||||-7|||||25||||||||||||||||||||||}; -{armour_cvest1|items_armours_3:5|Veste de combat|bdy_lt||0|1116|1|||||15|||||8||||||||||||||||||||||}; -{armour_cvest2|items_armours_3:5|Veste de combat de Remgard|bdy_lt||0|1244|1|||||17|||||8||||||||||||||||||||||}; -{gloves_leather1|items_armours:38|Gants en cuir durci|hnd_lthr||0|757|1|3||||2|||||6||||||||||||||||||||||}; -{gloves_arulir|items_armours_2:1|Gants en peau d\'Arulir|hnd_lthr||0|1793|1|||||-3|||||7|1|||||||||||||||||||||}; -{gloves_combat1|items_armours:36|Gants de combat|hnd_lthr||0|956|1|4||||-5|||||9||||||||||||||||||||||}; -{gloves_combat2|items_armours:36|Gants de combat améliorés|hnd_lthr||0|1204|1|4||||-5|||||10||||||||||||||||||||||}; -{gloves_remgard1|items_armours:37|Gants de combat de Remgard|hnd_mtl_li||0|1205|1|4|||||||||8||||||||||||||||||||||}; -{gloves_remgard2|items_armours:37|Gants enchantés de Remgard|hnd_mtl_li||0|1326|1|5||||2|||||8||||||||||||||||||||||}; -{gloves_guard1|items_armours:38|Gants du Gardien|hnd_lthr||1|601|1|||||-9|-5||||14||||||||||||||||||||||}; -{boots_combat1|items_armours:30|Bottes de combat|feet_mtl_li||0|0|1|||||7|||||7||||||||||||||||||||||}; -{boots_combat2|items_armours:30|Bottes de combat améliorées|feet_mtl_li||0|0|1|||||7|||||11||||||||||||||||||||||}; -{boots_remgard1|items_armours:31|Bottes de Remgard|feet_mtl_hv||0|0|1|4|||||||||12||||||||||||||||||||||}; -{boots_guard1|items_armours:31|Bottes du Gardien|feet_mtl_hv||0|0|1||||||||||7|1|||||||||||||||||||||}; -{boots_brawler|items_armours_3:38|Bottes du bagarreur de bistrot|feet_lthr||0|0|1|2|||||4||||7||||||||||||||||||||||}; -{marrowtaint|items_necklaces_1:9|Souillure intérieure|neck|3|0|4760|1|5|||-1|9|||||9||||||||||||||||||||||}; -{valugha_gown|items_armours_3:2|Robe en soie de Valugha|bdy_clth|3|0|3109|1|5||-1||30|||||-10|||||||||0|||||||||||||}; -{valugha_hat|items_armours_3:1|Chapeau chatoyant de Valugha|hd_cloth|3|1|648|1|3||-1||15|||-2|-2|-5||||||||||||||||||||||}; -{hat_crit|items_armours_3:0|Chapeau à plume de bûcheron|hd_cloth|3|0|1|1||||||4||||-5||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{thorin_bone|items_misc:44|Os mâché|animal|1|1|0|||||||||||||||||||||||||||||||||}; -{spider|items_misc:40|Araignée morte|animal||1|1|||||||||||||||||||||||||||||||||}; -{irdegh|items_misc:49|Glande à poison d\'Irdegh|animal||1|5|||||||||||||||||||||||||||||||||}; -{arulir_skin|items_misc:39|Peau d\'Arulir|animal||1|4|||||||||||||||||||||||||||||||||}; -{algangror_rat|items_misc:38|Queue de rat d\'allure étrange|animal|1|1|0|||||||||||||||||||||||||||||||||}; -{oegyth|items_misc:35|Cristal d\'Oegyth|gem|1|1|0|||||||||||||||||||||||||||||||||}; -{toszylae_heart|items_misc:6|Cœur de démon|other|1|1|0|||||||||||||||||||||||||||||||||}; -{potion_rotworm|items_consumables:63|Ver pourri de Kazaul|other|1|1|0|||||||||||||||||||||||||||||||||}; - - diff --git a/AndorsTrail/res/values-fr/content_monsterlist.xml b/AndorsTrail/res/values-fr/content_monsterlist.xml deleted file mode 100644 index 3f304dc4e..000000000 --- a/AndorsTrail/res/values-fr/content_monsterlist.xml +++ /dev/null @@ -1,501 +0,0 @@ - - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{tiny_rat|monsters_rats:0|Petit rat|trainingrat||4|1||2|||10|50|||1|1|||trainingrat|||||||||}; -{cave_rat|monsters_rats:1|Rat troglodyte|crossglen_caverat||4|||5|||10|90|||2|2|||rat|||||||||}; -{tough_cave_rat|monsters_rats:1|Rat troglodyte résistant|crossglen_caverat2||4|||5|||5|90|||3|3|||rat|||||||||}; -{strong_cave_rat|monsters_rats:3|Gros rat troglodyte|crossglen_caveboss||4|1||20|||5|100|||2|4|10||caveratboss|||||||||}; -{black_ant|monsters_insects:0|Fourmi noire|crossglen_ant||1|||3|||10|70|||1|2|||insect|||||||||}; -{small_wasp|monsters_insects:1|Petite guêpe|crossglen_wasp||1|||4|||10|70|||1|2|||wasp|||||||||}; -{beetle|monsters_insects:4|Scarabée|crossglen_beetle||1|||4|||10|70|||3|3|||insect|||||||||}; -{forest_wasp|monsters_insects:1|Guêpe sylvestre|forestwasp||1|||6|||10|70|||1|2|||wasp|||||||||}; -{forest_ant|monsters_insects:0|Fourmi sylvestre|forestant||1|||4|||10|90|||1|2|10||insect|||||||||}; -{yellow_forest_ant|monsters_insects:2|Fourmi sylvestre jaune|forestant||1|||5|||10|100|||2|2|15||insect|||||||||}; -{small_rabid_dog|monsters_dogs:1|Petit chien enragé|forestdog||4|||6|||10|90|||2|2|||canine|||||||||}; -{forest_snake|monsters_snakes:1|Serpent sylvestre|forestsnake||7|||7|||10|110|||1|2|10||snake|||||||||}; -{young_cave_snake|monsters_snakes:3|Jeune serpent troglodyte|cavesnake1||7|||8|||5|110|10|2|2|2|10||snake|||||||||}; -{cave_snake|monsters_snakes:3|Serpent troglodyte|cavesnake1||7|||12|||5|110|20|2|2|2|15||snake|||||||||}; -{venomous_cave_snake|monsters_snakes:3|Serpent troglodyte venimeux|cavesnake2||7|||15|10||5|110|40|2|2|2|10||snake||1||||||{{poison_weak|1|1|10|}}|}; -{tough_cave_snake|monsters_snakes:3|Serpent troglodyte résistant|cavesnake2||7|||21|||5|110|20|2|2|2|15||snake|||||||||}; -{basilisk|monsters_rats:4|Basilic|cavesnake2_boss||7|||40|||7|40|||3|9|50|2|cavecritter|||||||||}; -{snake_servant|monsters_liches:0|Serpent acolyte|cavesnake3||6|||35|||5|80|40|3|2|3|10|1|lich1|||||||||}; -{snake_master|monsters_liches:1|Maître serpent|cavesnake3_boss||6|1||55|||5|60|200|3|1|4|10|4|snakemaster|snakemaster||||||||}; -{rabid_boar|monsters_dogs:6|Sanglier enragé|forestboar||4|||20|||5|110|||3|3|30||canineboss|||||||||}; -{rabid_fox|monsters_dogs:3|Renard enragé|fox1||4|||25|||5|100|||3|3|50||canine|||||||||}; -{yellow_cave_ant|monsters_insects:2|Fourmi troglodyte jaune|pitcave1||1|||20|||3|30|||1|1|80||insect|||||||||}; -{young_teeth_critter|monsters_misc:0|Jeune bestiole à dents|pitcave2||7|||15|||2|50|||1|1|70||cavecritter|||||||||}; -{teeth_critter|monsters_misc:0|Bestiole à dents|pitcave2||7|||25|||2|60|10|3|1|1|70||cavecritter|||||||||}; -{young_minotaur|monsters_misc:5|Jeune minotaure|pitcave2||5|||45|||6|20|40|3|4|4|50|2|cavemonster|||||||||}; -{strong_minotaur|monsters_misc:5|Gros minotaure|pitcave2_boss||5|||53|||6|40|50|3|5|5|50|2|cavemonster|||||||||}; -{irogotu|monsters_liches:0|Irogotu|pitcave_boss||6|1||61|||3|50|40|3|2|5|70|4|irogotu|irogotu||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{lost_spirit|monsters_rltiles2:45|Esprit errant|minorhaunt1||8|||15|||10|50|||1|2|10|3|haunt|haunt||||||||}; -{lost_soul|monsters_rltiles2:45|Âme errante|minorhaunt2||8|||15|||10|50|||1|2|10|4|haunt|||||||||}; -{haunting|monsters_ghost1:0|Fantôme|haunt3||8|||31|10|10|5|120|20|2|1|5|30|1|haunt|||||||||}; -{skeletal_warrior|monsters_skeleton1:0|Guerrier squelette|skeleton1||3|||52|10|10|5|60|||1|3|40|1|skeleton|||||||||}; -{skeletal_master|monsters_skeleton2:0|Maître squelette|skeletonmaster||3|||52|10|10|5|70|||1|3|30|2|skeleton|||||||||}; -{skeleton|monsters_skeleton1:0|Squelette|skeleton1||3|||35|10|10|10|60|||1|4|40||skeleton|||||||||}; - -{guardian_of_the_catacombs|monsters_rltiles2:45|Gardien des catacombes|catacombguard1||8|1||6|10|10|10|10|||1|6|10|3|catacombguard|catacombguard||||||||}; -{catacomb_rat|monsters_rats:0|Rat des catacombes|catacombrat1||4|||15|10|10|3|60|||1|1|40||catacombrat|||||||||}; -{large_catacomb_rat|monsters_rats:3|Gros rat des catacombes|catacombrat1||4|||21|10|10|3|60|10|2|1|2|40||catacombrat|||||||||}; -{ghostly_visage|monsters_ghost1:0|Figure fantomatique|catacombguard2||8|||16|10|10|5|20|||1|4|20|2|catacombguard|||||||||}; -{spectre|monsters_rltiles2:45|Spectre|catacombguard2||8|||15|10|10|3|50|||1|5|60|2|catacombguard|||||||||}; -{apparition|monsters_rltiles2:45|Apparition|catacombguard3||8|||17|10|10|3||||1|5|70|2|catacombguard|||||||||}; -{shade|monsters_ghost1:0|Ombre|catacombguard3||8|||16|10|10|5|20|||1|4|20|3|catacombguard|||||||||}; -{young_gargoyle|monsters_misc:2|Jeune gargouille|catacombguard3||3|||35|10|10|10|110|10|2|2|5|70|1|catacombguard|||||||||}; -{ghost_of_luthor|monsters_liches:2|Fantôme de Luthor|luthor||6|1||86|10|10|5|120|15|2|2|5|50|3|luthor|luthor||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{mikhail|monsters_mage2:0|Mikhail|mikhail||0|||||||||||||||mikhail_start_select||||||||}; -{leta|monsters_men:2|Leta|leta||0|||||||||||||||leta1||||||||}; -{audir|monsters_men:0|Audir|audir||0||||||||||||||shop_audir|audir1||||||||}; -{arambold|monsters_men:3|Arambold|arambold||0||||||||||||||shop_arambold|arambold1||||||||}; -{tharal|monsters_men:4|Tharal|tharal||0||||||||||||||shop_tharal|tharal1||||||||}; -{drunk|monsters_rltiles3:14|Ivrogne|drunk||0|||||||||||||||drunk1||||||||}; -{mara|monsters_men:7|Mara|mara||0||||||||||||||shop_mara|mara1||||||||}; -{gruil|monsters_rogue1:0|Gruil|gruil||0||||||||||||||shop_gruil|gruil1||||||||}; -{leonid|monsters_men:3|Leonid|leonid||0|||||||||||||||leonid1||||||||}; -{farmer|monsters_man1:0|Fermier|crossglen_farmer1||0|||||||||||||||farm1||||||||}; -{tired_farmer|monsters_man1:0|Fermier épuisé|crossglen_farmer2||0|||||||||||||||farm2||||||||}; -{oromir|monsters_man1:0|Oromir|oromir||0|||||||||||||||oromir1||||||||}; -{odair|monsters_men:8|Odair|odair||0|||||||||||||||odair1||||||||}; -{jan|monsters_rltiles3:14|Jan|jan||0|||||||||||||||jan_start_select||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{warden|monsters_men:3|Sentinelle|fallhaven_warden||0|||||||||||||||fallhaven_warden_select_1||||||||}; -{guard|monsters_rltiles3:14|Garde|fallhaven_guard||0|||||||||||||||fallhaven_guard||||||||}; -{acolyte|monsters_men:4|Acolyte|fallhaven_priest||0|||||||||||||||fallhaven_priest||||||||}; -{bearded_citizen|monsters_man1:0|Homme barbu|fallhaven_citizen1||0|||||||||||||||fallhaven_citizen1||||||||}; -{old_citizen|monsters_men:2|Habitant âgé|fallhaven_citizen2||0|||||||||||||||fallhaven_citizen2||||||||}; -{tired_citizen|monsters_men:7|Habitant fatigué|fallhaven_citizen4||0|||||||||||||||fallhaven_citizen4||||||||}; -{citizen|monsters_man1:0|Habitant|fallhaven_citizen3||0|||||||||||||||fallhaven_citizen3||||||||}; -{grumpy_citizen|monsters_men:2|Habitant maussade|fallhaven_citizen5||0|||||||||||||||fallhaven_citizen5||||||||}; -{blond_citizen|monsters_men:7|Habitant blond|fallhaven_citizen6||0|||||||||||||||fallhaven_citizen6||||||||}; -{bucus|monsters_rogue1:0|Bucus|bucus||0|||||||||||||||bucus_welcome||||||||}; -{drunkard|monsters_men:0|Ivrogne|fallhaven_drunk||0|||||||||||||||fallhaven_drunk||||||||}; -{old_man|monsters_men:5|Vieil homme|fallhaven_oldman||0|||||||||||||||fallhaven_oldman||||||||}; -{nocmar|monsters_men:8|Nocmar|nocmar||0||||||||||||||nocmar|nocmar||||||||}; -{prisoner|monsters_rogue1:0|Prisonnier|fallhaven_prisoner||0|||1|1|1|1|0|||0|0||||||||||||}; -{ganos|monsters_rogue1:0|Ganos|ganos||0||||||||||||||shop_ganos|ganos||||||||}; -{arcir|monsters_mage2:0|Arcir|arcir||0|||||||||||||||arcir_start||||||||}; -{athamyr|monsters_men:4|Athamyr|athamyr||0|||||||||||||||athamyr||||||||}; -{thoronir|monsters_men2:8|Thoronir|thoronir||0||||||||||||||shop_thoronir|thoronir_default||||||||}; -{chapelgoer|monsters_men:6|Fidèle|chapelgoer||0|||||||||||||||chapelgoer||||||||}; -{potion_merchant|monsters_mage2:0|Marchand de potions|fallhaven_potions||0||||||||||||||shop_fallhaven_potions|fallhaven_potions||||||||}; -{tailor|monsters_men2:0|Tailleur|fallhaven_clothes||0||||||||||||||shop_fallhaven_clothes|fallhaven_clothes||||||||}; -{bela|monsters_men:7|Bela|bela||0||||||||||||||shop_bela|bela||||||||}; -{larcal|monsters_men2:2|Larcal|larcal||0|1||51|10|10|10|25|||1|2|50||larcal|larcal||||||||}; -{gaela|monsters_men2:9|Gaela|gaela||0|||||||||||||||gaela||||||||}; -{unnmir|monsters_mage2:0|Unnmir|unnmir||0|||||||||||||||unnmir||||||||}; -{rigmor|monsters_men:1|Rigmor|rigmor||0|||||||||||||||rigmor||||||||}; - -{jakrar|monsters_men2:2|Jakrar|fallhaven_lumberjack||0|||||||||||||||fallhaven_lumberjack||||||||}; -{alaun|monsters_mage2:0|Alaun|alaun||0|||||||||||||||alaun||||||||}; -{busy_farmer|monsters_man1:0|Fermier affairé|fallhaven_farmer1||0|||||||||||||||fallhaven_farmer1||||||||}; -{old_farmer|monsters_mage2:0|Vieux fermier|fallhaven_farmer2||0|||||||||||||||fallhaven_farmer2||||||||}; -{khorand|monsters_men:3|Khorand|khorand||0|||||||||||||||khorand||||||||}; - -{vacor|monsters_mage:0|Vacor|vacor||0|1||72|||5|110|||4|8|40|2|vacor|vacor||||||||}; -{unzel|monsters_men:8|Unzel|unzel||0|1||59|||10|80|30|3|5|9|40|2|unzel|unzel||||||||}; -{shady_bandit|monsters_men2:9|Bandit louche|fallhaven_bandit||0|1||45|||5|70|30|3|3|9|50|2|fallhaven_bandit|fallhaven_bandit||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{wild_fox|monsters_dogs:3|Renard sauvage|fox2||4|||25|||5|100|||4|5|40||canine|||||||||}; -{stinging_wasp|monsters_insects:1|Guêpe agressive|forestwasp2||1|||15|||10|150|||1|2|60||wasp|||||||||}; -{wild_boar|monsters_dogs:6|Sanglier sauvage|forestboar2||4|||20|||5|110|||3|3|30||canineboss|||||||||}; -{forest_beetle|monsters_insects:4|Scarabée sylvestre|forestbeetle||1|||14|||10|150|||2|4|60|2|insect|||||||||}; -{wolf|monsters_dogs:4|Loup|forestwolf1||4|||30|10|3|5|110|||3|6|30||canine|||||||||}; -{forest_serpent|monsters_snakes:4|Serpent sylvestre|forestserpent1||7|||20|10|5|3|150|30|2|2|3|60||snake2|||||||||}; -{vicious_forest_serpent|monsters_snakes:4|Serpent sylvestre vicieux|forestserpent2||7|||27|10|5|3|150|30|2|3|4|50||snake2|||||||||}; -{anklebiter|monsters_dogs:6|Anklebiter|forestboar3||4|||31|||5|150|||3|9|60|3|canine2|||||||||}; -{flagstone_sentry|monsters_men:3|Sentinelle de Flagstone|flagstone_sentry||0|||||||||||||||flagstone_sentry||||||||}; -{escaped_prisoner|monsters_men:0|Prisonnier en fuite|prisoner1||0|1||15|||10|50|||3|7|20||prisoner|prisoner1||||||||}; -{starving_prisoner|monsters_misc:11|Prisonnier affamé|prisoner2||0|1||10|||3|60|||3|5|60||prisoner|prisoner2||||||||}; -{bone_warrior|monsters_skeleton1:0|Guerrier d\'os|skeleton2||3|||32|||5|120|||3|9|60|2|skeleton2|||||||||}; -{bone_champion|monsters_skeleton1:0|Champion d\'os|skeleton3||3|||49|||5|130|||4|9|60|2|skeleton3|||||||||}; -{undead_warden|monsters_liches:0|Surveillant de prison mort-vivant|flagstone_guard0||6|1||57|||5|120|20|2|4|8|60|1|flagstone_guard0|flagstone_guard0||||||||}; -{cave_guardian|monsters_rltiles1:16|Gardien de la cave|flagstone_guard1||2|1||61|||5|150|10|3|4|10|90|2|flagstone_guard1|flagstone_guard1||||||||}; -{winged_demon|monsters_demon1:0|Démon ailé|flagstone_guard2|2x2|2|1||82|||5|90|10|2|4|12|70|5|flagstone_guard2|flagstone_guard2||||||||}; -{narael|monsters_man1:0|Narael|narael||0|||||||||||||||narael||||||||}; -{rotting_corpse|monsters_zombie1:0|Corps putréfié|undead1||6|||71|||10|30|50|2|2|5|30|2|undead1|zombie1||||||||}; -{walking_corpse|monsters_zombie1:0|Corps animé|undead1||6|||90|||10|30|40|2|2|4|30|2|undead1|||||||||}; -{gargoyle|monsters_misc:2|Gargouille|undead1||3|||47|||10|110|10|2|3|7|70|2|undead1|||||||||}; -{fledgling_gargoyle|monsters_misc:1|Gargouille naissante|undead1||3|||35|||10|110|||3|6|60|2|undead1|||||||||}; -{large_cave_rat|monsters_rats:3|Gros rat troglodyte|undeadrat1||4|||21|10|10|3|60|10|2|3|4|40||catacombrat|||||||||}; -{pack_leader|monsters_dogs:5|Meneur de la meute|pack_boss||4|1||65|||5|90|20|2|2|10|40|4|pack_boss|||||||||}; -{pack_hunter|monsters_dogs:4|Loup de la meute|pack3||4|||45|||5|90|10|2|2|7|40|3|pack3|||||||||}; -{rabid_wolf|monsters_dogs:4|Loup enragé|pack2||4|||42|||5|90|||2|6|50|3|pack2|||||||||}; -{fledgling_wolf|monsters_dogs:3|Louveteau|pack2||4|||42|||3|70|||2|5|50|3|pack2|||||||||}; -{young_wolf|monsters_dogs:4|Jeune loup|pack1||4|||35|||3|60|||2|5|30|2|pack1|||||||||}; -{hunting_dog|monsters_dogs:2|Chien de chasse|pack1||4|||25|||5|60|||2|5|50||pack1|||||||||}; -{highwayman|monsters_men:8|Bandit de grands chemins|bandit1||0|||54|||5|90|50|2|2|4|30|2|bandit1|bandit1||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{smug_looking_thief|monsters_men2:9|Voleur visiblement content de lui|tg_thief||0|||||||||||||||thievesguild_thief_1||||||||}; -{thieves_guild_cook|monsters_men:0|Cuisinier de la guilde des voleurs|tg_cook||0||||||||||||||shop_thieves_guild_cook|thievesguild_cook_1||||||||}; -{pickpocket|monsters_men:7|Pickpocket|pickpocket||0|||||||||||||||thievesguild_pickpocket_1||||||||}; -{troublemaker|monsters_men:8|Fauteur de troubles|troublemaker||0||||||||||||||shop_troublemaker|thievesguild_troublemaker_1||||||||}; -{farrik|monsters_rogue1:0|Farrik|farrik||0|||||||||||||||farrik_select_1||||||||}; -{umar|monsters_man1:0|Umar|umar||0|||||||||||||||umar_select_1||||||||}; -{kaori|monsters_men:7|Kaori|kaori||0|||||||||||||||kaori_start||||||||}; -{old_vilegard_villager|monsters_men:0|Vieux villageois de Vilegard|vilegard_villager_1||0|||||||||||||||vilegard_villager_1||||||||}; -{grumpy_vilegard_villager|monsters_men:5|Villageois de Vilegard grognon|vilegard_villager_2||0|||||||||||||||vilegard_villager_2||||||||}; -{vilegard_citizen|monsters_men:1|Citoyen de Vilegard|vilegard_villager_3||0|||||||||||||||vilegard_villager_3||||||||}; -{vilegard_resident|monsters_men2:0|Habitant de Vilegard|vilegard_villager_4||0|||||||||||||||vilegard_villager_4||||||||}; -{vilegard_woman|monsters_men:6|Femme de Vilegard|vilegard_villager_5||0|||||||||||||||vilegard_villager_5||||||||}; -{erttu|monsters_mage2:0|Erttu|erttu||0|||||||||||||||erttu_1||||||||}; -{dunla|monsters_rogue1:0|Dunla|dunla||0||||||||||||||shop_dunla|dunla_default||||||||}; -{tharwyn|monsters_men:7|Tharwyn|tharwyn||0||||||||||||||shop_tharwyn|tharwyn_select||||||||}; -{tavern_guest|monsters_men:0|Invité de la taverne|vg_tavern_drunk||0|||||||||||||||vilegard_tavern_drunk_1||||||||}; -{jolnor|monsters_men2:8|Jolnor|jolnor||0||||||||||||||shop_jolnor|jolnor_select_1||||||||}; -{alynndir|monsters_mage2:0|Alynndir|alynndir||0||||||||||||||shop_alynndir|alynndir_1||||||||}; -{vilegard_armorer|monsters_mage2:0|Armurier de Vilegard|vg_armorer||0||||||||||||||shop_vg_armorer|vilegard_armorer_select||||||||}; -{vilegard_smith|monsters_mage2:0|Forgeron de Vilegard|vg_smith||0||||||||||||||shop_vg_smith|vilegard_smith_select||||||||}; -{ogam|monsters_men:0|Ogam|ogam||0|||||||||||||||ogam_1||||||||}; -{foaming_flask_cook|monsters_men:0|Cuisinier de Foaming Flask|ff_cook||0|||||||||||||||ff_cook_1||||||||}; -{torilo|monsters_men2:9|Torilo|torilo||0||||||||||||||shop_torilo|torilo_1||||||||}; -{ambelie|monsters_men:6|Ambelie|ambelie||0|||||||||||||||ambelie_1||||||||}; -{feygard_patrol|monsters_rltiles3:14|Patrouilleur de Feygard|ff_guard||0|||||||||||||||ff_guard_1||||||||}; -{feygard_patrol_captain|monsters_men:3|Capitaine de la patrouille de Feygard|ff_captain||0|||||||||||||||ff_captain_1||||||||}; -{feygard_patrol_watch|monsters_rltiles3:14|Sentinelle de la patrouille de Feygard|ff_outsideguard||0|1||80|||5|70|||2|7|80|3|ff_outsideguard|ff_outsideguard_select||||||||}; -{wrye|monsters_men:6|Wrye|wrye||0|||||||||||||||wrye_select_1||||||||}; -{oluag|monsters_men:8|Oluag|oluag||0|||||||||||||||oluag_1||||||||}; - -{cave_dwelling_boar|monsters_dogs:6|Sanglier troglodyte|caveboar1||4|||35|||5|70|||3|8|60|3|canine2|||||||||}; -{hardshell_beetle|monsters_insects:4|Scarabée à carapace épaisse|beetle2||1|||25|||5|50|||0|5|40|9|beetle2|||||||||}; -{young_shadow_gargoyle|monsters_misc:1|Jeune gargouille fantôme|shadowgarg1||3|||35|||5|65|8|3|3|9|75|3|shadowgarg1|||||||||}; -{fledgling_shadow_gargoyle|monsters_misc:1|Gargouille fantôme naissante|shadowgarg1||3|||36|||5|65|8|3|3|9|75|3|shadowgarg1|||||||||}; -{shadow_gargoyle|monsters_misc:2|Gargouille fantôme|shadowgarg2||3|||37|||5|70|8|3|4|10|85|3|shadowgarg1|||||||||}; -{tough_shadow_gargoyle|monsters_misc:2|Gargouille fantôme résistante|shadowgarg2||3|||37|||5|70|8|3|4|10|85|4|shadowgarg2|||||||||}; -{shadow_gargoyle_trainer|monsters_liches:0|Dresseur de gargouille fantôme|shadowgarg3||6|||35|||5|90|12|3|3|6|90|5|shadowgarg3|||||||||}; -{shadow_gargoyle_master|monsters_liches:1|Maître gargouille fantôme|shadowgarg4||6|||35|||5|125|12|3|3|6|90|5|shadowgarg3|||||||||}; -{maelveon|monsters_liches:2|Maelveon|maelveon||6|1||55|||3|80|15|3|0|12|90|5|maelveon|maelveon||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{puny_caverat|monsters_rats:0|Rat troglodyte|puny_caverat||4|||5|10|5|5|50|||1|1|30||rat|||||||||}; -{rabid_hound|monsters_rltiles2:108|Chien de chasse enragé|forestwolf2||4|||40|10|5|5|110|||3|9|30||canine|||||||||}; -{vicious_hound|monsters_rltiles2:110|Méchant chien de chasse|forestboar4||4|||31|10|5|5|150|||3|9|60|3|canineboss|||||||||}; -{mountain_wolf|monsters_rltiles2:109|Loup des montagnes|primwolf1||4|||49|10|5|5|150|||3|9|60|3|canine|||||||||}; - -{hatchling_white_wyrm|monsters_rltiles1:118|Wyrm blanc juste éclos|wyrm_1||7|||41|10|5|5|75|||4|10|130|5|wyrm_1||1||||||{{fatigue_minor|1|5|10|}}|}; -{young_white_wyrm|monsters_rltiles1:118|Jeune wyrm blanc|wyrm_2||7|||47|10|5|5|75|||4|10|130|5|wyrm_2||1||||||{{fatigue_minor|1|5|20|}}|}; -{white_wyrm|monsters_rltiles1:119|Wyrm blanc|wyrm_3||7|||55|10|5|3|75|||4|10|130|5|wyrm_3||1||||||{{fatigue_minor|1|5|50|}}|}; -{young_aulaeth|monsters_rltiles2:176|Jeune aulaeth|wyrm_1||5|||105|10|5|5|40|||0|4|30|5|aulaeth||1|1|1|||||}; -{aulaeth|monsters_rltiles2:58|Aulaeth|wyrm_2||5|||120|10|5|5|40|||0|5|40|6|aulaeth||1|1|1|||||}; -{strong_aulaeth|monsters_rltiles2:58|Gros aulaeth|wyrm_3||5|||135|10|5|5|40|||0|5|35|6|aulaeth||1|1|1|||||}; -{wyrm_trainer|monsters_rltiles2:0|Dresseur de wyrm|wyrm_4||6|||69|10|5|3|90|||2|9|90|4|wyrm_4||1|1|1||||{{fatigue_minor|1|10|70|}}|}; -{wyrm_apprentice|monsters_rltiles2:0|Apprenti wyrm|wyrm_4||6|||69|10|5|5|140|||2|9|90|4|wyrm_4||1|1|1||||{{fatigue_minor|1|10|70|}}|}; -{young_gornaud|monsters_rltiles2:29|Jeune gornaud|gornaud_1||5|||70|10|5|5|70|||0|15|50||gornaud_1||1||||||{{dazed|1|5|20|}}|}; -{gornaud|monsters_rltiles2:29|Gornaud|gornaud_2||5|||95|10|5|5|70|||0|15|50|4|gornaud_2||1||||||{{dazed|1|5|50|}}|}; -{strong_gornaud|monsters_rltiles2:30|Gros Gornaud|gornaud_3||5|||95|10|5|5|70|||0|15|50|5|gornaud_3||1||||||{{dazed|1|5|70|}}|}; -{slithering_venomfang|monsters_snakes:2|Croc de venin frétillant|gornaud_1||7|||35|10|5|3|120|||1|2|90|2|cave_serpent||1||||||{{poison_weak|1|2|20|}}|}; -{scaled_venomfang|monsters_snakes:3|Croc de venin géant|gornaud_2||7|||35|10|5|3|150|||2|4|90|2|cave_serpent||1||||||{{poison_weak|1|2|50|}}|}; -{tough_venomfang|monsters_snakes:3|Croc de venin résistant|gornaud_3||7|||41|10|5|3|150|||2|5|90|2|cave_serpent||1||||||{{poison_weak|1|2|50|}}|}; - -{restless_dead|monsters_rltiles1:47|Mort tourmenté|restless_dead_1||8|||25|10|5|5|50|80|2|0|3|140|3|restless_dead_1|||||||||}; -{grave_spawn|monsters_rltiles1:49|Grave spawn|restless_dead_1||2|||45|10|5|5|110|40|2|2|5|35|3|restless_dead_1|||||||||}; -{restless_apparition|monsters_rltiles1:47|Restless apparition|restless_dead_2||8|||29|10|5|3|90|60|3|2|6|10|1|restless_dead_2|||||||||}; -{skeletal_reaper|monsters_rltiles1:27|Skeletal reaper|restless_dead_2||3|||15|10|5|5|150|20|2|0|9|110||restless_dead_2|||||||||}; -{kazaul_spawn|monsters_rltiles1:41|Kazaul spawn|kazaul_1||2|||45|10|5|3|70|50|2|3|5|90|1|kazaul_1|||||||||}; -{kazaul_imp|monsters_rltiles1:45|Kazaul imp|kazaul_2||2|||45|10|5|3|70|40|2|3|7|105|1|kazaul_2|||||||||}; -{kazaul_guardian|monsters_rltiles1:42|Kazaul guardian|kazaul_guardian||2|1||95|10|5|5|70|40|2|3|8|90|3|kazaul_guardian|kazaul_guardian||||||||}; -{graverobber|monsters_karvis2:3|Graverobber|bjorgur_bandit||0|1||62|10|5|5|120|||2|6|72|1|bjorgur_bandit|bjorgur_bandit||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{agent1|monsters_men:4|Agent|bwm_agent_1||0|1||||||||||||||bwm_agent_1_start||||||||}; -{agent2|monsters_men:4|Agent|bwm_agent_2||0|1||||||||||||||bwm_agent_2_start||||||||}; -{agent3|monsters_men:4|Agent|bwm_agent_3||0|1||||||||||||||bwm_agent_3_start||||||||}; -{agent4|monsters_men:4|Agent|bwm_agent_4||0|1||||||||||||||bwm_agent_4_start||||||||}; -{agent5|monsters_men:4|Agent|bwm_agent_5||0|1||||||||||||||bwm_agent_5_start||||||||}; -{agent6|monsters_men:4|Agent|bwm_agent_6||0|1||||||||||||||bwm_agent_6_start||||||||}; -{arghest|monsters_rltiles2:81|Arghest|arghest||0|||||||||||||||arghest_start||||||||}; -{tonis|monsters_rltiles1:67|Tonis|tonis||0|||||||||||||||tonis_start||||||||}; - -{moyra|monsters_rltiles1:74|Moyra|moyra||0|||||||||||||||moyra_1||||||||}; -{prim_citizen|monsters_karvis2:6|Prim citizen|prim_commoner1||0|||||||||||||||prim_commoner1||||||||}; -{prim_commoner|monsters_rltiles1:68|Prim commoner|prim_commoner2||0|||||||||||||||prim_commoner2||||||||}; -{prim_resident|monsters_karvis2:2|Prim resident|prim_commoner3||0|||||||||||||||prim_commoner3||||||||}; -{prim_evoker|monsters_rltiles1:84|Prim evoker|prim_commoner4||0|||||||||||||||prim_commoner4||||||||}; -{laecca|monsters_rltiles1:72|Laecca|laecca||0|||||||||||||||laecca_1||||||||}; -{prim_cook|monsters_karvis2:0|Prim cook|prim_cook||0|||||||||||||||prim_cook_start||||||||}; -{prim_visitor|monsters_rltiles1:63|Prim visitor|prim_innguest||0|||||||||||||||prim_innguest||||||||}; -{birgil|monsters_rltiles2:81|Birgil|birgil||0||||||||||||||shop_birgil|birgil_1||||||||}; -{prim_tavern_guest|monsters_rltiles1:106|Prim tavern guest|prim_tavern_guest1||0|||||||||||||||prim_tavern_guest1||||||||}; -{prim_tavern_regular|monsters_rltiles1:106|Prim tavern regular|prim_tavern_guest2||0|||||||||||||||prim_tavern_guest2||||||||}; -{prim_bar_guest|monsters_rltiles1:106|Prim bar guest|prim_tavern_guest3||0|||||||||||||||prim_tavern_guest3||||||||}; -{prim_bar_regular|monsters_rltiles1:106|Prim bar regular|prim_tavern_guest4||0|||||||||||||||prim_tavern_guest4||||||||}; -{prim_armorer|monsters_rltiles1:88|Prim armorer|prim_armorer||0||||||||||||||shop_prim_armorer|prim_armorer||||||||}; -{jueth|monsters_men2:0|Jueth|prim_tailor||0|||||||||||||||prim_tailor||||||||}; -{bjorgur|monsters_karvis2:7|Bjorgur|bjorgur||0|||||||||||||||bjorgur_start||||||||}; -{prim_prisoner|monsters_rltiles2:81|Prim prisoner|prim_prisoner||0|||||||||||||||prim_guard1||||||||}; -{fulus|monsters_karvis2:3|Fulus|fulus||0|||||||||||||||fulus_start||||||||}; -{guthbered|monsters_rltiles1:92|Guthbered|guthbered||0|1||80|10|5|5|70|||4|9|80|4|guthbered|guthbered_start||||||||}; -{guthbereds_bodyguard|monsters_rltiles1:76|Guthbered\'s bodyguard|guthbered_guard||0|||||||||||||||guthbered_guard||||||||}; -{prim_weapon_guard|monsters_rltiles1:65|Prim weapon guard|prim_guard1||0|||||||||||||||prim_guard1||||||||}; -{prim_sentry|monsters_rltiles3:14|Prim sentry|prim_guard2||0|||||||||||||||prim_guard2||||||||}; -{prim_guard|monsters_rltiles1:65|Prim guard|prim_guard4||0|||||||||||||||prim_guard4||||||||}; -{tired_prim_guard|monsters_rltiles1:76|Tired Prim guard|prim_guard3||0|||||||||||||||prim_guard3||||||||}; -{prim_treasury_guard|monsters_rltiles1:69|Prim treasury guard|prim_treasury_guard||0|||||||||||||||prim_treasury_guard||||||||}; -{samar|monsters_rltiles2:93|Samar|prim_priest||0||||||||||||||shop_samar|prim_priest||||||||}; -{prim_priestly_acolyte|monsters_rltiles1:83|Prim priestly acolyte|prim_acolyte||0|||||||||||||||prim_acolyte||||||||}; -{studying_prim_pupil|monsters_rltiles1:74|Studying Prim pupil|prim_pupil1||0|||||||||||||||prim_pupil1||||||||}; -{reading_prim_pupil|monsters_rltiles1:74|Reading Prim pupil|prim_pupil2||0|||||||||||||||prim_pupil2||||||||}; -{prim_pupil|monsters_rltiles1:74|Prim pupil|prim_pupil3||0|||||||||||||||prim_pupil3||||||||}; - -{blackwater_entrance_guard|monsters_rltiles3:14|Blackwater entrance guard|blackwater_entranceguard||0|||30|10|||||||||||blackwater_entranceguard||||||||}; -{blackwater_dinner_guest|monsters_karvis2:2|Blackwater dinner guest|blackwater_guest1||0|||20|10|||||||||||blackwater_guest1||||||||}; -{blackwater_inhabitant|monsters_man1:0|Blackwater inhabitant|blackwater_guest2||0|||10|10|||||||||||blackwater_guest2||||||||}; -{blackwater_cook|monsters_karvis2:0|Blackwater cook|blackwater_cook||0|||||||||||||||blackwater_cook||||||||}; -{keneg|monsters_rltiles1:86|Keneg|keneg||0|||||||||||||||keneg||||||||}; -{mazeg|monsters_rltiles1:85|Mazeg|mazeg||0||||||||||||||shop_mazeg|mazeg||||||||}; -{waeges|monsters_rltiles1:88|Waeges|waeges||0||||||||||||||shop_waeges|waeges||||||||}; -{blackwater_fighter|monsters_rltiles1:66|Blackwater fighter|blackwater_fighter||0|||||||||||||||blackwater_fighter||||||||}; -{ungorm|monsters_rltiles1:83|Ungorm|ungorm||0|||||||||||||||ungorm||||||||}; -{blackwater_pupil|monsters_rltiles1:74|Blackwater pupil|blackwater_pupil||0|||||||||||||||blackwater_pupil||||||||}; -{laede|monsters_rltiles1:81|Laede|blackwater_sleephall||0|||||||||||||||laede||||||||}; -{herec|monsters_men2:9|Herec|herec||0||||||||||||||shop_herec|herec_start||||||||}; -{iducus|monsters_rltiles1:87|Iducus|iducus||0||||||||||||||shop_iducus|iducus||||||||}; -{blackwater_priest|monsters_rltiles1:80|Blackwater priest|blackwater_priest||0|||||||||||||||blackwater_priest||||||||}; -{studying_blackwater_priest|monsters_rltiles1:84|Studying Blackwater priest|blackwater_pupil||0|||||||||||||||blackwater_pupil||||||||}; -{blackwater_guard|monsters_rltiles1:76|Blackwater guard|blackwater_guard1||0|||||||||||||||blackwater_guard1||||||||}; -{blackwater_border_patrol|monsters_rltiles1:76|Blackwater border patrol|blackwater_guard2||0|||||||||||||||blackwater_guard2||||||||}; -{harlenns_bodyguard|monsters_rltiles1:76|Harlenn\'s bodyguard|blackwater_bossguard||0|||||||||||||||blackwater_bossguard||||||||}; -{blackwater_chamber_guard|monsters_men:3|Blackwater chamber guard|blackwater_throneguard||0|1||||||||||||||blackwater_throneguard||||||||}; -{harlenn|monsters_men2:6|Harlenn|harlenn||0|1||80|10|5|5|70|||4|9|80|4|harlenn|harlenn_start||||||||}; -{throdna|monsters_men2:4|Throdna|throdna||0|||||||||||||||throdna_start||||||||}; -{throdnas_guard|monsters_rltiles1:85|Throdna\'s guard|throdna_guard||0|||||||||||||||throdna_guard||||||||}; -{blackwater_mage|monsters_rltiles1:80|Blackwater mage|blackwater_acolyte||0|||||||||||||||blackwater_acolyte||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{young_larval_burrower|monsters_rltiles2:164|Young larval burrower|larva_1||1|||30|10|5|5|120|35|3|1|6|25||larva_1|||||||||}; -{larval_burrower|monsters_rltiles2:164|Larval burrower|larva_2||1|||35|10|5|5|120|35|3|1|6|25||larva_2|||||||||}; -{larval_boss|monsters_rltiles2:164|Strong larval burrower|larva_boss||1|1||35|10|5|5|120|35|3|1|6|25||larva_boss|||||||||}; - -{rivertroll|monsters_rltiles1:104|River troll|rivertroll||5|1||210|10|5|5|120|30|4|2|9|65|7|rivertroll|||||||||}; -{grass_ant|monsters_insects:0|Grasslands ant|fieldcritter_0||1|||29|10|5|3|120|||0|4|80||fieldcritter_0|||||||||}; -{grass_ant2|monsters_insects:2|Tough grasslands ant|fieldcritter_0||1|||29|10|5|3|125|||1|5|80||fieldcritter_0|||||||||}; -{grass_beetle|monsters_insects:4|Grasslands beetle|fieldcritter_1||1|||34|10|5|5|120|||0|5|80|3|fieldcritter_1|||||||||}; -{grass_beetle2|monsters_insects:4|Tough grasslands beetle|fieldcritter_1||1|||35|10|5|5|125|||1|6|80|4|fieldcritter_1|||||||||}; -{grass_snake|monsters_rltiles2:25|Grasslands snake|fieldcritter_2||7|||36|10|5|3|120|||0|6|80||fieldcritter_2|||||||||}; -{grass_snake2|monsters_rltiles2:25|Tough grasslands snake|fieldcritter_2||7|||38|10|5|3|125|||1|7|80||fieldcritter_2|||||||||}; -{grass_lizard|monsters_rltiles2:114|Grasslands lizard|fieldcritter_3||7|||45|10|5|3|120|||0|8|80|3|fieldcritter_3|||||||||}; -{grass_lizard2|monsters_rltiles2:117|Black grasslands lizard|fieldcritter_3||7|||45|10|5|3|125|||2|9|80|4|fieldcritter_3|||||||||}; - -{keknazar|monsters_misc:9|Keknazar|keknazar||7|1||90|10|5|5|50|20|3|3|9|70|8|keknazar|keknazar||||||||}; - -{crossroads_rat|monsters_rats:0|Rat|crossroads_rat||4|||5|10|5|5|50|||1|1|30||rat|||||||||}; -{fieldwasp_0|monsters_insects:1|Frantic forest wasp|fieldwasp_0||1|||29|10|5|3|70|60|3|2|6|95||fieldwasp|||||||||}; -{fieldwasp_1|monsters_insects:1|Frantic forest wasp|fieldwasp_1||1|||32|10|5|3|70|70|3|2|6|125||fieldwasp|||||||||}; -{fieldwasp_2|monsters_insects:1|Frantic forest wasp|fieldwasp_2||1|||35|10|5|3|70|75|3|2|6|130||fieldwasp|||||||||}; - -{izthiel_1|monsters_rltiles2:51|Young Izthiel|izthiel_1||7|||40|10|5|3|70|||2|7|57|5|izthiel||0|||||||}; -{izthiel_2|monsters_rltiles2:49|Izthiel|izthiel_2||7|||45|10|5|3|90|||2|7|58|6|izthiel||0|||||||}; -{izthiel_3|monsters_rltiles2:48|Strong Izthiel|izthiel_3||7|||52|10|5|3|80|||2|7|60|8|izthiel||1||||||{{bleeding_wound|2|4|40|}}|}; -{izthiel_4|monsters_rltiles2:52|Izthiel Guardian|izthiel_4||7|||54|10|5|3|120|||3|7|60|11|izthiel_4||1||||||{{bleeding_wound|3|5|50|}}|}; -{frog_1|monsters_rltiles1:131|River frog|frog_1||7|||15|10|5|2|150|||0|5|45||frog||0|||||||}; -{frog_2|monsters_rltiles1:131|Tough river frog|frog_2||7|||17|10|5|2|160|||0|5|49||frog||0|||||||}; -{frog_3|monsters_rltiles1:130|Poisonous river frog|frog_3||7|||21|10|5|2|165|||0|5|55||frog_3||1||||||{{poison_weak|2|5|30|}}|}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{lostsheep1|monsters_karvis2:8|Sheep|tinlyn_lostsheep1||4|1||5|10|5|5|10|||0|1|5||tinlyn_sheep|tinlyn_lostsheep1||||||||}; -{lostsheep2|monsters_karvis2:8|Sheep|tinlyn_lostsheep2||4|1||5|10|5|5|10|||0|1|5||tinlyn_sheep|tinlyn_lostsheep2||||||||}; -{lostsheep3|monsters_karvis2:8|Sheep|tinlyn_lostsheep3||4|1||5|10|5|5|10|||0|1|5||tinlyn_sheep|tinlyn_lostsheep3||||||||}; -{lostsheep4|monsters_karvis2:8|Sheep|tinlyn_lostsheep4||4|1||5|10|5|5|10|||0|1|5||tinlyn_sheep|tinlyn_lostsheep4||||||||}; -{sheep1|monsters_karvis2:8|Sheep|tinlyn_sheep||4|1||5|10|5|5|10|||0|1|5||tinlyn_sheep|tinlyn_sheep||||||||}; - -{ailshara|monsters_men:8|Ailshara|ailshara||0||||||||||||||shop_ailshara|ailshara||||||||}; -{arngyr|monsters_rltiles1:65|Arngyr|arngyr||0|||||||||||||||arngyr||||||||}; -{benbyr|monsters_rltiles1:74|Benbyr|benbyr||0|||||||||||||||benbyr||||||||}; -{celdar|monsters_rltiles1:94|Celdar|celdar||0|||||||||||||||celdar||||||||}; -{conren|monsters_karvis2:5|Conren|conren||0|||||||||||||||conren||||||||}; -{crossroads_backguard|monsters_rltiles1:76|Guard|crossroads_backguard||0|1||||||||||||||crossroads_backguard||||||||}; -{crossroads_guard|monsters_rltiles1:76|Guard|crossroads_guard||0|||||||||||||||crossroads_guard||||||||}; -{crossroads_sleepguard|monsters_rltiles1:76|Guard|crossroads_sleepguard||0|||||||||||||||crossroads_sleepguard||||||||}; -{crossroads_guest|monsters_rltiles1:83|Visitor|crossroads_guest||0|||||||||||||||crossroads_guest||||||||}; -{erinith|monsters_rltiles1:82|Erinith|erinith||0|||||||||||||||erinith||||||||}; -{fanamor|monsters_men:7|Fanamor|fanamor||0|||||||||||||||fanamor||||||||}; -{feygard_bridgeguard|monsters_men2:4|Feygard bridge guard|feygard_bridgeguard||0|||||||||||||||feygard_bridgeguard||||||||}; -{fieldwasp_unique|monsters_insects:1|Frantic forest wasp|fieldwasp_unique||1|1||70|10|5|3|70|200|3|2|6|150||fieldwasp_unique|||||||||}; -{gallain|monsters_man1:0|Gallain|gallain||0||||||||||||||shop_gallain|gallain||||||||}; -{gandoren|monsters_rltiles1:69|Gandoren|gandoren||0|||||||||||||||gandoren||||||||}; -{grimion|monsters_men2:2|Grimion|grimion||0||||||||||||||shop_grimion|grimion||||||||}; -{hadracor|monsters_men2:2|Hadracor|hadracor||0||||||||||||||shop_hadracor|hadracor||||||||}; -{kuldan|monsters_rltiles1:85|Kuldan|kuldan||0|||||||||||||||kuldan||||||||}; -{kuldan_guard|monsters_rltiles3:14|Kuldan\'s Guard|kuldan_guard||0|||||||||||||||kuldan_guard||||||||}; -{landa|monsters_men:0|Landa|landa||0|||||||||||||||landa||||||||}; -{loneford_chapelguard|monsters_rltiles1:78|Chapel guard|loneford_chapelguard||0|||||||||||||||loneford_chapelguard||||||||}; -{loneford_farmer0|monsters_karvis2:1|Farmer|loneford_farmer0||0|||||||||||||||loneford_farmer0||||||||}; -{loneford_guard0|monsters_rltiles3:14|Guard|loneford_guard0||0|||||||||||||||loneford_guard0||||||||}; -{loneford_tavern_patron|monsters_karvis2:2|Tavern owner|loneford_tavern_patron||0|||||||||||||||loneford_tavern_patron||||||||}; -{loneford_villager0|monsters_karvis2:0|Villager|loneford_villager0||0|||||||||||||||loneford_villager0||||||||}; -{loneford_villager1|monsters_karvis2:1|Villager|loneford_villager1||0|||||||||||||||loneford_villager1||||||||}; -{loneford_villager2|monsters_karvis2:3|Villager|loneford_villager2||0|||||||||||||||loneford_villager2||||||||}; -{loneford_villager3|monsters_karvis2:5|Villager|loneford_villager3||0|||||||||||||||loneford_villager3||||||||}; -{loneford_villager4|monsters_men:2|Villager|loneford_villager4||0|||||||||||||||loneford_villager4||||||||}; -{loneford_wellguard|monsters_rltiles1:72|Guard|loneford_wellguard||0|||||||||||||||loneford_wellguard||||||||}; -{mienn|monsters_rltiles1:87|Mienn|mienn||0|||||||||||||||mienn||||||||}; -{minarra|monsters_rltiles1:86|Minarra|minarra||0||||||||||||||shop_minarra|minarra||||||||}; -{puny_warehouserat|monsters_rats:1|Warehouse rat|puny_warehouserat||4|||5|10|5|5|50|||1|1|30||rat|||||||||}; -{rolwynn|monsters_rltiles1:77|Rolwynn|rolwynn||0|||||||||||||||rolwynn||||||||}; -{sienn|monsters_rltiles1:66|Sienn|sienn||0|||||||||||||||sienn||||||||}; -{sienn_pet|monsters_misc:0|Sienn\'s pet|sienn_pet||7|||||||||||||||sienn_pet||||||||}; -{siola|monsters_rltiles1:90|Siola|siola||0||||||||||||||shop_siola|siola||||||||}; -{taevinn|monsters_karvis2:5|Taevinn|taevinn||0|||||||||||||||taevinn||||||||}; -{talion|monsters_men2:8|Talion|talion||0||||||||||||||shop_talion|talion||||||||}; -{telund|monsters_rltiles1:74|Telund|telund||0|||||||||||||||telund||||||||}; -{tinlyn|monsters_karvis2:7|Tinlyn|tinlyn||0|||||||||||||||tinlyn||||||||}; -{wallach|monsters_rltiles1:75|Wallach|wallach||0|||||||||||||||wallach||||||||}; -{woodcutter_0|monsters_men:0|Woodcutter|woodcutter_0||0|||||||||||||||woodcutter_0||||||||}; -{woodcutter_2|monsters_men:0|Woodcutter|woodcutter_2||0|||||||||||||||woodcutter_2||||||||}; -{woodcutter_3|monsters_men2:2|Woodcutter|woodcutter_3||0|||||||||||||||woodcutter_3||||||||}; -{woodcutter_4|monsters_rltiles1:93|Woodcutter|woodcutter_4||0|||||||||||||||woodcutter_4||||||||}; -{woodcutter_5|monsters_men2:2|Woodcutter|woodcutter_5||0|||||||||||||||woodcutter_5||||||||}; -{rogorn|monsters_rltiles1:63|Rogorn|rogorn||0|1||145|10|5|3|90|||5|9|120|5|rogorn|rogorn||||||||}; -{rogorn_henchman|monsters_rogue1:0|Rogorn\'s henchman|rogorn_henchman||0|1||130|10|5|3|80|||5|8|120|4|rogorn_henchman|rogorn_henchman||||||||}; -{buceth|monsters_men2:7|Buceth|buceth||0|1||75|10|5|3|80|200|2|3|9|120|4|buceth|buceth||||||||}; -{gauward|monsters_mage2:0|Gauward|gauward||0|||||||||||||||gauward||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{iqhan_1a|monsters_rltiles2:96|Iqhan worker thrall|iqhan_1||0|||55|10|5|3|110|||2|9|70||iqhan_lesser|||||||||}; -{iqhan_1b|monsters_rltiles2:96|Iqhan thrall servant|iqhan_1||0|||57|10|5|3|120|15|2|2|9|70||iqhan_lesser|||||||||}; -{iqhan_2a|monsters_rltiles2:97|Iqhan guard thrall|iqhan_2||0|||59|10|5|3|130|15|2|2|9|70||iqhan_lesser|||||||||}; -{iqhan_2b|monsters_rltiles2:97|Iqhan thrall|iqhan_2||0|||62|10|5|3|130|15|2|2|10|70||iqhan_lesser|||||||||}; -{iqhan_3a|monsters_rltiles2:128|Iqhan warrior thrall|iqhan_3||0|||65|10|5|3|140|15|2|2|11|70||iqhan_lesser|||||||||}; -{iqhan_3b|monsters_rltiles2:129|Iqhan master|iqhan_3||0|||67|10|5|3|140|20|2|2|12|60||iqhan_lesser|||||||||}; -{iqhan_4a|monsters_rltiles2:129|Iqhan master|iqhan_4||0|||69|10|5|3|140|20|2|2|13|60||iqhan_lesser|||||||||}; -{iqhan_4b|monsters_rltiles2:133|Iqhan master|iqhan_4||0|||71|10|5|3|140|20|2|2|15|60||iqhan|||||||||}; -{iqhan_ch_1a|monsters_rltiles2:135|Iqhan chaos evoker|iqhan_ch_1||0|||73|10|5|3|140|20|2|2|15|60||iqhan||1||||||{{chaotic_grip|2|5|20|}}|}; -{iqhan_ch_1b|monsters_rltiles2:135|Iqhan chaos evoker|iqhan_ch_1||0|||75|10|5|3|150|20|2|2|14|60||iqhan||1||||||{{chaotic_grip|2|5|20|}}|}; -{iqhan_ch_2a|monsters_rltiles2:134|Iqhan chaos servant|iqhan_ch_2||0|||78|10|5|3|150|20|2|2|14|60||iqhan||1||||||{{chaotic_grip|4|5|50|}}|}; -{iqhan_ch_2b|monsters_rltiles2:134|Iqhan chaos servant|iqhan_ch_2||0|||79|10|5|3|150|25|2|2|13|75||iqhan||1||||||{{chaotic_grip|4|5|50|}}|}; -{iqhan_ch_3a|monsters_rltiles2:136|Iqhan chaos master|iqhan_ch_3||0|||83|10|5|3|170|25|2|2|13|75||iqhan_master||1||||||{{chaotic_grip|4|5|50|}}|}; -{iqhan_ch_3b|monsters_rltiles2:137|Iqhan chaos master|iqhan_ch_3||0|||85|10|5|3|170|25|2|2|13|75||iqhan_master||1||||||{{chaotic_grip|4|5|50|}}|}; -{iqhan_chb_1a|monsters_rltiles1:19|Iqhan chaos beast|iqhan_chb_1||3|||122|10|10|10|150|10|3|0|15|45|9|iqhan_beast||1||||||{{chaotic_grip|5|5|50|}}|}; -{iqhan_chb_1b|monsters_rltiles1:19|Iqhan chaos beast|iqhan_chb_1||3|||140|10|10|10|150|10|3|0|15|45|9|iqhan_beast||1||||||{{chaotic_grip|5|5|50|}}|}; -{iqhan_greeter|monsters_men:8|Rancent|iqhan_greeter||0|1||||||||||||||iqhan_greeter||||||||}; -{iqhan_boss|monsters_rltiles1:5|Iqhan chaos enslaver|iqhan_boss||6|1||120|10|5|3|170|30|2|2|13|75|2|iqhan_boss|iqhan_boss|1||||||{{chaotic_grip|7|5|50|}{chaotic_curse|3|5|50|}}|}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{cbeetle_1|monsters_rltiles2:63|Young carrion beetle|scaradon_1||1|||45|10|5|5|65|||0|5|30|9|scaradon|||||||||}; -{cbeetle_2|monsters_rltiles2:63|Carrion beetle|scaradon_1||1|||51|10|5|5|75|||0|5|30|9|scaradon|||||||||}; -{scaradon_1|monsters_rltiles1:98|Young Scaradon|scaradon_1||1|||32|10|5|3|50|||0|4|30|15|scaradon|||||||||}; -{scaradon_2|monsters_rltiles1:98|Small Scaradon|scaradon_2||1|||35|10|5|3|50|||1|4|30|15|scaradon|||||||||}; -{scaradon_3|monsters_rltiles1:97|Scaradon|scaradon_2||1|||35|10|5|3|50|||0|4|30|17|scaradon|||||||||}; -{scaradon_4|monsters_rltiles1:97|Tough Scaradon|scaradon_2||1|||37|10|5|3|50|||1|4|30|17|scaradon|||||||||}; -{scaradon_5|monsters_rltiles1:97|Hardshell Scaradon|scaradon_3||1|||38|10|5|3|50|||1|5|30|18|scaradon_b|||||||||}; - -{mwolf_1|monsters_dogs:3|Mountain wolf pup|mwolf_1||4|||45|10|5|5|80|10|2|2|7|40|3|mwolf|||||||||}; -{mwolf_2|monsters_dogs:3|Young mountain wolf|mwolf_1||4|||52|10|5|5|80|10|2|3|7|44|3|mwolf|||||||||}; -{mwolf_3|monsters_dogs:2|Young mountain fox|mwolf_1||4|||56|10|5|5|80|10|2|3|7|48|4|mwolf|||||||||}; -{mwolf_4|monsters_dogs:2|Mountain fox|mwolf_2||4|||60|10|5|5|85|10|2|3|8|52|4|mwolf|||||||||}; -{mwolf_5|monsters_dogs:2|Ferocious mountain fox|mwolf_2||4|||64|10|5|3|85|10|2|3|8|54|5|mwolf|||||||||}; -{mwolf_6|monsters_dogs:4|Rabid mountain wolf|mwolf_2||4|||67|10|5|3|90|10|2|3|9|56|5|mwolf|||||||||}; -{mwolf_7|monsters_dogs:4|Strong mountain wolf|mwolf_3||4|||73|10|5|3|90|10|2|3|9|57|6|mwolf|||||||||}; -{mwolf_8|monsters_dogs:4|Ferocious mountain wolf|mwolf_3||4|||78|10|5|3|90|10|2|3|10|59|6|mwolf_b|||||||||}; - -{mbrute_1|monsters_rltiles2:35|Young mountain brute|mbrute_1||5|||148|10|5|5|70|20|2.5|0|14|60|4|mbrute|||||||||}; -{mbrute_2|monsters_rltiles2:35|Weak mountain brute|mbrute_1||5|||157|10|5|5|70|20|2.5|0|14|60|4|mbrute|||||||||}; -{mbrute_3|monsters_rltiles2:36|Whitefur mountain brute|mbrute_1||5|||166|10|5|5|70|20|2.5|0|14|60|4|mbrute|||||||||}; -{mbrute_4|monsters_rltiles2:35|Mountain brute|mbrute_2||5|||175|10|5|5|70|20|2.5|0|14|60|4|mbrute|||||||||}; -{mbrute_5|monsters_rltiles2:36|Large mountain brute|mbrute_2||5|||184|10|5|5|70|20|2.5|0|14|60|4|mbrute|||||||||}; -{mbrute_6|monsters_rltiles2:34|Fast mountain brute|mbrute_2||5|||82|12|5|3|80|20|2.5|0|14|60|4|mbrute|||||||||}; -{mbrute_7|monsters_rltiles2:34|Quick mountain brute|mbrute_3||5|||93|12|5|3|80|20|2.5|0|15|60|4|mbrute|||||||||}; -{mbrute_8|monsters_rltiles2:34|Aggressive mountain brute|mbrute_3||5|||104|12|5|3|80|20|2.5|1|15|60|4|mbrute|||||||||}; -{mbrute_9|monsters_rltiles2:33|Strong mountain brute|mbrute_3||5|||115|10|5|3|80|20|2.5|1|15|60|4|mbrute|||||||||}; -{mbrute_10|monsters_rltiles2:33|Tough mountain brute|mbrute_4||5|||126|10|5|3|80|30|3|2|15|60|4|mbrute|||||||||}; -{mbrute_11|monsters_rltiles2:33|Fearless mountain brute|mbrute_4||5|||137|10|5|3|80|30|3|2|15|60|4|mbrute_b|||||||||}; -{mbrute_12|monsters_rltiles2:33|Enraged mountain brute|mbrute_4||5|||148|10|5|3|80|40|3|2|16|60|4|mbrute_b|||||||||}; - -{erumen_1|monsters_rltiles2:114|Young Erumem Lizard|erumen_1||7|||45|10|5|3|125|||2|9|80|4|erumen|||||||||}; -{erumen_2|monsters_rltiles2:114|Spotted Erumem Lizard|erumen_1||7|||45|10|5|3|125|||2|9|80|4|erumen|||||||||}; -{erumen_3|monsters_rltiles2:114|Erumem Lizard|erumen_2||7|||45|10|5|3|125|||2|9|80|4|erumen|||||||||}; -{erumen_4|monsters_rltiles2:115|Strong Erumen Lizard|erumen_2||7|||79|10|5|3|125|||2|9|80|4|erumen|||||||||}; -{erumen_5|monsters_rltiles2:115|Vile Erumen Lizard|erumen_3||7|||89|10|5|3|150|||2|9|80|4|erumen|||||||||}; -{erumen_6|monsters_rltiles2:117|Tough Erumen Lizard|erumen_3||7|||91|10|5|3|125|||2|9|90|8|erumen|||||||||}; -{erumen_7|monsters_rltiles2:117|Hardened Erumen Lizard|erumen_4||7|||93|10|5|3|125|||2|9|90|12|erumen_b||||||||{{bleeding_wound|3|3|50|}}|}; - -{plaguesp_1|monsters_rltiles2:61|Puny Plaguecrawler|plaguespider_1||1|||55|10|5|3|80|60|3|1|6|140||plaguespider||1||||||{{contagion|1|5|70|}{blister|1|5|20|}}|}; -{plaguesp_2|monsters_rltiles2:61|Plaguecrawler|plaguespider_1||1|||57|10|5|3|80|60|3|1|6|140||plaguespider||1||||||{{contagion|3|5|70|}{blister|2|5|20|}}|}; -{plaguesp_3|monsters_rltiles2:61|Tough Plaguecrawler|plaguespider_1||1|||59|10|5|3|80|60|3|1|6|140||plaguespider||1||||||{{contagion|3|5|70|}{blister|2|5|20|}}|}; -{plaguesp_4|monsters_rltiles2:61|Black Plaguecrawler|plaguespider_2||1|||61|10|5|3|80|60|3|1|6|150||plaguespider||1||||||{{contagion|4|5|70|}{blister|3|5|20|}}|}; -{plaguesp_5|monsters_rltiles2:151|Plaguestrider|plaguespider_2||1|||62|10|5|3|80|60|3|2|6|150||plaguespider||1||||||{{contagion|4|5|70|}{blister|3|5|20|}}|}; -{plaguesp_6|monsters_rltiles2:151|Hardshell Plaguestrider|plaguespider_2||1|||63|10|5|3|80|60|3|2|6|150||plaguespider||1||||||{{contagion|5|5|70|}{blister|4|5|20|}}|}; -{plaguesp_7|monsters_rltiles2:151|Tough Plaguestrider|plaguespider_3||1|||64|10|5|3|80|70|3|2|6|155||plaguespider||1||||||{{contagion|5|5|70|}{blister|4|5|20|}}|}; -{plaguesp_8|monsters_rltiles2:153|Wooly Plaguestrider|plaguespider_3||1|||65|10|5|3|80|70|3|2|6|155||plaguespider||1||||||{{contagion|6|5|70|}{blister|5|5|50|}}|}; -{plaguesp_9|monsters_rltiles2:153|Tough wooly Plaguestrider|plaguespider_3||1|||66|10|5|3|80|70|3|2|7|160||plaguespider||1||||||{{contagion|6|5|70|}{blister|5|5|50|}}|}; -{plaguesp_10|monsters_rltiles2:151|Vile Plaguestrider|plaguespider_4||1|||67|10|5|3|85|70|3|2|7|160||plaguespider||1||||||{{contagion|6|5|70|}{blister|5|5|50|}}|}; -{plaguesp_11|monsters_rltiles2:153|Nesting Plaguestrider|plaguespider_4||1|||68|10|5|3|85|70|3|2|7|165||plaguespider||1||||||{{contagion|6|5|70|}{blister|5|5|50|}}|}; -{plaguesp_12|monsters_rltiles2:38|Plaguestrider servant|plaguespider_5||6|||65|10|5|3|85|120|3|2|7|165||plaguespider||1||||||{{contagion|7|5|70|}{blister|6|5|50|}}|}; -{plaguesp_13|monsters_rltiles2:38|Plaguestrider master|plaguespider_6||6|||65|10|5|3|85|120|3|2|8|175|2|plaguespider_b||1||||||{{contagion|7|5|70|}{blister|6|5|50|}}|}; - -{allaceph_1|monsters_rltiles2:101|Young Allaceph|allaceph_1||2|||90|10|5|3|80|40|2|3|7|105|1|allaceph||1|4|4||||{{feebleness_minor|2|3|20|}}|}; -{allaceph_2|monsters_rltiles2:101|Allaceph|allaceph_1||2|||94|10|5|3|80|40|2|3|7|105|1|allaceph||1|4|4||||{{feebleness_minor|2|3|20|}}|}; -{allaceph_3|monsters_rltiles2:102|Strong Allaceph|allaceph_2||2|||101|10|5|3|80|40|2|3|7|105|2|allaceph||1|4|4||||{{feebleness_minor|2|3|20|}}|}; -{allaceph_4|monsters_rltiles2:102|Tough Allaceph|allaceph_2||2|||111|10|5|3|80|40|2|3|7|110|2|allaceph||1|4|4||||{{feebleness_minor|3|3|20|}}|}; -{allaceph_5|monsters_rltiles2:103|Radiant Allaceph|allaceph_3||2|||124|10|5|3|80|40|2|3|7|110|3|allaceph_b||1|6|6||||{{feebleness_minor|3|3|20|}}|}; -{allaceph_6|monsters_rltiles2:103|Ancient Allaceph|allaceph_3||2|||133|10|5|3|80|40|2|3|7|115|3|allaceph_b||1|7|7||||{{feebleness_minor|3|3|20|}}|}; -{vaeregh_1|monsters_rltiles1:42|Vaeregh|allaceph_4||2|||149|10|5|3|80|40|2|2|7|120|4|allaceph||1|10|10||||{{feebleness_minor|4|3|20|}}|}; - -{irdegh_sp_1|monsters_rltiles2:26|Irdegh spawn|irdegh_spawn||7|||57|12|5|3|120|||0|6|80||irdegh_spawn||1||||||{{poison_irdegh|2|3|10|}}|}; -{irdegh_sp_2|monsters_rltiles2:26|Irdegh spawn|irdegh_spawn||7|||68|12|5|3|120|||0|6|80||irdegh_spawn||1||||||{{poison_irdegh|2|3|10|}}|}; -{irdegh_1|monsters_rltiles2:15|Irdegh|irdegh_1||7|||115|10|5|3|120|||3|7|60|10|irdegh||1||||||{{poison_irdegh|3|4|50|}}|}; -{irdegh_2|monsters_rltiles2:15|Venomous Irdegh|irdegh_2||7|||120|10|5|3|120|||3|7|60|11|irdegh||1||||||{{poison_irdegh|3|4|50|}}|}; -{irdegh_3|monsters_rltiles2:14|Piercing Irdegh|irdegh_3||7|||125|10|5|3|120|10|2|3|7|60|11|irdegh||1||||||{{poison_irdegh|3|4|50|}}|}; -{irdegh_4|monsters_rltiles2:14|Ancient piercing Irdegh|irdegh_4||7|||130|10|5|3|120|30|2|3|7|60|14|irdegh_b||1||||||{{poison_irdegh|3|4|70|}}|}; - -{maonit_1|monsters_rltiles1:104|Maonit troll|maonit_1||5|||255|5|5|5|65|10|3|1|20|20|4|maonit|||||||||}; -{maonit_2|monsters_rltiles1:104|Giant Maonit troll|maonit_1||5|||270|5|5|5|65|10|3|1|20|20|4|maonit|||||||||}; -{maonit_3|monsters_rltiles1:104|Strong Maonit troll|maonit_2||5|||285|5|5|5|65|20|3|1|20|20|5|maonit|||||||||}; -{maonit_4|monsters_rltiles1:107|Maonit brute|maonit_2||5|||290|5|5|5|65|20|3|1|20|20|5|maonit|||||||||}; -{maonit_5|monsters_rltiles1:107|Tough Maonit brute|maonit_3||5|||310|5|5|5|65|30|3|1|20|20|6|maonit||1||||||{{stunned|1|3|10|}}|}; -{maonit_6|monsters_rltiles1:107|Strong Maonit brute|maonit_3||5|||320|5|5|5|65|30|3|1|20|20|6|maonit||1||||||{{stunned|1|3|10|}}|}; -{arulir_1|monsters_rltiles1:13|Arulir|arulir_1||5|||325|5|5|5|70|30|3|1|20|20|8|arulir||1||||||{{stunned|1|3|20|}}|}; -{arulir_2|monsters_rltiles1:13|Giant Arulir|arulir_1||5|||330|5|5|5|70|30|3|1|20|20|8|arulir||1||||||{{stunned|1|3|20|}}|}; - -{burrower_1|monsters_rltiles2:164|Larval cave burrower|burrower_1||1|||30|10|5|5|95|||1|25|80|2|burrower|||||||||}; -{burrower_2|monsters_rltiles2:164|Cave burrower|burrower_1||1|||37|10|5|5|95|||1|25|80|2|burrower|||||||||}; -{burrower_3|monsters_rltiles2:165|Strong larval burrower|burrower_2||1|||44|10|5|5|95|||1|25|80|2|burrower|||||||||}; -{burrower_4|monsters_rltiles2:165|Giant larval burrower|burrower_3||1|||75|10|5|5|95|||1|25|80|2|burrower|||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{ulirfendor|monsters_rltiles1:84|Ulirfendor|ulirfendor||0|1||288|10|5|3|70|30|2|1|16|60|6|ulirfendor|ulirfendor||||||||}; -{gylew|monsters_mage2:0|Gylew|gylew||0|||||||||||||||gylew||||||||}; -{gylew_henchman|monsters_men:8|Gylew\'s henchman|gylew_henchman||0|||||||||||||||gylew_henchman||||||||}; -{toszylae|monsters_liches:1|Toszylae|toszylae||6|1||207|8|5|2|80|40|2|2|7|120|4|toszylae|toszylae|1|6|6||||{{feebleness_minor|3|3|20|}}|}; -{toszylae_guard|monsters_rltiles1:20|Radiant guardian|toszylae_guard||2|1||320|10|5|3|80|40|2|2|7|120|4|toszylae_guard|toszylae_guard|1|5|5||||{{feebleness_minor|2|3|20|}}|}; -{thorin|monsters_rltiles1:66|Thorin|thorin||0||||||||||||||shop_thorin|thorin||||||||}; - -{lonelyhouse_sp|monsters_rats:1|Basement rat|lonelyhouse_sp||4|1||79|10|5|3|125|||2|9|180|4|lonelyhouse_sp|||||||||}; -{algangror|monsters_rltiles1:68|Algangror|algangror||0|1||241|10|5|3|80|200|2|3|9|120|4|algangror|algangror||||||||}; -{remgard_bridge|monsters_men2:4|Bridge lookout|remgard_bridge||0|1||||||||||||||remgard_bridge||||||||}; - - - diff --git a/AndorsTrail/res/values-fr/content_questlist.xml b/AndorsTrail/res/values-fr/content_questlist.xml deleted file mode 100644 index c66be4cd7..000000000 --- a/AndorsTrail/res/values-fr/content_questlist.xml +++ /dev/null @@ -1,212 +0,0 @@ - - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{andor|À la recherche d\'Andor|1|{ - {1|Mon père Mikhail m\'a dit qu\'Andor n\'était pas revenu à la maison depuis hier. Je dois aller le rechercher dans le village.||0|} - {10|Leonid dit qu\'il a vu Andor parler avec Gruil. Je dois aller demander ce qu\'il sait à Gruil.||0|} - {20|Gruil veut que je lui rapporte une glande à venin. Après, il pourrait m\'en dire un peu plus. Il m\'a dit que certains serpents venimeux avaient de telles glandes.||0|} - {30|Gruil dit qu\'Andor recherchait quelqu\'un du nom de Umar. Je dois interroger son ami Gaela à Fallhaven à l\'Est.||0|} - {40|J\'ai discuté avec Gaela à Fallhaven. Il me conseille d\'aller voir Bucus et de lui demander des informations à propos de la guilde des voleurs.||0|} - {50|Bucus m\'a autorisé à passer par la trappe dans la maison en ruines de Fallhaven. Il faut que je parle à Umar.||0|} - {51|Umar de la guilde des voleurs de Fallhaven a cru me reconnaître, mais il a dû me confondre avec Andor. Apparemment, Andor l\'a déjà rencontré.||0|} - {55|Umar dit qu\'Andor est allé voir un concocteur de potions dénommé Lodar. Je dois rechercher sa retraite.||0|} - {61|I heard a story in Loneford, where it seemed like Andor had been in Loneford, and that he might have had something to do with the illness that the people are suffering from there. I am not sure if it actually was Andor. If it was Andor, why would he have made the people of Loneford ill?||0|} - }|}; -{mikhail_bread|Pain du petit déjeuner|1|{ - {100|J\'ai rapporté du pain à Mikhail.||1|} - {10|Mikhail veut que j\'aille lui acheter du pain chez Mara à la halle du village.||0|}}|}; -{mikhail_rats|Les rats !|1|{ - {100|J\'ai tué les deux rats de notre jardin.|20|1|} - {10|Mikhail me demande de voir s\'il n\'y aurait pas des rats dans le jardin. Je dois tuer les rats de notre jardin et revenir voir Mikhail. Si je suis blessé, je peux revenir et me reposer dans le lit pour reprendre mes forces.||0|}}|}; -{leta|Époux manquant|1|{ - {10|Leta du village de Crossglen veut que je recherche son époux Oromir.||0|} - {20|J\'ai retrouvé Oromir dans le village de Crossglen, se cachant de son épouse Leta.||0|} - {100|J\'ai dit à Leta qu\'Oromir se cachait dans le village de Crossglen.|50|1|}}|}; -{odair|Invasion de rats|1|{ - {10|Odair veut que je purge la réserve du village de Crossglen des rats qui l\'ont envahie. Je dois en particulier tuer le gros rat et revenir voir Odair.||0|} - {100|J\'ai aidé Odair à se débarasser des rats qui avaient envahi la réserve du village de Crossglen.|300|1|}}|}; -{bonemeal|Produit interdit|1|{ - {10|Leonid dans la halle de Crossglen m\' dit qu\'il y avait eu des désordres dans le village il y a quelques semaines. Apparemment, le seigneur Geomyr a banni toute utilisation des potions d\'os comme soin.\n\nTharal, le prêtre du village devrait en savoir plus.||0|} - {20|Tharal ne veut pas parler des potions d\'os. Je pourrais peut-être le persuader si je lui ramène 5 ailes d\'insectes.||0|} - {30|Tharal m\'a dit que la potion d\'os était un médicament très efficace, et il est embêté qu\'elle soit désormais interdite. Je devrais aller voir Thoronir à Fallhaven si je désire en apprendre davantage. Je dois lui dire le mot de passe « lueur de l\'Ombre ».||0|} - {40|J\'ai parlé à Thoronir à Fallhaven. Il pourrait être capable de me concocter une potion d\'os si je lui ramenais 5 os de squelettes. Il doit y avoir quelques squelettes dans une maison abandonnée au nord de Fallhaven.||0|} - {100|J\'ai ramené les os à Thoronir. Désormais, il peut me fournir en potions d\'os.\nJe dois cependant être prudent en les utilisant, car le seigneur Geomyr a interdit leur consommation.|900|1|}}|}; -{jan|Ami tombé|1|{ - {10|Jan m\'a raconté son histoire, au cours de laquelle lui et ses deux amis Gandir et Irogotu sont descendus dans ce gouffre pour creuser à la recherche d\'un trésor caché, puis se sont battus, Irogotu tuant Gandir dans sa fureur.\nJe dois récupérer l\'anneau de Gandir\'s auprès d\'Irogotu, et revenir voir Jan lorsque je l\'aurais.||0|} - {100|Irogotu est mort. J\'ai ramené l\'anneau de Gandir à Jan, et vengé son ami.|1500|1|}}|}; -{bucus|La clef de Luthor|1|{ - {10|Bucus à Fallhaven sait peut-être quelque chose à propos d\'Andor. Il veut que je lui ramène la clef de Luthor des catacombes sous l\'église de Fallhaven.||0|} - {20|Les catacombes sous l\'église sont fermées. Athamyr est la seule personne ayant le droit et le courage d\'y entrer. Je dois aller le trouver dans sa maison au Sud-Ouest de l\'église.||0|} - {30|Athamyr veut que je lui ramène de la viande préparée, il pourra alors m\'en dire plus.||0|} - {40|J\'ai ramené de la viande préparée à Athamyr.|700|0|} - {50|Athamyr m\'a donné la permission d\'entrer dans les catacombes sous l\'église de Fallhaven.||0|} - {100|J\'ai apporté la clef de Luthor à Bucus.|2150|1|}}|}; -{fallhavendrunk|Histoire d\'ivrogne|1|{ - {10|Un ivrogne à l\'extérieur de la taverne de Fallhaven à commencé à me raconter son histoire, mais il voudrait que je lui ramène de l\'hydromel. Je ne sais cependant pas si cette histoire va me conduire quelque part.||0|} - {100|L\'ivrogne m\'a dit qu\'il avait l\'habiture de voyager avec Unnmir. Je dois parler à Unnmir.||1|}}|}; -{calomyran|Les secrets de Calomyran|1|{ - {10|Un vieil homme dans les rues de Fallhaven a perdu son livre « les secrets de Calomyran ». Je devrais partir à sa recherche. Peut-être dans la maison d\'Arcir vers le Sud ?||0|} - {20|J\'ai trouvé une page déchirée d\'un livre intitulé « les secrets de Calomyran » sur laquelle était inscrit le nom « Larcal ».||0|} - {100|J\'ai rendu son livre au vieil homme.|600|1|}}|}; -{nocmar|Trésors perdus|1|{ - {10|Unnmir m\'a dit qu\'il était un ancien aventurier, et m\'a laissé sous-entendre que je devrais voir Nocmar. Sa maison est juste au Sud-Ouest de la taverne de Fallhaven.||0|} - {20|Nocmar m\'a dit qu\'il était un ancien forgeron. Mais le seigneur Geomyr a interdit l\'utilisation de l\'acier-cœur, et il ne peut plus forger ses armes.\nSi je pouvais trouver une pierre-cœur et la ramener à Nocmar, il pourrait à nouveau forger de l\'acier-cœur.||0|} - {200|J\'ai ramené une pierre-cœur à Nocmar. Il devrait disposer d\'articles en acier-cœur désormais.|1200|1|}}|}; -{flagstone|Ancients secrets|1|{ - {10|J\'ai rencontré un garde en faction à l\'extérieur d\'une forteresse appelée Flagstone. Le garde m\'a dit que Flagstone était un acien camp de prisonniers pour les travailleurs fugitifs du Mont Galmore. Il y a eu récemment une augmentation du nombre de monstres morts-vivants déferlant de Flagstone. Je devrais aller rechercher l\'origine des ces monstres mort-vivants. Le garde m\'a dit de revenir le voir si j\'avais besoin d\'aide.||0|} - {20|J\'ai trouvé un tunnel creusé sous Flagstone, qui a l\'air de mener à une caverne plus importante. La caverne est gardée par un démon dont je ne suis même pas capable de m\'approcher. Peut-être le garde en faction devant Flagstone en sait-il plus ?||0|} - {30|Le garde m\'a dit que l\'ancien gardien portait toujours un collier. Le collier avait probablement l\'incantation nécessaire pour approcher le démon. Je devrais revenir demander au garde de m\'aider à déchiffrer tout message que je pourrais trouver sur le collier une fois que je l\'aurais récupéré.||0|} - {31|J\'ai trouvé l\'ancien gardien de Flagstone à l\'étage supérieur. Je dois retourner voir le garde désormais.||0|} - {40|J\'ai appris l\'incantation requise pour pouvoir approcher le démon dans les souterrains de Flagstone. « Ombre du jour ».|1600|0|} - {50|Dans les profondeurs sous Flagstone, j\'ai trouvé l\'origine de l\'invasion des morts-vivants. Une créature née des griefs des anciens prisonniers de Flagstone.||0|} - {60|J\'ai trouvé un prisonnier, Narael, encore en vie sous Flagstone. Narael est un ancien citoyen de la ville de Nor. Il est trop faible pour marcher seul, mais si je peux trouver son épouse à la ville de Nor, je recevrais une généreuse récompense.|2100|1|}}|}; -{vacor|Articles manquants|1|{ - {10|Un mage dénommé Vacor, au Sud-Ouest de Fallhaven a essayé de lancer un sort de scission.\nIl semblait troublé et était particulièrement obsédé par son sort. Quelque chose concernant un grand pouvoir qu\'il pourrait en tirer.||0|} - {20|Vacor veut que je lui ramène les quatre articles de son sort de scission dont il affirme qu\'ils lui ont été dérobés. Les quatre bandits doivent être quelque part au Sud de Fallhaven.||0|} - {30|J\'ai ramené les quatre articles du sort de scission à Vacor.|1200|0|} - {40|Vacor m\'a parlé de son ancien apprenti Unzel, qui commençait à douter de lui. Vacor veut désormais que je tue Unzel. Je devrais être capable de le trouver au Sud-Ouest de Fallhaven. Je doit ramener sa chevalière à Vacor une fois que je l\'aurais tué.||0|} - {50|Unzel me donne le choix de m\'allier à Vacor ou à lui-même.||0|} - {51|J\'ai choisi de m\'allier avec Unzel. Je dois aller au Sud-Ouest de Fallhaven pour parler à Vacor d\'Unzel et de l\'Ombre.||0|} - {53|J\'ai commencé à combattre Unzel. Je dois ramener sa chevalière à Vacor une fois qu\'il sera mort.||0|} - {54|J\'ai commencé à combattre Vacor. Je dois ramener son anneau à Unzel une fois qu\'il sera mort.||0|} - {60|J\'ai tué Unzel et rapporté mon acte à Vacor.|1600|1|} - {61|J\'ai tué Vacor et rapporté mon acte à Unzel.|1600|1|}}|}; - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{farrik|Visite nocturne|1|{ - {10|Farrik de la guilde des voleurs de Fallhaven m\'a parlé d\'un plan pour aider un confrère voleur à s\'évader de la prison de Fallhaven.||0|} - {20|Farrik de la guilde des voleurs de Fallhaven m\'a donné les détails du plan, et j\'ai accepté de l\'aider. Le capitaine des gardes a apparemment tendance à boire. Le plan consiste à lui fournir de l\'hydromel somnifère préparé par le cuistot de la guilde des voleurs, de façon à l\'endormir. Je serais peut-être amené à corrompre le capitaine des gardes.||0|} - {25|J\'ai obtenu l\'hydromel somnifère du cuistot de la guilde des voleurs.||0|} - {30|J\'ai dit à Farrik que je n\'adhérais pas totalement à leur plan. Je devrais peut-être prévenir le capitaine des gardes de leur plan louche.||0|} - {32|J\'ai donné l\'hydromel somnifère au capitaine des gardes.||0|} - {40|J\'ai prévenu le capitaine des gardes du plan des voleurs pour faire évader leur ami.||0|} - {50|Le capitaine des gardes m\'a dit de dire aux voleurs que la garde serait réduite cette nuit. Nous pourrions peut-être attraper quelques voleurs.||0|} - {60|J\'ai réussi à convaincre le capitaine des gardes de boire l\'hydromel somnifère ce soir. Il devrait être dans l\'incapacité d\'agir cette nuit, permettant aux voleurs de faire évader leur ami.||0|} - {70|Farrik m\'a remercié d\'avoir aidé la guilde des voleurs.|1500|1|} - {80|J\'ai dit à Farrik que la garde serait réduite cette nuit.||0|} - {90|Le capitaine des gardes m\'a remercié de l\'avor aidé à mettre au point un plan pour attraper les voleurs. Il m\'a dit qu\'il préviendrait d\'autres gardes que je l\'avais aidé.|1700|1|}}|}; -{lodar|La potion perdue|1|{ - {10|Je dois trouver un concocteur de potions dénommé Lodar. Umar de la guilde des voleurs de Fallhaven m\'a dit que je devais connaître les mots qui me permettraient de passer le gardien et rejoindre la retraite de Lodar.||0|} - {15|Umar m\'a dit que je devais voir quelqu\'un du nom de Ogam à Vilegard. Ogam peut me donner les bons mots pour atteindre la retraite de Lodar.||0|} - {20|J\'ai rendu visite à Ogam au Sud-Ouest de Vilegard. Il semblait parler par énigmes. J\'ai à peine pu comprendre les détails lorsque je lui ai parlé de la retraite de Lodar. Parmi les phrases qu\'il a prononcées, j\'ai retenu « À mi-chemin de l\'Ombre et de la Lumière. Des Formations rocheuses », ainsi que les mots « Lueur de l\'Ombre ». Je ne suis pas sûr de ce que cela signifie.||0|}}|}; -{vilegard|Faire confiance à un étranger|1|{ - {10|Les gens de Vilegard sont très suspicieux vis à vis des étrangers. On m\'a dit d\'aller voir Jolnor à la chapelle de Vilegard si je voulais gagner leur confiance.||0|} - {20|J\'ai parlé à Jolnor de la chapelle de Vilegard. Il m\'a suggéré d\'aider trois personnes ayant une certaine influence dans le village pour gagner la confiance des gens de Vilegard. Je dois aider Kaori, Wrye et Jolnor de Vilegard.||0|} - {30|J\'ai aidé les trois personnes de Vilegard ainsi que Jolnor me le suggérait. Maintenant, j\'ai gagné la confiance des gens de Vilegard.|2100|1|}}|}; -{kaori|Coursier de Kaori|1|{ - {5|Jolnor de la chapelle de Vilegard veut que je parle à Kaori, au Nord du village de Vilegard, afin de voir s\'il a besoin d\'aide.||0|} - {10|Kaori au Nord du village de vilegard veut que je lui ramène 10 potions d\'os.||0|} - {20|J\'ai ramené 10 potions d\'os à Kaori.|520|1|}}|}; -{wrye|Cause d\'inquiétude|1|{ - {10|Jolnor de la chapelle de Vilegard veut que je parle à Wrye, au Nord du village de Vilegard. Elle a apparemment perdu son fils récemment.||0|} - {20|Wrye au Nord du village de Vilegard m\'a dit que son fils Rincel était porté disparu. Elle pense qu\'il est mort ou qu\'il a été mortellement blessé.||0|} - {30|Wrye m\'a dit qu\'elle pensait que la garde royale de Feygard était impliquée dans sa disparition, et qu\'ils l\'avaient recruté.||0|} - {40|Wrye veut que je recherche ce qui est arrivé à son fils.||0|} - {41|Je devrais aller voir dans la taverne de Vilegard et dans la taverne du Cruchon Écumeux au nord de Vilegard.|200|0|} - {42|J\'ai entendu parler d\'un garçon qui serait passé par la taverne du Cruchon Écumeux il y a quelques temps. Apparemment, il serait parti vers l\'Ouest de la taverne quelque part.||0|} - {80|Au Nord-Ouest de Vilegard j\'ai rencontré un homme qui a trouvé Rincel combattant quelques monstres. Rincel aurait apparemment quitté Vilegard de son propre chef pour voir la ville de Feygard. Je dois revenir raconter à Wrye au Nord du village de Vilegard ce qui est arrivé à son fils.||0|} - {90|J\'ai raconté à Wrye la vérité sur la disparition de son fils.|520|1|}}|}; -{jolnor|Espions dans l\'écume|1|{ - {10|Jolnor de la chapelle de Vilegard m\'a parlé d\'un garde à l\'extérieur de la taverne du Cruchon Écumeux, dont il pensait qu\'il était un espion à la solde de la garde royale de Feygard. Il me demande de faire disparaître le garde, de n\'importe quelle manière. La taverne devrait être juste au Nord de Vilegard.||0|} - {20|J\'ai convaincu le garde à l\'extérieur de la taverne du Cruchon Écumeux de partir après son tour de garde.||0|} - {21|Je me suis battu avec le garde à l\'extérieur de la taverne du Cruchon Écumeux. Je dois ramener son anneau de la garde royale à Jolnor une fois qu\'il sera mort pour prouver sa disparition.||0|} - {30|J\'ai dit à Jolnor que le garde était maintenant parti.|630|1|}}|}; - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{bwm_agent|L\'agent et la bête|1|{ - {1|J\'ai rencontré un homme recherchant de l\'aide pour sa colonie, le « Mont Blackwater ». Il semblerait que la colonie soit attaquée par des monstres et des bandits, et ils ont besoin d\'une aide exérieure.|||} - {5|J\'ai accepté d\'aider l\'homme et la colonie du Mont Blackwater à résoudre son problème.|||} - {10|L\'homme m\'a demandé de le retrouver de l\'autre côté de la mine effondrée. Il va passer en rampant à travers les éboulis pendant que je descendrai dans la nuit noire du puits de la mine abandonnée.|||} - {20|J\'ai parcouru l\'obscurité de la mine abandonnée et retrouvé l\'homme de l\'autre côté. Il insistait pour me convaincre de me diriger plein Est une fois que je serais sorti de la mine. Je dois retrouver cet homme au pied de la montagne à l\'Est.|||} - {25|J\'ai entendu une histoire au sujet des habitants de Prim et de la colonie du Mont Blackwater se combattant les uns les autres.|||} - {30|Je dois suivre le chemin qui monte dans la montagne vers la colonie de Blackwater.|||} - {40|J\'ai retrouvé l\'homme en gravissant le Mont Blackwater. Je dois continuer mon ascension.|||} - {50|Je suis arrivé aux pentes enneigées du Mont Blackwater. L\'homme m\'a dit de continuer à grimper dans la montagne. Apparemment, la colonie du Mont Blackwater est proche.|||} - {60|Je suis arrivé à la colonie du Mont Blackwater. Je dois trouver le chef de guerre Harlenn.|||} - {65|J\'ai discuté avec Harlenn dans la colonie du Mont Blackwater. Apparemment, la colonie est soumise à des attaques par de nombreux monstres, les Aulaeth et des wyrms blanches. Pour couronner le tout, ils sont aussi attaqués par les gens de Prim.|||} - {66|Harlenn pense que les gens de Prim sont d\'une manière ou d\'une autre derrière les attaques de monstres.|||} - {70|Harlenn veut que je transmette un message à Guthbered de Prim. Les gens de Prim doivent cesser leurs attaques contre la colonie du Mont Blackwater, ou alors ils en supporteront les conséquences. Je dois aller parler à Guthbered à Prim.|||} - {80|Guthbered dément le fait que les gens de Prim aient la moindre responsabilité dans les attaques de monstres contre la colonie du Mont Blackwater. Je dois aller parler à Harlenn|||} - {90|Harlenn est certain que les gens de Prim sont mêlés à ces attaques.|||} - {95|Harlenn veut que j\'aille à Prim et que j\'y recherche des preuves qu\'ils se préparent à attaquer la colonie. Je dois rechercher des indices à proximité de l\'endroit où Guthbered se tient.|||} - {100|J\'ai trouvé des plans à Prim pour recruter des mercenaires et attaquer la colonie du Mont Blackwater. Je dois aller en parler à Harlenn immédiatement.|||} - {110|Harlenn m\'a remercié d\'avoir enquêté sur ces plans d\'attaque.|1150||} - {120|Afin de faire cesser les attaques contre la colonie du Mont Blackwater, Harlenn veut que j\'assassine Guthbered à Prim.|||} - {130|J\'ai commencé à me battre avec Guthbered.|||} - {131|J\'ai dit à Guthbered que j\'avais été envoyé pour le tuer, mais l\'ai laissé vivre. Il m\'a remercié avec profusion et a quitté Prim.|2100||} - {149|I have told Harlenn that Guthbered is gone.|||} - {150|Harlenn m\'a remercié pour l\'aide que je lui ai fournie. Désormais, les attaques contre la colonie du Mont Blackwater devraient cesser.|5000||} - {240|J\'ai maintenant gagné la confiance de la colonie du Mont Blackwater, et devrais avoir accès à tous les services.||1|} - {250|J\'ai décidé de ne pas aider les gens de la colonie du Mont Blackwater.||1|} - {251|Comme j\'aide Prim, Harlenn ne veut plus me parler.||1|} - }|}; -{prim_innquest|Bien reposé|1|{ - {10|J\'ai discuté avec le cuisinier de Prim, au pied du Mont Blackwater. Il y a une chambre à louer, mais elle est déjà louée par Arghest. Je dois aller parler à Arghest pour voir s\'il a toujours besoin de louer cette chambre. Le cuisinier m\'a indiqué une direction au Sud-Ouest de Prim.|||} - {20|J\'ai parlé avec Arghest au sujet de la chambre dans l\'auberge. Il souhaite toujours pouvoir en disposer pour s\'y reposer. Il m\'a cependant déclaré que je pourrais le persuader de me laisser l\'utiliser si je lui offrais une compensation suffisante.|||} - {30|Arghest veut que je lui rapporte 5 bouteilles de lait. Je devrais pouvoir trouver un peu de lait dans un des plus gros villages.|||} - {40|J\'ai rapporté du lait à Arghest. Il est d\'accord pour me laisser utiliser la chambre de l\'auberge de Prim. Je devrais pouvoir m\'y reposer désormais. Je dois aller le dire au cuisinier de l\'auberge.|500||} - {50|J\'ai expliqué au cuisinier que j\'avais la permission d\'Arghest d\'utiliser la chambre.||1|} - }|}; -{prim_hunt|Intentions brumeuses|1|{ - {10|Juste à l\'extérieur de la mine effondrée sur le chemin du Mont blackwater, j\'ai rencontré un homme du village de Prim. Il m\'a supplié de les aider.|||} - {11|Le village de Prim a besoin d\'une aide extérieure pour se défendre contre des attaques de monstres. Je devrais aller parler avec Guthbered à Prim si je désire les aider.|||} - {15|On peut trouver Guthbered dans la grande halle de Prim. Je dois rechercher une maison en pierres au centre du village.|||} - {20|J\'ai parlé avec Guthbered au sujet de l\'histoire de Prim. Prim est depuis quelques temps soumis à des attaques permanentes de la colonie du Mont Blackwater.|||} - {25|Guthbered veut que je monte jusqu\'à la colonie et que je demande à leur chef de guerre Harlenn pourquoi (ou si) ils ont invoqué les monstres de Gornaud contre Prim.|||} - {30|J\'ai parlé avec Harlenn des attaques contre Prim. Il dément le fait que les gens de la colonie du Mont Blackwater aient quoi que ce soit à voir avec ces attaques. Je dois retourner parler avec Guthbered à Prim.|||} - {40|Guthbered continue de croire que les gens de la colonie de Blackwater sont mêlés à ces attaques.|||} - {50|Guthbered veut que je recherche des preuves que les gens de la colonie du Mont Blackwater se préparent à lancer une attaque d\'envergure contre Prim. Je dois aller rechercher des indices près des quartiers privés d\'Harlenn, mais doit prendre garde ne me pas me faire voir.|||} - {60|J\'ai trouvé des papiers du côté des quartiers privés d\'Harlenn brossant un plan d\'attaque contre Prim. Je dois aller en parler à Guthbered immédiatement.|||} - {70|Guthbered m\'a remercié de l\'avoir aidé à trouver des preuves du plan d\'attaque.|1150||} - {80|Afin de faire cesser les attaques contre Prim, Guthbered veut que j\'aille tuer Harlenn en haut dans la colonie du Mont Blackwater.|||} - {90|J\'ai commencé à me battre avec Harlenn.|||} - {91|J\'ai dit à Harlenn que j\'avais été envoyé pour le tuer, mais l\'ai laissé vivre. Il m\'a remercié avec profusion et a quitté la colonie.|2100||} - {99|I have told Guthbered that Harlenn is gone.|||} - {100|Guthbered m\'a remercié pour l\'aide que je lui ai fournie. Désormais, les attaques contre Prim devraient cesser. En remerciement, Guthbered m\'a donné quelques objets et un laisser-passer falsifié afin que je puisse entrer dans les quartiers confidentiels de la colonie du Mont Blackwater.|5000||} - {140|J\'ai montré le laisser-passer falsifié au garde et ai pu entrer dans les quartiers confidentiels.|||} - {240|J\'ai maintenant gagné la confiance de Prim, et devrais avoir accès à tous les services.||1|} - {250|J\'ai décidé de ne pas aider les gens de Prim.||1|} - {251|Comme j\'aide la colonie du Mont Blackwater, Guthbered ne veut plus me parler.||1|} - }|}; -{kazaul|Lumières dans le noir|1|{ - {8|J\'ai trouvé mon chemin dans les quartiers confidentiels de la colonie du Mont Blackwater et découvert un groupe de mages dirigés par un homme dénommé Throdna.|||} - {9|Throdna semblait très intéressé par quelqu\'un (ou quelque chose) appelé Kazaul, et en particulier par un rituel célébré en son nom.|||} - {10|J\'ai accepté d\'aider Throdna à en savoir plus au sujet du rituel proprement dit, en recherchant les pièces qui semblent avoir été dispersées à travers la montagne. Je dois rechercher les éléments du rituel de Kazaul sur le chemin en descendant du Mont Blackwater vers Prim.|||} - {11|Je dois trouver les deux couplets du chant et les trois stances décrivant le rituel proprement dit, et revenir voir Throdna lorsque j\'aurais tout trouvé.|||} - {21|J\'ai trouvé le premier couplet du chant du rituel de Kazaul.|||} - {22|J\'ai trouvé le second couplet du chant du rituel de Kazaul.|||} - {25|J\'ai trouvé la première stance du rituel de Kazaul.|||} - {26|J\'ai trouvé la seconde stance du rituel de Kazaul.|||} - {27|J\'ai trouvé la troisième stance du rituel de Kazaul.|||} - {30|Throdna m\'a remercié d\'avoir trouvé tous les éléments du rituel.|3600||} - {40|Throdna veut que je mette un terme aux réapparitions de l\'engeance de Kazaul qui se produisent près du Mont Blackwater. Il y a un mausolée au pied de la montagne que je devrais inspecter.|||} - {41|On m\'a donné une fiole d\'élixir purificateur que Throdna me demande de verser sur le mausolée de Kazaul. Je dois revenir voir Throdna lorsque j\'aurais trouvé et purifié le mausolée.|||} - {50|Au mausolée du pied du Mont Blackwater, j\'ai rencontré le gardien de Kazaul. En récitant les couplets du chant du rituel, j\'ai réussi à déclencher son attaque.|||} - {60|J\'ai purifié le mausolée de Kazaul.|3200||} - {100|J\'espérais quelque signe d\'appréciation de Throdna pour l\'avoir aidé à en apprendre plus sur le rituel et pour avoir purifié le mausolée. Mais il semblait plus occupé par ses divagations concernant Kazaul. Je n\'ai rien compris à ses élucubrations.||1|} - }|}; -{bwm_wyrms|Sans faiblesse|1|{ - {10|Herec au second niveau de la colonie du Mont Blackwater fait des recherches au sujet des wyrms blanches à l\'extérieur de la colonie. Il veut que je lui rapporte 5 griffes de wyrms blanches afin qu\'il puisse continuer ses recherches. Apparemment, seules certaines des wyrms blanches ont ces griffes. Il va falloir que j\'en tue un certain nombre pour m\'en procurer.|||} - {20|J\'ai donné les 5 griffes de wyrms blanches à Herec.|||} - {30|Herec a achevé la création d\'une potion soulageant la fatigue qui sera très utile pour combattre les wyrms dans le futur.|1500|1|} - }|}; -{bjorgur_grave|Éveillés du repos|1|{ - {10|Bjorgur à Prim à la base du Mont Blackwater pense que quelque chose a dérangé la tombe de ses parents, au Sud-Ouest de Prim, juste à l\'extérieur de la mine de Elm.|||} - {15|Bjorgur veut que j\'aille vérifier la tombe et que je m\'assure que la dague de sa famille est toujours en sécurité dans la tombe.|||} - {20|Fulus à Prim aimerait obtenir la dague de famille de Bjorgur que possédait le grand-père de Bjorgur.|||} - {30|J\'ai rencontré un homme qui portait une dague étrange au fond d\'un caveau au Sud-Ouest de Prim. Il a du piller la tombe pour voler la dague.|||} - {40|J\'ai remis la dague à sa place dans la tombe. Étonnamment, les morts sans repos semblent plus apaisés désormais.|200||} - {50|Bjorgur m\'a remercié pour mon aide. Il m\'a dit que je devrais aussi aller trouver ses parents à Feygard.|1100|1|} - {51|J\'ai dit à Fulus que j\'avais aidé Bjorgur à remettre la dague de sa famille à sa place d\'origine.|||} - {60|J\'ai donné la dague de famille de Bjorgur à Fulus. Il m\'a remercié de la lui avoir apportée, et m\'a remercié avec largesse.|1700|1|} - }|}; - - - - diff --git a/AndorsTrail/res/values-it/content_actorconditions.xml b/AndorsTrail/res/values-it/content_actorconditions.xml deleted file mode 100644 index 896947b6d..000000000 --- a/AndorsTrail/res/values-it/content_actorconditions.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - -[id|name|iconID|category|isStacking|isPositive|hasRoundEffect|round_visualEffectID|round_boostHP_Min|round_boostHP_Max|round_boostAP_Min|round_boostAP_Max|hasFullRoundEffect|fullround_visualEffectID|fullround_boostHP_Min|fullround_boostHP_Max|fullround_boostAP_Min|fullround_boostAP_Max|hasAbilityEffect|boostMaxHP|boostMaxAP|moveCostPenalty|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|]; -{bless|Benedizione|actorconditions_1:41|0||1|||||||||||||1|||||5|||||||}; -{poison_weak|Veleno leggero|actorconditions_1:60|3|||1|2|-1|-1|||||||||||||||||||||}; -{str|Forza|actorconditions_1:70|2||1|||||||||||||1||||||||2|2|||}; -{regen|Rigenerazione dell\'Ombra|actorconditions_1:35|0||1|1|1|1|1|||||||||0||||||||||||}; - - - -[id|name|iconID|category|isStacking|isPositive|hasRoundEffect|round_visualEffectID|round_boostHP_Min|round_boostHP_Max|round_boostAP_Min|round_boostAP_Max|hasFullRoundEffect|fullround_visualEffectID|fullround_boostHP_Min|fullround_boostHP_Max|fullround_boostAP_Min|fullround_boostAP_Max|hasAbilityEffect|boostMaxHP|boostMaxAP|moveCostPenalty|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|]; -{speed_minor|Velocità lieve|actorconditions_1:87|2||1|||||||||||||1||2||||||||||}; -{fatigue_minor|Fatica lieve|actorconditions_1:14|2|||0||||||0||||||1|||2|2||||-1|-1|||}; -{feebleness_minor|Debolezza dell\'arma lieve|actorconditions_1:74|1|||||||||||||||1||||||||-3|-3|||}; -{bleeding_wound|Ferite sanguinanti|actorconditions_2:0|3|1||1|0|-1|-1|||||||||||||||||||||}; -{rage_minor|Rabbia berserker lieve|actorconditions_1:90|1||1|0|-1|||||||||||1|35||||60|||||-90|-1|}; -{blackwater_misery|Sofferenza di Blackwater|actorconditions_1:58|3|||||||||||||||1||||1|-50|-50||||||}; -{intoxicated|Intossicato|actorconditions_2:1|1||1|||||||||||||1|15|||1|-30|||4|4|||}; -{dazed|Stordito|actorconditions_1:65|1|||||||||||||||1||||||||||-40||}; - - - diff --git a/AndorsTrail/res/values-it/content_conversationlist.xml b/AndorsTrail/res/values-it/content_conversationlist.xml deleted file mode 100644 index 802ad92c7..000000000 --- a/AndorsTrail/res/values-it/content_conversationlist.xml +++ /dev/null @@ -1,1607 +0,0 @@ - - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{mikhail_start_select|||{{|mikhail_start_select2|mikhail_bread:100||||}{|mikhail_bread_continue|mikhail_bread:10||||}{|mikhail_start_select2|||||}}|}; -{mikhail_start_select2|||{{|mikhail_start_select_default|mikhail_rats:100||||}{|mikhail_rats_continue|mikhail_rats:10||||}{|mikhail_start_select_default|||||}}|}; -{mikhail_start_select_default|||{{|mikhail_visited|andor:1||||}{|mikhail_gamestart|||||}}|}; -{mikhail_gamestart|Oh bene, sei sveglio.||{{N|mikhail_visited|||||}}|}; -{mikhail_visited|Non riesco a trovare tuo fratello da nessuna parte. Da quando ieri è uscito non è più tornato.|{{0|andor|1|}}|{{N|mikhail3|||||}}|}; -{mikhail3|Non preoccuparti, sarà sicuramente di ritorno presto.||{{N|mikhail_default|||||}}|}; -{mikhail_default|Nient\'altro? Come posso aiutarti?||{{Domande|mikhail_tasks|||||}{Fratello|mikhail_andor1|||||}}|}; -{mikhail_tasks|Oh sì, ci sono alcune cose per cui ho bisogno di aiuto:||{{Pane|mikhail_bread_select|||||}{Topo|mikhail_rats_select|||||}{Indietro|mikhail_default|||||}}|}; -{mikhail_andor1|Come ho detto, Andor è uscito ieri e non è tornato. Sto iniziando a preoccuparmi per lui. Vorrei che tu andassi a cercare tuo fratello, mi ha detto che sarebbe stato via poco.||{{N|mikhail_andor2|||||}}|}; -{mikhail_andor2|Forse è andato al magazzino ed è di nuovo rimasto bloccato. O forse si sta allenando nel seminterrato di Leta con quella nuova spada di legno. Per favore, vai a cercarlo in città .||{{N|mikhail_default|||||}}|}; -{mikhail_bread_select|||{{|mikhail_bread_complete2|mikhail_bread:100||||}{|mikhail_bread_continue|mikhail_bread:10||||}{|mikhail_bread_start|||||}}|}; -{mikhail_bread_start|Oh, quasi dimenticavo. Se hai tempo, fermati da Mara in municipio e comprami un pezzo di pane.|{{0|mikhail_bread|10|}}|{{N|mikhail_default|||||}}|}; -{mikhail_bread_continue|Hai preso il pane da Mara al municipio come ti avevo chiesto?||{{Fatto|mikhail_bread_complete||bread|1|0|}{Non ancora|mikhail_default|||||}}|}; -{mikhail_bread_complete|Grazie mille, ora posso fare colazione. Tieni, prendi queste monete per il tuo aiuto.|{{0|mikhail_bread|100|}{1|gold20||}}|{{N|mikhail_default|||||}}|}; -{mikhail_bread_complete2|Grazie per il pane.||{{Prego, è stato un piacere|mikhail_default|||||}}|}; -{mikhail_rats_select|||{{|mikhail_rats_complete2|mikhail_rats:100||||}{|mikhail_rats_continue|mikhail_rats:10||||}{|mikhail_rats_start|||||}}|}; -{mikhail_rats_start|Ho visto di nuovo dei topi fuori, nel giardino. Puoi andare in giardino a controllare? Se puoi uccidi tutti i topi che trovi.|{{0|mikhail_rats|10|}}|{{Fatto|mikhail_rats_complete||tail_trainingrat|2|0|}{Certo|mikhail_rats_start2|||||}}|}; -{mikhail_rats_start2|Se i topi dovessero ferirti puoi tornare qui nel tuo letto. Questo ti consente di recuperare le forze.||{{N|mikhail_rats_start3|||||}}|}; -{mikhail_rats_start3|Non dimenticare di controllare nel tuo inventario. Sicuramente hai ancora quell\'anello che ti ho dato. Assicurati di indossarlo.||{{Ok|mikhail_default|||||}}|}; -{mikhail_rats_continue|Hai ucciso quei ratti nel nostro giardino?||{{Sì.|mikhail_rats_complete||tail_trainingrat|2|0|}{Non ancora.|mikhail_rats_start2|||||}}|}; -{mikhail_rats_complete|Oh, l\'hai fatto?! Se ti sei ferito, usa il tuo letto per riposare. Questo è un modo per recuperare le forze.|{{0|mikhail_rats|100|}}|{{N|mikhail_default|||||}}|}; -{mikhail_rats_complete2|Grazie per il tuo aiuto con i topi. Se sei ferito, usa il letto per riposare. In questo modo potrai recuperare le forze.||{{N|mikhail_default|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{leta1|Hey, questa è casa mia, fuori di qui!||{{Ma io ero solo...|leta2|||||}{Oromir|leta_oromir_select|||||}}|}; -{leta2|Vattene ragazzo, fuori da casa mia!||{{Oromir|leta_oromir_select|||||}}|}; -{leta_oromir_select|||{{|leta_oromir_complete2|leta:100||||}{|leta_oromir1|||||}}|}; -{leta_oromir1|Sai qualcosa di mio marito? dDovrebbe essere al lavoro oggi, ma manca come al solito.\nSigh.||{{Non so nulla.|leta_oromir2|||||}{L\'ho trovato, si nasconde tra degli alberi poco ad est da qui.|leta_oromir_complete|leta:20||||}}|}; -{leta_oromir2|Se lo vedi, digli di venire ad aiutarmi con le faccende domestiche. Ora esci di qui!|{{0|leta|10|}}||}; -{leta_oromir_complete|Si nasconde qui? Non è cosi che si fa. Vado a fargli capire chi comanda qui. Grazie per avermi messo al corrente.|{{0|leta|100|}}||}; -{leta_oromir_complete2|Grazie per avermi informato di Oromir prima. Andrò a prenderlo tra poco.|||}; -{oromir1|Oh, mi hai spaventato. Ciao.||{{Ciao|oromir2|||||}}|}; -{oromir2|Mi nascondo qui da mia moglie Leta. E\' sempre arrabbiata con me perché non vado a lavorare. Per favore non dirle che sono qui.|{{0|leta|20|}}|{{Certo|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{audir1|Benvenuto nel mio negozio! Vi prego di consultare i miei articoli d\'occasione.||{{Negozio|S|||||}}|}; -{arambold1|Oh cielo, riuscirò mai a dormire con questi ubriachi che cantano ? Qualcuno dovrebbe far qualcosa per loro.||{{Riposa|arambold2|||||}{Compra|S|||||}}|}; -{arambold2|Certo ragazzo, puoi riposare qui. Scegli il letto che preferisci.||{{Grazie, ciao|X|||||}}|}; -{drunk1|Bevi bevi bevi, bevi ancora un po\'. Bevi bevi bevi, bevi sul pavimento. Hei ragazzo, vuoi unirti a noi nel nostro gioco?||{{No grazie|X|||||}{Magari un\'altra volta.|X|||||}}|}; -{mara_default|Lascia perdere quei ragazzi ubriachi, Provocano sempre problemi. Vuoi qualcosa da mangiare?||{{Compra|S|||||}}|}; -{mara1|||{{|mara_thanks|odair:100||||}{|mara_default|||||}}|}; -{mara_thanks|Ho sentito che hai aiutato Odair a pulire il suo magazzino. Grazie mille, ora possiamo usarlo.||{{Il piacere è mio|mara_default|||||}}|}; -{farm1|Per favore non disturbarmi, ho del lavoro da fare||{{Fratello|farm_andor|||||}}|}; -{farm2|Cosa?! Non vedi che ho da fare? Vai ad infastidire qualcun altro.||{{Fratello|farm_andor|||||}}|}; -{farm_andor|Andor? No, io non l\'ho visto in giro recentemente.|||}; -{snakemaster|Bene bene, cosa abbiamo qua? Un visitatore, che bello. Sono impressionato, sei arrivato a questo punto sconfiggendo i miei servitori. Ora preparati a morire, piccola creatura.||{{Ottimo, stavo proprio aspettando un combattimento!|F|||||}{Indovina chi sarà a morire.|F|||||}{Ti prego non farmi del male!|F|||||}}|}; -{haunt|Oh mortale, mi libererai da questo mondo crudele?!||{{Esci|F|||||}{Vuoi intendere, uccidendoti?|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{tharal1|Cammina nel bagliore dell\'Ombra, figlio mio.||{{Compra|S|||||}{Farina d\'ossa|tharal_bonemeal_select|bonemeal:10||||}}|}; -{tharal_bonemeal_select|||{{|tharal_bonemeal4|bonemeal:30||||}{|tharal_bonemeal1|||||}}|}; -{tharal_bonemeal1|Farina d\'ossa? Non possiamo parlare di questo. E\' stato vietato da Lord Geomyr.||{{Scusa?|tharal_bonemeal2_1|||||}}|}; -{tharal_bonemeal2_1|No, effettivamente non dovremmo parlarne.||{{Oh andiamo|tharal_bonemeal2|||||}}|}; -{tharal_bonemeal2|Se sei così insistente, portami 5 ali di insetto che io possa usare per preparare la pozione, poi possiamo parlarne.|{{0|bonemeal|20|}}|{{ce l\'ho|tharal_bonemeal3||insectwing|5|0|}{Ok|X|||||}}|}; -{tharal_bonemeal3|Grazie ragazzo. Sapevo di poter contare su di te.|{{0|bonemeal|30|}}|{{N|tharal_bonemeal4|||||}}|}; -{tharal_bonemeal4|Oh si, farina d\'ossa. unita con i giusti componenti può essere uno degli agenti di guarigione migliori.||{{N|tharal_bonemeal5|||||}}|}; -{tharal_bonemeal5|Eravamo abituati a utilizzarla ampiamente prima. Ma ora quel lurido Lord Geomyr ne ha vietato qualsiasi uso...||{{N|tharal_bonemeal6|||||}}|}; -{tharal_bonemeal6|Come faccio a guarire la gente ora? Utilizzo pozioni di guarigione tradizionali! Bah, sono così inefficaci.||{{N|tharal_bonemeal7|||||}}|}; -{tharal_bonemeal7|Conosco qualcuno che ha ancora un po\' di farina d\'ossa, se ti interessa. Vai a parlare con Thoronir, un confratello in Fallhaven. Digli che la mia password è bagliore dell\'Ombra.||{{Grazie, ciao|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{gruil1|Psst, hey,\n\nvuoi comprare?||{{Compra|S|||||}{Fratello|gruil_select|andor:10||||}}|}; -{gruil_select|||{{|gruil_return|andor:30||||}{|gruil2|||||}}|}; -{gruil2|Tuo fratello? Oh intendi Andor? Potrei sapere qualcosa, ma questa informazione ti costerà qualcosa. Portami una ghiandola del veleno di uno di quei serpenti velenosi là fuori e forse potrei raccontarti di tuo fratello. |{{0|andor|20|}}|{{Ecco, ho la ghiandola del veleno per te.|gruil_complete||gland|1|0|}{Ok, te ne porterò una.|X|||||}}|}; -{gruil_complete|Grazie molte ragazzo. Questo andrà bene.|{{0|andor|30|}}|{{N|gruil_andor1|||||}}|}; -{gruil_return|Guarda ragazzo, te l\'ho già detto.||{{N|gruil_andor1|||||}}|}; -{gruil_andor1|Ho parlato con lui ieri. Mi ha chiesto se conoscevo qualcuno di nome Umar o qualcosa di simile. Non ho idea di chi stesse parlando.||{{N|gruil_andor2|||||}}|}; -{gruil_andor2|Sembrava molto arrabbiato per qualcosa e se n\'é andato in fretta. Qualcosa riguardo la Gilda dei Ladri a Fallhaven.||{{N|gruil_andor3|||||}}|}; -{gruil_andor3|Questo è tutto quello che so. Forse dovresti chiedere in giro a Fallhaven. Se vuoi, il mio amico Gaela sa sicuramente qualcosa.||{{Ciao|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{leonid1|Ciao ragazzo. Tu sei figlio di Mikhail non è vero? E tuo fratello?\n\nIo sono Leonid, amministratore del villaggio Crossglen.||{{Fratello|leonid_andor|||||}{Crossglen|leonid_crossglen|||||}{Ciao|leonid_bye|||||}}|}; -{leonid_andor|Tuo fratello? No, non l\'ho visto oggi. Credo che ieri stesse parlando con Gruil. Forse lui ne sa di più|{{0|andor|10|}}|{{Grazie|leonid_continue|||||}{Ciao|leonid_bye|||||}}|}; -{leonid_continue|Posso aiutarti in qualche altro modo?||{{fratello|leonid_andor|||||}{Crossglen|leonid_crossglen|||||}{Ciao|leonid_bye|||||}}|}; -{leonid_crossglen|Come sai, questo è il villaggio di Crossglen. Per lo più una comunità agricola. ||{{N|leonid_crossglen1|||||}}|}; -{leonid_crossglen1| Abbiamo la fucina di Audir a sud-ovest, Leta e la casa del marito a ovest, il palazzo municipale e la casa di tuo padre, a nord-ovest.||{{N|leonid_crossglen2|||||}}|}; -{leonid_crossglen2|Questo è tutto, cerchiamo di vivere una vita pacifica||{{Recent activity|leonid_crossglen3|||||}{Indietro|leonid_continue|||||}}|}; -{leonid_crossglen3|Avrai sentito di alcuni disordini successi qualche settimana fa. Alcuni abitanti del villaggio hanno esposto delle lamentele sul nuovo decreto di Lord Geomyr.||{{N|leonid_crossglen4|||||}}|}; -{leonid_crossglen4|Lord Geomyr ha rilasciato una dichiarazione riguardo l\'uso illecito di farina d\'ossa come sostanza di guarigione. Alcuni abitanti sostengono che dovremmo opporci a Lord Geomyr e continuare ad usare la polvere d\'ossa|{{0|bonemeal|10|}}|{{N|leonid_crossglen4_1|||||}}|}; -{leonid_crossglen4_1|Tharal, il nostro sacerdote, è rimasto particolarmente turbato e ci ha suggerito di fare qualcosa riguardo Lord Geomyr.||{{N|leonid_crossglen5|||||}}|}; -{leonid_crossglen5|Altri abitanti del villaggio vogliono seguire Lord Geomyr.\n\nPersonalmente non ho ancora deciso cosa fare.||{{N|leonid_crossglen6|||||}}|}; -{leonid_crossglen6|Da un lato Lord Geomyr supporta Crossglen con molta protezione. *indica i soldati in sala*||{{N|leonid_crossglen7|||||}}|}; -{leonid_crossglen7|D\'altra parte le tasse e le regole su ciò che non è permesso sono molto severe a Crossglen.||{{N|leonid_crossglen8|||||}}|}; -{leonid_crossglen8|Qualcuno dovrebbe andare nel castello di Geomyr e parlare con l\'amministratore della nostra situazione qui a Crossglen.|{{0|crossglen|1|}}|{{N|leonid_crossglen9|||||}}|}; -{leonid_crossglen9|Nel frattempo ci ha vietato l\'uso di qualsiasi farina d\'ossa come sostanza di guarigione.||{{Indietro|leonid_continue|||||}{Ciao|leonid_bye|||||}}|}; -{leonid_bye|Che l\'Ombra sia con te||{{Exit|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{odair1|Oh, sei tu. Con questa storia di tuo fratello sei sempre ad infastidire||{{N|odair_select|||||}}|}; -{odair_select|||{{|odair_complete2|odair:100||||}{|odair_continue|odair:10||||}{|odair2|||||}}|}; -{odair2|Hm, forse potresti essermi utile. Potresti aiutarmi con un piccolo compito, che ne pensi?||{{Compito|odair3|||||}{Ciao|odair3|||||}}|}; -{odair3|Di recente sono stato nella grotta *indica ad ovest* a controllare le nostre provviste. Ma sembra che sia infestata di topi.||{{N|odair4|||||}}|}; -{odair4|In particolare ho visto un topo che era più grande degli altri. Pensi di riuscire ad aiutarmi?||{{Certo, così la caverna potrà essere ancora a disposizione dei cittadini di Crossglen|odair5|||||}{Va bene ti aiuterò, ma solo se ci sarà una ricompensa per me|odair5|||||}{No grazie|odair_cowards|||||}}|}; -{odair5|Ho bisogno che tu entri in quella grotta e uccida il topo più grande, in questo modo forse si può fermare l\'infestazione e ricominciare ad usare la grotta come magazzino|{{0|odair|10|}}|{{Ok|X|||||}{No grazie|odair_cowards|||||}}|}; -{odair_cowards|Non pensavo che fossi così, tu e tuo fratello siete sempre stati dei vigliacchi||{{Ciao|X|||||}}|}; -{odair_continue|Hai ucciso il grande topo che sta nella grotta?||{{Si|odair_complete||tail_caverat|1|0|}{Cosa?|odair5|||||}{Non ancora|odair_cowards|||||}}|}; -{odair_complete|Grazie mille per l\'aiuto ragazzo! Forse tu e tuo fratello non siete così codardi come pensavo. Ecco, prendi queste monete come ringraziamento|{{0|odair|100|}{1|gold20||}}|{{Grazie|X|||||}}|}; -{odair_complete2|Grazie per l\'aiuto, ora possiamo utilizzare la grotta come magazzino.||{{Ciao|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{jan_start_select|||{{|jan_complete2|jan:100||||}{|jan_return|jan:10||||}{|jan_default|||||}}|}; -{jan_default|Ciao ragazzo, ti prego di lasciarmi al mio lutto.||{{Che problema c\'è?|jan_default2|||||}{Te la senti di parlarne?|jan_default2|||||}{Ok, ciao|X|||||}}|}; -{jan_default2|Oh, è una cosa triste. Io davvero non voglio parlarne.||{{Per favore|jan_default3|||||}{Ok, Ciao|X|||||}}|}; -{jan_default3|Beh, forse posso parlartene. Mi sembri un bravo ragazzo.||{{N|jan_default4|||||}}|}; -{jan_default4|Io, il mio amico Gandir e il suo amico Irogotu eravamo qui a scavare un buco. Avevamo sentito che c\'era un tesoro nascosto quaggiù¹.||{{N|jan_default5|||||}}|}; -{jan_default5|Abbiamo iniziato a scavare, fino a raggiungere tutto il sistema di grotte sottostante. Solo allora abbiamo scoperto tutte quelle creature ed insetti.||{{N|jan_default6|||||}}|}; -{jan_default6|Oh, quelle creature, maledette. Mi hanno quasi ucciso.\n\nAbbiamo deciso di interrompere gli scavi mentre eravamo ancora in tempo||{{N|jan_default7|||||}}|}; -{jan_default7|Ma Irogotu ha voluto continuare a scavare. Lui e Gandir dopo una discussione hanno cominciato a combattere.||{{N|jan_default8|||||}}|}; -{jan_default8|Questo è quanto è successo.\n\n*sob*\n\nOh, ma cosa abbiamo fatto???||{{Ti prego vai avanti|jan_default9|||||}}|}; -{jan_default9|Irogotu ha ucciso Gandir a mani nude. Si poteva vedere il fuoco nei suoi occhi. Sembrava quasi godere.||{{N|jan_default10|||||}}|}; -{jan_default10|Sono fuggito e non ho più osato andare laggiù¹ a causa di quelle creature e di Irogotu stesso.||{{N|jan_default11|||||}}|}; -{jan_default11|Oh maledetto Irogotu. Se solo potessi arrivare a lui. Mi piacerebbe fargliela pagare.||{{Pensi che ti possa aiutare in qualche modo?|jan_default11_1|||||}}|}; -{jan_default11_1|Pensi di potermi aiutare?||{{Ok, potrei guadagnarci qualcosa|jan_default12|||||}{Si, Irogotu deve pagare per ciò che ha fatto|jan_default12|||||}{No grazie, preferirei non essere coinvolto in questa faccenda. Suona pericolosa.|X|||||}}|}; -{jan_default12|Davvero? Pensi di potermi aiutare? Hm, forse si potresti. Fai attenzione però, questi animali sono veramente tosti.|{{0|jan|10|}}|{{N|jan_default13|||||}}|}; -{jan_default13|Se mi vuoi veramente aiutare, vai a cercare Irogotu giù nella grotta e fammi riavere l\'anello di Gandir.||{{Certo|jan_default14|||||}{Ripeti|jan_background|||||}{Ciao|X|||||}}|}; -{jan_default14|Ritorna da me quando hai fatto. Portami l\'anello di Gandir.||{{Ok, ciao|X|||||}}|}; -{jan_return|Ciao ragazzo. Hai già trovato Irogotu nella grotta?||{{Non ancora|jan_default14|||||}{Ripeti|jan_background|||||}{Si|jan_complete||ring_gandir|1|0|}}|}; -{jan_background|Non hai ascoltato la prima volta che ti ho raccontato la storia? Devo veramente ripeterla dall\'inizio?||{{Si|jan_default3|||||}{No|jan_default4|||||}{No, non importa, ora la ricordo.|jan_default14|||||}}|}; -{jan_complete2|Grazie per aver affrontato Irogotu! Ti sarò sempre riconoscente.||{{Ciao|X|||||}}|}; -{jan_complete|A-a-aspetta...cooosa? Sei andato là sotto e sei tornato vivo? Come ci sei riuscito? Wow, sono quasi morto scendendo laggiù.\n\nOh ti ringrazio tanto per avermi riportato l\'anello di Gandir! Ora ho qualcosa per ricordarmi di lui.|{{0|jan|100|}}|{{Felice di averti aiutato, addio.|X|||||}{L\'Ombra sia con te, addio.|X|||||}{Sì sì certo, l\'ho fatto solo per la ricompensa.|X|||||}}|}; -{irogotu|Ecco un altro avventuriero. Questa è la mia caverna, il tesoro sarà mio!||{{Hai ucciso tu Gandir?|irogotu1|jan:10||||}}|}; -{irogotu1|Quel marmoccchio di Gandir? Si è messo sulla mia strada. L\'ho semplicemente usato per scavare più a fondo nella grotta.||{{N|irogotu2|||||}}|}; -{irogotu2|Inoltre, non mi era mai piaciuto.||{{Anello|irogotu3|||||}{Jan ha detto qualcosa riguardo ad un anello?|irogotu3|||||}}|}; -{irogotu3|No, non puoi averlo. E\' mio!! E chi sei, ragazzo, per scendere quaggiù a disturbarmi?!||{{Non sono più un ragazzo! Dammi quell\'anello.|irogotu4|||||}{Dammi quell\'anello e potremo uscire di qui entrambi vivi.|irogotu4|||||}}|}; -{irogotu4|No, se lo vuoi devi prenderlo con la forza. E devo dirti che i miei poteri sono grandi. Inoltre, probabilmente non avresti osato combattere contro di me.||{{Molto bene, ora vedremo chi ci lascerà la pelle!|F|||||}{Per l\'Ombra! Gandir sarà vendicato.|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fallhaven_citizen1|Ciao. Bel tempo no?||{{Hai visto mio fratello Andor?|fallhaven_andor_1|||||}}|}; -{fallhaven_citizen2|Ciao. Cosa posso fare per te?||{{Hai visto mio fratello Andor?|fallhaven_andor_2|||||}}|}; -{fallhaven_citizen3|Ciao, come posso aiutarti?||{{Hai visto mio fratello Andor?|fallhaven_andor_3|||||}}|}; -{fallhaven_citizen4|Tu sei quel ragazzo del villaggio di Crossglen?||{{Hai visto mio fratello Andor?|fallhaven_andor_4|||||}}|}; -{fallhaven_citizen5|Fuori dai piedi, contadino.|||}; -{fallhaven_citizen6|Buon giorno a te.||{{Hai visto mio fratello Andor?|fallhaven_andor_6|||||}}|}; -{fallhaven_andor_1|No mi spiace. Non ho visto nessuno di tale descrizione.|||}; -{fallhaven_andor_2|Un ragazzo dici? Hm, fammi pensare.||{{N|fallhaven_andor_1|||||}}|}; -{fallhaven_andor_3|Hm, ho visto qualcuno che corrisponde alla tua descrizione. Ma non riesco a ricordare dove.|||}; -{fallhaven_andor_4|Oh si, c\'era un altro ragazzo del villaggio di Crossglen qui, un paio di giorni fa. Non sono sicuro ma corrisponde alla tua descrizione.||{{N|fallhaven_andor_4_1|||||}}|}; -{fallhaven_andor_4_1|Alcune persone lo seguivano ,cercando l\'Ombra. Non so dirti nulla di più.|||}; -{fallhaven_andor_6|No. Non l\'ho mai visto.|||}; -{fallhaven_guard|Tieniti fuori dai guai.|||}; -{fallhaven_priest|Che l\'Ombra sia con te.||{{Ombra|priest_shadow_1|||||}}|}; -{priest_shadow_1|L\'Ombra ci protegge. L\'Ombra ci tiene al sicuro e ci conforta nel sonno.||{{N|priest_shadow_2|||||}}|}; -{priest_shadow_2|Essa ci segue ovunque andiamo. Vai con l\'Ombra mio figlio.||{{L\'Ombra sia con te|X|||||}{Come vuoi, ciao.|X|||||}}|}; -{rigmor|Hey ciao! Sei proprio un ragazzo carino.||{{Hai visto mio fratello Andor?|rigmor_1|||||}{Devo andare|rigmor_leave_select|||||}}|}; -{rigmor_1|Tuo fratello dici? si chiama Andor? No. Non posso ricordarmi di tutte le persone che incontro.||{{Ciao|rigmor_leave_select|||||}}|}; -{rigmor_leave_select|||{{|rigmor_thanks|calomyran:100||||}{|X|||||}}|}; -{rigmor_thanks|Ho sentito che hai aiutato il mio vecchio a trovare il suo libro, grazie. Ha parlato di quel libro per settimane. Poverino, tende a dimenticare le cose.||{{E\' stato un piacere. Ciao.|X|||||}{Dovresti tenerlo d\'occhio o potrebbe accadergli qualcosa di brutto.|X|||||}{Come no, l\'ho fatto solo per i soldi.|X|||||}}|}; -{fallhaven_clothes|Benvenuto nel mio negozio. Vi prego di guardare il mio assortimento di abiti e gioielli.||{{Compra|S|||||}}|}; -{fallhaven_potions|Benvenuto nel mio negozio. Vi prego di guardare il mio assortimento di pozioni per tutti i giorni.||{{Compra|S|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bucus_welcome|Ciao di nuovo, benvenuto alla.. Oh aspetta, pensavo che fosse qualcun altro.||{{Hai visto mio fratello Andor?|bucus_andor_select|||||}{Thieves Guild|bucus_thieves_select|||||}}|}; -{bucus_andor_select|||{{|bucus_umar_1|bucus:100||||}{|bucus_andor_no_1|||||}}|}; -{bucus_andor_no_1|Che interessante che tu me lo chieda. E se l\'avessi visto? Perché dovrei dirtelo?||{{N|bucus_andor_no_2|||||}}|}; -{bucus_andor_no_2|No, non posso dirtelo. Ora sei pregato di andartene|||}; -{bucus_thieves_select|||{{|bucus_thieves_complete_3|bucus:100||||}{|bucus_thieves_continue|bucus:10||||}{|bucus_thieves_select2|||||}}|}; -{bucus_thieves_select2|||{{|bucus_thieves_1|andor:40||||}{|bucus_thieves_no|||||}}|}; -{bucus_thieves_no|Ch--che cosa? No io non so niente di quello.|||}; -{bucus_umar_1|Ok ragazzo. Ti sei dimostrato degno. Sì, ho visto un ragazzo che corrisponde alla descrizione girare da queste parti qualche giorno fa.||{{N|bucus_umar_2|||||}}|}; -{bucus_umar_2|Non so cosa stesse facendo. Continuava a fare un sacco di domande!! Un po\' come stai facendo adesso tu. *hihihihihi*||{{N|bucus_umar_3|||||}}|}; -{bucus_umar_3|Comunque, questo è tutto quello che so. Dovresti andare a parlare con Umar, ne sa probabilmente di più.|{{0|andor|50|}}|{{Ok, Ciao.|X|||||}}|}; -{bucus_thieves_1|Chi te l\'ha detto? Argh. \n\nOk in che modo ci avete trovati? E adesso?||{{Posso entrare nella gilda?|bucus_thieves_2|||||}}|}; -{bucus_thieves_2|Hah! Vuoi unirti alla gilda dei ladri?! Tu?!\n\nSei proprio un ragazzino divertente.||{{Sono serio.|bucus_thieves_3|||||}{Già, proprio divertente eh?|bucus_thieves_3|||||}}|}; -{bucus_thieves_3|Ok, ti dirò una cosa ragazzino. Svolgi un compito per me e forse posso considerare di darti qualche altra informazione.||{{Di che compito stiamo parlando?|bucus_thieves_4|||||}{Finchè ho da guadagnarci, ci sto!|bucus_thieves_4|||||}}|}; -{bucus_thieves_4|Portami la chiave di Luthor e poi potremo parlare. Io non so nulla della chiave, ma si dice che si trovi da qualche parte nelle catacombe sotto la Chiesa di Fallhaven.|{{0|bucus|10|}}|{{Ok|X|||||}}|}; -{bucus_thieves_continue|Come va la ricerca della chiave di Luthor?||{{Ripeti.|bucus_thieves_4|||||}{Ce l\'ho.|bucus_thieves_complete_1||key_luthor|1|0|}{La sto ancora cercando. Ciao.|X|||||}}|}; -{bucus_thieves_complete_1|Wow, sei riuscito a prendere la chiave di Luthor? Non pensavo che tu ci riuscissi.|{{0|bucus|100|}}|{{N|bucus_thieves_complete_2|||||}}|}; -{bucus_thieves_complete_2|Ben fatto ragazzo.||{{N|bucus_thieves_complete_3|||||}}|}; -{bucus_thieves_complete_3|Ok, ora possiamo parlare, cosa vuoi sapere?||{{Che cosa sai riguardo mio fratello Andor?|bucus_umar_1|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fallhaven_drunk|Non ci sono problemi. No sireee! Non causerò più problemi adesso. Me ne sto seduto qua fuori.||{{N|fallhaven_drunk_2|||||}}|}; -{fallhaven_drunk_2|Aspetta, chi sei tu? Sei quella guardia?||{{Sì.|fallhaven_drunk_3_1|||||}{No.|fallhaven_drunk_3_2|||||}}|}; -{fallhaven_drunk_3_1|Oh, Signore. Non sto più causando problemi vede? Me ne sto fuori adesso, come avevate detto Voi, va bene?||{{N|fallhaven_drunk_4|||||}}|}; -{fallhaven_drunk_3_2|Oh, bene. La guardia mi ha sbattuto fuori dalla taverna. Se lo rivedo glie ne dico due.||{{N|fallhaven_drunk_4|||||}}|}; -{fallhaven_drunk_4|Bere, bere, bere, bere ancora un po. Bere, bere .. oh, come continuava dopo?||{{N|fallhaven_drunk_5|||||}}|}; -{fallhaven_drunk_5|Stavi dicendo qualcosa? Dove ero rimasto? Si, allora eravamo in questa prigione sotterranea.||{{N|fallhaven_drunk_6|||||}}|}; -{fallhaven_drunk_6|O era una casa? Non ricordo.||{{N|fallhaven_drunk_7|||||}}|}; -{fallhaven_drunk_7|No no, era all\'aperto! Ora mi ricordo.||{{N|fallhaven_drunk_7_select|||||}}|}; -{fallhaven_drunk_7_select|||{{|fallhaven_drunk_11|fallhavendrunk:100||||}{|fallhaven_drunk_8|||||}}|}; -{fallhaven_drunk_8|E\' lì che abbiamo..\n\nHey, dov\'è andato il mio idromele? L\'hai preso tu? ||{{Si|fallhaven_drunk_9_1|||||}{No|fallhaven_drunk_9_2|||||}}|}; -{fallhaven_drunk_9_1|Beh allora ridammelo, oppure compramene un\'altro.|{{0|fallhavendrunk|10|}}|{{Ecco, prendi un po\' di idromele.|fallhaven_drunk_10||mead|1|0|}{Ok, andrò a comprarti un po\' di idromele.|X|||||}{No. non credo che dovrei aiutarti. Addio.|X|||||}}|}; -{fallhaven_drunk_9_2|Devo averlo bevuto allora. Potresti portarmi un altro idromele? Che ne pensi?|{{0|fallhavendrunk|10|}}|{{Ecco, prendi un po\' di idromele.|fallhaven_drunk_10||mead|1|0|}{Ok, andrò a comprarti un po\' di idromele.|X|||||}{No. non credo che dovrei aiutarti. Addio.|X|||||}}|}; -{fallhaven_drunk_10|Oh dolce bevanda della felicità . Possa l\'Ommbrrrra essere con te ragazzo. *spalanca gli occhi*||{{N|fallhaven_drunk_11|||||}}|}; -{fallhaven_drunk_11|*Beve un sorso di idromele*\n\nQuesta roba è buoooonaaa!||{{N|fallhaven_drunk_12|||||}}|}; -{fallhaven_drunk_12|Già, io e Unnmir abbiamo passato dei momenti felici. Vaglielo a chiedere di persona! Di solito sta nel fienile a est di quì. Mi chiedo *rutta* che fine abbia fatto il tesoro.|{{0|fallhavendrunk|100|}}|{{Tesoro? Ci sto! Vado subito a cercare Unmir.|X|||||}{Grazie per il racconto. Ciao.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fallhaven_oldman|||{{|fallhaven_oldman_complete_2|calomyran:100||||}{|fallhaven_oldman_continue|calomyran:10||||}{|fallhaven_oldman_1|||||}}|}; -{fallhaven_oldman_1|Vuoi fare un favore ad un vecchio?||{{Certo, di cosa hai bisogno?|fallhaven_oldman_2|||||}{Potrei. C\'è in ballo qualche ricompensa per me?|fallhaven_oldman_2|||||}{No, non voglio aiutare un vecchiaccio come te. Ciao.|X|||||}}|}; -{fallhaven_oldman_2|Di recente ho perso un libro molto prezioso in miniera.||{{N|fallhaven_oldman_3|||||}}|}; -{fallhaven_oldman_3|So che l\'avevo con me ieri. Ora non riesco a trovarlo.||{{N|fallhaven_oldman_4|||||}}|}; -{fallhaven_oldman_4|Non perdo mai nulla! Credo che qualcuno lo abbia rubato.||{{N|fallhaven_oldman_5|||||}}|}; -{fallhaven_oldman_5|Andresti per favore a cercare il mio libro? Si intitola \'Calomyran secrets\'.||{{N|fallhaven_oldman_6|||||}}|}; -{fallhaven_oldman_6|Non ho idea di dove possa essere. Potresti chiedere ad Arcir, sembra molto affezionato ai suoi libri. *indica la casa a sud*|{{0|calomyran|10|}}|{{Ok, andrò a chiedere ad Arcir. Ciao.|X|||||}}|}; -{fallhaven_oldman_continue| Come va la ricerca del mio libro? Si chiama Calomyran secrets. L\'hai trovato?||{{Si|fallhaven_oldman_complete||calomyran_secrets|1|0|}{No|fallhaven_oldman_6|||||}{Ripeti|fallhaven_oldman_2|||||}}|}; -{fallhaven_oldman_complete|Il mio libro! Grazie, grazie! Dov\'era? No, non dirmelo. Ecco, prendi queste monete per l\'aiuto e per il disturbo.|{{0|calomyran|100|}{1|gold51||}}|{{Grazie. Ciao.|X|||||}{Finalmente, un po\' d\'oro. Ciao.|X|||||}}|}; -{fallhaven_oldman_complete_2|Grazie mille per aver ritrovato il mio libro!|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{nocmar|Ciao. Io sono Nocmar.||{{Questo posto sembra una fucina. Hai qualcosa da vendere?|nocmar_trade_select|||||}{Unnmir|nocmar_quest_select|nocmar:10||||}{Ciao|X|||||}}|}; -{nocmar_quest_select|||{{|nocmar_complete_5|nocmar:200||||}{|nocmar_continue|nocmar:20||||}{|nocmar_quest|||||}}|}; -{nocmar_trade_select|||{{|S|nocmar:200||||}{|nocmar_trade_1|||||}}|}; -{nocmar_trade_1|Non ho oggetti in vendita. Ero solito avere un sacco di oggetti in vendita ma oggi non sono autorizzato a vendere nulla .||{{N|nocmar_trade_2|||||}}|}; -{nocmar_trade_2|Una volta ero uno dei più grandi fabbri in Fallhaven. Poi quel bastardo di Lord Geomyr mi ha vietato l\'uso dell\'Acciaio puro.||{{N|nocmar_trade_3|||||}}|}; -{nocmar_trade_3|Con il decreto di Lord Geomyr, nessuno in Fallhaven è autorizzato ad utilizzare nemmeno le armi Acciaio puro. Vendo molto meno ora.||{{N|nocmar_trade_4|||||}}|}; -{nocmar_trade_4|Così ora devo nascondere le ultime armi che mi rimangono. Non oso venderle a nessuno.||{{N|nocmar_trade_4_1|||||}}|}; -{nocmar_trade_4_1|Non vedo il bagliore di armi in Acciaio puro da quando Lord Geomyr le ha vietate.||{{N|nocmar_trade_5|||||}}|}; -{nocmar_trade_5|Così, purtroppo non posso vendere nessuna delle mie armi.|||}; -{nocmar_quest|Unnmir ti ha mandato?Immagino che debba essere importante.|{{0|nocmar|20|}}|{{N|nocmar_quest_1|||||}}|}; -{nocmar_quest_1|Ok, queste vecchie armi hanno perso la loro luce interiore, è da molto che non vengono utilizzate.||{{N|nocmar_quest_2|||||}}|}; -{nocmar_quest_2|Per ridare la luce alle armi avremo bisogno di un cuore di pietra. ||{{N|nocmar_quest_3|||||}}|}; -{nocmar_quest_3|Anni fa, l\'abbiamo usato per combattere i lich di Undertell. Non ho idea se ancora infestino quel luogo.||{{Undertell, cos\'è?|nocmar_quest_4|||||}}|}; -{nocmar_quest_4|Undertell, i pozzi delle anime perdute. Viaggia a sud ed entra nelle caverne dei Nani. Segui l\'odore orribile.||{{N|nocmar_quest_5|||||}}|}; -{nocmar_quest_5|Attento ai lich di Undertell, se ancora ce ne sono in giro. Quelle cose possono ucciderti solo con lo sguardo.|||}; -{nocmar_continue|Hai già trovato un cuore di pietra?||{{Sì, alla fine l\'ho trovato.|nocmar_complete||heartstone|1|0|}{Ripeti.|nocmar_quest_1|||||}{No, non ancora.|nocmar_continue_2|||||}}|}; -{nocmar_continue_2|Per favore continua a cercare. Unnmir deve avere qualcosa di importante in programma per te.|||}; -{nocmar_complete|Per l\'Ombra. Hai realmente trovato un cuore di pietra. Ho sempre pensato di non riuscire a vivere abbastanza per vedere questo giorno|{{0|nocmar|200|}}|{{N|nocmar_complete_2|||||}}|}; -{nocmar_complete_2|Riesci a vedere la luce? E\' letteralmente pulsante.||{{N|nocmar_complete_3|||||}}|}; -{nocmar_complete_3|Veloce. Lasciamo riprendere il vecchio bagliore a queste armi.||{{N|nocmar_complete_4|||||}}|}; -{nocmar_complete_4|*Nocmar pone il cuore di pietra fra le armi in Acciaio puro*||{{N|nocmar_complete_5|||||}}|}; -{nocmar_complete_5|Riesci a sentirlo? L\'Acciaio puro è di nuovo incandescente.||{{Compra|S|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bela|Benvenuto nella taverna di Fallhaven. Siediti dove vuoi.||{{Compra|S|||||}{Ci sono stanze libere?|bela_room_select|||||}}|}; -{bela_room_1|Una stanza per la notte vi costerà solo 10 monete.||{{Compra [10 gold]|bela_room_2||gold|10|0|}{No grazie.|bela|||||}}|}; -{bela_room_2|Grazie. Prendete l\'ultima stanza già in fondo al corridoio.|{{0|fallhaventavern|10|}}|{{Grazie, c\'era qualcos\'altro che volevo chiederti.|bela|||||}{Grazie, ciao.|X|||||}}|}; -{bela_room_3|Mi auguro che la stanza sa di vostro gradimento. E\' l\'ultima sala giù in fondo al corridoio.||{{Grazie, c\'era qualcos\'altro che volevo chiederti.|bela|||||}{Grazie, ciao.|X|||||}}|}; -{bela_room_select|||{{|bela_room_3|fallhaventavern:10||||}{|bela_room_1|||||}}|}; -{ganos|Tu mi sei familiare.||{{Compra|S|||||}{Sai nulla riguardo la gilda dei ladri?|ganos_1|andor:30||||}}|}; -{ganos_1|Gilda dei ladri? Come faccio a saperlo? Ti sembro un ladro?! Hrmpf.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{arcir_start|Ciao, io sono Arcir.||{{Ho notato la tua statua di Elythara al piano di sotto.|arcir_elythara_1|arcir:10||||}{Sembra proprio che ami i tuoi libri.|arcir_books_1|||||}}|}; -{arcir_anythingelse|Volevi chiedermi qualcosa?||{{Ho notato la tua statua di Elythara al piano di sotto.|arcir_elythara_1|arcir:10||||}{Sembra proprio che ami i tuoi libri.|arcir_books_1|||||}}|}; -{arcir_elythara_1|Hai trovato la mia statua nel seminterrato?\n\nSi, Elythara è il mio protettore.||{{Okay.|arcir_anythingelse|||||}}|}; -{arcir_books_1|Ho una grande riconoscenza verso i miei libri. Contengono le conoscenze accumulate dalle generazioni passate||{{Hai un libro intitolato \'Calomyran secrets\'?|arcir_calomyran_select|calomyran:10||||}{Okay.|arcir_anythingelse|||||}}|}; -{arcir_calomyran_1|\'Calomyran secrets\'? Hm, Si penso di averne una copia nella cantina.||{{N|arcir_calomyran_2|||||}}|}; -{arcir_calomyran_2|Il vecchio Benradas venne da me la settimana scorsa, per vendermi quel libro. Ma non è proprio il mio genere e quindi ho rifiutato||{{N|arcir_calomyran_3|||||}}|}; -{arcir_calomyran_3|Sembrava sconvolto dal fatto che non mi piaceva il suo libro, lo ha lanciato verso di me mentre usciva di casa.||{{N|arcir_calomyran_4|||||}}|}; -{arcir_calomyran_4|Benradas, povero vecchio, probabilmente ha dimenticato che l\'ha lasciato qui. Tende a dimenticarsi le cose.||{{N|arcir_anythingelse|||||}}|}; -{arcir_calomyran_5|Hai guardato già ma non lo trovi? C\'è un biglietto? Credo che qualcuno sia venuto a visitarmi .||{{N|arcir_calomyran_6|||||}}|}; -{arcir_calomyran_select|||{{|arcir_calomyran_complete|calomyran:100||||}{|arcir_calomyran_5|calomyran:20||||}{|arcir_calomyran_1|||||}}|}; -{arcir_calomyran_complete|Ho sentito che l\'hai trovato e l\'hai ridato al vecchio Benradas. Grazie. Tende a dimenticarsi le cose.||{{N|arcir_anythingelse|||||}}|}; -{arcir_calomyran_6|Cosa diceva il biglietto?\n\nLarcal.. Lo conosco, sempre a creare problemi. Di solito sta nel fienile ad est di qui.||{{Grazie, Ciao.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{chapelgoer|Ombra, abbracciami.|||}; -{thoronir_default|Crogiolati nell\'Ombra, figlo mio.||{{Parlami dell\'Ombra.|thoronir_shadow_1|||||}{Cosa sai dirmi di questa chiesa?|thoronir_church_1|||||}{Compra|thoronir_trade_bonemeal|bonemeal:100||||}}|}; -{thoronir_shadow_1|L\'Ombra ci protegge dai pericoli della notte. Ci tiene al sicuro e ci consola mentre dormiamo.||{{Bagliore dell\'Ombra|thoronir_tharal_select|bonemeal:30||||}{Indietro|thoronir_default|||||}{Ciao|thoronir_default|||||}}|}; -{thoronir_church_1|Questa è la nostra cappella di culto a Fallhaven. La nostra comunità si rivolge a noi per il sostegno.||{{N|thoronir_church_2|||||}}|}; -{thoronir_church_2|Questa chiesa ha resistito per centinaia di anni ed è stata tenuta al sicuro dai tombaroli.||{{N|thoronir_church_3|||||}}|}; -{thoronir_tharal_select|||{{|thoronir_trade_bonemeal|bonemeal:100||||}{|thoronir_tharal_1|||||}}|}; -{thoronir_tharal_1|Bagliore dell\'Ombra figlio mio. Quindi il mio vecchio amico Tharal ti ha inviato dal villaggio di Crossglen?||{{Potrebbe raccontarmi qualcosa riguardo la farina d\'ossa?|thoronir_tharal_2|||||}}|}; -{thoronir_church_3|Le catacombe sotto la chiesa ospitano i grandi capi del passato. Si dice che anche il grande Luthor sia sepolto là .||{{Nessuno è mai entrato là sotto?|thoronir_church_4|bucus:10||||}{Indietro|thoronir_default|||||}}|}; -{thoronir_church_4|A nessuno è permesso scendere, fatta eccezione per Athamyr, il mio apprendista. E\' l\'unico che è sceso laggiù in questi anni.|{{0|bucus|20|}}|{{Indietro|thoronir_default|||||}}|}; -{thoronir_tharal_2|Shhh, non si dovrebbe parlare dell\'utilizzo di farina d\'ossa. Come sapete, Lord Geomyr ha emesso un divieto su tutti gli usi della farina d\'ossa.||{{N|thoronir_tharal_3|||||}}|}; -{thoronir_tharal_3|Quando il divieto è arrivato, non ho osato tenerne, cosi ho buttato via la mia intera fornitura. Molto sciocco da parte mia...||{{N|thoronir_tharal_4|||||}}|}; -{thoronir_tharal_4|Pensi di potermi trovare 5 ossa di scheletro che possa utilizzare per preparare una pozione d\'ossa? La farina d\'ossa è molto potente nella guarigione delle ferite.||{{Certo, non dovrebbe essere un problema.|thoronir_tharal_5|||||}{Ho le ossa che mi hai chiesto.|thoronir_tharal_complete||bone|5|0|}}|}; -{thoronir_tharal_5|Grazie, fai in fretta. Ho sentito che c\'erano dei non-morti vicino ad una vecchia casa a nord di Fallhaven. Forse puoi provare a vedere là?|{{0|bonemeal|40|}}|{{Ok, darò un\'occhiata.|thoronir_default|||||}}|}; -{thoronir_tharal_complete|Grazie, queste ossa vanno bene. Ora posso iniziare a creare una pozione di guarigione per te.|{{0|bonemeal|100|}}|{{N|thoronir_complete_2|||||}}|}; -{thoronir_complete_2|Dammi il tempo di preparare la pozione di farina d\'ossa. Si tratta di una pozione di guarigione molto potente.|||}; -{thoronir_trade_bonemeal|La pozione d\'ossa è pronta, utilizzala con cura e non farti vedere dalle guardie. Non siamo autorizzati ad usarla!.||{{Compra|S|||||}{Indietro|thoronir_default|||||}}|}; -{catacombguard|Torna indietro finché sei in tempo, mortale! Questo posto non è per te. Solo la morte ti aspetta qui.||{{Va bene, tornerò indietro.|X|||||}{Spostati, devo procedere la mia discesa nelle catacombe!|catacombguard1|||||}{Per l\'Ombra, non mi fermerai.|catacombguard1|||||}}|}; -{catacombguard1|Nooo, non passerai!||{{Combatti!|F|||||}}|}; -{luthor|*hissss* Un mortale osa disturbare il mio sonno?||{{Per l\'Ombra! Chi sei tu?|F|||||}{Finalmente, un degno combattimento! Ho aspettato a lungo per questo.|F|||||}{Come vuoi, facciamola finita.|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{athamyr|Cammina con l\'Ombra.||{{Catacombe|athamyr_select|bucus:20||||}}|}; -{athamyr_1|Si, sono già stato nelle catacombe della chiesa di Fallhaven. ||{{N|athamyr_2|||||}}|}; -{athamyr_2|Ma io sono l\'unico che ha il permesso e il coraggio di andare laggiù.||{{Permesso|athamyr_3|||||}}|}; -{athamyr_3|Vuoi scendere nelle catacombe? Hm, forse possiamo fare un accordo.||{{N|athamyr_4|||||}}|}; -{athamyr_4|Portami po\' di quella carne cotta dalla taverna e puoi avere il permesso di scendere nelle catacombe.|{{0|bucus|30|}}|{{Ecco, ho la carne che mi hai chiesto.|athamyr_complete||meat_cooked|1|0|}{Bene, andrò a prenderne un po\'.|X|||||}}|}; -{athamyr_complete_2|Grazie per avermi aiutato. Ora hai il permesso di scendere nelle catacombe della Chiesa di Fallhaven .|{{0|bucus|50|}}||}; -{athamyr_select|||{{|athamyr_complete_2|bucus:40||||}{|athamyr_1|||||}}|}; -{athamyr_complete|Grazie, ci voleva.|{{0|bucus|40|}}|{{N|athamyr_complete_2|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{larcal|Non ho tempo per te ragazzino. Sparisci.||{{Calomyran Secrets|larcal_1|calomyran:20||||}}|}; -{larcal_1|Orsù, cosa abbiamo qua? Dunque mi accusi di essere stato nel seminterrato di Arcir?||{{N|larcal_2|||||}}|}; -{larcal_2|Forse è vero. Comunque il libro è mio.||{{N|larcal_3|||||}}|}; -{larcal_3|Cerchiamo di risolvere la cosa pacificamente. Ora te ne vai e ti dimentichi di quel libro, e magari resterai vivo.||{{Va bene, tieniti il libro.|larcal_4|||||}{No, mi darai quel libro.|larcal_5|||||}}|}; -{larcal_4|Bravo ragazzo, scappa scappa.|||}; -{larcal_5|OK, ora stai cominciando ad infastidirmi. Vattene finché sei in tempo.||{{Va bene, me ne vado.|X|||||}{No! Quel libro non ti appartiene!|larcal_6|||||}}|}; -{larcal_6|Sei ancora qui? OK, se vuoi avere quel libro...vieni a prendertelo!||{{Finalmente, un degno combattimento! Ho aspettato a lungo per questo.|F|||||}{Speravo di non dover arrivare a questo.|F|||||}{Molto bene, andrò via.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{unnmir|||{{|unnmir_r|nocmar:10||||}{|unnmir_0|||||}}|}; -{unnmir_r|Hello again. You should go talk to Nocmar.||{{N|unnmir_13|||||}}|}; -{unnmir_0|Salve!||{{Un ubriacone fuori dalla taverna mi ha raccontato la storia di voi due.|unnmir_1|fallhavendrunk:100||||}}|}; -{unnmir_1|Quel vecchio ubriacone alla taverna ti ha raccontato la sua storia?||{{N|unnmir_2|||||}}|}; -{unnmir_2|La stessa vecchia storia. Eravamo abituati a viaggiare insieme qualche anno fa.||{{N|unnmir_3|||||}}|}; -{unnmir_3|Avventure vere...sai, spade e incantesimi.||{{N|unnmir_4|||||}}|}; -{unnmir_4|Ma poi ci siamo fermati, non so dirti il perché, forse eravamo stanchi di viaggiare. Ci siamo fermati qui a Fallhaven.||{{N|unnmir_5|||||}}|}; -{unnmir_5|E\' una bella cittadina. Molti ladri in giro, però non mi preoccupo.||{{N|unnmir_6|||||}}|}; -{unnmir_6|Allora, qual è la tua storia ragazzo? Come hai fatto a finire qui a Fallhaven?||{{Sto cercando mio fratello.|unnmir_7|||||}}|}; -{unnmir_7|Si, si, ho capito. Tuo Fratello è probabilmente scappato in qualche miniera per fare l\'avventuriero *rotea gli occhi*.||{{N|unnmir_8|||||}}|}; -{unnmir_8|O forse si è recato in una delle città più a nord.||{{N|unnmir_9|||||}}|}; -{unnmir_9|Non posso dargli nessun torto per voler vedere il mondo.||{{N|unnmir_10|||||}}|}; -{unnmir_10|Hey, stai cercando anche tu di fare l\'avventuriero?||{{Si|unnmir_11|||||}{Non proprio|unnmir_12|||||}}|}; -{unnmir_11|Bene. Ti do un piccolo suggerimento. *sghignazzando*. Vai a trovare Nocmar oltre il lato ovest della città. Digli che ti ho mandato io.|{{0|nocmar|10|}}|{{N|unnmir_13|||||}}|}; -{unnmir_12|Mossa intelligente. L\'avventura porta un sacco di cicatrici. Se capisci cosa intendo.|||}; -{unnmir_13|La sua casa è a sud-ovest della taverna.||{{Grazie, andrò a cercarlo.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{gaela|||{{|gaela_r|andor:40||||}{|gaela_0|||||}}|}; -{gaela_r|Hello again. I hope you will find what you are looking for.|||}; -{gaela_0|Veloce è la mia lama. Velenosa la mia lingua. O era il contrario?||{{Sembra ci siano un sacco di ladri qui a Fallhaven.|gaela_1|||||}}|}; -{gaela_1|Si, noi ladri abbiamo una forte presenza a Fallhaven.||{{Qualcos\'altro?|gaela_2|andor:30||||}}|}; -{gaela_2|Ho sentito che hai aiutato Gruil, un compagno ladro del villaggio di Crossglen.||{{N|gaela_3|||||}}|}; -{gaela_3|Voci dicono che stai cercando qualcuno. Potrei essere in grado di aiutarti.||{{N|gaela_4|||||}}|}; -{gaela_4|Dovresti andare a parlare con Bucus nella casa abbandonata a sud-ovest. Digli che vuoi sapere di più sulla gilda dei ladri.|{{0|andor|40|}}|{{Grazie, andrò a parlare con lui.|gaela_5|||||}}|}; -{gaela_5|Consideralo un favore, in cambio del tuo aiuto a Gruil.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{vacor|||{{|vacor_return_complete0|vacor:60||||}{|vacor_return2|vacor:40||||}{|vacor_42|vacor:30||||}{|vacor_select1|||||}}|}; -{vacor_select1|||{{|vacor_return1|vacor:20||||}{|vacor_begin|||||}}|}; -{vacor_begin|Ciao.||{{N|vacor_2|||||}}|}; -{vacor_2|Cosa sei, una specie di avventuriero? Hm. Forse puoi essermi utile.||{{N|vacor_3|||||}}|}; -{vacor_3|Sei disposto ad aiutarmi?||{{Certo|vacor_4|||||}{No|vacor_bah|||||}}|}; -{vacor_bah|Bah, umile creatura. Sapevo che non dovevo chiedere a te. Ora vattene.|||}; -{vacor_4|Qualche tempo fa, stavo lavorando su un incantesimo di apertura che avevo letto.||{{N|vacor_5|||||}}|}; -{vacor_5|L\'incantesimo ha lo scopo, diciamo, di aprire nuove possibilità, ecco.||{{N|vacor_6|||||}}|}; -{vacor_6|Ehm, si, quando l\'incantesimo di apertura sarà pronto le cose andranno meglio. Ahem.||{{N|vacor_7|||||}}|}; -{vacor_7|Ho lavorato duramente per mettere insieme tutti gli ingredienti.||{{N|vacor_8|||||}}|}; -{vacor_8|Poi una banda di teppisti è venuta e ha combinato un disastro.||{{N|vacor_9|||||}}|}; -{vacor_9|Hanno dichiarato di essere messaggeri dell\'Ombra e insistito sul fatto che io dovessi lasciar perdere il mio incantesimo.||{{N|vacor_10|||||}}|}; -{vacor_10|Assurdo, non è vero? Ero così vicino ad avere il potere!||{{N|vacor_11|||||}}|}; -{vacor_11|Oh, il potere che avrebbe potuto avere il mio incantesimo...|{{0|vacor|10|}}|{{N|vacor_12|||||}}|}; -{vacor_12|Comunque, stavo per completare l\'ultimo passaggio... quando i banditi sono arrivati e mi hanno derubato.||{{N|vacor_13|||||}}|}; -{vacor_13|I banditi hanno preso i fogli con l\'incantesimo e sono scappati prima che arrivassero le guardie.||{{N|vacor_14|||||}}|}; -{vacor_14|Ora non riesco a ricordare gli ultimi passaggi per completarlo.||{{N|vacor_15|||||}}|}; -{vacor_15|Pensi che potresti aiutarmi a ritrovarlo? Poi potrò avere il potere...finalmente!||{{N|vacor_16|||||}}|}; -{vacor_16|Naturalmente verrai lautamente ricompensato.||{{Una ricompensa? Ci sto!|vacor_17|||||}{Molto bene, ti aiuterò.|vacor_17|||||}{No grazie, preferirei non essere coinvolto in questa faccenda.|vacor_bah|||||}}|}; -{vacor_17|Sapevo che non potevo fidarmi...Aspetta, cosa? Hai veramente detto di sì? Ah beh, bene allora.||{{N|vacor_18|||||}}|}; -{vacor_18|Ok, trova le 4 parti del mio incantesimo che i banditi hanno rubato, poi portamele!|{{0|vacor|20|}}|{{N|vacor_19|||||}}|}; -{vacor_19|I banditi erano quattro, dopo avermi attaccato si sono diretti a sud di Fallhaven.||{{N|vacor_20|||||}}|}; -{vacor_20|Dovresti cercare nella parte meridionale di Fallhaven.||{{N|vacor_21|||||}}|}; -{vacor_21|Per favore, fai in fretta! Sono così ansioso di aprire il varco...Ehm, voglio dire... di finire l\'incantesimo.|||}; -{vacor_return1|Bentornato, come va la ricerca dei fogli per il mio incantesimo?||{{Fatto, ho tutti i quattro pezzi.|vacor_40||vacor_spell|4|0|}{Cosa dovevo fare?|vacor_18|||||}{Mi ripeteresti l\'intera storia?|vacor_4|||||}}|}; -{vacor_40|Oh, hai trovato i 4 pezzi?? sbrigati, dalli a me!|{{0|vacor|30|}}|{{N|vacor_41|||||}}|}; -{vacor_41|Si, questi sono i fogli che i banditi hanno rubato.||{{N|vacor_42|||||}}|}; -{vacor_42|Ora dovrei essere in grado di aprire il varco dell\'Ombra... ehm intendo aprire nuove possibilità. Si, è questo che intendevo.||{{N|vacor_43|||||}}|}; -{vacor_43|L\'ultimo ostacolo rimasto, per completare l\'incantesimo di apertura è quello stupido di Unzel.||{{N|vacor_44|||||}}|}; -{vacor_44|Unzel era il mio apprendista qualche tempo fa. Poi ha cominciato a darmi fastidio con le sue domande e i sui discorsi sulla moralità .||{{N|vacor_45|||||}}|}; -{vacor_45|Sostiene che la mia magia interromperà il volere dell\'Ombra.||{{N|vacor_46|||||}}|}; -{vacor_46|Bah, l\'Ombra. Cosa ha mai fatto l\'Ombra per ME?||{{N|vacor_47|||||}}|}; -{vacor_47|Un giorno riuscirò a scagliare il mio incantesimo di apertura e allora ci libereremo dell\'Ombra.||{{N|vacor_48|||||}}|}; -{vacor_48|Ad ogni modo, sono convinto che Unzel abbia mandato quei banditi da me. E se non lo fermo, li rimanderà.||{{N|vacor_49|||||}}|}; -{vacor_49|Ho bisogno che tu scovi Unzel e lo uccida. Lo puoi probabilmente trovare da qualche parte a sud-est di Fallhaven.|{{0|vacor|40|}}|{{N|vacor_50|||||}}|}; -{vacor_50|Portami il suo anello con sigillo come prova della sua morte.||{{N|vacor_51|||||}}|}; -{vacor_51|Ora sbrigati! Non posso aspettare ancora a lungo...! Il potere sarà mio!|||}; -{vacor_return2|Bentornato, qualche progresso?||{{Riguardo Unzel...|vacor_return2_2|||||}{Mi ripeti cosa dovrei fare?|vacor_43|||||}}|}; -{vacor_return2_2|Hai ucciso Unzel per me? Portami il suo anello con sigillo quando l\'avrai ucciso.||{{Ho sistemato la faccenda. Eccoti l\'anello.|vacor_60||ring_unzel|1|0|}{Ho ascoltato la storia di Unzel e ho deciso di schierarmi con lui. L\'Ombra deve essere protetta.|vacor_70|vacor:51||||}}|}; -{vacor_60|Haha, Unzel è morto! Quella creatura patetica se n\'é andata!|{{0|vacor|60|}}|{{N|vacor_61|||||}}|}; -{vacor_61|Riesco a vedere il suo sangue sui tuoi stivali. E sono persino riuscito a farti uccidere i suoi servi in anticipo.||{{N|vacor_62|||||}}|}; -{vacor_62|Oggi è un grande giorno. Avrò presto il potere!||{{N|vacor_63|||||}}|}; -{vacor_63|Ecco, queste monete sono per il tuo aiuto.|{{1|gold200||}}|{{N|vacor_64|||||}}|}; -{vacor_64|Ora lasciami, ho del lavoro da fare prima di poter lanciare l\'incantesimo.|||}; -{vacor_return_complete0|||{{|vacor_msg_16|kaverin:90||||}{|vacor_msg_9|kaverin:75||||}{|vacor_msg1|kaverin:60|kaverin_message|1|1|}{|vacor_return_complete|||||}}|}; -{vacor_return_complete|Bentornato, mio amico assassino. Presto avremo l\'incantesimo per il varco.|||}; -{vacor_70|Cosa? Ti ha raccontato la sua storia? E tu ci hai creduto?||{{N|vacor_71|||||}}|}; -{vacor_71|Ti darò un\'altra possibilità. O ucciderai Unzel per me e io ti ricompenserò generosamente, oppure dovrai combattere contro di me.||{{No, devi essere fermato.|vacor_72|||||}{Bene, ci penserò ancora un po\' su.|X|||||}}|}; -{vacor_72|Bah, piccola creatura. Sapevo che non dovevo darti fiducia. Ora morirai con la tua preziosa Ombra.|{{0|vacor|54|}}|{{Per l\'Ombra!|F|||||}{Devi essere fermato.|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{unzel_1|Ciao. Io sono Unzel.||{{Questo è il tuo accampamento?|unzel_2|||||}{Vacor mi ha mandato qui per ucciderti.|unzel_3|vacor:40||||}}|}; -{unzel_2|Si, questo è il mio accampamento, ti piace?||{{Ciao|X|||||}}|}; -{unzel_3|Vacor ti ha inviato eh? Sapevo che avrebbero mandato qualcuno prima o poi.||{{N|unzel_4|||||}}|}; -{unzel_4|Benissimo, uccidimi se devi oppure permettimi di raccontarti la mia versione dei fatti.||{{Sarà un vero piacere ucciderti.|unzel_fight|||||}{Raccontami la tua storia.|unzel_5|||||}}|}; -{unzel_fight|Molto bene, mano alle armi.|{{0|vacor|53|}}|{{Combatti|F|||||}}|}; -{unzel_5|Grazie per aver ascoltato.||{{N|unzel_10|||||}}|}; -{unzel_10|Vacor ed io abbiamo sempre viaggiato insieme. Ma ad un tratto ha iniziato ad essere ossessionato da questi incantesimi.||{{N|unzel_11|||||}}|}; -{unzel_11|Ha iniziato ad interrogarsi sull\'Ombra. Sapevo che dovevo fare qualcosa per fermarlo...||{{N|unzel_12|||||}}|}; -{unzel_12|Ho iniziato a chiedergli che stava facendo, ma voleva solo andare avanti.||{{N|unzel_13|||||}}|}; -{unzel_13|Dopo un po\', divenne ossessionato dal pensiero di un incantesimo che gli avrebbe concesso poteri illimitati contro l\'Ombra.||{{N|unzel_14|||||}}|}; -{unzel_14|Allora c\'era una sola cosa che potevo fare. L\'ho lasciato e ho tentato di impedirgli di completare l\'incantesimo.||{{N|unzel_15|||||}}|}; -{unzel_15|Così ho mandato alcuni amici da lui a prendere l\'incantesimo.||{{N|unzel_16_select|||||}}|}; -{unzel_16_select|||{{|unzel_16_2|vacor:50||||}{|unzel_16_1|||||}}|}; -{unzel_16_1|Il resto è storia.||{{Banditi|unzel_17|||||}}|}; -{unzel_16_2|Il resto è storia.||{{N|unzel_19|||||}}|}; -{unzel_17|Cosa? Hai ucciso i miei 4 amici? Argh, sento la rabbia salire!||{{N|unzel_18|||||}}|}; -{unzel_18|Ma mi rendo anche conto che tutto questo è il piano di Vacor. Ora ti darò l\'opportunità di decidere. Scegli saggiamente.||{{N|unzel_19|||||}}|}; -{unzel_19|Puoi schierarti con Vacor e aiutarlo a completare il suo incantesimo, oppure mi aiuti a sbarazzarmi di lui. Chi aiuterai?|{{0|vacor|50|}}|{{Sono con te. L\'Ombra non deve essere disturbata.|unzel_20|||||}{Mi schiererò con Vacor.|unzel_fight|||||}}|}; -{unzel_20|Grazie amico mio, manterremo l\'Ombra al sicuro da Vacor.|{{0|vacor|51|}}|{{N|unzel_21|||||}}|}; -{unzel_21|Dovresti andare a parlare con lui dell\'Ombra.|||}; -{unzel_return_1|bentornato. Hai parlato con Vacor?||{{Sì.|unzel_30||ring_vacor|1|0|}{No, non ancora.|X|||||}}|}; -{unzel_30|L\'hai ucciso? Sei un amico, grazie. Ora siamo al sicuro dall\'incantesimo di Vacor. Ecco, prendi queste monete per il tuo aiuto.|{{0|vacor|61|}{1|gold200||}}|{{L\'Ombra sia con te.|X|||||}{Grazie.|X|||||}}|}; -{unzel_40|Grazie per il tuo aiuto, ora siamo al sicuro dall\'incantesimo di Vacor.||{{I have a message for you from Kaverin in Remgard.|unzel_msg1|kaverin:25|kaverin_message|1|1|}}|}; -{unzel|||{{|unzel_msg_r0|kaverin:30||||}{|unzel_40|vacor:61||||}{|unzel_return_1|vacor:51||||}{|unzel_1|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fallhaven_bandit|Vattene ragazzo, non ho tempo per te.||{{Sto cercando un pezzo dell\'incantesimo|fallhaven_bandit_2|vacor:20||||}}|}; -{fallhaven_bandit_2|No! Vacor non otterrà il potere dell\'incantesimo!||{{Combatti!|F|||||}}|}; -{bandit1|Cosa abbiamo qui? Un viandante perduto?||{{N|bandit1_2|||||}}|}; -{bandit1_2|Quanto credi che valga la tua vita?? Dammi 100 monete d\'oro e ti lascerò andare.||{{Ok ok, ecco l\'oro, ti prego non farmi del male!|bandit1_3||gold|100|0|}{Che ne dici di combattere?|bandit1_4|||||}{E quanto vale la tua di vita?|bandit1_4|||||}}|}; -{bandit1_3|Era ora! Sei libero di andartene.|||}; -{bandit1_4|Ok, la vita è tua. Combattiamo. E\' tanto che aspetto un bel combattimento!||{{Combatti!|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{zombie1|Cane freeescaaa!||{{Per l\'Ombra, ti ucciderò!|F|||||}{Bleah, chi sei tu? E cos\'è questo odore?|F|||||}}|}; -{prisoner1|Nooo, non sarò imprigionato di nuovo!||{{Ma io non...|F|||||}}|}; -{prisoner2|Aaaa! Chi è là? Non voglio essere schiavo di nuovo!||{{Calmati, stavo solo...|F|||||}}|}; -{flagstone_guard0|Ah, un altro mortale. Preparati a diventare parte del mio esercito di non morti!|{{0|flagstone|31|}}|{{Che l\'Ombra ti colga.|F|||||}{Preparati a morire un\'altra volta.|F|||||}}|}; -{flagstone_guard1|Muori mortale!||{{Che l\'Ombra ti colga.|F|||||}{Preparati ad incontrare la mia lama.|F|||||}}|}; -{flagstone_guard2|Come? Un mortale qui dentro che non è stato marchiato dal mio tocco?|{{0|flagstone|50|}}|{{N|flagstone_guard2_2|||||}}|}; -{flagstone_guard2_2|Mmmmh..sembri morbido e delizioso, prenderai parte alla festa?||{{N|flagstone_guard2_3|||||}}|}; -{flagstone_guard2_3|Penso proprio di sì. Una volta che avrò finito con te, il mio esercito si riverserà fuori da Flagstone.||{{Per l\'Ombra, devi essere fermato!|F|||||}{No! Questa terra deve essere protetta dai non-morti!|F|||||}}|}; -{flagstone_sentry|||{{|flagstone_sentry_return4|flagstone:60||||}{|flagstone_sentry_return3|flagstone:40||||}{|flagstone_sentry_select0|||||}}|}; -{flagstone_sentry_select0|||{{|flagstone_sentry_return2|flagstone:30||||}{|flagstone_sentry_return1|flagstone:10||||}{|flagstone_sentry_1|||||}}|}; -{flagstone_sentry_1|Alt! Chi va là? A nessuno è permesso di avvicinarsi a Flagstone.||{{N|flagstone_sentry_2|||||}}|}; -{flagstone_sentry_2|Dovresti tornare indietro finchè puoi farlo.||{{N|flagstone_sentry_3|||||}}|}; -{flagstone_sentry_3|Flagstone è stata invasa da non-morti ed io sono di guardia per assicurare che non fuggano.||{{Potresti raccontarmi la storia di Flagstone?|flagstone_sentry_4|||||}}|}; -{flagstone_sentry_4|Flagstone è stata usata come prigione per i lavoratori in fuga da quando si è iniziato a scavare il monte Galmore.||{{N|flagstone_sentry_5|||||}}|}; -{flagstone_sentry_5|Ma una volta che gli scavi sono terminati, il campo di prigionia ha perso il suo scopo.||{{N|flagstone_sentry_6|||||}}|}; -{flagstone_sentry_6|Al Lord che governava a quel tempo non importava molto dei detenuti che erano a Flagstone, così li ha lasciati là.||{{N|flagstone_sentry_7|||||}}|}; -{flagstone_sentry_7|Il guardiano del carcere che controllava Flagstone ha preso il suo lavoro molto seriamente tanto da continuare ad amministrare la prigione come quando gli scavi erano in attività.||{{N|flagstone_sentry_8|||||}}|}; -{flagstone_sentry_8|Per anni non si hanno avuto notizie di Flagstone. Eccetto da alcuni viaggiatori che sentivano terribili urla e lamenti passando da queste strade.||{{N|flagstone_sentry_9|||||}}|}; -{flagstone_sentry_9|Recentemente, ci sono stati dei cambiamenti di attività a Flagstone! Da allora i non-morti sono apparsi in gran numero.||{{N|flagstone_sentry_10|||||}}|}; -{flagstone_sentry_10|Questa è la storia. Devo stare di guardia e fare in modo che i non morti non escano da Flagstone||{{N|flagstone_sentry_11|||||}}|}; -{flagstone_sentry_11|Quindi ti consiglio di andartene se non vuoi essere sopraffatto dai non morti.||{{Posso esplorare le rovine di Flagstone?|flagstone_sentry_12|||||}{Ok, è meglio che me ne vada.|X|||||}}|}; -{flagstone_sentry_12|Sei davvero sicuro di voler andare là? Beh ok, per me va bene.||{{N|flagstone_sentry_13|||||}}|}; -{flagstone_sentry_13|Non ti fermerò ma non sentirò la tua mancanza se non tornerai.||{{N|flagstone_sentry_14|||||}}|}; -{flagstone_sentry_14|Continua. Fammi sapere se c\'è qualcosa che posso dirti per aiutarti.||{{N|flagstone_sentry_15|||||}}|}; -{flagstone_sentry_15|Ritorna qui se hai bisogno di consigli.|{{0|flagstone|10|}}|{{Va bene, in caso di problemi tornerò da te.|X|||||}}|}; -{flagstone_sentry_return1|Bentornato! sei stato a Flagstone? sono sorpreso che tu sia riuscito ad uscirne.||{{Ripeti|flagstone_sentry_4|||||}{C\'è un guardiano nei livelli inferiori di Flagstone al quale non ci si può avvicinare.|flagstone_sentry_20|flagstone:20||||}}|}; -{flagstone_sentry_20|Un guardiano dici? Questa è una notizia preoccupante, significa che c\'è una forza più grande dietro a tutto questo.||{{N|flagstone_sentry_21|||||}}|}; -{flagstone_sentry_21|Hai trovato il vecchio guardiano di Flagstone? Egli era solito portare sempre una collana con sè.||{{N|flagstone_sentry_22|||||}}|}; -{flagstone_sentry_22|Era molto geloso con essa, forse la collana era una sorta di chiave.||{{N|flagstone_sentry_23|||||}}|}; -{flagstone_sentry_23|Se riesci a recuperare la collana del guardiano, torna qui e ti aiuterò a decifrare i messaggi che potrebbero esserci sopra.|{{0|flagstone|30|}}|{{L\'ho trovata, ecco.|flagstone_sentry_40||necklace_flagstone|1|0|}{Mi ripeti la storia del guardiano?|flagstone_sentry_20|||||}{Ok, andrò a cercare il guardiano.|X|||||}}|}; -{flagstone_sentry_return2|Chi si rivede. Hai trovato l\'ex guardiano di Flagstone?||{{A proposito del guardiano...|flagstone_sentry_23|||||}{Ripetimi ancora la storia.|flagstone_sentry_3|||||}}|}; -{flagstone_sentry_40|Hai trovato la collana?? Bene, portamela.|{{0|flagstone|40|}}|{{N|flagstone_sentry_41|||||}}|}; -{flagstone_sentry_41|Ora, vediamo qui. Ah sì, è come pensavo. La collana contiene una parola d\'ordine.||{{N|flagstone_sentry_42|||||}}|}; -{flagstone_sentry_42|\'Ombra del sole\', è questa la parola. Dovresti avvicinarti al guardiano con questa frase.||{{Lascia|X|||||}}|}; -{flagstone_sentry_return3|Bentornato. Come va la ricerca della fonte dei non morti?||{{Nessun progresso ancora.|flagstone_sentry_43|||||}}|}; -{flagstone_sentry_43|Beh, continua a cercare. Ritorna da me se hai bisogno di consigli.|||}; -{flagstone_sentry_return4|Chi si rivede. Sembra che qualcosa sia accaduto dentro Flagstone che ha reso i non morti più deboli. Sono sicuro che devo ringraziare te per questo.|||}; -{narael|Grazie per avermi liberato da questo mostro.||{{N|narael_select|||||}}|}; -{narael_select|||{{|narael_9|flagstone:60||||}{|narael_1|||||}}|}; -{narael_1|Sono prigioniero qui da quasi un\'eternità.||{{N|narael_2|||||}}|}; -{narael_2|Oh, le cose che mi hanno fatto...Grazie mille per avermi liberato.||{{N|narael_3|||||}}|}; -{narael_3|Una volta ero un cittadino di Nor City e lavoravo agli scavi di Monte Galmore.||{{N|narael_4|||||}}|}; -{narael_4|Ma un giorno volli lasciare l\'incarico per tornare da mia moglie.||{{N|narael_5|||||}}|}; -{narael_5|L\'ufficiale in carica non me lo permise, così mi inviarono prigioniero a Flagstone per aver disertato i lavori.||{{N|narael_6|||||}}|}; -{narael_6|Se solo potessi vedere mia moglie ancora una volta. Ma non c\'è più vita in me...Non ho nemmeno le forze di lasciare questo posto.||{{N|narael_7|||||}}|}; -{narael_7|Credo che il mio destino sia di morire qui. Ma ora come un uomo libero, almeno.||{{N|narael_8|||||}}|}; -{narael_8|Ora lasciami al mio destino, non ho la forza di andarmene.|{{0|flagstone|60|}}|{{N|narael_9|||||}}|}; -{narael_9|Se cerchi mia moglie Taurum a Nor City, per favore dille che sto bene e che non l\'ho dimenticata .||{{Lo farò, addio.|X|||||}{Lo farò. Che l\'Ombra sia con te.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fallhaven_lumberjack|Ciao io sono Jakrar.||{{Sei un taglialegna?|fallhaven_lumberjack_2|||||}}|}; -{fallhaven_lumberjack_2|Si, sono il taglialegna de Fallhaven. Hai bisogno di qualche lavoretto ben fatto col legno? Lo posso fare tranquillamente.|||}; -{alaun|Ciao, io sono Alaun. Come posso aiutarti?||{{Hai visto mio fratello Andor? Mi somiglia molto.|alaun_2|||||}}|}; -{alaun_2|Stai cercando tuo fratello hai detto? Ti somiglia, hm.||{{N|alaun_3|||||}}|}; -{alaun_3|No, non ricordo nessuno che ti somiglia. Prova al villaggio di Crossglen a ovest di qui.|||}; -{fallhaven_farmer1|Buongiorno. Per favore non disturbatemi, ho del lavoro da fare.|||}; -{fallhaven_farmer2|Ciao, potresti toglierti di torno? Sto cercando di lavorare qui.|||}; -{khorand|Ehi tu, non pensare nemmeno di toccare quelle casse. Ti sto guardando!|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{keyarea_andor1|Dovresti parlare con Mikhail prima.|||}; -{note_lodars|Sul terreno trovi un pezzo di carta con un mucchio di strani simboli. Riesci a malapena a distinguere queste parole \'incontriamoci al nascondiglio di Lodar\', ma non sei sicuro di aver capito bene.|||}; -{keyarea_crossglen_smith|Audir grida: Hey tu, vattene! Non puoi stare qui.|||}; -{sign_crossglen_cave|Il simbolo sul muro è stato scalfito in molti punti. Non riesci a ricavare niente di comprensibile dalle scritte.|||}; -{sign_wild1|Ovest: Crossglen\nSud: Fallhaven|||}; -{sign_notdone|Questa mappa non è ancora pronta. Riprova alla prossima versione del gioco.|||}; -{sign_wild3|Ovest: Crossglen\nEst: Fallhaven|||}; -{sign_pitcave2|Gandir giace qui, dilaniato dalle mani del suo ex-amico Irogotu.|||}; -{sign_fallhaven1|Benvenuti a Fallhaven. Attenzione ai borseggiatori!|||}; -{key_fallhavenchurch|Non ti è permesso entrare nelle catacombe della chiesa di Fallhaven senza un\'autorizzazione.|||}; -{arcir_basement_tornpage|Vedi una pagina strappata di un libro intitolato \'Calomyran Secrets\'. Del sangue macchia i bordi e qualcuno ha scarabocchiato la parola \'Larcal\' con il sangue.|{{0|calomyran|20|}}||}; -{arcir_basement_statue|Elythara, signora della luce. Ci protegge dalla maledizione dell\'Ombra.|{{0|arcir|10|}}||}; -{fallhaven_tavern_room|Non hai il permesso di entrare nella stanza a meno che tu non l\'abbia affittata.|||}; -{fallhaven_derelict1|Bucus urla: Hey tu, fuori di qui!|||}; -{sign_wild6|Nord: Crossglen\nEst: Fallhaven\nSud: Stoutford|||}; -{sign_wild7|Ovest: Stoutford\nNord: Fallhaven|||}; -{sign_wild10|Nord: Fallhaven\nOvest: Stoutford|||}; -{flagstone_key_demon|Il demone irradia una forza che ti spinge indietro, rendendo impossibile avvicinarsi ad esso.|||}; -{flagstone_brokensteps|Noti che questa galleria sembra scavata dalle fondamenta di Flagstone. E\' probabilmente il lavoro di uno degli ex-prigionieri di Flagstone.|{{0|flagstone|20|}}||}; -{sign_wild12|Nord: Fallhaven\nEst: Vilegard\nEst: Nor City|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{thievesguild_thief_1|Ciao ragazzo.||{{Ciao. Sai dove posso trovare Umar?|thievesguild_thief_4|||||}{Che posto è questo?|thievesguild_thief_2|||||}}|}; -{thievesguild_thief_2|Questa è il salone della nostra gilda. Qui siamo al sicuro dalle guardie di Fallhaven.||{{N|thievesguild_thief_3|||||}}|}; -{thievesguild_thief_3|Possiamo fare quasi quello che vogliamo qui. Tutto quello che ci permette di fare Umar.||{{Ciao. Sai dove posso trovare Umar?|thievesguild_thief_4|||||}{Chi è Umar?|thievesguild_thief_5|||||}}|}; -{thievesguild_thief_4|Probabilmente è nella sua stanza laggiù. *indica*||{{Grazie.|X|||||}}|}; -{thievesguild_thief_5|Umar è il nostro capo. Lui decide le nostre regole e ci guida nelle decisioni morali.||{{Dove lo posso trovare?|thievesguild_thief_4|||||}}|}; -{thievesguild_cook_1|Ciao, vuoi qualcosa?||{{Hai l\'aspetto di un cuoco.|thievesguild_cook_2|||||}{Posso vedere il cibo che avete in vendita?|S|||||}{Farrik mi ha detto che puoi preparare un buon pasto per me.|thievesguild_select_1|farrik:20||||}}|}; -{thievesguild_cook_2|E\' vero. Qualcuno deve preparare il pasto a questi mascalzoni.||{{Quello ha un ottimo profumo.|thievesguild_cook_3|||||}{Quello stufato sembra disgustoso.|thievesguild_cook_4|||||}{Non importa, ciao.|X|||||}}|}; -{thievesguild_cook_3|Grazie. Questo stufato sta venendo bene. ||{{Vorrei comprarne un po\'.|S|||||}}|}; -{thievesguild_cook_4|Certo, lo so. Con ingredienti scadenti cosa puoi fare? Comunque, ci sazia.||{{Posso vedere il cibo che avete in vendita?|S|||||}}|}; -{thievesguild_cook_5|Oh sicuro. Hai intenzione di far addormentare qualcuno?||{{N|thievesguild_cook_6|||||}}|}; -{thievesguild_cook_6|Non ti preoccupare, non lo dirò a nessuno. Preparare cibo \'pesante\' è una delle mie specialità.||{{N|thievesguild_cook_7|||||}}|}; -{thievesguild_cook_7|Dammi un minuto per mescolartelo bene.||{{N|thievesguild_cook_8|||||}}|}; -{thievesguild_select_1|||{{|thievesguild_cook_10|farrik:25||||}{|thievesguild_cook_5|||||}}|}; -{thievesguild_cook_8|Ci sono. Dovrebbe funzionare. Tieni.|{{0|farrik|25|}{1|sleepingmead||}}|{{N|thievesguild_cook_9|||||}}|}; -{thievesguild_cook_10|Si, ti ho dato un infuso speciale.||{{N|thievesguild_cook_9|||||}}|}; -{thievesguild_cook_9|Stai attento non spandertelo sulle dita, quell\'intruglio è veramente forte.||{{Grazie.|X|||||}}|}; -{thievesguild_pickpocket_1|Come butta?||{{Chi sei?|thievesguild_pickpocket_2|||||}{Cos\'è questo posto?|thievesguild_thief_2|||||}}|}; -{thievesguild_pickpocket_2|Il mio vero nome non è importante. La gente mi chiama Dita rapide.||{{E come mai?|thievesguild_pickpocket_3|||||}}|}; -{thievesguild_pickpocket_3|Beh, ho una certa tendenza ... come dire ... ad acquisire certe cose facilmente.||{{N|thievesguild_pickpocket_4|||||}}|}; -{thievesguild_pickpocket_4|Cose in precedenza in possesso di altre persone.||{{Intendi tipo rubare?|thievesguild_pickpocket_5|||||}}|}; -{thievesguild_pickpocket_5|No no. Non lo chiamerei rubare. E\' più come un trasferimento di proprietà. Verso di me, s\'intende.||{{Questo mi suona proprio come rubare|thievesguild_pickpocket_6|||||}{Questo suona come una buona giustificazione|thievesguild_pickpocket_6|||||}}|}; -{thievesguild_pickpocket_6|Dopo tutto, siamo una gilda di ladri. Cosa ti aspettavi?|||}; -{thievesguild_troublemaker_1|Ciao. Ci siamo già visti da qualche parte?||{{No, sono sicuro che non ci siamo mai incontrati.|thievesguild_troublemaker_3|||||}{Cosa ci fai qua in giro?|thievesguild_troublemaker_2|||||}{Posso dare un\'occhiata alle provviste che hai disponibili?|S|||||}}|}; -{thievesguild_troublemaker_2|Tengo d\'occhio le provviste per la gilda.||{{Posso guardare cosa hai disponibile?|S|||||}}|}; -{thievesguild_troublemaker_3|No no, ti riconosco davvero.||{{Devi avermi confuso con qualcun altro.|thievesguild_troublemaker_4|||||}{Forse mi hai scambiato con mio fratello Andor.|thievesguild_troublemaker_5|||||}}|}; -{thievesguild_troublemaker_4|Si, potrebbe.||{{Hai visto mio fratello qui in giro? Mi assomiglia molto.|thievesguild_troublemaker_5|||||}}|}; -{thievesguild_troublemaker_5|Oh si, adesso mi ricordo. C\'era un ragazzo che correva qua intorno facendo un sacco di domande.||{{Sai cosa stava cercando o cosa stava facendo qui?|thievesguild_troublemaker_6|||||}}|}; -{thievesguild_troublemaker_6|No, non lo so. Mi occupo solo delle provviste.||{{Ok, grazie lo stesso. Arrivederci.|X|||||}{Bah, sei inutile. Addio.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{farrik_1|Ciao. Ho sentito che ci hai aiutati a trovare la chiave di Luthor. Ottimo lavoro, è stato veramente utile.||{{Chi sei tu?|farrik_2|||||}{Cosa mi puoi dire della gilda dei ladri?|farrik_4|||||}}|}; -{farrik_2|Sono Farrik, il fratello di Umar.||{{Cosa ci fai qua in giro?|farrik_3|||||}{Cosa mi puoi dire della gilda dei ladri?|farrik_4|||||}}|}; -{farrik_3|Principalmente mi occupo degli scambi con altre gilde e tengo in ordine quello che serve ai ladri per essere cosi efficienti.||{{Cosa mi puoi dire della gilda dei ladri?|farrik_4|||||}}|}; -{farrik_4|Cerchiamo di stare per conto nostro il più possibile e aiutiamo gli altri compagni ladri più che possiamo.||{{E\' successo qualcosa recentemente?|farrik_5|||||}}|}; -{farrik_5|A dire il vero c\'è stato qualcosa poche settimane fa. Uno dei membri della gilda è stato arrestato per violazione della proprietà.||{{N|farrik_6|||||}}|}; -{farrik_6|La guardia di pattuglia di Fallhaven ha iniziato ad essere veramente arrabbiata con noi ultimamente. Probabilmente perché siamo stati molto efficaci nelle nostre ultime missioni.||{{N|farrik_7|||||}}|}; -{farrik_7|La guardia di pattuglia quindi ha incrementato la sicurezza ultimamente arrivando ad arrestare uno dei nostri membri.||{{N|farrik_8|||||}}|}; -{farrik_8|E\' attualmente rinchiuso nella prigione qui a Fallhaven, in attesa del trasferimento a Feygard.||{{Che cosa ha fatto?|farrik_9|||||}}|}; -{farrik_9|Oh, niente di grave. Stava cercando di entrare nelle catacombe al di sotto della chiesa di Fallhaven.||{{N|farrik_10|||||}}|}; -{farrik_10|Ma ora che ci hai aiutato con questa missione, suppongo che non avremo più la necessità di andare là sotto.||{{N|farrik_11|||||}}|}; -{farrik_11|Penso di potermi fidare di te su questo segreto. Stiamo organizzando una missione stanotte per farlo evadere dalla prigione.|{{0|farrik|10|}}|{{Quelle guardie sembrano veramente irritanti.|farrik_13|||||}{Dopo tutto, se lui non aveva il permesso di scendere là sotto, le guardie erano nel giusto ad arrestarlo.|farrik_12|||||}}|}; -{farrik_12|Certo, lo immagino. Ma per l\'interesse della gilda, noi vorremmo avere un nostro amico libero piuttosto che imprigionato.||{{Forse potrei raccontare alle guardie che state organizzando l\'evasione?|farrik_15|||||}{Non preoccuparti, il tuo segreto per la sua liberazione è al sicuro.|farrik_14|||||}{[Bugia] Non preoccuparti, il tuo segreto per la sua liberazione è al sicuro.|farrik_14|||||}}|}; -{farrik_13|Oh si, lo sono. Alla gente di solito non piacciono, non solo a noi della gilda.||{{C\'è qualcosa che posso fare per aiutarti con le guardie?|farrik_16|||||}}|}; -{farrik_14|Grazie. Adesso per favore lasciami da solo.|||}; -{farrik_15|Fai come vuoi, non ti crederebbero comunque.|{{0|farrik|30|}}||}; -{farrik_16|Sei sicuro di voler importunare le guardie? Se arriva loro la voce che sei coinvolto, potresti passare un sacco di guai.||{{Nessun problema, so badare a me stesso!|farrik_18|||||}{Potrebbe esserci una ricompensa per questo in futuro. Ci sto.|farrik_18|||||}{Mah, ripensandoci, forse dovrei rimanere fuori da questa faccenda.|farrik_17|||||}}|}; -{farrik_17|Certo, sta a te decidere.||{{Buona fortuna con la vostra missione.|farrik_14|||||}{Forse potrei raccontare alle guardie che state organizzando l\'evasione?|farrik_15|||||}}|}; -{farrik_18|Bene.||{{N|farrik_19|||||}}|}; -{farrik_19|Ok, questo è il piano. Il capitano delle guardie ha un piccolo problema col bere.||{{N|farrik_20|||||}}|}; -{farrik_20|Se noi riuscissimo a fornirgli un po\' dell\'idromele che prepariamo, dovremmo essere in grado di far uscire di nascosto il nostro amico di notte, quando il capitano sarà collassato per la sbronza.||{{N|farrik_20a|||||}}|}; -{farrik_20a|Il nostro cuoco ci aiuterà a preparare un\'idromele speciale che lo metterà fuori uso per un po\'.||{{N|farrik_21|||||}}|}; -{farrik_21|Probabilmente avrà bisogno di un\'incoraggiamento a bere durante il servizio. Se questo dovesse fallire, potremmo provare a corromperlo.||{{N|farrik_22|||||}}|}; -{farrik_22|Come ti sembra l\'idea? Pensi di potercela fare?||{{Sicuro, sembra facile!|farrik_23|||||}{Suona un po\' pericoloso, penso di poter provare.|farrik_23|||||}{No, mi sembra proprio una pessima idea, siete pazzi.|farrik_17|||||}}|}; -{farrik_23|Bene. Riferiscimi quando sarai riuscito a far bere al capitano l\'idromele speciale preparato dal nostro cuoco.|{{0|farrik|20|}}|{{Lo farò|farrik_14|||||}}|}; -{farrik_return_1|Sono contento di rivederti amico mio. Come procede la tua missione per ubriacare il capitano delle guardie?||{{Non l\'ho ancora fatto, ma ci sto lavorando.|farrik_23|||||}{[Bugia] E\' fatto. Non dovrebbero esserci problemi per tutta la notte.|farrik_26|farrik:50||||}{E\' fatto. Non dovrebbero esserci problemi per tutta la notte.|farrik_24|farrik:60||||}}|}; -{farrik_select_1|||{{|farrik_return_2|farrik:70||||}{|farrik_return_2|farrik:80||||}{|farrik_select_2|||||}}|}; -{farrik_select_2|||{{|farrik_return_1|farrik:20||||}{|farrik_1|||||}}|}; -{farrik_24|Queste sono buone notizie! Ora dovremo essere in grado di far evadere il nostro amico dalla prigione stanotte. |{{0|farrik|70|}}|{{N|farrik_25|||||}}|}; -{farrik_25|Grazie molte per il tuo aiuto amico. Prendi queste monete come segno di riconoscimento.|{{1|gold200||}}|{{Grazie. Arrivederci.|X|||||}{Finalmente un po\' d\'oro.|X|||||}}|}; -{farrik_return_2|Grazie per il tuo aiuto con il capitano delle guardie.|||}; -{farrik_26|Come ci sei riuscito? Ben fatto. Hai tutta la mia riconoscenza, amico.|{{0|farrik|80|}}||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fallhaven_warden|Dichiari il motivo della sua presenza||{{Chi è quel prigioniero?|warden_prisoner_1|||||}{Ho sentito che siete un appassionato di idromele!|fallhaven_warden_1|farrik:20||||}{I ladri sanno progettando di far evadere il loro amico.|fallhaven_warden_20|farrik:30||||}}|}; -{warden_prisoner_1|Quel ladro? E\' stato colto sul fatto. Violazione di proprietà. Cercava di scendere nelle catacombe della chiesa di Fallhaven.||{{N|warden_prisoner_2|||||}}|}; -{warden_prisoner_2|Per fortuna lo abbiamo preso prima che potesse arrivare laggiù. Ora sarà d\'esempio a tutti gli altri ladri.||{{N|warden_prisoner_3|||||}}|}; -{warden_prisoner_3|Maledetti ladri. Ci dev\'essere un loro covo qui da qualche parte. Se solo potessi scoprire dove si nascondono.|||}; -{fallhaven_warden_1|Idromele? oh .. no, non lo faccio più. Chi te l\'ha detto?||{{N|fallhaven_warden_2|||||}}|}; -{fallhaven_warden_2|Ho smesso di bere anni fa!||{{Sembra un buon inizio, buona fortuna con questo vostro proposito.|X|||||}{Nemmeno un pochino?|fallhaven_warden_3|||||}}|}; -{fallhaven_warden_3|Uhm. *si schiarisce la gola* non dovrei.||{{Ne ho un po\' con me, se ne volete un sorso non fate complimenti.|fallhaven_warden_4|farrik:25|sleepingmead|1|0|}{Va bene, arrivederci.|X|||||}}|}; -{fallhaven_warden_4|Oh, dolce e fantastica bevanda. In realtà non dovrei bere in servizio.|{{0|farrik|32|}}|{{N|fallhaven_warden_5|||||}}|}; -{fallhaven_warden_5|Potrei prendere una multa per aver bevuto in servizio. Non credo di volerlo fare...||{{N|fallhaven_warden_6|||||}}|}; -{fallhaven_warden_6|Grazie per l\'idromele comunque, me lo godrò quando tornerò a casa più tardi.||{{Prego. Arrivederci.|X|||||}{E se qualcuno pagasse l\'ammontare dell\'ammenda?|fallhaven_warden_7|||||}}|}; -{fallhaven_warden_7|Oh, suona un po\'...strano. Inoltre dubito che qualcuno possa permettersi 450 monete d\'oro qui intorno. Comunque vorrei più denaro solo per il rischio.||{{Ho 500 monete proprio qui.|fallhaven_warden_9||gold|500|0|}{Ma voi sapete di desiderare l\'idromele, non è vero?|fallhaven_warden_8|||||}{Sì, sono d\'accordo. Questa cosa inizia a sembrare troppo sporca. Addio.|X|||||}}|}; -{fallhaven_warden_8|Oh, certo. Ora che me lo dici, di certo sarebbe buono.||{{Allora, se io le dessi 400 monete d\'oro, coprirebbero di certo l\'ansia di farsi un goccetto vero?|fallhaven_warden_9||gold|400|0|}{La cosa sta iniziando a diventare troppo rischiosa per me, vi lascio al vostro dovere.|X|||||}{Vado a prendere quei soldi per voi. Arrivederci.|X|||||}}|}; -{fallhaven_warden_9|Wow, tutti questi soldi? Sono sicuro che potrei pure cavarmela senza essere multato. A questo punto, avrei ottenuto sia i soldi che una bella bevuta di idromele allo stesso tempo.|{{0|farrik|60|}}|{{N|fallhaven_warden_10|||||}}|}; -{fallhaven_warden_10|Grazie ragazzo, sei davvero simpatico. Ora lasciami godere la mia bevanda.|||}; -{fallhaven_warden_select_1|||{{|fallhaven_warden_11|farrik:60||||}{|fallhaven_warden_35|farrik:90||||}{|fallhaven_warden_select_2|||||}}|}; -{fallhaven_warden_select_2|||{{|fallhaven_warden_30|farrik:50||||}{|fallhaven_warden_12|farrik:32||||}{|fallhaven_warden|||||}}|}; -{fallhaven_warden_11|Ciao ragazzo. Grazie per la bevuta! L\'ho bevuto tutto in una volta. Il sapore era un po\' diverso da come lo ricordavo ma sarà sicuramente dovuto al fatto che non ci sono più abituato.||{{Chi è quel prigioniero?|warden_prisoner_1|||||}}|}; -{fallhaven_warden_12|Ciao ragazzo, grazie per l\'idromele, non ho ancora avuto il piacere di berlo.||{{N|fallhaven_warden_5|||||}}|}; -{fallhaven_warden_20|Veramente, avrebbero il coraggio di andare contro la guardia di Fallhaven? Hai qualche dettaglio sul loro piano?||{{Ho sentito che stanno progettando la sua fuga stasera.|fallhaven_warden_21|||||}{No, vi stavo prendendo in giro. Non importa.|X|||||}{A pensarci bene, meglio non disturbare i ladri della gilda. Fate finta che io non abbia detto nulla.|X|||||}}|}; -{fallhaven_warden_21|Stasera? Grazie per l\'informazione. Faremo in modo di aumentare la sicurezza, ma in modo tale che non se ne accorgano.|{{0|farrik|40|}}|{{N|fallhaven_warden_22|||||}}|}; -{fallhaven_warden_22|Quando decideranno di farlo evadere saremo preparati. E forse riusciremo ad arrestare molti di quegli sporchi ladri.||{{N|fallhaven_warden_23|||||}}|}; -{fallhaven_warden_23|Grazie ancora per le informazioni. Anche se non sono sicuro di come tu ne sia venuto a conoscenza, apprezzo molto quello che mi stai dicendo.||{{N|fallhaven_warden_24|||||}}|}; -{fallhaven_warden_24|Voglio che tu faccia un\'ulteriore mossa e dica loro che avremo meno sicurezza per stasera, mentre di fatto l\'aumenteremo. In questo modo possiamo veramente essere pronti.||{{Certo, posso farlo.|fallhaven_warden_25|||||}}|}; -{fallhaven_warden_25|Bene, torna da me quando hai riferito loro il messaggio!|{{0|farrik|50|}}|{{ok.|X|||||}}|}; -{fallhaven_warden_30|Ciao amico mio. Hai detto a quei ladri che stasera abbasseremo il livello di sicurezza?||{{Sì l\'ho detto, non si aspetteranno una cosa del genere.|fallhaven_warden_31|||||}{No non ancora, ci sto lavorando.|fallhaven_warden_25|||||}}|}; -{fallhaven_warden_31|Grande. Grazie per l\'aiuto. Queste monete sono un segno dell\'apprezzamento mio e delle altre guardie.|{{0|farrik|90|}{1|gold200||}}|{{N|fallhaven_warden_36|||||}}|}; -{fallhaven_warden_35|Bentornato amico mio. Grazie per il tuo aiuto per aver trattato con i ladri.||{{N|fallhaven_warden_36|||||}}|}; -{fallhaven_warden_36|Farò in modo di dire alle altre guardie come ci hai aiutato qui a Fallhaven||{{Vi ringrazio. Arrivederci.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{umar_select_1|||{{|umar_return_1|andor:51||||}{|umar_novisit_1|||||}}|}; -{umar_return_1|Ben tornato amico mio.||{{Ciao.|umar_return_2|||||}{E\' stato un piacere conoscerti. Addio.|X|||||}}|}; -{umar_return_2|C\'è nient\'altro che possa fare per te?||{{Puoi ripetere quello che mi hai detto su Andor? |umar_5|||||}{E\' stato un piacere conoscerti. Addio.|X|||||}}|}; -{umar_novisit_1|Ciao, come va la tua ricerca?||{{Quale ricerca?|umar_2|||||}}|}; -{umar_2|L\'ultima volta che abbiamo parlato mi hai chiesto del nascondiglio di Lodar. L\'hai trovato?||{{Non ci siamo mai incontrati.|umar_3|||||}{Devi avermi confuso con mio fratello Andor, ci assomigliamo molto.|umar_4|||||}}|}; -{umar_3|Oh, devo averti confuso con qualcun altro.||{{Mio fratello Andor, ci assomigliamo molto.|umar_4|||||}}|}; -{umar_4|Davvero? Non importa, fai pure come se non avessi parlato.|{{0|andor|51|}}|{{Questo mi fa pensare che Andor è stato qui. Che cosa stava facendo?|umar_5|||||}}|}; -{umar_5|E\' venuto qui qualche tempo fa, facendo un sacco di domande su ciò che riguarda la gilda dei ladri, l\'Ombra e la guardia reale di Feygard.||{{N|umar_6|||||}}|}; -{umar_6|Noi della gilda dei ladri non ci interessiamo per nulla all\'Ombra, nè tanto meno ci preoccupiamo della guardia reale.||{{N|umar_7|||||}}|}; -{umar_7|Cerchiamo di stare al di sopra dei loro battibecchi e delle loro differenze. Possono combattere quanto vogliono, ma la gilda dei ladri sopravviverà ad entrambe le fazioni.||{{Quali battibecchi?|umar_conflict_1|||||}{Dimmi di più su ciò che ti ha chiesto Andor.|umar_andor_1|||||}}|}; -{umar_conflict_1|Dove sei stato nell\'ultimo paio d\'anni? Non sai nulla del conflitto sulla pozione d\'ossa?||{{N|umar_conflict_2|||||}}|}; -{umar_conflict_2|La guardia reale, guidata da Lord Geomyr di Feygard, sta cercando di combattere il recente aumento di attività illegali e quindi impone delle restrizioni maggiori su ciò che è permesso e ciò che non lo è.||{{N|umar_conflict_3|||||}}|}; -{umar_conflict_3|I sacerdoti dell\'Ombra, per lo più situati a Nor City, si oppongono alle nuove restrizioni, dicendo che limitano le strade che portano all\'Ombra.||{{N|umar_conflict_4|||||}}|}; -{umar_conflict_4|Gira voce che i sacerdoti dell\'Ombra stiano progettando di rovesciare Lord Geomyr e le sue forze.||{{N|umar_conflict_5|||||}}|}; -{umar_conflict_5|Si dice anche che i sacerdoti dell\'Ombra stiano ancora facendo i loro rituali, nonostante il divieto imposto.||{{N|umar_conflict_6|||||}}|}; -{umar_conflict_6|Lord Geomyr e la sua guardia reale, dall\'altro, stanno ancora facendo del loro meglio per governare nel modo che ritengono più giusto.||{{N|umar_conflict_7|||||}}|}; -{umar_conflict_7|Noi della gilda dei ladri cerchiamo di non farci coinvolgere da tutto questo. I nostri affari finora non ne hanno risentito.||{{Grazie per avermi informato.|umar_return_2|||||}{Qualunque cosa sia, non mi riguarda.|umar_return_2|||||}}|}; -{umar_andor_1|Ha domandato il mio aiuto e mi ha chiesto come trovare Lodar.||{{Chi è Lodar?|umar_andor_2|||||}}|}; -{umar_andor_2|Lodar? E\' uno dei nostri preparatori di pozioni. Può preparare ogni sorta di potenti sonniferi, pozioni di guarigione e cure.||{{N|umar_andor_3|||||}}|}; -{umar_andor_3|Ma la sua specialità sono i veleni. Il suo veleno può uccidere anche il più grande dei mostri.||{{E cosa voleva andor da lui ?|umar_andor_4|||||}}|}; -{umar_andor_4|Io non lo so. Forse era in cerca di qualche pozione.|{{0|andor|55|}}|{{Quindi, dove posso trovare questo Lodar?|umar_lodar_1|||||}}|}; -{umar_lodar_1|Non dovrei dirtelo. Come arrivare a lui è uno dei segreti della gilda. Il suo rifugio è raggiungibile solo dai nostri membri.||{{N|umar_lodar_2|||||}}|}; -{umar_lodar_2|Tuttavia, ho sentito che ci hai aiutati a trovare la chiave di Luthor. L\'abbiamo cercata per molto tempo.||{{N|umar_lodar_3|||||}}|}; -{umar_lodar_3|Ok, ti dirò come arrivare al nascondiglio di Lodar. Ma devi promettere di mantenere il segreto. Non dirlo a nessuno. Neppure a quelli che sembrano essere membri della gilda.||{{Ok, prometto di mantenere il segreto.|umar_lodar_4|||||}{Non posso darti alcuna garanzia, ma ci proverò.|umar_lodar_4|||||}}|}; -{umar_lodar_4|Bene. Non solo hai bisogno di trovare il luogo in sé, ma devi anche pronunciare le parole giuste per essere ammesso dal guardiano.||{{N|umar_lodar_5|||||}}|}; -{umar_lodar_5|L\'unico che capisce la lingua del custode è il vecchio Ogam a Vilegard.|{{0|lodar|10|}}|{{N|umar_lodar_6|||||}}|}; -{umar_lodar_6|Dovresti andare alla città di Vilegard per trovare Ogam. Lui può aiutati ad ottenere la parola d\'ordine per entrare nel nascondiglio di Lodar.|{{0|lodar|15|}}|{{Come arrivo a Vilegard?|umar_vilegard_1|||||}{Grazie, volevo chiederti un\'altra cosa.|umar_return_2|||||}{Grazie mille, ciao.|X|||||}}|}; -{umar_vilegard_1|Recati a sud-est di Fallhaven. Quando raggiungi la strada principale e la taverna fiasco schiumoso vai a sud. Non è molto lontano a sud-est di qui.||{{N|umar_return_2|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{kaori_start|||{{|kaori_default_1|kaori:20||||}{|kaori_return_1|kaori:10||||}{|kaori_1|||||}}|}; -{kaori_1|Non sei benvenuto qui, sei pregato di andartene.||{{Perché qui a Vilegard siete così diffidenti verso i forestieri?|kaori_2|||||}{Jolnor mi ha chiesto di parlare con te.|kaori_3|kaori:5||||}}|}; -{kaori_2|Non voglio parlare con te. Vai a parlare con Jolnor nella cappella se vuoi aiutarci.|{{0|vilegard|10|}}|{{Ok, ciao.|X|||||}{Ok, non dirlo a me.|X|||||}}|}; -{kaori_3|Hai fatto? Forse non sei così male come pensavo.||{{N|kaori_4|||||}}|}; -{kaori_4|Non sono ancora convinta che tu non sia una spia mandata da Feygard per provocare guai.||{{Cosa mi puoi raccontare su Vilegard?|kaori_trust_1|||||}{Ti posso assicurare che non sono una spia.|kaori_5|||||}{Feygard? Dove o che cosa è?|kaori_trust_1|||||}}|}; -{kaori_5|Hm. Forse no. Però potresti esserlo. No, non sono ancora sicura.||{{C\'è qualcosa che possa fare per guadagnare la tua fiducia?|kaori_10|||||}{[corrompi] Che ne diresti di 100 monete d\'oro? Potrebbero aiutarti a fidarti di me?|kaori_bribe|||||}}|}; -{kaori_trust_1|Non sono sicura di voler parlare di questo.||{{C\'è qualcosa che possa fare per guadagnare la tua fiducia?|kaori_10|||||}{[corrompi] Che ne diresti di 100 monete d\'oro? Potrebbero aiutarti a fidarti di me?|kaori_bribe|||||}}|}; -{kaori_bribe|Stai cercando di corrompermi ragazzo? Non funziona con me. A che servirebbe avere il denaro se in realtà tu fossi una spia?||{{C\'è qualcosa che possa fare per guadagnare la tua fiducia?|kaori_10|||||}}|}; -{kaori_10|Se davvero vuoi dimostrarmi di non essere una spia di Feygard, c\'è qualcosa che potresti fare per me.||{{N|kaori_11|||||}}|}; -{kaori_11|Fino a poco tempo fa, usavamo una speciale pozione di ossa per la guarigione. Questa è una pozione di guarigione molto potente e può essere utilizzata per molti scopi.||{{N|kaori_12|||||}}|}; -{kaori_12|Ma adesso la pozione è stata bandita da Lord Geomyr e non se ne trova quasi più.||{{N|kaori_13|||||}}|}; -{kaori_13|Mi piacerebbe averne un po\' di scorta. Se riesci a portarmi 10 pozioni di ossa potrei prendere in considerazione di iniziare a fidarmi di te.|{{0|kaori|10|}}|{{Ok, troverò la pozione per te.|kaori_14|||||}{No, se è vietata, molto probabilmente c\'è una buona ragione. Forse è meglio non usarla.|kaori_15|||||}{Ho già alcune pozioni d\'ossa con me, puoi averle.|kaori_20||bonemeal_potion|10|0|}}|}; -{kaori_return_1|Bentornato, hai trovato le 10 pozioni d\'ossa che ho chiesto?||{{No, le sto ancora cercando!|kaori_14|||||}{Sì, ti ho portato le pozioni!|kaori_20||bonemeal_potion|10|0|}{No, se è vietata, molto probabilmente c\'è una buona ragione. Forse è meglio non usarla.|kaori_15|||||}}|}; -{kaori_14|Beh, sbrigati, mi servono veramente e al più presto!|||}; -{kaori_15|Bene, ora però vattene!|||}; -{kaori_20|Bene, dammele!|{{0|kaori|20|}}|{{N|kaori_21|||||}}|}; -{kaori_21|Sì, sembra la pozione giusta. Grazie molte ragazzo. Mmmh, forse, sì. Forse sei un bravo ragazzo, che l\'Ombra vegli su di te.||{{N|kaori_default_1|||||}}|}; -{kaori_default_1|C\'è qualcosa di cui vuoi parlarmi?||{{Cosa sai dirmi su Vilegard?|kaori_vilegard_1|||||}{Perché a Vilegard tutti diffidano dei forestieri?|kaori_vilegard_2|||||}}|}; -{kaori_vilegard_1|Dovresti parlare con Erttu se vuoi sapere la storia di Vilegard. Vive da queste parti da più tempo di me.||{{Ok, lo farò.|kaori_default_1|||||}}|}; -{kaori_vilegard_2|In tutta la nostra storia ci sono persone arrivate qui a causare guai. Nel corso del tempo abbiamo imparato che tenere a noi stessi è la cosa migliore.||{{Mmh, sembra una buona idea.|kaori_vilegard_3|||||}{Non mi convince molto.|kaori_vilegard_3|||||}}|}; -{kaori_vilegard_3|In ogni caso, è per questo che siamo così sospettosi verso i forestieri.||{{Me ne sono accorto!|kaori_default_1|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{vilegard_villager_1|||{{|vilegard_villager_friend|vilegard:30||||}{|vilegard_villager_1_0|||||}}|}; -{vilegard_villager_1_0|Ciao. Chi sei? Non sei il benvenuto qui a Vilegard.||{{Hai visto mio fratello Andor da queste parti?|vilegard_villager_1_2|||||}}|}; -{vilegard_villager_1_2|No non l\'ho visto. E se anche fosse, perché dovrei dirlo a te?|||}; -{vilegard_villager_2|||{{|vilegard_villager_friend|vilegard:30||||}{|vilegard_villager_2_0|||||}}|}; -{vilegard_villager_2_0|Per l\'Ombra, sei un forestiero. Non vogliamo forestieri qui.||{{Perché avete tutti paura dei forestieri a Vilegard?|vilegard_villager_5_1|||||}}|}; -{vilegard_villager_3|||{{|vilegard_villager_friend|vilegard:30||||}{|vilegard_villager_3_0|||||}}|}; -{vilegard_villager_3_0|Questa è Vilegard. Non troverai nessun conforto qui, forestiero.|||}; -{vilegard_villager_4|||{{|vilegard_villager_friend|vilegard:30||||}{|vilegard_villager_4_0|||||}}|}; -{vilegard_villager_4_0|Assomigli ad un ragazzo che girava da queste parti, probabilmente ha causato dei guai, come tutti i forestieri.||{{Hai visto mio fratello Andor?|vilegard_villager_1_2|||||}{Non ho intenzione di causare guai.|vilegard_villager_4_2|||||}{Oh certo, ho intenzione di causare un sacco di guai.|vilegard_villager_4_3|||||}}|}; -{vilegard_villager_4_2|No? Io sono sicuro che lo farai. Tutti i forestieri causano guai.|||}; -{vilegard_villager_4_3|Sì, lo so. Ecco perché non ti vogliamo qua in torno. Dovresti lasciare Vilegard ora, finchè sei ancora in tempo.|||}; -{vilegard_villager_5|||{{|vilegard_villager_friend|vilegard:30||||}{|vilegard_villager_5_0|||||}}|}; -{vilegard_villager_5_0|Ciao straniero. Sembri perso, e ciò è cosa buona. Ora lascia Vilegard finché ti è possibile.||{{Perché a Vilegard tutti diffidano dei forestieri?|vilegard_villager_5_1|||||}}|}; -{vilegard_villager_5_1|Non mi fido di te. Potresti parlare con Jolnor, nella cappella, se hai bisogno di comprensione.|{{0|vilegard|10|}}||}; -{vilegard_villager_friend|Ciao. Ho sentito che ci hai aiutato. Puoi restare tutto il tempo che desideri.||{{Grazie. Hai visto mio fratello Andor qui intorno?|vilegard_villager_friend_1|||||}{Grazie, arrivederci.|X|||||}}|}; -{vilegard_villager_friend_1|tuo fratello? no, non ho visto nessuno che ti somiglia. ma comunque non faccio molto caso agli stranieri .||{{grazie, ciao.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{erttu_1|Ciao straniero. Non vogliamo forestieri qui a Vilegard, ma c\'è qualcosa di familiare in te.||{{N|erttu_default|||||}}|}; -{erttu_default|Che cosa vuoi sapere?||{{Perché siete tutti diffidenti verso i forestieri?|erttu_distrust_1|vilegard:10||||}{Puoi dirmi qualcosa su Vilegard?|erttu_vilegard_1|||||}}|}; -{erttu_distrust_1|La maggior parte di noi ha avuto grane fidandosi dei forestieri. Alla fine hanno sempre approfittato di noi!||{{N|erttu_distrust_2|||||}}|}; -{erttu_distrust_2|Ora siamo sospettosi e chiediamo agli stranieri di aiutarci prima di ottenere la nostra fiducia.||{{N|erttu_distrust_3|||||}}|}; -{erttu_distrust_3|Inoltre, molte persone ci guardano dall\'alto in basso per qualche ragione, soprattutto quegli snob degli abitanti di Feygard e delle città del nord.||{{Cosa puoi dirmi di Vilegard?|erttu_vilegard_1|||||}}|}; -{erttu_vilegard_1|Abbiamo quasi tutto quello che serve qui a Vilegard. Il fulcro del paese è la cappella.||{{N|erttu_vilegard_2|||||}}|}; -{erttu_vilegard_2|La cappella è il nostro luogo di culto per l\'Ombra, ed anche il posto per raccoglierci e parlare di grandi questioni riguardanti il villaggio.||{{N|erttu_vilegard_3|||||}}|}; -{erttu_vilegard_3|Oltre alla cappella abbiamo una taverna, un fabbro e un armaiolo.||{{Grazie per le informazioni. C\'era qualcos\'altro che volevo chiederti.|erttu_default|||||}{Grazie per l\'informazione, ciao.|X|||||}{Wow, niente di più? Mi chiedo che cosa sto facendo in un villaggio insignificante come questo.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{dunla_default|Sembri un tipo furbo, hai bisogno di qualche rifornimento?||{{Certo, fammi vedere quello che hai a disposizione.|S|||||}{Cosa puoi dirmi su di te?|dunla_1|||||}}|}; -{dunla_1|Io? Io non sono nessuno. Non mi hai nemmeno visto, nè tanto meno mi hai parlato.|||}; -{tharwyn_select|||{{|tharwyn_1|vilegard:30||||}{|vilegard_shop_notrust|||||}}|}; -{tharwyn_1|Ciao. Ho sentito che hai aiutato Jolnor nella cappella. Hai il mio rispetto, amico.||{{N|tharwyn_2|||||}}|}; -{tharwyn_2|Siediti dove vuoi. Cosa posso fare per te?||{{Fammi vedere cosa hai da mangiare.|S|||||}}|}; -{vilegard_tavern_drunk_1|Ohh, guarda, un ragazzo sperduto! Ecco, fatti un sorso di idromele!||{{No grazie.|X|||||}{Tieni a freno la lingua, ubriacone.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{jolnor_select_1|||{{|jolnor_default_3|vilegard:30||||}{|jolnor_default_2|vilegard:20||||}{|jolnor_default|||||}}|}; -{jolnor_default|Cammina con l\'Ombra figlio mio.||{{Cos\'è questo posto?|jolnor_chapel_1|||||}{Mi è stato detto di parlare con te e chiederti perché tutti a Vilegard sono così sospettosi verso i forestieri.|jolnor_suspicious_1|vilegard:10||||}}|}; -{jolnor_default_2|Cammina con l\'Ombra figlio mio.||{{Puoi spiegarmi di nuovo che cos\'è questo luogo?|jolnor_chapel_1|||||}{Parliamo delle missioni che devo compiere per guadagnarmi la vostra fiducia.|jolnor_quests_1|||||}{Ho bisogno di pozioni di guarigione, posso vedere cosa hai a disposizione?|jolnor_shop_1|||||}}|}; -{jolnor_default_3|Cammina con l\'Ombra amico mio.||{{Puoi spiegarmi di nuovo che cos\'è questo luogo?|jolnor_chapel_1|||||}{Ho bisogno di pozioni di guarigione, posso vedere cosa hai a disposizione?|jolnor_shop_1|||||}}|}; -{jolnor_chapel_1|Questo è il nostro luogo di culto per l\'Ombra. Lodiamo l\'Ombra in tutta la sua potenza e gloria.||{{Cosa puoi dirmi riguardo l\'Ombra?|jolnor_shadow_1|||||}{Ho bisogno di pozioni di guarigione, posso vedere cosa hai a disposizione?|jolnor_shop_1|||||}{Oh, come vuoi...basta che mi mostri la tua merce.|jolnor_shop_1|||||}}|}; -{jolnor_shadow_1|L\'Ombra ci protegge dai pericoli della notte. Ci mantiene al sicuro e ci protegge quando dormiamo.||{{N|jolnor_select_1|||||}}|}; -{jolnor_shop_1|||{{|S|vilegard:30||||}{|jolnor_shop_2|||||}}|}; -{jolnor_shop_2|Non mi fido ancora abbastanza per mercanteggiare con te.||{{Perché sei ancora sospettoso?|jolnor_suspicious_1|||||}{Molto bene.|jolnor_select_1|||||}}|}; -{jolnor_suspicious_1|Sospetto? No, non lo definirei sospetto. Preferisco chiamarlo \'Cautela\', facciamo molta attenzione al giorno d\'oggi.||{{N|jolnor_suspicious_2|||||}}|}; -{jolnor_suspicious_2|Per ottenere la nostra fiducia, un forestiero deve dimostrarci di non essere qui per creare problemi.||{{Sembra una buona idea. Ci sono un sacco di persone egoiste là fuori.|jolnor_suspicious_3|||||}{Sembra una cosa inutile. Perché non fidarsi delle persone a prescindere?|jolnor_suspicious_4|||||}}|}; -{jolnor_suspicious_3|Si, giusto. Vedo che hai colto nel segno, mi piace.||{{C\'è qualcosa che posso fare per guadagnare la vostra fiducia?|jolnor_gaintrust_select|||||}}|}; -{jolnor_suspicious_4|La storia ci insegna a diffidare dei forestieri. Perché dovremmo fidarci di te?||{{Che cosa posso fare per guadagnare la vostra fiducia?|jolnor_gaintrust_select|||||}{Forse hai ragione, probabilmente fai bene a non fidarti di me.|X|||||}}|}; -{jolnor_gaintrust_select|||{{|jolnor_gaintrust_return_2|vilegard:30||||}{|jolnor_gaintrust_return|vilegard:20||||}{|jolnor_gaintrust_1|||||}}|}; -{jolnor_gaintrust_return_2|Con il tuo aiuto, ti sei già guadagnato la nostra fiducia.||{{N|jolnor_default_3|||||}}|}; -{jolnor_gaintrust_return|Come ho detto prima, bisogna guadagnarsi la nostra fiducia.||{{N|jolnor_quests_1|||||}}|}; -{jolnor_gaintrust_1|In cambio di un piccolo favore potremmo pensare di fidarci di te. Ci sono tre persone importanti a Vilegard che ritengo tu debba aiutare.||{{N|jolnor_gaintrust_2|||||}}|}; -{jolnor_gaintrust_2|In primo luogo, vi è Kaori. Vive nella parte settentrionale di Vilegard. Chiedi a lei se ha bisogno di aiuto.|{{0|kaori|5|}}|{{Ok, parlerò con Kaori, ci vado subito.|jolnor_gaintrust_3|||||}}|}; -{jolnor_gaintrust_3|Poi c\'è Wrye. Anche lei vive nella parte settentrionale di Vilegard. Molte persone chiedono la sua consulenza.||{{N|jolnor_gaintrust_4|||||}}|}; -{jolnor_gaintrust_4|Recentemente ha perso suo figlio in modo tragico. Se riesci a guadagnare la sua fiducia, avrai un forte alleato.|{{0|wrye|10|}}|{{Parlerò con Wrye.|jolnor_gaintrust_5|||||}}|}; -{jolnor_gaintrust_5|E ultimo ma non meno importante, anch\'io ho un favore da chiederti.||{{Che genere di favore?|jolnor_gaintrust_6|||||}}|}; -{jolnor_gaintrust_6|A nord di Vilegard c\'è una taverna chiamata Fiasco Schiumoso. Questa taverna è a mio parere una stazione di guardia di Feygard.||{{N|jolnor_gaintrust_7|||||}}|}; -{jolnor_gaintrust_7|La taverna è quasi sempre visitata dalla guardia reale di Lord Geomyr di Feygard.||{{N|jolnor_gaintrust_8|||||}}|}; -{jolnor_gaintrust_8|Probabilmente stanno lì per spiarci, dato che siamo seguaci dell\'Ombra. Lord Geomyr cerca sempre di renderci la vita difficile.||{{Sì, sembrano dei fomentatori di disordini.|jolnor_gaintrust_9|||||}{Sono sicuro che hanno i loro motivi per fare quello che fanno.|jolnor_gaintrust_10|||||}}|}; -{jolnor_gaintrust_9|Infatti. Sono proprio dei seccatori.||{{Che cosa vuoi che faccia?|jolnor_gaintrust_11|||||}}|}; -{jolnor_gaintrust_10|Sì, le loro ragioni sono quelle di renderci la vita difficile.||{{Che cosa vuoi che faccia?|jolnor_gaintrust_11|||||}}|}; -{jolnor_gaintrust_11|I miei informatori dicono che c\'è una guardia di stanza all\'esterno della taverna per controllare eventuali pericoli.||{{N|jolnor_gaintrust_12|||||}}|}; -{jolnor_gaintrust_12|Voglio che la guardia scompaia. Fai come meglio credi.|{{0|jolnor|10|}}|{{Non sono sicuro che dare fastidio alle guardie di pattuglia sia una buona idea. Questo potrebbe davvero mettermi nei guai.|jolnor_gaintrust_13|||||}{Per l\'Ombra, farò ciò che mi hai chiesto.|jolnor_gaintrust_14|||||}{Ok, spero che questo sia vantaggioso per me.|jolnor_gaintrust_14|||||}}|}; -{jolnor_gaintrust_13|A te la scelta. Puoi almeno andare a vedere alla taverna se trovi nulla di sospetto?||{{Forse....|jolnor_gaintrust_15|||||}}|}; -{jolnor_gaintrust_14|Bene. Torna da me quando hai finito.||{{N|jolnor_gaintrust_15|||||}}|}; -{jolnor_gaintrust_15|Quindi, per acquistare la nostra fiducia, ti suggerisco di aiutare Kaori, Wrye e me.|{{0|vilegard|20|}}|{{Grazie per le informazioni. Tornerò quando avrò qualcosa da riferire.|X|||||}}|}; -{jolnor_quests_1|Ti suggerirei di aiutare Kaori, Wrye e me per guadagnarti la nostra fiducia.||{{Riguardo la guardia appostata fuori dalla taverna...|jolnor_guard_select|||||}{A proposito di questi compiti...|jolnor_quests_2|||||}{Non importa, torniamo agli altri argomenti!|jolnor_select_1|||||}}|}; -{jolnor_quests_2|Sì, qualcosa su di loro?||{{Mi ripeteresti cosa dovrei fare?|jolnor_suspicious_2|||||}{Ho svolto tutti i compiti che mi hai chiesto di fare.|jolnor_quests_select_1|jolnor:30||||}{Non importa, torniamo agli altri argomenti!|jolnor_select_1|||||}}|}; -{jolnor_guard_select|||{{|jolnor_guard_completed|jolnor:30||||}{|jolnor_guard_1|||||}}|}; -{jolnor_guard_1|Si, riguardo a lui, hai trovato il modo di farlo sparire?||{{Si, lascerà il suo posto alla fine del turno di lavoro.|jolnor_guard_2|jolnor:20||||}{Si, se n\'è andato.|jolnor_guard_2||ffguard_qitem|1|0|}{No, ci sto ancora lavorando.|jolnor_gaintrust_14|||||}}|}; -{jolnor_guard_completed|Si, l\'hai fatto sparire prima, grazie per l\'aiuto.||{{N|jolnor_quests_1|||||}}|}; -{jolnor_guard_2|Molto bene. Grazie per il tuo aiuto.|{{0|jolnor|30|}}|{{Nessun problema. Torniamo alle altre attività di cui abbiamo parlato.|jolnor_quests_2|||||}}|}; -{jolnor_quests_select_1|||{{|jolnor_quests_select_2|kaori:20||||}{|jolnor_quests_kaori_1|||||}}|}; -{jolnor_quests_kaori_1|Hai bisogno di aiuto per completare la missione di Kaori?||{{N|jolnor_select_1|||||}}|}; -{jolnor_quests_select_2|||{{|jolnor_quests_completed|wrye:90||||}{|jolnor_quests_wrye_1|||||}}|}; -{jolnor_quests_wrye_1|Hai bisogno di aiuto per completare la missione di Wrye?||{{N|jolnor_select_1|||||}}|}; -{jolnor_quests_completed|Bene, ci hai aiutati tutti e tre.|{{0|vilegard|30|}}|{{N|jolnor_quests_completed_2|||||}}|}; -{jolnor_quests_completed_2|Ho testato la tua lealtà, ora siamo pronti a fidarci di te.||{{N|jolnor_quests_completed_3|||||}}|}; -{jolnor_quests_completed_3|Hai la nostra gratitudine, amico. Troverai sempre rifugio qui a Vilegard. Ti diamo il benvenuto nel nostro paese.||{{N|jolnor_select_1|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{alynndir_1|Ciao ragazzo, benvenuto nella mia baracca.||{{Cosa fai qui?|alynndir_2|||||}{Puoi darmi qualche informazione sui dintorni?|alynndir_3|||||}}|}; -{alynndir_2|Principalmente io commercio con i viaggiatori sulla strada principale per Nor City.||{{Hai qualcosa da vendere?|S|||||}{Puoi darmi informazioni sulle zone qui intorno?|alynndir_3|||||}}|}; -{alynndir_3|Oh, non c\'è molto da dire. A ovest c\'è Vilegard e ad est Brightport.||{{N|alynndir_4|||||}}|}; -{alynndir_4|A nord c\'è solo foresta, però qui accadono cose strane ultimamente.||{{N|alynndir_5|||||}}|}; -{alynndir_5|Ho sentito urla terribili provenire dalla foresta a nord-ovest.||{{N|alynndir_6|||||}}|}; -{alynndir_6|Mi chiedo cosa ci sia lassù.||{{Ciao.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{vilegard_armorer_select|||{{|vilegard_armorer_1|vilegard:30||||}{|vilegard_shop_notrust|||||}}|}; -{vilegard_armorer_1|Buongiorno, vuoi dare un\'occhiata alle mie armature?.||{{OK, fammi vedere i tuoi articoli.|S|||||}}|}; -{vilegard_smith_select|||{{|vilegard_smith_1|feygard_shipment:56||||}{|vilegard_smith_fg_2|feygard_shipment:55||||}{|vilegard_smith_1|vilegard:30||||}{|vilegard_shop_notrust|||||}}|}; -{vilegard_smith_1|Ciao ragazzo, ho sentito dire che ci hai dato una bella mano qui a Vilegard. Come posso aiutarti?||{{Posso vedere quali oggetti hai in vendita?|S|||||}{I have a shipment of Feygard items for you.|vilegard_smith_fg_1|feygard_shipment:35|fg_ironsword|10|0|}}|}; -{vilegard_shop_notrust|Mmmm, sei un forestiero... non ci piacciono i forestieri, sei pregato di andartene.||{{Perché a Vilegard siete tutti così sospettosi verso i forestieri?|vilegard_shop_notrust_2|||||}{Posso vedere gli oggetti che hai in vendita?|vilegard_shop_notrust_2|||||}}|}; -{vilegard_shop_notrust_2|Non mi fido di te, dovresti andare prima a parlare con Jolnor nella cappella, se vuoi ottenere la nostra fiducia!|{{0|vilegard|10|}}||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{ogam_1|Fede. Potere. Sforzo.||{{Cosa?|ogam_2|||||}{Mi hanno detto di parlare con te.|ogam_2|lodar:15||||}}|}; -{ogam_2|Indietro è il fardello alto e basso||{{Cosa?|ogam_3|||||}{Continua, ti prego.|ogam_3|||||}{Sveglia? Umar della Gilda dei ladri di Fallhaven mi ha mandato a parlare con te.|ogam_3|lodar:15||||}}|}; -{ogam_3|Nascondersi nell\'Ombra.||{{N|ogam_4|||||}}|}; -{ogam_4|Allo stesso modo, nel corpo e nella mente.||{{Hai intenzione di dire qualcosa di sensato?|ogam_5|||||}{Cosa vuoi dire?|ogam_5|||||}}|}; -{ogam_5|L\'ordinato e il caotico.||{{Ci sei? Sai come posso raggiungere il rifugio di Lodar?|ogam_lodar_1|lodar:15||||}{Non capisco.|ogam_6|||||}}|}; -{ogam_lodar_1|Lodar? Chiaro, fremente, ferito.||{{N|ogam_6|||||}}|}; -{ogam_6|Si, la vera forma. Osserva.||{{N|ogam_7|||||}}|}; -{ogam_7|Nascondersi nell\'Ombra.||{{L\'Ombra ?|ogam_4|||||}{Ma ascolti quello che dico?|ogam_4|||||}{Sveglia? Sai come posso raggiungere il rifugio di Lodar?|ogam_lodar_2|lodar:15||||}}|}; -{ogam_lodar_2|Lodar, a metà strada fra l\'Ombra e la luce. Formazioni rocciose.||{{OK, a metà strada tra due luoghi. Ci sono delle rocce?|ogam_lodar_3|||||}{Uh. Potresti ripetere?|ogam_lodar_3|||||}}|}; -{ogam_lodar_3|Guardiano. Bagliore dell\'Ombra.|{{0|lodar|20|}}|{{Bagliore dell\'Ombra? Sono queste le parole da dire al guardiano?|ogam_lodar_4|||||}{\'Bagliore dell\'Ombra\'? Ho già sentito queste parole da qualche parte...|ogam_lodar_4|bonemeal:30||||}}|}; -{ogam_lodar_4|Rovesciarsi, contorcersi, cancellare la forma.||{{Cosa significa?|ogam_1|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{ff_cook_1|Ciao, Hai bisogno di aiuto dalla cucina?||{{Certo, fammi vedere il cibo che hai in vendita.|ff_cook_3|||||}{Che odore orribile, ma cosa stai cucinando?|ff_cook_2|||||}{Questo odore è sublime, cosa stai cucinando?|ff_cook_2|||||}}|}; -{ff_cook_2|Oh, questo? Dovrebbe essere uno stufato di cane rabbioso. Credo abbia bisogno di cuocere ancora un po\'.||{{Sono curioso di assaggiarlo quando è pronto, per ora buon lavoro.|X|||||}{Che schifo, sembra terribile. Si può veramente mangiare una cosa del genere? Ciao.|X|||||}}|}; -{ff_cook_3|No, purtroppo non ho alcun cibo da vendere. Vai a parlare con Torilo di là se vuoi qualche bevanda o cibo già pronto.|||}; -{torilo_1|Benvenuto nella taverna Fiasco Schiumoso, accogliamo tutti i viaggiatori qui.||{{Grazie, sei il capo di questo posto?|torilo_2|||||}{Hai visto un ragazzo chiamato Rincel qui intorno ultimamente?|torilo_rincel_1|wrye:41||||}}|}; -{torilo_2|Io sono Torilo, il titolare di questa struttura. Puoi sederti nel posto che preferisci.||{{Posso vedere che cibi e bevande hai a disposizione?|torilo_shop_1|||||}{Posso riposare da qualche parte?|torilo_rest_select|||||}{Ma quelle guardie che urlano e gridano così tanto, fanno sempre così?|torilo_guards_1|||||}}|}; -{torilo_default|Desideri qualcos\'altro?||{{Posso vedere che cibi e bevande hai a disposizione?|torilo_shop_1|||||}{Ma quelle guardie che urlano e gridano così tanto, fanno sempre così?|torilo_guards_1|||||}{Hai visto un ragazzo chiamato Rincel qui intorno ultimamente?|torilo_rincel_1|wrye:41||||}}|}; -{torilo_shop_1|Certamente, abbiamo una vasta scelta fra cibi e bevande!||{{N|S|||||}}|}; -{torilo_rest_select|||{{|torilo_rest_1|nondisplay:10||||}{|torilo_rest_3|||||}}|}; -{torilo_rest_1|Certo, hai già affittato la stanza sul retro.||{{N|torilo_rest_2|||||}}|}; -{torilo_rest_2|Ti prego, sentiti libero di usarla come più ti aggrada. Spero solo tu riesca a dormire con tutte queste guardie che cantano a squarciagola le loro canzoni.||{{Grazie.|torilo_default|||||}}|}; -{torilo_rest_3|Oh, certo. Abbiamo una stanza molto confortevole sul retro, qui alla taverna Fiasco Schiumoso.||{{N|torilo_rest_4|||||}}|}; -{torilo_rest_4|Disponibile per sole 250 monete d\'oro. Poi puoi restare quanto vuoi!||{{250 monete d\'oro? Certo, non sono niente per me, ecco, tieni.|torilo_rest_6||gold|250|0|}{250 monete d\'oro sono molte, ma credo che ne valga la pena. Ecco, tieni.|torilo_rest_6||gold|250|0|}{Acc... è un po troppo per me.|torilo_rest_5|||||}}|}; -{torilo_rest_5|Oh come vuoi, sei tu che ci perdi.||{{N|torilo_default|||||}}|}; -{torilo_rest_6|Grazie, la stanza ora è affittata per te.|{{0|nondisplay|10|}}|{{N|torilo_rest_2|||||}}|}; -{torilo_rincel_1|Rincel? No, non che io ricordi. In realtà, non vengono molti bambini qui. *risatina*.||{{N|torilo_default|||||}}|}; -{torilo_guards_1|Sigh, sì. Quelle guardie sono qua da parecchio tempo.||{{N|torilo_guards_2|||||}}|}; -{torilo_guards_2|Sembrano essere alla ricerca di qualcosa o qualcuno, ma non so chi o cosa.||{{N|torilo_guards_3|||||}}|}; -{torilo_guards_3|Spero che l\'Ombra vegli su di noi, in modo che non succeda nulla di male alla taverna Fiasco Schiumoso a causa loro.||{{N|torilo_default|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{ambelie_1|Oh cielo, un plebeo. Stai lontano da me. Potresti attaccarmi qualcosa.||{{Chi sei tu?|ambelie_2|||||}{Cosa fa una nobildonna come te in un posto come questo?|ambelie_5|||||}{Sarei ben felice di allontanarmi da una snob come te.|X|||||}}|}; -{ambelie_2|Sono Ambelie della casata di Laumwill di Feygard. Sono sicura che avrai sentito parlare di me e della mia casata.||{{Oh, sì...uhm...Casata di Laumwill di Feygard. Naturalmente.|ambelie_3|||||}{Non ho mai sentito parlare di te nè della tua casata.|ambelie_4|||||}{Dov\'è Feygard?|ambelie_3|||||}}|}; -{ambelie_3|Feygard, la grande città della pace. Sicuramente la conosci. A Nord-Ovest del nostro grande paese.||{{Cosa fa una nobildonna come te in un posto come questo?|ambelie_5|||||}{No, non ne ho mai sentito parlare.|ambelie_4|||||}}|}; -{ambelie_4|Pfft. Questo dimostra che tutto ciò che ho sentito su di voi selvaggi del sud è vero, così ignoranti...|||}; -{ambelie_5|Io, Ambelie della casata di Laumwill di Feygard, sono in gita verso Nor City, la città a Sud.||{{N|ambelie_6|||||}}|}; -{ambelie_6|Sono in gita per constatare se è vero tutto quello di cui ho sentito parlare. Se veramente Nor City può essere paragonata al fascino della grande città di Feygard.||{{Nor City, e dov\'è?|ambelie_7|||||}{Se vi piace così tanto Feygard, perché ve ne siete andata?|ambelie_9|||||}}|}; -{ambelie_7|Non sai nemmeno di Nor City? Terrò conto che i selvaggi di qui non hanno nemmeno mai sentito parlare della città.||{{N|ambelie_8|||||}}|}; -{ambelie_8|Sto cominciando a essere sempre più convinta che Nor City non sarà mai, nemmeno nei miei sogni più azzardati, paragonabile alla grandiosa Feygard.||{{Buona fortuna con la tua escursione.|ambelie_10|||||}}|}; -{ambelie_9|Tutte le nobildonne di Feygard continuano a parlare della misteriosa Ombra di Nor City. Voglio vederla di persona.||{{Nor City, e dov\'è?|ambelie_7|||||}{Buona fortuna con la tua escursione.|ambelie_10|||||}}|}; -{ambelie_10|Grazie, ora però lasciami sola, prima che qualcuno mi veda a parlare con un plebeo.||{{Plebeo? Stai cercando di insultarmi? Addio.|X|||||}{Probabilmente non riusciresti nemmeno a sopravvivere a una vespa della foresta.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{ff_guard_1|Ha ha, diglielo tu Garl!\n\n*rutta*||{{N|ff_guard_2|||||}}|}; -{ff_guard_2|Cantare, bere, combattere! Tutti coloro che si opporranno a Feygard cadranno!||{{N|ff_guard_3|||||}}|}; -{ff_guard_3|Noi rimarremo in piedi. Feygard, città della pace!||{{Farei meglio ad andarmene!|X|||||}{Feygard, dove si trova?|ff_guard_4|||||}{Hai visto un ragazzo di nome Rincel qui intorno di recente?|ff_guard_rincel_1|wrye:41||||}}|}; -{ff_guard_4|Cosa, non hai mai sentito parlare di Feygard, ragazzo? Basta seguire la strada verso nord-ovest e vedrai la grande città di Feygard innalzarsi sopra le cime degli alberi.||{{Grazie, ciao.|X|||||}}|}; -{ff_guard_rincel_1|Un ragazzo? A parte te non ho visto altri ragazzi qua in giro!||{{N|ff_guard_rincel_2|||||}}|}; -{ff_guard_rincel_2|Prova a chiedere al capitano, laggiù! E\' qui da più tempo di noi!||{{Grazie, ciao.|X|||||}{Grazie, che l\'Ombra sia con te.|ff_guard_shadow_1|||||}}|}; -{ff_guard_shadow_1|Non nominare quella maledetta ombra qua dentro, ragazzo. Non vogliamo nulla di tutto questo. Ora vattene.|||}; -{ff_captain_1|Ti sei perso, figliolo? Questo non è posto per un ragazzo come te.||{{Chi sei tu?|ff_captain_vg_items_1|feygard_shipment:56|fg_ironsword_d|10|0|}{Hai visto un ragazzo di nome Rincel qui intorno di recente?|ff_captain_fg_items_1|feygard_shipment:25|fg_ironsword|10|0|}{Who are you?|ff_captain_2|||||}{Have you seen a boy called Rincel around here recently?|ff_captain_rincel_1|wrye:41||||}}|}; -{ff_captain_2|Io sono il capitano di questa pattuglia di guardia. Veniamo dalla grande città di Feygard.||{{Feygard? E dov\'è?|ff_captain_4|||||}{Cosa fate da queste parti?|ff_captain_3|||||}}|}; -{ff_captain_3|Stiamo percorrendo la strada principale per assicurarsi che i mercanti e i viaggiatori siano al sicuro. E manteniamo la pace qui intorno.||{{Hai menzionato Feygard. Dov\'è?|ff_captain_4|||||}}|}; -{ff_captain_4|La grandiosa città di Feygard è il più grande spettacolo che potrai mai vedere. Segui la strada a nord-ovest.||{{Grazie, che l\'Ombra sia con te.|ff_captain_shadow_1|||||}{Grazie, ciao.|X|||||}}|}; -{ff_captain_rincel_1|C\'era un ragazzo in giro qualche tempo fa.||{{N|ff_captain_rincel_2|||||}}|}; -{ff_captain_rincel_2|Non ho mai parlato con lui, non so se è quello che stai cercando.||{{Ok, potrebbe essere una traccia che vale la pena verificare.|ff_captain_rincel_3|||||}}|}; -{ff_captain_rincel_3|Ho notato che andava verso Ovest, era appena uscito dalla taverna Fiasco Schiumoso.|{{0|wrye|42|}}|{{Ovest. Capito. Grazie per le informazioni.|ff_captain_rincel_4|||||}}|}; -{ff_captain_rincel_4|Sempre felice di aiutare. Qualsiasi cosa per la gloria di Feygard.||{{Che l\'Ombra sia con te.|ff_captain_shadow_1|||||}{Ciao.|X|||||}}|}; -{ff_captain_shadow_1|L\'Ombra? Non dirmi che credi in quella roba. Per la mia esperienza, solo i piantagrane parlano dell\'Ombra.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{ff_outsideguard_select|||{{|ff_outsideguard_trouble_24|jolnor:20||||}{|ff_outsideguard_1|||||}}|}; -{ff_outsideguard_1|Ciao. Sei sicuro di dover venire qui? Questa è una taverna, sai. Il \'Fiasco Schiumoso\' per essere precisi.||{{Chi sei tu?|ff_outsideguard_2|||||}}|}; -{ff_outsideguard_2|Sono un membro della pattuglia di guardie di Feygard.||{{Feygard, dov\'è?|ff_outsideguard_3|||||}{Cosa ci fai da queste parti?|ff_outsideguard_3|||||}}|}; -{ff_outsideguard_3|Vai a parlare con il capitano, io devo stare di guardia qui!||{{Ok. Ciao.|X|||||}{Perché devi stare di guardia fuori di una taverna?|ff_outsideguard_trouble_1|jolnor:10||||}}|}; -{ff_outsideguard_trouble_1|Davvero, non posso parlare con te, potrei finire nei guai.||{{Ok. Non ti disturberò più, che l\'Ombra sia con te!|ff_outsideguard_shadow_1|||||}{Ok. non ti disturberò più, ciao.|X|||||}{Quali guai?|ff_outsideguard_trouble_2|||||}}|}; -{ff_outsideguard_trouble_2|No davvero, il capitano potrebbe vedermi. Devo essere vigile sul mio posto in ogni momento *sigh*||{{Ok. Non ti disturberò più, che l\'Ombra sia con te.|ff_outsideguard_shadow_1|||||}{Ok. Non ti disturberò ulteriormente, Ciao.|X|||||}{Ti piace il tuo lavoro qui?|ff_outsideguard_trouble_3|||||}}|}; -{ff_outsideguard_trouble_3|Il mio lavoro? Credo che la guardia reale sia valida, voglio dire...Feygard è un posto molto bello in cui vivere.||{{N|ff_outsideguard_trouble_4|||||}}|}; -{ff_outsideguard_trouble_4|Diciamo che fare la guardia qua in mezzo al nulla non è proprio quello che intendevo fare...||{{Ci credo. Questo posto è davvero noioso.|ff_outsideguard_trouble_5|||||}{Ti stancherai molto a stare qui sempre in piedi.|ff_outsideguard_trouble_5|||||}}|}; -{ff_outsideguard_trouble_5|Si, molto. Preferirei essere dentro alla taverna a bere con gli altri e il capitano. Ma perché devo stare qui?||{{Almeno l\'Ombra veglia su di te.|ff_outsideguard_shadow_1|||||}{Perché non te ne vai se non è quello che vuoi fare?|ff_outsideguard_trouble_7|||||}{La grande causa della guardia reale, ovvero mantenere la pace, sarà ben ricompensata a lungo termine.|ff_outsideguard_trouble_6|||||}}|}; -{ff_outsideguard_trouble_6|Sì, hai ragione, naturalmente. Il nostro dovere è quello di mantenere la pace.||{{Si, l\'Ombra non guarda con favore chi disturba la pace.|ff_outsideguard_shadow_1|||||}{Sì. I piantagrane dovrebbero essere puniti.|ff_outsideguard_trouble_8|||||}}|}; -{ff_outsideguard_trouble_7|No, io sono fedele alla causa di Feygard. Se me ne andassi, dovrei anche tradire la mia fedeltà.||{{Cosa significa questo se non sei soddisfatto di ciò che fai ?|ff_outsideguard_trouble_9|||||}{Sì, mi sembra giusto. Feygard sembra un bel posto da quello che ho sentito.|ff_outsideguard_trouble_6|||||}}|}; -{ff_outsideguard_trouble_8|Bene. Mi piaci ragazzo. Potrei mettere una buona parola per te in caserma quando torneremo a Feygard, se vuoi.||{{Certo, mi sembra una buona idea.|ff_outsideguard_trouble_20|||||}{No grazie, ho già tanto da fare...|ff_outsideguard_trouble_20|||||}}|}; -{ff_outsideguard_trouble_9|Beh, io sono convinto che si debbano seguire le leggi stabilite dai nostri governanti. Se non obbediamo alle leggi, che cosa ci rimane?||{{N|ff_outsideguard_trouble_10|||||}}|}; -{ff_outsideguard_trouble_10|Caos. Nessun ordine.\n\nNo, io preferisco il modo lecito di Feygard. La mia fedeltà è salda.||{{Si, ha senso quello che dici, le leggi sono fatte per essere rispettate.|ff_outsideguard_trouble_8|||||}{Non sono d\'accordo. Dobbiamo seguire il nostro cuore, anche se questo va contro le regole.|ff_outsideguard_trouble_12|||||}}|}; -{ff_outsideguard_trouble_20|C\'era qualcos\'altro che volevi?||{{Mi stavo chiedendo il motivo per cui fai la guardia qui.|ff_outsideguard_trouble_21|||||}}|}; -{ff_outsideguard_trouble_12|Questo mi disturba. Forse ci vedremo di nuovo in futuro. Ma la nostra prossima discussione potrebbe non essere piacevole.|||}; -{ff_outsideguard_trouble_21|Giusto, stavamo divagando. Come ho detto, avrei preferito essere dentro seduto accanto al fuoco.||{{Potrei prendere il tuo posto se vuoi entrare.|ff_outsideguard_trouble_23|||||}{Che sfortuna, pensare che tu sia qui mentre i tuoi compagni e il capitano sono dentro.|ff_outsideguard_trouble_22|||||}}|}; -{ff_outsideguard_trouble_22|Si, è la mia solita fortuna.|||}; -{ff_outsideguard_trouble_23|Davvero? Sarebbe fantastico, almeno potrei prendere qualcosa da bere e scaldarmi un po\' vicino al fuoco.||{{N|ff_outsideguard_trouble_24|||||}}|}; -{ff_outsideguard_trouble_24|OK, allora entro un attimo. Stai qui a fare la guardia al posto mio finché non torno?|{{0|jolnor|20|}}|{{Certo, lo farò.|ff_outsideguard_trouble_25|||||}{[Bugia] Certo, lo farò.|ff_outsideguard_trouble_25|||||}}|}; -{ff_outsideguard_trouble_25|Grazie mille, sei un amico.|||}; -{ff_outsideguard_shadow_1|L\'Ombra? Curioso che tu l\'abbia menzionata. Spiegati!||{{Non volevo dire niente. Anzi, non ho detto niente.|ff_outsideguard_shadow_2|||||}{L\'Ombra veglia su di noi quando dormiamo.|ff_outsideguard_shadow_3|||||}}|}; -{ff_outsideguard_shadow_2|Bene, ora vattene prima di costringermi a fare i conti con te.|||}; -{ff_outsideguard_shadow_3|Cosa? Sei uno di quei piantagrane mandati qui per sabotare la nostra missione?||{{L\'Ombra ci protegge.|ff_outsideguard_shadow_4|||||}{Bene. Meglio non iniziare una lotta con la guardia reale.|X|||||}}|}; -{ff_outsideguard_shadow_4|Questo è troppo, è meglio che scappi ora oppure dovrai combattere.||{{Bene, aspettavo proprio un combattimento.|ff_outsideguard_shadow_5|||||}{Per l\'Ombra!|ff_outsideguard_shadow_5|||||}{Non farci caso, stavo solo scherzando.|ff_outsideguard_shadow_2|||||}}|}; -{ff_outsideguard_shadow_5||{{0|jolnor|21|}}|{{|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{wrye_select_1|||{{|wrye_return_2|wrye:90||||}{|wrye_return_1|wrye:40||||}{|wrye_mourn_1|||||}}|}; -{wrye_return_1|Bentornato. Hai avuto notizie di mio figlio Rincel?||{{Mi puoi ripetere quello che è successo?|wrye_mourn_5|||||}{No, non ho ancora saputo nulla.|wrye_story_14|||||}{Si, ho scoperto cosa gli è successo.|wrye_resolved_1|wrye:80||||}}|}; -{wrye_return_2|Bentornato. Grazie per il tuo aiuto nell\'aver scoperto cosa è successo a mio figlio.||{{Che l\'Ombra sia con te.|wrye_story_15|||||}{Prego.|wrye_story_15|||||}}|}; -{wrye_mourn_1|Che l\'Ombra mi aiuti.||{{Qual è il problema?|wrye_mourn_2|||||}}|}; -{wrye_mourn_2|Mio figlio! Mio figlio è sparito!||{{Jolnor mi ha detto che sarei dovuto venire da te per tuo figlio.|wrye_mourn_5|wrye:10||||}{Cosa puoi dirmi di lui?|wrye_mourn_3|||||}}|}; -{wrye_mourn_3|Non voglio parlarne, non con un forestiero.||{{Forestiero?|wrye_mourn_4|||||}{Jolnor mi ha consigliato di venire a sentire la storia di tuo figlio.|wrye_mourn_5|wrye:10||||}}|}; -{wrye_mourn_4|Ti prego di andartene.\n\nOh, che l\'Ombra vegli su di me!|||}; -{wrye_mourn_5|Mio figlio è morto, lo so! Ed è colpa di quelle maledette guardie, con il loro atteggiamento altezzoso.||{{N|wrye_mourn_6|||||}}|}; -{wrye_mourn_6|In un primo momento arrivano con promesse di protezione e potere. Ma poi si rivelano per quello che sono.||{{N|wrye_mourn_7|||||}}|}; -{wrye_mourn_7|Me lo sento, l\'Ombra mi parla, lui è morto.|{{0|wrye|20|}}|{{Mi puoi dire cosa è successo?|wrye_story_1|||||}{Di cosa stai parlando?|wrye_story_1|||||}{Che l\'Ombra sia con te.|wrye_mourn_8|||||}}|}; -{wrye_mourn_8|Grazie, l\'Ombra vegli su di me.||{{N|wrye_story_1|||||}}|}; -{wrye_story_1|Tutto è iniziato con l\'arrivo della guardia reale di Feygard.||{{N|wrye_story_2|||||}}|}; -{wrye_story_2|Hanno fatto pressione su tutti a Vilegard per reclutare nuovi soldati.||{{N|wrye_story_3|||||}}|}; -{wrye_story_3|Le guardie dissero di aver bisogno di maggiore supporto per sedare la rivolta e il sabotaggio che suppongono essere in atto.||{{Che relazione c\'è fra questo e tuo figlio?|wrye_story_4|||||}{Hai intenzione di arrivare al punto in fretta?|wrye_story_4|||||}}|}; -{wrye_story_4|Mio figlio, Rincel, non si è mai curato troppo delle storie che raccontavano.||{{N|wrye_story_5|||||}}|}; -{wrye_story_5|Ho anche detto a Rincel di quanto sbagliata fosse secondo me l\'idea di reclutare il popolo nella guardia reale.||{{N|wrye_story_6|||||}}|}; -{wrye_story_6|Le guardie sono rimaste qui a Vilegrad un paio di giorni per parlare a tutti, poi credo siano andate in un altro paese.||{{N|wrye_story_7|||||}}|}; -{wrye_story_7|Dopo alcuni giorni, Rincel è improvvisamente partito. Sono sicura che quelle guardie siano riuscite a convincerlo ad unirsi a loro.||{{N|wrye_story_8|||||}}|}; -{wrye_story_8|Oh, come disprezzo quei bastardi di Feygard!||{{E ora?|wrye_story_9|||||}}|}; -{wrye_story_9|Questo ormai è successo diverse settimane fa. Sento un vuoto dentro di me ora. So che è successo qualcosa a Rincel.||{{N|wrye_story_10|||||}}|}; -{wrye_story_10|Ho paura che sia morto o ferito gravemente. Probabilmente quei bastardi lo hanno mandato incontro a morte certa.|{{0|wrye|30|}}|{{N|wrye_story_11|||||}}|}; -{wrye_story_11|*sob* Che l\'Ombra mi aiuti.||{{Ok, cosa posso fare per aiutarti?|wrye_story_13|||||}{Sembra terribile. Ma sono sicuro che è solamente una tua impressione.|wrye_story_13|||||}{Ci sono prove che la gente di Feygrad è coinvolta?|wrye_story_12|||||}}|}; -{wrye_story_12|No, ma me lo sento che c\'entrano loro. L\'Ombra mi ha parlato.||{{Ok, cosa posso fare per aiutarti?|wrye_story_13|||||}{Sembri un po troppo *occupata* con l\'Ombra. Non voglio farne parte.|wrye_mourn_4|||||}{Non voglio essere coinvolto in questo caso, non vorrei seccare la guardia reale.|wrye_mourn_4|||||}}|}; -{wrye_story_13|Se vuoi aiutarmi, scopri cosa è successo a mio figlio Rincel.|{{0|wrye|40|}}|{{Hai qualche idea da dove potrei cominciare?|wrye_story_16|||||}{Ok. Voglio andare a cercare tuo figlio, spero ci sia una ricompensa per questo.|wrye_story_14|||||}{Per l\'Ombra, tuo figlio sarà vendicato.|wrye_story_14|||||}}|}; -{wrye_story_14|Torna qui appena hai scoperto qualcosa.||{{N|wrye_story_15|||||}}|}; -{wrye_story_15|Cammina con l\'Ombra.|||}; -{wrye_story_16|Penso potresti chiedere in taverna qui a Vilegard o alla taverna Fiasco Schiumoso a nord di qui.|{{0|wrye|41|}}|{{Per l\'Ombra, tuo figlio sarà vendicato.|wrye_story_14|||||}{Ok. Andrò a cercare tuo figlio, spero ci sia una ricompensa per questo.|wrye_story_14|||||}{Ok, andrò a cercare tuo figlio e scoprirò cosa gli è successo.|wrye_story_14|||||}}|}; -{wrye_resolved_1|Ti prego di dirmi cosa gli è successo!||{{Ha lasciato Vilegard per sua volontà, voleva vedere la grande città di Feygard.|wrye_resolved_2|||||}}|}; -{wrye_resolved_2|Non ci credo...||{{Desiderava segretamente andare a Feygard, ma non osava dirtelo.|wrye_resolved_3|||||}}|}; -{wrye_resolved_3|Davvero?||{{Ma non ha ottenuto molto, è stato attaccato una notte mentre dormiva.|wrye_resolved_4|||||}}|}; -{wrye_resolved_4|Attaccato?||{{Si, non poteva resistere ai mostri ed è stato ferito gravemente.|wrye_resolved_5|||||}}|}; -{wrye_resolved_5|Il mio caro ragazzo.||{{Ho parlato con un uomo che lo ha trovato ferito a morte.|wrye_resolved_6|||||}}|}; -{wrye_resolved_6|Era ancora vivo?||{{Sì, ma non per molto. Non è sopravvissuto alle ferite. Ora è sepolto a nord ovest di Vilegard.|wrye_resolved_7|||||}}|}; -{wrye_resolved_7|Oh mio povero ragazzo. Che cosa ho fatto?|{{0|wrye|90|}}|{{N|wrye_resolved_8|||||}}|}; -{wrye_resolved_8|Ho sempre creduto che la pensasse come me su quegli spocchiosi di Feygard.||{{N|wrye_resolved_9|||||}}|}; -{wrye_resolved_9|E adesso non c\'è più.||{{N|wrye_resolved_10|||||}}|}; -{wrye_resolved_10|Grazie ancora per aver scoperto che cosa gli è successo ed avermi raccontato la verità.||{{N|wrye_resolved_11|||||}}|}; -{wrye_resolved_11|Oh mio povero ragazzo.||{{N|wrye_mourn_4|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{oluag_1|||{{|oluag_grave_16|wrye:80||||}{|oluag_1_1|||||}}|}; -{oluag_1_1|Ciao. Io sono Oluag.||{{Cosa stai facendo vicino a queste casse?|oluag_2|||||}}|}; -{oluag_2|Oh queste. Non sono nulla. Dimenticale. E la tomba laggiùèe un\'altra cosa di cui non ti devi preoccupare.||{{Quale tomba?|oluag_grave_select|||||}{Niente, sul serio? Suona alquanto sospetto.|oluag_boxes_1|||||}}|}; -{oluag_boxes_1|No no, niente di sospetto sicuro. Non sono quel tipo di casse che contiene roba di contrabbando o cose simili, hah!||{{E allora riguardo a quella tomba?|oluag_grave_select|||||}{Ok allora. Suppongo di non aver visto nulla.|oluag_goodbye|||||}}|}; -{oluag_goodbye|Giusto. Addio.|||}; -{oluag_grave_select|||{{|oluag_grave_return|wrye:80||||}{|oluag_grave_1|||||}}|}; -{oluag_grave_return|Guarda, ti ho già raccontato la storia.||{{N|oluag_grave_5|||||}}|}; -{oluag_grave_1|Sì. Allora c\'è una tomba proprio laggiù. Giuro di non aver nulla a che fare con quella.||{{Niente? Davvero?|oluag_grave_2|||||}{Ok allora. Suppongo che tu non abbia nulla a che fare con la tomba.|oluag_goodbye|||||}}|}; -{oluag_grave_2|Bene, quando dico \'niente\', voglio dire niente. O al massimo solo un pochino.||{{Un pochino?|oluag_grave_3|||||}}|}; -{oluag_grave_3|Ok, allora forse ci ho avuto a che fare solo un pochino.||{{Ti conviene iniziare a parlare.|oluag_grave_5|||||}{Cosa hai fatto?|oluag_grave_5|||||}{Devo prenderti a calci nel sedere?|oluag_grave_4|||||}}|}; -{oluag_grave_4|Calma, calma. Non voglio altri combattimenti.||{{N|oluag_grave_5|||||}}|}; -{oluag_grave_5|C\'era questo ragazzo che ho scoperto. Era quasi morto dissanguato.||{{N|oluag_grave_6|||||}}|}; -{oluag_grave_6|Sono riuscito a capire poche frasi prima che morisse.||{{N|oluag_grave_7|||||}}|}; -{oluag_grave_7|Così l\'ho sepolto laggiù in quella tomba.||{{Quali sono le ultime parole che gli hai sentito dire prima che morisse?|oluag_grave_8|||||}}|}; -{oluag_grave_8|Qualcosa riguardo Vilegard e Rincel può darsi? Non ho fatto molta attenzione, ero più interessato a quale bottino potesse avere con sè.||{{Dovrei andare a controllare quella tomba. Arrivederci.|X|||||}{Rincel, era quel tipo? Da Vilegard? Il figlio smarrito di Wrye.|oluag_grave_9|wrye:40||||}}|}; -{oluag_grave_9|Sì, potrebbe essere. Comunque, disse qualcosa a proposito di realizzare il sogno di vedere la fantastica città di Feygard.||{{N|oluag_grave_10|||||}}|}; -{oluag_grave_10|E mi disse qualcosa sul fatto che non osava svelare il suo sogno a nessuno.||{{Forse non osava raccontarlo a Wrye?|oluag_grave_11|||||}}|}; -{oluag_grave_11|Sì esatto, probabilmente. Aveva preparato qui il suo campo per la notte, ma è stato attaccato da qualche mostro.||{{N|oluag_grave_12|||||}}|}; -{oluag_grave_12|Apparentemente non era un buon combattente, per esempio, come me. Così i mostri erano troppo forti per lui e l\'hanno ferito a morte la scorsa notte.||{{N|oluag_grave_13|||||}}|}; -{oluag_grave_13|Sfortunatamente, devono aver preso anche tutto ciò che possedeva dal momento che non gli ho trovato nulla addosso.||{{N|oluag_grave_14|||||}}|}; -{oluag_grave_14|Ho sentito il combattimento e sono riuscito ad arrivare da lui solo dopo che i mostri erano già fuggiti.||{{N|oluag_grave_15|||||}}|}; -{oluag_grave_15|Così, pazienza. Adesso è sepolto laggiù. Possa riposare in pace.|{{0|wrye|80|}}|{{N|oluag_grave_16|||||}}|}; -{oluag_grave_16|Ragazzo pidocchioso. Avrebbe potuto avere almeno qualche moneta, giusto per il disturbo.||{{Grazie per il racconto. Addio.|oluag_goodbye|||||}{Grazie per il racconto. Che l\'Ombra sia con te.|oluag_goodbye|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{foaming_flask_tavern_room|Devi affittare la camera prima di poterci entrare.|||}; -{sign_vilegard_n|Il cartello dice:\nBenvenuti a Vilegard, la città più accogliente dei dintorni.|||}; -{sign_foamingflask|Benvenuti alla taverna Fiasco Schiumoso!|||}; -{sign_road1_nw|Nord: Loneford\nEst: Nor City\nOvest: Fallhaven|||}; -{sign_road1_s|Nord: Loneford\nEst: Nor City\nSud: Vilegard|||}; -{sign_oluag|Noti gli scavi recenti di una tomba.|||}; -{sign_road2|Est: Nor City\nOvest: Vilegard|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{maelveon|[Percepisci una sensazione di formicolio lungo tutto il corpo non appena la spaventosa figura inizia a parlare.]||{{N|maelveon_1|||||}}|}; -{maelveon_1|L\'Ombrrrrra ti prendeeeee.||{{N|maelveon_2|||||}}|}; -{maelveon_2|G.. argoyle Ombra.||{{N|maelveon_3|||||}}|}; -{maelveon_3|A.. bbandonati all\'Ombrrrrra.||{{L\'Ombra, cosa vuoi dire?|maelveon_4|||||}{Muori, creatura malvagia!|maelveon_4|||||}{Non soarò colpito da queste tue assurdità!|maelveon_4|||||}}|}; -{maelveon_4|[La figura solleva la mano e la punta verso di te]||{{N|maelveon_5|||||}}|}; -{maelveon_5|L\'Ombrrrrra sia con te.||{{L\'Ombra, cosa?|F|||||}{Muori, creatura malvagia!|F|||||}{Ti prego non farmi del male!|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bwm_agent_1_start|Oh, finalmente un forestiero! Per favore signore, dovete aiutarci!||{{Qual è il problema?|bwm_agent_1_2|||||}{\'Aiutarci\'? Vedo solamente te qui.|bwm_agent_1_3|||||}}|}; -{bwm_agent_1_2|Abbiamo urgente bisogno di aiuto da qualcuno di fuori!||{{N|bwm_agent_1_4|||||}}|}; -{bwm_agent_1_3|Molto divertente. Sono stato mandato dal mio insediamento per chiedere un aiuto esterno.||{{N|bwm_agent_1_4|||||}}|}; -{bwm_agent_1_4|La gente del mio insediamento, la montagna Blackwater, viene lentamente decimata da mostri e banditi.|{{0|bwm_agent|1|}}|{{N|bwm_agent_1_5|||||}}|}; -{bwm_agent_1_5|I mostri si stanno accanendo su di noi, abbiamo un disperato bisogno di guerrieri in grado di sconfiggerli.||{{Credo di potervi aiutare, ho ucciso qualche mostro qua e là.|bwm_agent_1_7|||||}{Un combattimento, grandioso! Contate su di me!|bwm_agent_1_7|||||}{Ci sarà una ricompensa?|bwm_agent_1_6|||||}{Hm, no. Meglio non farsi coinvolgere.|X|||||}}|}; -{bwm_agent_1_6|Ricompensa? Hm, speravo che ci aiutaste per nobili intenzioni. Ma credo che il mio padrone saprà ricompensarvi adeguatamente.||{{Ok, lo farò.|bwm_agent_1_7|||||}}|}; -{bwm_agent_1_7|Eccellente. L\'insediamento Blackwater è un po\' distante, francamente mi stupisco di essere arrivato fin qui vivo.|{{0|bwm_agent|5|}}|{{N|bwm_agent_1_8|||||}}|}; -{bwm_agent_1_8|Devo avvertirvi, ci sono dei mostri veramente pericolosi sulla strada!||{{N|bwm_agent_1_9|||||}}|}; -{bwm_agent_1_9|Ma credo che siate abbastanza forte.||{{Si, me la so cavare.|bwm_agent_1_10|||||}{Nessun problema.|bwm_agent_1_10|||||}}|}; -{bwm_agent_1_10|Bene, prima però dobbiamo attraversare la miniera fino al lato opposto.||{{N|bwm_agent_1_11|||||}}|}; -{bwm_agent_1_11|*indica* Il pozzo della miniera laggiù è crollato, quindi non credo che riuscirete a passare.||{{N|bwm_agent_1_12|||||}}|}; -{bwm_agent_1_12|Dovrete passare attraverso la miniera abbandonata, è nera come la pece, non avrete nessuna illuminazione per attraversarla.||{{E tu?|bwm_agent_1_13|||||}{Ok, Attraverserò la miniera al buio.|bwm_agent_1_14|||||}}|}; -{bwm_agent_1_13|Io proverò a strisciare indietro per il pozzo che ho utilizzato per arrivare fino a qui!||{{N|bwm_agent_1_14|||||}}|}; -{bwm_agent_1_14|Ci vediamo dall\'altra parte della miniera.|{{0|bwm_agent|10|}}|{{Ok, tu striscia pure dal pozzo, io scenderò in profondità. Ci vediamo dall\'altra parte.|R|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bwm_agent_2_start|||{{|bwm_agent_2_7|bwm_agent:20||||}{|bwm_agent_2_1|||||}}|}; -{bwm_agent_2_1|Ciao, sei riuscito ad attraversarla vivo, ben fatto!||{{Questi mostri, cosa sono?|bwm_agent_2_2|||||}{Non mi avevi detto che sarebbe stato buio pesto laggiù, sono stato quasi ucciso.|bwm_agent_2_12|||||}{Sì, è stato un gioco da ragazzi.|bwm_agent_2_5|||||}}|}; -{bwm_agent_2_2|I Gornaud? Non ho idea da dove vengano, un giorno sono apparsi qui nei pressi della montagna.||{{N|bwm_agent_2_3|||||}}|}; -{bwm_agent_2_3|Bestie schifose quelle.||{{N|bwm_agent_2_4|||||}}|}; -{bwm_agent_2_4|Comunque ora andiamo, siamo vicini all\'accampamento della montagna Blackwater.||{{N|bwm_agent_2_5|||||}}|}; -{bwm_agent_2_5|Dovremmo muoverci ora.||{{N|bwm_agent_2_6|||||}}|}; -{bwm_agent_2_6|Una volta che sarete uscito da questa miniera, è molto importante che vi dirigiate verso est. Non andate in direzioni diverse da est!||{{Ok, Vado verso est una volta uscito dalla miniera. Ho capito.|bwm_agent_2_7|||||}{Perché est? Che altro c\'è qui?|bwm_agent_2_8|||||}}|}; -{bwm_agent_2_7|Aspetterò che abbiate passato il valico, ci vediamo lì!\n\nRicordate di andare ad est una volta uscito!|{{0|bwm_agent|20|}}|{{Ok, ci vediamo lì!|R|||||}}|}; -{bwm_agent_2_8|Oh, niente. Ci sono posti pericolosi qui. E meglio non pensarci nemmeno ad andare in una direzione diversa da est.||{{Certo, punterò verso est.|bwm_agent_2_7|||||}{Pericoloso? Mmh, il mio posto ideale.|bwm_agent_2_10|||||}{Mi stai nascondendo qualcosa?|bwm_agent_2_11|||||}}|}; -{bwm_agent_2_10|Sarebbe morte sicura, non dite poi che non vi avevo avvertito. La via più sicura è quella ad EST.||{{Certo, andrò verso est.|bwm_agent_2_7|||||}{Mi stai nascondendo qualcosa?|bwm_agent_2_11|||||}}|}; -{bwm_agent_2_11|No no, voi pensate solo ad andare verso EST, vi spiegherò tutto una volta arrivati all\'accampamento. ||{{Ok, prometto di andare verso est appena uscito dalla miniera.|bwm_agent_2_7|||||}{(Menzogna) Ok, prometto di andare verso est appena uscito dalla miniera.|bwm_agent_2_7|||||}}|}; -{bwm_agent_2_12|In realtà vi avevo avvertito che sarebbe stato buio pesto laggiù. Bel lavoro ad esservi districato là sotto!||{{N|bwm_agent_2_4|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bwm_agent_3_start|||{{|bwm_agent_3_4|bwm_agent:30||||}{|bwm_agent_3_1|||||}}|}; -{bwm_agent_3_1|Salve, siete arrivato fin qui, bene.||{{Ho parlato con alcune persone nel villaggio di Prim. Mi hanno detto cose interessanti sulla montagna di Blackwater.|bwm_agent_3_5|bwm_agent:25||||}{Sono andato ad est, come hai detto.|bwm_agent_3_2|||||}}|}; -{bwm_agent_3_2|Bene, Ora saliamo questa montagna, ci incontreremo a metà strada lassù.||{{N|bwm_agent_3_3|||||}}|}; -{bwm_agent_3_3|Questo sentiero porta all\'insediamento della montagna Blackwater, seguitelo e discuteremo più tardi.||{{N|bwm_agent_3_4|||||}}|}; -{bwm_agent_3_4|Fate attenzione ai mostri, possono essere veramente pericolosi.|{{0|bwm_agent|30|}}|{{Ok, seguirò il sentiero su per la montagna.|R|||||}{Grande, mostri pericolosi. Proprio quello di cui avevo bisogno.|R|||||}}|}; -{bwm_agent_3_5|Non ascoltate le loro parole, avvelenano i vostri pensieri e non esiterebbero a pugnalarvi alle spalle se ne avessero l\'occasione.||{{Cosa hanno fatto?|bwm_agent_3_6|||||}{Si, mi sono sembrati un poco loschi effettivamente.|bwm_agent_3_7|||||}}|}; -{bwm_agent_3_6|Non parlerò di loro adesso. Seguitemi fino all\'insediamento , parleremo meglio lì.||{{Certo.|bwm_agent_3_2|||||}{Terrò gli occhi su di te, per adesso accetto le tue condizioni.|bwm_agent_3_2|||||}}|}; -{bwm_agent_3_7|Appunto.||{{N|bwm_agent_3_6|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bwm_agent_4_start|||{{|bwm_agent_4_5|bwm_agent:40||||}{|bwm_agent_4_1|||||}}|}; -{bwm_agent_4_1|Bentrovato. Bel lavoro nell\'aver sconfitto i Gornaud.||{{I loro attacchi sono potenti, ma cosa sono queste bestie?|bwm_agent_4_6|||||}{Come mai non attaccano te?|bwm_agent_4_3|||||}{Certo, nessun problema. Solo un\'altra scia di cadaveri dietro di me!|bwm_agent_4_2|||||}}|}; -{bwm_agent_4_2|Attenzione a quello che desiderate, potrebbe diventare realtà.||{{N|bwm_agent_4_4|||||}}|}; -{bwm_agent_4_3|Io? Dev\'esserci qualcosa che li spaventa, non ho idea di cosa sia, forse qualche odore che ho addosso.||{{N|bwm_agent_4_4|||||}}|}; -{bwm_agent_4_4|In ogni caso dobbiamo andare avanti, vi precederò lungo la strada.||{{N|bwm_agent_4_5|||||}}|}; -{bwm_agent_4_5|Ci incontreremo nuovamente più in alto sulla montagna e parleremo ancora.|{{0|bwm_agent|40|}}|{{Ok, ci vediamo li.|R|||||}}|}; -{bwm_agent_4_6|Non so da dove vengano. Un giorno sono apparsi, bloccando la strada per la montagna.||{{N|bwm_agent_4_7|||||}}|}; -{bwm_agent_4_7|E i loro attacchi sono potenti. Quando uno di loro inizia a puntarvi, anche gli altri sembrano molto interessati a colpirvi.||{{Nulla che non si possa gestire.|bwm_agent_4_4|||||}{Come mai non ti attaccano?|bwm_agent_4_3|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bwm_agent_5_start|||{{|bwm_agent_5_6|bwm_agent:50||||}{|bwm_agent_5_1|||||}}|}; -{bwm_agent_5_1|E\' un piacere rivedervi. Bel lavoro con quei mostri.||{{N|bwm_agent_5_2|||||}}|}; -{bwm_agent_5_2|Siamo quasi arrivati, manca ancora un poco.||{{N|bwm_agent_5_3|||||}}|}; -{bwm_agent_5_3|Dovremmo affrettarci in questo ultimo pezzo di strada, l\'insediamento è vicino.||{{N|bwm_agent_5_4|||||}}|}; -{bwm_agent_5_4|Spero che riusciate a sopportare il freddo della montagna.||{{N|bwm_agent_5_5|||||}}|}; -{bwm_agent_5_5|Inoltre vi consiglio di stare alla larga dai dragoni, il loro morso può essere veramente pericoloso.||{{N|bwm_agent_5_6|||||}}|}; -{bwm_agent_5_6|Affrettiamoci, ci siamo quasi. Seguite il sentiero innevato a nord e dovreste riuscire a raggiungere l\'insediamento in un batter d\'occhio.|{{0|bwm_agent|50|}}|{{Ok, in cima alla montagna seguirò il percorso a nord.|R|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bwm_agent_6_start|||{{|bwm_agent_6_3|bwm_agent:60||||}{|bwm_agent_6_0|||||}}|}; -{bwm_agent_6_1|Sono contento che mi abbiate seguito fin qui per aiutarci.||{{Come sei arrivato qui così in fretta?|bwm_agent_6_6|||||}{Alcuni scontri sono stati davvero duri, ma posso resistere.|bwm_agent_6_5|||||}{Non siamo ancora arrivati?|bwm_agent_6_2|||||}}|}; -{bwm_agent_6_2|Oh sì, il nostro insediamento è proprio in fondo a queste scale.||{{N|bwm_agent_6_4|||||}}|}; -{bwm_agent_6_3|Procedete pure. Ci vediamo dentro.||{{Ok, ci vediamo dentro.|R|||||}}|}; -{bwm_agent_6_0|Ci incontriamo ancora. Bel lavoro nell\'essersi fatto strada fin quassù!||{{N|bwm_agent_6_1|||||}}|}; -{bwm_agent_6_4|Dovreste scendere queste scale e parlare col nostro maestro d\'armi Harlenn. Di solito si trova al terzo piano interrato.|{{0|bwm_agent|60|}}|{{N|bwm_agent_6_3|||||}}|}; -{bwm_agent_6_5|Si, sembrate un buon combattente.||{{Non siamo ancora arrivati?|bwm_agent_6_2|||||}}|}; -{bwm_agent_6_6|Ho imparato alcune scorciatoie facendo su e giù dalla montagna. Niente di strano vero?||{{N|bwm_agent_6_7|||||}}|}; -{bwm_agent_6_7|In ogni caso siamo arrivati, il nostro insediamento è proprio ai piedi di queste scale.||{{N|bwm_agent_6_4|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{arghest_start|||{{|arghest_return_1|prim_innquest:40||||}{|arghest_return_2|prim_innquest:30||||}{|arghest_1|||||}}|}; -{arghest_1|Ciao.||{{Cos\'è questo posto?|arghest_2|||||}{Chi sei tu?|arghest_5|||||}{Hai affittato la stanza sul retro della locanda di Prim?|arghest_8|prim_innquest:10||||}}|}; -{arghest_2|Questa è l\'entrata della vecchia miniera di Prim.||{{N|arghest_3|||||}}|}; -{arghest_3|Eravamo soliti scavare molto qui. Ma questo accadeva prima che cominciassero gli attacchi.||{{N|arghest_4|||||}}|}; -{arghest_4|Gli attacchi contro Prim da parte delle bestie e dei banditi ci hanno ridotto di numero, ora non riusciamo più a mantenere attiva l\'attività in miniera.||{{Chi sei tu?|arghest_5|||||}}|}; -{arghest_5|Io sono Arghest. Sorveglio l\'entrata in modo che nessuno abbia accesso alla vecchia miniera.||{{Che cos\'è questo posto?|arghest_2|||||}{Posso entrare nella miniera?|arghest_6|||||}}|}; -{arghest_6|No, la miniera è chiusa.||{{OK, ciao.|X|||||}{Per favore?|arghest_7|||||}}|}; -{arghest_7|Ho detto di no, I visitatori non sono ammessi.||{{Per piacere?|arghest_6|||||}{Nemmeno una rapida occhiata?|arghest_6|||||}}|}; -{arghest_return_1|Bentornato, grazie per il tuo aiuto. Spero che il posto alla locanda ti sia utile.||{{Prego, ciao.|X|||||}{Posso entrare nella miniera?|arghest_6|||||}}|}; -{arghest_return_2|Bentornato, hai portato le 5 bottiglie di latte che ti avevo chiesto?||{{No non ancora, ci sto lavorando.|arghest_return_3|||||}{Sì, eccole, buon appetito!|arghest_return_4||milk|5|0|}{Si, anche se mi sono costate una fortuna.|arghest_return_4||milk|5|0|}}|}; -{arghest_return_3|Va bene allora. Ritorna da me quando le avrai.||{{Lo farò. Ciao.|X|||||}}|}; -{arghest_return_4|Grazie amico! Ora posso rifornire la mia scorta.|{{0|prim_innquest|40|}}|{{N|arghest_return_5|||||}}|}; -{arghest_return_5|Queste bottiglie hanno un ottimo aspetto. Ora sarò in grado di resistere ancora un po\' qui dentro.||{{N|arghest_return_6|||||}}|}; -{arghest_return_6|Oh, e per la stanza nella locanda - sei libero di usarla in qualsiasi momento. E\' un posto veramente confortevole, se vuoi la mia opinione.||{{Grazie Arghest. Ciao.|X|||||}{Finalmente, pensavo che non avrei mai potuto riposare qui!|X|||||}}|}; -{arghest_8|\'Taverna di Prim\' - sei buffo.||{{N|arghest_9|||||}}|}; -{arghest_9|Si, l\'ho presa io in affitto, rimango lì a riposare a fine turno.||{{N|arghest_10|||||}}|}; -{arghest_10|Tuttavia ora che noi guardie non siamo più così numerose come un tempo, è ormai un bel po\' che non riposo alla taverna.||{{Pensi che io possa utilizzare la stanza alla locanda per riposare?|arghest_11|||||}{Pensi di utilizzare ancora la stanza?|arghest_11|||||}}|}; -{arghest_11|Bene, vorrei avere ancora la possibilità di utilizzarla, ma credo sia giusto che anche altri possano riposare lì ora che non la sto utilizzando!|{{0|prim_innquest|20|}}|{{N|arghest_12|||||}}|}; -{arghest_12|Ti dico una cosa, se mi porti un po\' di rifornimenti ti darò il permesso di utilizzare la stanza sebbene sia affittata a mio nome.||{{N|arghest_13|||||}}|}; -{arghest_13|Ho un sacco di carne ma ho finito il latte alcune settimane fa. Pensi di potermene procurare un po\'?||{{Certo, nessun problema. Ti farò avere delle bottiglie di latte. Quante ne vuoi?|arghest_14|||||}{Certo, se poi mi permetterai di riposare qui. Vado subito.|arghest_14|||||}}|}; -{arghest_14|Portami 5 bottiglie di latte, dovrebbero bastare.|{{0|prim_innquest|30|}}|{{Vado a comprarle.|X|||||}{OK, vado e torno.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{tonis_start|||{{|tonis_return_1|prim_hunt:10||||}{|tonis_1|||||}}|}; -{tonis_return_1|Ciao. Hai parlato con Guthbered nella sala principale di Prim?||{{No, non ancora. Dove posso trovarlo?|tonis_return_2|||||}{Sì, mi ha raccontato la storia di Prim.|tonis_8|prim_hunt:20||||}{No, e non credo che andrò a parlare con lui. Sono qui per svolgere una missione importante per aiutare l\'insediamento sulla montagna Blackwater.|tonis_return_3|||||}}|}; -{tonis_1|Hei tu! Per favore, ci devi aiutare!||{{Qual è il problema?|tonis_6|||||}{È questo l\'insediamento della montagna Blackwater?|tonis_2|||||}{Mi spiace, ma sono di fretta, mi è stato detto di andare rapidamente ad est!|tonis_4|||||}}|}; -{tonis_2|Blackwater? No no certo che no. Questo è il villaggio di Prim.||{{N|tonis_3|||||}}|}; -{tonis_3|Blackwater... quei luridi bastardi.||{{N|tonis_6|||||}}|}; -{tonis_4|EST? Ma conduce alla montagna di Blackwater...||{{N|tonis_5|||||}}|}; -{tonis_5|Non vorrai veramente andare lassù?||{{N|tonis_3|||||}}|}; -{tonis_6|Abbiamo bisogno di aiuto da qualcuno che non vive a Prim!|{{0|prim_hunt|10|}}|{{N|tonis_7|||||}}|}; -{tonis_7|Dovresti parlare con Guthbered nella sala principale di Prim, a nord da qui.||{{Ok, andrò a fargli visita.|tonis_8|||||}{Mi è stato detto di dirigermi verso est.|tonis_4|||||}}|}; -{tonis_8|Bene, grazie. Abbiamo veramente bisogno del tuo aiuto.|{{0|prim_hunt|11|}}||}; -{tonis_return_2|Il villaggio di Prim è a nord di qui. Forse riesci già a vederlo attraverso quegli alberi laggiù.||{{Ok, ci andrò!|tonis_8|||||}}|}; -{tonis_return_3|Non ascoltare le loro bugie!|||}; -{moyra_1|Stai alla larga. Questo è il mio nascondiglio.||{{Da che cosa ti stai nascondendo?|moyra_2|||||}{Chi sei tu?|moyra_3|||||}}|}; -{moyra_2|Artigli, bestie, Gornaud. Qui non possono raggiungermi.||{{\'Gornaud\', è questo il nome dei mostri fuori dal villaggio?|moyra_5|||||}{Si certo, resta qui e nasconditi creatura patetica.|moyra_4|||||}}|}; -{moyra_3|Io? Io sono Moyra.||{{Perché ti nascondi?|moyra_2|||||}}|}; -{moyra_4|Sei cattivo. Non voglio più parlare con te!|||}; -{moyra_5|Per favore, non così forte! Potrebbero sentirti.||{{N|moyra_6|||||}}|}; -{moyra_6|Li ho visti sul sentiero che sale la montagna, affilavano i loro artigli.||{{N|moyra_7|||||}}|}; -{moyra_7|Mi nascondo qui ora, così non possono trovarmi.|||}; -{prim_commoner1|Ciao, benvenuto a Prim. Sei qui per aiutarci?||{{Sì, sono qui per aiutare il vostro villaggio!|prim_commoner1_2|||||}{(Bugia) Sì, sono qui per aiutare il vostro villaggio!|prim_commoner1_2|||||}}|}; -{prim_commoner1_2|Grazie, abbiamo veramente bisogno del tuo aiuto.|{{0|prim_hunt|11|}}|{{N|prim_commoner1_3|||||}}|}; -{prim_commoner1_3|Dovresti parlare con Guthbered, se non l\'hai già fatto.||{{Lo farò, ciao.|X|||||}{Dove posso trovarlo?|prim_commoner1_4|||||}}|}; -{prim_commoner1_4|È nella sala principale, proprio lì nella grande casa di pietra.|{{0|prim_hunt|15|}}||}; -{prim_commoner2|Ciao, mi sembri nuovo di queste parti. Come posso aiutarti?||{{C\'è qualche posto dove posso riposare da queste parti?|prim_commoner2_rest1|||||}{Dove posso trovare un commerciante da queste parti?|prim_commoner2_trade1|||||}}|}; -{prim_commoner2_rest1|C\'è una locanda a sud-est dove potresti riposare.||{{Grazie, ciao.|X|||||}{Dove posso trovare un commerciante da queste parti?|prim_commoner2_trade1|||||}}|}; -{prim_commoner2_trade1|Il nostro armaiolo è nella casa all\'angolo a sud-est, ti avverto però che non ci sono più le merci di una volta.||{{Grazie, ciao.|X|||||}{C\'è qualche posto dove posso riposare da queste parti?|prim_commoner2_rest1|||||}}|}; -{prim_commoner3|Ciao, benvenuto a Prim.|||}; -{prim_commoner4|Ciao, chi sei? Sei qui per aiutarci?||{{Sto cercando mio fratello, vi è capitato di vederlo da queste parti?|prim_commoner4_1|||||}{Si, sono venuto per aiutarvi.|prim_commoner4_3|||||}{(Menzogna) Si, sono venuto per aiutarvi.|prim_commoner4_3|||||}}|}; -{prim_commoner4_1|Tuo fratello? Figliolo, devi sapere che da queste parti non passa molta gente.||{{N|prim_commoner4_2|||||}}|}; -{prim_commoner4_2|Quindi no, non so esserti d\'aiuto.|||}; -{prim_commoner4_3|Oh, grazie potresti veramente dare un grande aiuto al nostro villaggio.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bwm_primsleep|Non ti è permesso entrare qui.|||}; -{laecca_1|Ciao io sono Laecca, guida di montagna.||{{Cosa fai da queste parti?|laecca_2|||||}{Cos\'è una \'Guida di montagna\'?|laecca_2|||||}}|}; -{laecca_2|Tengo d\'occhio il passo per assicurarmi che nessuna di quelle bestie arrivino fin qui.||{{Allora cosa ci fai in casa? Non dovresti essere fuori a fare la guardia?|laecca_4|||||}{Sembra una nobile causa.|laecca_3|||||}{Di che bestie stai parlando?|laecca_9|||||}}|}; -{laecca_3|Certo, può sembrare così, ma c\'è un sacco di duro lavoro.||{{N|laecca_5|||||}}|}; -{laecca_4|Molto divertente, ma devo anche riposare. Tenere lontano i mostri è molto faticoso.||{{N|laecca_5|||||}}|}; -{laecca_5|Una volta c\'erano molte più guide fra noi, ma oramai non molti sono sopravvissuti agli attacchi delle bestie.||{{Sembra che tu non sia molto tagliata per fare questo lavoro come si deve.|laecca_6|||||}{Mi dispiace sentirtelo dire.|laecca_8|||||}{Di quali bestie stai parlando?|laecca_9|||||}}|}; -{laecca_6|Forse.||{{N|laecca_7|||||}}|}; -{laecca_7|In ogni caso, ho delle cose da fare. È stato bello parlare con te.||{{Ciao.|X|||||}}|}; -{laecca_8|Grazie per l\'interessamento.||{{Posso fare qualcosa per aiutarti?|laecca_13|||||}}|}; -{laecca_9|Pfft, \'Quali bestie?\'. I Gornaud ovviamente.||{{N|laecca_10|||||}}|}; -{laecca_10|Affilano gli artigli contro le rocce la notte! *spallucce*||{{N|laecca_11|||||}}|}; -{laecca_11|All\'inizio pensavo che agissero per puro istinto. Ma ora sto cominciando a credere che siano più intelligenti delle altre bestie.||{{N|laecca_12|||||}}|}; -{laecca_12|I loro attacchi si fanno sempre più mirati.|{{0|prim_hunt|11|}}|{{E come posso aiutarti?|laecca_13|||||}}|}; -{laecca_13|Dovresti parlare con Guthbered. Di solito si trova nella sala principale. Cerca la casa di pietra al centro del villaggio.|{{0|prim_hunt|15|}}||}; -{prim_cook_start|||{{|prim_cook_return_1|prim_innquest:50||||}{|prim_cook_return_2|prim_innquest:10||||}{|prim_cook_1|||||}}|}; -{prim_cook_1|Posso aiutarti?||{{Hai del cibo da vendere?|prim_cook_2|||||}{La stanza sul retro si può affittare?|prim_cook_3|||||}}|}; -{prim_cook_2|Cibo? No, mi spiace. Non ho niente da vendere.||{{N|prim_cook_1|||||}}|}; -{prim_cook_3|Affitto? No, non al momento.||{{N|prim_cook_41|||||}}|}; -{prim_cook_5|Ora che mi ci fai pensare, è un po che non si vede da queste parti, potresti sentire lui se vuole tenerla ancora in affitto.||{{Ok, andrò a parlare con lui.|prim_cook_7|||||}{Certo, hai qualche idea su dove possa essere?|prim_cook_6|||||}}|}; -{prim_cook_41|È affittata ad Arghest. Non sarebbe molto felice se io la dessi a qualcun altro!||{{N|prim_cook_5|||||}}|}; -{prim_cook_6|Non so dove sia, ma so che lavorava sempre nelle nostre miniere a sud-ovest.|{{0|prim_innquest|10|}}|{{Grazie, andrò a cercarlo.|X|||||}{Andrò a cercarlo subito.|X|||||}}|}; -{prim_cook_7|Grazie.||{{N|prim_cook_6|||||}}|}; -{prim_cook_return_1|Grazie per il tuo aiuto, spero che la stanza sul retro sia di tuo gradimento.||{{N|prim_cook_return_7|||||}}|}; -{prim_cook_return_2|Hai parlato ad Arghest?||{{No, non ancora.|prim_cook_return_3|||||}{(Menzogna) Sì, mi ha detto che potevo usare la stanza sul retro quando volevo.|prim_cook_return_4|||||}{Sì, mi ha detto che potevo usare la stanza sul retro quando volevo.|prim_cook_return_6|prim_innquest:40||||}}|}; -{prim_cook_return_3|Ritorna da me quando hai saputo se vuole tenerla in affitto ancora.||{{Hai qualche idea su dove possa essere?|prim_cook_6|||||}}|}; -{prim_cook_return_4|Veramente ha detto così? Ne dubito. Non sembra una cosa da lui.||{{N|prim_cook_return_5|||||}}|}; -{prim_cook_return_5|Mmh, dovrai impegnarti di più per convincermi.|||}; -{prim_cook_return_6|Veramente ti ha dato il permesso? Bene vai pure, posso solo essere contento che la stanza sul retro venga usata.|{{0|prim_innquest|50|}}|{{N|prim_cook_return_7|||||}}|}; -{prim_cook_return_7|Sei sempre il benvenuto, puoi riposare nella stanza sul retro tutte le volte che vuoi, fammi sapere se c\'è qualcosa che posso fare per te!|||}; -{prim_innguest|Bel posto questo, non è vero?|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{birgil_1|Benvenuto nella mia taverna. Prego, prendi un posto dove preferisci.||{{Cosa si beve da queste parti?|birgil_2|||||}}|}; -{birgil_2|Purtroppo poco, con il crollo del tunnel della miniera non possiamo commerciare molto con i paesi esterni.||{{N|birgil_3|||||}}|}; -{birgil_3|Tuttavia ho una marea di idromele che conservo da prima che il tunnel crollasse.||{{Idromele? Puah, troppo dolce per i miei gusti.|birgil_4|||||}{Va bene! Proprio adatto al mio palato. Vediamo cosa hai da vendere|S|||||}{Va bene, me lo farò piacere. Credo abbia delle proprietà rigeneranti. Vediamo.|S|||||}}|}; -{birgil_4|Accomodati, queste sono le uniche cose che ho.||{{Ok, facciamo questo scambio.|S|||||}{Non importa, ciao.|X|||||}}|}; -{prim_tavern_guest1|Oh, qualcuno di nuovo!||{{N|prim_tavern_guest1_1|||||}}|}; -{prim_tavern_guest1_1|Benvenuto ragazzo, sei qui per affogare nell\'alcol i tuoi dolori come noi?||{{Non proprio, cosa si fa da queste parti di solito?|prim_tavern_guest1_3|||||}{Sì, dammi un po\' di quello che stai bevendo.|prim_tavern_guest1_4|||||}{Smettila di urtarmi mentre cammino.|prim_tavern_guest1_2|||||}}|}; -{prim_tavern_guest1_2|Oh oh, qualcuno di grintoso, Ok, mi sposterò dalla tua strada.|||}; -{prim_tavern_guest1_3|Si beve, ovviamente!||{{Avrei dovuto aspettarmelo. Ciao.|X|||||}}|}; -{prim_tavern_guest1_4|Hey, questo è mio. Comprati un boccale di idromele da Birgil, è proprio lì.||{{Certo, come vuoi.|X|||||}{Ok.|X|||||}}|}; -{prim_tavern_guest2|*hic* Ciaaao ragazzo. Vuoi offrire un altro giro di idromele ad un vecchio come me?||{{Buon uomo, ma cosa le prende? Stia lontano da me!|X|||||}{Assolutamente no. E smettila di bloccarmi la strada.|X|||||}{Certo, eccolo.|prim_tavern_guest2_1||mead|1|0|}}|}; -{prim_tavern_guest2_1|Hey hey, Grazie, sei un bravo ragazzo! *hic*|||}; -{prim_tavern_guest3|*Brontola*|||}; -{prim_tavern_guest4|Artigli. Graffi||{{N|prim_tavern_guest4_1|||||}}|}; -{prim_tavern_guest4_1|Hanno fatto fare una brutta fine a Kirg.||{{N|prim_tavern_guest4_2|||||}}|}; -{prim_tavern_guest4_2|Dannate bestie.||{{N|prim_tavern_guest4_3|||||}}|}; -{prim_tavern_guest4_3|Ed è tutta colpa mia. *sob*|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{guthbered_start|||{{|guthbered_sentbybwm_leave|bwm_agent:131||||}{|guthbered_sentbybwm_fight|bwm_agent:130||||}{|guthbered_sentbybwm_1|bwm_agent:120||||}{|guthbered_reject|prim_hunt:251||||}{|guthbered_reject|prim_hunt:250||||}{|guthbered_completed|prim_hunt:100||||}{|guthbered_killharl_2|prim_hunt:99||||}{|guthbered_workingforbwm_2|bwm_agent:95||||}{|guthbered_killharl_1|prim_hunt:80||||}{|guthbered_lookforsigns_1|prim_hunt:50||||}{|guthbered_return_1_1|prim_hunt:25||||}{|guthbered_1|||||}}|}; -{guthbered_reject|Ancora tu? Vattene da questo posto e raggiungi i tuoi amici dell\'insediamento sulla montagna Blackwater. Non vogliamo avere a che fare con te.||{{Sono qui per portarvi un messaggio dall\'insediamento sulla montagna di Blackwater.|guthbered_attacks|bwm_agent:70||||}}|}; -{guthbered_attacks|Quale messaggio?||{{Harlenn dell\'insediamento di Blackwater vuole che fermiate i vostri attacchi verso di loro.|guthbered_attacks_1|||||}}|}; -{guthbered_attacks_1|Ma è completamente pazzo? Noi?! fermare i NOSTRI attacchi? Digli che non abbiamo nulla a che fare con quello che succede lassù, si sono cercati tutto quello che stanno subendo.|{{0|bwm_agent|80|}}||}; -{guthbered_return_1_1|Bentornato viaggiatore, hai parlato con Harlenn dell\'insediamento su Blackwater?||{{Puoi raccontarmi di nuovo la storia dei mostri?|guthbered_13|||||}{Mi ripeti cosa avrei dovuto fare?|guthbered_29|||||}{Puoi dirmi ancora la storia di Prim?|guthbered_2|||||}{Sì, ma Harlenn nega di avere a che fare con gli attacchi.|guthbered_talkedto_harl_1|prim_hunt:30||||}{In realtà, sono qui per portarvi un messaggio dall\'insediamento sulla montagna di Blackwater.|guthbered_attacks|bwm_agent:70||||}}|}; -{guthbered_1|Benvenuto a Prim, viaggiatore.||{{Cosa puoi dirmi su Prim?|guthbered_2|||||}{Chi sei tu?|guthbered_who_1|||||}{Mi è stato detto di parlare con te per aiutarvi contro gli attacchi dei mostri.|guthbered_20|prim_hunt:11||||}{In realtà, sono qui per portarvi un messaggio dall\'insediamento sulla montagna di Blackwater.|guthbered_attacks|bwm_agent:70||||}}|}; -{guthbered_2|Prim era un semplice campo per i minatori che lavoravano da queste parti. In seguito è diventato un insediamento, e qualche anno fa sono pure comparse una taverna ed una locanda.||{{N|guthbered_3|||||}}|}; -{guthbered_3|Questo posto era pieno di vita quando i minatori lavoravano qui.||{{N|guthbered_4|||||}}|}; -{guthbered_4|I minatori attiravano anche un sacco di mercanti che passavano di qui.||{{\'ERA pieno di vita\'?|guthbered_5|||||}{Cosa è successo poi?|guthbered_5|||||}}|}; -{guthbered_5|Fino a poco tempo fa, avevamo almeno qualche contatto con i paesi esterni, oggi sembra non ci sia più speranza.||{{N|guthbered_6|||||}}|}; -{guthbered_6|Vedi, il tunnel della miniera a sud è crollato e nessuno può entrare o uscire da Prim.||{{Lo so, sono appena arrivato da lì.|guthbered_7|||||}{Che sfortuna.|guthbered_10|||||}{Cosa ha provocato il crollo?|guthbered_11|||||}}|}; -{guthbered_7|Sei arrivato da lì? Oh beh naturalmente visto che non sei di Prim. Quindi c\'è un passaggio agibile attraverso la miniera dopotutto non è vero?||{{Si, ma sono dovuto passare attraverso la vecchia miniera buia.|guthbered_8|||||}{Si, il passaggio sotto la miniera è sicuro.|guthbered_8|||||}{No, sto scherzando,. Ho scalato il crinale della montagna per venire qua.|guthbered_8|||||}}|}; -{guthbered_8|Ok, indagheremo più tardi.||{{N|guthbered_9|||||}}|}; -{guthbered_9|Comunque, come dicevo..||{{N|guthbered_10|||||}}|}; -{guthbered_10|Il crollo della miniera ha reso difficile ai commercianti arrivare fino a Prim. Per questo i nostri rifornimenti vanno diminuendo costantemente.||{{N|guthbered_12|||||}}|}; -{guthbered_11|Non ne siamo sicuri, ma abbiamo i nostri sospetti.||{{N|guthbered_10|||||}}|}; -{guthbered_12|Oltre questo, dobbiamo anche fronteggiare gli attacchi dei mostri.|{{0|prim_hunt|11|}}|{{Si, ho notato alcuni mostri fuori dal villaggio.|guthbered_13|||||}{Quali mostri?|guthbered_13|||||}}|}; -{guthbered_who_1|Sono Guthbered, protettore di questo villaggio.||{{Cosa puoi dirmi di Prim?|guthbered_2|||||}{Mi è stato chiesto di incontrarti per aiutarvi contro gli attacchi dei mostri.|guthbered_20|prim_hunt:11||||}}|}; -{guthbered_13|Un po\' di tempo fa sono apparsi i primi mostri, all\'inizio non era un problema, le nostre guardie riuscivano a fronteggiarli senza problemi.||{{N|guthbered_14|||||}}|}; -{guthbered_14|Dopo poco alcune guardie sono state ferite e i mostri sono aumentati.||{{N|guthbered_15|||||}}|}; -{guthbered_15|Inoltre, sembra quasi che i mostri stiano diventando più intelligenti, i loro attacchi sono sempre più coordinati.||{{N|guthbered_16|||||}}|}; -{guthbered_16|Ora riusciamo a malapena a respingerli, arrivano per lo più di notte.||{{N|guthbered_17|||||}}|}; -{guthbered_17|Secondo la tradizione, i mostri vengono chiamati \'Gornaud\'.||{{Avete idea da dove possano venire?|guthbered_18|||||}}|}; -{guthbered_18|Oh, si, ne siamo quasi certi.||{{N|guthbered_19|||||}}|}; -{guthbered_19|Quei bastardi dell\'insediamento sulla montagna di Blackwater probabilmente li hanno evocati per attaccarci. Vorrebbero vederci morti.|{{0|prim_hunt|20|}}|{{N|guthbered_22|||||}}|}; -{guthbered_20|Oh, bene. Hai parlato con Tonis? Certo, sono sicuro che lo hai incontrato sulla strada venendo qui.||{{N|guthbered_21|||||}}|}; -{guthbered_21|Bene, lascia che ti racconti la vecchia storia di Prim.||{{Certo.|guthbered_2|||||}{Preferisco sentire direttamente la fine.|guthbered_13|||||}}|}; -{guthbered_22|Era abitudine commerciare con loro, ma poi tutto cambiò quando iniziarono a diventare avidi.|{{0|bwm_agent|25|}}|{{Ho incontrato un uomo fuori dalla miniera crollata che diceva di essere dell\'insediamento della montagna di Blackwater.|guthbered_26|||||}{Avete bisogno di aiuto con quei mostri?|guthbered_23|||||}{Sarei felice di aiutarvi con quei mostri.|guthbered_24|||||}}|}; -{guthbered_23|Oh ragazzo, aiuto? Sì certo, sei il benvenuto se vuoi aiutarci.||{{Sarei felice di aiutarvi con i mostri.|guthbered_24|||||}}|}; -{guthbered_24|Pensi davvero di essere in grado di aiutarci?||{{Ho lasciato una scia di carcasse sanguinanti dietro di me.|guthbered_25|||||}{Certo, sono in grado.|guthbered_25|||||}{Se i mostri sono simili a quelli che ho incontrato all\'entrata della miniera, sarà una dura lotta. Ma posso farcela.|guthbered_25|||||}}|}; -{guthbered_25|Grande, penso che dovremmo andare direttamente alla fonte del problema.||{{N|guthbered_29|||||}}|}; -{guthbered_26|Un uomo dell\'insediamento di Blackwater dici?||{{N|guthbered_27|||||}}|}; -{guthbered_27|Ti ha detto qualcosa su di noi?||{{No, ma ha insistito che io mi dirigessi ad Est uscito dalla miniera, evidentemente per non farmi arrivare qui a Prim.|guthbered_28|||||}}|}; -{guthbered_28|Questi personaggi, mandano le loro spie anche ora.||{{Hai bisogno di aiuto con quei mostri?|guthbered_23|||||}}|}; -{guthbered_29|Come dicevo, crediamo che quei bastardi dell\'insediamento lassù siano in qualche modo coinvolti con l\'attacco dei mostri.||{{N|guthbered_30|||||}}|}; -{guthbered_30|Io voglio che tu vada nel loro insediamento a cerare il loro maestro d\'armi, Harlenn, e gli chieda perché ci stanno facendo questo.|{{0|prim_hunt|25|}}|{{Ok, andrò da Harlenn nell\'insediamento di Blackwater a chiedergli perché vi stanno attaccando.|guthbered_31|||||}}|}; -{guthbered_31|Grazie, sei un amico.|{{0|prim_hunt|25|}}||}; -{guthbered_talkedto_harl_1|Cosa dovevo aspettarmi? Ero certo che avrebbe detto questo. Probabilmente lo nega perfino a se stesso. Intanto qui a Prim soffriamo per colpa dei loro attacchi.||{{N|guthbered_talkedto_harl_2|||||}}|}; -{guthbered_talkedto_harl_2|Sono certo che ci sono loro dietro a questi attacchi, purtroppo non ho sufficienti prove per poter fare qualcosa.||{{N|guthbered_talkedto_harl_3|||||}}|}; -{guthbered_talkedto_harl_3|Ma sono sicuro che sono loro! Come sono falsi, sempre a mentire e ingannare, causando un sacco di guai.|{{0|prim_hunt|40|}}|{{N|guthbered_talkedto_harl_4|||||}}|}; -{guthbered_talkedto_harl_4|Basta sentire il nome che si sono scelti: \'Blackwater\'. Già questo suona come una minaccia.||{{N|guthbered_talkedto_harl_5|||||}}|}; -{guthbered_talkedto_harl_5|In ogni caso, vorrei delle prove su quello che stanno facendo, ci sarà qualcosa che può aiutarci.||{{N|guthbered_talkedto_harl_6|||||}}|}; -{guthbered_talkedto_harl_6|Ma ho bisogno di essere sicuro di potermi fidare di te. Se stai lavorando per loro è meglio che tu me lo dica ora, senza aspettare che le cose si...complichino.||{{Certo, ti puoi fidare, sono qui per aiutare il popolo di Prim.|guthbered_talkedto_harl_8|||||}{Hm, forse dovrei aiutare la gente di Blackwater.|guthbered_workingforbwm_1|||||}{(menzogna) Puoi fidarti di me.|guthbered_talkedto_harl_7|bwm_agent:70||||}}|}; -{guthbered_talkedto_harl_7|Eppure c\'è qualcosa in te che non mi convince.||{{Stavo lavorando per loro, ma poi ho deciso di aiutare voi.|guthbered_talkedto_harl_8|||||}{Perché mai dovrei aiutare il vostro schifoso villaggio? La gente di Blackwater merita il mio aiuto più di voi!|guthbered_workingforbwm_1|||||}}|}; -{guthbered_talkedto_harl_8|Bene, sono contento che tu voglia aiutarci.||{{N|guthbered_talkedto_harl_9|||||}}|}; -{guthbered_workingforbwm_1|Bene, è meglio che tu te ne vada ora finchè ti è ancora possibile, traditore.|{{0|prim_hunt|250|}}||}; -{guthbered_talkedto_harl_9|Voglio che tu vada nel loro insediamento a trovare indizi per capire cosa stanno tramando.||{{N|guthbered_talkedto_harl_10|||||}}|}; -{guthbered_talkedto_harl_10|Crediamo che si stiano addestrando per lanciare un massiccio attacco su di noi.||{{N|guthbered_talkedto_harl_11|||||}}|}; -{guthbered_talkedto_harl_11|Vai a cercare indizi e piani, ma fai in modo che nessuno se ne accorga.||{{N|guthbered_talkedto_harl_12|||||}}|}; -{guthbered_talkedto_harl_12|Dovresti cominciare la tua ricerca partendo dal loro maestro d\'armi, Harlenn.||{{Ok, vado a cercare indizi nel loro insediamento.|guthbered_talkedto_harl_13|||||}}|}; -{guthbered_talkedto_harl_13|Grazie, amico. Torna da me se scopri qualcosa.|{{0|prim_hunt|50|}}||}; -{guthbered_lookforsigns_1|Ciao, hai scoperto qualcosa nell\'insediamento di Blackwater ?||{{No, sto ancora cercando.|guthbered_talkedto_harl_13|||||}{Mi ripeteresti di nuovo cosa dovrei fare?|guthbered_talkedto_harl_9|||||}{Si, ho trovato alcune carte con un piano per attaccare Prim.|guthbered_lookforsigns_2|prim_hunt:60||||}}|}; -{guthbered_lookforsigns_2|Allora è come sospettavo. È una notizia terribile.||{{N|guthbered_lookforsigns_3|||||}}|}; -{guthbered_lookforsigns_3|Ora capisci di cosa stavo parlando, cercano sempre di creare problemi.||{{N|guthbered_lookforsigns_4|||||}}|}; -{guthbered_lookforsigns_4|Grazie per aver trovato queste informazioni per noi.|{{0|prim_hunt|70|}}|{{N|guthbered_lookforsigns_5|||||}}|}; -{guthbered_lookforsigns_5|Molto bene, dovremo trovare un modo per sistemare la faccenda.||{{N|guthbered_lookforsigns_6|||||}}|}; -{guthbered_lookforsigns_6|Speravo che non sarebbero arrivati a questo. Non abbiamo altra scelta. Dobbiamo eliminare alla fonte il problema degli attacchi. Dobbiamo uccidere il loro maestro d\'armi, Harlenn.||{{N|guthbered_lookforsigns_7|||||}}|}; -{guthbered_lookforsigns_7|Questo sarebbe un buon compito per te, amico mio. Dal momento che hai accesso alle loro attrezzature, potresti entrare di nascosto e uccidere quel bastardo di Harlenn.||{{N|guthbered_lookforsigns_8|||||}}|}; -{guthbered_lookforsigns_8|Uccidendolo, avremmo la certezza che i loro attacchi sarebbero diciamo...senza mordente. He he he!||{{Nessun problema, è come fosse già morto.|guthbered_lookforsigns_9|||||}{Sei sicuro che la violenza sia la soluzione per risolvere questo conflitto?|guthbered_lookforsigns_10|||||}}|}; -{guthbered_lookforsigns_9|Eccellente, ritorna da me quando Harlenn è morto.|{{0|prim_hunt|80|}}||}; -{guthbered_lookforsigns_10|No, non proprio. Ma per ora sembra sia l\'unica soluzione possibile.||{{Lo eliminerò, ma cercherò di trovare una soluzione pacifica al problema.|guthbered_lookforsigns_9|||||}{Molto bene, fai finta che sia già morto.|guthbered_lookforsigns_9|||||}}|}; -{guthbered_workingforbwm_2|Le mie fonti all\'interno dell\'insediamento di Blackwater mi hanno riferito che stai lavorando per loro.||{{N|guthbered_workingforbwm_3|||||}}|}; -{guthbered_workingforbwm_3|Questa è una tua scelta, ma se stai lavorando per loro non sei il benvenuto a Prim. E\' meglio se te ne vai in fretta finché sei in tempo.|{{0|prim_hunt|251|}}||}; -{guthbered_completed|Ciao amico mio. Ancora grazie per il tuo aiuto nell\'aver sistemato la faccenda con Blackwater.||{{N|guthbered_completed_1|||||}}|}; -{guthbered_completed_1|Sono sicuro che ora tutti qui a Prim vorranno parlare con te.|{{0|prim_hunt|240|}}|{{N|guthbered_completed_2|||||}}|}; -{guthbered_completed_2|Grazie per il tuo aiuto.|{{0|bwm_agent|250|}}||}; -{guthbered_sentbybwm_1|La luce nei tuoi occhi mi spaventa.||{{Sono stato mandato dall\'insediamento Blackwater per fermarti.|guthbered_sentbybwm_fight|||||}{Sono stato mandato dall\'insediamento Blackwater per fermarti. Tuttavia ho deciso di non ucciderti.|guthbered_sentbybwm_3|||||}}|}; -{guthbered_sentbybwm_fight|Speravo di non dover arrivare a questo punto. Non sopravviverai a questo scontro. Un\'altra vita nelle mie mani.|{{0|bwm_agent|130|}}|{{Per l\'Ombra!|F|||||}{Parole coraggiose, vediamo se mantieni le promesse. |F|||||}{Fantastico! Non vedevo l\'ora di ucciderti.|F|||||}{Combattiamo!|F|||||}}|}; -{guthbered_sentbybwm_3|Mmh, interessante....per favore, continua.||{{E\' ovvio che questo conflitto può finire solo con altro spargimento di sangue, dovrebbe fermarsi ora.|guthbered_sentbybwm_4|||||}}|}; -{guthbered_sentbybwm_4|Qual è la tua proposta?||{{La mia proposta è di lasciare questo villaggio e trovare una nuova casa da qualche altra parte.|guthbered_sentbybwm_5|||||}}|}; -{guthbered_sentbybwm_5|Perché dovremmo farlo?||{{Questi due villaggi saranno sempre in conflitto. Se tu parti, penseranno di aver vinto e fermeranno i loro attacchi.|guthbered_sentbybwm_6|||||}}|}; -{guthbered_sentbybwm_6|Hm, potresti aver ragione.||{{N|guthbered_sentbybwm_7|||||}}|}; -{guthbered_sentbybwm_7|Ok, mi hai convinto, lascerò Prim per andare in un\'altra città. La sopravvivenza della mia gente è più importante di me.||{{N|guthbered_sentbybwm_leave|||||}}|}; -{guthbered_sentbybwm_leave|Grazie amico per avermi fatto ragionare.|{{0|bwm_agent|131|}}|{{Figurati.|R|||||}}|}; -{guthbered_killharl_1|Ciao, sei riuscito ad eliminare Harlenn dall\'insediamento di Blackwater?||{{Puoi rispiegarmi quello che dovrei fare?|guthbered_lookforsigns_6|||||}{Non ancora, ci sto lavorando.|guthbered_lookforsigns_9|||||}{Sì, è morto.|guthbered_killharl_2||harlenn_id|1|0|}{Sì, se n\'è andato.|guthbered_killharl_3|prim_hunt:91||||}}|}; -{guthbered_killharl_2|Sebbene ti sia grato per averlo ucciso, sono tuttavia dispiaciuto che si debba essere arrivati a questo.|{{0|prim_hunt|99|}}|{{N|guthbered_killharl_4|||||}}|}; -{guthbered_killharl_3|Davvero? Questa è veramente un\'ottima notizia.||{{N|guthbered_killharl_4|||||}}|}; -{guthbered_killharl_4|Con questo si spera che i loro attacchi verso il villaggio siano finiti.||{{N|guthbered_killharl_5|||||}}|}; -{guthbered_killharl_5|Non potrò mai ringraziarti abbastanza.||{{N|guthbered_killharl_6|||||}}|}; -{guthbered_killharl_6|Ora, ti prego di accettare questi oggetti come segno del nostro ringraziamento e prendi queste carte, potrebbero tornarti utili.|{{0|prim_hunt|100|}{1|guthbered_reward||}}|{{N|guthbered_killharl_7|||||}}|}; -{guthbered_killharl_7|Si tratta di un permesso che abbiamo...creato...il quale, secondo le nostre fonti, ti permetterà di accedere alla sala interna dell\'insediamento di Blackwater.||{{N|guthbered_killharl_8|||||}}|}; -{guthbered_killharl_8|Ora, diciamo che il permesso non è propriamente...originale...ma siamo sicuri che la guardia non noterà la differenza.||{{N|guthbered_killharl_9|||||}}|}; -{guthbered_killharl_9|In ogni caso, hai la mia più grande riconoscenza per quello che hai fatto per noi.||{{N|guthbered_completed_1|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{sign_blackwater10|NORD: Prim\nOVEST: Miniera di Elm\nEST: (Il testo è illeggibile a causa di profondi solchi nel legno.)\nSUD: Stoutford|||}; -{keyarea_bwm_agent_1|L\'uomo ti grida : Hei tu, per favore, aiutaci!|||}; -{sign_blackwater0|EST: Fallhaven\nSUD-OVEST: Stoutford\nNORD-EST: Montagna Blackwater|||}; -{sign_prim_n|Avviso a tutti i cittadini: A nessuno è permesso entrare nella miniera di notte! Inoltre, scalare il fianco della montagna è severamente vietato dopo l\'incidente con Lorn.|||}; -{sign_prim_s|Persone scomparse:\n-Duala\n-Lorn\n-Kamelio|||}; -{sign_blackwater13|Vietato entrare.\nFirmato Guthbered di Prim.|||}; -{sign_blackwater30|||{{|sign_blackwater30_qstarted|kazaul:10||||}{|sign_blackwater30_notstarted|||||}}|}; -{sign_blackwater30_qstarted|Trovi un pezzo di carta parzialmente congelato nella neve. Riesci a malapena a decifrare la frase \'Kazaul, profanatore del tempio di Elytharan\' dalla carta fradicia.\nQuesta deve essere la prima metà del canto per il rituale di Kazaul.|{{0|kazaul|21|}}||}; -{sign_blackwater30_notstarted|Trovi un pezzo di carta parzialmente congelato nella neve. Riesci a malapena a decifrare la frase \'Kazaul, profanatore del tempio di Elytharan\' dalla carta fradicia.|||}; -{sign_blackwater32|Il cartello è gravemente danneggiato da quelli che appaiono i morsi di una creatura con denti veramente affilati. Non riesci a distinguere cosa vi è scritto sopra.|||}; -{sign_blackwater38_1|||{{|sign_blackwater38_1_qstarted|kazaul:10||||}{|sign_blackwater38_notstarted|||||}}|}; -{sign_blackwater38_notstarted|Trovi un pezzo di carta che descrive un qualche tipo di rituale.|||}; -{sign_blackwater38_1_qstarted|Trovi un pezzo di carta che descrive l\'inizio di un qualche tipo di rituale.\nDeve trattarsi della prima parte del rituale di Kazaul.|{{0|kazaul|25|}}||}; -{sign_blackwater38_2|||{{|sign_blackwater38_2_qstarted|kazaul:10||||}{|sign_blackwater38_notstarted|||||}}|}; -{sign_blackwater38_2_qstarted|Trovi un pezzo di carta che descrive l\'inizio di un qualche tipo di rituale.\nQuesta deve essere la seconda parte del rituale di Kazaul.|{{0|kazaul|26|}}||}; -{sign_blackwater38_3|||{{|sign_blackwater38_3_qstarted|kazaul:10||||}{|sign_blackwater38_notstarted|||||}}|}; -{sign_blackwater38_3_qstarted|Trovi un pezzo di carta che descrive l\'inizio di un qualche tipo di rituale.\nQuesta deve essere la terza parte del rituale di Kazaul.|{{0|kazaul|27|}}||}; -{sign_blackwater16|||{{|sign_blackwater16_qstarted|kazaul:10||||}{|sign_blackwater16_notstarted|||||}}|}; -{sign_blackwater16_qstarted|Trovi un pezzo di carta strappato incastrato nei cespugli. Sulla carta si riesce a malapena a distinguere la frase \'Kazaul, distruttore di sogni luminosi\'.\nQuesta deve essere la seconda metà del canto per il rituale di Kazaul.|{{0|kazaul|22|}}||}; -{sign_blackwater16_notstarted|Trovi un pezzo di carta strappato incastrato nei cespugli. Sulla carta si riesce a malapena a distinguere la frase \'Kazaul, distruttore di sogni luminosi\'.|||}; -{bwm_sleephall_1|Non puoi riposare qui, solo ai residenti o agli alleati fidati di Blackwater è permesso riposare qui.|||}; -{keyarea_bwm_agent_60|Devi parlare con quell\'uomo per poter andare oltre.|||}; -{sign_blackwater50_left|Questo portale conduce alla foresta davanti a Prim.|||}; -{sign_blackwater50_right|Questo portale riconduce all\'insediamento di Blackwater.|||}; -{sign_blackwater29|||{{|sign_blackwater29_qstarted|bwm_agent:95||||}{|sign_blackwater29_notstarted|||||}}|}; -{sign_blackwater29_qstarted|Cerchi di farti notare il meno possibile per passare inosservato dalle guardie mentre cerchi fra la pila di documenti.||{{N|sign_blackwater29_qstarted_1|||||}}|}; -{sign_blackwater29_notstarted|La guardia davanti a te grida:\n\nHey tu, vattene di lì!!|||}; -{sign_blackwater29_qstarted_1|Tra le carte, scopri i piani per il reclutamento di combattenti mercenari per Prim e per l\'addestramento volto ad un grande attacco all\'insediamento sulla montagna Blackwater.|{{0|bwm_agent|100|}}|{{N|sign_blackwater29_qstarted_2|||||}}|}; -{sign_blackwater29_qstarted_2|Questa deve essere l\'informazione che Harlenn sta cercando.|||}; -{sign_blackwater45|||{{|sign_blackwater45_qstarted|prim_hunt:50||||}{|sign_blackwater45_notstarted|||||}}|}; -{sign_blackwater45_qstarted|Cerchi di farti notare il meno possibile per passare inosservato dalle guardie mentre cerchi fra la pila di documenti.||{{N|sign_blackwater45_qstarted_1|||||}}|}; -{sign_blackwater45_notstarted|Non appena passi vicino al tavolo la guardia davanti a te grida:\n\nHey tu, vattene di lì!|||}; -{sign_blackwater45_qstarted_1|Tra le carte scopri quelli che sembrano piani di addestramento di guerrieri e piani per un futuro attacco a Prim.|{{0|prim_hunt|60|}}|{{N|sign_blackwater45_qstarted_2|||||}}|}; -{sign_blackwater45_qstarted_2|Questa sembra l\'informazione che Guthbered sta voleva.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{harlenn_start|||{{|harlenn_sentbyprim_8|prim_hunt:91||||}{|harlenn_sentbyprim_2|prim_hunt:90||||}{|harlenn_sentbyprim_1|prim_hunt:80||||}{|harlenn_return_1|bwm_agent:251||||}{|harlenn_return_1|bwm_agent:250||||}{|harlenn_completed|bwm_agent:150||||}{|harlenn_killguth_3|bwm_agent:149||||}{|harlenn_workingforprim_1|prim_hunt:50||||}{|harlenn_killguth_1|bwm_agent:120||||}{|harlenn_lookforsigns_1|bwm_agent:95||||}{|harlenn_return_3|bwm_agent:70||||}{|harlenn_return_2|bwm_agent:65||||}{|harlenn_1|||||}}|}; -{harlenn_1|Benvenuto viandante.||{{N|harlenn_2|||||}}|}; -{harlenn_2|Devi essere il ragazzo di cui ho sentito parlare, quello che è salito dal fianco della montagna.||{{N|harlenn_3|||||}}|}; -{harlenn_3|Abbiamo bisogno del tuo aiuto per risolvere alcuni...problemi.||{{Chi sei tu?|harlenn_4|||||}}|}; -{harlenn_4|Oh scusa, non mi sono presentato correttamente: sono Harlenn il maestro d\'armi dell\'insediamento di Blackwater.||{{Mi è stato detto di cercarti dalla guida che mi ha portato sulla montagna.|harlenn_5|||||}}|}; -{harlenn_5|Oh bene, che fortuna che ti ha trovato! Raramente scendiamo dalla montagna.||{{N|harlenn_6|||||}}|}; -{harlenn_6|La maggior parte del tempo la passiamo quassù nell\'insediamento.||{{N|harlenn_7|||||}}|}; -{harlenn_7|Tuttavia, gli ultimi avvenimenti ci hanno costretto a scendere per chiedere aiuto. E siamo stati fortunati ad incontrare te.||{{A quali problemi ti riferisci?|harlenn_8|||||}{Cosa sta succedendo qui?|harlenn_8|||||}}|}; -{harlenn_8|Sono sicuro che hai notato il problema venendo qui. I mostri ovviamente.||{{N|harlenn_9|||||}}|}; -{harlenn_9|Quelle bestie maledette, fuori dal nostro insediamento. I dragoni bianchi e gli Aulaeth. E i loro addestratori sono ancora più letali.||{{Quelli? Non mi hanno creato fastidi!|harlenn_11|||||}{Intuisco dove vuoi arrivare. Credo che tu abbia bisogno di me per affrontarli, o no?|harlenn_10|||||}{Perlomeno non sono niente a confronto di quelle bestie, i Gornaud, ai piedi della montagna.|harlenn_12|||||}}|}; -{harlenn_10|Beh sì, ma ucciderli non serve a molto. Abbiamo provato, ma continuano a tornare.||{{N|harlenn_13|||||}}|}; -{harlenn_11|Sembri il tipo che fa al caso mio!||{{N|harlenn_13|||||}}|}; -{harlenn_12|Gornaud? Non ho mai sentito parlare di loro, ma sono sicuro che non possono essere peggio delle bestie che ci sono qui!||{{N|harlenn_13|||||}}|}; -{harlenn_13|In ogni caso, le bestie ci stanno decimando. Ma non sono la nostra unica preoccupazione.||{{N|harlenn_14|||||}}|}; -{harlenn_14|Oltre questo, subiamo continui attacchi da parte di quei bastardi del villaggio di Prim alla base della montagna.|{{0|bwm_agent|65|}}|{{N|harlenn_15|||||}}|}; -{harlenn_15|Oh quei traditori, falsi e bastardi!||{{Che cosa hanno fatto?|harlenn_16|||||}{Ho parlato con Guthbered a Prim. Dice che siete voi ad attaccare loro e che siete sempre voi dietro gli attacchi dei Gornaud a Prim. |harlenn_prim_1|prim_hunt:25||||}{Posso fare qualcosa per aiutarti?|harlenn_18|||||}}|}; -{harlenn_16|Vengono di notte a sabotare i nostri rifornimenti.||{{N|harlenn_17|||||}}|}; -{harlenn_17|Siamo certi che ci siano loro dietro quei mostri.|{{0|bwm_agent|66|}}|{{Ho parlato con Guthbered a Prim. Dice che siete voi ad attaccare loro e che siete sempre voi dietro gli attacchi dei Gornaud a Prim.|harlenn_prim_1|prim_hunt:25||||}{Posso fare qualcosa per aiutarti?|harlenn_18|||||}}|}; -{harlenn_18|Certo, se ti senti all\'altezza.||{{N|harlenn_19|||||}}|}; -{harlenn_19|Considerando che sei arrivato fino a qui vivo, sono piuttosto sicuro che tu sia in grado di cavartela.||{{N|harlenn_20|||||}}|}; -{harlenn_prim_1|Noi!? Hah! È questo che ti hanno detto? Sono sempre pronti a mentire per ottenere quello che vogliono, sicuramente non siamo noi ad attaccare loro.||{{N|harlenn_prim_2|||||}}|}; -{harlenn_prim_2|E ovviamente sono loro che causano tutti i problemi.|{{0|prim_hunt|30|}}|{{N|harlenn_prim_3|||||}}|}; -{harlenn_prim_3|Hanno addirittura catturato uno dei nostri esploratori! Chissà cosa ne hanno fatto.||{{N|harlenn_prim_3_1|||||}}|}; -{harlenn_prim_3_1|||{{|X|bwm_agent:90||||}{|X|bwm_agent:251||||}{|X|bwm_agent:250||||}{|harlenn_prim_4|||||}}|}; -{harlenn_prim_4|Ti avviso, sono dei traditori e bugiardi.||{{Certo, ti credo. Cosa ti serve da me?|harlenn_prim_6|||||}{Cosa ne guadagnerei aiutando voi anziché loro? |harlenn_prim_5|||||}{Non la bevo. Penso che aiuterò il popolo di Prim e non voi.|harlenn_prim_7|||||}}|}; -{harlenn_prim_5|Guadagno? La nostra fiducia, è ovvio! Inoltre saresti sempre il benvenuto nel nostro accampamento. I nostri commercianti hanno delle attrezzature veramente buone.||{{Ok, vi aiuterò a trattare con loro.|harlenn_prim_6|||||}{Non sono ancora pienamente convinto, ma per ora ti aiuterò.|harlenn_prim_6|||||}}|}; -{harlenn_prim_6|Bene, ci serve un guerriero in grado di fronteggiare i mostri e i banditi di Prim.||{{N|harlenn_19|||||}}|}; -{harlenn_prim_7|Bah, sei inutile per me. Perché sei venuto qui a farmi perdere tempo? Sparisci.|{{0|bwm_agent|250|}}||}; -{harlenn_20|Ok, questo è il piano: voglio che tu vada a parlare con Guthbered a Prim per dargli il nostro ultimatum:||{{N|harlenn_21|||||}}|}; -{harlenn_21|O fermano i loro attacchi, o li sistemeremo noi.||{{Certo, porterò loro il vostro ultimatum.|harlenn_22|||||}{No. A dire il vero credo che dovrei aiutare le persone di Prim.|harlenn_prim_7|||||}}|}; -{harlenn_22|Bene, ora affrettati. Non sappiamo fra quanto tempo attaccheranno nuovamente.|{{0|bwm_agent|70|}}||}; -{harlenn_return_1|Ancora tu? Non voglio aver nulla a che fare con te. Non seccarmi.||{{Perché il tuo popolo sta attaccando il villaggio di Prim?|harlenn_prim_1|prim_hunt:25||||}}|}; -{harlenn_return_2|Bentornato viaggiatore, a cosa stai pensando?||{{Ho parlato con Guthbered a Prim. Dice che siete voi ad attaccarli e che ci siete sempre voi dietro gli attacchi dei Gornaud a Prim.|harlenn_prim_1|prim_hunt:25||||}{Cosa hai detto prima a proposito dei mostri che stanno attaccando il vostro insediamento?|harlenn_9|||||}}|}; -{harlenn_return_3|Bentornato viaggiatore. Hai parlato con quel bugiardo di Guthbered laggiù a Prim?||{{Cosa dovrei fare di nuovo?|harlenn_20|||||}{No, non ancora.|harlenn_22|||||}{Si, ho parlato con lui. Egli nega di essere dietro a qualsiasi attacco.|harlenn_talkedto_guth_1|bwm_agent:80||||}{Ho parlato a Guthbered a Prim. Dice che siete voi ad attaccarli e che ci siete sempre voi dietro gli attacchi dei Gornaud a Prim.|harlenn_prim_1|prim_hunt:25||||}}|}; -{harlenn_workingforprim_1|I miei informatori mi hanno dato una notizia mooolto interessante, dicono che stai lavorando per Prim.||{{N|harlenn_workingforprim_2|||||}}|}; -{harlenn_workingforprim_2|Non è accettabile che tu stia qui, non possiamo avere una spia nell\'insediamento. Ti consiglio di andartene mentre sei ancora in tempo, traditore.|{{0|bwm_agent|251|}}||}; -{harlenn_completed|Grazie, amico. Il tuo aiuto è molto apprezzato, ora tutti nell\'insediamento parleranno con te molto volentieri.|{{0|bwm_agent|240|}}|{{N|harlenn_completed_1|||||}}|}; -{harlenn_completed_1|Sono sicuro, ora che abbiamo ucciso le ultime bestie fuori dall\'insediamento, che gli attacchi dei mostri si fermeranno.|{{0|prim_hunt|250|}}||}; -{harlenn_talkedto_guth_1|Lui nega?! Bah, quello sciocco traditore. Avrei dovuto saperlo che non avrebbe osato dire la verità.||{{N|harlenn_talkedto_guth_2|||||}}|}; -{harlenn_talkedto_guth_2|Sono ancora sicuro che in qualche modo siano loro dietro questi attacchi contro di noi. Chi altro potrebbe esserci? Non ci sono altri insediamenti da queste parti.||{{N|harlenn_talkedto_guth_3|||||}}|}; -{harlenn_talkedto_guth_3|Inoltre, sono sempre stati dei traditori. No, ci sono per forza loro dietro gli attacchi.|{{0|bwm_agent|90|}}|{{N|harlenn_talkedto_guth_4|||||}}|}; -{harlenn_talkedto_guth_4|Ok, questo non ci lascia altra scelta, dobbiamo portare questa storia ad un altro livello.||{{N|harlenn_talkedto_guth_5|||||}}|}; -{harlenn_talkedto_guth_5|Sei sicuro di essere pronto? Non sei una di quelle spie vero? Se per caso stai lavorando per conto loro, sappi che sono persone di cui non ci si può fidare.||{{Sono pronto a tutto. Aiuterò il vostro insediamento.|harlenn_talkedto_guth_7|||||}{In realtà ora che me lo dici...|harlenn_talkedto_guth_6|prim_hunt:25||||}{Si, sto lavorando per Prim! Sembrano delle brave persone.|harlenn_prim_7|prim_hunt:25||||}}|}; -{harlenn_talkedto_guth_6|Cosa? Stai lavorando per loro o no?||{{No, non importa. Sono pronto ad aiutare il vostro insediamento.|harlenn_talkedto_guth_7|||||}{Stavo lavorando per loro, ma poi ho deciso di aiutare voi!|harlenn_talkedto_guth_7|||||}{Sì, li sto aiutando a liberarsi di voi.|harlenn_prim_7|||||}}|}; -{harlenn_talkedto_guth_7|Bene.||{{N|harlenn_talkedto_guth_8|||||}}|}; -{harlenn_talkedto_guth_8|Crediamo che si stiano preparando ad attaccarci da un momento all\'altro, ma non abbiamo prove per dimostrarlo.||{{N|harlenn_talkedto_guth_9|||||}}|}; -{harlenn_talkedto_guth_9|Per questo penso che solo un forestiero come te possa aiutarci.||{{N|harlenn_talkedto_guth_10|||||}}|}; -{harlenn_talkedto_guth_10|Voglio che tu vada a Prim a cercare qualsiasi indizio che porti ad un piano per attaccarci.||{{Certo, sembra facile.|harlenn_talkedto_guth_11|||||}}|}; -{harlenn_talkedto_guth_11|Bene, cerca di non essere scoperto! Dovresti cercare indizi dove staziona quel bugiardo di Guthbered.|{{0|bwm_agent|95|}}||}; -{harlenn_lookforsigns_1|Ciao, hai trovato qualche prova sul piano di attacco di Prim?||{{No, non ancora.|harlenn_lookforsigns_2|||||}{Si, ho trovato dei piani che parlano di reclutare mercenari per attaccarvi.|harlenn_lookforsigns_3|bwm_agent:100||||}{Cosa dovrei fare ancora?|harlenn_talkedto_guth_8|||||}}|}; -{harlenn_lookforsigns_2|Continua a cercare, sono certo che stanno tramando qualcosa.|||}; -{harlenn_lookforsigns_3|Lo sapevo! Sapevo che stavano architettando qualcosa.||{{N|harlenn_lookforsigns_4|||||}}|}; -{harlenn_lookforsigns_4|Oh, quel maiale bugiardo di Guthbered.||{{N|harlenn_lookforsigns_5|||||}}|}; -{harlenn_lookforsigns_5|Comunque, grazie per l\'aiuto nel cercare queste prove.|{{0|bwm_agent|110|}}|{{N|harlenn_lookforsigns_6|||||}}|}; -{harlenn_lookforsigns_6|Prenderemo misure drastiche. Dobbiamo agire prima che riescano ad attuare il loro piano.||{{N|harlenn_lookforsigns_7|||||}}|}; -{harlenn_lookforsigns_7|Un vecchio mito narra di come \'l\'unico modo per uccidere Medusa è tagliarle la testa\', in questo caso la testa di Prim è Guthbered.||{{N|harlenn_lookforsigns_8|||||}}|}; -{harlenn_lookforsigns_8|Dovremmo sistemarlo in qualche modo. Hai dimostrato il tuo valore finora, questo sarà il tuo compito finale.||{{N|harlenn_lookforsigns_9|||||}}|}; -{harlenn_lookforsigns_9|Voglio che tu vada ad affrontare Guthbered. Preferibilmente nel modo più doloroso e atroce che conosci.||{{Nessun problema.|harlenn_lookforsigns_11|||||}{Sei sicuro che la via della violenza sia quella giusta per risolvere questo conflitto?|harlenn_lookforsigns_10|||||}{Consideralo già morto!|harlenn_lookforsigns_11|||||}}|}; -{harlenn_lookforsigns_10|Hai visto i loro piani tu stesso. Se non facciamo qualcosa presto ci attaccheranno. È ovvio che dobbiamo ucciderlo!||{{Ve lo toglierò di torno, ma cercherò una soluzione pacifica per farlo.|harlenn_lookforsigns_12|||||}{Molto bene, consideralo già morto.|harlenn_lookforsigns_11|||||}}|}; -{harlenn_lookforsigns_11|Eccellente, ritorna da me quando l\'impresa sarà compiuta.|{{0|bwm_agent|120|}}||}; -{harlenn_lookforsigns_12|Bene. Toglilo di mezzo come meglio credi, l\'importante è che questi attacchi terminino.|{{0|bwm_agent|120|}}||}; -{harlenn_sentbyprim_1|La tua espressione mi dice che la sete di sangue anima le tue gesta.||{{Sono stato mandato dal popolo di Prim per fermarti.|harlenn_sentbyprim_2|||||}{Sono stato mandato dal popolo di Prim per fermarti. Nonostante ciò, ho deciso di lasciarti in vita.|harlenn_sentbyprim_3|||||}}|}; -{harlenn_sentbyprim_2|Fermare me? Ha ha. Molto bene, vediamo chi sarà ad essere fermato fra noi!|{{0|prim_hunt|90|}}|{{Per l\'Ombra!|F|||||}{Combatti!|F|||||}}|}; -{harlenn_sentbyprim_3|Interessante... continua per favore.||{{E\' ovvio che questo conflitto porterà solamente altri spargimenti di sangue. Dovrebbe fermarsi adesso.|harlenn_sentbyprim_4|||||}}|}; -{harlenn_sentbyprim_4|Cosa proponi?||{{Ti propongo di lasciare l\'insediamento e trovarti una casa altrove.|harlenn_sentbyprim_5|||||}}|}; -{harlenn_sentbyprim_5|Perché dovrei farlo?||{{Questi due villaggi saranno sempre in conflitto ma se tu partissi, penserebbero di aver vinto e cesserebbero i loro attacchi.|harlenn_sentbyprim_6|||||}}|}; -{harlenn_sentbyprim_6|Hm, potresti avere ragione.||{{N|harlenn_sentbyprim_7|||||}}|}; -{harlenn_sentbyprim_7|Ok, mi hai convinto. Lascerò questo insediamento. La sopravvivenza della mia gente è più importante di me.||{{N|harlenn_sentbyprim_8|||||}}|}; -{harlenn_sentbyprim_8|Grazie amico, le tue parole mi hanno fatto capire.|{{0|prim_hunt|91|}}|{{Prego.|R|||||}}|}; -{harlenn_killguth_1|Ciao, sei riuscito a sbarazzarti di quel bugiardo di Guthbered giù a Prim?||{{Non ancora, ma ci sto lavorando.|harlenn_lookforsigns_11|||||}{Cosa dovrei fare di nuovo?|harlenn_lookforsigns_7|||||}{Sì, è morto.|harlenn_killguth_2||guthbered_id|1|0|}{Sì, se n\'è andato.|harlenn_killguth_2|bwm_agent:131||||}}|}; -{harlenn_killguth_2|Ha ha! Finalmente è sparito! Ora possiamo stare tranquilli nell\'insediamento.|{{0|bwm_agent|149|}}|{{N|harlenn_killguth_3|||||}}|}; -{harlenn_killguth_3|Non ci attaccheranno più ora che il loro leader non c\'è più!||{{N|harlenn_killguth_4|||||}}|}; -{harlenn_killguth_4|Grazie amico, questi oggetti sono il segno della nostra riconoscenza.|{{0|bwm_agent|150|}{1|harlenn_reward||}}|{{N|harlenn_completed|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{blackwater_entranceguard|Oh, un nuovo arrivato. Stupendo. Spero che tu sia qui per aiutarci.||{{N|blackwater_guard1|||||}}|}; -{blackwater_guard1|Stai lontano dai guai e i guai staranno lontani da te.|||}; -{blackwater_guest1|Grandioso questo posto, non è vero?|||}; -{blackwater_guest2|Genteee. Le pozioni di Mazeg ti fanno sentire frizzante e buffo!|||}; -{blackwater_cook|Fuori dalla mia cucina! Prendi un posto e verrò a servirti tra poco.|||}; -{keneg|Picchiano. Ansimano.||{{N|keneg_1|||||}}|}; -{keneg_1|Devo andarmene!||{{N|keneg_2|||||}}|}; -{keneg_2|I mostri, vengono di notte.||{{N|keneg_3|||||}}|}; -{keneg_3|*visibilmente nervoso*\nDevo nascondermi.|||}; -{blackwater_notrust|Ad ogni modo non posso aiutarti. I miei servizi sono riservati solamente agli abitanti della montagna Blackwater, non mi fido ancora abbastanza di te.|||}; -{waeges|||{{|waeges_1|bwm_agent:240||||}{|waeges_2|||||}}|}; -{waeges_1|Ciao amico, cosa posso fare per te?||{{Quali armi hai in vendita?|S|||||}}|}; -{waeges_2|Benvenuto viaggiatore, vedo che stai osservando la mia fornitura di armi.||{{N|blackwater_notrust|||||}}|}; -{blackwater_fighter|Non ho tempo per te ragazzo, devo allenarmi.|||}; -{ungorm|...ma mentre le forze si ritiravano, la maggior parte di...||{{N|ungorm_1|||||}}|}; -{ungorm_1|Oh. Un ragazzo. Ciao. Cerca di non disturbare i miei studenti durante le lezioni.|||}; -{blackwater_pupil|Mi dispiace, non posso parlare ora.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{laede|||{{|laede_1|bwm_agent:240||||}{|laede_3|||||}}|}; -{laede_1|Puoi riposare qui se vuoi, scegli il letto che desideri.|{{0|nondisplay|16|}}|{{N|laede_2|||||}}|}; -{laede_2|Ti avverto però che quello laggiù nell\'angolo ha un puzzo di marcio allucinante, qualcuno deve averci rovesciato sopra qualcosa.|||}; -{laede_3|Benvenuto viaggiatore, questi letti sono solo per i residenti della montagna Blackwater.|||}; -{iducus|||{{|iducus_1|bwm_agent:240||||}{|iducus_2|||||}}|}; -{iducus_1|Benvenuto amico, come posso aiutarti?||{{Che cosa hai da vendere?|S|||||}}|}; -{iducus_2|Benvenuto viaggiatore. Vedo che state osservando la mia vasta mercanzia.||{{N|blackwater_notrust|||||}}|}; -{blackwater_priest|...Kazaul, distruttore di speranze sprecate...\nNo, non faceva così.||{{N|blackwater_priest_1|||||}}|}; -{blackwater_priest_1|tormenti..sprecati?\nNo, non è nemmeno questo.||{{N|blackwater_priest_2|||||}}|}; -{blackwater_priest_2|Argh, non riesco proprio a ricordare.||{{Cosa stai facendo?|blackwater_priest_3|||||}}|}; -{blackwater_priest_3|Oh non importa, niente. Sto solo cercando di ricordare una cosa. Non preoccuparti per questo.|||}; -{blackwater_guard2|Alt! Ti consiglio di non andare oltre.||{{N|blackwater_guard2_1|||||}}|}; -{blackwater_guard2_1|C\'è qualcosa laggiù, lo vedi?||{{N|blackwater_guard2_2|||||}}|}; -{blackwater_guard2_2|Nebbia? Ombra? Sono sicuro di aver visto qualcosa muoversi.||{{N|blackwater_guard2_3|||||}}|}; -{blackwater_guard2_3|Al diavolo \'sta cosa del turno di guardia. Io me ne sto qui dietro.||{{N|blackwater_guard2_4|||||}}|}; -{blackwater_guard2_4|È una buona cosa che almeno abbiamo bloccato l\'entrata da quella vecchia baracca.|||}; -{blackwater_bossguard|||{{|blackwater_bossguard_2|prim_hunt:90||||}{|blackwater_bossguard_1|||||}}|}; -{blackwater_bossguard_1|(La guardia ti dà uno sguardo accondiscendente, ma non dice nulla.)|||}; -{blackwater_bossguard_2|Hey, io voglio restare fuori dalla tua lotta con il capo! Non coinvolgermi!|||}; -{blackwater_throneguard|||{{|blackwater_throneguard_5|bwm_agent:240||||}{|blackwater_throneguard_5|prim_hunt:140||||}{|blackwater_throneguard_1|||||}}|}; -{blackwater_throneguard_1|Solo gli abitanti della montagna Blackwater possono entrare!||{{Ecco, ho un permesso scritto per poter entrare.|blackwater_throneguard_3||bwm_permit|1|0|}}|}; -{blackwater_throneguard_2|Ok, ti farò passare. Procedi sempre dritto, prego.||{{Grazie.|R|||||}{Sì, togliti di mezzo.|R|||||}}|}; -{blackwater_throneguard_3|Un permesso dici? Fammi vedere.|{{0|prim_hunt|140|}}|{{N|blackwater_throneguard_4|||||}}|}; -{blackwater_throneguard_4|Beh, ha la firma e tutto il resto. Credo che sia tutto in ordine.||{{N|blackwater_throneguard_2|||||}}|}; -{blackwater_throneguard_5|Oh, sei tu.||{{N|blackwater_throneguard_2|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{herec_start|||{{|herec_q5|bwm_wyrms:30||||}{|herec_q3|bwm_wyrms:20||||}{|herec_q1|bwm_wyrms:10||||}{|herec_1|||||}}|}; -{herec_1|Benvenuto viaggiatore. Devi essere quello di cui ho sentito parlare, quello che è salito sulla montagna.||{{N|herec_2|||||}}|}; -{herec_2|Saresti disposto ad aiutarmi con un compito?||{{Dipende, quale compito?|herec_4|||||}{Perché dovrei aiutarti?|herec_3|||||}}|}; -{herec_3|Ah, un negoziatore. Mi piaci. Se mi aiuti, dividerò i frutti del mio lavoro con te. Dovrebbero valere molto per te.||{{Bene, di cosa hai bisogno?|herec_4|||||}{No, come posso accettare qualcosa se non so di cosa si tratta?|herec_11|||||}}|}; -{herec_4|E\' davvero semplice. Sto studiando questi dragoni che stanno in agguato qui fuori dall\'insediamento. Sto cercando di trovare i loro punti di forza per usarli a mio vantaggio.||{{N|herec_5|||||}}|}; -{herec_5|Ma la mia bravura sta nell\'analisi e non nel trovarmi faccia a faccia con quelle creature.||{{N|herec_6|||||}}|}; -{herec_6|Ed è qui che entri in gioco tu.||{{N|herec_7|||||}}|}; -{herec_7|Ho bisogno che tu raccolga alcuni campioni per me. Ho sentito che alcuni dragoni bianchi hanno artigli più affilati che possono essere estratti al momento della loro morte.||{{N|herec_8|||||}}|}; -{herec_8|Se tu riuscissi a portarmi qualche artiglio di dragone bianco, potrei veramente velocizzare la mia ricerca. ||{{N|herec_9|||||}}|}; -{herec_9|Diciamo che 5 artigli dovrebbero essere sufficienti.||{{Ok si può fare, ti farò avere 5 artigli di dragone bianco.|herec_10|||||}{Certo, quelle bestie non sono un problema per me.|herec_10|||||}{Non mi avvicinerò mai più a quelle bestie, per nessun motivo al mondo.|herec_11|||||}}|}; -{herec_10|Ottimo, fai più in fretta possibile in modo che io possa continuare i miei esperimenti.|{{0|bwm_wyrms|10|}}||}; -{herec_11|Ti assicuro che la mia ricerca è veramente importante, ma la scelta è tua e anche la perdita.|||}; -{herec_q1|Bentornato, come sta andando la ricerca?||{{Cosa dovrei fare di nuovo?|herec_4|||||}{Non ho ancora trovato tutto, ma ci sto lavorando.|herec_10|||||}{Ho trovato quello che hai chiesto.|herec_q2||bwm_claws|5|0|}}|}; -{herec_q2|Ben fatto amico mio! Questi saranno molto importanti per la mia ricerca.|{{0|bwm_wyrms|20|}}|{{N|herec_q2_2|||||}}|}; -{herec_q2_2|Torna fra pochi minuti e avrò qualcosa per te.|||}; -{herec_q3|Bentornato amico mio! Ho buone notizie. Ho distillato con successo i frammenti degli artigli che mi hai portato.||{{N|herec_q4|||||}}|}; -{herec_q4|Ora sono in grado di creare pozioni che contengono l\'essenza dei dragoni bianchi. Queste pozioni saranno molto utili negli scontri futuri con questi mostri.|{{0|bwm_wyrms|30|}}|{{N|herec_q5|||||}}|}; -{herec_q5|Vorresti comprare delle pozioni?||{{Certo, fammi vedere che cos\'hai.|S|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bjorgur_start|||{{|bjorgur_return_1|bjorgur_grave:50||||}{|bjorgur_return_2|bjorgur_grave:15||||}{|bjorgur_1|||||}}|}; -{bjorgur_return_1|Ciao, ti ringrazio ancora per avermi aiutato con la faccenda della tomba della mia famiglia.|||}; -{bjorgur_return_2|Ciao, hai scoperto se è successo qualcosa alla tomba della mia famiglia?||{{No, non ancora.|bjorgur_9|||||}{(Menzogna) Sono andato a controllare, ma alla tomba sembra tutto normale, devi esserti sbagliato.|bjorgur_return_3|bjorgur_grave:60||||}{Cosa dovrei fare di nuovo?|bjorgur_3|||||}{Sì, ho ucciso il ladro e ho rimesso a posto il pugnale.|bjorgur_complete_1|bjorgur_grave:40||||}}|}; -{bjorgur_1|Ciao, non sai nulla di una tomba a Sud-Ovest di Prim vero?||{{Ci sono stato, ho incontrato qualcuno nei livelli più bassi.|bjorgur_2|bjorgur_grave:30||||}{Cosa mi puoi dire a proposito?|bjorgur_3|||||}{No, mi spiace.|bjorgur_3|||||}}|}; -{bjorgur_2|Tu sei stato lì?||{{N|bjorgur_3|||||}}|}; -{bjorgur_3|La tomba della mia famiglia si trova a sud-ovest di Prim, proprio fuori dalla miniera di Elm. Temo che sia successo qualcosa là!||{{N|bjorgur_4|||||}}|}; -{bjorgur_4|Vedi, mio nonno era molto affezionato a un pugnale di molto valore che la nostra famiglia possedeva. Lo portava sempre con sè.||{{N|bjorgur_5|||||}}|}; -{bjorgur_5|Il pugnale attirerebbe molti cacciatori di tesori, ma fino ad ora tutto è sempre stato tranquillo.||{{N|bjorgur_6|||||}}|}; -{bjorgur_6|Ora ho paura che sia successo qualcosa alla tomba, sono due notti che non riesco a dormire, e questa ne deve essere la causa.|{{0|bjorgur_grave|10|}}|{{N|bjorgur_7|||||}}|}; -{bjorgur_7|Andresti alla tomba per vedere che tutto sia a posto?||{{Certo, andrò a controllare che alla tomba sia tutto a posto.|bjorgur_8|||||}{Un tesoro dici? Mi interessa.|bjorgur_8|||||}{Sono già stato lì e ho rimesso il pugnale al suo posto.|bjorgur_complete_2|bjorgur_grave:40||||}}|}; -{bjorgur_8|Grazie, vai a controllare alla tomba che tutto sia a posto, quella potrebbe essere la causa delle mie ansie notturne.|{{0|bjorgur_grave|15|}}|{{N|bjorgur_9|||||}}|}; -{bjorgur_return_3|Non hai visto nulla? Eppure ero convinto che laggiù stesse succedendo qualcosa, in ogni caso, grazie per essere andato a controllare al posto mio.|||}; -{bjorgur_9|Cerca di fare in fretta, torna qui quando scopri qualcosa.|||}; -{bjorgur_complete_1|Un intruso? Grazie per aver sistemato la cosa.||{{N|bjorgur_complete_2|||||}}|}; -{bjorgur_complete_2|Hai rimesso il pugnale nel suo posto originale? Grazie, ora sicuramente riuscirò a dormire la notte.||{{N|bjorgur_complete_3|||||}}|}; -{bjorgur_complete_3|Grazie ancora, purtroppo non posso ricompensarti con nulla se non con la mia gratitudine. Dovresti andare a trovare i miei parenti a Feygard se ti capitasse di viaggiare fin là.|{{0|bjorgur_grave|50|}}||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bjorgur_bandit|Hey tu! Non dovresti essere qui, questo pugnale è mio, vattene!|{{0|bjorgur_grave|30|}}|{{Ok, me ne vado.|X|||||}{Hei, quel pugnale è veramente bello.|F|||||}}|}; -{sign_bwm35|||{{|sign_bwm35_1|bjorgur_grave:40||||}{|sign_bwm35_2|||||}}|}; -{sign_bwm35_1|Si vedono i resti di un equipaggiamento arrugginito e del cuoio marcio.|||}; -{sign_bwm35_2|Si vedono i resti di un equipaggiamento arrugginito e del cuoio marcio. Qualcosa sembra essere stato recentemente rimosso da qui dato che da una parte manca completamente la polvere.\n\nLa mancanza di polvere ha generato l\'esatta forma di un pugnale. Ci deve essere stato un pugnale qui prima che qualcuno lo togliesse.||{{Rimetti il pugnale nel suo posto originale.|sign_bwm35_3||bjorgur_dagger|1|0|}}|}; -{sign_bwm35_3|Rimetti il pugnale tra l\'equipaggiamento, dove sembrava essere prima.|{{0|bjorgur_grave|40|}}||}; -{fulus_start|||{{|fulus_return_1|bjorgur_grave:60||||}{|fulus_return_3|bjorgur_grave:51||||}{|fulus_return_2|bjorgur_grave:20||||}{|fulus_1|||||}}|}; -{fulus_return_1|Ciao, grazie ancora per avermi fatto ottenere quel pugnale prima.|||}; -{fulus_return_2|Ciao, sei riuscito a recuperare il pugnale dalla tomba della famiglia di Bjorgur?||{{No, non ancora.|fulus_9|||||}{Ho deciso di aiutare Bjorgur.|fulus_return_3|bjorgur_grave:40||||}{Cosa dovrei fare di nuovo?|fulus_3|||||}{Si, ce l\'ho.|fulus_complete_1||bjorgur_dagger|1|0|}}|}; -{fulus_return_3|Cosa?! Sigh. Stupido ragazzino, quel pugnale vale una fortuna, saremmo potuti diventare ricchi ti dico!|{{0|bjorgur_grave|51|}}||}; -{fulus_1|Ciao, sembri proprio il tipo giusto per me.||{{N|fulus_2|||||}}|}; -{fulus_complete_1|Oh wow, sei già riuscito a prendere il pugnale? Grazie ragazzo, vale molto, prendi queste monete come ricompensa!|{{0|bjorgur_grave|60|}{1|fulus_reward||}}|{{N|fulus_complete_2|||||}}|}; -{fulus_complete_2|Grazie ancora. Ora, vediamo...a quanto riusciamo a vendere questo pugnale...|||}; -{fulus_2|Saresti interessato a una proposta di lavoro?||{{Certo, quale proposta?|fulus_3|||||}{Se mi porta qualche guadagno, certo che mi interessa.|fulus_3|||||}{Non credo che tu possa avere qualcosa di buono da offrirmi, comunque sentiamo...|fulus_3|||||}}|}; -{fulus_3|Qualche tempo fa, ho sentito di un certo pugnale che una famiglia era solita possedere qui a Prim.||{{N|fulus_4|||||}}|}; -{fulus_9|Ora sbrigati. Ho bisogno di quel pugnale al più presto.|||}; -{fulus_4|Questo pugnale è estremamente importante per me, per motivi personali.||{{Non mi piace questa storia, non voglio essere coinvolto nei tuoi loschi affari.|fulus_5|||||}{Mi piace quello che sto sentendo, continua.|fulus_6|||||}{Raccontami dell\'altro.|fulus_6|||||}{I have already helped Bjorgur return the dagger to its original place.|fulus_return_3|bjorgur_grave:40||||}}|}; -{fulus_5|Bene. Fai come ti pare, Signor Perfettino.|||}; -{fulus_6|La famiglia in questione è la famiglia di Bjorgur.||{{N|fulus_7|||||}}|}; -{fulus_7|Ora, ho saputo che questo pugnale si trova nella loro tomba di famiglia, che è già stata aperta da altri...poco tempo fa.||{{N|fulus_8|||||}}|}; -{fulus_8|Quello che chiedo è semplice, devi trovare il pugnale e portarmelo, e io ti ricompenserò.||{{Sembra abbastanza facile, ok, lo farò.|fulus_10|||||}{No, ho di meglio da fare che rimanere coinvolto nei tuoi loschi tramacci.|fulus_5|||||}{I have already helped Bjorgur return the dagger to its original place.|fulus_return_3|bjorgur_grave:40||||}}|}; -{fulus_10|Bene, ritorna da me con il pugnale. Forse potresti anche parlare con Bjorgur per farti dare indicazioni su come raggiungere la tomba. La sua casa è proprio qui fuori a Prim. Solo ricorda di non dirgli nulla del nostro piano!|{{0|bjorgur_grave|20|}}|{{N|fulus_9|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{prim_armorer|||{{|prim_armorer_1|prim_hunt:240||||}{|prim_armorer_2|||||}}|}; -{prim_armorer_1|Benvenuto amico, vuoi vedere quali attrezzature vendo?||{{Certo, fammi federe cosa hai.|prim_armorer_3|||||}}|}; -{prim_armorer_2|Benvenuto viaggiatore, sei venuto a chiedere i miei servigi e le mie attrezzature?||{{N|prim_notrust|||||}}|}; -{prim_armorer_3|Devo dirti che i miei rifornimenti non sono più quelli di una volta, ora che l\'ingresso Sud della miniera è crollato. Sono veramente pochi i commercianti che vengono fino a qui.||{{Ok, fammi vedere la tua merce.|S|||||}}|}; -{prim_notrust|Ad ogni modo non posso aiutarti. I miei servizi sono solo per i residenti di Prim. Non mi fido ancora di te, potresti essere una spia dell\'insediamento di Blackwater.|||}; -{prim_tailor|Benvenuto viaggiatore, cosa posso fare per te?||{{Fammi vedere cosa hai in vendita.|prim_tailor_1|||||}}|}; -{prim_tailor_1|Vendere? Mi spiace ma le mie merci sono tutte esaurite. Ora che i commercianti non vengono più fino a qui, non ricevo più i miei rifornimenti abituali. Al momento non ho nulla da scambiare con te.|||}; -{guthbered_guard|||{{|guthbered_guard_2|bwm_agent:130||||}{|guthbered_guard_1|||||}}|}; -{guthbered_guard_1|Parla col capo invece.|||}; -{guthbered_guard_2|Per favore, non farmi del male! Sto solo facendo il mio lavoro qui.|||}; -{prim_guard1|Cosa stai guardando? Queste armi nelle casse sono solo per noi guardie.|||}; -{prim_guard2|(La guardia ti squadra con occhio accondiscendente.)|||}; -{prim_guard3|Oh, sono così stanco, chissà fra quanto potrò riposare!|||}; -{prim_guard4|Non posso parlare ora,, sono di guardia. Parla con Guthbered laggiù.|||}; -{prim_treasury_guard|Le vedi queste barre? Resisteranno praticamente a tutto.|||}; -{prim_acolyte|Quando il mio addestramento sarà terminato, sarò uno dei più grandi guaritori in circolazione.|||}; -{prim_pupil1|Non vedi che sto cercando di leggere? Parlami tra un po\' e forse ti ascolterò.|||}; -{prim_pupil2|Non posso parlare ora, sto lavorando.|||}; -{prim_pupil3|Sei tu quello di cui ho sentito parlare? Non può essere, ti immaginavo più alto.|||}; -{prim_priest|||{{|prim_priest_1|prim_hunt:240||||}{|prim_priest_2|||||}}|}; -{prim_priest_1|Benvenuto amico! Vuoi dare un\'occhiata alla mia fornitura di pozioni e unguenti?||{{Certo, fammi vedere che cos\'hai.|S|||||}}|}; -{prim_priest_2|Benvenuto viaggiatore. Sei venuto a chiedere aiuto a me ed alle miei pozioni?||{{N|prim_notrust|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{throdna_start|||{{|throdna_purify_4|kazaul:100||||}{|throdna_purify_1|kazaul:41||||}{|throdna_return_3|kazaul:30||||}{|throdna_return_1|kazaul:10||||}{|throdna_1|||||}}|}; -{throdna_1|Kazaul.. Ombra.. Com\'è che faceva??||{{N|throdna_2|||||}}|}; -{throdna_2|Oh, un visitatore. Salve. Non ti ho mai visto da queste parti. Ti hanno lasciato entrare?||{{N|throdna_3|||||}}|}; -{throdna_3|Naturalmente ti hanno lasciato entrare. Di cosa vado cianciando? Harlenn e la sua banda tengono sempre i loro doveri terreni sotto controllo.||{{N|throdna_4|||||}}|}; -{throdna_4|Allora, chi saresti? Probabilmente sei qui anche tu a lamentarti che all\'accampamento servono più risorse o che il freddo della montagna di dà noia?||{{N|throdna_loop_1|||||}}|}; -{throdna_loop_1|Che cosa vuoi?||{{Che cos\'è questo posto?|throdna_6|||||}{Chi sei tu?|throdna_7|||||}{Di cosa stavi parlando quando sono arrivato, Kazaul?|throdna_8|||||}{Sei al corrente dell\'aspra rivalità tra questo insediamento e Prim?|throdna_5|||||}}|}; -{throdna_5|Ecco ci risiamo con i tuoi problemi mondani. Ti dirò una cosa, i vostri affanni terreni non potrebbero interessarmi di meno!||{{N|throdna_6|||||}}|}; -{throdna_6|Questo è la camera dei maghi della montagna di Blackwater. Qui dedichiamo il nostro tempo per studiare l\'Ombra e i suoi discendenti.||{{Discendenti?|throdna_8|||||}{Torniamo alle mie domande.|throdna_loop_1|||||}}|}; -{throdna_7|Io sono Throdna. Una delle persone più sagge qui in giro, se proprio lo devo dire.||{{N|throdna_loop_1|||||}}|}; -{throdna_8|Kazaul, la stirpe dell\'Ombra del midollo rosso.|{{0|kazaul|8|}}|{{N|throdna_9|||||}}|}; -{throdna_9|Abbiamo letto tutto quello che abbiamo trovato su Kazaul e sul rituale. Ma sembra che potremmo essere arrivati tardi.||{{Cosa vuoi dire?|throdna_10|||||}}|}; -{throdna_10|Il rituale. Crediamo che Kazaul si manifesterà a noi molto presto.||{{N|throdna_11|||||}}|}; -{throdna_11|Dobbiamo imparare il più possibile sul rituale di Kazaul, per poter controllare al meglio il suo potere e volgerlo ai nostri scopi.||{{Posso aiutarvi in qualche modo ?|throdna_12|||||}{Cosa pensavi di fare?|throdna_12|||||}}|}; -{throdna_12|Come ti dicevo, vogliamo saperne il più possibile sul rituale di Kazaul.|{{0|kazaul|9|}}|{{N|throdna_13|||||}}|}; -{throdna_13|Qualche tempo fa eravamo sul punto di mettere le mani sull\'intero rituale, ma il messaggero è stato ucciso in circostanze molto misteriose mentre si stava recando qui.||{{N|throdna_14|||||}}|}; -{throdna_14|Sappiamo che aveva con sè tutte le parti del rituale, ma da quando è stato ucciso, per causa dei mostri non siamo mai riusciti ad avvicinarci a lui e i suoi appunti sono andati persi.||{{N|throdna_15|||||}}|}; -{throdna_15|Secondo le nostre fonti, ci dovrebbero essere cinque parti del rituale sparse per la montagna. Tre descrivono il rituale e due descrivono il canto di Kazaul per evocare il guardiano.||{{N|throdna_15_1|||||}}|}; -{throdna_16|Hm, forse potresti esserci utile...||{{Sarei felice di aiutarvi.|throdna_18|||||}{Sembra pericoloso, ma lo farò.|throdna_18|||||}{Tenetevi il vostro rituale per voi, non voglio immischiarmi.|throdna_17|||||}}|}; -{throdna_17|Bene, dovremo solamente trovare qualcun altro allora.|||}; -{throdna_18|Si, potresti essere in grado di aiutarci. Non che tu abbia molte altre scelte.||{{N|throdna_19|||||}}|}; -{throdna_19|Ok. Trovami i pezzi del rituale che il messaggero doveva portarci. Dovresti trovarli lungo la strada che sale verso la montagna Blackwater.|{{0|kazaul|10|}}|{{Tornerò con le parti del vostro rituale.|throdna_20|||||}}|}; -{throdna_20|Si, devi farcela.|{{0|kazaul|11|}}||}; -{throdna_return_1|Ciao, spero tu sia venuto qui per dirmi che hai trovato le 5 parti del rituale.||{{Le sto ancora cercando.|throdna_return_2|||||}{Quante parti devo trovare?|throdna_15|||||}{Cosa dovrei fare di nuovo?|throdna_12|||||}{Sì, penso di averli trovati tutti.|throdna_check_1|kazaul:21||||}}|}; -{throdna_return_2|Allora sbrigati e corri a cercarli! Cosa stai a fare ancora qui?|||}; -{throdna_return_3|Hai davvero trovato tutti e 5 i pezzi? Allora suppongo di doverti ringraziare. Bene allora. Grazie.|{{0|kazaul|30|}}|{{N|throdna_return_4|||||}}|}; -{throdna_15_1|||{{|X|kazaul:10||||}{|throdna_16|||||}}|}; -{throdna_check_1|||{{|throdna_check_2|kazaul:22||||}{|throdna_check_fail|||||}}|}; -{throdna_check_2|||{{|throdna_check_3|kazaul:25||||}{|throdna_check_fail|||||}}|}; -{throdna_check_3|||{{|throdna_check_4|kazaul:26||||}{|throdna_check_fail|||||}}|}; -{throdna_check_4|||{{|throdna_return_3|kazaul:27||||}{|throdna_check_fail|||||}}|}; -{throdna_check_fail|Sembra che tu non abbia trovato ancora tutti e 5 i pezzi.||{{N|throdna_15|||||}}|}; -{throdna_return_4|Abbiamo questioni più importanti su cui concentrarci. Come ti ho già detto prima, crediamo che Kazaul molto presto si manifesterà a noi.||{{N|throdna_return_5|||||}}|}; -{throdna_return_5|Se ciò dovesse accadere prima che le nostre ricerche sul rituale siano concluse, tutti i nostri sforzi sarebbero stati vani.||{{N|throdna_return_6|||||}}|}; -{throdna_return_6|Per questo motivo abbiamo intenzione di ritardare il processo il più possibile, almeno finché non abbiamo capito i suoi poteri.||{{N|throdna_return_7|||||}}|}; -{throdna_return_7|Potresti esserci di nuovo utile.||{{Sono pronto a tutto.|throdna_return_8|||||}{Cosa vi serve da me?|throdna_return_8|||||}{Spero proprio che questo comporti nuovi massacri e saccheggi.|throdna_return_8|||||}}|}; -{throdna_return_8|Abbiamo bisogno di due cose da te. Innanzi tutto devi trovare il tempio di Kazaul. I nostri esploratori dicono che sia da qualche parte ai piedi della montagna Blackwater.||{{N|throdna_return_9|||||}}|}; -{throdna_return_9|Tuttavia tutti i passaggi per il santuario, secondo gli esploratori, sono \'offuscati nell\'Ombra\', ma non so questo cosa significhi esattamente.||{{N|throdna_return_10|||||}}|}; -{throdna_return_10|In secondo luogo abbiamo bisogno che tu prenda questa fiala e la usi sul santuario.|{{0|kazaul|40|}}|{{N|throdna_return_11_select|||||}}|}; -{throdna_return_11_select|||{{|throdna_return_13|kazaul:41||||}{|throdna_return_11|||||}}|}; -{throdna_return_11|Questa fiala è una pozione di purificazione dello spirito. Dovrebbe ritardare l\'apparizione dello spirito abbastanza da permetterci di completare gli studi.||{{Sembra facile, lo farò.|throdna_return_12|||||}{Sembra difficile, ma lo farò lo stesso.|throdna_return_12|||||}{Sembra una trappola, non farò il lavoro sporco per voi.|throdna_17|||||}}|}; -{throdna_return_12|Bene, ecco la fiala. Torna da me non appena avrai fatto.|{{0|kazaul|41|}{1|throdna_items||}}|{{N|throdna_return_13|||||}}|}; -{throdna_return_13|Return to me as soon as you have completed your task.|||}; -{throdna_purify_1|Ciao, spero che tu sia qui per dirmi che hai purificato il santuario di Kazaul?||{{Si, ho fatto.|throdna_purify_3|kazaul:60||||}{No, non ancora.|throdna_purify_2|||||}{Cosa dovrei fare di nuovo?|throdna_return_8|||||}}|}; -{throdna_purify_2|Allora muoviti e corri a purificare il santuario con la fiala che ti ho dato. Cosa ci fai ancora qui?|||}; -{throdna_purify_3|Bene, dobbiamo sbrigarci a terminare la nostra ricerca su Kazaul.|{{0|kazaul|100|}}|{{N|throdna_purify_4|||||}}|}; -{throdna_purify_4|Dovresti andartene da qui e lasciarci concentrare sul nostro lavoro.||{{N|throdna_purify_5|||||}}|}; -{throdna_purify_5|.. Kazaul, distruttore di sogni luminosi ..||{{N|throdna_purify_6|||||}}|}; -{throdna_purify_6|.. Kazaul .. Ombra ..||{{N|throdna_purify_7|||||}}|}; -{throdna_purify_7|(Throdna continua a borbottare parole su Kazaul, ma non riesci a capirne altre.)|||}; -{throdna_guard|Abbassa la voce mentre sei nella camera interna.|||}; -{blackwater_acolyte|Stai anche tu cercando di diventare un tutt\'uno con l\'Ombra?|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{kazaul_guardian|Kazaul..||{{Cosa ?|kazaul_guardian_1|||||}{Kazaul, distruttore di sogni luminosi.|kazaul_guardian_2|kazaul:40||||}}|}; -{kazaul_guardian_1|(Il guardiano sembra completamente ignaro della tua presenza.)|||}; -{kazaul_guardian_2|(Il guardiano guarda verso di te con i suoi occhi ardenti.)||{{Kazaul, profanatore del tempio di Elytharan.|kazaul_guardian_3|||||}}|}; -{kazaul_guardian_3|(Vedi gli occhi in fiamme del guardiano trasformarsi istantaneamente in una foschia rossa.)|{{0|kazaul|50|}}|{{Un combattimento, aspettavo questo momento!|F|||||}{Ti prego, non uccidermi!|F|||||}{Per l\'Ombra!|F|||||}}|}; -{sign_kazaul|||{{|sign_kazaul_1|kazaul:60||||}{|sign_kazaul_3|||||}}|}; -{sign_kazaul_1|Vedi il santuario di Kazaul su cui hai versato la pozione di purificazione contenuta nella fiala.||{{N|sign_kazaul_2|||||}}|}; -{sign_kazaul_2|La roccia che prima era incandescente ora è fredda come tutte le altre.|||}; -{sign_kazaul_3|Davanti a te sta una grande apertura nella roccia dalla forma di un santuario.||{{N|sign_kazaul_4|||||}}|}; -{sign_kazaul_4|Puoi sentire un fortissimo calore provenire dalla roccia, sembra un fuoco che brucia.||{{Lascia la roccia così com\'è.|X|||||}{Applica la pozione di purificazione nella fiala alla roccia.|sign_kazaul_5||q_kazaul_vial|1|0|}}|}; -{sign_kazaul_5|Versi delicatamente il contenuto della fiala sulle rocce.|{{0|kazaul|60|}}|{{N|sign_kazaul_6|||||}}|}; -{sign_kazaul_6|Senti un rumore scoppiettante dal fondo del santuario, in un primo momento non succede nulla, ma poi noti un leggero calo del bagliore delle rocce.||{{N|sign_kazaul_7|||||}}|}; -{sign_kazaul_7|Il processo accelera, riducendo il calore generato dalle rocce.||{{N|sign_kazaul_8|||||}}|}; -{sign_kazaul_8|Questo deve essere il processo di purificazione del santuario di Kazaul.|||}; - - - diff --git a/AndorsTrail/res/values-it/content_itemlist.xml b/AndorsTrail/res/values-it/content_itemlist.xml deleted file mode 100644 index 5507bb483..000000000 --- a/AndorsTrail/res/values-it/content_itemlist.xml +++ /dev/null @@ -1,213 +0,0 @@ - - - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{gold|items_misc:10|Monete d\'oro|money||1|1|||||||||||||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{club1|items_weapons:42|Clava|club|||7|1||||5|10|||0|1|||||||||||||||||||||||}; -{club3|items_weapons:44|Mazza di ferro|mace|||253|1||||6|5|||2|7|||||||||||||||||||||||}; -{ironsword0|items_weapons:0|Spada di ferro|lsword|||12|1||||5|10|||0|1|||||||||||||||||||||||}; -{hammer0|items_weapons:45|Martello di ferro|hammer|||12|1||||5|10|||0|1|||||||||||||||||||||||}; -{hammer1|items_weapons:45|Martellone|hammer2h|||121|1||||10|5|||4|7|||||||||||||||||||||||}; -{dagger0|items_weapons:14|Pugnale di ferro|dagger|||12|1||||5|10|||0|1|||||||||||||||||||||||}; -{dagger1|items_weapons:14|Puganle di ferro affilato|dagger|||53|1||||4|20|||1|2|||||||||||||||||||||||}; -{dagger2|items_weapons:14|Pugnale di ferro migliorato|dagger|||70|1||||4|25|||1|2|||||||||||||||||||||||}; -{shortsword1|items_weapons:15|Spada corta di ferro|ssword|||78|1||||4|15|||1|2|||||||||||||||||||||||}; -{ironsword1|items_weapons:0|Spada di ferro|lsword|||78|1||||5|10|||1|3|||||||||||||||||||||||}; -{ironsword2|items_weapons:1|Spada lunga di ferro|lsword|||121|1||||5|10|||1|4|||||||||||||||||||||||}; -{broadsword1|items_weapons:5|Spadone di ferro|bsword|||251|1||||7|2|||1|10|||||||||||||||||||||||}; -{broadsword2|items_weapons:6|Spadone di acciaio|bsword|||582|1||||6|15|||3|10|||||||||||||||||||||||}; -{steelsword1|items_weapons:7|Spada di acciaio|lsword|||874|1||||4|24|||3|7|||||||||||||||||||||||}; -{axe1|items_weapons:56|Accetta|axe|||24|1||||5|5|||1|3|||||||||||||||||||||||}; -{axe2|items_weapons:56|Ascia di ferro|axe|||312|1||||6|5|||2|5|||||||||||||||||||||||}; -{quickdagger1|items_weapons:14|Pugnale del colpo rapido|dagger|4||512|1||||3|20|||0|0|-20||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{ring_dmg1|items_jewelry:0|Anello del danno +1|ring|||215|1||||||||1|1|||||||||||||||||||||||}; -{ring_dmg2|items_jewelry:1|Anello del danno +2|ring|||398|1||||||||2|2|||||||||||||||||||||||}; -{ring_dmg5|items_jewelry:2|Anello del danno +5|ring|4||2014|1||||||||5|5|||||||||||||||||||||||}; -{ring_dmg6|items_jewelry:3|Anello del danno +6|ring|4||3186|1||||||||6|6|||||||||||||||||||||||}; -{ring_block1|items_jewelry:0|Anello di difesa|ring|4||1239|1||||||||||10||||||||||||||||||||||}; -{ring_block2|items_jewelry:0|Anello di difesa|ring|4||3866|1||||||||||15||||||||||||||||||||||}; -{ring_atkch1|items_jewelry:0|Anello di attacco|ring|||215|1|||||15|||||||||||||||||||||||||||}; -{ring1|items_jewelry:0|Anello scadente|ring||1|13|1||||||||0|1|||||||||||||||||||||||}; -{ring2|items_jewelry:0|Anello lucidato|ring||1|21|1||||||||||1||||||||||||||||||||||}; -{ring_jinxed1|items_jewelry:2|Anello iellato del danno e resistenza|ring|||229|1||||||||||-9|1|||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{jewel_fallhaven|items_jewelry:6|Gemma di Fallhaven|neck|4||3125|1||||-1||||||||||||||||||||||||||||}; -{necklace_shield1|items_jewelry:7|Collana protettiva|neck|4||935|1||||||||||9||||||||||||||||||||||}; -{necklace_shield2|items_jewelry:7|Collana protettiva|neck|4||1255|1||||||||||12||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{shirt1|items_armours:14|Camicia di stoffa|bdy_clth|||16|1||||||||||2||||||||||||||||||||||}; -{shirt2|items_armours:14|Camicia pregiata|bdy_clth|||72|1||||||||||5||||||||||||||||||||||}; -{shirt_dmgresist|items_armours:15|Camicia di pelle indurita|bdy_lthr|4||1633|1||||||||||5|1|||||||||||||||||||||}; -{armor1|items_armours:15|Armatura di cuoio|bdy_lthr|||464|1||||||||||8||||||||||||||||||||||}; -{armor2|items_armours:15|Armatura di cuoio migliorata|bdy_lthr|||624|1||||||||||9||||||||||||||||||||||}; -{armor3|items_armours:16|Armatura rinforzata di cuoio|bdy_lthr|||2407|1||||||||||13||||||||||||||||||||||}; -{armor4|items_armours:16|Armatura rinforzata di cuoio migliorata|bdy_lthr|||3866|1||||||||||15||||||||||||||||||||||}; -{hat1|items_armours:21|Cappello verde|hd_cloth|||13|1||||||||||1||||||||||||||||||||||}; -{hat2|items_armours:21|Cappello verde pregiato|hd_cloth|||25|1||||||||||2||||||||||||||||||||||}; -{hat3|items_armours:24|Cappello di pelle|hd_lthr|||72|1||||||||||5||||||||||||||||||||||}; -{hat4|items_armours:24|Cappello di pelle pregiato|hd_lthr|||146|1||||||||||6||||||||||||||||||||||}; -{gloves1|items_armours:35|Guanti di pelle|hnd_lthr|||23|1||||||||||3||||||||||||||||||||||}; -{gloves2|items_armours:35|Guanti di pelle pregiati|hnd_lthr|||38|1||||||||||4||||||||||||||||||||||}; -{gloves3|items_armours:36|Guanti di pitone|hnd_cloth|||72|1||||||||||5||||||||||||||||||||||}; -{gloves4|items_armours:36|Guanti di pitone pregiati|hnd_cloth|||146|1||||||||||6||||||||||||||||||||||}; -{shield1|items_armours:0|Scudo rotondo di legno|buckler|||72|1|||||-2|||||5||||||||||||||||||||||}; -{shield3|items_armours:1|Scudo rotondo rinforzato di legno|buckler|||226|1|||||-5|||||7||||||||||||||||||||||}; -{shield4|items_armours:2|Scudo a goccia di legno|shld_wd_li|||464|1|||||-5|||||8||||||||||||||||||||||}; -{shield5|items_armours:2|Scudo a goccia di legno migliorato|shld_wd_li|||624|1|||||-4|||||9||||||||||||||||||||||}; -{boots1|items_armours:28|Stivali di pelle|feet_lthr|||23|1||||||||||3||||||||||||||||||||||}; -{boots2|items_armours:28|Stivali di pelle pregiati|feet_lthr|||38|1||||||||||4||||||||||||||||||||||}; -{boots3|items_armours:29|Stivali pitonati|feet_lthr|||146|1||||||||||6||||||||||||||||||||||}; -{boots5|items_armours:30|Stivali rinforzati|feet_mtl_hv|||226|1||||||||||7||||||||||||||||||||||}; -{gloves_attack1|items_armours:35|Guanti dell\'attacco rapido|hnd_lthr|||150|1|||||15|||||-9||||||||||||||||||||||}; -{gloves_attack2|items_armours:35|Pregiati guanti dell\'attacco rapido|hnd_lthr|||221|1|||||17|||||-9||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{apple_green|items_consumables:2|Mela verde|food||1|14||||||||||||||1|||||{{food|1|8|100|}}||||||||||||||}; -{apple_red|items_consumables:3|Mela rossa|food||1|22||||||||||||||1|||||{{food|1|12|100|}}||||||||||||||}; -{meat|items_consumables:25|Carne|animal_e||1|29||||||||||||||1|||||{{food|2|12|100|}{foodp|3|10|10|}}||||||||||||||}; -{meat_cooked|items_consumables:27|Carne cotta|food||1|78||||||||||||||1|||||{{food|3|11|100|}}||||||||||||||}; -{strawberry|items_consumables:8|Fragola|food||1|3||||||||||||||1|||||{{food|1|2|100|}}||||||||||||||}; -{carrot|items_consumables:15|Carota|food||1|14||||||||||||||1|||||{{food|1|8|100|}}||||||||||||||}; -{bread|items_consumables:21|Pane|food||1|6||||||||||||||1|||||{{food|1|10|100|}}||||||||||||||}; -{mushroom|items_consumables:19|Fungo|food||1|3||||||||||||||1|||||{{food|1|2|100|}}||||||||||||||}; -{pear|items_consumables:9|Pera|food||1|14||||||||||||||1|||||{{food|1|8|100|}}||||||||||||||}; -{eggs|items_consumables:20|Uova|food||1|10||||||||||||||1|||||{{food|1|6|100|}}||||||||||||||}; -{radish|items_consumables:14|Rapanello|food||1|6||||||||||||||1|||||{{food|1|4|100|}}||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{vial_empty1|items_consumables:56|Piccola fiala vuota|flask||1|2|||||||||||||||||||||||||||||||||}; -{vial_empty2|items_consumables:57|Fiala vuota|flask||1|4|||||||||||||||||||||||||||||||||}; -{vial_empty3|items_consumables:59|Fiasco vuoto|flask||1|6|||||||||||||||||||||||||||||||||}; -{vial_empty4|items_consumables:58|Pozione vuota|flask||1|11|||||||||||||||||||||||||||||||||}; -{health_minor|items_consumables:35|Pozione curativa piccola|pot||1|5||||||||||||||1|5|5|||||||||||||||||}; -{health_minor2|items_consumables:35|Pozione curativa piccola|pot|||18||||||||||||||1|5|5|||||||||||||||||}; -{health|items_consumables:49|Pozione curativa normale|pot|||40||||||||||||||1|10|10|||||||||||||||||}; -{health_major|items_consumables:28|Pozione curativa grande|pot||1|210||||||||||||||1|40|40|||||||||||||||||}; -{health_major2|items_consumables:28|Pozione curativa grande|pot|||280||||||||||||||1|40|40|||||||||||||||||}; -{mead|items_consumables:51|Idromele|drink|||15||||||||||||||1|1|1|||||||||||||||||}; -{milk|items_consumables:55|Latte|drink|||21||||||||||||||1|2|2|||||||||||||||||}; -{bonemeal_potion|items_consumables:34|Pozione farina d\'ossa|pot||1|45||||||||||||||1|40|40|||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{hair|items_misc:48|Pelliccia|animal||1|2|||||||||||||||||||||||||||||||||}; -{insectwing|items_misc:52|Ala d\'insetto|animal||1|3|||||||||||||||||||||||||||||||||}; -{bone|items_misc:44|Osso|animal||1|2|||||||||||||||||||||||||||||||||}; -{claws|items_misc:47|Artigli|animal||1|2|||||||||||||||||||||||||||||||||}; -{shell|items_misc:54|Guscio d\'insetto|animal||1|2|||||||||||||||||||||||||||||||||}; -{gland|actorconditions_1:60|Ghiandola del veleno|animal||1|15|||||||||||||||||||||||||||||||||}; -{rat_tail|items_misc:38|Coda di ratto|animal||1|2|||||||||||||||||||||||||||||||||}; - - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{rock|items_misc:28|Piccola pietra|gem||1|1|||||||||||||||||||||||||||||||||}; -{gem1|items_misc:0|Gemma di vetro|gem||1|2|||||||||||||||||||||||||||||||||}; -{gem2|items_misc:1|Gemma di rubino|gem||1|6|||||||||||||||||||||||||||||||||}; -{gem3|items_misc:2|Gemma raffinata|gem||1|8|||||||||||||||||||||||||||||||||}; -{gem4|items_misc:3|Gemma lavorata|gem||1|13|||||||||||||||||||||||||||||||||}; -{gem5|items_misc:5|Gemma raffinata scintillante|gem||1|15|||||||||||||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{tail_caverat|items_misc:38|Coda di ratto delle caverne|animal|1|1|0|||||||||||||||||||||||||||||||||}; -{tail_trainingrat|items_misc:38|Coda di ratto piccolo|animal|1|1|0|||||||||||||||||||||||||||||||||}; -{ring_mikhail|items_jewelry:0|Anello di Mikhail|ring|||15|1|||||10|||||||||||||||||||||||||||}; -{neck_irogotu|items_jewelry:7|Collana di Irogotu|neck|3|1|30|1||||||||||5|1|||||||||||||||||||||}; -{ring_gandir|items_jewelry:0|Anello di Gandir|other|1|1|0|||||||||||||||||||||||||||||||||}; -{dagger_venom|items_weapons:17|Pugnale Velenoso|dagger|3||15|1||||4|10|5|2|1|2|||||||||||||||||||||||}; -{key_luthor|items_misc:21|Chiave di Luthor|other|1|1|0|||||||||||||||||||||||||||||||||}; -{calomyran_secrets|items_books:0|Segreti di Calomyran|other|1|1|0|||||||||||||||||||||||||||||||||}; -{heartstone|items_misc:6|Heartstone|gem|1|1|0|||||||||||||||||||||||||||||||||}; -{vacor_spell|items_books:7|Pezzo di incantesimo di Vacor|other|1|1|0|||||||||||||||||||||||||||||||||}; -{ring_unzel|items_jewelry:0|Anello di Unzel|other|1|1|0|||||||||||||||||||||||||||||||||}; -{ring_vacor|items_jewelry:0|Anello di Vacor|other|1|1|0|||||||||||||||||||||||||||||||||}; -{boots_unzel|items_armours:29|Stivali difensivi di Unzel|feet_lthr|3||185|1||||||||||8||||||||||||||||||||||}; -{boots_vacor|items_armours:29|Stivali dell\'attacco di Vacor|feet_lthr|3||185|1|||||9|||||2||||||||||||||||||||||}; -{necklace_flagstone|items_jewelry:6|Collana del Guardiano di Flagstone|other|1|1|0|||||||||||||||||||||||||||||||||}; -{packhide|items_armours:15|Wolfpack\'s animal hide|bdy_hide|3|1|121|1|||||-15|||||2|1|||||||||||||||||||||}; -{sword_flagstone|items_weapons:7|Flagstone\'s pride|lsword|3||169|1||||4|21|10|2|1|6|||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{armor_chain1|items_armours:17|Corazza di maglia arrugginita|chmail|||3629|1|||||-9|||||20||||||||||||||||||||||}; -{armor_chain2|items_armours:17|Corazza di maglia|chmail|||4191|1|||||-10|||||22||||||||||||||||||||||}; -{hat_leather1|items_armours:24|Capello di pelle indurita|hd_lthr|||261|1|||||-2|||||7||||||||||||||||||||||}; -{sleepingmead|items_consumables:51|Preparato di Idromele soporifero|other|1|1|0|||||||||||||||||||||||||||||||||}; -{ffguard_qitem|items_jewelry:0|Anello pattuglia di Feygard|other|1|1|0|||||||||||||||||||||||||||||||||}; -{shield6|items_armours:3|Scudo a torre di legno|shld_twr|||952|1|||||-6|||||12||||||||||||||||||||||}; -{shield7|items_armours:3|Scudo a torre di legno rinforzato|shld_twr|||1538|1|||||-6|||||14||||||||||||||||||||||}; -{club_wood1|items_weapons:44|Mazza pesante di ferro |mace|||950|1||||8|15|5|3|2|11|||||||||||||||||||||||}; -{club_wood2|items_weapons:44|Mazza pesante di ferro bilanciata|mace|||2194|1||||7|10|10|3|2|11|||||||||||||||||||||||}; -{gloves_grip|items_armours:35|Guanti dalla presa migliorata|hnd_lthr|||471|1|||||9|||||1||||||||||||||||||||||}; -{gloves_fancy|items_armours:35|Guanti bizzarri|hnd_cloth|||78|1|||||5|||||||||||||||||||||||||||}; -{ring_crit1|items_jewelry:0|Anello del colpo|ring|4||2921|1||||||5||||||||||||||||||||||||||}; -{ring_crit2|items_jewelry:0|Anello del colpo violento|ring|4||3455|1|||||-3|7||||||||||||||||||||||||||}; -{armor_stone|items_armours:17|Corazza di pietra|bdy_hv|3||52|1||||2||||||22|1|||||||||||||||||||||}; -{ring_shadow0|items_jewelry:2|Anello delle ombre minori|ring|2|1|0|1|||||25|6||4|7|5||{{regen|1|}}||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{rapier_lifesteal|items_weapons:71|Stocco Rubavita|rapier|2|1|0|1|5|||5|21|||1|6||||||||||1|0|3|||||1|3|3||||}; -{dagger_barbed|items_weapons:17|Pugnale spinato|dagger|3|1|0|1||||4|15|||0|0|5|||||||||1||||||{{bleeding_wound|1|5|50|}}|||||||}; -{elytharan_redeemer|items_weapons:70|Redentore Elytharan|2hsword|2|1|0|1||2||5|25|||3|8|5||{{bless|1|}}|0|||||||||||||||||||}; -{clouded_rage|items_weapons:71|Spada Rabbia dell\'Ombra|rapier|3|1|0|1||||5|21|||3|6|5|||0|||||||||||||1|||||{{rage_minor|1|1|50|}}|}; -{shadow_slayer|items_weapons:60|Ombra che uccide|axe2h|3|1|0|1||2||7|25|10|2|5|9|||||||||||||||||1|1|1||||}; -{ring_shadow_embrace|items_jewelry:0|Anello Abbraccio dell\'Ombra|ring|3|1|0|1|20||||10|||2|2|||||||||||||||||||||||}; -{bwm_dagger|items_weapons:19|Pugnale di Blackwater|dagger|4|1|539|1||||3|40|||1|1|5||{{blackwater_misery|1|}}||||||||||||||||||||}; -{bwm_dagger_venom|items_weapons:19|Pugnale avvelenato di Blackwater|dagger|4|1|1552|1||||3|45|||1|1|||{{blackwater_misery|1|}}|||||||1||||||{{poison_weak|1|5|50|}}|||||||}; -{bwm_ironsword|items_weapons:0|Spada di ferro di Blackwater|lsword|4|1|1224|1||||4|50|||3|7|5||{{blackwater_misery|1|}}||||||||||||||||||||}; -{bwm_leather_armour|items_armours:15|Armatura in pelle di Blackwater|bdy_lthr|4|1|2551|1||||||||||25|1|{{blackwater_misery|1|}}||||||||||||||||||||}; -{bwm_leather_cap|items_armours:24|Cappuccio in pelle di Blackwater|hd_lthr|4|1|722|1|5|||||||||21||{{blackwater_misery|1|}}||||||||||||||||||||}; -{bwm_combat_ring|items_jewelry:2|Anello da combattimento di Blackwater|ring|4|1|595|1|||||5|||0|7|||{{blackwater_misery|1|}}||||||||||||||||||||}; -{bwm_brew|items_consumables:51|Infuso di Blackwater|pot||1|57||||||||||||||1|15|15|||{{intoxicated|1|10|100|}}||||||||||||||}; -{woodcutter_hatchet|items_weapons:57|Ascia da taglialegna|axe|||0|1||||6|9|||6|12|||||||||||||||||||||||}; -{woodcutter_boots|items_armours:30|Stivali da taglialegna|feet_lthr|||873|1|1||||3|||||8||||||||||||||||||||||}; -{heavy_club|items_weapons:44|Randello pesante|mace|||1229|1||||7|15|5|3|2|15|||||||||||||||||||||||}; -{pot_speed_1|items_consumables:41|Pozione minore della velocità|pot||1|261||||||||||||||1|||||{{speed_minor|1|5|100|}}||||||||||||||}; -{pot_poison_weak|items_consumables:40|Veleno leggero|pot||1|125||||||||||||||1|||||{{poison_weak|1|5|100|}}||||||||||||||}; -{pot_poison_weak_antidote|items_consumables:54|Antidoto veleno leggero|pot||1|337||||||||||||||1|||||{{poison_weak|-99||100|}}||||||||||||||}; -{pot_bleeding_ointment|items_consumables:35|Unguento per ferite sanguinanti|pot||1|310||||||||||||||1|||||{{bleeding_wound|-99||100|}}||||||||||||||}; -{pot_fatigue_restore|items_consumables:41|Ripristino fatica|pot||1|210||||||||||||||1|||||{{fatigue_minor|-99||100|}}||||||||||||||}; -{pot_blind_rage|items_consumables:63|Pozione di rabbia cieca|pot||1|495||||||||||||||1|||||{{rage_minor|1|5|100|}}|0|||||||0||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{rusted_iron_sword|items_weapons:0|Spada di ferro arrugginita|lsword|||52|1||||5|10|||1|2|||||||||||||||||||||||}; -{broken_buckler|items_armours:0|Scudo rotto di legno|buckler|||120|1|||||-5|||||1||||||||||||||||||||||}; -{used_gloves|items_armours:35|Guanti macchiati di sangue|hnd_lthr|||56|1||||||||||1||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{bwm_claws|items_misc:47|Artiglio di dragone bianco|animal||1|35|||||||||||||||||||||||||||||||||}; -{bwm_permit|items_books:8|Documento falso per Blackwater|other|1|1|0|||||||||||||||||||||||||||||||||}; -{bjorgur_dagger|items_weapons:14|Pugnale dei Bjorgur|dagger|1|1|0|1||||5||||||||||||||||||||||||||||}; -{q_kazaul_vial|items_consumables:57|Fiala della purificazione dello spirito|other|1|1|0|||||||||||||||||||||||||||||||||}; -{guthbered_id|items_jewelry:0|Anello di Guthbered|other|1|1|0|||||||||||||||||||||||||||||||||}; -{harlenn_id|items_jewelry:0|Anello di Harlenn|other|1|1|0|||||||||||||||||||||||||||||||||}; - - diff --git a/AndorsTrail/res/values-it/content_questlist.xml b/AndorsTrail/res/values-it/content_questlist.xml deleted file mode 100644 index 4c4181c9a..000000000 --- a/AndorsTrail/res/values-it/content_questlist.xml +++ /dev/null @@ -1,229 +0,0 @@ - - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{andor|Cerca Andor|1|{ - {1|Mio padre Mikhail dice che Andor non è a casa da ieri. Dovrei andare a cercarlo nel villaggio.||0|} - {10|Leonid dice di aver visto Andor parlare con Gruil. Dovrei chiedere informazioni a Gruil.||0|} - {20|Gruil vuole una ghiandola di veleno per darmi qualche informazione. Dice che alcuni serpenti velenosi la posseggono.||0|} - {30|Gruil dice che Andor era alla ricerca di uno che si chiama Umar. Dovrei andare a chiedere al suo amico Gaela a est di Fallhaven.||0|} - {40|Ho parlato con Gaela a Fallhaven. Mi ha detto di andare a trovare Bucus e chiedergli informazioni circa la gilda dei ladri.||0|} - {50|Bucus mi ha permesso di entrare nella botola nella casa abbandonata a Fallhaven. Dovrei andare a parlare con Umar.||0|} - {51|Umar della gilda dei ladri di Fallhaven sembrava conoscermi, deve avermi confuso con Andor. A quanto pare, Andor l\'ha incontrato.||0|} - {55|Umar mi ha detto che Andor è andato a cercare Lodar, l\'alchimista. Dovrei cercare il suo rifugio.||0|} - {61|I heard a story in Loneford, where it seemed like Andor had been in Loneford, and that he might have had something to do with the illness that the people are suffering from there. I am not sure if it actually was Andor. If it was Andor, why would he have made the people of Loneford ill?||0|} - }|}; -{mikhail_bread|Pane per la colazione|1|{ - {100|Ho portato il pane a Mikhail.||1|} - {10|Mikhail vuole che vada a comprargli del pane da Mara al municipio.||0|} - }|}; -{mikhail_rats|Topi!|1|{ - {100|Ho ucciso i due ratti nel nostro giardino.|20|1|} - {10|Mikhail vuole che vada a controllare il nostro giardino per alcuni ratti. Devo uccidere i ratti e tornare da Mikhail. Se mi faccio male, posso tornare a letto e riposare per ripristinare la salute.||0|} - }|}; -{leta|Marito scomparso|1|{ - {10|Leta del villaggio di Crossglen vuole che cerchi suo marito Oromir.||0|} - {20|Ho trovato Oromir nel villaggio di Crossglen, si stava nascondendo da Leta.||0|} - {100|Ho detto a Leta che Oromir si nasconde nel villaggio di Crossglen.|50|1|} - }|}; -{odair|Infestazione di topi|1|{ - {10|Odair mi chiede di pulire la grotta dall\'invasione dei ratti. In particolare di uccidere il topo più grosso e poi tornare da lui.||0|} - {100|Ho aiutato Odair ad eliminare i ratti nella grotta-magazzino al villaggio di Crossglen.|300|1|} - }|}; -{bonemeal|Sostanze vietate|1|{ - {10|Leonid del municipio di Crossglen mi dice che c\'era un problema in paese qualche settimana fa. A quanto pare, Lord Geomyr ha vietato qualsiasi uso di farine animali come sostanza di guarigione.\n\nTharal, il sacerdote della città dovrebbe saperne di più.||0|} - {20|Tharal non vuole parlare di farina d\'ossa. Potrei convincerlo portandogli 5 ali d\'insetto.||0|} - {30|Tharal dice che la farina d\'ossa è molto potente come sostanza guaritrice, ed è abbastanza scocciato dal fatto che sia diventata illegale. Dovrei andare a vedere Thoronir a Fallhaven se voglio saperne di più. Dovrei dirgli la password \'Bagliore dell\'Ombra\'.||0|} - {40|Ho parlato con Thoronir a Fallhaven. Egli potrebbe creare una pozione di farina d\'ossa se gli porto 5 ossa. Dovrebbero esserci alcuni scheletri in una casa abbandonata a nord di Fallhaven.||0|} - {100|Ho portato le ossa a Thoronir. Ora è in grado di preparare la pozione.\nPerò devo fare attenzione ad usarla, Lord Geomyr ne ha vietato l\'uso.|900|1|} - }|}; -{jan|Amici di Fallen|1|{ - {10|Jan mi racconta la storia sua, di Gandir e Irogotu. I tre amici hanno scavato una miniera per cercare un tesoro, ma hanno litigato. Irogotu in preda alla rabbia ha ucciso Gandir, rubandogli un anello.\nDovrei prendere l\'anello a Irogotu e riportarlo a Jan.||0|} - {100|Ho portato l\'anello di Gandir a Jan e vendicato il suo amico. Irogotu è morto.|1500|1|} - }|}; -{bucus|Chiave di Luthor|1|{ - {10|Bucus a Fallhaven potrebbe sapere qualcosa di Andor. Ma vuole la chiave di Luthor che è nelle catacombe sotto la chiesa di Fallhaven.||0|} - {20|Le catacombe sotto la chiesa di Fallhaven sono chiuse. Athamyr è l\'unico che ha sia il permesso che il coraggio di entrarvi. Dovrei andare a trovarlo nella sua casa a sud-ovest della chiesa.||0|} - {30|Athamyr vuole un po\' di carne cotta, e poi forse mi dirà qualcosa di più.||0|} - {40|Ho portato la carne cotta ad Athamyr.|700|0|} - {50|Athamyr mi ha dato il permesso di entrare nelle catacombe sotto la chiesa Fallhaven.||0|} - {100|Ho portato a Bucus la chiave di Luthor.|2150|1|} - }|}; -{fallhavendrunk|Racconto dell\'ubriaco|1|{ - {10|Un ubriaco fuori dalla taverna di Fallhaven ha iniziato a raccontarmi la sua storia, ma per continuare vuole che io gli porti dell\'idromele. Non so se la sua storia porterà a qualcosa.||0|} - {100|L\'ubriaco mi ha detto che aveva l\'abitudine di viaggiare con Unnmir. Dovrei andare a parlare con Unnmir.||1|} - }|}; -{calomyran|I segreti di Calomyran|1|{ - {10|Un vecchio di Fallhaven ha perso il suo libro \'Calomyran Secrets\'. Dovrei andare a cercarlo. Forse nella casa di Arcir a sud?||0|} - {20|Ho trovato una pagina strappata da un libro intitolato \'Calomyran Secrets\' con il nome di \'Larcal\' scritto sopra.||0|} - {100|Ho dato il libro al vecchio.|600|1|} - }|}; -{nocmar|Tesori perduti|1|{ - {10|Unnmir mi ha detto che era un avventuriero, e mi ha dato il suggerimento di andare a trovare Nocmar. La sua casa è a sud-ovest della taverna di Fallhaven.||0|} - {20|Nocmar mi dice di essere un fabbro. Ma Lord Geomyr ha vietato l\'uso di Acciaio puro, così non può forgiare più le sue armi.\nSe riesco a trovare una Pietra pura e portargliela, dovrebbe essere in grado di forgiare il nuovo Acciaio puro!||0|} - {200|Ho trovato una Pietra pura per Nocmar. Ora avrà degli oggetti di Acciaio puro da vendere.|1200|1|} - }|}; -{flagstone|Antichi segreti|1|{ - {10|Ho incontrato una guardia all\'esterno di una fortezza chiamata Flagstone. La guardia mi ha parlato di Flagstone dicendomi che esso era un campo di prigionia per i lavoratori in fuga dal Monte Galmore. Recentemente c\'è stato un aumento di mostri non-morti che fuoriuscivano da Flagstone. Dovrei studiare l\'origine dei mostri non-morti. La guardia mi dice di tornare a lui se ho bisogno di aiuto.||0|} - {20|Ho trovato un tunnel scavato sotto Flagstone, che sembra portare a una grotta più grande. La grotta è sorvegliata da un demone a cui non sono nemmeno in grado di avvicinarmi. Forse la guardia fuori Flagstone ne sa di più?||0|} - {30|La guardia mi dice che l\'ex guardiano di Flagstone portava sempre una collana con se. La collana probabilmente contiene le informazioni per avvicinarsi al demone. Dovrei tornare dalla guardia per le informazioni della collana, una volta che l\'avrò trovata.||0|} - {31|Ho trovato l\'ex guardiano di Flagstone, era al piano superiore.||0|} - {40|Ho imparato la formula per avvicinarmi al demone. \'Daylight Shadow\'.|1600|0|} - {50|Nei sotterranei di Flagstone, ho trovato la fonte di creazione dei non morti. Una creatura nata dal dolore degli ex prigionieri.||0|} - {60|Ho trovato un prigioniero vivo, Narael, nei sotterranei di Flagstone. Narael una volta era un cittadino di Nor City. E\' troppo debole per camminare, ma se riesco a trovare la moglie, in città, verrei ricompensato.|2100|1|} - }|}; -{vacor|Pezzi mancanti|1|{ - {10|Un mago chiamato Vacor nel sud-ovest di Fallhaven ha cercato di lanciare un incantesimo di fenditura.\nC\'è qualcosa che non va in lui, sembrava molto ossessionato dal suo incantesimo. Sta cercando di ottenere un qualche tipo di forza da esso.||0|} - {20|Vacor vuole che io gli porti i quattro pezzi dell\'incantesimo che gli è stato rubato. I banditi dovrebbero essere da qualche parte a sud di Fallhaven.||0|} - {30|Ho portato i quattro pezzi dell\'incantesimo a Vacor.|1200|0|} - {40|Vacor mi racconta del suo ex apprendista Unzel, che aveva iniziato a mettere in discussione Vacor. Vacor ora vuole uccidere Unzel. Dovrei essere in grado di trovarlo a sud-ovest, fuori di Fallhaven. Dovrei portare il suo anello con sigillo a Vacor una volta che l\'ho ucciso.||0|} - {50|Unzel mi dà la scelta di schierarmi con lui o con Vacor.||0|} - {51|Ho scelto di schierarmi con Unzel. Dovrei andare a sud-ovest di Fallhaven a parlare con Vacor circa Unzel e l\'Ombra.||0|} - {53|Ho iniziato a lottare con Unzel. Vorrei portare il suo anello a Vacor una volta ucciso.||0|} - {54|Ho iniziato a lottare con Vacor. Vorrei portare il suo anello a Unzel una volta ucciso.||0|} - {60|Ho ucciso Unzel e ho informato Vacor.|1600|1|} - {61|Ho ucciso Vacor e ho informato Unzel.|1600|1|} - }|}; - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{farrik|Visite notturne|1|{ - {10|Farrik della gilda dei ladri di Fallhaven mi ha raccontato di un piano per aiutare un loro compagno a fuggire dalla prigione di Fallhaven.||0|} - {20|Farrik della gilda dei ladri di Fallhaven mi ha raccontato i dettagli del piano e ho accettato di aiutarlo. Il capitano della guardia ha un problema con l\'alcol. Il piano si prefigura così: io dovrei offrire un idromele, preparato appositamente del cuoco della gilda dei ladri, al capitano in modo che lo metta fuori combattimento. Potrebbe essere necessario corrompere il capitano.||0|} - {25|Ho avuto l\'idromele preparato dal cuoco della gilda dei ladri.||0|} - {30|Ho detto a Farrik che non sono molto d\'accordo con il loro piano, potrei riferire al capitano della prigione il loro subdolo piano.||0|} - {32|Ho dato l\'idromele *truccato* al capitano della prigione.||0|} - {40|Ho detto al capitano della prigione del piano che i ladri stanno preparando per liberare il loro amico.||0|} - {50|Il capitano mi chiede di raccontare ai ladri che per la sera la prigione sarà meno protetta! Così forse riusciranno a catturare un po\' di quei ladri.||0|} - {60|Sono riuscito a far bere l\'idromele *truccato* al capitano! In questo modo dovrebbe essere fuori gioco durante la notte e i ladri riusciranno a liberare il loro compagno.||0|} - {70|Farrik mi ha ricompensato per aver aiutato la gilda dei ladri.|1500|1|} - {80|Ho detto a Farrik che stasera la prigione sarà meno protetta.||0|} - {90|Il capitano della prigione mi ha ringraziato per l\'aiuto e ha detto che parlera di me a tutte le altre guardie.|1700|1|} - }|}; -{lodar|La pozione persa|1|{ - {10|Dovrei trovare un alchimista chiamato Lodar. Umar della gilda dei ladri di Fallhaven mi ha detto che devo conoscere la parola d\'ordine affinchè il guardiano mi lasci avere accesso al rifugio di Lodar.||0|} - {15|Umar mi ha detto di parlare con Ogam a Vilegard. Ogam mi può dire la parola d\'ordine per accedere al rifugio di Lodar.||0|} - {20|Sono stato da Ogam a sud-ovest di Vilegard. parlava in modo strano, sembravano indovinelli. Sono riuscito a malapena a capire alcuni indizi parlando del rifugio di Lodar. La frase \'A metà strada tra l\'Ombra e la luce. Formazioni rocciose\' e le parole \'Bagliore dell\'Ombra\' erano tra le cose che ha detto. Non sono sicuro del loro significato.||0|} - }|}; -{vilegard|Fidarsi di un forestiero|1|{ - {10|La gente di Vilegard è molto sospettosa verso i forestieri. Mi hanno detto di parlare con Jolnor nella cappella di Vilegard se voglio guadagnarmi la loro fiducia.||0|} - {20|Ho parlato con Jolnor nella cappella di Vilegard. Egli suggerisce di aiutare tre persone importanti per ottenere la fiducia della gente di Vilegard. Dovrei aiutare Kaori, Wrye e Jolnor stesso.||0|} - {30|Ho aiutato le tre persone di Vilegard, ora tutto il paese si fida di me.|2100|1|} - }|}; -{kaori|Commissioni per Kaori|1|{ - {5|Jolnor della cappella di Vilegrad mi ha consigliato di parlare con Kaori a nord di Vilegard e di aiutarla.||0|} - {10|Kaori mi ha chiesto di portarle 10 pozioni di farina d\'ossa.||0|} - {20|Ho portato 10 pozioni di farina d\'ossa a Kaori.|520|1|} - }|}; -{wrye|Causa incerta|1|{ - {10|Jolnor della cappela di Vilegard mi ha detto di parlare con Wrye a Nord di Vilegard. Suo figlio è da poco sparito nel nulla.||0|} - {20|Wrye a Nord di Vilegard mi ha detto che suo figlio Rincel è scomparso, lei pensa che sia morto o ferito gravemente.||0|} - {30|Wrye pensa che la guardia reale di Feygard sia coinvolta nella scomparsa di suo figlio e che lo abbiano reclutato.||0|} - {40|Wrye vole andare alla ricerca di indizi utili a capire cosa sia successo al figlio.||0|} - {41|Dovrei andare a cercare nella taverna di Vilegard e nella taverna Fiasco Schiumoso a nord di Vilegard.|200|0|} - {42|Ho sentito parlare di un ragazzo nella taverna del Fiasco Schiumoso. A quanto pare si è diretto a ovest della taverna.||0|} - {80|A nord-ovest di Vilegard ho trovato un uomo che ha visto Rincel combattere contro alcuni mostri. Sembra che Rincel avesse lasciato Vilegard di sua volontà per andare a vedere la città di Feygard. Dovrei raccontare a Wrye a nord di Vilegard quello che è successo al figlio.||0|} - {90|Ho detto a Wrye la verità sulla scomparsa del figlio.|520|1|} - }|}; -{jolnor|Spie nella schiuma|1|{ - {10|Jolnor della cappella di Vilegard mi ha parlato di una guardia fuori dalla taverna Fiasco Schiumoso, che secondo lui è una spia della guardia reale di Feygard. Vorrebbe che la guardia sparisse, non gli interessa in che modo. La taverna dovrebbe essere appena a nord di Vilegard.||0|} - {20|Ho convinto la guardia fuori dalla taverna Fiasco Schiumoso ad andarsene appena finisce il turno.||0|} - {21|Ho iniziato un combattimento con la guardia fuori dalla taverna Fiasco Schiumoso. Dovrei portare il suo anello da guardia reale a Jolnor una volta che l\'ho ucciso per dimostrargli che sono riuscito a farlo fuori.||0|} - {30|Ho detto a Jolnor che la guardia è sparita.|630|1|} - }|}; - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{bwm_agent|L\'agente e la bestia|1|{ - {1|Ho incontrato un uomo in cerca di aiuto per il suo insediamento sulla Montagna Blackwater. Sembra che l\'insediamento sia attaccato da mostri e banditi, hanno bisogno di un aiuto esterno.|||} - {5|Ho accettato di aiutare l\'uomo dellla montagna di Blackwater.|||} - {10|L\'uomo mi ha detto di incontrarlo al di là della miniera crollata. Lui striscerà attraverso la miniera crollata e io passerò dalla buia miniera abbandonata.|||} - {20|Ho attraversato la vecchia miniera e ho incontrato nuovamente l\'uomo dall\'altra parte. Sembrava molto preoccupato e mi ha dietto di andare verso est una volta uscito dalla miniera. Dovrei ritrovare l\'uomo ai piedi della montagna.|||} - {25|Ho sentito la storia del conflitto tra Prim e l\'insediamento di Blackwater. |||} - {30|Dovrei seguire il sentiero di montagna per arrivare all\'insediamento di Blackwater.|||} - {40|Ho di nuovo ritrovato l\'uomo sulla mia strada, mi ha detto di continuare lungo il sentiero per arrivare all\'insediamento.|||} - {50|Ho camminato fino alle pendici innevate del monte Blackwater. L\'uomo mi ha detto di contunuare a salire la montagna. A quanto pare, l\'insediamento è vicino.|||} - {60|Sono dentro l\'insediamento. Devo trovare e parlare con il loro maestro d\'armi Harlenn.|||} - {65|Ho parlato con Harlenn nell\'insediamento di Blackwater. A quanto pare, l\'insediamento è sotto attacco da ogni sorta di mostri: dragoni bianchi e Aulaeth. Oltre che da essi, a Blackwater sono attaccati anche dal popolo di Prim.|||} - {66|Harlenn pensa che dietro gli attacchi dei mostri ci sia il popolo di Prim.|||} - {70|Harlenn vuole che porti un messaggio a Guthbered di Prim. Vuole che Prim fermi gli attacchi contro l\'insediamento di Blackwater altrimenti saranno costretti a combattere. Dovrei andare a parlare con Guthbered a Prim.|||} - {80|Guthbered dice che Prim non ha nulla a che fare con gli attacchi dei mostri all\'insediamento di Blackwater. Dovrei andare a parlare con Harlenn.|||} - {90|Harlenn è sicuro che dietro gli attacchi dei mostri ci sia Prim.|||} - {95|Harlenn vuole che vada a Prim a cercare indizi su un probabile attacco all\'insediamento. Dovrei trovare degli indizi vicino a Guthbered.|||} - {100|Ho trovato alcuni progetti a Prim per reclutare mercenari e attaccare l\'insediamento di Blackwater. Dovrei andare immediatamente a parlarne con Harlenn.|||} - {110|Harlenn mi ha ringraziato per aver scoperto i piani di attacco.|1150||} - {120|Per fermare gli attacchi all\'insediamento di Blackwater, Harlenn mi ha chiesto di assassinare Guthbered a Prim.|||} - {130|Ho iniziato un combattimento con Guthbered.|||} - {131|Ho detto a Guthbered che avrei dovuto ucciderlo, ma l\'ho lasciato vivere. Mi ha ringraziato profondamente e ha lasciato Prim.|2100||} - {149|Harlenn mi ha ringraziato per l\'aiuto. Speriamo che gli attacchi all\'insediamento di Blackwater ora si fermino.|||} - {150|Nell\'insediamento di Blackwater ora si fidano di me, adesso dovrei poter comprare in tutti i negozi.|5000||} - {240|Ho deciso di non aiutare la gente dell\'insediamento di Blackwater.||1|} - {250|Dal momento che sto aiutando Prim, Harlenn non vuole più parlare con me.||1|} - {251|Dal momento che sto aiutando Prim, Harlenn non vuole più parlare con me.||1|} - }|}; -{prim_innquest|Ben riposati|1|{ - {10|Ho parlato con l\'oste di Prim, ai piedi della montagna Blackwater. C\'è una stanza sul retro disponibile ma attualmente è affittata ad Arghest. Dovrei andare a parlare con Arghest per vedere se lui vuole tenere ancora in affitto la stanza. Il cuoco mi ha indirizzato verso sud-ovest di Prim.|||} - {20|Ho parlato con Arghest per la stanza alla locanda. Vuole tenerla ancora in affitto per poter riposare. Mi ha detto che se riesco a dargli la giusta ricompensa potrebbe farlmela usare.|||} - {30|Arghest mi ha chiesto 5 bottiglie di latte, dice che sicuramente posso trovarne in un villaggio più grande.|||} - {40|Ho portato il latte ad Arghest. Ha accettato di farmi usare la stanza sul retro della locanda a Prim. Ora potrò riposarmi lì. Dovrei andare a parlare con l\'oste nella locanda.|500||} - {50|Ho spiegato all\'oste che Arghest mi ha dato il permesso di utilizzare la stanza.||1|} - }|}; -{prim_hunt|Intenzioni offuscate|1|{ - {10|Fuori dalla miniera crollata sulla strada per la montagna Blackwater ho incontrato un uomo del villaggio di Prim. Lui mi ha chiesto di aiutarli.|||} - {11|Il paese di Prim ha bisogno aiuto da qualcuno di esterno che sicuramente non abbia nulla a che fare con gli attacchi dei mostri. Dovrei parlare con Guthbered a Prim se voglio aiutarli.|||} - {15|Guthbered di solito sta nella sala principale di Prim. Devo cercare una casa di pietra al centro del paese.|||} - {20|Guthbered mi ha raccontato la storia di Prim, ha detto che da un po\' è costantemente sotto attacco da parte dell\'insediamento di Blackwater.|||} - {25|Guthbered vuole che vada all\'insediamento di Blackwater a chiedere al loro maestro d\'armi Harlenn, perché (o se) hanno reclutato i mostri Gornaud contro Prim.|||} - {30|Ho parlato con Harlenn circa gli attacchi a Prim. Egli nega che la gente dell\'insediamento di Blackwater abbia nulla a che farci. Dovrei tornare a riferirlo a Guthbered a Prim.|||} - {40|Guthbered continua a credere che l\'insediamento di Blackwater sia coinvolto negli attacchi.|||} - {50|Guthbered vuole che vada a cercare indizi sul piano di attacco che l\'insediamento di Blackwater sta preparando contro Prim. Dovrei andare a cercare degli indizi vicino agli alloggi privati di Harlenn, assicurandomi di non essere visto.|||} - {60|Ho trovato alcuni giornali negli alloggi privati di Harlenn che illustrano un piano per attaccare Prim. Dovrei andare immediatamente a parlarne con Guthbered.|||} - {70|Guthbered mi ha ringraziato per averlo aiutato a trovare le prove dei piani di un attacco.|1150||} - {80|Al fine di far cessare gli attacchi a Prim, Guthbered vuole io uccida Harlenn nell\'insediamento di Blackwater.|||} - {90|Ho cominciato un combattimento con Harlenn.|||} - {91|Ho detto ad Harlenn che sono stato inviato per ucciderlo, ma l\'ho lasciato vivere. Mi ha profondamente ringraziato ed lasciato l\'insediamento.|2100||} - {99|Guthbered mi ha ringraziato per l\'aiuto che ho dato a Prim. Speriamo che gli attacchi contro Prim ora cessino. Come ringraziamento, Guthbered mi ha dato alcuni oggetti e un permesso falso che può farmi entrare nella camera interna dell\'insediamento di Blackwater.|||} - {100|Ho mostrato il permesso falso alla guardia ed ho avuto accesso alla camera interna dell\'insediamento.|5000||} - {140|Ora a Prim tutti si fidano di me e mi lasciano comprare in tutti negozi.|||} - {240|Ho deciso di non aiutare la gente di Prim.||1|} - {250|Dal momento che sto aiutando l\'insediamento di Blackwater, Guthbered non vuole più parlare con me.||1|} - {251|Dal momento che sto aiutando l\'insediamento di Blackwater, Guthbered non vuole più parlare con me.||1|} - }|}; -{kazaul|Luce dell\'Ombra|1|{ - {8|Sono andato nella camera interna dell\'insediamento di Blackwater e ho trovato un gruppo di maghi guidati da un uomo di nome Throdna.|||} - {9|Throdna sembra molto interessato a qualcuno (o qualcosa) chiamato Kazaul, e in particolare ad un rituale eseguito in suo nome.|||} - {10|Ho accettato di aiutare Throdna a cercare informazioni sul rituale, esistono le istruzioni per il rituale su un foglio strappato sparso per la montagna. Dovrei andare a cercare le parti del rituale di Kazaul sul sentiero di Blackwater che porta a Prim.|||} - {11|Ho bisogno di trovare le due parti del canto e i tre pezzi che descrivono il rituale stesso e tornare da Throdna una volta che li ho trovato tutti.|||} - {21|Ho trovato la prima metà del canto per il rituale di Kazaul.|||} - {22|Ho trovato la seconda metà del canto per il rituale di Kazaul.|||} - {25|Ho trovato il primo pezzo del rituale di Kazaul.|||} - {26|Ho trovato il secondo pezzo del rituale di Kazaul.|||} - {27|Ho trovato il terzo pezzo del rituale di Kazaul.|||} - {30|Throdna mi ha ringraziato per aver trovato tutti i pezzi del rituale.|3600||} - {40|Throdna vuole che metta fine alla nascita delle uova di Kazaul che è cominciata sul monte Blackwater. C\'è un santuario ai piedi del monte, dovrei andare a dargli un\'occhiata.|||} - {41|Mi è stata data una fiala di purificazione dello spirito che Throdna vuole applichi al santuario di Kazaul. Dovrei tornare da Throdna quando ho trovato e purificato il santuario.|||} - {50|Nel santuario alla base della Montagna Blackwater ho incontrato il custode di Kazaul. Recitando i versi del canto rituale ho indotto il guardiano ad attaccarmi.|||} - {60|Ho purificato il santuario di Kazaul.|3200||} - {100|Mi aspettavo qualche riconoscimento da Throdna per averlo aiutato a conoscere il rituale e aver purificato il santuario. Ma sembrava più occupato a farneticare riguardo Kazaul. Non riuscivo a capire nulla dei suoi vaneggiamenti.||1|} - }|}; -{bwm_wyrms|Nessuna debolezza|1|{ - {10|Herec al secondo livello dell\'insediamento di Blackwater è in cerca di dragoni bianchi. Vuole che gli porti 5 artigli di dragone bianco in modo che possa continuare la sua ricerca. A quanto pare, solo alcuni dei dragoni hanno questi artigli. Dovrò ucciderne alcuni per trovarli.|||} - {20|Ho portato 5 artigli di dragone bianco a Herec.|||} - {30|Herec ha finito di creare una pozione curativa che sarà molto utile in futuro per affrontare i dragoni.|1500|1|} - }|}; -{bjorgur_grave|Svegliato dal sonno|1|{ - {10|Bjorgur di Prim alla base del monte Blackwater pensa che qualcosa abbia disturbato la tomba dei suoi genitori a sud-ovest di Prim, appena fuori della miniera di Elm.|||} - {15|Bjorgur vuole che vada a controllare la tomba per assicurarmi che il pugnale della sua famiglia sia ancora al suo posto.|||} - {20|Fulus di Prim vuole avere il pugnale della famiglia di Bjorgur e che suo nonno usò per ottenere potere.|||} - {30|Ho incontrato un uomo che brandiva un pugnale strano nei pressi di una tomba a sud-ovest di Prim. Deve aver rubato il pugnale dalla tomba.|||} - {40|Ho rimesso il pugnale al suo posto nella tomba. I non-morti sembrano stranamente meno inquieti ora.|200||} - {50|Bjorgur mi ha ringraziato per l\'assistenza. Mi ha detto che dovrei anche cercare i suoi parenti a Feygard per una ricompensa.|1100|1|} - {51|Ho portato il pugnale della famiglia di Bjorgur a Fulus. Mi ha ringraziato calorosamente e mi ha ricompensato molto bene.|||} - {60|Ho portato il pugnale della famiglia Bjorgur a Fulus. Lui mi ha ringraziato calorosamente e mi ha ricompensato molto bene.|1700|1|} - }|}; - - - diff --git a/AndorsTrail/res/values-ja/content_conversationlist.xml b/AndorsTrail/res/values-ja/content_conversationlist.xml deleted file mode 100644 index 0d0c0ca59..000000000 --- a/AndorsTrail/res/values-ja/content_conversationlist.xml +++ /dev/null @@ -1,377 +0,0 @@ - - - - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{mikhail_start_select|||{ - {|mikhail_start_select2|mikhail_bread:100||||} - {|mikhail_bread_continue|mikhail_bread:10||||} - {|mikhail_start_select2|||||} - }|}; -{mikhail_start_select2|||{ - {|mikhail_start_select_default|mikhail_rats:100||||} - {|mikhail_rats_continue|mikhail_rats:10||||} - {|mikhail_start_select_default|||||} - }|}; -{mikhail_start_select_default|||{ - {|mikhail_visited|andor:1||||} - {|mikhail_gamestart|||||} - }|}; -{mikhail_gamestart|おはよう、目は覚めたかな。||{{N|mikhail_visited|||||}}|}; -{mikhail_visited|おまえのお兄さんのAndorが見当たらないぞ。あれは昨日出かけたきり戻ってきておらん。|{{0|andor|1|}}|{{N|mikhail3|||||}}|}; -{mikhail3|まあ気にするな、じきに戻ってくるだろう。||{{N|mikhail_default|||||}}|}; -{mikhail_default|何かしてほしいことでもあるのか?||{ - {やって欲しい仕事でもありますか?|mikhail_tasks|||||} - {Andorの話は他にないんですか?|mikhail_andor1|||||} - }|}; -{mikhail_tasks|ああ、いくつかやってほしいことがあったな。パンの事とネズミの事があるが、どれから聞きたいかな。||{ - {パンの事を聞こう。|mikhail_bread_select|||||} - {ネズミの事を聞こう。|mikhail_rats_select|||||} - {やっぱり、別な事を話しましょう。|mikhail_default|||||} - }|}; -{mikhail_andor1|さっきも言ったが、Andorは昨日出かけてから戻ってきておらん。さて、心配になってきたな。おまえのお兄さんを探してくるのをお願いしよう。あれは、少しだけ外出するとしか言っておらんかった。||{{N|mikhail_andor2|||||}}|}; -{mikhail_andor2|またあの貯蔵の洞穴にでも入っていって、出られなくなったのでないか。 でなければ、またLetaの地下室で、木刀を担いで訓練をしているのかも知れんな。 村の中を探してみてくれ。||{{N|mikhail_default|||||}}|}; -{mikhail_bread_select|||{ - {|mikhail_bread_complete2|mikhail_bread:100||||} - {|mikhail_bread_continue|mikhail_bread:10||||} - {|mikhail_bread_start|||||} - }|}; -{mikhail_bread_start|そうだ、集会場にいるMaraからパンを買ってきてくれんか? 時間があるときでいいぞ。|{{0|mikhail_bread|10|}}|{{N|mikhail_default|||||}}|}; -{mikhail_bread_continue|集会場にいるMaraから、パンを買ってきてくれたか?||{ - {はい、どうぞ。|mikhail_bread_complete||bread|1|0|} - {いや、まだです。|mikhail_default|||||} - }|}; -{mikhail_bread_complete|おお済まない、手伝いの代金をあげよう。さて、これで朝飯を作ることができるぞ。|{ - {0|mikhail_bread|100|} - {1|gold20||} - }|{{N|mikhail_default|||||}}|}; -{mikhail_bread_complete2|パンは持ってきてくれていたな。ありがとう。||{{どういたしまして。|mikhail_default|||||}}|}; -{mikhail_rats_select|||{ - {|mikhail_rats_complete2|mikhail_rats:100||||} - {|mikhail_rats_continue|mikhail_rats:10||||} - {|mikhail_rats_start|||||} - }|}; -{mikhail_rats_start|先日、家の裏庭にネズミが出ているのを見とるんだ。外に出て、おまえがネズミを全部殺してきてくれんか。|{{0|mikhail_rats|10|}}|{ - {もう始末してきました。|mikhail_rats_complete||tail_trainingrat|2|0|} - {わかりました、庭を見てきます。|mikhail_rats_start2|||||} - }|}; -{mikhail_rats_start2|ネズミに怪我をさせられていたら、奥にあるおまえのベッドで休みなさい。 それで強さを取り戻すことができるからな。||{{N|mikhail_rats_start3|||||}}|}; -{mikhail_rats_start3|それに、持っているアイテムを確認するのを忘れるな。 私があげた古い指輪をまだ持っているんじゃないか? それを着けるようにしなさい。||{{わかりました。怪我をしたら休憩をします。それと、持っているアイテムを確認して使えるものを探します。|mikhail_default|||||}}|}; -{mikhail_rats_continue|うちの庭にいるネズミを2匹とも殺したか?||{ - {あのネズミは、今始末してきました。|mikhail_rats_complete||tail_trainingrat|2|0|} - {まだです。|mikhail_rats_start2|||||} - }|}; -{mikhail_rats_complete|やったのか? おお、本当にありがとう。\n\n怪我をしていたら、そこにあるおまえのベッドで休憩して、体力を回復しなさい。|{{0|mikhail_rats|100|}}|{{N|mikhail_default|||||}}|}; -{mikhail_rats_complete2|ネズミ退治、ご苦労様だよ。\n\n怪我をしていたら、そこにあるおまえのベッドで休憩して、体力を回復しなさい。||{{N|mikhail_default|||||}}|}; - - - - - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{leta1|おい、ここは私の家だよ!出て行きなさい。||{ - {でも、僕はただ...|leta2|||||} - {あなたの夫のOromirさんのことなんですが。|leta_oromir_select|||||} - }|}; -{leta2|さっさと、出て行きなさい!||{{あなたの夫のOromirさんのことなんですが。|leta_oromir_select|||||}}|}; -{leta_oromir_select|||{ - {|leta_oromir_complete2|leta:100||||} - {|leta_oromir1|||||} - }|}; -{leta_oromir1|主人の事、何か知っているのかい? あの人は今日、私と畑仕事をしなきゃいけないのに、いつも通りにどこか行っちゃったのよ。\nはぁ...||{ - {特にわかりません。|leta_oromir2|||||} - {Oromirさんは東の方で林の中に隠れていましたよ。|leta_oromir_complete|leta:20||||} - }|}; -{leta_oromir2|あの人を見つけたら、早く帰って家事を手伝うように言ってちょうだい。\nさあ、今度こそ帰りなさい。|{{0|leta|10|}}||}; -{leta_oromir_complete|隠れてた? 驚くことじゃないわね。 ここのボスが誰なのか、あの人に教えておくわ。\n知らせてくれて感謝するよ。|{{0|leta|100|}}||}; -{leta_oromir_complete2|さっきは教えてくれてありがとうね。私はとっととあの人を捕えに行くわ。|||}; -{oromir1|わっ、びっくりした。\nこんにちは。||{{こんにちは。|oromir2|||||}}|}; -{oromir2|僕はここで、妻のLetaから隠れてるんだよ。彼女、僕が畑を手伝わないといつも怒るんだ。ここにいるってこと、どうか彼女に教えないでくれ。|{{0|leta|20|}}|{{オッケー|X|||||}}|}; - - - - - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{audir1|この店へよく来てくれた!\n\n良い武具が揃ってるよ、見て行ってくれ。||{{武具を見せてください。|S|||||}}|}; -{arambold1|ううむ、この酔っ払いどもが歌っている中、私は眠れるんだろうか?\n誰か何とかしてほしいね。||{ - {ここで休憩してもいいですか?|arambold2|||||} - {何か売買できますか?|S|||||} - }|}; -{arambold2|もちろん、君はここで休憩できる。\n\n好きなベッドを使うんだな。||{{ありがとう、それでは。|X|||||}}|}; -{drunk1|飲め飲め飲め飲め もうちっと飲め!\n飲め飲め飲め飲め 倒れるまでよぉ!\n\nおいボウズ、俺たちと一緒に飲まねえか?||{ - {遠慮します。|X|||||} - {またいつか。|X|||||} - }|}; -{mara_default|こいつら飲んだくれは無視しな、 厄介事を起こしてばかりなんだ。\n\n何か食べるかい?||{{何か売買できますか?|S|||||}}|}; -{mara1|||{ - {|mara_thanks|odair:100||||} - {|mara_default|||||} - }|}; -{mara_thanks|Odairを手伝って、あの貯蔵の洞穴を掃除したって聞いたよ。 また使えるようになるんだからね、すごく感謝してる。||{{いえ、どういたしまして。|mara_default|||||}}|}; -{farm1|俺は仕事中だ、邪魔をするなよ。||{{僕の兄のAndorを見ませんでした?|farm_andor|||||}}|}; -{farm2|忙しいのが分からんか、坊主!邪魔するならよそでやってくれ。||{{僕の兄のAndorを見ませんでした?|farm_andor|||||}}|}; -{farm_andor|Andor? いや、俺は最近見てないよ。|||}; -{snakemaster|フムフム、何が来たのかな? お客さん、何て素晴らしい。 私の手下たちをすべてくぐり抜け、はるばるやって来た・・・感動しますね。\n\nちっちゃい子犬ちゃん、そろそろ死ぬ準備をしなさい?||{ - {いいぞ、こんな戦いを待っていたんだ!|F|||||} - {ここで死ぬのは誰か分からせてやる。|F|||||} - {やめて!痛くしないで!|F|||||} - }|}; -{haunt|定命の者よ、おお、我輩をこの呪われた場所から解放してくれ!||{ - {問題なく解放してあげますよ。|F|||||} - {つまり、殺してって事?|F|||||} - }|}; - - - - - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{tharal1|我等の子よ、シャドーの灯りの中を歩きなさい。||{ - {何か売買できますか?|S|||||} - {骨粉についての話を聞きたい。|tharal_bonemeal_select|bonemeal:10||||} - }|}; -{tharal_bonemeal_select|||{ - {|tharal_bonemeal4|bonemeal:30||||} - {|tharal_bonemeal1|||||} - }|}; -{tharal_bonemeal1|骨粉? その話はするべきではありません。 あれは違法だという勅令が、Geomyr卿から出されたのです。||{{でも、お願いします。|tharal_bonemeal2_1|||||}}|}; -{tharal_bonemeal2_1|駄目です。 我々は、本当に禁じられているんですよ。||{{どうしても駄目ですか?|tharal_bonemeal2|||||}}|}; -{tharal_bonemeal2|はあ、君がそんなに頑固なら少し考えます。\nポーションを作るのに使うので、昆虫の翅を5つ持ってきてください。 そうしたら話しましょう。|{{0|bonemeal|20|}}|{ - {はい、これです。(昆虫の翅を渡す)|tharal_bonemeal3||insectwing|5|0|} - {持ってきます。|X|||||} - }|}; -{tharal_bonemeal3|ありがとう。 君ならやってくれると思っていたよ。|{{0|bonemeal|30|}}|{{N|tharal_bonemeal4|||||}}|}; -{tharal_bonemeal4|骨粉は、正しく調合すれば、この辺りで手に入るいちばん強力な回復剤になるのです。||{{N|tharal_bonemeal5|||||}}|}; -{tharal_bonemeal5|以前はよく使っていたものですが、奴に・・・おっと、Geomyr卿に禁止されてしまったのです。||{{N|tharal_bonemeal6|||||}}|}; -{tharal_bonemeal6|どうやってこれから治療するというのでしょう。普通の"治癒のポーション"を使えって?あんなに効きにくい物をですか。||{{N|tharal_bonemeal7|||||}}|}; -{tharal_bonemeal7|さて、もし関心がおありなら、まだ骨粉のポーションを作ってくださる方を紹介しましょう。Fallhavenの神官、Thoronirを訪ねなさい。合言葉の\'Glow of the Shadow\'を言えばわかるでしょう。||{{ありがとう。 ではまた。|X|||||}}|}; - - - - - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{gruil1|よう、そこの。\n何か買うのか?||{ - {もちろん。見せてくれ。|S|||||} - {少し前に僕の兄と話したと聞いたんだけど。|gruil_select|andor:10||||} - }|}; -{gruil_select|||{ - {|gruil_return|andor:30||||} - {|gruil2|||||} - }|}; -{gruil2|お前の兄さん、つまりAndorか? 知ってるかもしれないが、その情報はタダじゃないぜ。 辺りにいる毒蛇から毒腺が取れるから、1つ俺に持って来い。 そうすれば教えてやろう。|{{0|andor|20|}}|{ - {毒腺なら持っている。|gruil_complete||gland|1|0|} - {これから取ってくる。|X|||||} - }|}; -{gruil_complete|これでいいぞ。有難うな。|{{0|andor|30|}}|{{N|gruil_andor1|||||}}|}; -{gruil_return|おいお前、それは一度聞いただろう?||{{N|gruil_andor1|||||}}|}; -{gruil_andor1|あいつと会ったのは昨日、Umarとかそういった名前の人を知っているかと訊いてきた。\n俺には誰のことを言っているのかさっぱりだったがな。||{{N|gruil_andor2|||||}}|}; -{gruil_andor2|お前の兄さんはとても冷静とは言えない感じで、何か気掛かりがあるようだった。 俺と話した後は急いで出て行ったよ。 \n行き先はFallhavenの盗賊ギルドとか言っていたな。||{{N|gruil_andor3|||||}}|}; -{gruil_andor3|これで全部だ。 \nFallhavenの街で聞き込みをするといいんじゃないか? 俺の友達のGaelaを探せば、そいつがもっと知っているかもな。||{{ありがとう。(礼をする)\n|X|||||}}|}; - - - - - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{leonid1|君はMikhailの息子、兄弟の弟の方だったね。 今朝は元気かね?\n\n私はLeonid、Crossglenの村の長だ。||{ - {兄のAndorを見ませんでしたか?|leonid_andor|||||} - {Crossglenの村について教えて下さい。|leonid_crossglen|||||} - {何でもありません。 またお話ししましょう。|leonid_bye|||||} - }|}; -{leonid_andor|君の兄? いいや、今日は見ておらん。 ただ、昨日ここでGruilと話をしているのを見た。 彼が知っているのではないかな?|{{0|andor|10|}}|{ - {ありがとう、Gruilと話をしてみます。\n他にも訊きたいことがあるのですが。|leonid_continue|||||} - {ありがとう、Gruilと話をしてみます。|leonid_bye|||||} - }|}; -{leonid_continue|他に何かあるのかね?||{ - {兄のAndorを見ませんでしたか?|leonid_andor|||||} - {Crossglenの村について教えて下さい。|leonid_crossglen|||||} - {いえ、特にありません。 またお話しましょう。|leonid_bye|||||} - }|}; -{leonid_crossglen|知っているだろうが、ここがCrossglenの村だ。 ほとんど農業の村だな。||{{N|leonid_crossglen1|||||}}|}; -{leonid_crossglen1|この集会場から南西にはAudirの鍛冶屋が、西にはLeta夫婦の家が、そして北西には君の父Mikhailの家がある。||{{N|leonid_crossglen2|||||}}|}; -{leonid_crossglen2|これだけだ。 我々は平和に生きることを良しとしているんだよ。||{ - {村では最近何が起こりましたか?|leonid_crossglen3|||||} - {やっぱり、他の話を訊きたいです。|leonid_continue|||||} - }|}; -{leonid_crossglen3|数週ほど前に騒動があったな、君も気づいていたかね? 何人かの村人の間で、Geomyr卿の勅令のことで喧嘩が起きておる。||{{N|leonid_crossglen4|||||}}|}; -{leonid_crossglen4|Geomyr卿が発したお触れ、あれは骨粉を治療剤として使うことを違法とするものだ。 幾人かは、Geomyr卿のこの言葉に反抗すべきだと言って、骨粉のポーションを使っておる。|{{0|bonemeal|10|}}|{{N|leonid_crossglen4_1|||||}}|}; -{leonid_crossglen4_1|我が村の神官Tharalなどは特に気が立っていて、Geomyr卿に対して"行動を起こす"べきだなどと言っている。||{{N|leonid_crossglen5|||||}}|}; -{leonid_crossglen5|他の村人は、卿の勅令に歯向かってはいけないと主張している。\n私個人としては、どちらの考えを支持するかは決めきれていないがね。||{{N|leonid_crossglen6|||||}}|}; -{leonid_crossglen6|一方では、Geomyr卿はCrossglenを守護しているとも言えるが‥・ (集会場内の兵士を指差す)||{{N|leonid_crossglen7|||||}}|}; -{leonid_crossglen7|もう一方では、最近の法の変更は、税金ともどもCrossglenの村を本当に苦しめている。||{{N|leonid_crossglen8|||||}}|}; -{leonid_crossglen8|Geomyr城に誰かが陳情に行かなければならないだろうな。|{{0|crossglen|1|}}|{{N|leonid_crossglen9|||||}}|}; -{leonid_crossglen9|それはさて置き、まとめると、我々は治療のために骨粉を使うことを禁止されてしまったということだ。||{ - {情報をありがとうございます。\n他にも訊きたいことがあるのですが。|leonid_continue|||||} - {情報をありがとうございます。 じゃあ。|leonid_bye|||||} - }|}; -{leonid_bye|シャドーがお前と共にあるように。||{{シャドーがあなたと共にありますように。|X|||||}}|}; - - - - - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{odair1|お前か、 お前ら兄弟はまた面倒ばかり起こしてるな。||{{N|odair_select|||||}}|}; -{odair_select|||{ - {|odair_complete2|odair:100||||} - {|odair_continue|odair:10||||} - {|odair2|||||} - }|}; -{odair2|いや待てよ、お前も役に立つかも。 ちょっとした仕事があるんだが手伝わねぇか?||{ - {どんな仕事なの?|odair3|||||} - {もちろんやる。 それで儲けがあるなら、だけど。|odair3|||||} - }|}; -{odair3|最近、村の蓄えがどれだけ残っているか調べに、あの洞窟に入ったんだがよ。(西のほうを指差す)\n俺が見たところ、ネズミがはびこって居やがる。||{{N|odair4|||||}}|}; -{odair4|特に言うとだな、他のネズミよりデカい奴がいた。 お前、あれを倒してこれそうか?||{ - {当然、みんなが貯蔵の洞穴を使えるように、手伝うに決まっている。|odair5|||||} - {やるさ。 まあ、単にこれで稼げそうだから、なんだけど。|odair5|||||} - {悪いけどできません。|odair_cowards|||||} - }|}; -{odair5|あの洞穴に入って、大きいネズミを殺してきてくれ。 そうすればネズミの繁殖も止められて、洞穴をまた使うことができる。|{{0|odair|10|}}|{ - {了解。|X|||||} - {やっぱりこの仕事はしないことにする。|odair_cowards|||||} - }|}; -{odair_cowards|予想はしてたよ。おまえら兄弟は、あんまり勇敢じゃないから。||{{じゃあね。|X|||||}}|}; -{odair_continue|西の洞窟にいる大きいネズミは殺してきたか?||{ - {うん、やって来た。|odair_complete||tail_caverat|1|0|} - {何をすればいいんだっけ?|odair5|||||} - {まだやってない。|odair_cowards|||||} - }|}; -{odair_complete|いいね、やるじゃん! おまえら兄弟は、思ってたほど意気地無しじゃあないんだな。 \n手伝いのお礼だ、取っとけ。|{ - {0|odair|100|} - {1|gold20||} - }|{{ありがと。|X|||||}}|}; -{odair_complete2|この前のことは感謝してるよ。 おかげでまた俺たちは貯蔵の洞穴を使えるようになったからな。||{{じゃあね。|X|||||}}|}; - - - - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{jan_start_select|||{ - {|jan_complete2|jan:100||||} - {|jan_return|jan:10||||} - {|jan_default|||||} - }|}; -{jan_default|少年よ、一人にしてくれないか。\nここに眠っているあいつのために祈っているんだ。||{ - {どうされたんです?|jan_default2|||||} - {何があったのか話してくれませんか?|jan_default2|||||} - {わかったよ、それじゃあ。|X|||||} - }|}; -{jan_default2|本当に悲しくて、話したくはないんだ。||{ - {どうぞ話してください。|jan_default3|||||} - {わかったよ、それじゃあ。|X|||||} - }|}; -{jan_default3|ああ、君は本当にいい子だ。話すとしよう。||{{N|jan_default4|||||}}|}; -{jan_default4|私、友人のGandirと彼の友人のIrogotuの3人で、ここにある穴を掘り返していたんだ。そこに財宝があると聞いてね。||{{N|jan_default5|||||}}|}; -{jan_default5|掘ってみた結果、私たちは洞窟を掘り当てた。そのときに、クリッターや虫だ。||{{N|jan_default6|||||}}|}; -{jan_default6|あの忌々しいクリッター共に攻撃され、私は死にかけたよ。\nGandirと私は、掘るのを止めて今のうちに逃げるべきだとIrogotuに言ったんだ。||{{N|jan_default7|||||}}|}; -{jan_default7|だが、Irogotuはこの迷宮の奥に進もうとした。奴はGandirと口論をはじめ、ついには殴り合いになった。||{{N|jan_default8|||||}}|}; -{jan_default8|その時だよ、うう・・・\n(すすり泣く)\n\nああ済まない、どこまで話したんだ?||{{続けてください。|jan_default9|||||}}|}; -{jan_default9|IrogotuはGandirを殴り殺した。奴の目はぎらぎらと血走っていた。殺すのを楽しんでいるようにさえ見えた。||{{N|jan_default10|||||}}|}; -{jan_default10|私は逃げ出した。Irogotuの奴とクリッターがいるから、あえて戻ろうとしなかった。||{{N|jan_default11|||||}}|}; -{jan_default11|Irogotuの奴め、畜生め!仮に会うことがあったら、今度こそ目に物見せてやる。||{{僕がそれに協力出来ると思いません?|jan_default11_1|||||}}|}; -{jan_default11_1|君が協力できるだって?||{ - {財宝が手に入りそうな話なんだし、当前だ。|jan_default12|||||} - {Irogotuは自分のしたことの報いを受けるべきだ。|jan_default12|||||} - {遠慮する。危険そうなので、僕は関わらないほうがよさそうだ。|X|||||} - }|}; -{jan_default12|本当か?本当に協力してくれるのか?\nならば、虫にも気をつけておけ。あいつらはしぶとい。|{{0|jan|10|}}|{{N|jan_default13|||||}}|}; -{jan_default13|本当にやりたいというなら、洞窟内にいるIrogotuを探しだし、Gandirの指輪を持ってきてくれ。||{ - {やってやろうじゃないか。|jan_default14|||||} - {もう一度話してもらえませんか?|jan_background|||||} - {さようなら。やっぱり気にしないでください。|X|||||} - }|}; -{jan_default14|終わったら私のところに来てくれ。\nこの洞窟に居るIrogotuから、Gandirの指輪を取り返してきてほしい。||{{了解、じゃあまた。|X|||||}}|}; -{jan_return|また会ったな、少年。Irogotuを見つけたのか?||{ - {いいえ、まだ。|jan_default14|||||} - {もう一度詳しい話を聞かせてください。|jan_background|||||} - {Irogotuは殺してきました。|jan_complete||ring_gandir|1|0|} - }|}; -{jan_background|最初の1回で聞いていてくれなかったのか。本当に聞く必要があるかい?||{ - {はい、もう一度お願いします。|jan_default3|||||} - {聞いてなかったよ。お宝がどうかしたんだっけ?|jan_default4|||||} - {いえ、思い出したので気にしないでください。|jan_default14|||||} - }|}; -{jan_complete2|Irogotuをやってくれて、本当に感謝する。これで私は君に一生分の借りがあるよ。||{{さようなら。|X|||||}}|}; -{jan_complete|待った、洞窟に降りて行って、本当に生きて戻ってきた!? 私なんて死にかけたのに、よく出来たものだよ。\n\nGandirの指輪も持ってきてくれたか。ありがとう、彼の形見だ。|{{0|jan|100|}}|{ - {こちらこそ協力出来てうれしく思います。さようなら。|X|||||} - {シャドーがあなたと共にありますように。|X|||||} - {何とでも。財宝をかっぱぐためににやっただけだ。|X|||||} - }|}; -{irogotu|俺の洞窟へようこそ。冒険家がまた俺の財産を盗みにきたんだな?ここは俺の洞窟だ!ここにある財宝ははすべて俺のものだ!||{{お前がGandirを殺したのか?|irogotu1|jan:10||||}}|}; -{irogotu1|Gandirってあのガキか?あいつは俺の邪魔をしたんだ。あいつなんか俺にとっては洞窟掘りの道具でしかないってのにな。||{{N|irogotu2|||||}}|}; -{irogotu2|俺があいつに情けをかけるなんて、今まで一度もなかったぜ。||{ - {うん、その人は死ぬような奴だったってことだね。ところでGandirは指輪を持ってなかった?|irogotu3|||||} - {Janが指輪のことについて話していたけど?|irogotu3|||||} - }|}; -{irogotu3|お前には渡さん、これは俺のものだ!\nお前は子供のくせに、わざわざ邪魔すんのか!?||{ - {僕は子供じゃない!さあ指輪を渡せ!|irogotu4|||||} - {指輪を渡せ。さもなくば僕とお前のどちらかは死体でここを出ることになるぞ。|irogotu4|||||} - }|}; -{irogotu4|欲しければ力ずくで奪えよ。まあ俺のほうが強いが、それでもやるのか?||{ - {上等だ、どっちが死ぬのか見てみろ。|F|||||} - {シャドーによって、あなたはGandirの復讐を受けますよ。|F|||||} - }|}; - - - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fallhaven_citizen1|こんにちは。いい天気だの。||{{僕の兄のAndorを見ませんでした?|fallhaven_andor_1|||||}}|}; -{fallhaven_citizen2|こんにちは。お前さんどうかしたのかい?||{{僕の兄のAndorを見ませんでした?|fallhaven_andor_2|||||}}|}; -{fallhaven_citizen3|何か?||{{僕の兄のAndorを見ませんでした?|fallhaven_andor_3|||||}}|}; -{fallhaven_citizen4|君はCrossglenの村から来たあの子供か?||{{僕の兄のAndorを見ませんでした?|fallhaven_andor_4|||||}}|}; -{fallhaven_citizen5|田舎者のキミ、そこをどきなさい。|||}; -{fallhaven_citizen6|ご機嫌よう。||{{僕の兄のAndorを見ませんでした?|fallhaven_andor_6|||||}}|}; -{fallhaven_andor_1|すまんな。君が説明してくれたような人は見とらん。|||}; -{fallhaven_andor_2|別な子供と言ったかい? ふむう、ええとねえ。||{{N|fallhaven_andor_1|||||}}|}; -{fallhaven_andor_3|何日か前、君が言ったことに当てはまるような人を見たかも。うん。\nでもどこでなのかはちょっと分からない。|||}; -{fallhaven_andor_4|なるほど。数日前にCrossglenの村から来た少年がいたよ。でもその子が君の探している人かはわからない。||{{N|fallhaven_andor_4_1|||||}}|}; -{fallhaven_andor_4_1|怪しげな恰好の人が数名、彼といっしょに行動していた。見たものはこれだけだ。|||}; -{fallhaven_andor_6|ううん、そんな奴見てないわ。|||}; -{fallhaven_guard|変なことをするんじゃないぞ。|||}; -{fallhaven_priest|シャドー汝と共にあれ。||{{シャドーについて僕に教えてください。|priest_shadow_1|||||}}|}; -{priest_shadow_1|シャドーは我々を守ってくださる。我々が眠っている間、安全で快適にしていてくれる。||{{N|priest_shadow_2|||||}}|}; -{priest_shadow_2|我々がどこへ行こうと、離れることはない。我等の子はシャドーと共に行きなさい。||{ - {シャドーがあなたと共にありますように。|X|||||} - {どうでもいい。じゃあね。|X|||||} - }|}; -{rigmor|はーいこんにちは!君カワイイわね。||{ - {僕の兄のAndorを見ませんでした?|rigmor_1|||||} - {ちょっと用事があるので、本当に行かないと・・・|rigmor_leave_select|||||} - }|}; -{rigmor_1|君のお兄さんって?名前はAndor?ううん、そういう人に会った覚えはないわ。||{{ちょっと用事があるので、本当に行かないと・・・|rigmor_leave_select|||||}}|}; -{rigmor_leave_select|||{ - {|rigmor_thanks|calomyran:100||||} - {|X|||||} - }|}; -{rigmor_thanks|お父さんの本を探すのを手伝ってくれたって聞いたわ。ありがとう。あの本の事をもう何週間も言いつづけてたのよ。\nかわいそうに、物忘れが多くなってきちゃって。||{ - {どういたしまして。さようなら。|X|||||} - {ちゃんと見張っておかないと、よくない事が起きるかもしれませんよ。|X|||||} - {まあいい、お金のためにしたことだ。|X|||||} - }|}; -{fallhaven_clothes|私の店にようこそ。私が特選した上質な衣服と宝石をどうぞご覧ください。||{{売り物を見せてください。|S|||||}}|}; -{fallhaven_potions|私の店にようこそ。選び抜かれた品質のポーションや常備薬を見て行ってください。||{{どんなポーションがあるか見せてください。|S|||||}}|}; - - - - diff --git a/AndorsTrail/res/values-pl/content_actorconditions.xml b/AndorsTrail/res/values-pl/content_actorconditions.xml deleted file mode 100644 index 145cc59f2..000000000 --- a/AndorsTrail/res/values-pl/content_actorconditions.xml +++ /dev/null @@ -1,52 +0,0 @@ - - - - -[id|name|iconID|category|isStacking|isPositive|hasRoundEffect|round_visualEffectID|round_boostHP_Min|round_boostHP_Max|round_boostAP_Min|round_boostAP_Max|hasFullRoundEffect|fullround_visualEffectID|fullround_boostHP_Min|fullround_boostHP_Max|fullround_boostAP_Min|fullround_boostAP_Max|hasAbilityEffect|boostMaxHP|boostMaxAP|moveCostPenalty|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|]; -{bless|Błogosławieństwo|actorconditions_1:41|0||1|||||||||||||1|||||5|||||||}; -{poison_weak|Słaba trucizna|actorconditions_1:60|3|||1|2|-1|-1|||||||||||||||||||||}; -{str|Siła|actorconditions_1:70|2||1|||||||||||||1||||||||2|2|||}; -{regen|Regeneracja cieni|actorconditions_1:35|0||1|1|1|1|1|||||||||0||||||||||||}; - - - -[id|name|iconID|category|isStacking|isPositive|hasRoundEffect|round_visualEffectID|round_boostHP_Min|round_boostHP_Max|round_boostAP_Min|round_boostAP_Max|hasFullRoundEffect|fullround_visualEffectID|fullround_boostHP_Min|fullround_boostHP_Max|fullround_boostAP_Min|fullround_boostAP_Max|hasAbilityEffect|boostMaxHP|boostMaxAP|moveCostPenalty|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|]; -{speed_minor|Drobne przyspieszenie|actorconditions_1:87|2||1|||||||||||||1||2||||||||||}; -{fatigue_minor|Drobne zmęczenie|actorconditions_1:14|2|||0||||||0||||||1|||2|2||||-1|-1|||}; -{feebleness_minor|Drobne osłabienie broni|actorconditions_1:74|1|||||||||||||||1||||||||-3|-3|||}; -{bleeding_wound|Krwawiące rany|actorconditions_2:0|3|1||1|0|-1|-1|||||||||||||||||||||}; -{rage_minor|Słaby berserk|actorconditions_1:90|1||1|0|-1|||||||||||1|35||||60|||||-90|-1|}; -{blackwater_misery|Nieszczęście Blackwater|actorconditions_1:58|3|||||||||||||||1||||1|-50|-50||||||}; -{intoxicated|Odurzenie|actorconditions_2:1|1||1|||||||||||||1|15|||1|-30|||4|4|||}; -{dazed|Oszołomienie|actorconditions_1:65|1|||||||||||||||1||||||||||-40||}; - - - -[id|name|iconID|category|isStacking|isPositive|hasRoundEffect|round_visualEffectID|round_boostHP_Min|round_boostHP_Max|round_boostAP_Min|round_boostAP_Max|hasFullRoundEffect|fullround_visualEffectID|fullround_boostHP_Min|fullround_boostHP_Max|fullround_boostAP_Min|fullround_boostAP_Max|hasAbilityEffect|boostMaxHP|boostMaxAP|moveCostPenalty|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|]; -{chaotic_grip|Chaotyczne działanie|actorconditions_1:96|1|||0||||||||||||1||||||||||-10|-1|}; -{chaotic_curse|Klątwa chaosu|actorconditions_1:89|1|||0||||||||||||1||-1||||||-1|-1|-10|-1|}; - - - -[id|name|iconID|category|isStacking|isPositive|hasRoundEffect|round_visualEffectID|round_boostHP_Min|round_boostHP_Max|round_boostAP_Min|round_boostAP_Max|hasFullRoundEffect|fullround_visualEffectID|fullround_boostHP_Min|fullround_boostHP_Max|fullround_boostAP_Min|fullround_boostAP_Max|hasAbilityEffect|boostMaxHP|boostMaxAP|moveCostPenalty|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|]; -{contagion|Zakażenie od robactwa|actorconditions_1:58|3|||0|2|||||||||||1|||||-10|||-1|-1|||}; -{blister|Pęcherze na skórze|actorconditions_1:15|3|||1|0|-1|-1|||||||||||||||||||||}; -{stunned|Kołowaty|actorconditions_1:95|2|||||||||||||||1||-2|8|5||||||||}; -{focus_dmg|Skoncentrowane obrażenia|actorconditions_1:70|1||1|||||||||||||1||||1||||3|3|||}; -{focus_ac|Skoncenctrowanie na celności|actorconditions_1:98|1||1|||||||||||||1||||1|40|||||||}; -{poison_irdegh|trucizna irdegh|actorconditions_1:60|3|1||1|2|-1|-1|||||||||||||||||||||}; - - - -[id|name|iconID|category|isStacking|isPositive|hasRoundEffect|round_visualEffectID|round_boostHP_Min|round_boostHP_Max|round_boostAP_Min|round_boostAP_Max|hasFullRoundEffect|fullround_visualEffectID|fullround_boostHP_Min|fullround_boostHP_Max|fullround_boostAP_Min|fullround_boostAP_Max|hasAbilityEffect|boostMaxHP|boostMaxAP|moveCostPenalty|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|]; -{rotworm|Kazaul rotworm|actorconditions_1:82|2|||||||||||||||1|-15|-3|||||||||-1|}; -{shadowbless_str|Błogosławieństwo sił cieni|actorconditions_1:70|0||1|||||||||||||1||||||||1|1|||}; -{shadowbless_heal|Błogosławieństwo regeneracji cieni|actorconditions_1:35|0||1|1|1|1|1|||||||||||||||||||||}; -{shadowbless_acc|Błogosławieństwo celności cieni|actorconditions_1:98|0||1|||||||||||||1|||||30|||||||}; -{shadowbless_guard|Błogosławieństwo ochronne cieni|actorconditions_1:91|0||1|||||||||||||1|30||||||||||1|}; -{crit1|Krwawienie wewnętrzne|actorconditions_1:89|2|1||||||||||||||1||||1|-50|||-3|-3|||}; -{crit2|Złamanie|actorconditions_1:89|2|1||||||||||||||1||||||||||-50|-2|}; -{concussion|Kontuzja|actorconditions_1:80|2|1||||||||||||||1|||||-30|||||||}; - - - diff --git a/AndorsTrail/res/values-pl/content_conversationlist.xml b/AndorsTrail/res/values-pl/content_conversationlist.xml deleted file mode 100644 index dce2c6f5b..000000000 --- a/AndorsTrail/res/values-pl/content_conversationlist.xml +++ /dev/null @@ -1,308 +0,0 @@ - - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{mikhail_start_select|||{{|mikhail_start_select2|mikhail_bread:100||||}{|mikhail_bread_continue|mikhail_bread:10||||}{|mikhail_start_select2|||||}}|}; -{mikhail_start_select2|||{{|mikhail_start_select_default|mikhail_rats:100||||}{|mikhail_rats_continue|mikhail_rats:10||||}{|mikhail_start_select_default|||||}}|}; -{mikhail_start_select_default|||{{|mikhail_visited|andor:1||||}{|mikhail_gamestart|||||}}|}; -{mikhail_gamestart|Oh jak dobrze, że się obudziłeś.||{{N|mikhail_visited|||||}}|}; -{mikhail_visited|Nie mogę nigdzie znaleźć twojego brata. Nie wrócił od wczoraj.|{{0|andor|1|}}|{{N|mikhail3|||||}}|}; -{mikhail3|Nieważne, pewnie wróci niebawem pewnie wróci.||{{N|mikhail_default|||||}}|}; -{mikhail_default|Mogę ci pomóc w czymś jeszcze?||{{Masz dla mnie jakieś zadania?|mikhail_tasks|||||}{Czy jest coś jeszcze o czym powinienem wiedzieć jeśli chodzi o Andora?|mikhail_andor1|||||}}|}; -{mikhail_tasks|Oh tak jest coś w czym mógłbyś mi pomóc, chleb i szczury. O którym zadaniu chciałbyś porozmawiać?||{{O co chodzi z tym chlebem?|mikhail_bread_select|||||}{Co z tymi szczurami?|mikhail_rats_select|||||}{Nieważne, porozmawiajmy o czymś innym.|mikhail_default|||||}}|}; -{mikhail_andor1|Tak jak mówiłem wcześniej Andor nie wrócił odkąd wczoraj wyszedł. Zaczynam się o niego martwić. Proszę poszukaj swojego brata mówił, że wyjdzie tylko na chwilę.||{{N|mikhail_andor2|||||}}|}; -{mikhail_andor2|Może znów wszedł do tej jaskini z zapasami i utknął. Albo jest u Lety w piwnicy i trenuje tym drewnianym mieczykiem. Proszę poszukaj go w mieście.||{{N|mikhail_default|||||}}|}; -{mikhail_bread_select|||{{|mikhail_bread_complete2|mikhail_bread:100||||}{|mikhail_bread_continue|mikhail_bread:10||||}{|mikhail_bread_start|||||}}|}; -{mikhail_bread_start|Oh prawie bym zapomniał. Jeśli masz czas idź zobacz się z Marą w centrum miasta i kup trochę chleba.|{{0|mikhail_bread|10|}}|{{N|mikhail_default|||||}}|}; -{mikhail_bread_continue|Przyniosłeś już chleb?||{{Tak, proszę.|mikhail_bread_complete||bread|1|0|}{Nie, jeszcze nie.|mikhail_default|||||}}|}; -{mikhail_bread_complete|Dzięki w końcu mogę zjeść śniadanie. Masz tu trochę drobnych za fatygę.|{{0|mikhail_bread|100|}{1|gold20||}}|{{N|mikhail_default|||||}}|}; -{mikhail_bread_complete2|Jeszcze raz dzięki za chleb.||{{Nie ma za co.|mikhail_default|||||}}|}; -{mikhail_rats_select|||{{|mikhail_rats_complete2|mikhail_rats:100||||}{|mikhail_rats_continue|mikhail_rats:10||||}{|mikhail_rats_start|||||}}|}; -{mikhail_rats_start|Znów widziałem te szczury w ogrodzie. Możesz je zabić?.|{{0|mikhail_rats|10|}}|{{Już sobie z nimi poradziłem.|mikhail_rats_complete||tail_trainingrat|2|0|}{Ok, sprawdzę czy już ich tam nie ma.|mikhail_rats_start2|||||}}|}; -{mikhail_rats_start2|Jeśli te sczury cię skrzywdzą wróć do domu i odpocznij w swoim łóżku. Dzięki temu odzyskasz siły.||{{N|mikhail_rats_start3|||||}}|}; -{mikhail_rats_start3|A i nie zapomnij sprawdzić swój inwentarz. Pewnie nadal masz ten stary pierścień ode mnie. Sprawdź czy na pewno go masz na palcu.||{{Ok, rozumiem. Mogę tu odpocząć, gdy będe ranny i mam sprawdzić inwentarz.|mikhail_default|||||}}|}; -{mikhail_rats_continue|Zabiłeś te dwa szczury w naszym ogrodzie?||{{Tak, już się z nimi rozprawiłem.|mikhail_rats_complete||tail_trainingrat|2|0|}{Nie, jeszcze nie.|mikhail_rats_start2|||||}}|}; -{mikhail_rats_complete|Naprawdę? Wielkie dzięki za pomoc!\n\nJak jesteś ranny odpocznij na łóżku, żeby odzyskać siły.|{{0|mikhail_rats|100|}}|{{N|mikhail_default|||||}}|}; -{mikhail_rats_complete2|Jeszcze raz dzięki za pomoc z tymi szczurami.\n\nJak jesteś ranny odpocznij na łóżku, żeby odzyskać siły.||{{N|mikhail_default|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{leta1|Hej, to mój dom wynocha stąd!||{{Ale ja tylko...|leta2|||||}{O co chodzi z twoim mężem Oromirem?|leta_oromir_select|||||}}|}; -{leta2|Spadaj stąd mały!||{{O co chodzi z twoim mężem Oromirem?|leta_oromir_select|||||}}|}; -{leta_oromir_select|||{{|leta_oromir_complete2|leta:100||||}{|leta_oromir1|||||}}|}; -{leta_oromir1|Wiesz coś o moim mężu? Powinien tu teraz byc i pomagać mi na farmie, ale wygląda na to, że zniknął jak zawsze.\nSigh.||{{Niestety, nie mam pojęcia.|leta_oromir2|||||}{Znalazłem go. Ukrywa się wśród drzew na wschód stąd.|leta_oromir_complete|leta:20||||}}|}; -{leta_oromir2|Jak go zobaczysz, powiedz mu, żeby tu przyszedł i pomógł mi w domu.\nA teraz wynoś się!|{{0|leta|10|}}||}; -{leta_oromir_complete|Ukrywa się? Nic nadzwyczajnego. Pójdę po niego i pokaże mu kto w tym domu nosi spodnie.\nDzięki za info o starym.|{{0|leta|100|}}||}; -{leta_oromir_complete2|Dzięki za pomoc z Oromirem. Właśnie się po niego wybieram.|||}; -{oromir1|Oh przestraszyłeś mnie.\nCześć.||{{Siema|oromir2|||||}}|}; -{oromir2|Chowam się tu przed moją żoną Letą. Zawsze ma mi za złe, że nie pomagam na farmie. Tylko proszę nie mów jej, że tu jestem.|{{0|leta|20|}}|{{Ok.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{audir1|Witaj w moim skromnym sklepie!\n\nNie krępuj się, wybierz sobie coś.||{{Pokaż mi swoje towary.|S|||||}}|}; -{arambold1|Ojej czy ja kiedykolwiek usnę, gdy ci pijani ludzie będą tak drzeć papę?\n\nKtoś powinien coś z nimi zrobić.||{{Mogę tu odpocząć?|arambold2|||||}{Masz coś na wymianę?|S|||||}}|}; -{arambold2|Jasne dzieciaku możesz tu odpoczywać.\n\nWybierz sobie jakieś łóżko.||{{Dzięki, narazie|X|||||}}|}; -{drunk1|Pij,kur.hmpf,pić, i pić jeszcze więcej.\nWkrocz, że rychło w nasze skromne progi wypijem pare piwek nie wstaniem z podłogi.\n\nEj dzieciaku to nie żadna mara rogość się ja na ten czas roztworze browara||{{Nie, dzięki.|X|||||}{Może kiedy indziej.|X|||||}}|}; -{mara_default|Nie zwracaj uwagi na tych pijaków, zawsze stwarzają problemy.\n\nChcesz coś na ząb?||{{Masz coś na sprzedaż?|S|||||}}|}; -{mara1|||{{|mara_thanks|odair:100||||}{|mara_default|||||}}|}; -{mara_thanks|Słyszałem, że pomogłeś Odirowi oczyszczając tą jaskinie. Wielkie dzięki znów możemy jej używać.||{{Przyjemność po mojej stronie.|mara_default|||||}}|}; -{farm1|Nie przeszkadzaj mi, jestem zajęty.||{{Widziałeś może mojego brata Andora?|farm_andor|||||}}|}; -{farm2|Co, nie widzisz, że jestem zajęty? Idź zawracaj głowę komuś innemu.||{{Widziałeś może mojego brata Andora?|farm_andor|||||}}|}; -{farm_andor|Andor? Nie widziałem go już dosyć dawno.|||}; -{snakemaster|No, no co my tu mamy? Przybysz, jak miło. Jestem pod wrażeniem tego, że tutaj dotarłeś.\n\nPrzygotuj się na śmierć mały człowieczku.||{{Świetnie, długo czekałem na jakąś walkę!|F|||||}{Zobaczymy kto tutaj dziś umrze.|F|||||}{Proszę nie rób mi krzywdy!|F|||||}}|}; -{haunt|Śmiertelniku, uwolnij mnie z tego przeklętego świata!||{{Oczywiście, że cie uwolnie.|F|||||}{Masz na myśli poprzez zabicie cie?|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{tharal1|Krocz w blasku cieni moje dziecko.||{{Masz coś na sprzedaż?|S|||||}{Co możesz mi powiedzieć o Bonemeal?|tharal_bonemeal_select|bonemeal:10||||}}|}; -{tharal_bonemeal_select|||{{|tharal_bonemeal4|bonemeal:30||||}{|tharal_bonemeal1|||||}}|}; -{tharal_bonemeal1|Bonemeal? Nie powinniśmy o tym rozmawiać. Lord Geomyr zabronił. Bonemeal jest już zakazany.||{{Please?|tharal_bonemeal2_1|||||}}|}; -{tharal_bonemeal2_1|Nie, naprawdę nie powinniśmy o tym rozmawiać.||{{Nie bądź taki powiedz.|tharal_bonemeal2|||||}}|}; -{tharal_bonemeal2|Jeśli tak bardzo się upierasz. Przynieś mi 5 skrzydeł insektów, użyję ich do produkcji potków i może powiem ci co nie co.|{{0|bonemeal|20|}}|{{Here, I have the insect wings.|tharal_bonemeal3||insectwing|5|0|}{Ok, I\'ll bring them.|X|||||}}|}; -{tharal_bonemeal3|Dzięki dzieciaku. Wiedziałem, że mogę na ciebie liczyć.|{{0|bonemeal|30|}}|{{N|tharal_bonemeal4|||||}}|}; -{tharal_bonemeal4|O tak bonemeal. Wymieszany z odpowiednimi składnikami jest chyba jednym z najskuteczniejszych uzdrawiających potków.||{{N|tharal_bonemeal5|||||}}|}; -{tharal_bonemeal5|Kiedyś był używany częściej. Ale ten burak Lord Geomyr zabronił go całkowicie.||{{N|tharal_bonemeal6|||||}}|}; -{tharal_bonemeal6|Jak niby mam teraz leczyć ludzi? Mam używać te zwykłe potki? Pff one są zbyt słabe.||{{N|tharal_bonemeal7|||||}}|}; -{tharal_bonemeal7|Znam kogoś kto nadal jest w posiadaniu zapasu bonemealów. Idź porozmawiaj z Thoronirem, znajomym kapłanem z Fallheaven. Hasło brzmi \'Blask Cieni\'.||{{Dzięki, żegnaj|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{gruil1|Psst, hej.\n\nChcesz coś kupić?||{{Jasne, pokaż co masz.|S|||||}{Słyszałem, że rozmawiałeś z moim bratem jakiś czas temu.|gruil_select|andor:10||||}}|}; -{gruil_select|||{{|gruil_return|andor:30||||}{|gruil2|||||}}|}; -{gruil2|Z twoim bratem? A masz na myśli Andora? Może i coś wiem, ale ta informacja będzie kosztować. Przynieś mi trujący gruczoł jednego z tych węży, a może coś powiem.|{{0|andor|20|}}|{{Mam ten gruczoł dla ciebie.|gruil_complete||gland|1|0|}{Dobra przyniosę.|X|||||}}|}; -{gruil_complete|Dzięki dzieciaku. Ten będzie w sam raz.|{{0|andor|30|}}|{{N|gruil_andor1|||||}}|}; -{gruil_return|Już ci mówiłem co wiem.||{{N|gruil_andor1|||||}}|}; -{gruil_andor1|Gadałem z nim wczoraj. Pytał się czy znam jakiegoś Umara albo jakoś tak. Nie mam pojęcia o kogo mu chodziło.||{{N|gruil_andor2|||||}}|}; -{gruil_andor2|Wyglądał na zdenerwowanego i odszedł w pośpiechu. Coś o gildii złodzieji w Fallheaven.||{{N|gruil_andor3|||||}}|}; -{gruil_andor3|To wszystko co wiem. Może powinieneś popytać w Fallheaven. Znajdź tam mojego znajomego Gaela, możliwe, że on wie coś więcej.||{{Thanks, bye.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{leonid1|Hej dzieciaku nie jesteś czasem synem Mikhaila? Z twoim bratem.\n\nJestem Leonid zarządca Crossglen.||{{Widziałeś mojego brata Andora?|leonid_andor|||||}{Co możesz mi powiedzieć o Crossglen?|leonid_crossglen|||||}{Nieważne, narazie.|leonid_bye|||||}}|}; -{leonid_andor|Twojego brata? Nie, nie widziałem go dzisiaj. Chyba widziałem go wczoraj jak gadał z Gruilem. Może on coś wie?|{{0|andor|10|}}|{{Dzięki pójde pogadać z tym Gruilem. Jest coś jeszcze o czym chciałem z tobą porozmawiać.|leonid_continue|||||}{Dzięki, idę pogadać z Gruilem.|leonid_bye|||||}}|}; -{leonid_continue|Jest coś jeszcze w czym mogę ci pomóc?||{{Widziałeś mojego brata?|leonid_andor|||||}{Co możesz mi powiedzieć o Crossglen?|leonid_crossglen|||||}{Nieważne, do zobaczenia.|leonid_bye|||||}}|}; -{leonid_crossglen|Jak już wiesz znajdujemy się w Crossglen. Większość tutaj to farmy.||{{N|leonid_crossglen1|||||}}|}; -{leonid_crossglen1|Audir to nasz kowal jest na południowy zachód, Leta i jej mąż mieszkają na zachód stąd, centrum i chata twojego ojca położone są na północny zachód stąd.||{{N|leonid_crossglen2|||||}}|}; -{leonid_crossglen2|I to w sumie wszystko. Staramy się wieść spokojne życie.||{{Działo się coś ostatnio tutaj niespotykanego?|leonid_crossglen3|||||}{Wróćmy do moich poprzednich pytań.|leonid_continue|||||}}|}; -{leonid_crossglen3|Parę tygodni temu były jakieś burdy. Paru mieszkańców pobiło się o zakaz dotyczący potków bonemeal które zakazał Lord Geomyr.||{{N|leonid_crossglen4|||||}}|}; -{leonid_crossglen4|Lord Geomyr wydał oświadczenie, które mówiło, że używanie potków bonemeal jest od tej pory nielegalne. Niektórzy mieszkańcy mówili, żebyśmy i tak ich używali.|{{0|bonemeal|10|}}|{{N|leonid_crossglen4_1|||||}}|}; -{leonid_crossglen4_1|Tharal, nasz kapłan delikatnie mówiąc zdenerwował się i powiedział, że trzeba coś zrobić z Lordem Geomyrem.||{{N|leonid_crossglen5|||||}}|}; -{leonid_crossglen5|Inni zaś stanęli murem za Lordem Geomyrem.\n\nOsobiście sam nie wiem co o tym myśleć.||{{N|leonid_crossglen6|||||}}|}; -{leonid_crossglen6|Z jednej strony Lord Geomyr chroni nasze Crossglen. *pokazuje na żołnierzy w sali*||{{N|leonid_crossglen7|||||}}|}; -{leonid_crossglen7|Ale z drugiej strony, podatki i najnowsze zmiany naprawdę szkodzą Crossglen.||{{N|leonid_crossglen8|||||}}|}; -{leonid_crossglen8|Ktoś musi udać się do zamku Geomyra i porozmawiać z zarządcą o naszej sytuacji.|{{0|crossglen|1|}}|{{N|leonid_crossglen9|||||}}|}; -{leonid_crossglen9|A do tego czasu bonemeal jest zakazany.||{{Thank you for the information. There was something more I wanted to ask you.|leonid_continue|||||}{Thank you for the information. Bye.|leonid_bye|||||}}|}; -{leonid_bye|Niech cień będzie z tobą.||{{Shadow be with you.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{odair1|A to ty. Ty i ten twój brat. Zawsze stwarzacie problemy.||{{N|odair_select|||||}}|}; -{odair_select|||{{|odair_complete2|odair:100||||}{|odair_continue|odair:10||||}{|odair2|||||}}|}; -{odair2|Hmm, może jednak będzie z ciebie pożytek. Myślisz, że dasz radę wykonać małą robótkę?||{{Powiedz mi co to za robótka.|odair3|||||}{Jasne, jeśli mi się to opłaci.|odair3|||||}}|}; -{odair3|Swojego czasu często chodziłem do tej jaskini *pokazuje na zachód*, żeby sprawdzić zapasy. Ale w tej jaskini ostatnio zaroiło się od szczurów.||{{N|odair4|||||}}|}; -{odair4|Właściwie to zauważyłem, że jeden z tych szczurów jest większy niż pozostałe. Myślisz, że masz co trzeba, żeby się ich pozbyć?||{{Jasnę pomogę ci żebyście znów mogli tam robić zapasy.|odair5|||||}{Jasnę pomogę ci, ale tylko dlatego, że może tam być coś cennego dla mnie.|odair5|||||}{Nie, dzięki|odair_cowards|||||}}|}; -{odair5|Musisz tam wejść i zabić tego największego, może dzięki temu reszta sobie pójdzie i znów będziemy mogli używać tej jaskini.|{{0|odair|10|}}|{{Ok|X|||||}{On second thought, I don\'t think I will help you after all.|odair_cowards|||||}}|}; -{odair_cowards|Wiedziałem, że tak będzie. Ty i twój brat zawsze byliście tchórzami.||{{Bye|X|||||}}|}; -{odair_continue|Zabiłeś tego olbrzymiego szczura w jaskini na zachód stąd?||{{Tak, zabiłem go.|odair_complete||tail_caverat|1|0|}{Jeszcze raz co miałem zrobić?|odair5|||||}{Nie, jeszcze nie.|odair_cowards|||||}}|}; -{odair_complete|Dzięki młody! Może ty i twój brat nie jesteście takimi tchórzami jak myślałem. Weź te monety jako moje podziękowanie.|{{0|odair|100|}{1|gold20||}}|{{Dzięki|X|||||}}|}; -{odair_complete2|Dzięki za pomoc z tamtymi szczurami. W końcu możemy używać tej jaskini.||{{Bye|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{jan_start_select|||{{|jan_complete2|jan:100||||}{|jan_return|jan:10||||}{|jan_default|||||}}|}; -{jan_default|Cześć dzieciaku. Proszę zostaw mnie z moją żałobą.||{{W czym problem?|jan_default2|||||}{Chcesz o tym porozmawiać?|jan_default2|||||}{Ok, narazie|X|||||}}|}; -{jan_default2|Oh to takie smutne. Naprawdę nie chce o tym rozmawiać.||{{Please do.|jan_default3|||||}{Ok, narazie|X|||||}}|}; -{jan_default3|Cóż no dobrze powiem ci. Wyglądasz na dość miłego dzieciaka.||{{N|jan_default4|||||}}|}; -{jan_default4|Mój przyjaciel Gandir, i jego znajomy Irogotu, i ja poszliśmy na dół kopać tą dziurę. Słyszeliśmy o ukrytym skarbie, który się tam znajduje.||{{N|jan_default5|||||}}|}; -{jan_default5|Zaczęliśmy kopać po jakimś czasie w końcu dokopaliśmy się do jakichś podziemnych jaskiń. Wtedy je odkryliśmy. Futrzaki z kłami i jakieś inne robactwo.||{{N|jan_default6|||||}}|}; -{jan_default6|Oh te futrzane bestie. Cholerne bestie. Omal mnie nie zabiły.\n\nGandir i ja mówiliśmy Irogotu żebyśmy zostawili ten dół póki jeszcze możemy.||{{N|jan_default7|||||}}|}; -{jan_default7|Ale Irogotu chciał kontynuować głębiej kopanie. On i Gandir zaczęli się o to bić.||{{N|jan_default8|||||}}|}; -{jan_default8|I wtedy.\n\n*sob*\n\nO rany co myśmy zrobili?||{{Kontynuuj|jan_default9|||||}}|}; -{jan_default9|Irogotu zabił Gandira gołymi rękoma. Można było dostrzec nienawiść w oczach. I chyba mu się to spodobało.||{{N|jan_default10|||||}}|}; -{jan_default10|Uciekłem i nie miałem odwagi znów tam zejść, bo bałem się tych bestii i samego Irogotu .||{{N|jan_default11|||||}}|}; -{jan_default11|Oh ten przeklęty Irogotu. Gdybym tylko go dorwał. Pokazałbym mu.||{{Uważasz, że mogę jakoś pomóc|jan_default11_1|||||}}|}; -{jan_default11_1|Pomógłbyś mi?||{{Jasne, może są tam jakieś skarby dla mnie.|jan_default12|||||}{Jasne, Irogotu musi zapłacić za to co zrobił.|jan_default12|||||}{Nie, dzięki nie chce brać w tym udziału to zbyt niebezpieczne.|X|||||}}|}; -{jan_default12|Naprawdę? Myślisz, że dasz radę? Hm, może jednak dasz. Strzeż się tych bestii tam na dole są naprawde twarde.|{{0|jan|10|}}|{{N|jan_default13|||||}}|}; -{jan_default13|Jeśli naprawdę chcesz pomóc, zejdź na dół rozpraw się z Irogotu i zdobądź dla mnie pierścień Gandira.||{{Jasne, że pomogę.|jan_default14|||||}{Możesz mi opowiedzieć tą historię jeszcze raz?|jan_background|||||}{Nieważne, żegnaj.|X|||||}}|}; -{jan_default14|Wróć do mnie jak skończysz. Pamiętaj o pierścieniu Gandira dla mnie.||{{Ok, narazie|X|||||}}|}; -{jan_return|Witaj z powrotem dzieciaku. Znalazłeś ten pierścień?||{{Nie, jeszcze nie.|jan_default14|||||}{Możesz mi opowiedzieć tą historię jeszcze raz?|jan_background|||||}{Tak, i zabiłem Irogotu.|jan_complete||ring_gandir|1|0|}}|}; -{jan_background|Nie słuchałeś jak ci ją opowiadałem za pierwszym razem? Naprawdę muszę jeszcze raz ją opowiedzieć?||{{Tak, opowiedz mi ją jeszcze raz.|jan_default3|||||}{Nie słuchałem za bardzo za pierwszym razem. To mówisz, że jaki tam jest skarb?|jan_default4|||||}{Nie, nieważne. Już sobie przypomniałem.|jan_default14|||||}}|}; -{jan_complete2|Dzięki za pomoc z Irogotu! Jestem na zawsze twoim dłużnikiem.||{{Bye|X|||||}}|}; -{jan_complete|Czekaj, jak to? Zszedłeś na dół i wróciłeś żywy? Jak to zrobiłeś? Wow, ja prawie tam zginąłem.\n\nOh wielkie dzięki za ten pierścień Gandira! Teraz mam chociaż jakąś pamiątke po nim.|{{0|jan|100|}}|{{Cieszę się, że mogłem pomóc. Żegnaj.|X|||||}{Niech cień cię nie opuszcza. Żegnaj.|X|||||}{I tak zrobiłem to tylko dla skarbu.|X|||||}}|}; - -{irogotu|O co za niespodzianka. Kolejny poszukiwacz przygód, który chce mój skarb. To jest MOJA JASKINIA. Skarb będzie MÓJ!||{{Zabiłeś Gandira?|irogotu1|jan:10||||}}|}; -{irogotu1|Tego szczeniaka Gandira? Stał mi tylko na drodze. Użyłem go tylko żeby kopał za mnie głębiej.||{{N|irogotu2|||||}}|}; -{irogotu2|Po za tym nigdy go nie lubiłem.||{{Wydaje mi się, że zasłużył na śmierć. Czy miał na sobie pierścień?|irogotu3|||||}{Jan wspominał coś o pierścieniu?|irogotu3|||||}}|}; -{irogotu3|NIE! Nie możesz go mieć. Jest mój, a właściwie to kim ty jesteś, że przychodzisz tutaj i mi tylko przeszkadzasz?!||{{Nie jestem już dzieckiem! A teraz dawaj mi pierścień!|irogotu4|||||}{Daj mi pierścień, a oboje ujdziemy stąd z życiem.|irogotu4|||||}}|}; -{irogotu4|Nie. Jeśli go chcesz musisz mi go odebrać siłą, a powinieneś wiedzieć, że mam potężną moc. A z resztą pewnie nawet się nie odważysz ze mną walczyć.||{{Jak sobie chcesz zobaczymy kto tutaj umrze.|F|||||}{Z mocą Cienia, Gandir zostanie pomszczony.|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fallhaven_citizen1|Hej. Ładną pogodę mamy nieprawdaż?||{{Widziałeś może mojego brata Andora?|fallhaven_andor_1|||||}}|}; -{fallhaven_citizen2|Cześć. Chcesz czegoś ode mnie?||{{Have you seen my brother Andor?|fallhaven_andor_2|||||}}|}; -{fallhaven_citizen3|Hi. Can I help you?||{{Widziałeś może mojego brata Andora?|fallhaven_andor_3|||||}}|}; -{fallhaven_citizen4|Ty jesteś tym dzieciakiem z Crossglen?||{{Widziałeś może mojego brata Andora??|fallhaven_andor_4|||||}}|}; -{fallhaven_citizen5|Z drogi, wieśniaku.|||}; -{fallhaven_citizen6|Miłego dnia.||{{Widziałeś może mojego brata Andora??|fallhaven_andor_6|||||}}|}; -{fallhaven_andor_1|Nie, przepraszam, ale nikogo takiego nie widziałem.|||}; -{fallhaven_andor_2|Mówisz, że jakiś inny dzieciak tu był? Hm, daj mi pomyśleć.||{{N|fallhaven_andor_1|||||}}|}; -{fallhaven_andor_3|Hm, Może i widziałem kogoś podobnego parę dni temu. Nie mogę sobie tylko przypomnieć gdzie.|||}; -{fallhaven_andor_4|A tak, był tu jakiś inny dzieciak z Crossglen. Chociaż nie jestem pewny czy odpowiadał opisowi.||{{N|fallhaven_andor_4_1|||||}}|}; -{fallhaven_andor_4_1|Był z jakimiś podejrzanymi typami. To wszystko co widziałem.|||}; -{fallhaven_andor_6|Nie. Nie widziałem.|||}; -{fallhaven_guard|Trzymaj się z dala od problemów.|||}; - -{fallhaven_priest|Oby cień był z tobą.||{{Powiesz mi więcej o tym Cieniu?|priest_shadow_1|||||}}|}; -{priest_shadow_1|Cień nas chroni. Sprawia, że jesteśmy bezpieczni nawet, gdy idziemy spać.||{{N|priest_shadow_2|||||}}|}; -{priest_shadow_2|Śledzi nas na każdym kroku. Odejdź z Cieniem chłopcze.||{{Cień z tobą.|X|||||}{Jak tam chcesz, narazie.|X|||||}}|}; - -{rigmor|No witam! Ale z ciebie mały słodki koleżka.||{{Widziałeś może mojego brata Andora?|rigmor_1|||||}{Naprawdę muszę już iść.|rigmor_leave_select|||||}}|}; -{rigmor_1|Twojego brata mówisz? Na imię ma Andor? Nie. Nie przypominam sobie kogoś o takim imieniu.||{{I really need to go.|rigmor_leave_select|||||}}|}; -{rigmor_leave_select|||{{|rigmor_thanks|calomyran:100||||}{|X|||||}}|}; -{rigmor_thanks|Słyszałem, że pomogłeś znaleźć książke, dzięki. Mówił o tej książce przez tygodnie. Szkoda, że zapomina o tylu rzeczach.||{{Cała przyjemność po mojej stronie.|X|||||}{Powinnaś mieć na niego oko, bo może mu się coś stać.|X|||||}{Dobra, dobra zrobiłem to tylko dla złota.|X|||||}}|}; - -{fallhaven_clothes|Witam w moim sklepie. Proszę się rozejrzeć posiadamy ubrania i biżuterię.||{{Pokaż towary.|S|||||}}|}; -{fallhaven_potions|Witam w moim sklepie. Proszę się rozejrzeć mamy tutaj wyselekcjonowane napoje oraz potki.||{{Pokaż jakie masz potki.|S|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bucus_welcome|Witam z powrotem w .. Oh czekaj, pomyliłem cie z kimś.||{{Widziałeś może mojego brata Andora??|bucus_andor_select|||||}{Co wiesz o gildii złodzieji?|bucus_thieves_select|||||}}|}; -{bucus_andor_select|||{{|bucus_umar_1|bucus:100||||}{|bucus_andor_no_1|||||}}|}; -{bucus_andor_no_1|Interesujące pytanie. A co jeśli go widziałem? Czemu miałbym ci powiedzieć?||{{N|bucus_andor_no_2|||||}}|}; -{bucus_andor_no_2|Nie, nie mogę. A teraz proszę odejdź.|||}; -{bucus_thieves_select|||{{|bucus_thieves_complete_3|bucus:100||||}{|bucus_thieves_continue|bucus:10||||}{|bucus_thieves_select2|||||}}|}; -{bucus_thieves_select2|||{{|bucus_thieves_1|andor:40||||}{|bucus_thieves_no|||||}}|}; -{bucus_thieves_no|Cc, CO? Nie, nic o tym nie wiem.|||}; -{bucus_umar_1|Dobra dzieciaku. Udowodniłeś, że jesteś godny zaufania. Tak widziałem tego drugiego łaził gdzieś tu parę dni temu.||{{N|bucus_umar_2|||||}}|}; -{bucus_umar_2|Ale nie wiem czego chciał. Zadawał mnóstwo pytań. Takie jak ty teraz. *chichocze*||{{N|bucus_umar_3|||||}}|}; -{bucus_umar_3|W każdym bądź razie to wszystko co wiem. Lepiej idź pogadaj z Umarem, on może wiedzieć więcej. Zejdź niżej tą klapą.|{{0|andor|50|}}|{{Ok, bye|X|||||}}|}; -{bucus_thieves_1|Kto ci to powiedział? Argh.\n\nA więc nas znalazłeś. Co teraz?||{{Mogę dołączyć do gildii złodzieji?|bucus_thieves_2|||||}}|}; -{bucus_thieves_2|Hah! Dołączyć do gildii?! Ty?!\n\nZabawny jesteś dzieciaku.||{{Pytam poważnie.|bucus_thieves_3|||||}{Taa, całkiem zabawny?|bucus_thieves_3|||||}}|}; -{bucus_thieves_3|Ok, powiem tak. Zrób coś dla mnie, a ja rozważe co i jak.||{{O jakim zadaniu mówimy?|bucus_thieves_4|||||}{Tak długo jak to oznacza skarb to wchodzę w to!|bucus_thieves_4|||||}}|}; -{bucus_thieves_4|Przynieś mi klucz Luthora i możemy pogadać o konkretach. Nie wiem właściwie dużo o tym kluczu, ale plotka głosi, że jest w katakumbach pod kościołem w Fallhaven.|{{0|bucus|10|}}|{{Ok, sounds easy enough.|X|||||}}|}; -{bucus_thieves_continue|Jak idą poszukiwania klucza?||{{Co ja miałem zrobić?|bucus_thieves_4|||||}{Mam go. Klucz Luthor.|bucus_thieves_complete_1||key_luthor|1|0|}{Jeszcze szukam. Narazie.|X|||||}}|}; -{bucus_thieves_complete_1|Wow, naprawdę masz klucz Luthor? Nie myślałem, że stamtąd powrócisz.|{{0|bucus|100|}}|{{N|bucus_thieves_complete_2|||||}}|}; -{bucus_thieves_complete_2|Nieźle, dzieciaku.||{{N|bucus_thieves_complete_3|||||}}|}; -{bucus_thieves_complete_3|No to możemy pogadać, co chcesz wiedzieć?||{{Widziałeś może mojego brata Andora??|bucus_umar_1|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fallhaven_drunk|Żaden problem. Nie panieee! Nie sprawia już żadnych problemów. Usiąde na zewnątrz gdzieś.||{{N|fallhaven_drunk_2|||||}}|}; -{fallhaven_drunk_2|A ty to kto? Jesteś tym strażnikiem?||{{Tak|fallhaven_drunk_3_1|||||}{Nie|fallhaven_drunk_3_2|||||}}|}; -{fallhaven_drunk_3_1|Oh, panie. Jak widać nie sprawiam już żadnych problemów? Usiąde tak jak mówiłeś ok?||{{N|fallhaven_drunk_4|||||}}|}; -{fallhaven_drunk_3_2|Oh to dobrze. Ten strażnik wywalił mnie z tawerny. Jak go jeszcze zobaczę to się z nim policzę.||{{N|fallhaven_drunk_4|||||}}|}; -{fallhaven_drunk_4|A kto się w grudniu urodził, ma wstać, ma wstać, ma wstać. Uh, jak leci?||{{N|fallhaven_drunk_5|||||}}|}; -{fallhaven_drunk_5|Mówiłeś coś? Że gdzie ja byłem? A tak więc weszliśmy do podziemi.||{{N|fallhaven_drunk_6|||||}}|}; -{fallhaven_drunk_6|Albo to był dom? Nie pamiętam.||{{N|fallhaven_drunk_7|||||}}|}; -{fallhaven_drunk_7|Nie,nie , to było na zewnątrz! Teraz pamiętam.||{{N|fallhaven_drunk_7_select|||||}}|}; -{fallhaven_drunk_7_select|||{{|fallhaven_drunk_11|fallhavendrunk:100||||}{|fallhaven_drunk_8|||||}}|}; -{fallhaven_drunk_8|That\'s where we..\n\nHey, where did my mead go? Did you take it from me? ||{{Yes|fallhaven_drunk_9_1|||||}{No|fallhaven_drunk_9_2|||||}}|}; -{fallhaven_drunk_9_1|Cóż to oddawaj z powrotem! Albo idź kup trochę miodu.|{{0|fallhavendrunk|10|}}|{{Masz trochę miodu.|fallhaven_drunk_10||mead|1|0|}{Ok, kupie trochę dla ciebie.|X|||||}{Nie wydaje mi się, że powinienem ci pomagać.|X|||||}}|}; -{fallhaven_drunk_9_2|Chyba się upiłem. Możesz mi załatwić więcej miodu? |{{0|fallhavendrunk|10|}}|{{Here, have some mead.|fallhaven_drunk_10||mead|1|0|}{Ok, kupie trochę miodu.|X|||||}{Nie wydaję mi się. Żegnaj.|X|||||}}|}; -{fallhaven_drunk_10|Oh słodki napój bogów. Niieechhh cieeeń będziie z tobąą. *robi duże oczy*||{{N|fallhaven_drunk_11|||||}}|}; -{fallhaven_drunk_11|*łyknij sobie tego miodu*\n\nDobry towar!||{{N|fallhaven_drunk_12|||||}}|}; -{fallhaven_drunk_12|Taa ja i Unmir świetnie się bawimy. Sam go zapytaj, najczęściej jest w stodole na wschód stąd. Zastanawia mnie *burps* gdzie się podział ten skarb.|{{0|fallhavendrunk|100|}}|{{Skarb? Wchodzę w to! Zaraz pójdę poszukać Unnmira.|X|||||}{Dzięki za historyjkę. Żegnaj.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fallhaven_oldman|||{{|fallhaven_oldman_complete_2|calomyran:100||||}{|fallhaven_oldman_continue|calomyran:10||||}{|fallhaven_oldman_1|||||}}|}; -{fallhaven_oldman_1|Pomożesz staruszkowi w potrzebie?||{{Jasne, w czym potrzebujesz pomocy?|fallhaven_oldman_2|||||}{Mogę. A w grę wchodzi jakaś nagroda?|fallhaven_oldman_2|||||}{Nie, nie pomogę takiemu staruchowi jak ty. Żegnaj.|X|||||}}|}; -{fallhaven_oldman_2|Straciłem bardzo cenną dla mnie książke.||{{N|fallhaven_oldman_3|||||}}|}; -{fallhaven_oldman_3|Wiem, że miałem ją ze sobą wczoraj. A teraz nie mogę jej znaleźć.||{{N|fallhaven_oldman_4|||||}}|}; -{fallhaven_oldman_4|Nigdy nie gubie swoich rzeczy! Ktoś mi ją musiał ukraść.||{{N|fallhaven_oldman_5|||||}}|}; -{fallhaven_oldman_5|Poszukasz tej książki? Tytuł to \'Sekrety Calomryna\'.||{{N|fallhaven_oldman_6|||||}}|}; -{fallhaven_oldman_6|Nie mam pojęcia gdzie może być. Może spytaj Arcira, jest molem książkowym. *pokazuje na domek na południu*|{{0|calomyran|10|}}|{{Ok pójdę spytać Arcira. Do widzenia.|X|||||}}|}; -{fallhaven_oldman_continue|Jak ci idą poszukiwania mojej książki? Tytuł to \'Sekrety Calomryna\'. Znalazłeś książkę?||{{Tak, znalazłem ją.|fallhaven_oldman_complete||calomyran_secrets|1|0|}{Nie, jeszcze jej nie znalazłem.|fallhaven_oldman_6|||||}{Możesz mi opowiedzieć tą historię jeszcze raz?|fallhaven_oldman_2|||||}}|}; -{fallhaven_oldman_complete|Moja księga! Dziękuje, dziękuje! Gdzie była? Albo nie, nie mów mi. Trzymaj, trochę złota za fatygę.|{{0|calomyran|100|}{1|gold51||}}|{{Dziękuje. Żegnaj.|X|||||}{W końcu, trochę złota. Żegnaj.|X|||||}}|}; -{fallhaven_oldman_complete_2|Wielkie dzięki za znalezienie mojej księgi!|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{nocmar|Witaj. Jestem Nocmar.||{{To miejsce wygląda jak kuźnia. Masz coś na sprzedaż?|nocmar_trade_select|||||}{Unnmir mnie przysyła.|nocmar_quest_select|nocmar:10||||}{Żegnaj|X|||||}}|}; -{nocmar_quest_select|||{{|nocmar_complete_5|nocmar:200||||}{|nocmar_continue|nocmar:20||||}{|nocmar_quest|||||}}|}; -{nocmar_trade_select|||{{|S|nocmar:200||||}{|nocmar_trade_1|||||}}|}; -{nocmar_trade_1|Nie mam żadnych przedmiotów na sprzedaż. Kiedyś miałem ich od groma, ale teraz zakazono mi cokolwiek sprzedawać.||{{N|nocmar_trade_2|||||}}|}; -{nocmar_trade_2|Kiedyś byłem najlepszym kowalem w Fallhaven. Później ten drań Lord Geomyr zakazał używania stali serca.||{{N|nocmar_trade_3|||||}}|}; -{nocmar_trade_3|Przez to oświadczenie Geomyra nikt nie może używać broni ze stali serca w Fallhaven. Mało która się sprzedawała.||{{N|nocmar_trade_4|||||}}|}; -{nocmar_trade_4|Więc musiałem schować resztki które mi zostały. Nie odważę się już sprzedać ani jednej sztuki.||{{N|nocmar_trade_4_1|||||}}|}; -{nocmar_trade_4_1|Nie widziałem blasku stali serca już od ładnych paru lat odkąd Lord Geomyr ich zakazał.||{{N|nocmar_trade_5|||||}}|}; -{nocmar_trade_5|Więc niestety nie mogę ci sprzedać broni.|||}; -{nocmar_quest|Unnmir cie przysyła hę? W takim razie to musi być coś ważnego.|{{0|nocmar|20|}}|{{N|nocmar_quest_1|||||}}|}; -{nocmar_quest_1|Ok, te stare bronie straciły już swój dawny blask i nie były używane już od wieków.||{{N|nocmar_quest_2|||||}}|}; -{nocmar_quest_2|Żeby przywrócić dawny blask stali serca, będziemy potrzebować kamiennej stali.||{{N|nocmar_quest_3|||||}}|}; -{nocmar_quest_3|Dawno temu, przywykliśmy do walki z liczami Undertella. Nie mam pojęcia czy jeszcze nawiedzają tamto miejsce.||{{Undertell? Co to jest?|nocmar_quest_4|||||}}|}; -{nocmar_quest_4|Undertell; otchłań zagubionych dusz. Podróżuj na południe i wejdź w kawernę prowadząca do krasnoludów. Podążaj za smrodem, który tam się unosi.||{{N|nocmar_quest_5|||||}}|}; -{nocmar_quest_5|Strzeż się liczów z Undertell, jeśli jeszcze tam są. Te stworzenia mogą cie zabić samym wzrokiem.|||}; -{nocmar_continue|Znalazłeś może już stal serca?||{{Tak, w końcu ją znalazłem.|nocmar_complete||heartstone|1|0|}{Możesz powtórzyć?|nocmar_quest_1|||||}{Nie, jeszcze nie|nocmar_continue_2|||||}}|}; -{nocmar_continue_2|Proszę nie przestawaj szukać. Unnmir musi wiąząć z tobą jakieś poważne plany.|||}; -{nocmar_complete|Niech mnie cień pochłonie. Naprawdę znalazłeś kamienne serce. Myślałem, że już nie dożyje tego dnia.|{{0|nocmar|200|}}|{{N|nocmar_complete_2|||||}}|}; -{nocmar_complete_2|Widzisz ten blask? Dosłownie pulsuje.||{{N|nocmar_complete_3|||||}}|}; -{nocmar_complete_3|Szybko. Nadajmy dawny blask tym starym broniom.||{{N|nocmar_complete_4|||||}}|}; -{nocmar_complete_4|*Nocmar kładzie kamienne serce wśród starych broni*||{{N|nocmar_complete_5|||||}}|}; -{nocmar_complete_5|Czujesz to? Stal serca znów ma swój dawny blask.||{{Pokaż mi swoje towary.|S|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bela|Witaj w tawernie. Usiądź sobie gdzieś.||{{Pokaż mi co masz do zjedzenia i do picia|S|||||}{Są jakieś wolne pokoje?|bela_room_select|||||}}|}; -{bela_room_1|Pokój kosztuje tylko 10 złotych monet.||{{Kup [10 złota]|bela_room_2||gold|10|0|}{Nie, dzięki.|bela|||||}}|}; -{bela_room_2|Dzięki. Weź pokój na końcu hali.|{{0|fallhaventavern|10|}}|{{Dziękuje. Jest coś jeszcze o co chciałem zapytać.|bela|||||}{Dzięki. Żegnaj.|X|||||}}|}; -{bela_room_3|Mam nadzieję, że pokój będzie ci odpowiadał. To ten ostatni pokój na końcu.||{{Dziękuje. Jest coś jeszcze o co chciałem zapytać.|bela|||||}{Dzięki. Żegnaj.|X|||||}}|}; -{bela_room_select|||{{|bela_room_3|fallhaventavern:10||||}{|bela_room_1|||||}}|}; -{ganos|Wyglądasz znajomo.||{{Masz coś na handel?|S|||||}{Wiesz coś o gildii złodzieji?|ganos_1|andor:30||||}}|}; -{ganos_1|Gildii złodzieji? A skąd niby? Wyglądam ci na złodzieja?! Hrmpf.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{arcir_start|Witaj. Jestem Arcir.||{{Zauważyem że masz posążek Elythara na dole.|arcir_elythara_1|arcir:10||||}{Chyba lubisz swoje książki.|arcir_books_1|||||}}|}; -{arcir_anythingelse|Coś jeszcze, o co chciałeś zapytać?||{{Zauważyem że masz posążek Elythara na dole.|arcir_elythara_1|arcir:10||||}{Chyba lubisz swoje książki.|arcir_books_1|||||}}|}; -{arcir_elythara_1|O znalazłeś ten posąg Elythary?\n\nTak, Elythatra jest moją opoką.||{{Okej.|arcir_anythingelse|||||}}|}; -{arcir_books_1|Przyjemnie się je czyta. Zawierają więdze poprzednich pokoleń.||{{Masz może książkę \'Sekrety Calomyrana\'?|arcir_calomyran_select|calomyran:10||||}{Okay.|arcir_anythingelse|||||}}|}; -{arcir_calomyran_1|\'Sekrety Calomyrana\'? Hm, tak chyba mam ją gdzieś w piwnicy.||{{N|arcir_calomyran_2|||||}}|}; -{arcir_calomyran_2|Staruszek Benradas był tu w tamtym tygodniu, chciał mi ją sprzedać. To nie jest książka w moim stylu, więc odmówiłem.||{{N|arcir_calomyran_3|||||}}|}; -{arcir_calomyran_3|Wydawał się zdenerwowany, że nie chciałem kupić jego książki więc wyszedł jak burza i rzucił nią we mnie.||{{N|arcir_calomyran_4|||||}}|}; -{arcir_calomyran_4|Biedny staruszek Benradas, najprawdopodobniej zapomniał, że ją tu zostawił. Ma skłonności do zapominania.||{{N|arcir_anythingelse|||||}}|}; -{arcir_calomyran_5|Byłeś na dole, ale jej nie znalazłeś? tylko notatka? Chyba musi być ich więcej w moim domu.||{{N|arcir_calomyran_6|||||}}|}; -{arcir_calomyran_select|||{{|arcir_calomyran_complete|calomyran:100||||}{|arcir_calomyran_5|calomyran:20||||}{|arcir_calomyran_1|||||}}|}; -{arcir_calomyran_complete|Słyszałem, że ją znalazłeś i oddałeś Benradasowi. Dzięki. Ma skłonności do zapominania.||{{N|arcir_anythingelse|||||}}|}; -{arcir_calomyran_6|Co pisze na tej notatce?\n\nLarcal.. Znam go. Zawsze stwarza problemy. Zazwyczaj jest w stodole na wschód stąd.||{{Dzięki, Żegnaj|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{chapelgoer|Cień mnie ogarnia.|||}; -{thoronir_default|Cień daje nam ciepło, moje dziecko.||{{Co możesz mi powiedzieć o Cieniu?|thoronir_shadow_1|||||}{Możesz mi powiedzieć więcej o kościele?|thoronir_church_1|||||}{Czy potki Bonemeal są już gotowe?|thoronir_trade_bonemeal|bonemeal:100||||}}|}; -{thoronir_shadow_1|Cień nas ochroni przed niebezpieczeństwami nocy. I chroni nas podczas snu.||{{Tharal mnie przysyła, hasło brzmi \'Blask Cienia\'.|thoronir_tharal_select|bonemeal:30||||}{Niech cień będzie z tobą.|thoronir_default|||||}{Dla mnie ten cień to ściema.|thoronir_default|||||}}|}; -{thoronir_church_1|To nasza kaplica modlitwy w Fallhaven. Nasi wierni zwracają się do nas po wsparcie.||{{N|thoronir_church_2|||||}}|}; -{thoronir_church_2|Ten kościół wytrzymał setki lat, i nigdy nie było tu hien cmentarnych.||{{N|thoronir_church_3|||||}}|}; -{thoronir_tharal_select|||{{|thoronir_trade_bonemeal|bonemeal:100||||}{|thoronir_tharal_1|||||}}|}; -{thoronir_tharal_1|Blask cienia w rzeczy samej chłopcze. A więc mój stary przyjaciel Tharal przysłał cie?||{{Co możesz mi powiedzieć o potkach bonemeal?|thoronir_tharal_2|||||}}|}; -{thoronir_church_3|Katakumby pod kościołem są pozostałościami naszych poprzedników. Nasz wielki król Luthor podobno jest tutaj pochowany.||{{Czy ktoś wchodził do katakumb?|thoronir_church_4|bucus:10||||}{Jest coś jeszcze o co chciałem zapytać.|thoronir_default|||||}}|}; -{thoronir_church_4|Nikt nie ma pozwolenia na zejście do katakumb, z wyjątkiem Athamyra, mojego ucznia. To jedyna osoba która tam była w ciągu ostatnich paru lat.|{{0|bucus|20|}}|{{Ok, może go spotkam.|thoronir_default|||||}}|}; -{thoronir_tharal_2|Ciiii, Nie powinniśmy tak głośno rozmawiać o używaniu bonemealów. Jak pewnie wiesz Lord Geomyr zakazał całkowicie bonemeal.||{{N|thoronir_tharal_3|||||}}|}; -{thoronir_tharal_3|Kiedy pojawił się zakaz, nie odważyłem się trzymać ich więcej, więc wyrzuciłem jej do dziury na zapasy. To było dosyć głupie z mojej strony, gdy teraz na to patrze.||{{N|thoronir_tharal_4|||||}}|}; -{thoronir_tharal_4|Znajdziesz dla mnie 5 kości szkieletów, które mogę użyć do miksowania potek bonemeal? Bonemeal jest potężny w leczeniu starych ran.||{{Jasne, mogę to zrobić.|thoronir_tharal_5|||||}{Mam te kości dla ciebie.|thoronir_tharal_complete||bone|5|0|}}|}; -{thoronir_tharal_5|Dziękuje, proszę wróć niebawem. Słyszałem, że w opuszczonym domu na północy są w okolicy nieumarli. Może tam znajdziesz jakieś kości?|{{0|bonemeal|40|}}|{{Ok, sprawdzę tam.|thoronir_default|||||}}|}; -{thoronir_tharal_complete|Dzięki, te kości będą w sam raz. Teraz mogę dla ciebie zrobić parę potek bonemeal.|{{0|bonemeal|100|}}|{{N|thoronir_complete_2|||||}}|}; -{thoronir_complete_2|Daj mi trochę czasu, żeby zmieszać potke bonemeal. To bardzo potężna potka zdrowia. Wróć za jakiś czas.|||}; -{thoronir_trade_bonemeal|Tak, potki bonemeal są już gotowe. Proszę używaj ich z rozwagą i nie pozwól, żeby cię zauważyli strażnicy. Wiesz, że nie można już ich używać.||{{Pokaż ile zrobiłeś tych potków.|S|||||}{Chciałem zapytać o coś innego.|thoronir_default|||||}}|}; -{catacombguard|Turn back while you still can, mortal. This is no place for you. Only death awaits you here.||{{Very well. I will turn back.|X|||||}{Move aside, I need to get deeper into the catacombs.|catacombguard1|||||}{By the Shadow, you will not stop me.|catacombguard1|||||}}|}; -{catacombguard1|Nieee, nie możesz przejść!||{{Ok. Walczmy.|F|||||}}|}; -{luthor|*hissss* Co śmiertelnik przeszkadza mi we śnie?||{{Na moc cienia, kim ty jesteś?|F|||||}{W końcu godny przeciwnik! Czekałem na to.|F|||||}{Dobra, dobra skończmy z tym już.|F|||||}}|}; - - - diff --git a/AndorsTrail/res/values-pl/content_itemcategories.xml b/AndorsTrail/res/values-pl/content_itemcategories.xml deleted file mode 100644 index 4f0cfc6ec..000000000 --- a/AndorsTrail/res/values-pl/content_itemcategories.xml +++ /dev/null @@ -1,66 +0,0 @@ - - - - -[id|name|actionType|inventorySlot|size|]; -{dagger|Sztylet|2|0|1|}; -{ssword|Krótki Miecz|2|0|1|}; -{rapier|Rapier|2|0|2|}; -{lsword|Długi miecz|2|0|2|}; -{2hsword|Oburęczny miecz|2|0|3|}; -{bsword|Pałasz|2|0|2|}; -{axe|Topór|2|0|2|}; -{axe2h|Wielki Topór|2|0|3|}; -{club|Maczuga|2|0|2|}; -{staff|Laska|2|0|3|}; -{mace|Buława|2|0|2|}; -{scepter|Berło|2|0|2|}; -{hammer|Młot Bojowy|2|0|2|}; -{hammer2h|Olbrzymi Młot|2|0|3|}; - -{buckler|Puklerz|2|1|1|}; -{shld_wd_li|Drewniana, Tarcza (lekka)|2|1|2|}; -{shld_mtl_li|Metalowa, Tarcza (lekka)|2|1|2|}; -{shld_wd_hv|Drewniana, Tarcza (ciężka)|2|1|3|}; -{shld_mtl_hv|Metalowa, Tarcza (ciężka)|2|1|3|}; -{shld_twr|Duża Tarcza|2|1|3|}; - -{hd_cloth|Nakrycie głowy, Ubranie|2|2||}; -{hd_lthr|Nakrycie głowy, Skórzane|2|2|1|}; -{hd_mtl_li|Nakrycie głowy, Metalowe (lekkie)|2|2|2|}; -{hd_mtl_hv|Nakrycie głowy, Metalowe (ciężkie)|2|2|3|}; - -{bdy_clth|Zbroja, Ubranie|2|3||}; -{bdy_lthr|Zbroja, Skórzana|2|3|1|}; -{bdy_hide|Schowaj Zbroje|2|3|1|}; -{bdy_lt|Zbroja (lekka)|2|3|2|}; -{bdy_hv|Zbroja (ciężka)|2|3|3|}; -{chmail|Kolczuga|2|3|3|}; -{spmail|Zbroja Lamelkowa|2|3|3|}; -{plmail|Zbroja Płytowa|2|3|3|}; - -{hnd_cloth|Rękawice, Ubranie|2|4||}; -{hnd_lthr|Rękawice, Skórzane|2|4|1|}; -{hnd_mtl_li|Rękawice, Metalowe (lekkie)|2|4|2|}; -{hnd_mtl_hv|Rękawice, Metalowe (ciężkie)|2|4|3|}; - -{feet_clth|Buty, Ubranie|2|5||}; -{feet_lthr|Buty, Skórzane|2|5|1|}; -{feet_mtl_li|Buty, metalowe (lekkie)|2|5|2|}; -{feet_mtl_hv|Buty, metalowe (ciężkie)|2|5|3|}; - -{neck|Naszyjnik|2|6||}; -{ring|Pierścień|2|7||}; - -{pot|Mikstura|1|||}; -{food|Jedzenie|1|||}; -{drink|Napój|1|||}; -{gem|Klejnot||||}; -{animal|Element Zwierzęcy||||}; -{animal_e|Jadalny Element Zwierzęcy|1|||}; -{flask|Manierka||||}; -{money|Złoto||||}; -{other|Inne||||}; - - - diff --git a/AndorsTrail/res/values-pl/content_questlist.xml b/AndorsTrail/res/values-pl/content_questlist.xml deleted file mode 100644 index 279ac9083..000000000 --- a/AndorsTrail/res/values-pl/content_questlist.xml +++ /dev/null @@ -1,480 +0,0 @@ - - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{andor|W poszukiwaniu Andora|1|{ - {1|Mój ojciec Mikhail mówił, że Andora nie ma w domu od wczoraj. Powinienem go poszukać we wiosce.||0|} - {10|Leonid wspomniał, że widział Andora rozmawiającego z Gruilem. Powinienem zapytać Gruila czy wie coś więcej.||0|} - {20|Gruil chcę żebym mu przyniósł gruczoł jadowy. Wtedy może coś z niego wyciągne. Powiedział, że niektóre węże i żmije mają gruczoły jadowe.||0|} - {30|Gruil powiedział, że Andor szukał kogoś zwanego Umarem. Powinenem pójść porozmawiać z jego przyjacielem Gaelem w Fallhaven na wschód stąd.||0|} - {40|Rozmawiałem z Gaelem in Fallhaven. Mam pogadać z Bucusem i zapytać o gildię złodzieji.||0|} - {50|Bucus pozwolił mi wejść do piwnicy opuszczonego domu w Fallhaven. Muszę pogadać z Umarem.||0|} - {51|Umar mnie poznał, ale raczej pomylił mnie z bratem. Najwyraźniej Andor przyszedł się z nim zobaczyć.||0|} - {55|Umar zdradził mi, że Andor poszedł do Lodara tworzyciela potków. Muszę znaleźć jego kryjówkę.||0|} - {61|Słyszałem plotkę, w Loneford, według niej Andor był w Loneford i, że mógł mieć coś wspólnego z chorobą przez którą ludzie tu cierpią. Nie jestem do końca przekonany czy, aby na pewno był to Andor. Jeśli to był on, dlaczego pozwolił na to, by ludzie chorowali?||0|} - }|}; -{mikhail_bread|Chleb na śniadanie|1|{ - {100|Kupiłem chleb dla Mikhaila.||1|} - {10|Mikhail chcę, żebym kupił chleb od Mary w centrum miasta.||0|} - }|}; -{mikhail_rats|Szczury!|1|{ - {100|Zabiłem te dwa szczury w ogrodzie.|20|1|} - {10|Mikhail chce, żebym sprawdził nasz ogród. Powinienem zabić te szczury i wrócić do Mikhaila. Jeśli zostane ranny, mogę wrócić do domu i odpocząć na łóżku, by odzyskać siły.||0|} - }|}; -{leta|Zagubiony mąż|1|{ - {10|Leta w Crossglen chcę, abym poszukał Oromira.||0|} - {20|Znalazłem Oromira, chował się przed żoną.||0|} - {100|Powiedziałem Lecie, że Oromir chowa się przed nią.|50|1|} - }|}; -{odair|Plaga szczurów|1|{ - {10|Odair chcę, żebym oczyścił jaskinię z zapasami. Powinienem zabić tego największego szczura i wrócić do Odaira.||0|} - {100|Pomogłem Odairowi oczyścić jaskinię ze szczurów we wiosce Crossglen.|300|1|} - }|}; -{bonemeal|Zakazana substancja|1|{ - {10|Leonid w Crossglen powiedział mi, że pare tygodni temu była tu awantura. Lord Geomyr całkowicie zakazał używania napoju uzdrawiającego benomeal.\n\nTharal, miejscowy kapłan może wiedzieć więcej.||0|} - {20|Tharal nie chce rozmawiać o bonemeal. Mogę go jednak przekonać jeśli przyniosę mu 5 skrzydeł insektów.||0|} - {30|Tharal powiedział, że bonemeal to potężna substancja uzdrawiająca, widać strasznie go rozdrażniło, że jest zakazana. Powinienem pójść zobaczyć się z Thoronirem w Fallhaven jak chce się dowiedzieć więcej. Muszę mu powiedzieć hasło \'Blask Cieni\'.||0|} - {40|Rozmawiałem z Thoronirem w Fallhaven. Może przyrządzić napój bonemeal jeśli przyniosę mu 5 kości ze szkieletów. Powinienem znaleźć parę szkieletorów w opuszczonym domu na północ od Fallhaven.||0|} - {100|Przyniosłem kości Thoronirowi. Teraz będę mógł się u niego zaopatrywać w potki bonemeal.\nMuszę jednak uważać używając ich, odkąd Lord Geomyr wydał dekret są zakazane.|900|1|} - }|}; -{jan|Upadły przyjaciel|1|{ - {10|Jan opowiedział mi historie, dwóch jego przyjaciół Gandir i Irogotu, zaczęło kopać w poszukiwaniu skarbu , ale zaczęli walczyć między sobą i Irogotu w szale zabił Gandira.\nMuszę zwrócić pierścień, który posiada Irogotu, i pogadać z Janem gdy już go odzyskam.||0|} - {100|Irogotu nie żyje. Zaniosłem Janowi pierścień Gandira i pomściłem jego przyjaciela.|1500|1|} - }|}; -{bucus|Klucz Luthor|1|{ - {10|Bucus z Fallhaven może mieć informacje o Andorze. Chcę, żebym przyniósł klucz Luthor z katakumb pod kościołem w Fallhaven.||0|} - {20|Katakumby pod kościołem są zamknięte. Athamyr to jedyna osoba, która może wejść do katakumb i jest na tyle odważna. Muszę się z nim zobaczyć w jego domu na południowy zachód od kościoła.||0|} - {30|Athamyr chcę żebym przyniósł mu usmażony stek, wtedy może ze mną porozmawia.||0|} - {40|Przyniosłem ten stek dla Athamyra.|700|0|} - {50|Athamyr dał mi pozwolenie na wejście do katakumb.||0|} - {100|Przyniosłem Bucusowi klucz Luthor.|2150|1|} - }|}; -{fallhavendrunk|Pijacka opowieść|1|{ - {10|Pijak zaczął mi opowiadać jakąś historię, ale chcę, żebym mu przyniósł więcej miodu. Nie jestem pewny czy ta historia do czegoś zmierza.||0|} - {100|Pijak mówił, że swego czasu podróżował z Unnmirem. Powinienem porozmawiać z Unnmir.||1|} - }|}; -{calomyran|Sekrety Calomyrana|1|{ - {10|Staruszek w Fallhaven zgubił księge \'Sekrety Calomyrana\'. Powininem jej poszukać. Może w domu Arcira na południu?||0|} - {20|Znalazłem kawałek urwanej strony \'Sekrety Calomyrana\' z imieniem \'Larcal\' na niej napisanym.||0|} - {100|Oddałem staruszkowi księge.|600|1|} - }|}; -{nocmar|Zagubione skarby|1|{ - {10|Unnmir powiedział, że kiedyś był podróżnikiem, i dał mi wskazówkę, żeby zobaczyć się z Nocmarem. Jego dom jest na południowy zachód od tawerny w Fallhaven.||0|} - {20|Nocmar był kiedyś kowalem. Ale Lord Geomyr zakazał używania serca stali, więc nie może już tworzyć swojej broni.\nJeśli znajde kamienne serce i przyniosę je mu, znów mógłby tworzyć swoją broń.||0|} - {200|Przyniosłem kamienne serce Nocmarowi. Powinien teraz móc tworzyć przedmioty z serca stali.|1200|1|} - }|}; -{flagstone|Starożytne sekrety|1|{ - {10|Spotkałem wartownika przed fortecą zwaną Flagstone. Wartownik powiedział mi, że Flagstone było kiedyś więzieniem dla uciekających pracowników na górze Galmore. Coraz częsciej pojawiały się tam nieumarli. Powinienem zbadać źródło pojawiania się tych nieumarłych. Strażnik powiedział, że mogę się do niego zwracać o pomoc.||0|} - {20|Znalazłem tunel, kopany pod Flagstone, prowadzący do jakiejś większej jaskini. Jaskini pilnuje jakiś demon do którego nawet nie mogę się zbliżyć. Może ten strażnik wie coś więcej?||0|} - {30|Strażnik wspomniał, że były naczelnik miał naszyjnik, którego nigdy nie zdejmował. Pewnie na tym naszyjniku są słowa dzięki którym mógłbym przejść przez tego demona. Muszę wrócić do tego strażnika, żeby odczytał słowa na tym naszyjniku jak go znajde.||0|} - {31|Znalazłem byłego naczelnika Flagstone na wyższym piętrze. Powinienem był wrócić teraz do tego naczelnika.||0|} - {40|Znam już słowa, które pomogą mi przejść przez tego demona pod Flagstone. \'Świt cieni\'.|1600|0|} - {50|Głęboko pod Flagstone, znalazłem źródło nieumarłych. Kreature stworzoną z cierpienia więźniów Flagstone.||0|} - {60|Znalazłem więźnia, Narael, żył głęboko pod Flagstone. Narael był kiedyś mieszkańcem Nor City. Jest zbyt słaby, żeby mógł chodzić o własnych nogach, ale jeśli znajdę jego żonę w Nor City, zostanie mi to wynagrodzone.|2100|1|} - }|}; -{vacor|Brakujące elementy|1|{ - {10|Mag zwany Vacor w połudiowo zachodnim Fallhaven próbował rozszczepić jakieś zaklęcie.\nCoś było z nim nie tak, miał obsesję na tym zaklęciu. Jakby coś od niego brało moc.||0|} - {20|Vacor chcę, abym przyniósł mu cztery elementy zaklęcia, które jak zapewnia zostały mu ukradzione. Ci czterej bandyci powinni być gdzieś na południe od Fallhaven.||0|} - {30|Przyniosłem mu te cztery części zaklęcia.|1200|0|} - {40|Vacor mówił mi o jego byłym uczniu Unzel, który zadawł za dużo pytań. Vacor chce, żebym zabił Unzela. Mogę go znaleźć w południowo zachodnim Fallhaven. Mam mu przynieść jego sygnet, gdy już go zabije.||0|} - {50|Unzel dał mi wybór albo pomogę Vacorowi albo jemu.||0|} - {51|Wybrałem stronę Unzela. Powinienem pójść na południowy zachód Fallhaven, żeby porozmawiać z Vacorem o Unzelu i Cieniu.||0|} - {53|Zacząłem walczyć z Unzelem. Muszę przynieść sygnet Vacorowi skoro Unzel już jest martwy.||0|} - {54|Zacząłem walczyć z Vacorem. Muszę przynieść sygnet Unzelowi skoro Vacor już jest martwy.||0|} - {60|Zabiłem Unzel i powiedziałem Vacorowi o jego czynach.|1600|1|} - {61|Zabiłem Vacor i powiedziałem Unzelowi o jego czynach.|1600|1|} - }|}; - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{farrik|Nocna wizyta|1|{ - {10|Farrik w gildii złodzieji powiedział mi o planie ucieczki jednego z ich więźniów.||0|} - {20|Farrik w gildii złodzieji powiedział mi o szczegółach tego planu i zdecydowałem się mu pomóc. Kapitan straży ma problem z piciem. Plan jest taki, kucharz z gildii złodzieji przyrządzi specjalny miód, który powali z nóg kapitana straży. Możliwe, że będe musiał przekupić kapitana straży.||0|} - {25|Mam specjalny miód dla kapitana straży.||0|} - {30|Powiedziałem Farrikowi, że nie do końca zgadzam się z jego planem. Mogę powiedzieć strażom o ich niecnym planie.||0|} - {32|Dałem specjalny miód kapitanowi strażników.||0|} - {40|Powiedziałem kapitanowi o planie uwolnienia ich więźnia przez gildie złodzieji.||0|} - {50|Kapitan straży chcę, abym powiedział złodziejom, że dzisiejszej nocy strażników będzie mniej niż zwykle. Może uda nam sie złapać paru z nich.||0|} - {60|Udało mi się przekupić kapitana, żeby wypił specjalny miód. Powinien być nie przytomny, aż do rana dzięki czemu będę mógł uwolnić więźnia.||0|} - {70|Farrik wynagrodził mnie za pomoc gildii złodzieji.|1500|1|} - {80|Powiedziałem Farrikowi, że strażników dzisiejszej nocy będzie mniej.||0|} - {90|Kapitan strażników podziękował mi za wykonanie planu dzięki, któremu złapali złodzieji. Powie dobre słowo o mnie innym strażnikom.|1700|1|} - }|}; -{lodar|Zaginiona potka|1|{ - {10|Powinienem znaleźć twórcę potków Lodara. Umar z gildii złodzieji powiedział mi, że będe musiał powiedzieć słowa w odpowiedniej kolejności jeśli chce dotrzeć do kryjówki Lodara.||0|} - {15|Umar mówił, że musze znaleźć Ogama w Vilegard. Ogam zna odpowiednie słowa, które pomogą mi dotrzeć do kryjówki Lodara.||0|} - {20|Odwiedziłem Ogama w południowo zachodnim Vilegard. Mówił zagadkami. Ledwo wyłapałem jakieś szczegóły, kiedy zapytałem o kryjówkę Lodara. \'Między Cieniem, a Światłością. Skalne otoczenie.\' i słowa \'Blask Cieni.\' były zdaniami, które wtedy powiedział. Nie mam pojęcia co to znaczy.||0|} - }|}; -{vilegard|Zaufać nieznajomemu|1|{ - {10|Mieszkańcy Vilegard są bardzo podejrzliwi do ludzi z zewnątrz. Powiedziano mi, żebym się spotkał z Jolnorem w kaplicy Vilegard, jeśli chcę zyskać zaufanie.||0|} - {20|Rozmawiałem z Jolnor w kaplicy Vilegard. Zasugerował, bym pomógł trzem ludziom w tej wiosce, żeby zyskać zaufanie reszty. Muszę pomóc Kaori, Wrye i Jolnorowi w Vilegard.||0|} - {30|Pomogłem wszystkim trzem. Teraz mieszkańcy Vilegard powinni mi ufać nieco bardziej.|2100|1|} - }|}; -{kaori|Sprawy Kaori|1|{ - {5|Jolnor z kaplicy Vilegard chciał, abym porozmawiał z Kaori w północnym Vilegard, żeby sprawdzić czy nie potrzebuje pomocy.||0|} - {10|Kaori w północnym Vilegard chcę, żeby jej przynieść 10 potków bonemeal.||0|} - {20|Przyniosłem 10 bonemeal dla Kaori.|520|1|} - }|}; -{wrye|Przyczyn może być wiele|1|{ - {10|Jolnor z kaplicy Vilegard chce, abym porozmawiał z Wrye w północnym Vilegard. Jakiś czas tamu straciła syna.||0|} - {20|Wrye w północnym Vilegard powiedziała, że jej syn Rincel zaginął. Domyśla się, że nie żyje, bądź jest ciężko ranny.||0|} - {30|Wrye uważa, że królewscy strażnicy z Feygard są zamieszani w zaginięcie jej syna, możliwe, że wzięli go do wojska.||0|} - {40|Wrye chcę, bym znalazł wskazówki co do tego co się stało z jej synem.||0|} - {41|Powinienem rozejrzeć się w tutejszej tawernie i w tawernie na północ stąd.|200|0|} - {42|Słyszałem o chłopcu, który jakiś czas temu był w tawernie spieniony kufel. Ale opuścił ją idąc na zachód.||0|} - {80|Na północnym zachodzie od Vilegard znalazłem człowieka, który z kolei znalazł Rincela walczącego z jakimiś potworami. Rincel opuścił Vilegard z własnej woli, żeby zobaczyć miasto Feygard. Muszę wrócić do Wrye w północnym Vilegard i powiedzieć jej co się stało z jej synem.||0|} - {90|Powiedziałem Wrye prawdę o zaginięciu jej syna.|520|1|} - }|}; -{jolnor|Szpiedzy w Spienionym|1|{ - {10|Jolnor z kaplicy w Vilegard opowiedział o strażnikach przed tawerną spieniony kufel, według niego to królewscy szpiedzy z Feygard. Chcę, aby ten strażnik zniknął, obojętnie jakim sposobem. Ta tawerna jest na północ od Vilegard.||0|} - {20|Udało mi się przekonać strażnika o jego odejściu, gdy skończy się jego zmiana.||0|} - {21|Zacząłem walczyć ze strażnikiem. Powinienem przynieść pierścień królewskiego gwardzisty Jolnorowi, żeby mu udowodnić, że strażnika już nie ma.||0|} - {30|Powiedziałem Jolnorowi, że strażnika już nie ma.|630|1|} - }|}; - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{bwm_agent|Agent i Bestia|1|{ - {1|Spotkałem człowieka szukającego pomocy dla osady, \'Góry Blackwater\'. Nagle jego osada została zaatakowana przez potwory i bandytów i potrzebują pomocy z zewnątrz.|||} - {5|Zgodziłem się pomóc temu człowiekowi i Górze Blackwater w rozprawieniu się z ich problemem.|||} - {10|Ten człowiek powiedział, żebym spotkał się z nim po drugiej stronie zawalonej kopalni. On będzie się czołgać szybem, a ja zejdę w dół do ciemnej opuszconej kopalni.|||} - {20|Udało mi się przejść przez tą ciemną opuszczoną kopalnie i spotkać tego człowieka po drugiej stronie. Wydawał się bardzo zaniepokojony, jak mówił mi, że gdy opuszczę kopalnie mam iść prosto na wschód. Powinenem spotkać tego człowieka u podnóży góry na wschodzie.|||} - {25|Usłyszałem opowieść o Prim i Górze Blackwater osadach, które walczą przeciwko sobie.|||} - {30|Powinienem podążać scieżką, która prowadzi do osady Blackwater.|||} - {40|Znów spotkałem tego człowieka w drodze na szczyt. Powinienem kontynuuować moją wędrówkę w górę.|||} - {50|Dotarłem na zaśnieżoną część Góry Blackwater. Ten człowiek znów powiedział, żebym szedł dalej w górę. Osada Blackwater jest już blisko.|||} - {60|Dotarłem do osady Blackwater. Powinienem porozmawiać z ich mistrzem bitewnym, Harlennem.|||} - {65|Rozmawiałem z Harlenn z Blackwater. Pozornie osada jest atakowana przez pewną liczbę potworów, yeti i białe smoki. Na dodatek są atakowani przez ludzi z Prim.|||} - {66|Harlenn, uważa, że ludzie z Prim mają coś wspólnego z tymi atakami.|||} - {70|Harlenn chce, abym przekazał wiadomość Guthberedowi z Prim. Albo oni skończą z atakami na Blackwater, albo my się nimi zajmiemy. Muszę porozmawiać z Guthberedem w Prim.|||} - {80|Guthbered zaprzecze, że on i jego ludzie stoją za atakami na osadę Blackwater. Muszę pogadać z Harlennem|||} - {90|Harlenn jest pewny, że to oni stoją za atakami.|||} - {95|Harlenn prosi, żebym znalazł jakieś dokumenty na to, jak i kiedy zaatakują ich wioskę. Powinienem poszukać wskazówek koło Guthbereda.|||} - {100|Znalazłem plany o rekrutowaniu najemników i ataki na osadę Blackwater. Muszę natychmiast porozmawiać z Harlennem.|||} - {110|Harlenn podziękował mi za te plany ataku.|1150||} - {120|Żeby zakończyć ataki na Blackwater, Harlenn chcę dokonać zamachu na Guthbereda.|||} - {130|Zacząłem walczyć z Guthberedem.|||} - {131|Powiedziałem Guthberedowi, że zostałem tu wysłany, żeby go zabić, ale pozwoliłem mu żyć. Był mi wdzięczny i opuścił Prim.|2100||} - {149|Powiedziałem Harlennowi że Guthbereda nie ma.|||} - {150|Harlenn podziękował mi za pomoc. Mam nadzieję, że ataki na osadę ustaną.|5000||} - {240|Jestem teraz zaufaną osobą w Blackwater i wszyscy powinny być skorzy do sprzedaży przedmiotów.||1|} - {250|Zdecydowałem się nie pomagać Blackwater.||1|} - {251|Odkąd pomagam Prim, Harlenn nie chce już ze mną rozmawiać.||1|} - }|}; -{prim_innquest|Dobrze wypoczęty|1|{ - {10|Rozmawiałem z kucharką z Prim, u podnóża góry Blackwater. Jest tam pokój do wynajęcia, ale obecnie zajmowany przez Arghesta. Muszę z nim pogadać czy nadal będzie zajmował pokój. Kucharka wskazała mi południowy zachód od Prim.|||} - {20|Rozmawiałem z Arghest o pokoju na zapleczu. Nadal jest nim zainteresowany ma gdzie wygodnie odpoczywać. Ale mógłby z niego zrezygnować jeśli mu to zrekompensuje.|||} - {30|Arghest chcę, żebym przyniósł mu 5 butelek mleka. Prawdopodobnie znajdę mleko w większych wioskach.|||} - {40|Kupiłem mleko dla Arghest. Zgodził się na użyczenie swojego łóżka. Naraszczie będę mógł odpocząć. Powinienem porazmawiać z kucharką.|500||} - {50|Wytłumaczyłem kucharce, że mam zgode od Arghesta na używanie pokoju.||1|} - }|}; -{prim_hunt|Nieczyste intencje|1|{ - {10|Tuż za zawaloną kopalnią, spotkałem człowieka z Prim. Błagał mnie o pomoc.|||} - {11|Wioska Prim potrzebuje pomocy od kogoś z zewnątrz, żeby poradzić sobie z atakami potworów i bandytów. Powinienem porozmawiać z Guthberedem z Prim jeśli chcę im pomóc.|||} - {15|Guthbered jest w ratuszu. To kamienny budynek w centrum miasta.|||} - {20|Rozmawiałem z Guthberedem o Prim. Prim jest regularnie atakowane przez osadę Blackwater.|||} - {25|Guthbered chcę, żebym poszedł na szczyt góry do Blackwater i zapytał ich mistrza bitewnego Harlenna (czy i dlaczego) przywołują golemy przeciwko Prim.|||} - {30|Rozmawiałem z Harlennem o atakach na Prim. Zaprzeczył jakoby osada Blackwater miała cokolwiek z tym wspólnego. Muszę pogadać z Guthberedem w Prim.|||} - {40|Guthbered nadal wierzy, że to oni stoją za atakami.|||} - {50|Guthbered chcę, abym znalazł jakieś dokumenty o planie większego ataku na Prim. Powinienem poszukać tych dokumentów koło Harlenna i jego świty, ale żeby nikt mnie nie przyłapał.|||} - {60|Znalazłem jakieś plany zawierające informacje o większym ataku na Prim. Muszę się rozmówić z Guthberedem niezwłocznie.|||} - {70|Guthbered podziękował mi za pomoc w znalezieniu dowodu o atakach przez Blackwater.|1150||} - {80|W celu zaprzestania tych ataków, Guthbered chce, abym zabił Harlenna w Blackwater.|||} - {90|Zacząłem walczyć z Harlennem.|||} - {91|Powiedziałem Harlennowi, że jestem tu po to by go zabić, ale pozwole mu żyć. Był mi bardzo wdzięczny i opuścił osadę.|2100||} - {99|Powiedziałem Guthberedowi, że Harlenn nie stanowi już problemu.|||} - {100|Guthbered podziękował mi za pomoc dla Prim. Miejmy nadzieję, że ataki ustąpią. Jako podziękowanie Guthbered dał mi parę przedmiotów i pozwolenie na wejście do świątyni w Blackwater.|5000||} - {140|Pokazałem podrobione pozwolenie strażnikowi, który mnie przepuścił.|||} - {240|Jestem teraz osobą zaufaną w Prim i wszystkie usługi powinny być teraz dla mnie odblokowane.||1|} - {250|Zdecydowałem się nie pomagać Prim.||1|} - {251|Odkąd pomagam Blackwater, Guthberedowi nie chcę już się ze mną gadać.||1|} - }|}; -{kazaul|Światło w tunelu|1|{ - {8|Dostałem się do świątyni w Blackwater i znalazłem grupę magów prowadził ich człowiek o imieniu Throdna.|||} - {9|Throdna wydawał się kimś bardzo zainteresowany (lub czymś) zwanym Kazaul, w szczególności rytułałem z udziałem jego imienia.|||} - {10|Zgodziłem się pomóc Throdna znaleźć więcej informacji o rytuale poprzez znalezienie zagubionych kartek mówiących o szczególe rytuału. Powinienem poszukać tych zagubionych kartek po drodze w dół góry z Blackwater do Prim.|||} - {11|Muszę znaleźć dwie strony śpiewnika i trzy strony opisujące sam rytuał, i wrócić do Throdna kiedy znajde je wszystkie.|||} - {21|Znalazłem pierwszą część śpiewnika rytuału Kazuala.|||} - {22|Znalazłem drugą część śpiewnika rytuału Kazuala.|||} - {25|Znalazłem pierwszą część rytuału Kazuala.|||} - {26|Znalazłem drugą część rytuału Kazuala.|||} - {27|Znalazłem trzecią część rytuału Kazuala.|||} - {30|Throdna podziękował mi za znalezienie wszystkich części.|3600||} - {40|Throdna chcę położyć kres odradzania się Kazuali które zajęły miejscy u podnóży gór. U podnóża góry jest szczelina, którą należy zbadać.|||} - {41|Dał mi fiolkę oczyszczania ducha, którą Throdna chcę, abym zastosował ją w ich sanktuarium. Powinienem wrócić do Throdna, gdy dotrę i użyje tej fiolki w sanktuarium.|||} - {50|W sanktuarium u podnóży gór, spotkałem Kazuala strażnika. Dzięki recytowaniu rytuału, mogłem zmusić strażnika do zaatakowania mnie.|||} - {60|Oczyściłem sanktuarium ze złych duchów.|3200||} - {100|Oczekiwałem na jakąś specjalną nagrodę od Throdna za pomoc z rytuałem i oczyszczenie sanktuarium. Ale on bardziej był zajęty studiowaniem o Kazaulach. Nie mogłem zrozumieć nic sensownego.||1|} - }|}; -{bwm_wyrms|Żadnej słabości|1|{ - {10|Herec z drugiego piętra w osadzie Blackwater prowadzi badania nad białymi smokami. Chce, bym przyniósł mu 5 pazurów białych smoków, żeby mógł kontynuuować badania. Tylko niektóre smoki mają takie pazury. Będe musiał zabić parę rodzaji, żeby wiedzieć jakie to.|||} - {20|Oddałem 5 pazurów dla Hereca.|||} - {30|Herec skończył robić potke likwidującą zmęczenie, która będzie przydatna przy walce ze smokami w przyszłości.|1500|1|} - }|}; -{bjorgur_grave|Wybudzony z drzemki|1|{ - {10|Bjorgur w Prim uważa, że coś zakłóca spokój grobie jego rodziców, na południow zachód od Prim, tuż za kopalnią Elma.|||} - {15|Bjorgur chcę, żebym sprawdził grób, i upewnić się, że jego rodzinny sztylet nadal leży bezpiecznie w grobowcu.|||} - {20|Fulus z Prim zainteresował się wejściem w posiadanie rodzinnego sztyletu Bjorgura.|||} - {30|Spotkałem człowieka, który miał przy sobie dziwnie wyglądający sztylet. Musiał ukraść ten sztylet z grobowca.|||} - {40|Włożyłem sztylet z powrotem do grobowca. Niespokojni nieumarli są teraz bardziej spokojni, dziwnie spokojni.|200||} - {50|Bjorgur podziękował za pomoc. Powiedział, że powinienem poszukać też jego krewnych w Feygard.|1100|1|} - {51|Powiedziałem Fulusowi, że pomogłem Bjorgurowi zwrócić jego sztylet na jego właściwe miejsce.|||} - {60|Oddałem sztylet Fulusowi. Podziękował mi i wynagrodził sowicie.|1700|1|} - }|}; - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{erinith|Głębokie Rany|1|{ - {10|Północny wschód od Crossglen village, poznałem Erinith w jego obozie. Najwyraźniej został zaatakowany zeszłej nocy i stracił księge.|||} - {20|Zgodziłem się pomóc Erinith. Wspomniał, że wyrzucił ją gdzieś w drzewa na północ stąd.|||} - {21|Zgodziłem się pomóc Erinith za 200 złotych monet. Wspomniał, że wyrzucił ją gdzieś w drzewa na północ stąd.|||} - {30|Zwróciłem księge Erinith.|2000||} - {31|Potrzebuje też pomocy z raną, która mu się nie goi. Albo przyniosę mu większą potke zdrowia, lub cztery normalne potki zdrowia.|||} - {40|Dałem Erinith potkę bonemeal. Był lekko przestraszony używając ją odkąd zakazali jej przez Lorda Geomyra.|||} - {41|Dałem Erinith większą potkę, żeby uleczył swoje rany.|||} - {42|Dałem Erinith cztery normalne potki, żeby uleczył swoje rany.|||} - {50|Rany się całkowicie zagoiły i Erinith mi podziękował za pomoc.|1500|1|} - }|}; -{hadracor|Zdewastowane ziemie|1|{ - {10|Na drodze do wieży Carn, zachód od rozdroży, Spotkałem grupę drwali, którym przewodził Hadracor. Hadracor chcę, żeby mu pomóc się zemścić na osach które atakują drwali, gdy ci chcą ścinać drzewa. Żeby im pomóc w tej zemście, powinienem poszukać olbrzymich os w ich siedlisku i przynieść co najmniej 5 dużych skrzydeł.|||} - {20|Przyniosłem pięć dużych skrzydeł Hadracorowi.|||} - {21|Przyniosłem sześć dużych skrzydeł Hardcorowemu. Za pomoc, dał mi parę rękawiczek.|||} - {30|Hadracor podziękował za pomoc z resztą drwali za zemste na osach. W dowód wdzięczności pozwolił ze sobą handlować.||1|} - }|}; -{tinlyn|Zagubiona owieczka|1|{ - {10|W drodze do Feygard, koło mostku, spotkałem pasterza Tinlyna. Tinlyn powiedział mi, że zagubiły mu się cztery owieczki, ale nie zostawi reszty stada, żeby je poszukać.|||} - {15|I have agreed to help Tinlyn find his four lost sheep.|||} - {20|Znalazłem jedną z zagubionych owiec Tinlyna.|||} - {21|Znalazłem jedną z zagubionych owiec Tinlyna.|||} - {22|Znalazłem jedną z zagubionych owiec Tinlyna.|||} - {23|Znalazłem jedną z zagubionych owiec Tinlyna.|||} - {25|Znalazłem wszystkie cztery owieczki.|||} - {30|Tinlyn podziękował mi za znalezienie owieczek.|3500|1|} - {31|Tinlyn podziękował mi za znalezienie owieczek, ale nie ma dla mnie żadnej nagrody.|2000|1|} - {60|Zaatakowałem przynajmniej jedną z owieczek i nie mogę już oddać mu wszystkich czterech.||1|} - }|}; -{benbyr|Tanie Cięcia|1|{ - {10|Spotkałem Benbyra przed strażnicą. Chcę się zemścić na koledze \'partnerze biznesowym\' - Tinlyn. Benbyr chcę zabić wszystkie jego owieczki.|||} - {20|Zgodziłem się pomóc Benbyrowi zabić wszystkie jego osiem owieczek. Powinienem ich poszukać na północnym zachodzie stąd.|||} - {21|Zacząłem zarzynać jego owce. Wrócę do Benbyra, gdy zabije wszystkie osiem owiec.|||} - {30|Benbyr był wstrząśnięty słysząc, że wszystkie jego owce są zarżnięte.|5200|1|} - {60|Odmówiłem pomocy w zabiciu owiec.||1|} - }|}; -{rogorn|Droga czysta|1|{ - {10|Minarra w wieży na rozdrożach Crossroads widziała bandę łotrów zmierzających na zachód. Minarra była pewna, że odpowiadali oni opisowi poszukiwanych za, których wyznaczono nagrody przez Feygardski patrol. Jeśli to są ludzie o których wspominała Minarra, ich liderem jest bezwzględny i dziki bandzior zwany Rogorn.|||} - {20|Pomagam Minarrze znaleźć bandę tych łotrów. Powinienem iść drogą na zachód od tej wieży i poszukać ich. Prawdopodobnie to oni ukradli trzy słynne obrazy i są posądzeni o inne zbrodnie.|||} - {21|Minarra wspomniała także, żeby nie ufać w ani jedno ich słowo. Właściwie wszystko powiedziane przez Rogorna powinno traktować się bardzo podejrzliwie.|||} - {30|Znalazłem bandę bandytów na zachodniej drodze, prowadzoną przez Rogorna.|||} - {35|Rogorn powiedział mi, że jest niesłusznie oskarżony o ukradnięcie obrazów oraz morderstwa, a oni wcale nawet nie byli w Feygardzie.|||} - {40|Zdecydowałem się zaatakować Rogorna i jego bandziorów. Powinienem wrócić do Minarry, gdy już się z nimi rozprawie.|||} - {45|Zdecydowałem się zaatakować Rogornai jego bandziorów, ale zamiast raportować o tym Minnarze powiem jej, że musiała się pomylić, bo to nie był Rogorn.|||} - {50|Minarra podziękowała mi za rozprawienie się z tymi złodziejami i że moje uczynki będą docenione.|||} - {55|Kiedy powiedziałem Minarrze, że musiała go pomylić z kimś innym, stała się nieco podejrzliwa, ale podziękowała za pomoc w tej sprawie.|||} - {60|Pomogłem Minnarze w jej zadaniu.||1|} - }|}; -{feygard_shipment|Sprawy Feygard|1|{ - {10|Spotkałem Gandorena, kapitana straży przy strażnicy na rozdrożach. Powiedział mi o problemach w Loneford, przez które jego straże muszą się mieć bardziej na baczności niż zwykle. Przez co nie mogą zająć sie swoimi sprawami, a muszą pełnić służbę.|||} - {20|Gandoren chcę, abym mu pomógł w dostawie 10 żelaznych mieczy do innego posterunku na południu.|||} - {21|Zgodziłem się pomóc Gandorenowi w transporcie dostawy, jako przysługę dla Feygard.|||} - {22|Niechętnie, ale zgodziłem się w transportowaniu dostawy.|||} - {25|Muszę dostarczyć paczkę broni do kapitana patrolu stacjonującego w Spienionym Kuflu.|||} - {26|Gandoren powiedział, że Ailshara wyrażała zainteresowanie dostawą i kazał mi się trzymać od niej z daleka.|||} - {30|Ailshara rzeczywiście się interesuje tą dostawą, i chce, żebym jednak pomógł Nor City.|||} - {35|Jeśli chcę pomóc Ailsharze w Nor City, powinienem dostarczyć towar do kowala w Vilegard.|||} - {50|Dostarczyłem towar kapitanowi w tawernie we Feygardzie . Powinienem porozmawiać z Gandorenem, że towar został już dostarczony.|||} - {55|Dostarczyłem towar do kowala w Vilegard.|||} - {56|Kowal w Vilegard dał mi w zamian paczkę zużytej broni, którą mam zanieść kapitanowi straży w tawernie w Feygard zamiast tych normalnych.|||} - {60|Zaniosłem zużytą broń do kapitana w tawernie w Feygard. Powinienem powiedzieć Gandorenowi, że dostarczyłem towar na miejsce.|||} - {80|Gandoren podziękował mi za pomoc z dostawą.|4000|1|} - {81|Gandoren podziękował mi za pomoc z dostawą. Nawet nie był podejrzliwy. Muszę zameldować o dostarczeniu towaru Ailsharze.|||} - {82|Zameldowałem się u Ailshary.|4000|1|} - }|}; -{loneford|Płynie w żyłach|1|{ - {10|Słyszałem historię o Loneford. Większość tamtejszych ludzi jest chora, a niektórzy nawet umarli. Przyczyna jest nadal nieznana.|||} - {11|Muszę przeprowadzić własne śledztwo co jest przyczyną tej dziwnej choroby. Powininenm porozmawiać z mieszkańcami Loneford i okolic, żeby dowiedzieć się więcej o sprawie.|||} - {21|Strażnicy z wartowni są pewni, że choroba w Loneford to sabotaż za który odpowiedzialni są piraci i ludzie z Nor City.|||} - {22|Niektórzy mieszkańcy Loneford wierzą, że to sprawka strażników z Loneford, w niektórych przypadkach ludzie cierpią bardziej niż wcześniej.|||} - {23|Talion, kapłan z Loneford, uważa, że to kara Cienia, za brak wiary w niego.|||} - {24|Taevinn w Loneford jest pewny, że Sienn w południowo wschodniej stodole ma coś wspólnego z tą chorobą. Najwyraźniej Sienn trzyma jakieś stworzenie, które parę razy stawało się niebezpieczne.|||} - {25|Muszę zobaczyć się z Landą w tawernie Loneford. Plotki głoszą, że boi się czegoś powiedzieć.|||} - {30|Landa mylił mnie z kimś początkowo. Widział jakiegoś chłopca niedaleko studni w nocy tuż przed pojawieniem się tej choroby. Bał mi się o tym powiedzieć na początku ponieważ myślał, że ten chłopiec go widział. Czy to mógł być Andor?|||} - {31|Tej nocy, której ten chłopiec był przy studni, widział także Bucetha pobierającego próbki wody ze studni. Dosyć dziwne, Buceth nie zachorował jak reszta mieszkańców wioski.|||} - {35|Powinienem przesłuchać Bucetha w świątyni Loneford, co takiego robił przy studni i czy cokolwiek wie o Andorze.|||} - {41|Przekupiłem Bucetha do rozmowy.|||} - {42|Powiedziałem Bucethowi, że jestem gotów podążać ścieżką cieni.|||} - {45|Buceth mówił, że jest przysłany przez innych kapłanów z Nor City, by się upewnić, że czary cieni odzyskają blask nad Loneford. Najwyraźniej ci kapłani przysłali też chłopca do jakiejś sprawy w Loneford, Buceth miał za zadanie pobrać próbki wody ze studni.|||} - {50|Zaatakowałem Buceth. Powinienem przynieść jakiś dowód na to, że to sprawka Bucetha do Kuldana, kapitana straży w Loneford.|||} - {54|Oddałem próbki Bucetha Kuldanowi, kapitanowi straży w Loneford.|||} - {55|Kuldan był bardzo wdzięczny za rozwiązanie problemu choroby w Loneford. Zaczną przynosić wodę by pomoć Feygard zamiast pić ją ze studni. Kuldan powiedział, żebym zobaczył się z zarządcą Feygard jeśli chcę jeszcze pomóc.|15000|1|} - {60|Obiecałem trzymać historię Bucetha w tajemnicy. Jeśli Andor naprawdę tu był, musiał mieć bardzo ważny powód, że zrobił to co zrobił. Buceth powiedział,żebym porozmawiał z kustoszem w kaplicy Nor City jeśli chcę się nauczyć czegoś o cieniu.|15000|1|} - }|}; - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{thorin|Resztki i Kawałki|1|{ - {20|W jaskini na wschodzie, spotkałem Thorina, poprosił mnie o pomoc w znalezieniu jego dawnych towarzyszy. Muszę znaleźć sześć szkieletów które po nich zostały i wrócić do Thorina.|||} - {31|Znalazłem jakieś resztki szkieletu w tej samej jaskini co poznałem Thorina.|||} - {32|Znalazłem jakieś resztki szkieletu w tej samej jaskini co poznałem Thorina.|||} - {33|Znalazłem jakieś resztki szkieletu w tej samej jaskini co poznałem Thorina.|||} - {34|Znalazłem jakieś resztki szkieletu w tej samej jaskini co poznałem Thorina.|||} - {35|Znalazłem jakieś resztki szkieletu w tej samej jaskini co poznałem Thorina.|||} - {36|Znalazłem jakieś resztki szkieletu w tej samej jaskini co poznałem Thorina.|||} - {40|Thorin był wdzięczny za pomoc. Jako nagrodę pozwolił mi odpoczywać w jego łóżku, i sprzeda mi parę jego potków.|4000|1|} - }|}; -{algangror|Myszy i ludzie|1|{ - {10|W opuszczonym domu na półwyspie na północnym brzegu jeziora Laeroth w górach na północnym-wschodzie, poznałem kobietę Algangror.|||} - {11|Miała problem z gryzoniami i zapytała mnie o pomoc, udało jej się zamknąć je w pułapce w piwnicy.|||} - {15|Zgodziłem się pomóc Algangrori z gryzoniami. Mam do niej wrócić jak zabije wszystkie sześć gryzoni.|||} - {20|Algangror podziękowała mi za pomoc.|5000||} - {21|Powiedziała też aby nie rozmawiać z nikim w Remgard o jej miejscu pobytu. Najwyraźniej, jej poszukują, ale nie chciała powiedzieć dlaczego. Pod żadnym pozorem nie mogę nikomu powiedzieć, gdzie ona jest.||1|} - {100|Nie pomogę Algangrori w jej zadaniu.||1|} - {101|Algangrori nie chcę ze mną rozmawiać i nie będe już w stanie jej pomóc.||1|} - }|}; - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{toszylae|Przewoźnik Mimowoli|1|{ - {10|Na drodze między Loneford a Brimhaven, Znalazłem wyschnięte jezioro z wielką jamą. Głęboko w jamie, natknąłem się na Ulirfendora - kapłana cieni z Brimhaven. Ulirfendor próbował przetłumaczyć inskrypcję ze świątyni Kazauli, i stwierdził, że jest tam coś o \'Mrocznym Obrońcy\', ale nie jest pewny co to oznacza. Cokolwiek to oznacza, musi być powstrzymane.|||} - {11|Ulirfendor potrzebuję pomocy z brakującymi elementami inskrypcji. Na inskrypcji pisze \'Kulauil hamar urum Kazaul\'te\', ale następna część jest kompletnie nie czytelna.|||} - {15|Zgodziłem się pomóc Ulirfendorowi znaleźć brakujące części inskrypcji. Ulirfendor wierzy, że inskrypcjia jest o potężnej kreaturze, która żyje głęboko w podziemiach. Może to jest wskazówka gdzie mogą być pozostałe części.|||} - {20|Głęboko w podziemiach, spotkałem promiennego opiekuna, strzeżącego kogoś. Opiekun wypowiedział frazy \'Kulauil hamar urum Kazaul\'te. Kazaul hamat urul\'. To musi być to czego szukał Ulirfendor. Powinienem wrócić do niego najszybciej jak się da.|||} - {21|Próbowałem zaatakować opiekuna, ale nie mogłem go nawet sięgnąć. Jakaś potężna siła mnie powstrzymywała. Może Ulirfendor wie więcej.|||} - {30|Ulirfendor był bardzo zadowolony, że znalazłem brakujące części inskrypcji.|2000||} - {32|Powiedział mi także jak ona idzie dalej, ale nie wie co oznacza. Powinienem wrócić do opiekuna i powtórzyć słowa Ulirfendora.|||} - {42|Powtórzyłem to opiekunowi.|5000||} - {45|Opiekun zaśmiał się złowieszczo i zaatakował mnie.|||} - {50|Pokonałem opiekuna i udało mi się dotrzeć do licza \'Toszylae\'. Licz zdołał mnie czymś zainfekować. Muszę zabić tego licza i wrócić do Ulirfendor.|||} - {60|Ulirfendor powiedział, że udało mu się przetłumaczyć części, które powiedziałem opiekunowi. Najwyraźniej to co powiedziałem brzmiało mniej więcej \'Moje ciało dla Kazaula\'. Ulirfendor był bardzo zaniepokojony tym, co to oznacza dla mnie i żałował, że kazał mi powiedzieć te słowa opiekunowi.|||} - {70|Ulirfendor ucieszył się gdy dowiedział, że zabiłem licza. Kiedy licz jest już martwy, ludzie w okolicy powinni być już bezpieczni.|20000|1|} - }|}; -{darkprotector|Mroczny Obrońca|1|{ - {10|Znalazłem dziwnie wyglądający hełm z licza \'Toszylae\' którego pokonałem. Muszę zapytać Ulirfendor czy wie coś więcej.|||} - {15|Ulirfendor myśli że ten artefakt jest tym o czym mówi inskrypcja, i przyniesie nieszczęście wszystkim dookoła ktokolwiek będzie go nosił. Chcę, żebym go natychmiast zniszczył.|||} - {26|Do zniszczenia artefaktu, będe musiał dać hełm i serce licza Ulirfendorowi.|||} - {30|Oddałem hełm Ulirfendorowi.|||} - {31|Oddałem serce licza Ulirfendorowi.|||} - {35|Ulirfendor zniszczył artefakt. Wioski w okolicy powinny być już bezpieczne, przed nieszczęściami jakie ten hełm niósł ze sobą.|||} - {40|Za pomoc z liczem i hełmem, Ulirfendor dał mi mroczne błogosławieństwo cieni.|15000|1|} - {41|Za pomoc z liczem i hełmem, Ulirfendor chciał mi dać mroczne błogosławieństwo cieni, ale odmówiłem.|35000|1|} - {50|Zdecydowałem zatrzymać hełm dla siebie. Kto wie jaką moc moge z niego uzyskać.|||} - {51|Ulirfendor zaatakował mnie za zatrzymanie hełmu.|||} - {55|Znalazłem księge obok Ulirfendora. Księga mówi o rytuale, który pozwala hełmowi uzyskać jego prawdziwą moc. Muszę wykonać rytuał w świątyni jeśli chcę używać hełmu.|||} - {60|Zacząłem rytuał Kazauli.|||} - {65|Umieściłem hełm z na przedzie świątyni.|||} - {66|Umieściłem serce licza na przedzie świątyni.|||} - {70|Rytuał zakończony, przywróciłem dawną moc hełmu.|5000|1|} - }|}; -{maggots|Mam to w sobie|1|{ - {10|Głęboko w jaskini, walczyłem z liczem Kazauli. Jakoś zdołał mnie zainfekować czymś co zaczyna mi pełzać w brzuchu! Muszę znaleźć jakiś sposób na pozbycie się tego czegoś. Muszę porozmawiać z Ulirfendorem, albo poszukać pomocy w którejś ze świątyń na zewnątrz.|||} - {20|Ulirfendor mówił mi, że czytał coś dawno temu o glizdach które żywią się na żywą tkanką. One są jak to nazwał \'niecodziennym\' uczuciem dla tego kto ma go w sobie, jego jaja mogą powoli zabijać osobe od wewnątrz. Muszę znaleźć jak najszybciej pomoc zanim będzie za późno.|||} - {21|Ulirfendor mowił, że jeden z kapłanów cieni powinen być w stanie mi pomóc. Powinienem odwiedzić Taliona w świątyni w Loneford natychmiast.|||} - {30|Talion w Loneford powiedział mi, że aby się wyleczyć z mojej niedoli, Muszę znaleźć cztery części. Tymi częściami są pięć kości, dwie sierści zwierzęce, jeden gruczoł jadowy Irdegh i jedna pusta fiolka. Kości i sierść znajdę w dziczy, gruczoł jadowy powienien być w jednym z Irdeghs, które występują na wschodie.|||} - {40|Przyniosłem pięć kości Talionowi.|||} - {41|Przyniosłem zwierzęcą sierść Talionowi.|||} - {42|Przyniosłem gruczoł jadowy Talionowi.|||} - {43|Przyniosłem pustą fiolkę Talionowi.|||} - {45|Przyniosłem już wszystkie potrzebne części Talionowi potrzebne do antidotum.|||} - {50|Talion uleczył mnie z tej glizdy Kazaula. Udało mi się go złapać we fiolkę, Talion mówi, że jest bardzo cenna. Ciekawe po co to komu.|30000||} - {51|Ze względu na moją wcześniejszą przypadłość, Talion zgodził się udzielić mi błogosławieństwa cieni, gdy tylko będe chciał oczywiście za opłatą.||1|} - }|}; -{sisterfight|Różnica zdań|1|{ - {10|Słyszałem historię o pewnych kłócących się siostrach w Remgard, Elwel i Elwyl. Najwyraźniej budzą wszystkich w nocy, gdy się na siebie drą. Powinienem odwiedzić ich dom na południowym brzegu miasta Remgard.|||} - {20|Rozmawiałem z Elwylją, jedną z sióstr w Remgard. Jest wściekła na swoją siostrę za zaprzeczaniu nawet najbardziej oczywistym faktom. Wygląda na to, że ich kłótnie trwać mogły nawet parę lat.|||} - {21|Elwel się do mnie nie odzywa.|||} - {30|Nie zgadzają się w jednej sprawie, co do koloru pewnego eliksiru, który Hjaldar zazwyczaj wytwarza. Elwyl twierdzi, że eliksir do poprawy celności, który tworzy Hjaldar jest niebieski, a według Elwel jest to zielona substancja.|||} - {31|Elwyl wants me to get a potion of accuracy focus from Hjaldar here in Remgard so that she can finally prove to Elwel that she is wrong.|||} - {40|Rozmawiałem z Hjaldarem w Remgard. Hjaldar nie tworzy już eliksirów od kiedy zapasy ekstraktu szpiku Lysona się skończyły.|||} - {41|Wygląda na to, że stary przyjaciel Hjaldera, Mazeg na pewno ma jakiś szpik na sprzedaż. Niestety, nie bardzo wie gdzie Mazeg aktualnie mieszka. Wie tylko, że Mazego podróżował daleko na zachód, kiedy się ostatni raz widzieli.|||} - {45|Muszę znaleźć Mazega i zdobyć trochę szpiku Lysona, żeby Hjaldar znów mógł tworzyć eliksiry.|||} - {50|Rozmawiałem z Mazegiem w Blackwater. Odkąd pomogłem ludziom z tej osady, będzie rad sprzedać mi szpik po promocyjnej cenie 400 złota.|||} - {51|Rozmawiałem z Mazegiem w Blackwater. będzie rad sprzedać mi szpik w cenie 800 złota.|||} - {55|Kupiłem szpik od Mazega. Powinienem wrócić i dać szpik Hjaldarowi.|||} - {60|Hjaldar był wdzięczny za przyniesienie szpiku.|15000||} - {61|Hjaldar znów może tworzyć eliksiry, i będzie chciał się z nimi podzielić odpłatnie. Podarował mi nawet parę z jego pierwszych eliksirów. Powinienem odwiedzić siostry Elwille w Remgard, i pokazać im eliksir celności.|||} - {70|Dałem eliksir celności Elwyl.|||} - {71|Niestety, nie pomogło to w zakończeniu ich kłótni. Przeciwinie są teraz na siebie jeszcze bardziej wściekłe , od kiedy się wydało, że obie były w błędzie.|9000|1|} - }|}; - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{remgard|Wszystko w porządku|1|{ - {10|Dotarłem do miasta Remgard. Według tego co mówił strażnik mostu, miasto jest zamknięte dla przyjezdnych i nikt nie może go opuścić. Prowadzą śledztwo w sprawie zaginionych ludzi z miasta.|||} - {15|Zaoferowałem swoją pomoc ludziom z Remgard w śledztwie i w rozwikłaniu zagadki co sie stało z tymi ludźmi.|||} - {20|Strażnik na moście poprosił mnie o zbadanie opuszczonego domu na wschód wzdłuż północnego brzegu jeziora. Powinienem uważać na nieproszonych gości, których mogę tam spotkać.|||} - {30|Zdałem raport strażnikowi mostu, że poznałem Algangrora w opuszczonym domu.|3000||} - {31|Zdałem raport strażnikowi mostu, że nikogo nie było w opuszczonym domu.|3000||} - {35|Pozwolono mi wejść do Remgard. Muszę spotkać się z Jhaeldem, ze starszym miasta, aby porozmawiać o naszym kolejnym kroku. Jhaeld możliwe, że będzie w tawernie na południowym-wschodzie.|||} - {40|Jhaeld był dość arogancki, ale powiedział, że od jakiegoś czasu mają ten problem ze znikającymi ludźmi. Nie mają zielonego pojęcia kto lub co za tym stoi.|||} - {50|Muszę porozmawiać z mieszkańcami Remgard, żeby zapytać czy są może jakieś wskazówki na to dlaczego znikają ludzie.|||} - {51|Pierwszym będzie Norath, którego żona Bethir zniknęła. Norath mieszka na farmie na południowym-zachodzie.|||} - {52|Drugimi, z którymi muszę porozmawiać będą rycerze Elythom w miejscowej tawernie.|||} - {53|Trzecią, będzie starsza kobieta Duaina w swoim domu na południu.|||} - {54|Ostatnim, będzie Rothses, płatnerz. Mieszka na zachodzniej części miasta.|||} - {59|Próbowałem powiedzieć Jhaeldowi o Algangror, ale udawał, że mnie nie słyszy.|||} - {61|Rozmawiałem z Norath. On i jego żona się ostatnio pobili, ale on nie ma pojęcia gdzie ona się podziała.|||} - {62|Rycerzom Elythoma w tawernie Remgard ostatnio zaginęła jedna osoba. Nikt nic nie zauważył.|||} - {63|Duaina widziała mnie w swoich wizjach. Nie zrozumiałem wszystkiego co mówiła, ale niektóre zdania były jasne ja i Andor jesteśmy częścią czegoś większego. Ciekawe co to znaczy? Nic nie wspomniała jednak o znikających ludziach, nic przynajmniej tak nie brzmiało.|||} - {64|Rothses powiedział mi, że Bethir odwiedziła go zeszłej nocy, gdy zaginęła, żeby sprzedać mu ekwipunek. Od tamtej pory już jej nie widział.|||} - {70|Rozmawiałem już ze wszystkimi ludźmi z którymi chciał Jhaeld, ale niczego się od nich konkretnego nie dowiedziałem. Powinienem wrócić do Jhaeld i zapytać co planuje dalej.|||} - {75|Jhaeld był wyraźnie zdenerwowany tym, że nie udało mi się dowiedzieć czegokolwiek od tych ludzi.|15000||} - {80|Jeśli nadal chcę pomóc Jhaeld i mieszkańcom Remgard, powininem poszukać wskasówek gdzieś indziej.||1|} - {110|Jhaeld nie chce ze mną rozmawiać. Nie pomogę mu dowiedzieć się co się dzieje z zaginionymi ludzi w Remgard.||1|} - }|}; -{remgard2|Co tak cuchnie?|1|{ - {10|Powiedziałem Jhaeld, starszemu miasteczka Remgard, o kobiecie Algangror, która żyje w opuszczonym domu na wschodzie przy północnym brzegu Remgard.|||} - {20|Jhaeld powiedział, że nie chce z nią mieć nic wspólnego, myśli, że jest niebezpieczna. W obawie o bezpieczeństwo strażników, nie zwróci się przeciw niej, boi się o to co może się stać im wszystkim.|||} - {21|Jeśli chcę pomóc Jhaeld i mieszkańcom Remgard, Muszę znaleźć sposób, aby Algangror zniknęła. Uprzedził mnie, żebym był niezwykle ostrożny.|||} - {30|Algangror przyznała się, że porwała paru mieszkańców Remgard. Jednak nie powie mi co się z nimi stało.|||} - {35|Zaatakowałem Algangror. Powinienem wrócić do Jhaeld z dowodem na to że pokonałem Algangrorę.|||} - {40|Powiedziałem Jhaeldowi, że zabiłem Algangrorę.|||} - {41|Jhaeld ucieszył się słysząc dobre wieści. Mieszkańcy Remgard powinni być teraz bezpieczni, a miasto znów zostanie otwarte dla przybyszów.|||} - {45|Za pomoc mieszkańcom Remgard w znalezieniu przyczyny znikania ludzi, Jhaeld powiedział, żebym porozmawiał z Rothses. Może będzie w stanie zaoferować lepszy ekwipunek.|21000|1|} - {46|Ervelyn, Remgardzki krawiec, dał mi kapelusz z piórem jako nagrode za uratowanie mieszkańców Remgard przed zaginięciami.|||} - }|}; -{fiveidols|Pięciu idoli|1|{ - {10|Algangror chcę, abym pomógł jej w pewnym zadaniu. Nie chciała jednak za dużo powiedzieć i dlaczego chce to zrobić. Jeśli jej pomogę, obiecała mi dać swój zaklęty naszyjnik po wykonaniu zadania, który pewnie jest sporo wart.|||} - {20|Zgodziłem się pomóc Algangrori w jej zadaniu.|||} - {30|Algangror chcę, żebym rozstawił pięć idoli koło pięciu różnych ludzi Remgard. Idole powinny być rozstawione przy łóżkach tak, aby nie było łatwo ich znaleźć.|||} - {31|Pierwszą osobą jest Jhaeld, można go znaleźć w tawernie w Remgard.|||} - {32|Drugą osobą, jest Larni farmer, żyje w północnej chacie w Remgard.|||} - {33|Trzecią osobą jest Arnal kowal, żyje w północno-zachodnim Remgard.|||} - {34|Czwartą jest Emerei, można go spotkać w południoo-wschodnim Remgard.|||} - {35|Piątą osobą jest Carthe. Carthe jest na wschodnim wybrzeżu Remgard, koło tawerny.|||} - {37|Nie mogę powiedzieć nikomu o moim zadaniu, albo miejscu ułożenia idoli.|||} - {41|Podłożyłem idola obok łóżka Jhaelda.|||} - {42|Podłożyłem idola obok łóżka Larni.|||} - {43|Podłożyłem idola obok łóżka Arnal.|||} - {44|Podłożyłem idola obok łóżka Emerei.|||} - {45|Podłożyłem idola obok łóżka Carthe.|||} - {50|Wszystkie idole pochowane u ludzi, których kazała mi odwiedzić Algangrora. Powinienem wrócić do Algangror.|||} - {51|Algangror thanked me for helping her.|||} - {60|Opowiedziała mi jak było za czasów gdy mieszkała w miasteczku, ale była prześladowana za swoje przekonania. Według niej zupełnie niesprawiedliwie, bo nic im nie zrobiła.|||} - {61|Żeby się zemścić na mieszkańcach Remgard, zwabiła paru ludzi do chaty i zmieniła je w szczury.|||} - {70|Za pomoc w zadaniu, którego sama by nie mogła wykonać, Algangror dała mi zaklęty naszyjnik, \'Marrowtaint\'.|21000|1|} - {100|Zdecydowałem się jej nie pomagać.||1|} - }|}; -{kaverin|Starzy znajomi?|1|{ - {10|Spotkałem Kaverin w Remgard, najwyraźniej starego znajomego Unzela, który żyje w okolicach Fallhaven.|||} - {20|Kaverin chce, żebym dostarczył wiadomość do Unzela.|||} - {21|Odmówiłem Kaverinowi.||1|} - {22|Zgodziłem się dostarczyć wiadomość.|||} - {25|Kaverin dał mi list, który muszę dostarczyć Unzelowi.|||} - {30|Dostarczyłem wiadomość do Unzela. Powinienem wrócić do Kaverin w Remgard.|||} - {40|Kaverin był wdzięczny za transport.|10000||} - {45|W zamian, Kaverin dał mi starą mapę. Najwidoczniej prowadzi ona do kryjówki Vacora.|||} - {60|Kaverin był wściekły faktem że zabiłem Unzela, a pomogłem Vacorowi. Zaatakował mnie. Powinienem wrócić do Vacora, kiedy zabije Kaverina.|||} - {70|Kaverin miał przy sobie zapieczętowaną wiadomość. Vacor natychmiast rozpoznał pieczęć i bardzo się nią zainteresował.|||} - {75|Oddałem Vacorowi wiadomość Kaverina. W zamian, Vacor dał mi starą mapę do jego kryjówki.|10000||} - {90|Powinienem znaleźć kryjówkę Vacora, na drodze na zachód od byłego więzienia Flagstone, południowy zachód Fallhaven.|||} - {100|Znalazłem kryjówkę Vacora.||1|} - }|}; - - - diff --git a/AndorsTrail/res/values-pt-rBR/content_actorconditions.xml b/AndorsTrail/res/values-pt-rBR/content_actorconditions.xml deleted file mode 100644 index c78d0c5c4..000000000 --- a/AndorsTrail/res/values-pt-rBR/content_actorconditions.xml +++ /dev/null @@ -1,51 +0,0 @@ - - - - -[id|name|iconID|category|isStacking|isPositive|hasRoundEffect|round_visualEffectID|round_boostHP_Min|round_boostHP_Max|round_boostAP_Min|round_boostAP_Max|hasFullRoundEffect|fullround_visualEffectID|fullround_boostHP_Min|fullround_boostHP_Max|fullround_boostAP_Min|fullround_boostAP_Max|hasAbilityEffect|boostMaxHP|boostMaxAP|moveCostPenalty|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|]; -{bless|Benção|actorconditions_1:41|0||1|||||||||||||1|||||5|||||||}; -{poison_weak|Veneno Fraco|actorconditions_1:60|3|||1|2|-1|-1|||||||||||||||||||||}; -{str|Força|actorconditions_1:70|2||1|||||||||||||1||||||||2|2|||}; -{regen|Regeneração da Sombra|actorconditions_1:35|0||1|1|1|1|1|||||||||0||||||||||||}; - - - -[id|name|iconID|category|isStacking|isPositive|hasRoundEffect|round_visualEffectID|round_boostHP_Min|round_boostHP_Max|round_boostAP_Min|round_boostAP_Max|hasFullRoundEffect|fullround_visualEffectID|fullround_boostHP_Min|fullround_boostHP_Max|fullround_boostAP_Min|fullround_boostAP_Max|hasAbilityEffect|boostMaxHP|boostMaxAP|moveCostPenalty|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|]; -{speed_minor|Velocidade menor|actorconditions_1:87|2||1|||||||||||||1||2||||||||||}; -{fatigue_minor|Fadiga menor|actorconditions_1:14|2|||0||||||0||||||1|||2|2||||-1|-1|||}; -{feebleness_minor|Fraqueza de arma menor|actorconditions_1:74|1|||||||||||||||1||||||||-3|-3|||}; -{bleeding_wound|Ferida sangrando|actorconditions_2:0|3|1||1|0|-1|-1|||||||||||||||||||||}; -{rage_minor|Fúria menor|actorconditions_1:90|1||1|0|-1|||||||||||1|35||||60|||||-90|-1|}; -{blackwater_misery|Tormento das Águas Negras|actorconditions_1:58|3|||||||||||||||1||||1|-50|-50||||||}; -{intoxicated|Intoxicado|actorconditions_2:1|1||1|||||||||||||1|15|||1|-30|||4|4|||}; -{dazed|Atordoado|actorconditions_1:65|1|||||||||||||||1||||||||||-40||}; - - - -[id|name|iconID|category|isStacking|isPositive|hasRoundEffect|round_visualEffectID|round_boostHP_Min|round_boostHP_Max|round_boostAP_Min|round_boostAP_Max|hasFullRoundEffect|fullround_visualEffectID|fullround_boostHP_Min|fullround_boostHP_Max|fullround_boostAP_Min|fullround_boostAP_Max|hasAbilityEffect|boostMaxHP|boostMaxAP|moveCostPenalty|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|]; -{chaotic_grip|Aperto caótico|actorconditions_1:96|1|||0||||||||||||1||||||||||-10|-1|}; -{chaotic_curse|Maldição caótica|actorconditions_1:89|1|||0||||||||||||1||-1||||||-1|-1|-10|-1|}; - - - -[id|name|iconID|category|isStacking|isPositive|hasRoundEffect|round_visualEffectID|round_boostHP_Min|round_boostHP_Max|round_boostAP_Min|round_boostAP_Max|hasFullRoundEffect|fullround_visualEffectID|fullround_boostHP_Min|fullround_boostHP_Max|fullround_boostAP_Min|fullround_boostAP_Max|hasAbilityEffect|boostMaxHP|boostMaxAP|moveCostPenalty|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|]; -{contagion|Contágio por Insetos|actorconditions_1:58|3|||0|2|||||||||||1|||||-10|||-1|-1|||}; -{blister|Febril|actorconditions_1:15|3|||1|0|-1|-1|||||||||||||||||||||}; -{stunned|Assustado|actorconditions_1:95|2|||||||||||||||1||-2|8|5||||||||}; -{focus_dmg|Dano na precisão|actorconditions_1:70|1||1|||||||||||||1||||1||||3|3|||}; -{focus_ac|Precisão|actorconditions_1:98|1||1|||||||||||||1||||1|40|||||||}; -{poison_irdegh|Veneno Irdegh|actorconditions_1:60|3|1||1|2|-1|-1|||||||||||||||||||||}; - - - -[id|name|iconID|category|isStacking|isPositive|hasRoundEffect|round_visualEffectID|round_boostHP_Min|round_boostHP_Max|round_boostAP_Min|round_boostAP_Max|hasFullRoundEffect|fullround_visualEffectID|fullround_boostHP_Min|fullround_boostHP_Max|fullround_boostAP_Min|fullround_boostAP_Max|hasAbilityEffect|boostMaxHP|boostMaxAP|moveCostPenalty|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|]; -{rotworm|Podridão de Kazaul|actorconditions_1:82|2|||||||||||||||1|-15|-3|||||||||-1|}; -{shadowbless_str|Bênção de força da Sombra|actorconditions_1:70|0||1|||||||||||||1||||||||1|1|||}; -{shadowbless_heal|Bênção de regeneração da Sombra|actorconditions_1:35|0||1|1|1|1|1|||||||||||||||||||||}; -{shadowbless_acc|Bênção de precisão da Sombra|actorconditions_1:98|0||1|||||||||||||1|||||30|||||||}; -{shadowbless_guard|Bênção de proteção da Sombra|actorconditions_1:91|0||1|||||||||||||1|30||||||||||1|}; -{crit1|Hemorragia interna|actorconditions_1:89|2|1||||||||||||||1||||1|-50|||-3|-3|||}; -{crit2|Fratura|actorconditions_1:89|2|1||||||||||||||1||||||||||-50|-2|}; -{concussion|Contusão|actorconditions_1:80|2|1||||||||||||||1|||||-30|||||||}; - - diff --git a/AndorsTrail/res/values-pt-rBR/content_conversationlist.xml b/AndorsTrail/res/values-pt-rBR/content_conversationlist.xml deleted file mode 100644 index bd36a56ae..000000000 --- a/AndorsTrail/res/values-pt-rBR/content_conversationlist.xml +++ /dev/null @@ -1,5147 +0,0 @@ - - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{mikhail_start_select|||{{|mikhail_start_select2|mikhail_bread:100||||}{|mikhail_bread_continue|mikhail_bread:10||||}{|mikhail_start_select2|||||}}|}; -{mikhail_start_select2|||{{|mikhail_start_select_default|mikhail_rats:100||||}{|mikhail_rats_continue|mikhail_rats:10||||}{|mikhail_start_select_default|||||}}|}; -{mikhail_start_select_default|||{{|mikhail_visited|andor:1||||}{|mikhail_gamestart|||||}}|}; -{mikhail_gamestart|Oh que bom, você acordou.||{{N|mikhail_visited|||||}}|}; -{mikhail_visited|Não consigo encontrar seu irmão Andor em lugar algum. Ele não voltou desde ontem.|{{0|andor|1|}}|{{N|mikhail3|||||}}|}; -{mikhail3|Não ligue. Ele provavelmente voltará logo.||{{N|mikhail_default|||||}}|}; -{mikhail_default|Posso ajudar você com alguma coisa?||{{Você tem algumas tarefas para mim?|mikhail_tasks|||||}{Existe algo mais que você possa me dizer sobre Andor?|mikhail_andor1|||||}}|}; -{mikhail_tasks|Oh sim, preciso de pão e é necessário exterminar ratazanas. Qual dessas tarefas você quer falar primeiro?\n||{{Você disse que quer pão?|mikhail_bread_select|||||}{Qual o problema com as ratazanas?|mikhail_rats_select|||||}{Não importa. Vamos falar sobre outras coisas.|mikhail_default|||||}}|}; -{mikhail_andor1|Como disse, Andor saiu ontem e ainda não retornou. Estou começando a ficar preocupado com ele.\nPor favor, procure seu irmão: ele disse que não demoraria a retornar.||{{N|mikhail_andor2|||||}}|}; -{mikhail_andor2|Talvez ele tenha ido na caverna de suprimentos e ficou enrolado por lá. Ou talvez ele esteja no porão da Leta, treinando com aquela espada de madeira de novo. Por favor, procure por ele na cidade.||{{N|mikhail_default|||||}}|}; -{mikhail_bread_select|||{{|mikhail_bread_complete2|mikhail_bread:100||||}{|mikhail_bread_continue|mikhail_bread:10||||}{|mikhail_bread_start|||||}}|}; -{mikhail_bread_start|Ah, quase esqueci. Se você tiver algum tempo, por favor vá até a Mara, na prefeitura da cidade, e compre-me pão.|{{0|mikhail_bread|10|}}|{{N|mikhail_default|||||}}|}; -{mikhail_bread_continue|Você já trouxe-me o pão fornecido pela Mara?\n||{{Sim, aqui está.|mikhail_bread_complete||bread|1|0|}{Ainda não.|mikhail_default|||||}}|}; -{mikhail_bread_complete|Muito obrigado! Já posso fazer meu café da manhã. Fique com essas moedas pelo seu auxílio.|{{0|mikhail_bread|100|}{1|gold20||}}|{{N|mikhail_default|||||}}|}; -{mikhail_bread_complete2|Obrigado pelo pão que você me trouxe.||{{De nada.|mikhail_default|||||}}|}; -{mikhail_rats_select|||{{|mikhail_rats_complete2|mikhail_rats:100||||}{|mikhail_rats_continue|mikhail_rats:10||||}{|mikhail_rats_start|||||}}|}; -{mikhail_rats_start|Vi algumas ratazanas nos fundos do nosso jardim mais cedo. Você poderia matar quaisquer ratazanas que veja por lá.|{{0|mikhail_rats|10|}}|{{Já exterminei as ratazanas.\n|mikhail_rats_complete||tail_trainingrat|2|0|}{Ok, vou checar isto no nosso jardim.|mikhail_rats_start2|||||}}|}; -{mikhail_rats_start2|Se você se ferir, use a cama para descansar e \nrecuperar a sua saúde.||{{N|mikhail_rats_start3|||||}}|}; -{mikhail_rats_start3|Ah, não se esqueça de checar seu inventário. Você provavelmente ainda possui aquele anel velho que lhe dei. Tenha certeza de usá-lo.||{{Entendido: se me ferir, posso descansar aqui na cama; devo checar meu inventário por itens úteis.|mikhail_default|||||}}|}; -{mikhail_rats_continue|Você matou aquelas duas ratazanas no nosso jardim?||{{Sim, eu matei as ratazanas.\n|mikhail_rats_complete||tail_trainingrat|2|0|}{Ainda não.|mikhail_rats_start2|||||}}|}; -{mikhail_rats_complete|Oh, você as matou? Wow, muito obrigado pela sua ajuda!\n\nSe você se feriu, use a cama para descansar e \nrecuperar a sua saúde.|{{0|mikhail_rats|100|}}|{{N|mikhail_default|||||}}|}; -{mikhail_rats_complete2|Obrigado pela ajuda que você fez com as ratazanas.\n\nSe você se feriu, use a cama para descansar e recuperar a sua saúde.||{{N|mikhail_default|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{leta1|Ei, esta é a minha casa, saia daqui!||{{Mas eu estava apenas ...|leta2|||||}{É sobre o seu marido Oromir.|leta_oromir_select|||||}}|}; -{leta2|Basta criança, saia da minha casa!||{{É sobre o seu marido Oromir.|leta_oromir_select|||||}}|}; -{leta_oromir_select|||{{|leta_oromir_complete2|leta:100||||}{|leta_oromir1|||||}}|}; -{leta_oromir1|Você sabe alguma coisa sobre o meu marido? Ele deveria estar aqui me ajudando na fazenda hoje, mas ele parece estar ausente, como sempre\nSigh.||{{Eu não tenho ideia.|leta_oromir2|||||}{Sim, eu o encontrei. Ele está escondido entre algumas árvores a leste.|leta_oromir_complete|leta:20||||}}|}; -{leta_oromir2|Se você o vir, diga-lhe para retornar correndo e me ajudar com as tarefas domésticas. Agora, saia daqui!|{{0|leta|10|}}||}; -{leta_oromir_complete|Ele está se escondendo? Isso não me surpreende. Vou mostrar a ele quem é o chefe por aqui!\nObrigado por avisar-me.|{{0|leta|100|}}||}; -{leta_oromir_complete2|Obrigado por me contar sobre Oromir mais cedo. Eu vou em breve ao encontro dele.|||}; -{oromir1|Oh, você assustou-me.\nOi.||{{Oi|oromir2|||||}}|}; -{oromir2|Estou escondido aqui da minha esposa Leta. Ela está sempre com raiva de mim por não ajudá-la na fazenda. Por favor, não diga a ela que eu estou aqui.|{{0|leta|20|}}|{{Certo.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{audir1|Bem-vindo à minha loja!\n\nSinta-se à vontade para consultar minha seleção de artigos finos.||{{Por favor, mostre-me os seus produtos.|S|||||}}|}; -{arambold1|Oh meu, eu nunca conseguirei dormir com os bêbados cantando assim...\n\nAlguém deveria fazer algo a respeito.||{{Posso descansar aqui?|arambold2|||||}{Você tem alguma coisa para vender?|S|||||}}|}; -{arambold2|Claro, garoto! Você pode descansar aqui.\n\nUse qualquer cama que você quiser.||{{Obrigado, adeus.|X|||||}}|}; -{drunk1|Beber, beber, beber um pouco mais\nBeber, beber, beber até cair no chão\n\nEi garoto, gostaria de se juntar a nós no nosso jogo de beber?||{{Não, obrigado.|X|||||}{Talvez algum outro momento.|X|||||}}|}; -{mara_default|Não ligue para esses bêbados, eles estão sempre causando confusões\n\nQuer algo para comer?||{{Você tem alguma coisa para vender?|S|||||}}|}; -{mara1|||{{|mara_thanks|odair:100||||}{|mara_default|||||}}|}; -{mara_thanks|Eu ouvi dizer que você ajudou Odair a limpar a antiga caverna de abastecimento. Muito obrigado, vamos começar a usá-la em breve.||{{O prazer foi meu.|mara_default|||||}}|}; -{farm1|Por favor, não me perturbe que tenho trabalho a fazer.||{{Você viu meu irmão Andor?|farm_andor|||||}}|}; -{farm2|O quê? Você não vê que estou ocupado? Vá incomodar outra pessoa.||{{Você viu meu irmão Andor?|farm_andor|||||}}|}; -{farm_andor|Andor? Não, eu não o vi ultimamente.|||}; -{snakemaster|Bem, bem, o que temos aqui? Um visitante, que bom. Estou impressionado que você chegou até aqui apesar de todas essas bestas.\n\nAgora, prepare-se para morrer, criatura insignificante.||{{Ótimo, eu estava esperando uma luta!|F|||||}{Vamos ver quem morre aqui.|F|||||}{Por favor, não me machuque!|F|||||}}|}; -{haunt|Oh mortal, livre-me deste mundo amaldiçoado!||{{Ah, pode deixar! Eu vou te libertar de tudo.|F|||||}{Você quer dizer, matando você?|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{tharal1|Caminhe no brilho da Sombra, meu filho.||{{Você tem alguma coisa para vender?|S|||||}{O que você pode me dizer sobre farinha de ossos?|tharal_bonemeal_select|bonemeal:10||||}}|}; -{tharal_bonemeal_select|||{{|tharal_bonemeal4|bonemeal:30||||}{|tharal_bonemeal1|||||}}|}; -{tharal_bonemeal1|Farinha de ossos? Não devemos falar sobre isso. O Lorde Geomyr emitiu um decreto proibindo seu uso.||{{Por favor?|tharal_bonemeal2_1|||||}}|}; -{tharal_bonemeal2_1|Não, nós realmente não deveríamos falar sobre isso.||{{Ah, vamos lá!|tharal_bonemeal2|||||}}|}; -{tharal_bonemeal2|Bem, você realmente é que persistente. Traga-me cinco asas de insetos que possam ser usados ​​para fazer poções e talvez possamos conversar mais.|{{0|bonemeal|20|}}|{{Aqui, eu tenho as asas dos insetos.|tharal_bonemeal3||insectwing|5|0|}{Ok, eu vou trazê-los.|X|||||}}|}; -{tharal_bonemeal3|Obrigado, garoto. Eu sabia que podia contar com você.|{{0|bonemeal|30|}}|{{N|tharal_bonemeal4|||||}}|}; -{tharal_bonemeal4|Ah, sim, farinha de ossos. Misturada com os componentes corretos, pode ser um dos agentes de cura mais eficazes.||{{N|tharal_bonemeal5|||||}}|}; -{tharal_bonemeal5|No passado, costumávamos usar bastante. Mas agora que bastardo Lorde Geomyr proibiu todo o uso disso.||{{N|tharal_bonemeal6|||||}}|}; -{tharal_bonemeal6|Como é que eu vou curar as pessoas agora? Usando poções regulares de cura? Bah, elas são tão ineficazes.||{{N|tharal_bonemeal7|||||}}|}; -{tharal_bonemeal7|Eu conheço alguém que ainda tem um suprimento de farinha de ossos, se você estiver interessado. Vá falar com Thoronir, um amigo sacerdote em Fallhaven. Diga a ele a senha \'Brilho da Sombra\'.||{{Obrigado, adeus.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{gruil1|Psst, hei.\n\nQuer vender algo?||{{Claro, vamos vender.|S|||||}{Eu ouvi dizer que você falou com meu irmão há um tempo atrás.|gruil_select|andor:10||||}}|}; -{gruil_select|||{{|gruil_return|andor:30||||}{|gruil2|||||}}|}; -{gruil2|Seu irmão? Oh, você quer dizer Andor? Eu poderia saber algo, mas que a informação vai custar caro. Traga-me uma glândula de veneno de uma dessas cobras venenosas e talvez eu possa lhe contar.|{{0|andor|20|}}|{{Aqui, eu tenho uma glândula de veneno para você.|gruil_complete||gland|1|0|}{Ok, eu vou trazer.|X|||||}}|}; -{gruil_complete|Muito obrigado, garoto. Isso vai servir.|{{0|andor|30|}}|{{N|gruil_andor1|||||}}|}; -{gruil_return|Olhe garoto, eu já lhe disse.||{{N|gruil_andor1|||||}}|}; -{gruil_andor1|Eu falei com ele ontem. Ele perguntou se eu conhecia alguém chamado Umar ou algo parecido. Eu não tenho nenhuma ideia de quem ele estava falando.||{{N|gruil_andor2|||||}}|}; -{gruil_andor2|Ele parecia realmente chateado com alguma coisa e saiu com pressa. Algo sobre a Corja dos Ladrões em Fallhaven.||{{N|gruil_andor3|||||}}|}; -{gruil_andor3|Isso é tudo que eu sei. Talvez você devesse perguntar ao redor em Fallhaven. Procure meu amigo, Gaela. Ele provavelmente saberá algo mais.||{{Obrigado, adeus.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{leonid1|Olá garoto. Você é filho de Mikhail não é você? Um dos nossos irmãos.\n\n Eu sou Leonid, taifeiro de Crossglen.||{{Você viu meu irmão Andor?|leonid_andor|||||}{O que você pode me dizer sobre Crossglen?|leonid_crossglen|||||}{Não importa. Vejo você mais tarde|leonid_bye|||||}}|}; -{leonid_andor|Seu irmão? Não, eu não vi ele aqui hoje. Eu acho que eu vi aqui ontem conversando com Gruil. Talvez ele saiba mais.|{{0|andor|10|}}|{{Obrigado, eu vou falar com Gruil. Há algo mais que eu quero lhe falar.|leonid_continue|||||}{Obrigado, eu vou falar com Gruil.|leonid_bye|||||}}|}; -{leonid_continue|Algo mais?||{{Você viu meu irmão Andor?|leonid_andor|||||}{O que você pode me dizer sobre Crossglen?|leonid_crossglen|||||}{Não importa. Até mais tarde.|leonid_bye|||||}}|}; -{leonid_crossglen|Como você sabe, este é a aldeia de Crossglen. Principalmente uma comunidade agrícola.||{{N|leonid_crossglen1|||||}}|}; -{leonid_crossglen1|Temos Audir com sua forja a sudoeste; A casa de Leta e seu marido para ao oeste, esta prefeitura e a casa de seu pai ao noroeste.||{{N|leonid_crossglen2|||||}}|}; -{leonid_crossglen2|Aqué é muito bonito. Tentamos viver uma vida pacífica.||{{Houve alguma atividade recente na aldeia?|leonid_crossglen3|||||}{Vamos retornar a outros assuntos que já falamos.|leonid_continue|||||}}|}; -{leonid_crossglen3|Houve algumas perturbações recentes, algumas semanas atrás, que você pode ter notado. Alguns moradores entraram em uma briga sobre o novo decreto do Lorde Geomyr.||{{N|leonid_crossglen4|||||}}|}; -{leonid_crossglen4|Lorde Geomyr emitiu um decreto sobre o uso ilegal de farinha de ossos como substância de cura. Alguns moradores alegaram que devemos opor às ordens de Lorde Geomyr e ainda usá-lo.|{{0|bonemeal|10|}}|{{N|leonid_crossglen4_1|||||}}|}; -{leonid_crossglen4_1|Tharal, nosso sacerdote, ficou particularmente chateado e sugeriu fazer algo sobre o decreto do Lorde Geomyr.||{{N|leonid_crossglen5|||||}}|}; -{leonid_crossglen5|Outros habitantes da aldeia argumentaram que deveríamos seguir o decreto do Lorde Geomyr.\n\nPessoamente, ainda não me decidi.||{{N|leonid_crossglen6|||||}}|}; -{leonid_crossglen6|Por um lado, Lorde Geomyr apoia Crossglen com a sua proteção. *Aponta para os soldados no salão*||{{N|leonid_crossglen7|||||}}|}; -{leonid_crossglen7|Mas, por outro lado, o imposto e as mudanças recentes do que é permitido estão realmente impondo um fardo em Crossglen.||{{N|leonid_crossglen8|||||}}|}; -{leonid_crossglen8|Alguém deve ir ao Castelo de Geomyr e falar com o taifeiro sobre a nossa situação aqui em Crossglen.|{{0|crossglen|1|}}|{{N|leonid_crossglen9|||||}}|}; -{leonid_crossglen9|Enquanto isso, está proibido todo uso de farinha de ossos como substância de cura.||{{Obrigado pela informação. Há mais uma coisa que eu quero perguntar a você.|leonid_continue|||||}{Obrigado pela informação. Tchau.|leonid_bye|||||}}|}; -{leonid_bye|A Sombra esteja com você.||{{A Sombra esteja com você.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{odair1|Ah, é você. Você é como seu irmão. Sempre causando problemas.||{{N|odair_select|||||}}|}; -{odair_select|||{{|odair_complete2|odair:100||||}{|odair_continue|odair:10||||}{|odair2|||||}}|}; -{odair2|Hmm, talvez você possa ser útil para mim. Você acha que você poderia me ajudar com uma pequena tarefa?||{{Conte-me mais sobre esta tarefa.|odair3|||||}{Claro, se existe algo que eu possa ganhar com isso.|odair3|||||}}|}; -{odair3|Recentemente, eu fui para a caverna lá *apontando para o oeste*, para verificar nossos suprimentos. Mas, aparentemente, a caverna foi infestada por ratazanas.||{{N|odair4|||||}}|}; -{odair4|Em particular, eu vi uma ratazana que era maior do que as outras. Você acha tem o que é preciso para ajudar a eliminá-los?||{{Claro, eu vou ajudá-lo para que Crossglen pode usar a caverna de suprimentos novamente.|odair5|||||}{Claro, eu vou ajudá-lo. Mas só porque pode haver algum ganho para mim nesta tarefa.|odair5|||||}{Não, obrigado.|odair_cowards|||||}}|}; -{odair5|Eu preciso de você para entrar nessa caverna e matar a ratazana gigante. Dessa forma, talvez possamos parar com a infestação de ratos na caverna e começar a usá-la como nossa boa e velha caverna de suprimentos novamente.|{{0|odair|10|}}|{{Certo.|X|||||}{Pensando bem, eu acho que não vou ajudá-lo apesar de tudo.|odair_cowards|||||}}|}; -{odair_cowards|Bem que eu achava que você não o faria. Você e seu irmão sempre foram covardes.||{{Tchau.|X|||||}}|}; -{odair_continue|Você matou aquela ratazana gigante da caverna ao oeste daqui?||{{Sim, eu matei a ratazana gigante.|odair_complete||tail_caverat|1|0|}{Pode repetir o que preciso fazer?|odair5|||||}{Não, ainda não.|odair_cowards|||||}}|}; -{odair_complete|Muito obrigado pela ajuda garoto! Talvez você e que teu irmão não sejão tão covardes como eu pensava. Aqui, tome estas moedas por sua ajuda.|{{0|odair|100|}{1|gold20||}}|{{Obrigado.|X|||||}}|}; -{odair_complete2|Muito obrigado pela sua ajuda anterior. Agora podemos começar a usar a nossa boa e felha caverna de suprimentos novamente.||{{Tchau.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{jan_start_select|||{{|jan_complete2|jan:100||||}{|jan_return|jan:10||||}{|jan_default|||||}}|}; -{jan_default|Olá garoto. Por favor, deixe-me em meu tormento.||{{Qual é o problema?|jan_default2|||||}{Você gostaria de falar sobre isso?|jan_default2|||||}{Ok, tchau.|X|||||}}|}; -{jan_default2|Ah, é muito triste. Eu realmente não quero falar sobre isso.||{{Por favor, faça!|jan_default3|||||}{Ok, tchau!|X|||||}}|}; -{jan_default3|Bem, eu acho que posso lhe dizer. Você parece ser um cara bem legal.||{{N|jan_default4|||||}}|}; -{jan_default4|Meu amigo Gandir, o amigo dele, Irogotu e eu estávamos aqui cavando este buraco. Tínhamos ouvido falar que havia um tesouro escondido por aqui.||{{N|jan_default5|||||}}|}; -{jan_default5|Começamos a cavar e, finalmente, encontramos um sistema de cavernas abaixo, onde descobrimos bichos e insetos.||{{N|jan_default6|||||}}|}; -{jan_default6|Ah esses bichos. Bastardos malditos. Por pouco não me mataram!\n\nGandir e eu dissemos a Irogotu que deveríamos parar a escavação e sair enquanto ainda podemos.||{{N|jan_default7|||||}}|}; -{jan_default7|Mas Irogotu queria continuar se aprofundando no calabouço. Ele e Gandir discutiram e começaram a brigar.||{{N|jan_default8|||||}}|}; -{jan_default8|Foi quando aconteceu\n\n *soluço*\n\nOh, o que fizemos?||{{Por favor, continue.|jan_default9|||||}}|}; -{jan_default9|Irogotu matou Gandir com as próprias mãos. Era possível ver o fogo em seus olhos. Ele quase parecia se divertir.||{{N|jan_default10|||||}}|}; -{jan_default10|Fugi e não ousei voltar lá tanto por causa das criaturas quanto por conta de Irogotu.||{{N|jan_default11|||||}}|}; -{jan_default11|Oh que maldito Irogotu. Se eu pudesse chegar até ele. Eu mostrar-lhe umas coisas.||{{Você acha que eu poderia ajudar?|jan_default11_1|||||}}|}; -{jan_default11_1|Você acha que você poderia me ajudar?||{{Claro, pode haver algum tesouro que eu possa obter.|jan_default12|||||}{Claro. Irogotu deve pagar pelo que fez.|jan_default12|||||}{Não, obrigado, eu prefiro não ser envolvido neste processo. Parece perigoso.|X|||||}}|}; -{jan_default12|Sério? Você acha que poderia ajudar? Hm, talvez você podia. Cuidado com os insetos, porém, eles são realmente bastardos difíceis de lidar.|{{0|jan|10|}}|{{N|jan_default13|||||}}|}; -{jan_default13|Se você realmente quer ajudar, vá encontrar Irogotu embaixo na caverna, e traga-me de volta o anel de Gandir.||{{Claro, eu vou ajudar.|jan_default14|||||}{Você pode me contar a história de novo?|jan_background|||||}{Não Importa. Adeus.|X|||||}}|}; -{jan_default14|Volte para mim quando você terminar. Traga-me o anel de Gandir, que está com Irogotu dentro da caverna.||{{Ok, tchau!|X|||||}}|}; -{jan_return|Olá novamente, garoto. Você encontrou Irogotu dentro da caverna?||{{Não, ainda não.|jan_default14|||||}{Pode contar-me a sua história de novo?|jan_background|||||}{Sim, eu matei Irogotu.|jan_complete||ring_gandir|1|0|}}|}; -{jan_background|Você não prestou atenção na primeira vez que eu contei a história? Eu realmente tenho que lhe contar a história mais uma vez?||{{Sim, por favor, conte-me a história novamente.|jan_default3|||||}{Eu não estava prestando atenção a primeira vez que você disse isso. O que você falou sobre o tesouro?|jan_default4|||||}{Não, não importa. Lembro-me agora.|jan_default14|||||}}|}; -{jan_complete2|Obrigado por lidar com Irogotu mais cedo! Estou eternamente em dívida com você.||{{Tchau.|X|||||}}|}; -{jan_complete|Ei, espere! Você realmente entrou lá e retornou vivo? Como você conseguiu? Wow, Eu quase morri entrando naquela caverna.\n\nOh muito obrigado por trazer-me de volta o anel de Gandir! Agora finalmente vou poder ter algo para lembrar dele.|{{0|jan|100|}}|{{Ainda bem que pude lhe ajudar. Tchau.|X|||||}{A Sombra esteja com você. Tchau.|X|||||}{Não há de que. Eu só fiz isso pelo o saque.|X|||||}}|}; - -{irogotu|Bem, Olá forasteiro. Outro aventureiro vindo para roubar a minha recompensa. Esta é minha caverna. O tesouro será meu!||{{Você matou Gandir?|irogotu1|jan:10||||}}|}; -{irogotu1|Esse tolo do Gandir? Ele estava no meu caminho. Eu simplesmente usei-o como uma ferramenta para cavar mais caverna adentro.||{{N|irogotu2|||||}}|}; -{irogotu2|Além disso, eu nunca gostei dele de qualquer maneira.||{{Eu acho que ele merecia morrer. Será que ele estava com um anel?|irogotu3|||||}{Jan mencionou algo sobre um anel.|irogotu3|||||}}|}; -{irogotu3|NÃO! Você não pode ter isso. É meu! E quem é você? Um garotozinho vindo aqui para me perturbar?!||{{Eu não sou mais uma criança! Agora me dê o anel!|irogotu4|||||}{Dá-me o anel e poderá sair daqui vivo.|irogotu4|||||}}|}; -{irogotu4|Não. Se você quiser, você vai ter que de mim à força, e devo dizer-lhe que os meus poderes são grandes. Além disso, você provavelmente não se atreveria a lutar contra mim, de qualquer forma.||{{Muito bem, vamos ver quem morre aqui.|F|||||}{Pela Sombra, Gandir será vingado!|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fallhaven_citizen1|Olá lá. Bons tempos, não?||{{Você viu meu irmão Andor?|fallhaven_andor_1|||||}}|}; -{fallhaven_citizen2|Olá. O que você quer de mim?||{{Você viu meu irmão Andor?|fallhaven_andor_2|||||}}|}; -{fallhaven_citizen3|Oi. Posso ajudá-lo?||{{Você viu meu irmão Andor?|fallhaven_andor_3|||||}}|}; -{fallhaven_citizen4|Você é aquele garoto da aldeia Crossglen, certo?||{{Você viu meu irmão Andor?|fallhaven_andor_4|||||}}|}; -{fallhaven_citizen5|Fora do caminho, camponês.|||}; -{fallhaven_citizen6|Bom dia para você.||{{Você viu meu irmão Andor?|fallhaven_andor_6|||||}}|}; -{fallhaven_andor_1|Não, sinto muito. Eu não vi ninguém com essa descrição.|||}; -{fallhaven_andor_2|Algum outro garoto? Hum, deixe-me pensar.||{{N|fallhaven_andor_1|||||}}|}; -{fallhaven_andor_3|Hum, eu poderia ter visto alguém corresponde a essa descrição de alguns dias atrás, embora não consiga me lembrar onde.|||}; -{fallhaven_andor_4|Ah, sim, havia um outro garoto da aldeia Crossglen aqui há alguns dias. Não tenho certeza se ele corresponde à sua descrição.||{{N|fallhaven_andor_4_1|||||}}|}; -{fallhaven_andor_4_1|Havia algumas pessoas sombrias o seguindo por aí. Não vi mais do que isso.|||}; -{fallhaven_andor_6|Não. Não o vi.|||}; -{fallhaven_guard|Mantenha fora de problemas.|||}; - -{fallhaven_priest|A Sombra esteja com você.||{{Você pode me dizer mais sobre a Sombra?|priest_shadow_1|||||}}|}; -{priest_shadow_1|A Sombra nos protege. Ela nos mantém seguros e nos conforta quando dormimos.||{{N|priest_shadow_2|||||}}|}; -{priest_shadow_2|Ela nos acompanha onde quer que vamos. Vá com a Sombra, meu filho.||{{A Sombra esteja com você.|X|||||}{Que seja. Tchau.|X|||||}}|}; - -{rigmor|Bem Olá! Você é um garoto bonitinho.||{{Você viu meu irmão Andor?|rigmor_1|||||}{Eu realmente preciso ir.|rigmor_leave_select|||||}}|}; -{rigmor_1|Seu irmão, você diz? Seu nome é Andor? Não. Eu não me lembro de conhecer alguém assim.||{{Eu realmente preciso ir.|rigmor_leave_select|||||}}|}; -{rigmor_leave_select|||{{|rigmor_thanks|calomyran:100||||}{|X|||||}}|}; -{rigmor_thanks|Eu ouvi dizer que você ajudou a encontrar o livro do meu avô, obrigado. Ele havia falado sobre o livro durante semanas. Coitado, ele tende a esquecer as coisas.||{{O prazer foi meu. Tchau.|X|||||}{Você deve manter um olho nele, ou coisas ruins podem acontecer com ele.|X|||||}{Seja como for, eu só fiz isso pelo ouro.|X|||||}}|}; - -{fallhaven_clothes|Bem-vindo à minha loja. Consulte por favor minha seleção de roupas finas e jóias.||{{Deixe-me ver seus produtos.|S|||||}}|}; -{fallhaven_potions|Bem-vindo à minha loja. Consulte por favor minha seleção fina de produtos para o dia a dia.||{{Deixe-me ver que poções que você tem disponíveis.|S|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bucus_welcome|Oi novamente, bem-vindo de volta ao .. Oh, espere, eu pensei que fosse outra pessoa.||{{Você viu meu irmão Andor?|bucus_andor_select|||||}{O que você sabe sobre a Corja dos Ladrões?|bucus_thieves_select|||||}}|}; -{bucus_andor_select|||{{|bucus_umar_1|bucus:100||||}{|bucus_andor_no_1|||||}}|}; -{bucus_andor_no_1|Interessante você deve perguntar. E se eu o tiver visto? Por que eu iria dizer?||{{N|bucus_andor_no_2|||||}}|}; -{bucus_andor_no_2|Não, eu não posso dizer. Agora, saia, por favor.|||}; -{bucus_thieves_select|||{{|bucus_thieves_complete_3|bucus:100||||}{|bucus_thieves_continue|bucus:10||||}{|bucus_thieves_select2|||||}}|}; -{bucus_thieves_select2|||{{|bucus_thieves_1|andor:40||||}{|bucus_thieves_no|||||}}|}; -{bucus_thieves_no|Ham, o que? Não, eu não sei nada sobre isso.|||}; -{bucus_umar_1|Garoto OK. Você provou-se para mim. Sim, eu vi algum outro garoto com essa descrição andando por aqui há alguns dias.||{{N|bucus_umar_2|||||}}|}; -{bucus_umar_2|Eu não sei o que ele estava fazendo, no entanto. Ele ficava fazendo um monte de perguntas. Tipo de como você faz. *riso abafado*||{{N|bucus_umar_3|||||}}|}; -{bucus_umar_3|Enfim, isso é tudo que eu sei. Você deveria ir falar com Umar, ele provavelmente sabe mais. Desca naquele alçapão.|{{0|andor|50|}}|{{Ok, tchau|X|||||}}|}; -{bucus_thieves_1|Quem te disse isso? Argh.\n\nOk, agora você nos achou. E agora?||{{Posso me juntar a Corja dos Ladrões?|bucus_thieves_2|||||}}|}; -{bucus_thieves_2|Hah! Junte-se a Corja dos Ladrões?! Você?!\n\nVocê é um garoto engraçado.||{{Eu estou falando sério.|bucus_thieves_3|||||}{Sim, muito engraçado né?|bucus_thieves_3|||||}}|}; -{bucus_thieves_3|Ok, para com isso, garoto. Faça uma tarefa para mim e talvez eu vou considerar dar-lhe mais informações.||{{Que tipo de tarefa que estamos falando?|bucus_thieves_4|||||}{Se isso leva a um tesouro, eu estou dentro!|bucus_thieves_4|||||}}|}; -{bucus_thieves_4|Traga-me a chave de Luthor e podemos falar mais. Eu não sei nada sobre a chave em si, mas há rumores de que ela está localizada em algum lugar nas catacumbas da Igreja Fallhaven.|{{0|bucus|10|}}|{{Ok, parece fácil.|X|||||}}|}; -{bucus_thieves_continue|Como está a busca para a chave de Luthor?||{{Poderia repetir o que devo fazer?|bucus_thieves_4|||||}{Aqui, eu tenho isso: a chave de Luthor.|bucus_thieves_complete_1||key_luthor|1|0|}{Eu ainda estou procurando isso. Tchau.|X|||||}}|}; -{bucus_thieves_complete_1|Uau, você realmente tem a chave de Luthor? Eu não acreditava que você poderia fazê-lo.|{{0|bucus|100|}}|{{N|bucus_thieves_complete_2|||||}}|}; -{bucus_thieves_complete_2|Bem feito, garoto.||{{N|bucus_thieves_complete_3|||||}}|}; -{bucus_thieves_complete_3|Então, vamos conversar. O que você quer saber?||{{O que você sabe sobre o meu irmão Andor?|bucus_umar_1|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fallhaven_drunk|Não tem problema. Não senhor! Não causar mais problemas. Vou apenas sentar aqui fora.||{{N|fallhaven_drunk_2|||||}}|}; -{fallhaven_drunk_2|Espera, quem é você de novo? Você é aquele guarda?||{{Sim.|fallhaven_drunk_3_1|||||}{Não.|fallhaven_drunk_3_2|||||}}|}; -{fallhaven_drunk_3_1|Oh, senhor. Eu não estou causando mais nenhum problema, viu? Eu fico fora agora, como você mandou, ok?||{{N|fallhaven_drunk_4|||||}}|}; -{fallhaven_drunk_3_2|Ah bom. Aquele guarda me jogou para fora da taverna. Se eu vê-lo novamente eu vou lhe mostrar algumas coisinhas.||{{N|fallhaven_drunk_4|||||}}|}; -{fallhaven_drunk_4|Bebida, bebida, bebida, beber um pouco mais. Beber, beber .. Uh, como é mesmo?||{{N|fallhaven_drunk_5|||||}}|}; -{fallhaven_drunk_5|Você disse alguma coisa? O que foi mesmo? Sim, então estávamos nessa caverna.||{{N|fallhaven_drunk_6|||||}}|}; -{fallhaven_drunk_6|Ou era uma casa? Eu não me lembro.||{{N|fallhaven_drunk_7|||||}}|}; -{fallhaven_drunk_7|Não, não, ele estava fora! Agora eu me lembro.||{{N|fallhaven_drunk_7_select|||||}}|}; -{fallhaven_drunk_7_select|||{{|fallhaven_drunk_11|fallhavendrunk:100||||}{|fallhaven_drunk_8|||||}}|}; -{fallhaven_drunk_8|É onde nós... \n\nEi, onde foi parar meu hidromel? Será que você o tomou?||{{Sim.|fallhaven_drunk_9_1|||||}{Não.|fallhaven_drunk_9_2|||||}}|}; -{fallhaven_drunk_9_1|Bem, então dê-me de volta! Ou vá comprar-me outro hidromel.|{{0|fallhavendrunk|10|}}|{{Aqui, tem algum hidromel.|fallhaven_drunk_10||mead|1|0|}{Ok, eu vou comprar um pouco de hidromel para você.|X|||||}{Não. Eu não acho que eu deveria ajudá-lo. Tchau.|X|||||}}|}; -{fallhaven_drunk_9_2|Então devo estar bêbado. Você poderia me dar hidromel novamente. O que você acha?|{{0|fallhavendrunk|10|}}|{{Aqui, tem algum hidromel.|fallhaven_drunk_10||mead|1|0|}{Ok, eu vou comprar um pouco de hidromel para você.|X|||||}{Não. Eu não acho que eu deveria ajudá-lo. Tchau.|X|||||}}|}; -{fallhaven_drunk_10|Bebidas, oh doce de alegria. Que a Sssssssombra esteja com você garoto. *com olhos arregalados*||{{N|fallhaven_drunk_11|||||}}|}; -{fallhaven_drunk_11|*toma um bom gole de hidromel* \n\nIsso é bom mesmo!||{{N|fallhaven_drunk_12|||||}}|}; -{fallhaven_drunk_12|Sim, eu e Unnmir tivemos uns bons momentos. Vá perguntar a ele, ele está geralmente no celeiro a leste de aqui. Eu me pergunto *arrota* onde o tesouro está.|{{0|fallhavendrunk|100|}}|{{Tesouro? Eu estou dentro! Vou procurar Unnmir imediatamente.|X|||||}{Obrigado pela história. Tchau.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fallhaven_oldman|||{{|fallhaven_oldman_complete_2|calomyran:100||||}{|fallhaven_oldman_continue|calomyran:10||||}{|fallhaven_oldman_1|||||}}|}; -{fallhaven_oldman_1|Quer ajudar um homem velho, por favor?||{{Claro, o que você precisa?|fallhaven_oldman_2|||||}{Eu poderia. Estamos falando de algum tipo de recompensa?|fallhaven_oldman_2|||||}{Não, eu não vou ajudar um velho como você. Tchau.|X|||||}}|}; -{fallhaven_oldman_2|Eu perdi recentemente um livro meu muito valioso.||{{N|fallhaven_oldman_3|||||}}|}; -{fallhaven_oldman_3|Eu sei que estava comigo ontem. Agora, eu não consigo mais encontrá-lo.||{{N|fallhaven_oldman_4|||||}}|}; -{fallhaven_oldman_4|Eu nunca perco as coisas! Alguém deve ter roubado, esse é o meu palpite.||{{N|fallhaven_oldman_5|||||}}|}; -{fallhaven_oldman_5|Você poderia ir procurar o meu livro? É chamado \'Segredos de Calomyran\'.||{{N|fallhaven_oldman_6|||||}}|}; -{fallhaven_oldman_6|Eu não tenho nenhuma ideia de onde ele possa ser. Você poderia perguntar Arcir, ele parece gostar muito de livros. *aponta para uma casa ao sul*|{{0|calomyran|10|}}|{{Ok, eu vou perguntar a Arcir. Tchau.|X|||||}}|}; -{fallhaven_oldman_continue|Como está a busca do meu livro? É chamado de \'Segredos de Calomyran\'. Você encontrou o meu livro?||{{Sim, eu o encontrei.|fallhaven_oldman_complete||calomyran_secrets|1|0|}{Não, eu não encontrei ainda.|fallhaven_oldman_6|||||}{Você poderia contar-me sua história de novo, por favor?|fallhaven_oldman_2|||||}}|}; -{fallhaven_oldman_complete|O meu livro! Obrigado, obrigado! Onde estava? Não, não me diga. Aqui, tome estas moedas como recompensa.|{{0|calomyran|100|}{1|gold51||}}|{{Obrigado. Tchau.|X|||||}{Finalmente um pouco de ouro. Tchau.|X|||||}}|}; -{fallhaven_oldman_complete_2|Muito obrigado por encontrar o meu livro!|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{nocmar|Olá. Sou Nocmar.||{{Este lugar parece uma ferraria. Você tem alguma coisa para vender?|nocmar_trade_select|||||}{Unnmir me enviou.|nocmar_quest_select|nocmar:10||||}{Tchau.|X|||||}}|}; -{nocmar_quest_select|||{{|nocmar_complete_5|nocmar:200||||}{|nocmar_continue|nocmar:20||||}{|nocmar_quest|||||}}|}; -{nocmar_trade_select|||{{|S|nocmar:200||||}{|nocmar_trade_1|||||}}|}; -{nocmar_trade_1|Eu não tenho mais itens à venda. Eu costumava ter um monte de coisas à venda, mas hoje em dia eu não estou autorizado a vender coisa alguma.||{{N|nocmar_trade_2|||||}}|}; -{nocmar_trade_2|Eu já fui um dos maiores ferreiros em Fallhaven. Então aquele bastardo do Lorde Geomyr baniu o uso do Aço do Coração.||{{N|nocmar_trade_3|||||}}|}; -{nocmar_trade_3|Por decreto do Lorde Geomyr, ninguém no Fallhaven é permitido até usar armas forjadas com Aço do Coração. Muito menos vender.||{{N|nocmar_trade_4|||||}}|}; -{nocmar_trade_4|Então, agora eu tenho que esconder as poucas armas que me restam. Eu não vou ousar vender nenhuma delas mais.||{{N|nocmar_trade_4_1|||||}}|}; -{nocmar_trade_4_1|Eu não vejo o brilho do Aço do Coração faz vários anos. Desde que o Lorde Geomyr proibiu-os.||{{N|nocmar_trade_5|||||}}|}; -{nocmar_trade_5|Então, infelizmente eu não posso vender-lhe quaisquer das minhas armas.|||}; -{nocmar_quest|Unnmir enviou hein? Eu acho que deve ser importante então.|{{0|nocmar|20|}}|{{N|nocmar_quest_1|||||}}|}; -{nocmar_quest_1|Ok, estas armas antigas perderam seu brilho interior, pois não são usadas faz muito tempo.||{{N|nocmar_quest_2|||||}}|}; -{nocmar_quest_2|Para fazer retornar o brilho do Aço do Coração, vamos precisar de uma Pedra do Coração.||{{N|nocmar_quest_3|||||}}|}; -{nocmar_quest_3|Anos atrás, nós costumávamos combater os liches de Undertell. Eu não tenho ideia se eles ainda assombram o lugar.||{{Undertell? O que é isso?|nocmar_quest_4|||||}}|}; -{nocmar_quest_4|Undertell são os poços das almas perdidas. Viaje para o sul e entre nas cavernas dos Anões. Siga o cheiro horrível que existe por lá.||{{N|nocmar_quest_5|||||}}|}; -{nocmar_quest_5|Cuidado com os liches de Undertell, se eles ainda habitarem o lugar. Essas coisas podem matá-lo com apenas um olhar.|||}; -{nocmar_continue|Você já encontrou uma Pedra do Coração?||{{Sim, finalmente encontrei.|nocmar_complete||heartstone|1|0|}{Você poderia me contar a história de novo?|nocmar_quest_1|||||}{Não, ainda não.|nocmar_continue_2|||||}}|}; -{nocmar_continue_2|Por favor, continue procurando. Unnmir deve ter planejado algo importante para você.|||}; -{nocmar_complete|Pela Sombra. Você realmente encontrou uma Pedra do Coração. Pensei que não viveria para ver esse dia.|{{0|nocmar|200|}}|{{N|nocmar_complete_2|||||}}|}; -{nocmar_complete_2|Você pode ver o brilho? É literalmente pulsante.||{{N|nocmar_complete_3|||||}}|}; -{nocmar_complete_3|Rápido. Vamos fazer estas armas antigas com Aço do Coração brilharem novamente.||{{N|nocmar_complete_4|||||}}|}; -{nocmar_complete_4|* Nocmar coloca o Pedra do Coração entre as armas com Aço do Coração *||{{N|nocmar_complete_5|||||}}|}; -{nocmar_complete_5|Você pode sentir isso? O Aço do Coração está aceso novamente.||{{Deixe-me ver os itens que você tem disponível.|S|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bela|Bem-vindo à taverna de Fallhaven. Sente-se em qualquer lugar.||{{Deixe-me ver o que alimentos e bebidas que você tem disponíveis.|S|||||}{Existem quartos disponíveis?|bela_room_select|||||}}|}; -{bela_room_1|Um quarto custa apenas 10 moedas de ouro.||{{Compre[10 moedas de ouro]|bela_room_2||gold|10|0|}{Não, obrigado.|bela|||||}}|}; -{bela_room_2|Obrigado. Pegue o último quarto ao final do corredor.|{{0|fallhaventavern|10|}}|{{Obrigado. Gostaria de falar sobre outra coisa.|bela|||||}{Obrigado, adeus.|X|||||}}|}; -{bela_room_3|Espero que o quarto esteja adequado às suas necessidades. É o último quarto ao final do corredor.||{{Obrigado. Gostaria de falar sobre outra coisa.|bela|||||}{Obrigado, adeus.|X|||||}}|}; -{bela_room_select|||{{|bela_room_3|fallhaventavern:10||||}{|bela_room_1|||||}}|}; -{ganos|Você parece estranhamente familiar.||{{Você tem alguma coisa para o vender?|S|||||}{Você sabe alguma coisa sobre a Corja dos Ladrões?|ganos_1|andor:30||||}}|}; -{ganos_1|Corja dos Ladrões? Como eu poderia saber? Eu pareço um ladrão para você?! Hrmpf.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{arcir_start|Olá. Sou Arcir.||{{Notei a estátua de Elythara no porão.|arcir_elythara_1|arcir:10||||}{Você realmente parece gostar de seus livros.|arcir_books_1|||||}}|}; -{arcir_anythingelse|Tem algo mais que você queria perguntar?||{{Notei a estátua de Elythara no porão.|arcir_elythara_1|arcir:10||||}{Você realmente parece gostar de seus livros.|arcir_books_1|||||}}|}; -{arcir_elythara_1|Oh, você encontrou minha estátua no porão?\n\nSim, Elythara é minha protetora.||{{Certo.|arcir_anythingelse|||||}}|}; -{arcir_books_1|Acho um grande prazer em meus livros. Eles contêm o conhecimento acumulado de gerações passadas.||{{Você tem um livro chamado \'Segredos de Calomyran\'?|arcir_calomyran_select|calomyran:10||||}{Certo.|arcir_anythingelse|||||}}|}; -{arcir_calomyran_1|\'Segredos de Calomyran\'? Hm, sim, eu acho que eu tenho um desses no meu porão.||{{N|arcir_calomyran_2|||||}}|}; -{arcir_calomyran_2|O velho Benradas veio aqui na semana passada, queria vender-me esse livro. Como não é realmente o meu tipo de livro, eu não aceitei.||{{N|arcir_calomyran_3|||||}}|}; -{arcir_calomyran_3|Ele parecia chateado por eu dizer que gostava de seu livro, e jogou-o em mim enquanto saiu atormentado da minha casa.||{{N|arcir_calomyran_4|||||}}|}; -{arcir_calomyran_4|Pobre velho Benradas, ele provavelmente se esqueceu de que ele o deixou aqui. Ele tende a esquecer as coisas.||{{N|arcir_anythingelse|||||}}|}; -{arcir_calomyran_5|Você olhou no porão, e não o encontrou? Uma nota que você disse? Eu acho que alguém deve ter entrado em minha casa.||{{N|arcir_calomyran_6|||||}}|}; -{arcir_calomyran_select|||{{|arcir_calomyran_complete|calomyran:100||||}{|arcir_calomyran_5|calomyran:20||||}{|arcir_calomyran_1|||||}}|}; -{arcir_calomyran_complete|Eu ouvi que você encontrou e devolveu-o ao velho Benradas. Obrigado. Ele tende a esquecer as coisas.||{{N|arcir_anythingelse|||||}}|}; -{arcir_calomyran_6|O que a nota diz?\n\nLarcal .. Eu sei dele. Sempre causando problemas. Ele é está geralmente no celeiro a leste daqui.||{{Obrigado, adeus.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{chapelgoer|Sombra, abraçe-me.|||}; -{thoronir_default|Aproveite a Sombra, meu filho.||{{O que você pode me dizer sobre a Sombra?|thoronir_shadow_1|||||}{Você pode me dizer mais sobre a igreja?|thoronir_church_1|||||}{As porções de farinha de ossos já estão prontas?|thoronir_trade_bonemeal|bonemeal:100||||}}|}; -{thoronir_shadow_1|As Sombras nos protegem dos perigos da noite. Elas nos mantém seguros e nos conforta quando dormimos.||{{Tharal enviou-me e disse-me para lhe dizer a senha \'Brilho da Sombra\'.|thoronir_tharal_select|bonemeal:30||||}{A Sombra esteja com você.|thoronir_default|||||}{Parece absurdo para mim.|thoronir_default|||||}}|}; -{thoronir_church_1|Esta é a nossa capela de adoração em Fallhaven. Nossa comunidade se volta para nós para obter auxílio.||{{N|thoronir_church_2|||||}}|}; -{thoronir_church_2|Esta igreja tem resistido a centenas de anos, e tem sido mantida a salvo de ladrões de túmulos.||{{N|thoronir_church_3|||||}}|}; -{thoronir_tharal_select|||{{|thoronir_trade_bonemeal|bonemeal:100||||}{|thoronir_tharal_1|||||}}|}; -{thoronir_tharal_1|Brilho da Sombra realmente meu filho. Então, meu velho amigo em Tharal da aldeia de Crossglen o enviou?||{{O que você pode me dizer sobre farinha de ossos?|thoronir_tharal_2|||||}}|}; -{thoronir_church_3|Nas catacumbas sob a casa da igreja estão os restos mortais de nossos líderes. Há rumores que o grande Rei Luthor foi enterrado lá.||{{Alguém já entrou nas catacumbas?|thoronir_church_4|bucus:10||||}{Gostaria de lhe falar sombre algo mais.|thoronir_default|||||}}|}; -{thoronir_church_4|Não é permitido descer nas catacumbas, exceto para Athamyr, meu aprendiz. Ele é o único que esteve lá durante esses anos.|{{0|bucus|20|}}|{{Ok, eu acho que que vou vê-lo.|thoronir_default|||||}}|}; -{thoronir_tharal_2|Shhh, não devemos falar tão alto sobre o uso de farinha de ossos. Como você sabe, Lorde Geomyr emitiu uma proibição de todo o uso de farinha de ossos.||{{N|thoronir_tharal_3|||||}}|}; -{thoronir_tharal_3|Quando a proibição veio, não me atrevi a manter alguma comigo, então eu joguei longe o que tinha. Fui bastante tolo. Agora, gostaria de voltar atrás.||{{N|thoronir_tharal_4|||||}}|}; -{thoronir_tharal_4|Você acha que você poderia encontrar-me cinco ossos de esqueleto para que eu possa usar para misturar uma poção de ossos? A farinha de ossos é muito potente na cura de feridas antigas.||{{Claro, eu sou capaz de fazer isso.|thoronir_tharal_5|||||}{Eu tenho esses ossos para você.|thoronir_tharal_complete||bone|5|0|}}|}; -{thoronir_tharal_5|Obrigado, por favor, volte em breve. Eu ouvi que existem alguns mortos-vivos perto de uma velha casa abandonada ao norte de Fallhaven. Talvez você possa conseguir ossos por lá.|{{0|bonemeal|40|}}|{{Ok, vou verificar lá.|thoronir_default|||||}}|}; -{thoronir_tharal_complete|Obrigado, estes ossos vão servir. Agora eu posso começar fabricar uma poção de cura de farinha de ossos para você.|{{0|bonemeal|100|}}|{{N|thoronir_complete_2|||||}}|}; -{thoronir_complete_2|Dê-me algum tempo para misturar a poção farinha de ossos. É uma poção de cura muito potente. Volte em breve.|||}; -{thoronir_trade_bonemeal|Sim, as poções de ossos estão prontos. Por favor, use-as com cautela, e não deixe que os guardas vejam você. Nós na verdade não somos autorizados a usá-las mais.||{{Deixe-me ver quantas poções você fez até agora.|S|||||}{Eu gostaria de falar sobre outro assunto.|thoronir_default|||||}}|}; -{catacombguard|Volte para trás enquanto você ainda pode, mortal. Este não é lugar para você. Apenas a morte espera por você aqui.||{{Muito bem. Eu vou voltar.|X|||||}{Afaste-se, pois eu preciso ir mais fundo para as catacumbas.|catacombguard1|||||}{pela Sombra, você não vai me parar.|catacombguard1|||||}}|}; -{catacombguard1|Nããão, você não passará!||{{OK. Vamos lutar.|F|||||}}|}; -{luthor|*hissss* Que mortal perturba meu sono?||{{Pela Sombra, quem é você?|F|||||}{Finalmente, uma luta digna! Eu estava esperando por isso.|F|||||}{Vamos logo, vamos acabar com isso.|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{athamyr|Caminhe com a Sombra.||{{Você esteve nas catacumbas?|athamyr_select|bucus:20||||}}|}; -{athamyr_1|Sim, eu estives nas catacumbas da igreja de Fallhaven.||{{N|athamyr_2|||||}}|}; -{athamyr_2|Mas eu sou o único que tanto tem a permissão e coragem para ir até lá.||{{Como posso obter permissão para ir para lá?|athamyr_3|||||}}|}; -{athamyr_3|Você quer ir para baixo nas catacumbas? Hum, talvez possamos fazer um acordo.||{{N|athamyr_4|||||}}|}; -{athamyr_4|Traga-me alguma carne cozida da taverna e eu lhe darei a minha permissão para entrar nas catacumbas da igreja de Fallhaven.|{{0|bucus|30|}}|{{Aqui, está a carne cozida para você.|athamyr_complete||meat_cooked|1|0|}{Ok, eu vou lhe dar algo.|X|||||}}|}; -{athamyr_complete_2|Você tem minha permissão entrar nas catacumbas da igreja de Fallhaven.|{{0|bucus|50|}}||}; -{athamyr_select|||{{|athamyr_complete_2|bucus:40||||}{|athamyr_1|||||}}|}; -{athamyr_complete|Obrigado, isso vai fazer muito bem.|{{0|bucus|40|}}|{{N|athamyr_complete_2|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{larcal|Eu não tenho tempo para você, garoto. Cai fora!||{{Encontrei um bilhete com o seu nome ao procurar o livro \'Segredos de Calomyran\'.|larcal_1|calomyran:20||||}}|}; -{larcal_1|Agora, agora, o que temos aqui? Você está insinuando que eu fui no porão do Arcir?||{{N|larcal_2|||||}}|}; -{larcal_2|Então, talvez fosse eu. O livro é meu de qualquer maneira.||{{N|larcal_3|||||}}|}; -{larcal_3|Olha, vamos resolver isso pacificamente. Se você for embora e esquecer que o livro, você ainda pode viver.||{{Muito bem. Mantenha o seu livro.|larcal_4|||||}{Não, você vai me dar aquele livro.|larcal_5|||||}}|}; -{larcal_4|Bom menino. Agora fuja.|||}; -{larcal_5|Ok, agora você está começando a me irritar, garoto. Cai fora enquanto você ainda pode.||{{Muito bem. Eu vou sair.|X|||||}{Não, o livro não é seu!|larcal_6|||||}}|}; -{larcal_6|Você ainda está aqui? Ok, então, se você quer um livro tão ruim, você vai ter que tirar isso de mim!||{{Finalmente uma luta. Eu estava ansioso por isso!|F|||||}{Eu esperava que não chegasse a isso.|F|||||}{Muito bem. Eu vou sair.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{unnmir|||{ - {|unnmir_r|nocmar:10||||} - {|unnmir_0|||||} - }|}; -{unnmir_r|Olá novamente. Você deveria ir falar com Nocmar.||{{N|unnmir_13|||||}}|}; -{unnmir_0|Oi você.||{{Um bêbado ao longo da taberna contou-me uma história sobre vocês dois.|unnmir_1|fallhavendrunk:100||||}}|}; -{unnmir_1|Esse velho bêbado da taverna contou-lhe sua história não é?||{{N|unnmir_2|||||}}|}; -{unnmir_2|É a mesma velha história. Nós costumávamos viajar juntos há alguns anos.||{{N|unnmir_3|||||}}|}; -{unnmir_3|Aventura real, você sabe, espadas e magias.||{{N|unnmir_4|||||}}|}; -{unnmir_4|Mas, então, paramos. Eu realmente não posso dizer por que, acho que nos cansamos da vida na estrada. Nos fixamos aqui em Fallhaven.||{{N|unnmir_5|||||}}|}; -{unnmir_5|Nice cidade pequena aqui. A ladrões muito em torno embora, mas eles não me incomoda.||{{N|unnmir_6|||||}}|}; -{unnmir_6|Então, qual é a sua história, garoto? Como é que você veio parar aqui em Fallhaven?||{{Eu estou procurando meu irmão.|unnmir_7|||||}}|}; -{unnmir_7|Sim, sim, eu entendo. Seu irmão provavelmente está fugindo de algum duente, tentando se aventurar. *olhos girando*||{{N|unnmir_8|||||}}|}; -{unnmir_8|Ou talvez ele tenha ido para uma das grandes cidades ao norte.||{{N|unnmir_9|||||}}|}; -{unnmir_9|Não posso dizer que posso culpá-lo por querer ver o mundo.||{{N|unnmir_10|||||}}|}; -{unnmir_10|Ei, por falar nisso, você também procuar ser um aventureiro?||{{Sim.|unnmir_11|||||}{Não, não realmente.|unnmir_12|||||}}|}; -{unnmir_11|Legal. Eu vou te dar uma dica, garoto. *Risinhos*. Vá ver Nocmar no lado oeste da cidade. Diga a ele que eu lhe enviei.|{{0|nocmar|10|}}|{{N|unnmir_13|||||}}|}; -{unnmir_12|Estratégia inteligente. Aventuras geram um monte de cicatrizes.Você sabe o que quero dizer.|||}; -{unnmir_13|Sua casa é a sudoeste da taverna.||{{Obrigado, eu vou vê-lo.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{gaela|||{ - {|gaela_r|andor:40||||} - {|gaela_0|||||} - }|}; -{gaela_r|Olá novamente. Eu espero que você encontre o que você está procurando.|||}; -{gaela_0|Ligeira é minha lâmina. Envenenada é minha língua. Ou seria o contrário?||{{Parece haver um monte de ladrões aqui em Fallhaven.|gaela_1|||||}}|}; -{gaela_1|Sim, nós, os ladrões têm uma presença forte por aqui.||{{Algo mais?|gaela_2|andor:30||||}}|}; -{gaela_2|Ouvi dizer que você ajudou Gruil, um ladrão companheiro na aldeia de Crossglen.||{{N|gaela_3|||||}}|}; -{gaela_3|Escutei que você está procurando alguém. Eu talvez possa ser capaz de ajudá-lo.||{{N|gaela_4|||||}}|}; -{gaela_4|Você deve ir falar com Bucus em uma casa caindo aos pedaços a sudoeste aqui. Diga a ele que você quer saber mais sobre a Corja dos Ladrões.|{{0|andor|40|}}|{{Obrigado, eu vou falar com ele.|gaela_5|||||}}|}; -{gaela_5|Considere isso como um favor feito em troca de sua ajuda a Gruil.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{vacor|||{{|vacor_return_complete0|vacor:60||||}{|vacor_return2|vacor:40||||}{|vacor_42|vacor:30||||}{|vacor_select1|||||}}|}; -{vacor_select1|||{{|vacor_return1|vacor:20||||}{|vacor_begin|||||}}|}; -{vacor_begin|Olá.||{{N|vacor_2|||||}}|}; -{vacor_2|O que você é, algum tipo de aventureiro? Hum. Talvez você ter alguma utilidade para mim.||{{N|vacor_3|||||}}|}; -{vacor_3|Você está disposto a me ajudar?||{{Claro, o que você precisa?|vacor_4|||||}{Não, por que eu deveria ajudá-lo?|vacor_bah|||||}}|}; -{vacor_bah|Bah, criatura humilde. Eu sabia que não deveria ter perguntado. Agora me deixe.|||}; -{vacor_4|Tempos atrás, eu estava trabalhando em um feitiço de ruptura que eu havia lido a respeito.||{{N|vacor_5|||||}}|}; -{vacor_5|O feitiço é capaz de, digamos assim, abrir novas possibilidades.||{{N|vacor_6|||||}}|}; -{vacor_6|Erm, sim, o feitiço de ruptura vai abrir bem algumas possibilidades. Ahem.||{{N|vacor_7|||||}}|}; -{vacor_7|Então, lá estava eu ​​a trabalhar duro para conseguir juntar os últimos pedaços para isso.||{{N|vacor_8|||||}}|}; -{vacor_8|Então, de repente, uma gangue de bandidos me rondou e ameaçou-me.||{{N|vacor_9|||||}}|}; -{vacor_9|Eles disseram que eram mensageiros da Sombra, e insistiram para que eu desistisse do feitiço.||{{N|vacor_10|||||}}|}; -{vacor_10|Absurdo, não é? Eu estava tão perto de obter o poder!||{{N|vacor_11|||||}}|}; -{vacor_11|Ah, o poder que eu poderia ter tido. Meu feitiço de ruptura querido.|{{0|vacor|10|}}|{{N|vacor_12|||||}}|}; -{vacor_12|De qualquer forma, eu estava prestes a terminar a última peça do meu feitiço de ruptura quando os bandidos chegaram e roubaram-me.||{{N|vacor_13|||||}}|}; -{vacor_13|Os bandidos levaram as minhas notas para o feitiço e tirou antes que eu pudesse chamar os guardas.||{{N|vacor_14|||||}}|}; -{vacor_14|Depois de anos de trabalho, eu não consigo lembrar mais das últimas partes do feitiço.||{{N|vacor_15|||||}}|}; -{vacor_15|Você acha que você poderia me ajudar a localizá-lo? Então eu poderia ter o poder, finalmente!||{{N|vacor_16|||||}}|}; -{vacor_16|Você vai, naturalmente, ser adequadamente recompensado ​​por ajudar-me a obter tal poder.||{{Recompensa? Eu estou dentro!|vacor_17|||||}{Muito bem. Vou ajudá-lo.|vacor_17|||||}{Não, obrigado, isso parece ser algo que eu preferia não se envolver.|vacor_bah|||||}}|}; -{vacor_17|Eu sabia que não podia confiar ... Espere, o que? Você realmente disse que sim? Hah, bem, então.||{{N|vacor_18|||||}}|}; -{vacor_18|Ok, procure encontrar os quatro pedaços do meu feitiço de ruptura que os bandidos tomaram, e trazer os pedaços para mim.|{{0|vacor|20|}}|{{N|vacor_19|||||}}|}; -{vacor_19|Havia quatro bandidos. Todos eles tomaram a direção sul de Fallhaven depois do ataque.||{{N|vacor_20|||||}}|}; -{vacor_20|Você deve procurar as partes com os quatro bandidos ao sul de Fallhaven.||{{N|vacor_21|||||}}|}; -{vacor_21|Por favor, se apresse! Estou tão ansioso para abrir a ruptura... Erm, eu quero dizer terminar o feitiço. (Nada de estranho com isso?)|||}; -{vacor_return1|Olá novamente. Como está indo a busca das partes pedaços desaparecidas do feitiço de ruptura?||{{Eu encontrei todas as pedaços.|vacor_40||vacor_spell|4|0|}{O que eu deveria fazer mesmo?|vacor_18|||||}{Você poderia me contar a história toda de novo?|vacor_4|||||}}|}; -{vacor_40|Oh, você encontrou os quatro pedaços? Depressa, dê-os a mim.|{{0|vacor|30|}}|{{N|vacor_41|||||}}|}; -{vacor_41|Sim, estes são as pedaços que os bandidos levaram.||{{N|vacor_42|||||}}|}; -{vacor_42|Agora eu devo ser capaz de terminar o feitiço de ruptura e abrir a brecha na Sombra .. hmm... Quero dizer abrir novas possibilidades. Sim, é isso que eu quis dizer.||{{N|vacor_43|||||}}|}; -{vacor_43|O único obstáculo para continuar minha pesquisa com o feitiço ruptura é aquele estúpido sujeito Unzel.||{{N|vacor_44|||||}}|}; -{vacor_44|Unzel foi meu aprendiz tempos atrás. Mas ele começou a irritar-me com suas perguntas e falar sobre moral.||{{N|vacor_45|||||}}|}; -{vacor_45|Ele disse que meu feitiço de ruptura estava perturbando a vontade do Sombra.||{{N|vacor_46|||||}}|}; -{vacor_46|Bah, a Sombra. O que ela já fez por mim?||{{N|vacor_47|||||}}|}; -{vacor_47|O dia em que lançar meu feitiço de ruptura vou me livrar da Sombra.||{{N|vacor_48|||||}}|}; -{vacor_48|De qualquer forma, eu tenho a sensação de que Unzel enviou esses bandidos atrás de mim, e se eu não o deter, ele provavelmente irá enviar mais.||{{N|vacor_49|||||}}|}; -{vacor_49|Eu preciso que você encontre Unzel e o mate para mim. Ele provavelmente pode ser encontrado em algum lugar ao sudoeste de Fallhaven.|{{0|vacor|40|}}|{{N|vacor_50|||||}}|}; -{vacor_50|Traga-me o seu anel como prova quando você o matar.||{{N|vacor_51|||||}}|}; -{vacor_51|Agora, apresse-se. Eu não posso esperar muito mais. O poder será meu!|||}; -{vacor_return2|Olá novamente. Algum progresso?||{{Sobre Unzel ...|vacor_return2_2|||||}{Você poderia me contar a história de novo?|vacor_43|||||}}|}; -{vacor_return2_2|Você ainda não matou Unzel para mim? Traga-me o seu anel quando o matou.||{{Eu cuidei dele. Aqui está o seu anel.|vacor_60||ring_unzel|1|0|}{Eu escutei a história de Unzel e decidiram lado com ele. A Sombra deve ser preservada.|vacor_70|vacor:51||||}}|}; -{vacor_60|Ha ha, Unzel está morto! Aquela criatura patética se foi!|{{0|vacor|60|}}|{{N|vacor_61|||||}}|}; -{vacor_61|Eu posso ver o sangue em suas botas. Eu ainda lhe fiz que matar os asseclas dele.||{{N|vacor_62|||||}}|}; -{vacor_62|Este é um grande dia, de fato. Eu em breve terei o poder!||{{N|vacor_63|||||}}|}; -{vacor_63|Aqui, tome essas moedas por sua ajuda.|{{1|gold200||}}|{{N|vacor_64|||||}}|}; -{vacor_64|Agora me deixe, eu tenho trabalho a fazer antes que eu possa lançar o feitiço de ruptura.|||}; -{vacor_return_complete0|||{ - {|vacor_msg_16|kaverin:90||||} - {|vacor_msg_9|kaverin:75||||} - {|vacor_msg1|kaverin:60|kaverin_message|1|1|} - {|vacor_return_complete|||||} - }|}; -{vacor_return_complete|Olá de novo, meu amigo assassino. Em breve vou terminar meu feitiço de ruptura.|||}; -{vacor_70|O quê? Ele contou-lhe sua história? E você realmente acreditou?||{{N|vacor_71|||||}}|}; -{vacor_71|Vou lhe dar mais uma chance. Ou mata Unzel para mim, e eu vou te recompensar generosamente, ou você vai ter que lutar comigo.||{{Não. Você deve ser interrompido.|vacor_72|||||}{Ok, eu vou pensar sobre isso mais uma vez.|X|||||}}|}; -{vacor_72|Bah, criatura inferior. Eu sabia que não deveria ter confiado em você. Agora você vai morrer junto com sua preciosa Sombra.|{{0|vacor|54|}}|{{Pela Sombra!|F|||||}{Você deve ser interrompido.|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{unzel_1|Olá. Eu sou Unzel.||{{É este acampamento é seu?|unzel_2|||||}{Fui enviado por Vacor para te matar.|unzel_3|vacor:40||||}}|}; -{unzel_2|Sim, este é o meu acampamento. Belo lugar, não é?||{{Tchau.|X|||||}}|}; -{unzel_3|Vacor enviou hein? Acho que eu deveria ter percebido que ele iria enviar alguém, mais cedo ou mais tarde.||{{N|unzel_4|||||}}|}; -{unzel_4|Muito bem, então. Mate-me se você quiser, mas permita-me antes dizer-lhe o meu lado da história.||{{Ah, eu vou gostar de matar você!|unzel_fight|||||}{Eu vou ouvir a sua história.|unzel_5|||||}}|}; -{unzel_fight|Muito bem, vamos lutar então.|{{0|vacor|53|}}|{{Enfim uma luta!|F|||||}}|}; -{unzel_5|Obrigado pela atenção.||{{N|unzel_10|||||}}|}; -{unzel_10|Vacor e eu costumávamos viajar juntos. Mas ele começou a ficar obcecado para fazer o seu feitiço.||{{N|unzel_11|||||}}|}; -{unzel_11|Ele mesmo começou a questionar a Sombra. Eu sabia que tinha que fazer algo para detê-lo!||{{N|unzel_12|||||}}|}; -{unzel_12|Eu comecei a interrogá-lo sobre o que ele estava fazendo, mas ele só queria seguir em frente.||{{N|unzel_13|||||}}|}; -{unzel_13|Depois de um tempo, ele ficou obcecado com a ideia de um feitiço de ruptura. Ele disse que iria conceder-lhe poderes ilimitados contra a Sombra.||{{N|unzel_14|||||}}|}; -{unzel_14|Então, só havia uma coisa que eu poderia fazer. Deixei-o e fiz o necessário para impedi-lo de tentar criar o feitiço de ruptura.||{{N|unzel_15|||||}}|}; -{unzel_15|Eu mandei alguns amigos para tomar o feitiço dele.||{{N|unzel_16_select|||||}}|}; -{unzel_16_select|||{{|unzel_16_2|vacor:50||||}{|unzel_16_1|||||}}|}; -{unzel_16_1|E aqui estamos nós.||{{Eu matei os quatro bandidos que enviou após Vacor.|unzel_17|||||}}|}; -{unzel_16_2|E aqui estamos nós.||{{N|unzel_19|||||}}|}; -{unzel_17|O quê? Você matou meus quatro amigos? Argh, eu sinto a raiva em meu sangue.||{{N|unzel_18|||||}}|}; -{unzel_18|Mas também percebo que tudo isso é obra de Vacor. Eu vou dar-lhe uma escolha agora. Escolha com cuidado.||{{N|unzel_19|||||}}|}; -{unzel_19|Ou você fica ao lado com Vacor e seu feitiço de ruptura, enfrentando a Sombra, ou ajuda-me a livrar-se dele. Quem é que vai ajudar?|{{0|vacor|50|}}|{{Vou ficar ao seu lado. A Sombra não deve ser perturbada.|unzel_20|||||}{Eu do lado de Vacor.|unzel_fight|||||}}|}; -{unzel_20|Obrigado meu amigo. Vamos manter a Sombra seguro de Vacor.|{{0|vacor|51|}}|{{N|unzel_21|||||}}|}; -{unzel_21|Você deveria ir falar com ele sobre a Sombra.|||}; -{unzel_return_1|Bem-vindo de volta. Você falou com Vacor?||{{Sim, eu falei com ele.|unzel_30||ring_vacor|1|0|}{Não, ainda não.|X|||||}}|}; -{unzel_30|Você o matou? Você tem a minha amizade, obrigado. Agora estamos a salvo de feitiço de ruptura de Vacor. Aqui, tome estas moedas por sua ajuda.|{{0|vacor|61|}{1|gold200||}}|{{A Sombra esteja com você.|X|||||}{Obrigado.|X|||||}}|}; -{unzel_40|Obrigado por sua ajuda. Agora estamos a salvo de feitiço de ruptura de Vacor.||{{Eu tenho uma mensagem para você de Kaverin em Remgard.|unzel_msg1|kaverin:25|kaverin_message|1|1|}}|}; -{unzel|||{{|unzel_msg_r0|kaverin:30||||}{|unzel_40|vacor:61||||}{|unzel_return_1|vacor:51||||}{|unzel_1|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fallhaven_bandit|Cai fora, garoto. Eu não tenho tempo para você.||{{Eu estou procurando por um pedaço do feitiço de elevação.|fallhaven_bandit_2|vacor:20||||}}|}; -{fallhaven_bandit_2|Nãs! Vacor não irá ganhar o poder do feitiço de elevação!||{{Vamos lutar!|F|||||}}|}; -{bandit1|O que temos aqui? Um andarilho perdido?||{{N|bandit1_2|||||}}|}; -{bandit1_2|Quanto é a sua vida vale para você? Dê-me 100 moedas de ouro e eu vou deixar você ir.||{{Ok ok. Aqui está o ouro. Por favor, não me machuque!|bandit1_3||gold|100|0|}{Que tal lutarmos por ela?|bandit1_4|||||}{Quanto vale sua vida?|bandit1_4|||||}}|}; -{bandit1_3|Tempos difíceis. Você está livre para ir.|||}; -{bandit1_4|Ok, então, será pela sua vida. Vamos lutar. Eu estava ansioso para uma boa luta!||{{Vamos lutar!|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{zombie1|Carne fresca!||{{Pela Sombra, eu vou matar você.|F|||||}{Yuck, quem é você? E o que é esse cheiro?|F|||||}}|}; -{prisoner1|Nããão, eu não vou ser preso de novo!||{{Mas eu não sou ...|F|||||}}|}; -{prisoner2|Aaaa! Quem está aí? Eu não vou ser escravizado novamente!||{{Calma, eu estava ...|F|||||}}|}; -{flagstone_guard0|Ah, outro mortal. Prepare-se para se tornar parte do meu exército de mortos vivos!|{{0|flagstone|31|}}|{{Que a Sombra o leve.|F|||||}{Prepare-se para morrer mais uma vez.|F|||||}}|}; -{flagstone_guard1|Morra mortal!||{{A sombra irá levá-lo.|F|||||}{Prepare-se para conhecer a minha lâmina.|F|||||}}|}; -{flagstone_guard2|O que, um mortal aqui que não é marcado por meu toque?|{{0|flagstone|50|}}|{{N|flagstone_guard2_2|||||}}|}; -{flagstone_guard2_2|Você parece delicioso e suave, você vai fazer parte da festa?||{{N|flagstone_guard2_3|||||}}|}; -{flagstone_guard2_3|Sim, eu acho que você vai. Meu exército de mortos vivos vai se espalhar muito longe fora de Flagstone uma vez que eu liquide você.||{{pela sombra, você deve ser detido!|F|||||}{Não! Esta terra deve ser protegida de mortos-vivos!|F|||||}}|}; -{flagstone_sentry|||{{|flagstone_sentry_return4|flagstone:60||||}{|flagstone_sentry_return3|flagstone:40||||}{|flagstone_sentry_select0|||||}}|}; -{flagstone_sentry_select0|||{{|flagstone_sentry_return2|flagstone:30||||}{|flagstone_sentry_return1|flagstone:10||||}{|flagstone_sentry_1|||||}}|}; -{flagstone_sentry_1|Alto! Quem está aí? Ninguém está autorizado a aproximar-se de Flagstone.||{{N|flagstone_sentry_2|||||}}|}; -{flagstone_sentry_2|Você deve voltar enquanto ainda pode.||{{N|flagstone_sentry_3|||||}}|}; -{flagstone_sentry_3|Flagstone foi invadida por mortos-vivos, e eu estou montando guarda aqui para garantir nenhum morto-vivo escape.||{{Você pode me dizer a história sobre Flagstone?|flagstone_sentry_4|||||}}|}; -{flagstone_sentry_4|Flagstone costumava ser um campo de prisioneiros para os trabalhadores fugitivos da época em que o Monte Galmore foi escavado.||{{N|flagstone_sentry_5|||||}}|}; -{flagstone_sentry_5|Mas uma vez que a escavação no Monte Galmore parou, o campo de prisioneiros perdeu a sua finalidade.||{{N|flagstone_sentry_6|||||}}|}; -{flagstone_sentry_6|O senhor na época não ligava muito para os presos que já estavam em Flagstone. Por isso, os deixou lá.||{{N|flagstone_sentry_7|||||}}|}; -{flagstone_sentry_7|O antigo diretor de Flagstone, por outro lado, levava seu dever muito a sério, e continuou dirigindo a prisão exatamente como era quando o Monte Galmore estava sendo escavado.||{{N|flagstone_sentry_8|||||}}|}; -{flagstone_sentry_8|Durante anos, ninguém tomou conhecimento de Flagstone. Exceto por eventuais relatos de viajantes que escutavam gritos terríveis vindo da prisão.||{{N|flagstone_sentry_9|||||}}|}; -{flagstone_sentry_9|Houve uma mudança recente: agora os mortos-vivos estão pipocando em grande número.||{{N|flagstone_sentry_10|||||}}|}; -{flagstone_sentry_10|E aqui estamos nós. Eu tenho que guardar a estrada contra os mortos-vivos, para que eles não se se afastem de Flagstone.||{{N|flagstone_sentry_11|||||}}|}; -{flagstone_sentry_11|Então, eu aconselho-o a deixar esse local, a menos que você queira ser tomado pelos mortos-vivos.||{{Posso investigar as ruínas Flagstone?|flagstone_sentry_12|||||}{Sim, eu até poderia deixar.|X|||||}}|}; -{flagstone_sentry_12|Você tem certeza que quer ir lá? Bem, ok, por mim, tudo bem.||{{N|flagstone_sentry_13|||||}}|}; -{flagstone_sentry_13|Eu não vou parar você, e eu não vou chorar você se você nunca retornar.||{{N|flagstone_sentry_14|||||}}|}; -{flagstone_sentry_14|Vá em frente. Creio que nada que eu diga em contrário irá evitar sua ida.||{{N|flagstone_sentry_15|||||}}|}; -{flagstone_sentry_15|Volte aqui se precisar de meu conselho.|{{0|flagstone|10|}}|{{OK. Eu retornarei a você, se eu precisar de ajuda.|X|||||}}|}; -{flagstone_sentry_return1|Olá novamente. Você esteve em Flagstone? Estou realmente surpreso que você voltou.||{{Você pode me contar a história de novo?|flagstone_sentry_4|||||}{Existe um guardião dos níveis mais baixos de Flagstone que não me deixa aproximar.|flagstone_sentry_20|flagstone:20||||}}|}; -{flagstone_sentry_20|Um guardião que você diz? Esta é uma notícia preocupante, uma vez que significa que existe alguma força poderosa por trás de tudo isso.||{{N|flagstone_sentry_21|||||}}|}; -{flagstone_sentry_21|Você já encontrou o ex-diretor de Flagstone? O diretor costumava usar sempre um colar.||{{N|flagstone_sentry_22|||||}}|}; -{flagstone_sentry_22|Ele se preocupava muito com o colar. Talvez seja algum tipo de chave.||{{N|flagstone_sentry_23|||||}}|}; -{flagstone_sentry_23|Se você encontrar o diretor e recuperar o colar, por favor, volte aqui e eu vou ajudá-lo a decifrar qualquer mensagem que possamos encontrar nele.|{{0|flagstone|30|}}|{{Eu encontrei-o. Está aqui.|flagstone_sentry_40||necklace_flagstone|1|0|}{O que você disse mesmo sobre o guardião?|flagstone_sentry_20|||||}{Ok, eu vou procurar o antigo diretor.|X|||||}}|}; -{flagstone_sentry_return2|Olá novamente. Você ainda não encontrou o ex-diretor de Flagstone?||{{Sobre o ex-diretor ...|flagstone_sentry_23|||||}{Você pode me contar a história de novo?|flagstone_sentry_3|||||}}|}; -{flagstone_sentry_40|Você encontrou o colar? Bom. Aqui, entregue-me.|{{0|flagstone|40|}}|{{N|flagstone_sentry_41|||||}}|}; -{flagstone_sentry_41|Agora, vamos ver aqui. Ah, sim, é como eu pensava. O colar contém uma senha.||{{N|flagstone_sentry_42|||||}}|}; -{flagstone_sentry_42|\'A Sombra da luz do dia\'. Deve ser isso. Você deve tentar se aproximar do guardião com esta senha.||{{Obrigado, adeus.|X|||||}}|}; -{flagstone_sentry_return3|Olá novamente. Como está indo sua investigação sobre mortos-vivos de Flagstone?||{{Nenhum progresso ainda.|flagstone_sentry_43|||||}}|}; -{flagstone_sentry_43|Bem, continue procurando. Volte para mim se precisar do meu conselho.|||}; -{flagstone_sentry_return4|Olá novamente. Parece algo aconteceu dentro de Flagstone tornaram os mortos-vivos mais fracos. Tenho certeza de que temos que lhe agradecer por isso.|||}; - -{narael|Obrigado, obrigado por me libertar daquele monstro.||{{N|narael_select|||||}}|}; -{narael_select|||{{|narael_9|flagstone:60||||}{|narael_1|||||}}|}; -{narael_1|Eu tenho sido prisioneiro aqui pelo que parece ser uma eternidade.||{{N|narael_2|||||}}|}; -{narael_2|Ah, as coisas que eles fizeram para mim. Muito obrigado por me libertar.||{{N|narael_3|||||}}|}; -{narael_3|Eu era um cidadão de Nor City, e trabalhei na escavação do Monte Galmore.||{{N|narael_4|||||}}|}; -{narael_4|Mas um dia eu quis parar a tarefa e voltar para a minha esposa.||{{N|narael_5|||||}}|}; -{narael_5|O oficial encarregado não me deixou, e fui enviado para Flagstone como prisioneiro por desobedecer ordens.||{{N|narael_6|||||}}|}; -{narael_6|Se eu pudesse ver a minha esposa mais uma vez. Mas eu não tenho mais quase nenhuma vida, eu nem sequer tenho força suficiente para sair deste lugar.||{{N|narael_7|||||}}|}; -{narael_7|Eu acho que o meu destino é morrer aqui. Mas agora, pelo menos como um homem livre.||{{N|narael_8|||||}}|}; -{narael_8|Agora, deixe-me entregue ao meu destino. Eu não tenho a força para sair deste lugar.|{{0|flagstone|60|}}|{{N|narael_9|||||}}|}; -{narael_9|Se você encontrar minha esposa Taurum em Nor City, por favor, diga a ela que eu estou vivo e que eu esqueci-me dela.||{{Eu vou. Tchau.|X|||||}{Eu vou. A Sombra esteja com você.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fallhaven_lumberjack|Oi, eu sou Jakrar.||{{Você é um lenhador?|fallhaven_lumberjack_2|||||}}|}; -{fallhaven_lumberjack_2|Sim, eu sou lenhador de Fallhaven. Precisa de alguma coisa feita com o melhor da floresta? Eu provavelmente tenho.|||}; -{alaun|Olá. Sou Alaun. Como posso ajudá-lo?||{{Você viu meu irmão Andor? Ele é semelhante a mim.|alaun_2|||||}}|}; -{alaun_2|Você diz que está procurando por seu irmão? Parece que você? Hum.||{{N|alaun_3|||||}}|}; -{alaun_3|Não, não me lembro de ver ninguém com essa descrição. Talvez você devesse tentar na aldeia de Crossglen a oeste daqui.|||}; -{fallhaven_farmer1|Olá lá. Por favor, não me incomode. Eu tenho um monte de trabalho a fazer.|||}; -{fallhaven_farmer2|Ei! Poderia, por favor sair do caminho? Eu estou tentando trabalhar aqui.|||}; -{khorand|Ei você, não pense mesmo em tocar nenhuma dessas caixas. Estou vendo você!|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{keyarea_andor1|Você deve falar com Mikhail primeiro.|||}; -{note_lodars|No chão, você encontra um pedaço de papel com um monte de símbolos estranhos. Você pode mal pôde ler as palavras \'encontre-me no esconderijo de Lodar\', mas você não tem certeza do que isso significa.|||}; -{keyarea_crossglen_smith|Audir grita: Ei você, sai fora! Você não tem permissão para estar aí.|||}; -{sign_crossglen_cave|A placa na parede está danificada em vários lugares. Você não pode entender o que está escrito.|||}; -{sign_wild1|Oeste: Crossglen\nSul: Fallhaven\nNorte: Feygard|||}; -{sign_notdone|Este mapa ainda não está pronto. Por favor, aguarde uma versão mais nova do jogo.|||}; -{sign_wild3|Oeste: Crossglen\nLeste: Fallhaven\nNorte: Feygard|||}; -{sign_pitcave2|Gandir está aqui, morto pela mão do seu ex-amigo Irogotu.|||}; -{sign_fallhaven1|Bem-vindo ao Fallhaven. Cuidado com os batedores de carteiras!|||}; -{key_fallhavenchurch|Você não tem permissão para entrar nas catacumbas da igreja de Fallhaven sem permissão.|||}; -{arcir_basement_tornpage|Você vê uma página rasgada de um livro intitulado \'Segredos de Calomyran\'. Manchas de sangue nas bordas, e alguém tem rabiscou \'Larcal\' nas palavras ensanguentadas.|{{0|calomyran|20|}}||}; -{arcir_basement_statue|Elythara, mãe da luz. Proteja-nos da maldição da Sombra.|{{0|arcir|10|}}||}; -{fallhaven_tavern_room|Você não tem permissão para usar outro quarto; apenas o que você alugou.|||}; -{fallhaven_derelict1|Bucus gritas: Ei, você, fique longe daí!|||}; -{sign_wild6|Norte: Crossglen\nLeste: Fallhaven\nSul: Stoutford|||}; -{sign_wild7|Oeste: Stoutford\nNorte: Fallhaven|||}; -{sign_wild10|Norte: Fallhaven\nOeste: Stoutford|||}; -{flagstone_key_demon|O demônio irradia uma força que empurra você de volta, o que torna impossível se aproximar do demônio.|||}; -{flagstone_brokensteps|Você percebe que este túnel parece ser cavado abaixo de Flagstone. Provavelmente o trabalho de um dos ex-prisioneiros de Flagstone.|{{0|flagstone|20|}}||}; -{sign_wild12|Norte: Fallhaven\nLeste: Vilegard\nLeste: Nor City|||}; - - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{thievesguild_thief_1|Olá garoto.||{{Olá. Você sabe onde eu posso encontrar Umar?|thievesguild_thief_4|||||}{Que lugar é esse?|thievesguild_thief_2|||||}}|}; -{thievesguild_thief_2|Esta é a sede da Corja dos Ladrões. Estamos seguros dos guardas de Fallhaven aqui.||{{N|thievesguild_thief_3|||||}}|}; -{thievesguild_thief_3|Podemos fazer aquilo que quisermos. Contanto que Umar o permita.||{{Olá. Você sabe onde eu posso encontrar Umar?|thievesguild_thief_4|||||}{Quem é Omar?|thievesguild_thief_5|||||}}|}; -{thievesguild_thief_4|Ele está, provavelmente, em seu quarto lá. * Apontando *||{{Obrigado.|X|||||}}|}; -{thievesguild_thief_5|Umar é o líder da Corja. Ele decide as nossas regras e nos guia nas decisões morais.||{{Onde posso encontrá-lo?|thievesguild_thief_4|||||}}|}; - -{thievesguild_cook_1|Olá, você quer alguma coisa?||{{Você se parece com o cozinheiro por aqui|thievesguild_cook_2|||||}{Posso ver que alimentos você tem para vender?|S|||||}{Farrik disse que você pode me preparar uma dose especial de hidromel|thievesguild_select_1|farrik:20||||}}|}; -{thievesguild_cook_2|Isso mesmo. Alguém tem que manter esses bandidos alimentados.||{{Isto realmente cheira bem|thievesguild_cook_3|||||}{Guisado! Isso parece nojento.|thievesguild_cook_4|||||}{Não importa. Até logo|X|||||}}|}; -{thievesguild_cook_3|Obrigado. Este guisado parecendo muito bom.||{{Estou interessado em comprar algum|S|||||}}|}; -{thievesguild_cook_4|Sim, eu sei. Com ingredientes ruins, o que posso fazer? De qualquer forma, isso nos mantém alimentados.||{{Posso ver o alimento que você tem para venda?|S|||||}}|}; -{thievesguild_cook_5|Ah, claro. Preparado para tornar alguém um pouco sonolento, hein?||{{N|thievesguild_cook_6|||||}}|}; -{thievesguild_cook_6|Não se preocupe, não vou contar a ninguém. Fazer comida sonolenta é uma das minhas especialidades.||{{N|thievesguild_cook_7|||||}}|}; -{thievesguild_cook_7|Dê-me um minuto para prepará-lo para você.||{{N|thievesguild_cook_8|||||}}|}; -{thievesguild_select_1|||{{|thievesguild_cook_10|farrik:25||||}{|thievesguild_cook_5|||||}}|}; -{thievesguild_cook_8|Não. Isso deve funcionar. Tome.|{{0|farrik|25|}{1|sleepingmead||}}|{{N|thievesguild_cook_9|||||}}|}; -{thievesguild_cook_10|Sim, eu dei-lhe mais cedo a bebida preparada.||{{N|thievesguild_cook_9|||||}}|}; -{thievesguild_cook_9|Tenha cuidado para não deixar nenhum resto em seus dedos. É muito potente.||{{Obrigado.|X|||||}}|}; - -{thievesguild_pickpocket_1|Olá.||{{Quem é você?|thievesguild_pickpocket_2|||||}{Que lugar é esse?|thievesguild_thief_2|||||}}|}; -{thievesguild_pickpocket_2|Meu nome real não é importante. A maioria das pessoas me chamam de Quickfingers, que quer dizer, dedos leves.||{{Por que isso?|thievesguild_pickpocket_3|||||}}|}; -{thievesguild_pickpocket_3|Bem, eu tenho uma tendência a .. como direi isso .. adquirir certas coisas facilmente.||{{N|thievesguild_pickpocket_4|||||}}|}; -{thievesguild_pickpocket_4|Coisas que anteriormente estavam na posse de outras pessoas.||{{Você quer dizer, como roubar?|thievesguild_pickpocket_5|||||}}|}; -{thievesguild_pickpocket_5|Não, não. Eu não chamaria isso de roubo. É mais uma transferência de propriedade. Para mim, é.||{{Isso soa muito como roubar para mim.|thievesguild_pickpocket_6|||||}{Isso soa como uma boa justificativa.|thievesguild_pickpocket_6|||||}}|}; -{thievesguild_pickpocket_6|Afinal de contas, nós somos a Corja dos Ladrões. O que você esperava?|||}; - -{thievesguild_troublemaker_1|Olá. Não conheço você de algum lugar?||{{Não, eu tenho certeza que nunca nos conhecemos.|thievesguild_troublemaker_3|||||}{O que você faz aqui?|thievesguild_troublemaker_2|||||}{Posso dar uma olhada em que suprimentos você tem disponível?|S|||||}}|}; -{thievesguild_troublemaker_2|Eu mantenho um olho em nossos suprimentos da Corja.||{{Posso dar uma olhada no que você tem disponível?|S|||||}}|}; -{thievesguild_troublemaker_3|Não, eu realmente conheço você.||{{Você deve ter me confundido com outra pessoa.|thievesguild_troublemaker_4|||||}{Talvez você tenha me confundido com o meu irmão Andor.|thievesguild_troublemaker_5|||||}}|}; -{thievesguild_troublemaker_4|Sim, pode ser.||{{Você já viu meu irmão por aqui? Ele parece um pouco como eu.|thievesguild_troublemaker_5|||||}}|}; -{thievesguild_troublemaker_5|Ah, sim, agora que você mencionou. Teve aquele garoto zanzando por aqui, fazendo um monte de perguntas.||{{Você sabe o que ele estava procurando, ou o que ele estava fazendo?|thievesguild_troublemaker_6|||||}}|}; -{thievesguild_troublemaker_6|Não. Eu não sei. Eu fico de olho apenas nos suprimentos.||{{Ok, obrigado de qualquer maneira. Tchau.|X|||||}{Bah, você é inútil. Tchau.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{farrik_1|Olá. Ouvi dizer que você nos ajudou a encontrar a chave de Luthor. Bom trabalho, ela realmente vai vir a calhar.||{{Quem é você?|farrik_2|||||}{O que você pode me dizer sobre a Corja dos Ladrões?|farrik_4|||||}}|}; -{farrik_2|Eu sou Farrik, irmão de Omar.||{{O que você faz aqui?|farrik_3|||||}{O que você pode me dizer sobre a Corja dos Ladrões?|farrik_4|||||}}|}; -{farrik_3|Eu, principalmente, administro o nosso comércio com outros parceiros e mantenho um olho no que ladrões precisam para tão eficaz quanto eles puderem.||{{O que você pode me dizer sobre a Corja dos Ladrões?|farrik_4|||||}}|}; -{farrik_4|Tentamos nos manter, tanto quanto possível, e ajudar os nossos companheiros ladrões, sempre que pudermos.||{{Tem algum acontecimento recente acontecendo?|farrik_5|||||}}|}; -{farrik_5|Bem, havia uma coisa acontecendo há algumas semanas atrás. Um de nossos membros foi preso por invasão.||{{N|farrik_6|||||}}|}; -{farrik_6|A guarda Fallhaven realmente começou a ficar irritada conosco recentemente. Provavelmente porque temos sido muito bem sucedidos em nossas recentes desventuras.||{{N|farrik_7|||||}}|}; -{farrik_7|Os guardas têm aumentado sua segurança ultimamente, levando-lhes prender um dos nossos membros.||{{N|farrik_8|||||}}|}; -{farrik_8|Ele está atualmente detido na prisão aqui em Fallhaven, aguardando transferência para Feygard.||{{O que ele fez?|farrik_9|||||}}|}; -{farrik_9|Ah, nada sério. Ele estava tentando entrar nas catacumbas da igreja de Fallhaven.||{{N|farrik_10|||||}}|}; -{farrik_10|Mas agora que já nos ajudou com essa missão, eu acho que nós não precisamos ir mais até lá.||{{N|farrik_11|||||}}|}; -{farrik_11|Eu acho que eu posso confiar em você este segredo. Estamos planejando ajudá-lo a sair da prisão durante a noite.|{{0|farrik|10|}}|{{Esses guardas parecem realmente irritantes.|farrik_13|||||}{Afinal de contas, se ele não foi autorizado a andar por lá, então os guardas têm o direito de prendê-lo.|farrik_12|||||}}|}; -{farrik_12|Sim, acho que sim. Mas, por causa da segurança da Corja, preferia ter o nosso amigo libertado.||{{Talvez eu devesse dizer aos guardas que você está planejando uma fuga.|farrik_15|||||}{Não se preocupe, o seu plano secreto para libertá-lo está seguro comigo.|farrik_14|||||}{[Lie]Não se preocupe, o seu plano secreto para libertá-lo está seguro comigo.|farrik_14|||||}}|}; -{farrik_13|Ah, sim, eles são. Não são apenas os membros na Corja dos Ladrões que não gostam deles; o pessoal, em geral, também não gosta deles.||{{Há algo que eu possa fazer para ajudá-lo contra os guardas irritantes?|farrik_16|||||}}|}; -{farrik_14|Obrigado. Agora, por favor me deixe.|||}; -{farrik_15|Que seja, eles não irão acreditar em você, de qualquer maneira.|{{0|farrik|30|}}||}; -{farrik_16|Você tem certeza que quer irritar os guardas? Se alguém comentar que você esteve envolvido, você poderia arranjar um monte de problemas.||{{Não tem problema, eu me cuidar!|farrik_18|||||}{Deve haver alguma recompensa mais tarde. Estou dentro|farrik_18|||||}{Pensando bem, talvez eu devesse ficar fora disso.|farrik_17|||||}}|}; -{farrik_17|Claro, faça o que achar melhor.||{{Boa sorte em sua missão.|farrik_14|||||}{Talvez eu devesse dizer aos guardas que você está planejando libertá-lo.|farrik_15|||||}}|}; -{farrik_18|Bom.||{{N|farrik_19|||||}}|}; -{farrik_19|Ok, eis o plano: o capitão da guarda tem um certo problema com a bebida.||{{N|farrik_20|||||}}|}; -{farrik_20|Se convencermos ele a tomar um pouco de hidromel que preparamos, nós poderemos ser capaz de retirar sorrateiramente nosso amigo durante a noite, quando o capitão estiver dormindo embriagado.||{{N|farrik_20a|||||}}|}; -{farrik_20a|O nosso cozinheiro pode preparar uma bebida especial de hidromel para você que vai nocauteá-lo.||{{N|farrik_21|||||}}|}; -{farrik_21|Ele provavelmente precisará ser persuadido a beber em serviço. Se isso falhar, você pode tentar suborná-lo.||{{N|farrik_22|||||}}|}; -{farrik_22|O que você acha do plano? Você estaria disposto a fazer isso?||{{Claro, parece fácil!|farrik_23|||||}{Soa um pouco perigoso, mas eu acho que vou tentar.|farrik_23|||||}{Não, isso está realmente começando a parecer uma má ideia.|farrik_17|||||}}|}; -{farrik_23|Bom. Reporte-me quando voce tiver conseguido fazer o capitão da guarda beber o hidromel especialmente preparado.|{{0|farrik|20|}}|{{Farei isso.|farrik_14|||||}}|}; -{farrik_return_1|Olá novamente meu amigo. Como está a tarefa de embebedar o capitão da guarda?||{{Ainda não terminei, mas estou trabalhando nisso.|farrik_23|||||}{[Lie]Está feito. Ele não deve ser problema durante a noite.|farrik_26|farrik:50||||}{Está feito. Ele não deve ser problema durante a noite.|farrik_24|farrik:60||||}}|}; -{farrik_select_1|||{{|farrik_return_2|farrik:70||||}{|farrik_return_2|farrik:80||||}{|farrik_select_2|||||}}|}; -{farrik_select_2|||{{|farrik_return_1|farrik:20||||}{|farrik_1|||||}}|}; -{farrik_24|Isso é uma boa notícia! Agora nós devemos ser capazes de retirar nosso amigo da prisão esta noite.|{{0|farrik|70|}}|{{N|farrik_25|||||}}|}; -{farrik_25|Obrigado por sua ajuda meu amigo. Tome estas moedas como um símbolo de nossa gratidão.|{{1|gold200||}}|{{Obrigado. Tchau.|X|||||}{Finalmente, um pouco de ouro.|X|||||}}|}; -{farrik_return_2|Obrigado por sua ajuda com o capitão da guarda antes.|||}; -{farrik_26|Oh, você fez? Bem feito. Você tem o meu agradecimento, amigo.|{{0|farrik|80|}}||}; - - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fallhaven_warden|Conte-me qual é o seu negócio.||{{Quem é o prisioneiro?|warden_prisoner_1|||||}{Ouvi dizer que você gosta de hidromel|fallhaven_warden_1|farrik:20||||}{Os ladrões estão planejando uma fuga para o amigo deles.|fallhaven_warden_20|farrik:30||||}}|}; -{warden_prisoner_1|Esse ladrão? Ele foi pego em flagrante. Ele é um transgressor. Estava tentando descer para as catacumbas da igreja de Fallhaven.||{{N|warden_prisoner_2|||||}}|}; -{warden_prisoner_2|Felizmente, nós pegamos antes que ele pudesse chegar lá. Agora ele vai servir como um exemplo para todos os outros ladrões.||{{N|warden_prisoner_3|||||}}|}; -{warden_prisoner_3|Malditos ladrões. Deve haver um ninho deles por aqui. Se eu pudesse descobrir onde se escondem.|||}; -{fallhaven_warden_1|Hidromel? Oh .. não, eu não tomo mais isso. Quem lhe disse isso?||{{N|fallhaven_warden_2|||||}}|}; -{fallhaven_warden_2|Eu parei de beber isso anos atrás.||{{Soa como uma boa estratégia. Espero que continue longe disso.|X|||||}{Nem mesmo um pouquinho?|fallhaven_warden_3|||||}}|}; -{fallhaven_warden_3|Hum. * Limpa a garganta * Eu realmente não deveria.||{{Trouxe um pouco comigo, caso você queira tragar um gole.|fallhaven_warden_4|farrik:25|sleepingmead|1|0|}{Ok, adeus|X|||||}}|}; -{fallhaven_warden_4|Bebidas, oh doce de alegria. Mas eu realmente não deveria tomar nada em serviço.|{{0|farrik|32|}}|{{N|fallhaven_warden_5|||||}}|}; -{fallhaven_warden_5|Eu poderia ser multado por beber em serviço. Eu não acho que eu ousaria tentar isso agora.||{{N|fallhaven_warden_6|||||}}|}; -{fallhaven_warden_6|Obrigado pela bebida, porém, vou apreciá-lo quando eu chegar em casa depois de amanhã.||{{Você é bem-vindo. Tchau.|X|||||}{E se alguém lhe pagar o valor da multa?|fallhaven_warden_7|||||}}|}; -{fallhaven_warden_7|Ah, isso soa um pouco sombrio. Eu duvido que alguém poderia pagar 450 moedas de ouro por aqui. De qualquer forma, eu precisaria de um pouco mais do que isso para arriscar-me.||{{Eu tenho 500 moedas de ouro aqui, caso lhe ajude.|fallhaven_warden_9||gold|500|0|}{Mas você sabe que você quer tomar o hidromel, certo?|fallhaven_warden_8|||||}{Sim, eu concordo. Isto está começando a soar muito sombrio. Tchau.|X|||||}}|}; -{fallhaven_warden_8|Ah, claro. Agora que você mencionou. Com certeza seria bom.||{{Então, o que se eu pagar, digamos, 400 moedas de ouro. Isso iria ajudar a cobrir suficientemente sua ansiedade para desfrutar esta bebida agora?|fallhaven_warden_9||gold|400|0|}{Isso está começando a soar muito obscuro para mim. Vou deixar você com o seu dever, adeus.|X|||||}{Eu vou pegar esse ouro para você. Tchau.|X|||||}}|}; -{fallhaven_warden_9|Uau, quanto ouro! Tenho certeza de que poderia até sair com isso sem ser multado. Então eu poderia ter o ouro e uma bebida agradável de hidromel, ao mesmo tempo.|{{0|farrik|60|}}|{{N|fallhaven_warden_10|||||}}|}; -{fallhaven_warden_10|Obrigado garoto, você é realmente bom. Agora, deixe-me aproveitar a minha bebida.|||}; -{fallhaven_warden_select_1|||{{|fallhaven_warden_11|farrik:60||||}{|fallhaven_warden_35|farrik:90||||}{|fallhaven_warden_select_2|||||}}|}; -{fallhaven_warden_select_2|||{{|fallhaven_warden_30|farrik:50||||}{|fallhaven_warden_12|farrik:32||||}{|fallhaven_warden|||||}}|}; -{fallhaven_warden_11|Olá de novo, garoto. Obrigado pela bebida que me deu anteriormente. Eu tomei tudo de uma vez. Tenho certeza que o gosto estava um pouco diferente, mas acho que é apenas porque eu não estava mais acostumado com isso.||{{Quem é o prisioneiro?|warden_prisoner_1|||||}}|}; -{fallhaven_warden_12|Olá de novo, garoto. Obrigado pela bebida que me deu anteriormente. Eu ainda não a tomei.||{{N|fallhaven_warden_5|||||}}|}; -{fallhaven_warden_20|Realmente, eles ousariam atacar a guarda em Fallhaven? Você tem mais detalhes sobre o seu plano?||{{Eu ouvi que eles estão planejando sua fuga hoje à noite|fallhaven_warden_21|||||}{Não, eu só estava brincando com você. Não importa.|X|||||}{Pensando bem, é melhor eu não me meter com a Corja dos Ladrões. Não importa o que eu disse.|X|||||}}|}; -{fallhaven_warden_21|Hoje à noite? Obrigado por essa informação. Nós vamos ter certeza de aumentar a segurança, em seguida, à noite, mas de tal forma que eles não vão perceber.|{{0|farrik|40|}}|{{N|fallhaven_warden_22|||||}}|}; -{fallhaven_warden_22|Quando eles decidirem libertá-lo, estaremos preparados. Talvez possamos prender mais alguns desses ladrões imundos.||{{N|fallhaven_warden_23|||||}}|}; -{fallhaven_warden_23|Mais uma vez obrigado pela informação. Embora não saiba como você poderia saber disso, eu realmente aprecio que você tenha tenha me informado.||{{N|fallhaven_warden_24|||||}}|}; -{fallhaven_warden_24|Eu quero que você nos ajude um pouco mais, dizendo-lhes que nós teremos menos segurança para esta noite. Mas em vez disso, vamos aumentar a segurança. Dessa forma, podemos realmente estar prontos para eles.||{{Claro, eu posso fazer isso.|fallhaven_warden_25|||||}}|}; -{fallhaven_warden_25|Bom. Reporte-me de volta para mim quando lhes disser.|{{0|farrik|50|}}|{{Certo, vou fazer isso.|X|||||}}|}; -{fallhaven_warden_30|Olá de novo, meu amigo. Você disse a esses ladrões que vamos reduzir a segurança noturna?||{{Sim, eles não esperam nenhum problema.|fallhaven_warden_31|||||}{Não, ainda não. Estou trabalhando nisso.|fallhaven_warden_25|||||}}|}; -{fallhaven_warden_31|Muito bom! Agradeço pela ajuda. Aqui, tome estas moedas como um símbolo de nossa gratidão.|{{0|farrik|90|}{1|gold200||}}|{{N|fallhaven_warden_36|||||}}|}; -{fallhaven_warden_35|Olá de novo, meu amigo. Obrigado por sua ajuda anteriormente para lidar com os ladrões.||{{N|fallhaven_warden_36|||||}}|}; -{fallhaven_warden_36|Eu vou com certeza informar aos outros guardas sobre como você nos ajudou aqui em Fallhaven.||{{Obrigado. Tchau.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{umar_select_1|||{{|umar_return_1|andor:51||||}{|umar_novisit_1|||||}}|}; -{umar_return_1|Olá de novo, meu amigo.||{{Olá.|umar_return_2|||||}{Prazer em conhecê-lo. Tchau.|X|||||}}|}; -{umar_return_2|Posso ajudá-lo em mais alguma coisa?||{{Você pode repetir o que você disse sobre Andor?|umar_5|||||}{Prazer em conhecê-lo. Tchau.|X|||||}}|}; -{umar_novisit_1|Olá. Como foi a sua pesquisa?||{{Que busca?|umar_2|||||}}|}; -{umar_2|A última vez que conversamos, você pediu o caminho para o esconderijo de Lodar. Você o achou?||{{Nós nunca nos conhecemos.|umar_3|||||}{Você deve estar me confundindo com meu irmão Andor. Nós somos muito parecidos.|umar_4|||||}}|}; -{umar_3|Oh. Parece que você me confundiu com outra pessoa.||{{Meu irmão e eu Andor somos muito parecidos.|umar_4|||||}}|}; -{umar_4|Sério? Não ligue para o que lhe disse antes.|{{0|andor|51|}}|{{Acho que isso significa que Andor esteve por aqui. O que ele estava fazendo?|umar_5|||||}}|}; -{umar_5|Ele veio aqui há um tempo atrás, fazendo um monte de perguntas sobre quais relações a Corja dos Ladrões têm com a Sombra e com a guarda real em Feygard.||{{N|umar_6|||||}}|}; -{umar_6|Nós da Corja dos Ladrões realmente não ligamos muito para a Sombra. Nem para a guarda real.||{{N|umar_7|||||}}|}; -{umar_7|Tentamos ficar acima de suas brigas e diferenças. Eles podem lutar o tanto que eles quiserem, mas o Corja dos Ladrões sobrevive a todos eles.||{{Qual é o conflito?|umar_conflict_1|||||}{Conte-me mais sobre o que Andor perguntou.|umar_andor_1|||||}}|}; -{umar_conflict_1|Onde você esteve nos últimos dois anos? Você não sabe do conflito da cerveja?||{{N|umar_conflict_2|||||}}|}; -{umar_conflict_2|A guarda real, liderada pelo Lorde Geomyr em Feygard, estão tentando reduzir o recente aumento de atividades ilegais, e estão, portanto, impondo mais restrições sobre o que é permitido e o que não é.||{{N|umar_conflict_3|||||}}|}; -{umar_conflict_3|Os sacerdotes da Sombra, principalmente baseados em Nor City, são contra as novas restrições, dizendo que elas limitam os caminhos que possam agradar a Sombra.||{{N|umar_conflict_4|||||}}|}; -{umar_conflict_4|Por sua vez, o boato é que os sacerdotes do Sombra estejam planejando destruir o Lorde Geomyr e suas forças.||{{N|umar_conflict_5|||||}}|}; -{umar_conflict_5|Além disso, o boato é que os sacerdotes do Sombra ainda estão fazendo seus rituais, apesar de estarem proibidos.||{{N|umar_conflict_6|||||}}|}; -{umar_conflict_6|Lorde Geomyr e sua guarda real, por outro lado, estão dando o melhor de si para reger daforma que eles consideram correta.||{{N|umar_conflict_7|||||}}|}; -{umar_conflict_7|Nós da Corja dos Ladrões tentamos não nos envolver no conflito. Nosso negócio está longe de ser afetado por tudo isso.||{{Obrigado por me contar.|umar_return_2|||||}{Que seja, isso não me diz respeito.|umar_return_2|||||}}|}; -{umar_andor_1|Ele pediu o meu apoio, e perguntou-me como encontrar Lodar.||{{Quem é Lodar?|umar_andor_2|||||}}|}; -{umar_andor_2|Lodar? Ele é um dos nossos famosos fabricantes de poção da Corja dos Ladrões. Ele pode curar e fabricar todos os tipos de poções fortes para dormir e poções de cura.||{{N|umar_andor_3|||||}}|}; -{umar_andor_3|Mas sua especialidade é, claro, seus venenos. Seu veneno pode prejudicar até mesmo o maior dos monstros.||{{O que Andor quer com ele?|umar_andor_4|||||}}|}; -{umar_andor_4|Eu não sei. Talvez ele estivesse à procura de uma poção.|{{0|andor|55|}}|{{Então, onde posso encontrar essa Lodar?|umar_lodar_1|||||}}|}; -{umar_lodar_1|Eu realmente não deveria dizer. Como chegar até ele é um dos nossos segredos bem guardados na corja. Seu refúgio é apenas acessível por nossos membros.||{{N|umar_lodar_2|||||}}|}; -{umar_lodar_2|No entanto, ouvi dizer que você nos ajudou a encontrar a chave de Luthor. Isso é algo que temos tentado obter por um longo tempo.||{{N|umar_lodar_3|||||}}|}; -{umar_lodar_3|Ok, eu vou te dizer como chegar ao esconderijo de Lodar. Mas você tem que prometer mantê-lo em segredo. Não conte a ninguém. Nem mesmo àqueles que parecam ser membros da Corja dos Ladrões.||{{Ok, eu prometo mantê-lo em segredo.|umar_lodar_4|||||}{Eu não posso dar nenhuma garantia, mas vou tentar.|umar_lodar_4|||||}}|}; -{umar_lodar_4|Bom. A coisa é, que você não só precisa apenas encontrar o lugar em si, mas você também precisa de pronunciar as palavras corretas para ser autorizado a entrar pelo guardião.||{{N|umar_lodar_5|||||}}|}; -{umar_lodar_5|O único que entende a linguagem do guardião é o velho Ogam em Vilegard.|{{0|lodar|10|}}|{{N|umar_lodar_6|||||}}|}; -{umar_lodar_6|Você deve viajar para a cidade de Vilegard e encontrar Ogam. Ele pode ajudá-lo a encontrar as palavras certas para entrar no esconderijo de Lodar.|{{0|lodar|15|}}|{{Como faço para chegar ao Vilegard?|umar_vilegard_1|||||}{Obrigado. Gostaria de lhe falar sobre outro assunto.|umar_return_2|||||}{Obrigado, adeus.|X|||||}}|}; -{umar_vilegard_1|Você viaja para sudeste de Fallhaven. Quando você chegar à estrada principal e a taberna Foaming Flask, dirija-se ao sul. Não é muito longe daqui, na direção sudeste.||{{N|umar_return_2|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{kaori_start|||{{|kaori_default_1|kaori:20||||}{|kaori_return_1|kaori:10||||}{|kaori_1|||||}}|}; -{kaori_1|Você não é bem-vindo aqui. Por favor, deixe agora.||{{Porque é que todos em Vilegard tanto medo de estranhos?|kaori_2|||||}{Jolnor me pediu para falar com você.|kaori_3|kaori:5||||}}|}; -{kaori_2|Eu não quero falar com você. Vá falar com Jolnor, na capela, se você quiser nos ajudar.|{{0|vilegard|10|}}|{{Ok, tchau.|X|||||}{Ok. Não me conte.|X|||||}}|}; -{kaori_3|Ele fez? Eu acho que você não é tão ruim assim como eu pensava.||{{N|kaori_4|||||}}|}; -{kaori_4|Ainda não estou convencido de que você não é um espião de Feygard enviado para causarnos dano.||{{O que você pode me dizer sobre Vilegard?|kaori_trust_1|||||}{Posso assegurar-lhe que não sou um espião.|kaori_5|||||}{Feygard, onde ou o que é isso?|kaori_trust_1|||||}}|}; -{kaori_5|Hm. Talvez não. Mas, novamente, talvez você seja. Ainda não estou certo.||{{Há algo que eu possa fazer para ganhar a sua confiança?|kaori_10|||||}{[Bribe]Como soaria 100 moedas de ouro? Será que isso poderia ajudá-lo a confiar em mim?|kaori_bribe|||||}}|}; -{kaori_trust_1|Eu ainda não confio totalmente em você o suficiente para falar sobre isso.||{{Há algo que eu possa fazer para ganhar a sua confiança?|kaori_10|||||}{[Bribe]Como soaria 100 moedas de ouro? Será que isso poderia ajudá-lo a confiar em mim?|kaori_bribe|||||}}|}; -{kaori_bribe|Você está tentando me subornar, garoto? Isso não vai funcionar comigo. Que uso eu teria para o ouro se você realmente fosse um espião?||{{Há algo que eu possa fazer para ganhar a sua confiança?|kaori_10|||||}}|}; -{kaori_10|Se você realmente quer me provar que você não é um espião de Feygard, há, na verdade, é algo que você pode fazer por mim.||{{N|kaori_11|||||}}|}; -{kaori_11|Até recentemente, temos vindo a utilizar poções especiais feitos de ossos enterrados, conforme a cura. Estas poções são poções de cura muito potentes, e foram usados ​​para diversas finalidades.||{{N|kaori_12|||||}}|}; -{kaori_12|Mas agora, elas foram proibidas por Lorde Geomyr, e seu uso parou.||{{N|kaori_13|||||}}|}; -{kaori_13|Eu realmente gostaria de ter um pouco mais dessas. Se você pode me trazer de 10 poções de farinha de ossos, eu poderia pensar em confiar em você um pouco mais.|{{0|kaori|10|}}|{{OK. Vou obter algumas poções para você.|kaori_14|||||}{Não. Se elas são proibidos, há provavelmente uma boa razão por trás disso. Você não deve usá-las.|kaori_15|||||}{Eu já tenho algumas dos poções comigo que posso lhe dar|kaori_20||bonemeal_potion|10|0|}}|}; -{kaori_return_1|Olá novamente. Você já encontrou as 10 poções de farinha de ossos qhe lhe pedi?||{{Não, eu ainda estou procurando por elas.|kaori_14|||||}{Sim, eu trouxe suas poções.|kaori_20||bonemeal_potion|10|0|}{Não. Se elas são proibidos, há provavelmente uma boa razão por trás disso. Você não deve usá-las.|kaori_15|||||}}|}; -{kaori_14|Bem, se apresse. Eu realmente preciso delas em breve.|||}; -{kaori_15|Ok. Agora, por favor me deixe.|||}; -{kaori_20|Bom. Dê-me as porções.|{{0|kaori|20|}}|{{N|kaori_21|||||}}|}; -{kaori_21|Sim, iss é suficiente. Muito obrigado, garoto. Talvez você seja legal, apesar de tudo. Que a Sombra cuide de você.||{{N|kaori_default_1|||||}}|}; -{kaori_default_1|Existe algo que você gostaria de falar?||{{O que você pode me dizer sobre Vilegard?|kaori_vilegard_1|||||}{Porque é que todos em Vilegard têm tanto medo de estranhos?|kaori_vilegard_2|||||}}|}; -{kaori_vilegard_1|Você deveria ir falar com Erttu se quiser saber sobe o passado de Vilegard. Ele mora aqui há muito mais tempo do que eu.||{{Ok, vou fazer isso.|kaori_default_1|||||}}|}; -{kaori_vilegard_2|Temos um histórico de pessoas que vêm aqui e faze, travessuras. Com o tempo, aprendemos que manter-nos isolados funciona melhor.||{{Isso soa como uma boa ideia.|kaori_vilegard_3|||||}{Isso parece errado.|kaori_vilegard_3|||||}}|}; -{kaori_vilegard_3|Enfim, é por isso que somos tão desconfiados de estranhos.||{{Eu percebo.|kaori_default_1|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{vilegard_villager_1|||{{|vilegard_villager_friend|vilegard:30||||}{|vilegard_villager_1_0|||||}}|}; -{vilegard_villager_1_0|Olá. Quem é você? Você não é bem-vindo aqui em Vilegard.||{{Você viu meu irmão, Andor, por aqui?|vilegard_villager_1_2|||||}}|}; -{vilegard_villager_1_2|Não, eu não tenho certeza. Mesmo se eu tivesse, por que eu iria lhe dizer?|||}; -{vilegard_villager_2|||{{|vilegard_villager_friend|vilegard:30||||}{|vilegard_villager_2_0|||||}}|}; -{vilegard_villager_2_0|pela Sombra, você é um estranho. Nós não gostamos de estrangeiros aqui.||{{Porque é que todos na Vilegard tanto medo de estranhos?|vilegard_villager_5_1|||||}}|}; -{vilegard_villager_3|||{{|vilegard_villager_friend|vilegard:30||||}{|vilegard_villager_3_0|||||}}|}; -{vilegard_villager_3_0|Esta é Vilegard. Você não vai encontrar conforto aqui, estranho.|||}; -{vilegard_villager_4|||{{|vilegard_villager_friend|vilegard:30||||}{|vilegard_villager_4_0|||||}}|}; -{vilegard_villager_4_0|Você parece que outro garoto que correu por aqui. Provavelmente causando problemas, como sempre, estrangeiros.||{{Você viu meu irmão Andor?|vilegard_villager_1_2|||||}{Eu não estou aqui para causar problemas.|vilegard_villager_4_2|||||}{Ah, sim, eu também estou aqui para causar problemas.|vilegard_villager_4_3|||||}}|}; -{vilegard_villager_4_2|Não, eu tenho certeza que você é arruaceiro. Todo estrangeiro é igual.|||}; -{vilegard_villager_4_3|Sim, eu sei. É por isso que nós não queremos o seu tipo por aqui. Você deve deixar Vilegard enquanto ainda pode.|||}; -{vilegard_villager_5|||{{|vilegard_villager_friend|vilegard:30||||}{|vilegard_villager_5_0|||||}}|}; -{vilegard_villager_5_0|Olá estrangeiro. Você parece perdido, isso é bom. Agora deixe Vilegard enquanto pode.||{{Porque é que todos em Vilegard tanto medo de estranhos?|vilegard_villager_5_1|||||}}|}; -{vilegard_villager_5_1|Eu não confio em você. Você deve procurar o Jolnor na capela se quer alguma simpatia.|{{0|vilegard|10|}}||}; -{vilegard_villager_friend|Olá. Ouvi dizer que você nos ajudou-nos, gente simples, aqui em Vilegard. Por favor, fique por quanto tempo você quiser amigo.||{{Obrigado. Você viu meu irmão Andor por aqui?|vilegard_villager_friend_1|||||}{Obrigado. Vejo você mais tarde.|X|||||}}|}; -{vilegard_villager_friend_1|Seu irmão? Não, eu não vi ninguém que se parece com você. Mas, novamente, eu nunca presto muita atenção em estranhos.||{{Obrigado, adeus.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{erttu_1|Olá estrangeiro. Em geral, não gostamos de estranhos aqui em Vilegard, mas há algo em você que me parece familiar.||{{N|erttu_default|||||}}|}; -{erttu_default|O que você quer falar?||{{Porque é que todos na Vilegard são tão desconfiados de estranhos?|erttu_distrust_1|vilegard:10||||}{O que você pode me dizer sobre Vilegard?|erttu_vilegard_1|||||}}|}; -{erttu_distrust_1|A maioria de nós que vivemos aqui em Vilegard têm uma história de confiar muito nas pessoas. No finall, essas pessoas nos feriram muito.||{{N|erttu_distrust_2|||||}}|}; -{erttu_distrust_2|Agora tendemos a suspeitar de todos,solicitando aos estrangeiros que vêm aqui que ganhem nossa confiança, ajudando-nos em primeiro lugar.||{{N|erttu_distrust_3|||||}}|}; -{erttu_distrust_3|Além disso, outras pessoas geralmente olham atravessado para nós aqui em Vilegard por algum motivo. Especialmente aqueles esnobes de Feygard e das cidades do norte.||{{O que mais pode me dizer sobre Vilegard?|erttu_vilegard_1|||||}}|}; -{erttu_vilegard_1|Temos quase tudo o que precisamos aqui no Vilegard. Nosso centro da vila é a capela.||{{N|erttu_vilegard_2|||||}}|}; -{erttu_vilegard_2|A capela serve como nosso lugar de culto para a Sombra, e também como o nosso lugar para se reunir ao discutir questões maiores em nossa aldeia.||{{N|erttu_vilegard_3|||||}}|}; -{erttu_vilegard_3|Além da capela, temos uma taberna, um ferreiro e um armeiro.||{{Obrigado pela informação. Gostaria de lhe falar sobre outro assunto.|erttu_default|||||}{Obrigado pela informação. Tchau.|X|||||}{Uau, nada mais? Eu me pergunto o que estou fazendo em uma aldeia insignificante como esta.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{dunla_default|Você parece um cara inteligente. Precisa de algum suprimento?||{{Claro, deixe-me ver o que você tem disponível.|S|||||}{O que você pode me dizer sobre si mesmo?|dunla_1|||||}}|}; -{dunla_1|Eu? Eu não sou ninguém. Você nem sequer me vê. Você certamente não falou comigo.|||}; -{tharwyn_select|||{{|tharwyn_1|vilegard:30||||}{|vilegard_shop_notrust|||||}}|}; -{tharwyn_1|Olá lá. Ouvi dizer que você ajudou Jolnor na capela. Você tem o meu agradecimento, amigo.||{{N|tharwyn_2|||||}}|}; -{tharwyn_2|Sente-se em qualquer lugar. O que eu posso fazer por você?||{{Mostre-me os alimentos que você possui.|S|||||}}|}; -{vilegard_tavern_drunk_1|Olhe! Um garoto perdido. Aqui, tome algum hidromel, garoto.||{{Não, obrigado.|X|||||}{Cuidado com a língua, bêbado.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{jolnor_select_1|||{{|jolnor_default_3|vilegard:30||||}{|jolnor_default_2|vilegard:20||||}{|jolnor_default|||||}}|}; -{jolnor_default|Caminhe com a Sombra, meu filho.||{{Que lugar é esse?|jolnor_chapel_1|||||}{Disseram-me para falar com você sobre o porquê todos em Vilegard suspeitam de estranhos.|jolnor_suspicious_1|vilegard:10||||}}|}; -{jolnor_default_2|Caminhe com a Sombra, meu filho.||{{Você pode me dizer mais uma vez que lugar é este?|jolnor_chapel_1|||||}{Vamos falar sobre essas missões para ganhar a confiança de que você falou anteriormente.|jolnor_quests_1|||||}{Eu preciso de cura. Posso ver os itens que você tem disponíveis?|jolnor_shop_1|||||}}|}; -{jolnor_default_3|Caminhe com a Sombra, meu amigo.||{{Você pode me dizer mais uma vez que lugar é este?|jolnor_chapel_1|||||}{Eu preciso de cura. Posso ver os itens que você tem disponíveis?|jolnor_shop_1|||||}}|}; -{jolnor_chapel_1|Este é o lugar de adoração em Vilegard para a Sombra. Louvamos a Sombra em todo o seu poder e glória.||{{Você pode me dizer mais sobre a Sombra?|jolnor_shadow_1|||||}{Eu preciso de cura. Posso ver os itens que você tem disponíveis?|jolnor_shop_1|||||}{Que seja. Apenas mostre-me os seus bens.|jolnor_shop_1|||||}}|}; -{jolnor_shadow_1|A Sombra nos protege dos perigos da noite. Ele nos mantém seguros e nos conforta quando dormimos.||{{N|jolnor_select_1|||||}}|}; -{jolnor_shop_1|||{{|S|vilegard:30||||}{|jolnor_shop_2|||||}}|}; -{jolnor_shop_2|Eu não confio em você o suficiente para se sentir confortável com você na negociação.||{{Por que você é tão desconfiado?|jolnor_suspicious_1|||||}{Muito bem.|jolnor_select_1|||||}}|}; -{jolnor_suspicious_1|Desconfiado? Não, eu não chamaria isso de desconfiança. Eu prefiro chamá-lo de que somos cuidadosos hoje em dia.||{{N|jolnor_suspicious_2|||||}}|}; -{jolnor_suspicious_2|A fim de ganhar a confiança da aldeia, um estranho deve provar que não está aqui para causar problemas.||{{Parece uma boa ideia. Há um monte de pessoas egoístas lá fora.|jolnor_suspicious_3|||||}{Isso soa realmente desnecessário. Por que não confiar nas pessoas em primeiro lugar?|jolnor_suspicious_4|||||}}|}; -{jolnor_suspicious_3|Sim, certo. Você parece entender-nos bem, eu gosto disso.||{{Há algo que eu possa fazer para ganhar a sua confiança?|jolnor_gaintrust_select|||||}}|}; -{jolnor_suspicious_4|Nós aprendemos com o passado que não devemos confiar em estranhos, e você é um estrangeiro. Por que nós deveriamos confiar em você?||{{O que posso fazer para ganhar a sua confiança?|jolnor_gaintrust_select|||||}{Você está certo. Você provavelmente não deve confiar em mim.|X|||||}}|}; -{jolnor_gaintrust_select|||{{|jolnor_gaintrust_return_2|vilegard:30||||}{|jolnor_gaintrust_return|vilegard:20||||}{|jolnor_gaintrust_1|||||}}|}; -{jolnor_gaintrust_return_2|Com a sua ajuda anterior, você já ganhou a nossa confiança.||{{N|jolnor_default_3|||||}}|}; -{jolnor_gaintrust_return|Como eu disse antes, você tem que ajudar algumas pessoas aqui em Vilegard para ganhar nossa confiança.||{{N|jolnor_quests_1|||||}}|}; -{jolnor_gaintrust_1|Se você fizer-nos alguns favores, podemos considerar a confiar em você. Há três pessoas que eu posso pensar que são influentes aqui em Vilegard, que você deve tentar ajudar.||{{N|jolnor_gaintrust_2|||||}}|}; -{jolnor_gaintrust_2|Primeiro, há Kaori. Ela vive na parte norte de Vilegard. Pergunte a ela se ela precisa de alguma ajuda.|{{0|kaori|5|}}|{{OK. Falar com Kaori. Entendi.|jolnor_gaintrust_3|||||}}|}; -{jolnor_gaintrust_3|Depois, há Wrye. Wrye também vive-se na parte norte da Vilegard. Muitas pessoas aqui em Vilegard procuram seus conselhos em vários assuntos.||{{N|jolnor_gaintrust_4|||||}}|}; -{jolnor_gaintrust_4|Recentemente, ela perdeu seu filho de forma trágica. Se você puder ganhar a sua confiança, você vai ter uma forte aliada aqui.|{{0|wrye|10|}}|{{Falar com Wrye. Entendi.|jolnor_gaintrust_5|||||}}|}; -{jolnor_gaintrust_5|E por último mas não menos importante, eu tenho um favor a pedir-lhe também.||{{Que favor é esse?|jolnor_gaintrust_6|||||}}|}; -{jolnor_gaintrust_6|No norte de Vilegard existe uma taverna chamada Foaming Flask. Na minha opinião, esta taverna é um pretexto para um posto da guarda de Feygard.||{{N|jolnor_gaintrust_7|||||}}|}; -{jolnor_gaintrust_7|A taberna é quase sempre visitado pela guarda real de Feygard, a serviço do Lorde Geomyr.||{{N|jolnor_gaintrust_8|||||}}|}; -{jolnor_gaintrust_8|Eles estão aqui provavelmente para nos espionar, já que somos seguidores do Sombra. As forças de Lorde Geomyr sempre tentam fazer a vida difícil para nós e para a Sombra.||{{Sim, eles parecem ser encrenqueiros em todo lugar.|jolnor_gaintrust_9|||||}{Tenho certeza que eles têm suas razões para fazer o que eles fazem.|jolnor_gaintrust_10|||||}}|}; -{jolnor_gaintrust_9|Certo. Desordeiros, certamente.||{{O que você quer que eu faça?|jolnor_gaintrust_11|||||}}|}; -{jolnor_gaintrust_10|Sim, o propósito deles é tornar a vida miserável para nós, eu tenho certeza.||{{O que você quer que eu faça?|jolnor_gaintrust_11|||||}}|}; -{jolnor_gaintrust_11|Meus relatórios dizem que há um guarda do lado de fora da taberna, para manter um olho sobre os perigos potenciais.||{{N|jolnor_gaintrust_12|||||}}|}; -{jolnor_gaintrust_12|Eu quero que você verifique se o guarda desaparece de alguma forma. Como você vai fazer isso é problema seu.|{{0|jolnor|10|}}|{{Eu não tenho certeza se devo perturbar os guardas de patrulha Feygard. Isso poderia realmente meter-me em problemas.|jolnor_gaintrust_13|||||}{Pela Sombra, vou fazer o que você pedir.|jolnor_gaintrust_14|||||}{Ok, eu espero que isso leve a um tesouro no final.|jolnor_gaintrust_14|||||}}|}; -{jolnor_gaintrust_13|A escolha é sua. Você pode pelo menos ir verificar a taberna e veja se você encontra qualquer coisa suspeita.||{{Talvez.|jolnor_gaintrust_15|||||}}|}; -{jolnor_gaintrust_14|Bom. Reporte-me ao retornar quando você o fizer.||{{N|jolnor_gaintrust_15|||||}}|}; -{jolnor_gaintrust_15|Então, a fim de ganhar a nossa confiança aqui em Vilegard, eu sugiro que você ajude Kaori, Wrye e eu.|{{0|vilegard|20|}}|{{Obrigado pela informação. Eu estarei de volta quando eu tiver algo a relatar.|X|||||}}|}; -{jolnor_quests_1|Sugiro que você ajudar Kaori, Wrye e eu para ganhar nossa confiança.||{{Sobre o que o guarda do lado de fora da taverna Foaming Flask ...|jolnor_guard_select|||||}{Sobre as tarefas ...|jolnor_quests_2|||||}{Não importa, vamos falar de outros assuntos.|jolnor_select_1|||||}}|}; -{jolnor_quests_2|Sim, o que tem com eles?||{{O que eu deveria fazer de novo?|jolnor_suspicious_2|||||}{Fiz todas as tarefas que você me pediu para fazer.|jolnor_quests_select_1|jolnor:30||||}{Não importa, vamos falar de outros assuntos.|jolnor_select_1|||||}}|}; -{jolnor_guard_select|||{{|jolnor_guard_completed|jolnor:30||||}{|jolnor_guard_1|||||}}|}; -{jolnor_guard_1|Sim, o que tem com ele? Você já se livrou dele?||{{Sim, ele vai deixar o cargo assim que seu turno encerrar.|jolnor_guard_2|jolnor:20||||}{Sim, ele foi removido.|jolnor_guard_2||ffguard_qitem|1|0|}{Não, mas estou trabalhando nisso.|jolnor_gaintrust_14|||||}}|}; -{jolnor_guard_completed|Sim, você lidou com ele anteriormente. Agradeço pela ajuda.||{{N|jolnor_quests_1|||||}}|}; -{jolnor_guard_2|Muito bom. Agradeço pela ajuda.|{{0|jolnor|30|}}|{{Não tem problema. Vamos voltar para essas outras tarefas que falamos.|jolnor_quests_2|||||}}|}; -{jolnor_quests_select_1|||{{|jolnor_quests_select_2|kaori:20||||}{|jolnor_quests_kaori_1|||||}}|}; -{jolnor_quests_kaori_1|Você ainda precisa ajudar Kaori com sua tarefa.||{{N|jolnor_select_1|||||}}|}; -{jolnor_quests_select_2|||{{|jolnor_quests_completed|wrye:90||||}{|jolnor_quests_wrye_1|||||}}|}; -{jolnor_quests_wrye_1|Você ainda precisa ajudar Wrye com sua tarefa.||{{N|jolnor_select_1|||||}}|}; -{jolnor_quests_completed|Bom. Você ajudou a todos nós três.|{{0|vilegard|30|}}|{{N|jolnor_quests_completed_2|||||}}|}; -{jolnor_quests_completed_2|Suponho que isso mostra alguma dedicação, e que estejamos prontos a confiar em você agora.||{{N|jolnor_quests_completed_3|||||}}|}; -{jolnor_quests_completed_3|Você tem nosso agradecimento, amigo. Você sempre vai encontrar um abrigo aqui em Vilegard. Seja bem-vindo a nossa aldeia.||{{N|jolnor_select_1|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{alynndir_1|Olá lá. Bem-vindo ao meu quarto.||{{O que você faz aqui?|alynndir_2|||||}{O que você pode me dizer sobre as vizinhanças?|alynndir_3|||||}}|}; -{alynndir_2|Principalmente, eu negocio com viajantes da estrada principal a caminho Nor City.||{{Você tem alguma coisa para vender?|S|||||}{O que você pode me dizer sobre as vizinhanças?|alynndir_3|||||}}|}; -{alynndir_3|Oh, não há muito por aqui. Vilegard está a oeste e para o leste, Brightport.||{{N|alynndir_4|||||}}|}; -{alynndir_4|Ao norte é só floresta. Mas há algumas coisas estranhas acontecendo lá.||{{N|alynndir_5|||||}}|}; -{alynndir_5|Eu ouvi gritos terríveis que vêm da floresta para o noroeste.||{{N|alynndir_6|||||}}|}; -{alynndir_6|Eu realmente me pergunto o que existe lá em cima.||{{Até logo.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{vilegard_armorer_select|||{{|vilegard_armorer_1|vilegard:30||||}{|vilegard_shop_notrust|||||}}|}; -{vilegard_armorer_1|Olá. Por favor, veja minha selecção de armaduras finas e escudos.||{{Deixe-me ver a sua lista de mercadorias|S|||||}}|}; -{vilegard_smith_select|||{{|vilegard_smith_1|feygard_shipment:56||||}{|vilegard_smith_fg_2|feygard_shipment:55||||}{|vilegard_smith_1|vilegard:30||||}{|vilegard_shop_notrust|||||}}|}; -{vilegard_smith_1|Olá lá. Ouvi dizer que você nos ajudou aqui em Vilegard. Em que posso ajudá-lo?||{ - {Posso ver os itens que você tem para venda?|S|||||} - {Eu tenho um carregamento de itens de Feygard para você.|vilegard_smith_fg_1|feygard_shipment:35|fg_ironsword|10|0|} - }|}; -{vilegard_shop_notrust|Você é um estrangeiro. Nós não gostamos de estrangeiros aqui em Vilegard. Por favor, deixe.||{{Porque é que todos em Vilegard são tão desconfiados de estranhos?|vilegard_shop_notrust_2|||||}{Posso ver os itens que você tem para venda?|vilegard_shop_notrust_2|||||}}|}; -{vilegard_shop_notrust_2|Eu não confio em você. Você deve ir ver Jolnor na capela se você quer alguma simpatia.|{{0|vilegard|10|}}||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{ogam_1|Crença. Poder. Lutar.||{{O quê?|ogam_2|||||}{Disseram-me para vê-lo.|ogam_2|lodar:15||||}}|}; -{ogam_2|Nas costas estão uma carga alta e baixa.||{{O quê?|ogam_3|||||}{Por favor, continue.|ogam_3|||||}{Olá? Umar da Corja dos Ladrões de Fallhaven enviou-me para vê-lo.|ogam_3|lodar:15||||}}|}; -{ogam_3|Escondendo-se à Sombra.||{{N|ogam_4|||||}}|}; -{ogam_4|Dois iguais em corpo e mente.||{{Você vai dizer algo que faça sentido?|ogam_5|||||}{O que quer dizer?|ogam_5|||||}}|}; -{ogam_5|O legal é o caótico.||{{Olá? Você sabe como eu posso alcançar refúgio de Lodar?|ogam_lodar_1|lodar:15||||}{Eu não entendo.|ogam_6|||||}}|}; -{ogam_lodar_1|Lodar? Comichão, claro, machucado.||{{N|ogam_6|||||}}|}; -{ogam_6|Sim. A verdadeira forma. Contemple.||{{N|ogam_7|||||}}|}; -{ogam_7|Escondendo na Sombra.||{{A Sombra?|ogam_4|||||}{Você está ouvindo o que eu digo?|ogam_4|||||}{Olá? Você sabe como eu posso alcançar refúgio de Lodar?|ogam_lodar_2|lodar:15||||}}|}; -{ogam_lodar_2|Lodar, a meio caminho entre a sombra e a luz. Formações rochosas.||{{Ok, a meio caminho entre dois lugares. Algumas rochas?|ogam_lodar_3|||||}{Uh. Pode repetir?|ogam_lodar_3|||||}}|}; -{ogam_lodar_3|Guardião. Brilho da Sombra.|{{0|lodar|20|}}|{{Brilho da Sombra? São essas as palavras que o guardião precisa ouvir?|ogam_lodar_4|||||}{\'Brilho da Sombra\'? Eu reconheço isso de algum lugar.|ogam_lodar_4|bonemeal:30||||}}|}; -{ogam_lodar_4|Torneamento. Torção. Forma clara.||{{O que significa isso?|ogam_1|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{ff_cook_1|Olá. Você quer alguma coisa da cozinha?||{{Claro, deixe-me ver o que você tem pronto.|ff_cook_3|||||}{Isso cheira horrível. O que você está cozinhando?|ff_cook_2|||||}{Isso cheira maravilhoso. O que você está cozinhando?|ff_cook_2|||||}}|}; -{ff_cook_2|Oh isso? Isto é suposto ser um ensopado de Anklebiter. Precisa de mais tempero, eu acho.||{{Estou ansioso para prová-lo quando terminar. Boa sorte no preparo.|X|||||}{Yuck, que aspecto horrível. Você pode realmente comer essas coisas? Estou enojado, adeus.|X|||||}}|}; -{ff_cook_3|Não, sinto muito, eu não tenho nenhuma comida para vender. Vá falar com Torilo lá se você quer alguma bebida ou comida pronta.|||}; -{torilo_1|Bem-vindo à taverna Foaming Flask. Congratulamo-nos com todos os viajantes aqui.||{{Obrigado. Você é o dono de pousada aqui?|torilo_2|||||}{Você viu um menino chamado Rincel por aqui recentemente?|torilo_rincel_1|wrye:41||||}}|}; -{torilo_2|Eu sou Torilo, o proprietário deste estabelecimento. Por favor, sinta-se à vontate. Sente-se onde quiser.||{{Posso ver o seu cardápio?|torilo_shop_1|||||}{Você tem algum lugar que eu possa descansar?|torilo_rest_select|||||}{Aqueles guardas estão sempre gritando e berrando tanto?|torilo_guards_1|||||}}|}; -{torilo_default|Houve alguma coisa que você queria?||{{Posso ver o que você tem disponível para comida e bebida?|torilo_shop_1|||||}{são aqueles guardas sempre gritando e berrando tanto?|torilo_guards_1|||||}{Você viu um menino chamado Rincel por aqui recentemente?|torilo_rincel_1|wrye:41||||}}|}; -{torilo_shop_1|Absolutamente. Temos uma grande variedade de alimentos e bebidas.||{{N|S|||||}}|}; -{torilo_rest_select|||{{|torilo_rest_1|nondisplay:10||||}{|torilo_rest_3|||||}}|}; -{torilo_rest_1|Sim, você já alugou o quarto dos fundos.||{{N|torilo_rest_2|||||}}|}; -{torilo_rest_2|Por favor, sinta-se livre para usá-lo sempre que quiser. Eu espero que você possa dormir um pouco, mesmo com esses guardas gritando suas canções.||{{Obrigado.|torilo_default|||||}}|}; -{torilo_rest_3|Ah, sim. Temos um quarto muito confortável aos fundos daqui, na taberna Foaming Flask.||{{N|torilo_rest_4|||||}}|}; -{torilo_rest_4|Disponível por apenas 250 moedas de ouro. Então você pode usá-lo tanto quanto você quiser.||{{250 de ouro? Claro, isso não é nada para mim. Aqui está.|torilo_rest_6||gold|250|0|}{250 de ouro é muito, mas eu acho que vale a pena. Aqui está.|torilo_rest_6||gold|250|0|}{Isso soa um pouco demais para mim.|torilo_rest_5|||||}}|}; -{torilo_rest_5|Oh, bem, você é que está perdendo.||{{N|torilo_default|||||}}|}; -{torilo_rest_6|Obrigado. O quarto agora está alugado para você.|{{0|nondisplay|10|}}|{{N|torilo_rest_2|||||}}|}; -{torilo_rincel_1|Rincel? Não, não que eu me lembre. Na verdade, nós não temos muitas crianças aqui. *Rindo*||{{N|torilo_default|||||}}|}; -{torilo_guards_1|*Suspiro* Sim. Esses guardas já estão aqui há algum tempo.||{{N|torilo_guards_2|||||}}|}; -{torilo_guards_2|Eles parecem estar à procura de algo ou de alguém, mas eu não tenho certeza de quem ou do quê.||{{N|torilo_guards_3|||||}}|}; -{torilo_guards_3|Espero que a Sombra vele sobre nós, para que nada de ruim aconteca com a taberna Foaming Flask por causa deles.||{{N|torilo_default|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{ambelie_1|O quê? Um plebeu! Fique longe de mim. Eu poderia pegar alguma doença.||{{Quem é você?|ambelie_2|||||}{O que é que uma mulher nobre como você está fazendo em um lugar como este?|ambelie_5|||||}{Eu ficaria feliz em permanecer longe de uma esnobe como você.|X|||||}}|}; -{ambelie_2|Eu sou Ambelie da casa de Laumwill de Feygard. Tenho certeza que você deve ter ouvido falar de mim e de minha casa.||{{Ah sim .. hum .. Casa de Laumwill em Feygard. Claro.|ambelie_3|||||}{Eu nunca ouvi falar de você ou de sua casa.|ambelie_4|||||}{Onde fica Feygard?|ambelie_3|||||}}|}; -{ambelie_3|Feygard, a grande cidade da paz. Certamente você deve saber disso. Ao noroeste em nosso grande reino.||{{O que é uma mulher nobre como você está fazendo em um lugar como este?|ambelie_5|||||}{Não, eu nunca ouvi falar.|ambelie_4|||||}}|}; -{ambelie_4|Pfft. Isso só prova que tudo o que ouvi de vocês selvagens aqui na terra do sul. Então, uma criatura sem nenhuma educação.|||}; -{ambelie_5|Eu, Ambelie, da casa de Laumwill em Feygard, estou em uma excursão para o sul de Nor City.||{{N|ambelie_6|||||}}|}; -{ambelie_6|Uma excursão para ver se realmente Nor City é tudo o que eu ouvi falar a respeito. Se ela realmente pode comparar-se ao glamour da grande cidade de Feygard.||{{Nor City, onde é isso?|ambelie_7|||||}{Se você gosta tanto de Feygard, por que você a deiou?|ambelie_9|||||}}|}; -{ambelie_7|Você não sabe de Nor City? Vou tomar nota de que os selvagens aqui nunca ouviram falar da cidade.||{{N|ambelie_8|||||}}|}; -{ambelie_8|Estou começando a ter cada vez mais certeza de que Nor City, nem mesmo em meus piores pesadelos, possa ser comparável à grande cidade de Feygard.||{{Boa sorte em sua excursão.|ambelie_10|||||}}|}; -{ambelie_9|Todos os nobres em Feygard continuam falando sobre a Sombra misteriosa de Nor City. Eu só tenho que ver por mim mesmo.||{{Nor City, onde é isso?|ambelie_7|||||}{Boa sorte em sua excursão.|ambelie_10|||||}}|}; -{ambelie_10|Obrigado. Agora, por favor vá embora antes que alguém me vê falando com um plebeu como você.||{{Plebeu? Você está tentando me insultar? Tchau.|X|||||}{Seja como for, você provavelmente não iria sobreviver até mesmo a uma vespa da floresta.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{ff_guard_1|Ha ha, conte-lhe, Garl!\n\n*burp*||{{N|ff_guard_2|||||}}|}; -{ff_guard_2|Cantar, beber, lutar! Todos os que se opõem Feygard vão cair!||{{N|ff_guard_3|||||}}|}; -{ff_guard_3|Vamos esta alto. Feygard, cidade da paz!||{{Eu acho melhor ir embora.|X|||||}{Feygard, onde é isso?|ff_guard_4|||||}{Você viu um menino chamado Rincel por aqui recentemente?|ff_guard_rincel_1|wrye:41||||}}|}; -{ff_guard_4|O que, você não ouviu falar de Feygard, garoto? Basta seguir a estrada a noroeste e você vai ver a grande cidade de Feygard crescendo além das copas das árvores.||{{Obrigado. Tchau.|X|||||}}|}; -{ff_guard_rincel_1|Um menino?! Além de você, não vi nenhuma outra criança por aqui.||{{N|ff_guard_rincel_2|||||}}|}; -{ff_guard_rincel_2|Verifique com o capitão ali. Ele está aqui há mais tempo do que nós.||{{Obrigado, adeus.|X|||||}{Obrigado. A Sombra esteja com você.|ff_guard_shadow_1|||||}}|}; -{ff_guard_shadow_1|Não traga essa Sombra amaldiçoada por aqui, filho. Não queremos nada disso. Agora saia.|||}; -{ff_captain_1|Você está perdido, filho? Este não é lugar para um garoto como você.||{ - {Eu tenho um carregamento de espadas de ferro da parte de Gandoren para você.|ff_captain_vg_items_1|feygard_shipment:56|fg_ironsword_d|10|0|} - {Eu tenho um carregamento de espadas de ferro da parte de Gandoren para você.|ff_captain_fg_items_1|feygard_shipment:25|fg_ironsword|10|0|} - {Quem é você?|ff_captain_2|||||} - {Você já viu um menino chamado Rincel por aqui recentemente?|ff_captain_rincel_1|wrye:41||||} - }|}; -{ff_captain_2|Eu sou o capitão da guarda da patrulha. Eu sou da grande cidade de Feygard.||{{Feygard, onde é isso?|ff_captain_4|||||}{O que você faz aqui?|ff_captain_3|||||}}|}; -{ff_captain_3|Estamos viajando pela estrada principal para garantir que os comerciantes e viajantes estejam seguros. Nós mantemos a paz por aqui.||{{Você mencionou Feygard. Onde é isso?|ff_captain_4|||||}}|}; -{ff_captain_4|A grande cidade de Feygard é a maior visão que você irá ver em sua vida. Siga o noroeste da estrada.||{{Obrigado. A Sombra esteja com você.|ff_captain_shadow_1|||||}{Obrigado, adeus.|X|||||}}|}; -{ff_captain_rincel_1|Houve um garoto rondando por aqui, tempos atrás.||{{N|ff_captain_rincel_2|||||}}|}; -{ff_captain_rincel_2|Eu nunca falei com ele, então eu não sei se ele é quem você está procurando.||{{Ok, isso pode ser algo. De qualquer maneira vale a pena conferir.|ff_captain_rincel_3|||||}}|}; -{ff_captain_rincel_3|Eu notei que ele saiu da taverna Foaming Flask, dirigindo-se para o oeste.|{{0|wrye|42|}}|{{Oeste. Entendi. Obrigado pela informação.|ff_captain_rincel_4|||||}}|}; -{ff_captain_rincel_4|Sempre feliz em ajudar. Qualquer coisa para a glória de Feygard.||{{A Sombra esteja com você.|ff_captain_shadow_1|||||}{Até logo.|X|||||}}|}; -{ff_captain_shadow_1|A Sombra? Não me diga que você acredita nessas coisas. Na minha experiência, apenas encrenqueiros falam da Sombra.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{ff_outsideguard_select|||{{|ff_outsideguard_trouble_24|jolnor:20||||}{|ff_outsideguard_1|||||}}|}; -{ff_outsideguard_1|Olá. Se você deveria estar aqui? Esta é uma taverna, você sabe. O Foaming Flask, para ser preciso.||{{Quem é você?|ff_outsideguard_2|||||}}|}; -{ff_outsideguard_2|Eu sou um membro da patrulha da guarda real Feygard.||{{Feygard, onde é isso?|ff_outsideguard_3|||||}{O que você faz aqui?|ff_outsideguard_3|||||}}|}; -{ff_outsideguard_3|Vá falar com o capitão dentro se você quer conversar. Devo ficar atento em meu posto.||{{OK. Tchau.|X|||||}{Por que você deve ficar de guarda na porta de uma taverna?|ff_outsideguard_trouble_1|jolnor:10||||}}|}; -{ff_outsideguard_trouble_1|Realmente, eu não posso falar com você. Eu poderia ficar em apuros.||{{OK. Eu não vou te incomodar mais. A Sombra esteja com você.|ff_outsideguard_shadow_1|||||}{OK. Eu não vou te incomodar mais. Tchau.|X|||||}{Qual o problema?|ff_outsideguard_trouble_2|||||}}|}; -{ff_outsideguard_trouble_2|Não, sério, o capitão pode me ver. Eu devo estar sempre vigilante em meu posto. *Suspiro*||{{OK. Eu não vou te incomodar mais. A Sombra esteja com você.|ff_outsideguard_shadow_1|||||}{OK. Eu não vou te incomodar mais. Tchau.|X|||||}{Você gosta do seu trabalho aqui?|ff_outsideguard_trouble_3|||||}}|}; -{ff_outsideguard_trouble_3|O meu trabalho? Eu acho ok estar na guarda real. Quer dizer, Feygard é um lugar muito agradável para se viver||{{N|ff_outsideguard_trouble_4|||||}}|}; -{ff_outsideguard_trouble_4|Mas ficar de guarda aqui no meio do nada, não é realmente a razão pela qual alistei-me.||{{Aposto que não. Este lugar é realmente chato.|ff_outsideguard_trouble_5|||||}{Você deve estar cansado de ficar apenas aqui.|ff_outsideguard_trouble_5|||||}}|}; -{ff_outsideguard_trouble_5|Sim, eu sei. Eu prefiro estar dentro da taberna bebendo, como os oficiais superiores e o capitão. Por que é que eu tenho que ficar aqui?||{{Pelo menos a Sombra te guarda.|ff_outsideguard_shadow_1|||||}{Por que não abandona o posto, se não é o que você quer fazer?|ff_outsideguard_trouble_7|||||}{Pela causa maior da guarda real: para manter a paz, vale a pena, a longo prazo.|ff_outsideguard_trouble_6|||||}}|}; -{ff_outsideguard_trouble_6|Sim, você está certo, é claro. Nosso dever para Feygard e para manter a paz de tudo o que quiser atrapalhá-la.||{{Sim. A Sombra não vê com bons olhos aqueles que perturbam a paz.|ff_outsideguard_shadow_1|||||}{Sim. Os baderneiros devem ser punidos.|ff_outsideguard_trouble_8|||||}}|}; -{ff_outsideguard_trouble_7|Não, minha lealdade é para com Feygard. Se eu sair, eu teria deixado a minha lealdade para trás.||{{O que significa isso, se você não está satisfeito com o que você faz?|ff_outsideguard_trouble_9|||||}{Sim, isso parece bom. Feygard soa como um lugar agradável, pelo que ouvi.|ff_outsideguard_trouble_6|||||}}|}; -{ff_outsideguard_trouble_8|Certo. Eu gosto de você, garoto. Quer saber: eu poderia colocar recomendá-lo ao quartel, quando voltarmos para Feygard, se quiser.||{{Claro! Parece bom para mim.|ff_outsideguard_trouble_20|||||}{Não, obrigado. Eu tenho já tenho o suficiente para fazer.|ff_outsideguard_trouble_20|||||}}|}; -{ff_outsideguard_trouble_9|Bem, eu estou convencido de que temos que seguir as leis estabelecidas pelos nossos governantes. Se não obedecer a lei, o que nos resta?||{{N|ff_outsideguard_trouble_10|||||}}|}; -{ff_outsideguard_trouble_10|Caos. Desordem.\n\nNão, eu prefiro submeter-me às leis de Feygard. Minha lealdade é forte.||{{Parece bom para mim. As leis são feitas para serem seguidas.|ff_outsideguard_trouble_8|||||}{Eu não concordo. Devemos seguir nosso coração, mesmo que isso vá contra as regras.|ff_outsideguard_trouble_12|||||}}|}; -{ff_outsideguard_trouble_20|Existe algo que você gostaria?||{{Eu estava me perguntando sobre o porquê você ficar de guarda aqui.|ff_outsideguard_trouble_21|||||}}|}; -{ff_outsideguard_trouble_12|Isso me incomoda. Poderíamos nos ver novamente no futuro. Mas, então, posso não ser capaz de ter esse tipo de discussão civilizada.|||}; -{ff_outsideguard_trouble_21|Certo, nós já conversamos sobre isso. Como eu disse, eu prefiro estar dentro do fogo.||{{Eu poderia vigiar para você, se você quiser ir para dentro.|ff_outsideguard_trouble_23|||||}{Má sorte. Eu acho que deixaram você aqui por fora, enquanto o seu capitão e amigos estão confortavelmente lá dentro.|ff_outsideguard_trouble_22|||||}}|}; -{ff_outsideguard_trouble_22|Sim, isso é apenas a minha sorte.|||}; -{ff_outsideguard_trouble_23|Sério? Sim, isso seria ótimo. Então eu posso pelo menos ter algo para comer e um pouco de calor do fogo.||{{N|ff_outsideguard_trouble_24|||||}}|}; -{ff_outsideguard_trouble_24|Vou entrar em um minuto. Você ficará de vigilância, enquanto eu estiver lá dentro?|{{0|jolnor|20|}}|{{Claro, vou fazer isso.|ff_outsideguard_trouble_25|||||}{[Lie]Claro, vou fazer isso.|ff_outsideguard_trouble_25|||||}}|}; -{ff_outsideguard_trouble_25|Muito obrigado meu amigo.|||}; -{ff_outsideguard_shadow_1|Sombra? Como curioso que você mencionar isso. Explique-se!||{{Eu não quis dizer isso realmente, Não importa o que eu disse.|ff_outsideguard_shadow_2|||||}{A Sombra cuida de nós quando dormimos.|ff_outsideguard_shadow_3|||||}}|}; -{ff_outsideguard_shadow_2|Bom. Agora vá embora antes que eu tenha que lidar com você.|||}; -{ff_outsideguard_shadow_3|O quê? Você é um desses arruaceiros enviado para sabotar a nossa missão?||{{A Sombra nos protege.|ff_outsideguard_shadow_4|||||}{Certo. É melhor eu não começar uma briga com a guarda real.|X|||||}}|}; -{ff_outsideguard_shadow_4|É isso. É melhor lutar ou fugir agora garoto.||{{Bom. Eu estava esperando uma luta!|ff_outsideguard_shadow_5|||||}{Pela sombra!|ff_outsideguard_shadow_5|||||}{Não importa. Eu só estava brincando com você.|ff_outsideguard_shadow_2|||||}}|}; -{ff_outsideguard_shadow_5||{{0|jolnor|21|}}|{{|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{wrye_select_1|||{{|wrye_return_2|wrye:90||||}{|wrye_return_1|wrye:40||||}{|wrye_mourn_1|||||}}|}; -{wrye_return_1|Bem-vindo de volta. Você já descobriu alguma coisa sobre meu filho, Rincel?||{{Você pode me contar a história sobre o que aconteceu de novo?|wrye_mourn_5|||||}{Não, eu não encontrei nada ainda.|wrye_story_14|||||}{Sim, eu descobri a história sobre o que aconteceu com ele.|wrye_resolved_1|wrye:80||||}}|}; -{wrye_return_2|Bem-vindo de volta. Obrigado por sua ajuda para descobrir o que aconteceu com o meu filho.||{{A Sombra esteja com você.|wrye_story_15|||||}{Você é bem-vindo.|wrye_story_15|||||}}|}; -{wrye_mourn_1|Sombra me ajuda.||{{Qual é o problema?|wrye_mourn_2|||||}}|}; -{wrye_mourn_2|Meu filho! Meu filho está desaparecido.||{{Jolnor disse que eu deveria vê-la sobre o seu filho.|wrye_mourn_5|wrye:10||||}{O que tem ele?|wrye_mourn_3|||||}}|}; -{wrye_mourn_3|Eu não quero falar sobre isso. Não com um estrangeiro como você.||{{Estrangeiro?|wrye_mourn_4|||||}{Jolnor disse que eu deveria vê-la sobre o seu filho.|wrye_mourn_5|wrye:10||||}}|}; -{wrye_mourn_4|Por favor, deixe-me.\n\nOh, que a Sombra cuide de mim.|||}; -{wrye_mourn_5|Meu filho está morto, eu sei! E é culpa dos malditos guardas. Esses guardas com sua atitude esnobe típica de Feygard.||{{N|wrye_mourn_6|||||}}|}; -{wrye_mourn_6|No início, eles vêm com promessas de proteção e poder. Mas então você realmente começar a vê-los como eles são.||{{N|wrye_mourn_7|||||}}|}; -{wrye_mourn_7|Eu posso sentir isso em mim. A Sombra fala comigo. Ele está morto.|{{0|wrye|20|}}|{{Você pode me dizer o que aconteceu?|wrye_story_1|||||}{O que você está falando?|wrye_story_1|||||}{A Sombra esteja com você.|wrye_mourn_8|||||}}|}; -{wrye_mourn_8|Obrigado. A Sombra cuida de mim.||{{N|wrye_story_1|||||}}|}; -{wrye_story_1|Tudo começou com a vinda dos guardas Feygard.||{{N|wrye_story_2|||||}}|}; -{wrye_story_2|Eles tentaram pressionar todos em Vilegard para recrutar mais soldados.||{{N|wrye_story_3|||||}}|}; -{wrye_story_3|Os guardas dizem que precisam de mais apoio para ajudar a esmagar o suporto levante e sabotagem.||{{Como é que isso se relaciona com o seu filho?|wrye_story_4|||||}{Você poderia ir direto ao ponto?|wrye_story_4|||||}}|}; -{wrye_story_4|Meu filho, Rincel, não parece se importar muito com as histórias que eles lhe contavam.||{{N|wrye_story_5|||||}}|}; -{wrye_story_5|Eu também disse Rincel o quão ruim seria, em minha opinião, se alistar para a guarda real.||{{N|wrye_story_6|||||}}|}; -{wrye_story_6|Os guardas ficaram dois dias a conversar com todo mundo aqui em Vilegard. Então eles deixaram. Eles foram para a cidade mais próxima, eu acho.||{{N|wrye_story_7|||||}}|}; -{wrye_story_7|Alguns dias se passaram, e de repente meu menino Rincel foi embora. Estou certo de aqueles guardas conseguiram convencê-lo de alguma forma, para juntar-se a eles.||{{N|wrye_story_8|||||}}|}; -{wrye_story_8|Ah como eu desprezo esses bastardos maldosos e esnobes de Feygard.||{{E agora?|wrye_story_9|||||}}|}; -{wrye_story_9|Isso se deu há várias semanas. Agora sinto um vazio por dentro. Eu sei, em meu interior, que alguma coisa aconteceu com meu filho Rincel.||{{N|wrye_story_10|||||}}|}; -{wrye_story_10|Temo que ele tenha morrido ou se ferido de alguma forma. Esses bastardos provavelmente conduziram-no para a sua própria morte.|{{0|wrye|30|}}|{{N|wrye_story_11|||||}}|}; -{wrye_story_11|*soluço* A Sombra me ajude.||{{O que posso fazer para ajudar?|wrye_story_13|||||}{Isso soa horrível. Tenho certeza de que você está imaginando coisas.|wrye_story_13|||||}{Você tem prova de que as pessoas de Feygard estão envolvidas?|wrye_story_12|||||}}|}; -{wrye_story_12|Não, mas algo me diz que eles são os responsáveis. A Sombra fala comigo.||{{OK. Existe algo que eu possa fazer para ajudar?|wrye_story_13|||||}{Você parece um pouco demasiado ocupada com a Sombra. Eu não quero participar disso.|wrye_mourn_4|||||}{Eu provavelmente não deveria se envolver com isso, se isso significa que eu poderia perturbar o guarda real.|wrye_mourn_4|||||}}|}; -{wrye_story_13|Se você quer me ajudar, por favor, descobra o que aconteceu com o meu filho, Rincel.|{{0|wrye|40|}}|{{Alguma ideia de onde eu deveria olhar?|wrye_story_16|||||}{OK. Eu vou procurar o seu filho. Espero que haja alguma recompensa por isso.|wrye_story_14|||||}{Pela sombra, o seu filho vai ser vingado.|wrye_story_14|||||}}|}; -{wrye_story_14|Por favor, volte aqui, logo que você descobrir algo.||{{N|wrye_story_15|||||}}|}; -{wrye_story_15|Caminhe com a Sombra.|||}; -{wrye_story_16|Eu acho que você poderia perguntar na taberna aqui em Vilegard, ou a taberna Foaming Flask, ao norte daqui.|{{0|wrye|41|}}|{{Pela sombra, o seu filho vai ser vingado.|wrye_story_14|||||}{OK. Eu vou procurar o seu filho. Espero que haja alguma recompensa por isso.|wrye_story_14|||||}{OK. Eu vou procurar o seu filho, de modo que você poderá saber o que aconteceu com ele.|wrye_story_14|||||}}|}; -{wrye_resolved_1|Por favor, diga-me o que aconteceu com ele!||{{Ele deixou Vilegard por sua própria vontade, porque ele queria ver a grande cidade de Feygard.|wrye_resolved_2|||||}}|}; -{wrye_resolved_2|Eu não acredito nisso.||{{Ele secretamente desejava ir para Feygard, mas não se atreveu a dizer.|wrye_resolved_3|||||}}|}; -{wrye_resolved_3|Realmente?||{{Mas ele nunca chegou longe. Ele foi atacado enquanto estava acampando de noite.|wrye_resolved_4|||||}}|}; -{wrye_resolved_4|Atacado?||{{Sim, ele não conseguiu enfrentar sozinho os monstros, e ficou gravemente ferido.|wrye_resolved_5|||||}}|}; -{wrye_resolved_5|Meu filho querido.||{{Eu conversei com um homem que o encontrou sangrando até a morte.|wrye_resolved_6|||||}}|}; -{wrye_resolved_6|Ele ainda estava vivo?||{{Sim, mas não por muito tempo. Ele não sobreviveu aos ferimentos. Ele agora está enterrado até o noroeste de Vilegard.|wrye_resolved_7|||||}}|}; -{wrye_resolved_7|Ah, meu pobre rapaz. O que eu fiz?|{{0|wrye|90|}}|{{N|wrye_resolved_8|||||}}|}; -{wrye_resolved_8|Sempre achei que ele compartilhava do meu ponto de vista com relação a esses esnobes Feygard.||{{N|wrye_resolved_9|||||}}|}; -{wrye_resolved_9|E agora ele não está mais entre nós.||{{N|wrye_resolved_10|||||}}|}; -{wrye_resolved_10|Obrigado, amigo, para descobrir o que aconteceu com ele e me dizendo a verdade.||{{N|wrye_resolved_11|||||}}|}; -{wrye_resolved_11|Ah, meu pobre rapaz.||{{N|wrye_mourn_4|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{oluag_1|||{ - {|oluag_grave_16|wrye:80||||} - {|oluag_1_1|||||} - }|}; -{oluag_1_1|Olá. Sou Oluag.||{{O que você está fazendo aqui com essas caixas?|oluag_2|||||}}|}; -{oluag_2|Oh, essas caixas? Elas estão vazias. Não ligue para elas. Também não se preocupe com aquele túmulo ali.||{{O túmulo?|oluag_grave_select|||||}{Nada, realmente? Isto soa suspeito.|oluag_boxes_1|||||}}|}; -{oluag_boxes_1|Não, não há nada de suspeito em tudo. Não é como se eles contivessem algum contrabando ou qualquer coisa assim, ah!||{{O que que há com esse túmulo?|oluag_grave_select|||||}{Ok então. Eu acho que eu não vi nada.|oluag_goodbye|||||}}|}; -{oluag_goodbye|Certo. Tchau.|||}; -{oluag_grave_select|||{{|oluag_grave_return|wrye:80||||}{|oluag_grave_1|||||}}|}; -{oluag_grave_return|Olha, eu já contei a história.||{{N|oluag_grave_5|||||}}|}; -{oluag_grave_1|Sim, ok. Portanto, há um certo túmulo ali. Eu prometo que eu não tive nada a ver com isso.||{{Nada? Sério?|oluag_grave_2|||||}{Ok então. Eu acho que você não tem nada a ver com isso.|oluag_goodbye|||||}}|}; -{oluag_grave_2|Bem, quando eu digo "nada", eu realmente quero dizer nada. Ou talvez apenas um pouquinho.||{{Um pouquinho?|oluag_grave_3|||||}}|}; -{oluag_grave_3|Ok, então talvez eu só tinha um pouquinho a ver com isso.||{{É melhor você começar a falar.|oluag_grave_5|||||}{O que você fez?|oluag_grave_5|||||}{Eu tenho que bater em você?|oluag_grave_4|||||}}|}; -{oluag_grave_4|Relaxe, relaxe. Eu não quero mais nenhuma luta.||{{N|oluag_grave_5|||||}}|}; -{oluag_grave_5|Teve um garoto que eu encontrei. Ele estava quase morto de tanto perder sangue.||{{N|oluag_grave_6|||||}}|}; -{oluag_grave_6|Ele disse-me algumas coisas antes que morresse.||{{N|oluag_grave_7|||||}}|}; -{oluag_grave_7|Então eu enterrei ele lá naquele túmulo.||{{Quais foram suas últimas palavras?|oluag_grave_8|||||}}|}; -{oluag_grave_8|Algo sobre Vilegard e Ryndel talvez? Eu realmente não prestei tanta atenção, eu estava mais preocupado em checar as suas posses.||{{Eu devo checar esse túmulo. Tchau.|X|||||}{Rincel, era esse o seu nome? De Vilegard? É o filho desaparecido de Wrye.|oluag_grave_9|wrye:40||||}}|}; -{oluag_grave_9|Sim, pode ser ele mesmo. Enfim, ele disse algo sobre realização de um sonho de ver a grande cidade de Feygard.||{{N|oluag_grave_10|||||}}|}; -{oluag_grave_10|E ele me disse algo a respeito de que ele não se atreveu a dizer a ninguém.||{{Talvez ele não tenha se atrevido a dizer isso a Wrye?|oluag_grave_11|||||}}|}; -{oluag_grave_11|Sim, com certeza, provavelmente. Ele havia acampado aqui, mas foi atacado por alguns monstros.||{{N|oluag_grave_12|||||}}|}; -{oluag_grave_12|Aparentemente, ele não era tão forte como um lutador, por exemplo, alguém como eu. Assim, os monstros os feriram tanto que não conseguiu sobreviver a essa noite.||{{N|oluag_grave_13|||||}}|}; -{oluag_grave_13|Infelizmente, eles também devem ter carregado tudo o que ele possuía, pois eu não pude encontrar nada com ele.||{{N|oluag_grave_14|||||}}|}; -{oluag_grave_14|Ouvi o combate, mas só consegui chegar onde ele estava depois que os monstros tinham fugido.||{{N|oluag_grave_15|||||}}|}; -{oluag_grave_15|Então, de qualquer maneira. Agora ele está enterrado lá. Descanse em paz.|{{0|wrye|80|}}|{{N|oluag_grave_16|||||}}|}; -{oluag_grave_16|Garoto ruim. Ele poderia ao menos ter pego algumas moedas com ele.||{{Obrigado pela história. Tchau.|oluag_goodbye|||||}{Obrigado pela história. A Sombra esteja com você.|oluag_goodbye|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{foaming_flask_tavern_room|Você deve alugar o quarto antes que você possa entrar.|||}; -{sign_vilegard_n|A placa diz:\nBem-vindo a Vilegard, a cidade mais amigável da vizinhança.|||}; -{sign_foamingflask|Bem-vindo à taverna Foaming Flask!|||}; -{sign_road1_nw|Norte: Loneford\nLeste: Nor City\nOeste: Fallhaven|||}; -{sign_road1_s|Norte: Loneford\nLeste: Nor City\nSul: Vilegard|||}; -{sign_oluag|Você vê uma sepultura cavada recentemente.|||}; -{sign_road2|Leste: Nor City\nOeste: Vilegard|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{maelveon|[Você sente um formigamento em todo o seu corpo quando uma figura assustadora começa a falar.]||{{N|maelveon_1|||||}}|}; -{maelveon_1|Que a Ssssombra o carregue.||{{N|maelveon_2|||||}}|}; -{maelveon_2|G..árgula da Sombra.||{{N|maelveon_3|||||}}|}; -{maelveon_3|A..guarde a Ssssombra em você.||{{A Sombra, o que quer dizer?|maelveon_4|||||}{Criatura do mal, morra!!|maelveon_4|||||}{Eu não serei afetados por seu absurdo!|maelveon_4|||||}}|}; -{maelveon_4|[A figura levanta a mão e aponta para você]||{{N|maelveon_5|||||}}|}; -{maelveon_5|Sssshadow estar com você.||{{Sombra, o que?|F|||||}{criatura, do mal, morra!|F|||||}{Por favor, não me machuque!|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bwm_agent_1_start|Ah, um estrangeiro! Por favor, senhor! Você tem que nos ajudar!||{{Qual é o problema?|bwm_agent_1_2|||||}{\'nós\'? Eu só vejo você aqui.|bwm_agent_1_3|||||}}|}; -{bwm_agent_1_2|Precisamos urgentemente da ajuda de algum estrangeiro!||{{N|bwm_agent_1_4|||||}}|}; -{bwm_agent_1_3|Muito engraçado. Eu fui enviado pelo meu assentamento para procurar ajuda do exterior.||{{N|bwm_agent_1_4|||||}}|}; -{bwm_agent_1_4|As pessoas do meu assentamento, a Montanha das Águas Negras, estão sendo lentamente reduzidas em quantidade, pelos monstros e pelos bandidos selvagens.|{{0|bwm_agent|1|}}|{{N|bwm_agent_1_5|||||}}|}; -{bwm_agent_1_5|Os monstros estão nos cercando, e nós precisamos desesperadamente da ajuda de algum lutador eficiente.||{{Eu acho que eu poderia ajudar, eu matei alguns monstros aqui e ali.|bwm_agent_1_7|||||}{Uma luta, ótimo. Eu estou dentro!|bwm_agent_1_7|||||}{Haverá uma recompensa por isso?|bwm_agent_1_6|||||}{Hm, não. Eu acho melhor não me envolver com isso.|X|||||}}|}; -{bwm_agent_1_6|Recompensa? Hm, eu estava esperando que você nos ajudasse por outras razões do que uma recompensa. Mas eu acho que o meu senhor vai recompensá-lo suficientemente, se você sobreviver.||{{Tudo bem, eu vou fazer isso.|bwm_agent_1_7|||||}}|}; -{bwm_agent_1_7|Excelente. A assentamento da Montanha das Águas Negras fica há alguma distância. Francamente, estou surpreso que eu consegui chegar até aqui vivo.|{{0|bwm_agent|5|}}|{{N|bwm_agent_1_8|||||}}|}; -{bwm_agent_1_8|Devo adverti-lo, porém, que há alguns monstros desagradáveis ​​no caminho.||{{N|bwm_agent_1_9|||||}}|}; -{bwm_agent_1_9|Mas eu acho que você parece forte o suficiente.||{{Sim, eu sei me cuidar.|bwm_agent_1_10|||||}{Não tem problema.|bwm_agent_1_10|||||}}|}; -{bwm_agent_1_10|Bom. Primeiro, porém, é preciso atravessar esta mina para o outro lado.||{{N|bwm_agent_1_11|||||}}|}; -{bwm_agent_1_11|O veio principal da minha lá *apontando* desmoronou. Então eu acho que você não conseguirá chegar por ali..||{{N|bwm_agent_1_12|||||}}|}; -{bwm_agent_1_12|Você terá que passar pela mina abandonada em baixo. Cuidado que a mina está no escuro, então você vai ter que se orientar por lá sem qualquer luz.||{{E você?|bwm_agent_1_13|||||}{Ok, eu vou passar pela mina escura.|bwm_agent_1_14|||||}}|}; -{bwm_agent_1_13|Vou tentar rastejar de volta através do poço da mina aqui. É assim que eu cheguei aqui, quando vim.||{{N|bwm_agent_1_14|||||}}|}; -{bwm_agent_1_14|Vamos nos encontrar no outro lado desta mina.|{{0|bwm_agent|10|}}|{{OK. Você vai rastejar através do veio principal, e eu vou seguir pela mina. Vejo você do outro lado!|R|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bwm_agent_2_start|||{{|bwm_agent_2_7|bwm_agent:20||||}{|bwm_agent_2_1|||||}}|}; -{bwm_agent_2_1|Olá novamente. Você fez isso conseguiu chegar vivo! Muito bem!||{{Estes monstros, o que são?|bwm_agent_2_2|||||}{Você nunca me disse que estaria tão escuro por lá. Eu quase fui morto!|bwm_agent_2_12|||||}{Sim, muito facilmente, diga-se de passagem.|bwm_agent_2_5|||||}}|}; -{bwm_agent_2_2|Os Gornauds? Eu não tenho ideia de onde eles vêm, um dia eles apareceram aqui ao redor da montanha.||{{N|bwm_agent_2_3|||||}}|}; -{bwm_agent_2_3|Animais desagradáveis, eles são.||{{N|bwm_agent_2_4|||||}}|}; -{bwm_agent_2_4|De qualquer forma, vamos começar agora. Estamos agora a um passo do assentamento da Montanha das Águas Negras.||{{N|bwm_agent_2_5|||||}}|}; -{bwm_agent_2_5|Devemos nos apressar agora.||{{N|bwm_agent_2_6|||||}}|}; -{bwm_agent_2_6|Assim que sair desta mina, é muito importante que você vá diretamente para o leste a partir daí. Não viaje para outros lugares que não para o leste agora!||{{Ok, eu vou ir para o leste depois de já ter saído da mina. Entendi.|bwm_agent_2_7|||||}{Por que leste? O que mais há aqui?|bwm_agent_2_8|||||}}|}; -{bwm_agent_2_7|Eu vou esperar por você, os na escada da passagem para a montanha. Vejo você lá!\n\nLembre-se: vá para o leste assim que você sair da mina.|{{0|bwm_agent|20|}}|{{Ok, te vejo lá!|R|||||}}|}; -{bwm_agent_2_8|Ah, nada. Há lugares perigosos aqui. Você definitivamente não deve ir para qualquer direção diferente do leste.||{{Claro, vou dirigir para o leste.|bwm_agent_2_7|||||}{Perigoso? Soa como o meu tipo de lugar!|bwm_agent_2_10|||||}{Existe algo que você não está me dizendo?|bwm_agent_2_11|||||}}|}; -{bwm_agent_2_10|Seria a sua perda. Não diga que eu não o avisei. A rota mais segura é dirigir-se para o leste.||{{Claro, vou dirigir para o leste.|bwm_agent_2_7|||||}{Existe algo que você não está me dizendo?|bwm_agent_2_11|||||}}|}; -{bwm_agent_2_11|Não, não, apenas vá direto para leste e eu vou explicar tudo para você, uma vez que chegar ao povoamento de Montanha das Águas Negras.||{{Ok, eu prometo para o leste, uma vez que sair da mina.|bwm_agent_2_7|||||}{(Mentira) Ok, eu prometo ir para o leste, uma vez que sair da mina.|bwm_agent_2_7|||||}}|}; -{bwm_agent_2_12|Na verdade, eu lhe disse que seria escuro por lá. Bom trabalho conseguir se orientar por lá!||{{N|bwm_agent_2_4|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bwm_agent_3_start|||{{|bwm_agent_3_4|bwm_agent:30||||}{|bwm_agent_3_1|||||}}|}; -{bwm_agent_3_1|Olá. Você chegou até aqui, bom.||{{Eu conversei com algumas pessoas na aldeia de Prim. Elas contaram-me algumas coisas interessantes sobre a Montanha das Águas Negras.|bwm_agent_3_5|bwm_agent:25||||}{Fui para leste, como você disse.|bwm_agent_3_2|||||}}|}; -{bwm_agent_3_2|Bom. Agora vamos subir esta montanha. Vou encontrá-lo a meio caminho para o topo.||{{N|bwm_agent_3_3|||||}}|}; -{bwm_agent_3_3|Este caminho leva até a assentamento da Montanha das Águas Negras. Siga este caminho e vamos conversar mais tarde.||{{N|bwm_agent_3_4|||||}}|}; -{bwm_agent_3_4|Cuidado com os monstros desagradáveis, eles podem realmente causar algum dano!|{{0|bwm_agent|30|}}|{{Ok, vou seguir este caminho até a montanha.|R|||||}{Grande, mais monstros. Era só o que eu precisava.|R|||||}}|}; -{bwm_agent_3_5|Não vou ouvir suas mentiras. Eles envenenaram os seus pensamentos e eu não hesitaria em apunhalá-lo pelas costas, uma vez que tiver chance.||{{O que eles fizeram?|bwm_agent_3_6|||||}{Sim, eles parecem serem um pouco sombrios.|bwm_agent_3_7|||||}}|}; -{bwm_agent_3_6|Eu não vou falar deles agora. Siga-me até a assentamento da Montanha das Águas Negras e vamos conversar mais lá.||{{Certamente.|bwm_agent_3_2|||||}{Estou de olho em você. Mas eu concordo com seus termos por enquanto.|bwm_agent_3_2|||||}}|}; -{bwm_agent_3_7|Sim, eles são.||{{N|bwm_agent_3_6|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bwm_agent_4_start|||{{|bwm_agent_4_5|bwm_agent:40||||}{|bwm_agent_4_1|||||}}|}; -{bwm_agent_4_1|Olá novamente. Derrotou as feras de Gornaud. Bem feito!||{{Os ataques deles realmente machucam. O que são essas coisas?|bwm_agent_4_6|||||}{Como é que eles não atacam você?|bwm_agent_4_3|||||}{Sim, não há problema. Apenas outra trilha de corpos atrás de mim.|bwm_agent_4_2|||||}}|}; -{bwm_agent_4_2|Cuidado com o que você deseja, pois pode se tornar realidade.||{{N|bwm_agent_4_4|||||}}|}; -{bwm_agent_4_3|Eu? Deve haver alguma coisa em mim que os assusta. Eu não tenho nenhuma ideia do que seria, talvez, algum cheiro?||{{N|bwm_agent_4_4|||||}}|}; -{bwm_agent_4_4|De qualquer forma, devemos ir. Eu vou correr na frente de você até a montanha.||{{N|bwm_agent_4_5|||||}}|}; -{bwm_agent_4_5|Encontre-me mais para cima da montanha, e nós vamos conversar mais.|{{0|bwm_agent|40|}}|{{Ok, te vejo lá.|R|||||}}|}; -{bwm_agent_4_6|Eu não sei de onde eles vêm. Tudo o que sei é que eles começaram a aparecer um dia, bloqueando o caminho até a montanha.||{{N|bwm_agent_4_7|||||}}|}; -{bwm_agent_4_7|E, seus ataques são difíceis. Uma vez que um deles põem a mão em você, os outros parecem realmente ansiosos em bater em você também.||{{Nada que eu não consiga lidar.|bwm_agent_4_4|||||}{Como é que eles não atacam você?|bwm_agent_4_3|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bwm_agent_5_start|||{{|bwm_agent_5_6|bwm_agent:50||||}{|bwm_agent_5_1|||||}}|}; -{bwm_agent_5_1|Olá novamente. Bem feito se esgueirando desses monstros.||{{N|bwm_agent_5_2|||||}}|}; -{bwm_agent_5_2|Estamos quase lá agora. Apenas um pouco mais.||{{N|bwm_agent_5_3|||||}}|}; -{bwm_agent_5_3|Devemos nos apressar nesse último trecho, o assentamento está perto agora.||{{N|bwm_agent_5_4|||||}}|}; -{bwm_agent_5_4|Eu espero que você possa aguentar o frio aqui fora.||{{N|bwm_agent_5_5|||||}}|}; -{bwm_agent_5_5|Além disso, fique longe dos dragões. Eles têm uma mordida realmente desagradável.||{{N|bwm_agent_5_6|||||}}|}; -{bwm_agent_5_6|Agora se apresse. Estamos quase lá. Siga o caminho de neve para o norte, e você deve atingir o assentamento em breve.|{{0|bwm_agent|50|}}|{{Ok, vou seguir o caminho para o norte, mais para cima da montanha.|R|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bwm_agent_6_start|||{ - {|bwm_agent_6_3|bwm_agent:60||||} - {|bwm_agent_6_0|||||} - }|}; -{bwm_agent_6_1|Estou feliz que você me seguiu até a montanha para nos ajudar.||{ - {Como você chegou até aqui tão rápido?|bwm_agent_6_6|||||} - {Essas foram algumas lutas duras, mas tudo sobre controle.|bwm_agent_6_5|||||} - {Ainda não chegamos?|bwm_agent_6_2|||||} - }|}; -{bwm_agent_6_2|Ah, sim. Na verdade, é só descer essas escadas para entrar no assentamento da Montanha das Águas Negras.||{{N|bwm_agent_6_4|||||}}|}; -{bwm_agent_6_3|Vá em frente, eu vou encontrá-lo lá dentro.||{{Ok, vejo você lá dentro.|R|||||}}|}; -{bwm_agent_6_0|Nos encontramos novamente. Bem feito lutando em seu caminho até aqui.||{{N|bwm_agent_6_1|||||}}|}; -{bwm_agent_6_4|Você deve descer as escadas e conversar com nosso ministro da guerra, Harlenn. Ele pode ser encontrado ao descer até o terceiro nível.|{{0|bwm_agent|60|}}|{{N|bwm_agent_6_3|||||}}|}; -{bwm_agent_6_5|Sim, você parece ser um lutador capaz.||{{Ainda não chegamos?|bwm_agent_6_2|||||}}|}; -{bwm_agent_6_6|Eu aprendi alguns atalhos para cima e para baixo da montanha um tempo atrás. Nada de estranho nisso certo?||{{N|bwm_agent_6_7|||||}}|}; -{bwm_agent_6_7|De qualquer forma, estamos bem no assentamento agora. Na verdade, para entrar no assentamento da Montanha das Águas Negras é só descer essas escadas.||{{N|bwm_agent_6_4|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{arghest_start|||{{|arghest_return_1|prim_innquest:40||||}{|arghest_return_2|prim_innquest:30||||}{|arghest_1|||||}}|}; -{arghest_1|Olá.||{{Que lugar é esse?|arghest_2|||||}{Quem é você?|arghest_5|||||}{Você quer alugar o quarto aos fundos da pousada em Prim?|arghest_8|prim_innquest:10||||}}|}; -{arghest_2|Este é a velha mina Elm de Prim.||{{N|arghest_3|||||}}|}; -{arghest_3|Usamos muito a mina aqui. Mas isso foi antes de os ataques começaram.||{{N|arghest_4|||||}}|}; -{arghest_4|Os ataques em Prim por os animais e os bandidos realmente dizimaram-nos. Agora, não podemos manter a mineração por mais tempo.||{{Quem é você?|arghest_5|||||}}|}; -{arghest_5|Eu sou Arghest. Eu guardo a entrada aqui para garantir que ninguém entre na mina velha.||{{Que lugar é esse?|arghest_2|||||}{Posso entrar na mina?|arghest_6|||||}}|}; -{arghest_6|Não. A mina está fechada.||{{Ok, adeus.|X|||||}{Por favor?|arghest_7|||||}}|}; -{arghest_7|Eu disse que não. Os visitantes não são permitidos ali.||{{Por favor?|arghest_6|||||}{Apenas uma olhada rápida?|arghest_6|||||}}|}; -{arghest_return_1|Bem-vindo de volta. Obrigado pela sua ajuda anterior. Espero que o quarto na estalagem possa ter sido de bom uso para você.||{{Você é bem-vindo. Tchau.|X|||||}{Posso entrar na mina?|arghest_6|||||}}|}; -{arghest_return_2|Bem-vindo de volta. Você me trouxe as cinco garrafas de leite que eu pedi?||{{Não, ainda não. Estou trabalhando nisso.|arghest_return_3|||||}{Sim, aqui está, divirta-se!|arghest_return_4||milk|5|0|}{Sim, mas isso quase me custou uma fortuna!|arghest_return_4||milk|5|0|}}|}; -{arghest_return_3|Ok então. Volte para mim uma vez que você os tiver.||{{Ok, vou fazer. Tchau.|X|||||}}|}; -{arghest_return_4|Obrigado meu amigo! Agora eu posso repor meu estoque.|{{0|prim_innquest|40|}}|{{N|arghest_return_5|||||}}|}; -{arghest_return_5|Estas garrafas parecem excelentes. Agora eu posso durar mais um tempo aqui.||{{N|arghest_return_6|||||}}|}; -{arghest_return_6|Ah, e sobre o quarto na estalagem - você está convidado a usá-lo da maneira que achar melhor. Um lugar muito aconchegante para descansar, se você me perguntar.||{{Obrigado, Arghest. Até logo.|X|||||}{Finalmente, eu achava que nunca seria capaz de descansar aqui!|X|||||}}|}; -{arghest_8|\'Inn em Prim\'- isso parece engraçado.||{{N|arghest_9|||||}}|}; -{arghest_9|Sim, eu alugo. Uso para descansar quando meu turno termina.||{{N|arghest_10|||||}}|}; -{arghest_10|No entanto, agora que nós, os guardas não somos tão abundantes como costumávamos ser, tenho tido pouco tempo para descansar lá.||{{Se importa se eu usar o quarto na pousada para descansar?|arghest_11|||||}{Você ainda vai usá-lo?|arghest_11|||||}}|}; -{arghest_11|Bem, eu gostaria de ainda manter a opção de usá-lo. Mas eu acho que alguém poderia descansar lá agora que eu não estou usando ativamente.|{{0|prim_innquest|20|}}|{{N|arghest_12|||||}}|}; -{arghest_12|Quer saber, se você me trazer suprimentos e mais algumas para me manter ocupado aqui, eu acho que você poderia ter a minha permissão para usá-lo mesmo que eu o tenha alugado.||{{N|arghest_13|||||}}|}; -{arghest_13|Eu tenho muita carne aqui, mas meu estoque de leite acabou há algumas semanas. Você acha que você poderia me ajudar a reabastecer meu suprimento de leite?||{{Claro, sem problema. Vou pegar as garrafas de leite. Quanto você precisa?|arghest_14|||||}{Claro, se ele me ajudar a ser capaz de descansar aqui. Estou dentro.|arghest_14|||||}}|}; -{arghest_14|Traga-me 5 garrafas de leite. Isso deve ser o suficiente.|{{0|prim_innquest|30|}}|{{Eu vou comprar algumas.|X|||||}{OK. Eu estarei de volta.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{tonis_start|||{{|tonis_return_1|prim_hunt:10||||}{|tonis_1|||||}}|}; -{tonis_return_1|Olá novamente. Você já falou com Guthbered no salão principal Prim?||{{Não, ainda não. Onde posso encontrá-lo?|tonis_return_2|||||}{Sim, ele me contou a história sobre Prim.|tonis_8|prim_hunt:20||||}{Não, e não tenho a intenção de falar com ele também. Eu estou em uma missão urgente para ajudar o povoamento de Montanha das Águas Negras.|tonis_return_3|||||}}|}; -{tonis_1|Você aí! Por favor, você tem que nos ajudar!||{{Qual é o problema?|tonis_6|||||}{É este o povoamento de Montanha das Águas Negras?|tonis_2|||||}{Desculpe, eu não posso ser incomodado agora. Disseram-me para ir para o leste rapidamente.|tonis_4|||||}}|}; -{tonis_2|Aguas Negras? Não, não, certamente não. Bem ali fica a aldeia de Prim.||{{N|tonis_3|||||}}|}; -{tonis_3|Montanha das Águas Negras, esses perversos bastardos.||{{N|tonis_6|||||}}|}; -{tonis_4|Leste? Mas isso leva até a Montanha das Águas Negras.||{{N|tonis_5|||||}}|}; -{tonis_5|Você realmente não gostaria de ir lá em cima.||{{N|tonis_3|||||}}|}; -{tonis_6|Precisamos desesperadamente da ajuda de alguém de fora na nossa aldeia de Prim.|{{0|prim_hunt|10|}}|{{N|tonis_7|||||}}|}; -{tonis_7|Você deve falar com Guthbered, no salão principal Prim, ao norte daqui.||{{Ok, eu vou vê-lo.|tonis_8|||||}{Disseram-me para ir diretamente para o leste.|tonis_4|||||}}|}; -{tonis_8|Bom, obrigado. Nós realmente precisamos de sua ajuda!|{{0|prim_hunt|11|}}||}; -{tonis_return_2|A aldeia de Prim é logo ao norte daqui. Provavelmente, você pode vê-la por entre as árvores ali.||{{Ok, eu vou lá imediatamente.|tonis_8|||||}}|}; -{tonis_return_3|Não dê ouvidos a suas mentiras!|||}; - -{moyra_1|Fique longe. Este é o meu esconderijo.||{{O que você está escondendo?|moyra_2|||||}{Quem é você?|moyra_3|||||}}|}; -{moyra_2|Garras, batidas, Gornauds. Eles não podem me alcançar aqui.||{{\'Gornauds\', é assim que o que esses monstros fora da aldeia são chamados?|moyra_5|||||}{Sim, claro. Fique aqui e se esconda, criatura patética.|moyra_4|||||}}|}; -{moyra_3|Eu? Sou Moyra.||{{Por que você está escondendo?|moyra_2|||||}}|}; -{moyra_4|Olhe o que você está dizendo! Eu não quero falar com você mais.|||}; -{moyra_5|Por favor, não tão alto! Eles podem ouvir você.||{{N|moyra_6|||||}}|}; -{moyra_6|Eu vi-os no caminho da montanha e na montanha também. Afiando suas garras.||{{N|moyra_7|||||}}|}; -{moyra_7|Eu me escondo aqui agora, então eles não podem chegar até mim.|||}; - -{prim_commoner1|Olá. Bem-vindo a Prim. Você está aqui para nos ajudar?||{{Sim, eu estou aqui para ajudar a sua aldeia.|prim_commoner1_2|||||}{(Mentira) Sim, eu estou aqui para ajudar a sua aldeia.|prim_commoner1_2|||||}}|}; -{prim_commoner1_2|Obrigado. Nós realmente precisamos da sua ajuda.|{{0|prim_hunt|11|}}|{{N|prim_commoner1_3|||||}}|}; -{prim_commoner1_3|Você deve falar com Guthbered se você não tiver feito isso.||{{Vou fazer, adeus.|X|||||}{Onde posso encontrá-lo?|prim_commoner1_4|||||}}|}; -{prim_commoner1_4|Ele está no salão principal ali. A grande casa de pedra.|{{0|prim_hunt|15|}}||}; - -{prim_commoner2|Olá, você parece ser novo por aqui. Como posso ajudá-lo?||{{Existe algum lugar que eu possa descansar por aqui?|prim_commoner2_rest1|||||}{Onde posso encontrar um comerciante por aqui?|prim_commoner2_trade1|||||}}|}; -{prim_commoner2_rest1|Você deve ser capaz de encontrar algum lugar para descansar na pousada logo ali ao sudeste.||{{Obrigado, adeus.|X|||||}{Onde posso encontrar um comerciante por aqui?|prim_commoner2_trade1|||||}}|}; -{prim_commoner2_trade1|O nosso armeiro está na casa no canto sudoeste. Devo adverti-lo, no entanto, de que seus suprimentos não são mais o que costumavam ser.||{{Obrigado, adeus.|X|||||}{Existe algum lugar que eu possa descansar por aqui?|prim_commoner2_rest1|||||}}|}; - -{prim_commoner3|Olá. Bem-vindo a Prim.|||}; - -{prim_commoner4|Olá. Quem é você? Você está aqui para nos ajudar?||{{Eu estou procurando meu irmão. Você por acaso por ventura o viu por aqui?|prim_commoner4_1|||||}{Sim, eu vim para ajudar a sua aldeia.|prim_commoner4_3|||||}{(Mentira) Sim, eu vim para ajudar a sua aldeia.|prim_commoner4_3|||||}}|}; -{prim_commoner4_1|Seu irmão? Filho, você deve saber que nós não temos muitos visitantes por aqui.||{{N|prim_commoner4_2|||||}}|}; -{prim_commoner4_2|Então, não. Eu não posso te ajudar.|||}; -{prim_commoner4_3|Oh obrigado. Nós realmente poderiamos receber alguma ajuda por aqui.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bwm_primsleep|Você não tem permissão para entrar aqui.|||}; -{laecca_1|Olá. Sou Laecca, guia de montanha.||{{O que você faz aqui?|laecca_2|||||}{\'guia de montanha\', o que significa isso?|laecca_2|||||}}|}; -{laecca_2|Fico de olho na passagem de montanha, para verificar se não há mais desses animais que se dirijam para cá.||{{Então, o que você está fazendo aqui dentro? Você não deveria estar do lado de fora vigiando, então?|laecca_4|||||}{Soa como uma causa nobre.|laecca_3|||||}{Quais animais você está falando?|laecca_9|||||}}|}; -{laecca_3|Sim, com certeza. Pode soar dessa maneira. Na realidade, é um monte de trabalho duro.||{{N|laecca_5|||||}}|}; -{laecca_4|Muito engraçado. Eu tenho que descansar, você também sabe. Manter os monstros longe é trabalho duro.||{{N|laecca_5|||||}}|}; -{laecca_5|Costumavam haver mais guias da montanha, mas muitos não sobreviveram ao ataque dos animais.||{{Parece que você não está realmente animado para continuar em seu trabalho.|laecca_6|||||}{Sinto muito por ouvir isso.|laecca_8|||||}{Quais animais você está falando?|laecca_9|||||}}|}; -{laecca_6|Talvez.||{{N|laecca_7|||||}}|}; -{laecca_7|De qualquer forma, tenho algumas coisas para cuidar. Foi bom falar com você.||{{Até logo.|X|||||}}|}; -{laecca_8|Obrigado por sua preocupação.||{{Existe algo que eu possa fazer para ajudar?|laecca_13|||||}}|}; -{laecca_9|Pfft, \'Que animais?\'. Os animais amaldiçoados Gornaud.||{{N|laecca_10|||||}}|}; -{laecca_10|Coçam suas garras contra a rocha nua à noite. *Shrug*||{{N|laecca_11|||||}}|}; -{laecca_11|No início, eu pensei que eles estavam agindo por puro instinto. Mas, recentemente, eu comecei a acreditar que eles são mais espertos do que os animais normais.||{{N|laecca_12|||||}}|}; -{laecca_12|Seus ataques estão ficando mais e mais inteligentes.|{{0|prim_hunt|11|}}|{{Existe algo que eu possa fazer para ajudar?|laecca_13|||||}}|}; -{laecca_13|Você deve conversar com Guthbered. Ele está geralmente na prefeitura. Procure uma casa de pedra no centro da vila.|{{0|prim_hunt|15|}}||}; - -{prim_cook_start|||{{|prim_cook_return_1|prim_innquest:50||||}{|prim_cook_return_2|prim_innquest:10||||}{|prim_cook_1|||||}}|}; -{prim_cook_1|Posso ajudá-lo?||{{Posso ver o que você tem para comer?|prim_cook_2|||||}{O quarto dos fundos está disponível para aluguel?|prim_cook_3|||||}}|}; -{prim_cook_2|Comida? Não, desculpe. Eu não tenho nada para negociar.||{{N|prim_cook_1|||||}}|}; -{prim_cook_3|Aluguel? Hm. Não, não neste momento.||{{N|prim_cook_41|||||}}|}; -{prim_cook_5|Agora que você mencionou, ele não tem sido visto por aqui faz algum tempo. Talvez você pudesse falar com ele e ver se ele é ainda quer alugá-lo?||{{Ok, eu vou falar com ele.|prim_cook_7|||||}{Claro. Alguma ideia de onde ele possa estar?|prim_cook_6|||||}}|}; -{prim_cook_41|Ele ainda está alugado para Arghest. Ele não ficaria muito feliz se eu alugar a mais alguém quando ele espera por utilizá-lo.||{{N|prim_cook_5|||||}}|}; -{prim_cook_6|Eu não sei onde ele está agora, mas eu sei que ele costumava fazer parte do time da mineração. Deve estar na mina a sudoeste.|{{0|prim_innquest|10|}}|{{Obrigado. Eu vou procurar ele.|X|||||}{Eu vou procurá-lo imediatamente.|X|||||}}|}; -{prim_cook_7|Obrigado.||{{N|prim_cook_6|||||}}|}; -{prim_cook_return_1|Obrigado por sua ajuda mais cedo. Espero que o quarto dos fundos esteja confortável o suficiente.||{{N|prim_cook_return_7|||||}}|}; -{prim_cook_return_2|Você falou com Arghest?||{{Não, ainda não.|prim_cook_return_3|||||}{(Mentira) Sim, ele me disse que eu poderia descansar no quarto dos fundos, se eu quiser.|prim_cook_return_4|||||}{Sim, ele me deu permissão para usar a sala de volta sempre que eu quiser.|prim_cook_return_6|prim_innquest:40||||}}|}; -{prim_cook_return_3|Volte para mim uma vez que você saiba se ele ainda está interessado em alugar o quarto ou não.||{{Alguma ideia de onde ele possa estar?|prim_cook_6|||||}}|}; -{prim_cook_return_4|Será que ele realmente disse isso? De alguma forma eu duvido disso. Não soa como ele.||{{N|prim_cook_return_5|||||}}|}; -{prim_cook_return_5|Você vai ter que fazer algo mais para me convencer.|||}; -{prim_cook_return_6|Realmente, ele fez? Pois bem, vá em frente. Estou feliz por ver que o quarto está novamente em uso.|{{0|prim_innquest|50|}}|{{N|prim_cook_return_7|||||}}|}; -{prim_cook_return_7|Você está convidado a descansar no quarto de volta a qualquer hora que quiser. Por favor, deixe-me saber se existe alguma coisa que eu possa fazer para ajudar.|||}; - -{prim_innguest|Lugar Adorável por aqui, não?|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{birgil_1|Bem-vindo ao meu botequim. Por favor, sente-se onde quiser.||{{O que você tem para beber por aqui?|birgil_2|||||}}|}; -{birgil_2|Bem, infelizmente, com o túnel da mina ruiu, não podemos negociar muito com as aldeias de fora.||{{N|birgil_3|||||}}|}; -{birgil_3|No entanto, eu tenho uma enorme oferta de hidromel que eu estoquei antes que a mina ruisse.||{ - {Hidromel? Argh! Demasiado doce para o meu gosto.|birgil_4|||||} - {Tudo bem! Apenas é o meu tipo preferido de bebida. Vamos ver o que você tem que trocar.|S|||||} - {Muito bem, ela terá que servir. Eu acho que tem algum potencial de cura. Vamos negociar.|S|||||} - }|}; -{birgil_4|Como quiser. Isso é o que eu tenho de qualquer maneira.||{ - {Ok, vamos negociar de qualquer maneira.|S|||||} - {Não importa, adeus.|X|||||} - }|}; -{prim_tavern_guest1|Ah, alguém novo por aqui.||{{N|prim_tavern_guest1_1|||||}}|}; -{prim_tavern_guest1_1|Garoto, seja bem-vindo. Você está aqui para afogar suas tristezas, como o resto de nós?||{ - {Na verdade não. O que há para fazer por aqui?|prim_tavern_guest1_3|||||} - {Sim, dá-me um pouco do que você tiver.|prim_tavern_guest1_4|||||} - {Pare de topar comigo enquanto eu estou tento andar.|prim_tavern_guest1_2|||||} - }|}; -{prim_tavern_guest1_2|Oh meu, um mal-humorado. Muito bem, vou sair do seu caminho.|||}; -{prim_tavern_guest1_3|Beber, é claro!||{{Eu deveria ter percebido que isso viria. Tchau.|X|||||}}|}; -{prim_tavern_guest1_4|Ei, isso é meu. Compre o seu próprio hidromel de Birgil lá.||{ - {Claro, qualquer coisa.|X|||||} - {Certo.|X|||||} - }|}; -{prim_tavern_guest2|*hic* Ei garoto aiii. Você vai comprar um veterano como eu com uma nova rodada de hidromel?||{ - {Caramba, o que aconteceu com você? Fique longe de mim.|X|||||} - {De jeito algum, e pare de bloquear meu caminho.|X|||||} - {Claro. Aqui está.|prim_tavern_guest2_1||mead|1|0|} - }|}; -{prim_tavern_guest2_1|Hey hey, Muito obrigado, garoto! *Hic*|||}; -{prim_tavern_guest3|*grunhido*|||}; -{prim_tavern_guest4|Garras. Coceira.||{{N|prim_tavern_guest4_1|||||}}|}; -{prim_tavern_guest4_1|Tem um porão de pobres Kirg que eles fizeram.||{{N|prim_tavern_guest4_2|||||}}|}; -{prim_tavern_guest4_2|Esses animais malditos.||{{N|prim_tavern_guest4_3|||||}}|}; -{prim_tavern_guest4_3|E é tudo culpa minha. *Gulp*|||}; - - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{guthbered_start|||{ - {|guthbered_sentbybwm_leave|bwm_agent:131||||} - {|guthbered_sentbybwm_fight|bwm_agent:130||||} - {|guthbered_sentbybwm_1|bwm_agent:120||||} - {|guthbered_reject|prim_hunt:251||||} - {|guthbered_reject|prim_hunt:250||||} - {|guthbered_completed|prim_hunt:100||||} - {|guthbered_killharl_2|prim_hunt:99||||} - {|guthbered_workingforbwm_2|bwm_agent:95||||} - {|guthbered_killharl_1|prim_hunt:80||||} - {|guthbered_lookforsigns_1|prim_hunt:50||||} - {|guthbered_return_1_1|prim_hunt:25||||} - {|guthbered_1|||||} - }|}; -{guthbered_reject|Você de novo? Deixar este lugar e vá para junto de seus amigos no assentamento da Montanha das Águas Negras. Não queremos negócio com você.||{ - {Eu estou aqui para dar-lhe uma mensagem da parte do assentamento da Montanha das Águas Negras.|guthbered_attacks|bwm_agent:70||||} - }|}; -{guthbered_attacks|Que mensagem?||{{Harlenn no assentamento da Montanha das Águas Negras quer que você pare seus ataques contra o assentamento.|guthbered_attacks_1|||||}}|}; -{guthbered_attacks_1|Isso é completamente insano. Nós!? Parar nossos ataques?! Diga-lhe que não temos nada a ver com o que acontece lá em cima. Eles trouxeram a sua própria desgraça sobre si mesmos.|{{0|bwm_agent|80|}}||}; -{guthbered_return_1_1|Bem-vindo novamente, viajante. Você falou com Harlenn no assentamento Montanha das Águas Negras?||{ - {Você pode me contar a história sobre os monstros de novo?|guthbered_13|||||} - {O que eu devo fazer mesmo?|guthbered_29|||||} - {Você pode me contar a história sobre Prim de novo?|guthbered_2|||||} - {Sim, mas Harlenn nega que eles tenham alguma coisa a ver com os ataques.|guthbered_talkedto_harl_1|prim_hunt:30||||} - {Na verdade, eu estou aqui para dar-lhe uma mensagem da parte do assentamento da Montanha das Águas Negras.|guthbered_attacks|bwm_agent:70||||} - }|}; -{guthbered_1|Bem-vindo a Prim, viajante.||{ - {O que você pode me dizer sobre Prim?|guthbered_2|||||} - {Quem é você?|guthbered_who_1|||||} - {Disseram-me para vê-lo sobre uma ajuda contra os ataques de monstros.|guthbered_20|prim_hunt:11||||} - {Na verdade, eu estou aqui para dar-lhe uma mensagem a partir do assentamento da Montanha das Águas Negras.|guthbered_attacks|bwm_agent:70||||} - }|}; -{guthbered_2|Prim começou como um simples campo para os mineiros que trabalhavam nas minas por aqui. Mais tarde, ela cresceu a um assentamento, e alguns anos atrás, conta até mesmo com uma taberna e uma pousada por aqui.||{{N|guthbered_3|||||}}|}; -{guthbered_3|Este lugar costumava ser cheio de vida, quando os mineiros trabalhavam aqui.||{{N|guthbered_4|||||}}|}; -{guthbered_4|Os mineiros também atraiam um grande número de comerciantes que costumavam passar por aqui.||{ - {\'Costumava\'?|guthbered_5|||||} - {O que aconteceu então?|guthbered_5|||||} - }|}; -{guthbered_5|Até bem recentemente, podiamos pelo menos ter algum contato com as aldeias de fora. Hoje em dia, a esperança está perdida.||{{N|guthbered_6|||||}}|}; -{guthbered_6|Você vê, o túnel da mina para o sul desabou, e ninguém mais pode entrar ou sair de Prim.||{ - {Eu sei, eu vim de lá.|guthbered_7|||||} - {Azar.|guthbered_10|||||} - {O que o fez desmoronar?|guthbered_11|||||} - }|}; -{guthbered_7|Você passou lá? Oh. Bem, sim, é claro que você deve ter, visto que você não é de Prim. Portanto, há um caminho através dela, apesar de tudo, né?||{ - {Sim, mas eu tive que ir através da parte escura da mina, que encontra-se escura.|guthbered_8|||||} - {Sim, a passagem pelo interior da mina está segura.|guthbered_8|||||} - {Não, estou brincando. Escalei sobre o cume da montanha para chegar aqui.|guthbered_8|||||} - }|}; -{guthbered_8|OK. Vamos ter que investigar isso mais tarde.||{{N|guthbered_9|||||}}|}; -{guthbered_9|Enfim, como eu estava dizendo ..||{{N|guthbered_10|||||}}|}; -{guthbered_10|O túnel da mina desabou tornando difícil para todos os comerciantes chegarem a Prim. Nossos recursos estão realmente começando a diminuir.||{{N|guthbered_12|||||}}|}; -{guthbered_11|Não temos certeza. Mas temos as nossas suspeitas.||{{N|guthbered_10|||||}}|}; -{guthbered_12|Além disso, há os ataques dos monstros que temos de lidar.|{{0|prim_hunt|11|}}|{ - {Sim, eu notei alguns monstros fora da aldeia.|guthbered_13|||||} - {Que monstros?|guthbered_13|||||} - }|}; -{guthbered_who_1|Sou Guthbered, protetor da vila.||{ - {O que você pode me dizer sobre Prim?|guthbered_2|||||} - {Disseram-me para vê-lo sobre uma ajuda contra os ataques de monstros.|guthbered_20|prim_hunt:11||||} - }|}; -{guthbered_13|Tempos atrás, começamos a ver os primeiros monstros. No início, eles não foram problema para nós os contê-los. Nossos guardas poderiam exterminá-los facilmente.||{{N|guthbered_14|||||}}|}; -{guthbered_14|Mas depois de um tempo, alguns de nossos guardas se machucaram, e a quantidade de monstros aumentou.||{{N|guthbered_15|||||}}|}; -{guthbered_15|Além disso, quase parecia que os monstros estavam ficando mais inteligentes. Seus ataques foram ficando mais e mais coordenados.||{{N|guthbered_16|||||}}|}; -{guthbered_16|Agora, não podemos segurá-los mais. Eles vêm principalmente à noite.||{{N|guthbered_17|||||}}|}; -{guthbered_17|Segundo a lenda, os monstros são chamados de \'Gornauds\'.||{{Alguma idéia de onde eles podem estar vindo?|guthbered_18|||||}}|}; -{guthbered_18|Ah, sim, nós somos quase certeza.||{{N|guthbered_19|||||}}|}; -{guthbered_19|Esses bastardos do mal do assentamento da Montanha das Águas Negras provavelmente convocou-os para nos atacar. Eles preferem ver-nos perecer.|{{0|prim_hunt|20|}}|{{N|guthbered_22|||||}}|}; -{guthbered_20|Ah bom. Você falou com Tonis? Sim, eu tenho certeza que você o encontrou no seu caminho para a cidade.||{{N|guthbered_21|||||}}|}; -{guthbered_21|Bom. Deixe-me dizer-lhe contar primeiro a história de Prim.||{ - {Certo.|guthbered_2|||||} - {Prefiro pular para o final diretamente.|guthbered_13|||||} - }|}; -{guthbered_22|Nós costumávamos negociar com eles lá em cima, mas tudo mudou, uma vez que ficaram gananciosos.|{{0|bwm_agent|25|}}|{ - {Eu conheci um homem fora da mina que desabou que disse que ele era do assentamento da Montanha das Águas Negras.|guthbered_26|||||} - {Você precisa de alguma ajuda para lidar com esses monstros?|guthbered_23|||||} - {Eu ficaria feliz em ajudá-lo com os monstros.|guthbered_24|||||} - }|}; -{guthbered_23|Um garoto, não é? Sim, por favor, você é bem-vindo para ajudar.||{{Eu ficaria feliz em ajudá-lo com os monstros.|guthbered_24|||||}}|}; -{guthbered_24|Você realmente acha que tem o que é preciso para nos ajudar?||{ - {Eu deixei um rastro de sangue de monstros atrás de mim.|guthbered_25|||||} - {Claro, eu posso lidar com isso.|guthbered_25|||||} - {Se os monstros são parecidos com aqueles que estiveram no meu caminho, vai ser uma luta dura. Mas eu dou conta.|guthbered_25|||||} - }|}; -{guthbered_25|Muito bem! Eu acho que devemos ir direto à fonte do problema.||{{N|guthbered_29|||||}}|}; -{guthbered_26|Um homem, que veio do assentamento da Montanha das Águas Negras, você diz?||{{N|guthbered_27|||||}}|}; -{guthbered_27|Ele disse alguma coisa sobre nós aqui em Prim?||{{Não. Mas ele insistiu que eu fosse direto para leste ao sair da mina, portanto, não atingindo Prim.|guthbered_28|||||}}|}; -{guthbered_28|Que figuras. Eles enviam seus espiões até hoje.||{{Você precisa de alguma ajuda para lidar com esses monstros?|guthbered_23|||||}}|}; -{guthbered_29|Como eu disse, nós acreditamos que esses bastardos do assentamento Montanha das Águas Negras estão por trás, de alguma forma, dos monstros nos atacam.||{{N|guthbered_30|||||}}|}; -{guthbered_30|Eu quero que você vá até lá para o assentamento e perguntar ao ministro da guerra, Harlenn, por que eles estão fazendo isso conosco.|{{0|prim_hunt|25|}}|{{Ok, eu vou perguntar a Harlenn no assentamento da Montanha das Águas Negras por que eles estão atacando sua vila.|guthbered_31|||||}}|}; -{guthbered_31|Obrigado amigo.|{{0|prim_hunt|25|}}||}; - - -{guthbered_talkedto_harl_1|O que eu esperava? É claro que ele diria isso. Ele, provavelmente, até nega isso a si mesmo. Enquanto isso, nós aqui em Prim sofremos com seus ataques selvagens.||{{N|guthbered_talkedto_harl_2|||||}}|}; -{guthbered_talkedto_harl_2|Tenho certeza que eles estão por trás desses ataques. No entanto, eu não tenho provas suficientes para suportar minhas desconfianças, de forma a que eu possa agir.||{{N|guthbered_talkedto_harl_3|||||}}|}; -{guthbered_talkedto_harl_3|Mas tenho certeza de que são eles! Como eles são falsos! Sempre mentindo e enganando. Destruindo e causando tumulto.|{{0|prim_hunt|40|}}|{{N|guthbered_talkedto_harl_4|||||}}|}; -{guthbered_talkedto_harl_4|Basta ouvir o nome que escolheram para si mesmos: \'das Águas Negras\'. O tom da soa como problema.||{{N|guthbered_talkedto_harl_5|||||}}|}; -{guthbered_talkedto_harl_5|De qualquer forma, gostaria de obter alguma evidência adicional sobre o que eles estão fazendo. Talvez que você possa nos ajudar.||{{N|guthbered_talkedto_harl_6|||||}}|}; -{guthbered_talkedto_harl_6|Mas eu preciso ter certeza de que eu posso confiar em você. Se você estiver trabalhando para eles, é melhor que você me diga agora antes que as coisas fiquem... bagunçadas.||{ - {Claro, você pode confiar em mim. Eu vou ajudar o povo de Prim.|guthbered_talkedto_harl_8|||||} - {Hm, talvez eu devesse, ao invés,ajudar as pessoas da Montanha das Águas Negras.|guthbered_workingforbwm_1|||||} - {(Mentira) Você pode confiar em mim.|guthbered_talkedto_harl_7|bwm_agent:70||||} - }|}; -{guthbered_talkedto_harl_7|No entanto, de alguma forma eu não confio em você.||{ - {Eu estava trabalhando para eles, mas eu decidi ajudá-lo, ao invés.|guthbered_talkedto_harl_8|||||} - {Por que eu iria querer trabalhar para a sua aldeia imunda? As pessoas no assentamento Montanha das Águas Negras merece a minha ajuda muito mais do que você.|guthbered_workingforbwm_1|||||} - }|}; -{guthbered_talkedto_harl_8|Bom. Estou feliz que você quiser nos ajudar.||{{N|guthbered_talkedto_harl_9|||||}}|}; -{guthbered_workingforbwm_1|Certo. Você deve sair agora, enquanto você ainda pode, traidor.|{{0|prim_hunt|250|}}||}; -{guthbered_talkedto_harl_9|Eu quero que você vá lá em cima ao assentamento e encontrar pistas sobre o que eles estão planejando.||{{N|guthbered_talkedto_harl_10|||||}}|}; -{guthbered_talkedto_harl_10|Acreditamos que eles estejam treinando seus lutadores para lançar um grande ataque a nós em breve.||{{N|guthbered_talkedto_harl_11|||||}}|}; -{guthbered_talkedto_harl_11|Vá procurar os planos que você puder encontrar. Mas certifique-se de que eles não te vejam procurando-as.||{{N|guthbered_talkedto_harl_12|||||}}|}; -{guthbered_talkedto_harl_12|Você provavelmente deve iniciar sua pesquisa no local onde o ministro da guerra, Harlenn, estiver.||{{OK. Vou procurar pistas em seu assentamento.|guthbered_talkedto_harl_13|||||}}|}; -{guthbered_talkedto_harl_13|Obrigado, amigo. Relate-me de volta sobre suas descobertas.|{{0|prim_hunt|50|}}||}; -{guthbered_lookforsigns_1|Olá novamente. Achou algo no assentamento da Montanha das Águas Negras?||{ - {Não, eu ainda estou procurando.|guthbered_talkedto_harl_13|||||} - {Poderia repetir novamente o que devo fazer?|guthbered_talkedto_harl_9|||||} - {Sim, encontrei alguns papéis com um plano para atacar Prim.|guthbered_lookforsigns_2|prim_hunt:60||||} - }|}; -{guthbered_lookforsigns_2|Então é como suspeitávamos. Esta é uma notícia realmente terrível.||{{N|guthbered_lookforsigns_3|||||}}|}; -{guthbered_lookforsigns_3|Agora você entende o que eu havia dito. Eles estão sempre à procura de causar problemas.||{{N|guthbered_lookforsigns_4|||||}}|}; -{guthbered_lookforsigns_4|Obrigado por encontrar essa informação para nós.|{{0|prim_hunt|70|}}|{{N|guthbered_lookforsigns_5|||||}}|}; -{guthbered_lookforsigns_5|Muito bem. Vamos ter que lidar com isso.||{{N|guthbered_lookforsigns_6|||||}}|}; -{guthbered_lookforsigns_6|Eu esperava que não chegasse a isso. Mas ficamos sem nenhuma escolha. Temos de eliminar a principal força motriz por trás dos ataques. Temos de eliminar seu ministro da guerra, Harlenn.||{{N|guthbered_lookforsigns_7|||||}}|}; -{guthbered_lookforsigns_7|Esta seria uma tarefa excelente para você meu amigo. Desde que você tem acesso às suas instalações, você pode se esgueirar por lá e matar o bastardo do Harlenn.||{{N|guthbered_lookforsigns_8|||||}}|}; -{guthbered_lookforsigns_8|Ao matá-lo, podemos ter certeza de que seus ataques ... digamos ... perderão seus dentes. Há há.||{ - {Não tem problema, ele vale tanto quanto um morto.|guthbered_lookforsigns_9|||||} - {Você tem certeza de mais violência vai realmente resolver este conflito?|guthbered_lookforsigns_10|||||} - }|}; -{guthbered_lookforsigns_9|Excelente. Volte para mim assim que você terminar.|{{0|prim_hunt|80|}}||}; -{guthbered_lookforsigns_10|Não, não realmente. Mas, por agora, parece que a única opção que temos.||{ - {vou tirá-lo, mas vou tentar encontrar uma solução pacífica para esta.|guthbered_lookforsigns_9|||||} - {Muito bem. Ele vale tanto quanto um morto.|guthbered_lookforsigns_9|||||} - }|}; -{guthbered_workingforbwm_2|Minhas fontes de dentro do assentamento Montanha das Águas Negras dizem-me que você está a trabalhando para eles.||{{N|guthbered_workingforbwm_3|||||}}|}; -{guthbered_workingforbwm_3|É, naturalmente, a sua escolha. Mas se você está trabalhando para eles, você não é bem-vindo aqui em Prim. Você deve deixar rapidamente, enquanto ainda pode.|{{0|prim_hunt|251|}}||}; -{guthbered_completed|Olá novamente meu amigo. Obrigado por sua ajuda para lidar com os bandidos até da Montanha das Águas Negras.||{{N|guthbered_completed_1|||||}}|}; -{guthbered_completed_1|Tenho certeza de que todos aqui em Prim vai querer falar com você agora.|{{0|prim_hunt|240|}}|{{N|guthbered_completed_2|||||}}|}; -{guthbered_completed_2|Obrigado novamente por sua ajuda.|{{0|bwm_agent|250|}}||}; -{guthbered_sentbybwm_1|O brilho em seus olhos me assusta.||{ - {Eu fui enviado pelo assentamento Montanha das Águas Negras para pará-lo.|guthbered_sentbybwm_fight|||||} - {Eu fui enviado pelo assentamento Montanha das Águas Negras para pará-lo. No entanto, eu decidi não matá-lo.|guthbered_sentbybwm_3|||||} - }|}; -{guthbered_sentbybwm_fight|Eu esperava que não chegasse a isso. Tenho receio de que você não irá sobreviver a este encontro. Será apenas outra vida em minhas mãos.|{{0|bwm_agent|130|}}|{ - {Pela sombra!|F|||||} - {Palavras corajosas, vamos ver se você suas ações não irão desapontar.|F|||||} - {Grande, estou ansioso para lhe matar.|F|||||} - {Vamos lutar!|F|||||} - }|}; -{guthbered_sentbybwm_3|Que interessante ... Por favor, continue.||{{É óbvio que este conflito só vai acabar com mais derramamento de sangue. Isso deve parar por aqui.|guthbered_sentbybwm_4|||||}}|}; -{guthbered_sentbybwm_4|O que você está propondo?||{{A minha proposta é que você deixe esta vila e encontre um novo lar em outro lugar.|guthbered_sentbybwm_5|||||}}|}; -{guthbered_sentbybwm_5|Ah, por que eu iria querer fazer isso?||{{Estas duas cidades estarão sempre lutar uns contra os outros. Se você a deixar, eles vão pensar que ganharam, e pararão com seus ataques.|guthbered_sentbybwm_6|||||}}|}; -{guthbered_sentbybwm_6|Hum, até que você parece estar com a razão.||{{N|guthbered_sentbybwm_7|||||}}|}; -{guthbered_sentbybwm_7|Ok, você me convenceu. Vou deixar Prim e ir para outra cidade. A sobrevivência do meu povo aqui é mais importante do que eu.||{{N|guthbered_sentbybwm_leave|||||}}|}; -{guthbered_sentbybwm_leave|Obrigado amigo, por fazer meu bom senso retornar.|{{0|bwm_agent|131|}}|{{Você é bem-vindo.|R|||||}}|}; - -{guthbered_killharl_1|Olá novamente. Você conseguiu remover aquele bastardo do Harlenn, ministro da guerra do assentamento da Montanha das Águas Negras?||{ - {Você pode me dizer novamente o que eu devo fazer?|guthbered_lookforsigns_6|||||} - {Ainda não. Eu ainda estou trabalhando nisso.|guthbered_lookforsigns_9|||||} - {Sim, ele está morto.|guthbered_killharl_2||harlenn_id|1|0|} - {Sim, ele está desaparecido.|guthbered_killharl_3|prim_hunt:91||||} - }|}; -{guthbered_killharl_2|Enquanto eu sou grato por saber que ele foi morto, também estou triste que tenha terminado assim.|{{0|prim_hunt|99|}}|{{N|guthbered_killharl_4|||||}}|}; -{guthbered_killharl_3|Sério? Esta é uma grande notícia, de fato.||{{N|guthbered_killharl_4|||||}}|}; -{guthbered_killharl_4|Isso provavelmente significa que seus ataques a nossa aldeia cessarão.||{{N|guthbered_killharl_5|||||}}|}; -{guthbered_killharl_5|Eu não sei como lhe agradecer o suficiente meu amigo.||{{N|guthbered_killharl_6|||||}}|}; -{guthbered_killharl_6|Aqui, por favor, aceite estes alguns itens como uma forma de compensação por sua ajuda. Além disso, deve levar este pedaço de papel que adquirimos.|{{0|prim_hunt|100|}{1|guthbered_reward||}}|{{N|guthbered_killharl_7|||||}}|}; -{guthbered_killharl_7|Esta é uma permissão que ... obtivemos ... De acordo com as nossas fontes, ela permitirá que você acesse a câmara interna do assentamento da Montanha das Águas Negras.||{{N|guthbered_killharl_8|||||}}|}; -{guthbered_killharl_8|Agora, a licença não é ... digamos .. completamente genuína. Mas estamos certos de que os guardas não irão notar nenhuma diferença.||{{N|guthbered_killharl_9|||||}}|}; -{guthbered_killharl_9|Enfim, você tem meus maiores agradecimentos pela ajuda que você forneceu para nós.||{{N|guthbered_completed_1|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{sign_blackwater10|Norte: Prim\nOeste: mina Elm\nLeste: (o texto é ilegível devido a várias marcas de arranhões na madeira) \nSouth: Stoutford|||}; -{keyarea_bwm_agent_1|O homem grita com você: Você! Por favor, ajude! Você tem que nos ajudar!|||}; -{sign_blackwater0|Leste: Fallhaven\nSudoeste: Stoutford\nNordeste: Montanha das Águas Negras|||}; -{sign_prim_n|Aviso a todos os cidadãos: Não é permitido entrar nas minas à noite! Além disso, escalar o lado da montanha está estritamente proibido, após o acidente com Lorn.|||}; -{sign_prim_s|Pessoas desaparecidas:\n- Dualan\n- Lornn\n- Kamelio|||}; -{sign_blackwater13|Nenhuma entrada é permitida.\nAssinado por Guthbered de Prim.|||}; -{sign_blackwater30|||{ - {|sign_blackwater30_qstarted|kazaul:10||||} - {|sign_blackwater30_notstarted|||||} - }|}; -{sign_blackwater30_qstarted|Você encontra um pedaço de papel parcialmente congelado na neve. Você mal consegue ler a frase \'Kazaul, profanador do Templo Elytharan\' no papel.\nEsse papel molhado deve ser a primeira metade do canto para o ritual Kazaul.|{{0|kazaul|21|}}||}; -{sign_blackwater30_notstarted|Você encontra um pedaço de papel parcialmente congelado na neve. Você mal consegue ler a frase \'Kazaul, profanador do Templo Elytharan\' no papel molhado.|||}; -{sign_blackwater32|O aviso está severamente danificado com o que parece como marcas de mordida de algo com dentes realmente afiados. Você não pode identificar quaisquer palavras legíveis.|||}; -{sign_blackwater38_1|||{ - {|sign_blackwater38_1_qstarted|kazaul:10||||} - {|sign_blackwater38_notstarted|||||} - }|}; -{sign_blackwater38_notstarted|Você encontra um pedaço de papel descrevendo algum tipo de ritual.|||}; -{sign_blackwater38_1_qstarted|Você encontra um pedaço de papel que descreve o início de alguma forma de ritual.\nIsso deve ser a primeira parte do ritual Kazaul.|{{0|kazaul|25|}}||}; -{sign_blackwater38_2|||{ - {|sign_blackwater38_2_qstarted|kazaul:10||||} - {|sign_blackwater38_notstarted|||||} - }|}; -{sign_blackwater38_2_qstarted|Você encontra um pedaço de papel que descreve a parte principal do ritual.\nIsso deve ser a segunda parte do ritual Kazaul.|{{0|kazaul|26|}}||}; -{sign_blackwater38_3|||{ - {|sign_blackwater38_3_qstarted|kazaul:10||||} - {|sign_blackwater38_notstarted|||||} - }|}; -{sign_blackwater38_3_qstarted|Você encontra um pedaço de papel que descreve o fim do ritual.\nIsso deve ser a terceira parte do ritual Kazaul.|{{0|kazaul|27|}}||}; -{sign_blackwater16|||{ - {|sign_blackwater16_qstarted|kazaul:10||||} - {|sign_blackwater16_notstarted|||||} - }|}; -{sign_blackwater16_qstarted|Você encontra um pedaço de papel rasgado preso no mato grosso. Você mal pôde identificar a frase \'Kazaul, destruidor de sonhos brilhantes\' no papel.\nEsse pedaço rasgado deve ser a segunda metade do canto para o ritual Kazaul.|{{0|kazaul|22|}}||}; -{sign_blackwater16_notstarted|Você encontra um pedaço de papel rasgado preso no mato grosso. Você mal pôde identificar a frase \'Kazaul, destruidor de sonhos brilhantes\' no papel rasgado.|||}; -{bwm_sleephall_1|Você não tem permissão para descansar aqui. Apenas residentes das Águas Negras ou seus aliados estão autorizados a descansar aqui.|||}; -{keyarea_bwm_agent_60|Você tem que falar com o homem antes de prosseguir.|||}; -{sign_blackwater50_left|Isso leva para uma área não habitada próxima de Prim.|||}; -{sign_blackwater50_right|Isto leva de volta para a povoação da Montanha das Águas Negras.|||}; - -{sign_blackwater29|||{ - {|sign_blackwater29_qstarted|bwm_agent:95||||} - {|sign_blackwater29_notstarted|||||} - }|}; -{sign_blackwater29_qstarted|Você tenta esgueirar-se, tanto quanto possível, para não ganhar nenhuma atenção dos guardas enquanto procura algo na pilha de papéis.||{{N|sign_blackwater29_qstarted_1|||||}}|}; -{sign_blackwater29_notstarted|O guarda grita com você: \n\nEi você! Ficar longe daí!|||}; -{sign_blackwater29_qstarted_1|Entre os papéis, você encontra os planos de recrutamento de mercenários para Prim e de treinamento de combatentes para um ataque maior sobre o assentamento da Montanha das Águas Negras.|{{0|bwm_agent|100|}}|{{N|sign_blackwater29_qstarted_2|||||}}|}; -{sign_blackwater29_qstarted_2|Esta deve ser a informação que Harlenn quer.|||}; - -{sign_blackwater45|||{ - {|sign_blackwater45_qstarted|prim_hunt:50||||} - {|sign_blackwater45_notstarted|||||} - }|}; -{sign_blackwater45_qstarted|Você tenta esgueirar-se, tanto quanto possível, para não ganhar nenhuma atenção do guarda enquanto procura algo na pilha de papéis.||{{N|sign_blackwater45_qstarted_1|||||}}|}; -{sign_blackwater45_notstarted|Assim que você se aproxima da mesa, o guarda grita com você:\n\nEi você! Fique longe daí!|||}; -{sign_blackwater45_qstarted_1|Entre os papéis, você encontra o que parece ser os planos para treinar combatentes e planos para um ataque contra o que parece ser Prim.|{{0|prim_hunt|60|}}|{{N|sign_blackwater45_qstarted_2|||||}}|}; -{sign_blackwater45_qstarted_2|Esta deve ser a informação que Guthbered quer.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{harlenn_start|||{ - {|harlenn_sentbyprim_8|prim_hunt:91||||} - {|harlenn_sentbyprim_2|prim_hunt:90||||} - {|harlenn_sentbyprim_1|prim_hunt:80||||} - {|harlenn_return_1|bwm_agent:251||||} - {|harlenn_return_1|bwm_agent:250||||} - {|harlenn_completed|bwm_agent:150||||} - {|harlenn_killguth_3|bwm_agent:149||||} - {|harlenn_workingforprim_1|prim_hunt:50||||} - {|harlenn_killguth_1|bwm_agent:120||||} - {|harlenn_lookforsigns_1|bwm_agent:95||||} - {|harlenn_return_3|bwm_agent:70||||} - {|harlenn_return_2|bwm_agent:65||||} - {|harlenn_1|||||} - }|}; -{harlenn_1|Bem-vindo, viajante.||{{N|harlenn_2|||||}}|}; -{harlenn_2|Você deve ser o recém-chegado que me informaram, que viajou pelo lado da montanha.||{{N|harlenn_3|||||}}|}; -{harlenn_3|Precisamos de sua ajuda para lidar com alguns .. problemas.||{{Quem é você?|harlenn_4|||||}}|}; -{harlenn_4|Oh, desculpe, eu não me apresentei corretamente. Sou Harlenn, ministro da guerra, para as pessoas que vivem nesta povoamento da montanha.||{{O quia que conduziu-me pela montanha disse-me para vê-lo.|harlenn_5|||||}}|}; -{harlenn_5|Ah, sim, temos a sorte que ele o encontrou. Como vê, nós raramente viajamos tão longe da montanha.||{{N|harlenn_6|||||}}|}; -{harlenn_6|Na maioria das vezes, passamos nosso tempo no assentamento ou aqui na montanha.||{{N|harlenn_7|||||}}|}; -{harlenn_7|No entanto, evento recentes nos obrigaram a enviar ajuda. Temos sorte que nos encontrou.||{ - {Quais os problemas aos quais você está se referindo?|harlenn_8|||||} - {O que está acontecendo aqui?|harlenn_8|||||} - }|}; -{harlenn_8|Tenho certeza que você notou ao chegar aqui. Os monstros, claro!||{{N|harlenn_9|||||}}|}; -{harlenn_9|Esses animais malditos do lado de fora do nosso assentamento. Os dragões brancos e de Aulaeth, e os seus criadores, que são ainda mais mortais.||{ - {Aqueles? Eles não foram páreo para mim.|harlenn_11|||||} - {Eu posso ver onde isso vai dar. Você precisa de mim para lidar com eles para você eu acho?|harlenn_10|||||} - {Pelo menos eles não são tão ruins como a bestas Gornaud no sopé da montanha.|harlenn_12|||||} - }|}; -{harlenn_10|Bem, sim. Mas apenas matá-los não trará qualquer efeito. Temos tentado isso, sem sucesso. Eles apenas continuam a voltar.||{{N|harlenn_13|||||}}|}; -{harlenn_11|Você parece ser do meu tipo!||{{N|harlenn_13|||||}}|}; -{harlenn_12|Gornaud? Eu não ouvi nada sobre isso. Mas tenho certeza de que não poderia ser pior do que essas feras aqui.||{{N|harlenn_13|||||}}|}; -{harlenn_13|De qualquer forma, os animais estão realmente começando a dizimar-nos. Mas eles não são a nossa única preocupação.||{{N|harlenn_14|||||}}|}; -{harlenn_14|Além disso, estamos sendo atacados por aqueles bastardos da cidade de Prim no sopé da montanha.|{{0|bwm_agent|65|}}|{{N|harlenn_15|||||}}|}; -{harlenn_15|Ah, os traiçoeiros, falsos bastardos.||{ - {O que eles fizeram?|harlenn_16|||||} - {Eu conversei com Guthbered em Prim. Eles dizem que foram vocês que os tem atacado e que estão por trás dos ataques dos Gornaud sobre Prim.|harlenn_prim_1|prim_hunt:25||||} - {Existe algo que eu possa fazer para ajudar?|harlenn_18|||||} - }|}; -{harlenn_16|Eles vêm aqui à noite para sabotar nossos suprimentos.||{{N|harlenn_17|||||}}|}; -{harlenn_17|Temos quase certeza de que são eles que estão por trás desses monstros também.|{{0|bwm_agent|66|}}|{ - {Eu conversei com Guthbered em Prim. Eles dizem que foram vocês que fazem os ataques, que também estão por trás dos ataques dos Gornaud sobre Prim.|harlenn_prim_1|prim_hunt:25||||} - {Existe algo que eu possa fazer para ajudar?|harlenn_18|||||} - }|}; -{harlenn_18|Bem, sim. Claro. Se você for até ele.||{{N|harlenn_19|||||}}|}; -{harlenn_19|Considerando que você veio até aqui vivo, eu tenho certeza que você pode lidar com isso.||{{N|harlenn_20|||||}}|}; -{harlenn_prim_1|Nós?! Hah! Faz sentido que ele diga isso. Eles estão sempre mentindo e enganando para fazer as coisas à sua maneira. Nós certamente não os atacamos!||{{N|harlenn_prim_2|||||}}|}; -{harlenn_prim_2|É, claro, *eles* é que são os causadores de todos os problemas.|{{0|prim_hunt|30|}}|{{N|harlenn_prim_3|||||}}|}; -{harlenn_prim_3|Eles ainda capturaram um de nossos companheiros batedores. Quem sabe o que eles fizeram com ele.||{{N|harlenn_prim_3_1|||||}}|}; -{harlenn_prim_3_1|||{ - {|X|bwm_agent:90||||} - {|X|bwm_agent:251||||} - {|X|bwm_agent:250||||} - {|harlenn_prim_4|||||} - }|}; -{harlenn_prim_4|Eu estou dizendo a você, ele são traidores e mentirosos!||{ - {Claro, eu acredito em você. O que você precisa que eu faça?|harlenn_prim_6|||||} - {O que eu ganho, ajudando você em vez de eles?|harlenn_prim_5|||||} - {Eu não estou comprando essa idéia. Eu acho que eu prefiro ajudar o povo de Prim a vocês.|harlenn_prim_7|||||} - }|}; -{harlenn_prim_5|Ganho? Nossa confiança é claro. Você seria sempre bem-vindo aqui em nosso acampamento. Nossos comerciantes têm equipamentos excelentes.||{ - {Ok, eu vou ajudá-lo a lidar com eles.|harlenn_prim_6|||||} - {Eu ainda não estou convencido, mas eu vou te ajudar agora.|harlenn_prim_6|||||} - }|}; -{harlenn_prim_6|Bom. Vamos precisar de um lutador capaz de nos ajudar a lidar com os monstros e os bandidos de Prim.||{{N|harlenn_19|||||}}|}; -{harlenn_prim_7|Bah. Então você é inútil para mim. Por que você se preocupou em vir aqui e perder meu tempo? Vá embora.|{{0|bwm_agent|250|}}||}; -{harlenn_20|Ok, este é o plano. Eu quero que você vá falar com Guthbered em Prim, e dar-lhe o nosso ultimato:||{{N|harlenn_21|||||}}|}; -{harlenn_21|Ou eles parar seus ataques, ou vamos ter de lidar com eles.||{ - {Claro. Eu vou dar-lhe o seu ultimato.|harlenn_22|||||} - {Não. Na verdade, eu acho que deveria, ao invés, ajudar as pessoas de Prim.|harlenn_prim_7|||||} - }|}; -{harlenn_22|Bom. Agora se apresse! Não sabemos quanto tempo nos resta antes que eles ataquem novamente.|{{0|bwm_agent|70|}}||}; -{harlenn_return_1|Você de novo? Eu não quero nenhum negócio com você. Deixe-me.||{ - {Por que você está atacando as pessoas da aldeia de Prim?|harlenn_prim_1|prim_hunt:25||||} - }|}; -{harlenn_return_2|Bem-vindo novamente, viajante. O que se passa em sua mente?||{ - {Eu conversei com Guthbered em Prim. Eles dizem que você está atacando Prim, e que está por trás dos ataques Gornaud sobre Prim.|harlenn_prim_1|prim_hunt:25||||} - {O que foi que você disse antes sobre os monstros que estão atacando seu estabelecimento?|harlenn_9|||||} - }|}; -{harlenn_return_3|Bem-vindo de volta, viajante. Você falou o traiçoeiro Guthbered em Prim?||{ - {O que eu devo fazer mesmo?|harlenn_20|||||} - {Não, ainda não.|harlenn_22|||||} - {Sim, eu falei com ele. Ele nega que eles estejam por trás de quaisquer ataques.|harlenn_talkedto_guth_1|bwm_agent:80||||} - {Eu conversei com Guthbered em Prim. Eles dizem que vocês são os que estão os atacando, e que estão por trás dos ataques dos Gornaud sobre Prim.|harlenn_prim_1|prim_hunt:25||||} - }|}; -{harlenn_workingforprim_1|Meus batedores me deram um relatório muito interessante. Eles dizem que você está trabalhando para Prim.||{{N|harlenn_workingforprim_2|||||}}|}; -{harlenn_workingforprim_2|É claro que não podemos ter isso aqui. Nós não podemos ter um espião no meio de nós. Você deve deixar o nosso assentamento, enquanto você ainda pode, traidor.|{{0|bwm_agent|251|}}||}; - -{harlenn_completed|Obrigado, amigo. Sua ajuda é muito apreciada. Todos no assentamento da Montanha das Águas Negras vão querer falar com você agora.|{{0|bwm_agent|240|}}|{{N|harlenn_completed_1|||||}}|}; -{harlenn_completed_1|Tenho certeza que os ataques de monstros vão parar agora, quando matar os últimos monstros que estão fora do assentamento.|{{0|prim_hunt|250|}}||}; -{harlenn_talkedto_guth_1|Ele nega isso?! Bah, que idiota traiçoeiro. Eu deveria ter sabido que ele não se atreveria a dizer a verdade.||{{N|harlenn_talkedto_guth_2|||||}}|}; -{harlenn_talkedto_guth_2|Eu ainda estou convencido de que eles, de alguma forma, estão por trás de todos esses ataques contra nós. Quem mais poderia ser? Não há outros assentamentos nas redondezas.||{{N|harlenn_talkedto_guth_3|||||}}|}; -{harlenn_talkedto_guth_3|Além disso, eles têm sido sempre traiçoeiros. Não, é claro que eles estão por trás dos ataques.|{{0|bwm_agent|90|}}|{{N|harlenn_talkedto_guth_4|||||}}|}; -{harlenn_talkedto_guth_4|Ok, isso não nos deixa escolha. Nós vamos ter que subir isso para outro patamar.||{{N|harlenn_talkedto_guth_5|||||}}|}; -{harlenn_talkedto_guth_5|Tem certeza de que você está pronto para isso? Você não é um dos espiões deles? Se você estiver trabalhando para eles, então você deve saber que eles não são confiáveis!||{ - {Eu estou pronto para qualquer coisa. Eu vou ajudar seu assentamento.|harlenn_talkedto_guth_7|||||} - {Na verdade, agora que você mencionou ...|harlenn_talkedto_guth_6|prim_hunt:25||||} - {Sim, eu estou trabalhando para Prim também. Eles parecem ser pessoas sensatas.|harlenn_prim_7|prim_hunt:25||||} - }|}; -{harlenn_talkedto_guth_6|O quê? Você está trabalhando para eles ou não?||{ - {Não importa. Estou pronto paa ajudar seu acampamento.|harlenn_talkedto_guth_7|||||} - {Eu estava. Mas eu decidi ajudá-lo, ao invés.|harlenn_talkedto_guth_7|||||} - {Sim. Estou ajudando-os a se livrar de vocês.|harlenn_prim_7|||||} - }|}; -{harlenn_talkedto_guth_7|Bom.||{{N|harlenn_talkedto_guth_8|||||}}|}; -{harlenn_talkedto_guth_8|Acreditamos que eles estejam planejando nos atacar a qualquer momento. Mas não temos nenhuma prova ainda.||{{N|harlenn_talkedto_guth_9|||||}}|}; -{harlenn_talkedto_guth_9|Aqui é onde eu acho que um estranho como você pode ajudar.||{{N|harlenn_talkedto_guth_10|||||}}|}; -{harlenn_talkedto_guth_10|Eu quero que você vá investigar Prim, buscando por evidênciasde que eles estejam preparando um ataque contra nós.||{{Claro, parece fácil.|harlenn_talkedto_guth_11|||||}}|}; -{harlenn_talkedto_guth_11|Bom. Tente não ser visto. Você deve ir procurar todos os indícios em torno de onde que fica Guthbered.|{{0|bwm_agent|95|}}||}; - -{harlenn_lookforsigns_1|Olá novamente. Você encontrou alguma pistas em Prim de que eles estejam planejando nos atacar?||{ - {Não, ainda não.|harlenn_lookforsigns_2|||||} - {Sim. Encontrei planos que eles estão recrutando mercenários pretendem atacar seu assentamento.|harlenn_lookforsigns_3|bwm_agent:100||||} - {O que eu devo fazer mesmo?|harlenn_talkedto_guth_8|||||} - }|}; -{harlenn_lookforsigns_2|Continue procurando. Tenho certeza de que eles estão planejando algo perverso.|||}; -{harlenn_lookforsigns_3|Eu sabia! Eu sabia que eles estavam tramando algo.||{{N|harlenn_lookforsigns_4|||||}}|}; -{harlenn_lookforsigns_4|Oh aquele porco deitado do Guthbered.||{{N|harlenn_lookforsigns_5|||||}}|}; -{harlenn_lookforsigns_5|De qualquer forma, obrigado por sua ajuda para buscar tal evidência.|{{0|bwm_agent|110|}}|{{N|harlenn_lookforsigns_6|||||}}|}; -{harlenn_lookforsigns_6|Isso exige medidas drásticas. Temos que agir rápido antes que eles possam ter tempo para completar seu plano.||{{N|harlenn_lookforsigns_7|||||}}|}; -{harlenn_lookforsigns_7|Um velho ditado diz algo como \'A única maneira de realmente matar o Gorgon é a remoção da cabeça\'. Neste caso, a cabeça desses bastardos em Prim é aquele sujeito do Guthbered.||{{N|harlenn_lookforsigns_8|||||}}|}; -{harlenn_lookforsigns_8|Devemos fazer algo sobre ele. Você tem provado o seu valor até agora. Este será o seu trabalho final.||{{N|harlenn_lookforsigns_9|||||}}|}; -{harlenn_lookforsigns_9|Eu quero que você vá ... negóciar ... com ele. Guthbered. De preferência da forma mais dolorosa e horrível que você pode imaginar.||{ - {Não tem problema.|harlenn_lookforsigns_11|||||} - {Você tem certeza de mais violência vai realmente resolver este conflito?|harlenn_lookforsigns_10|||||} - {Ele é está melhor morto.|harlenn_lookforsigns_11|||||} - }|}; -{harlenn_lookforsigns_10|Você viu os planos por si mesmo. Eles vão nos atacar, se não fizermos alguma coisa sobre isso. É claro que temos de matá-lo!||{ - {Vou tirá-lo, mas vou tentar encontrar uma solução pacífica para esta.|harlenn_lookforsigns_12|||||} - {Muito bem. Ele está melhor morto.|harlenn_lookforsigns_11|||||} - }|}; -{harlenn_lookforsigns_11|Excelente. Volte para mim uma vez que a ação é feita.|{{0|bwm_agent|120|}}||}; -{harlenn_lookforsigns_12|Certo. Faça o que precisar para removê-lo, mas eu não quero lidar com seus ataques mais.|{{0|bwm_agent|120|}}||}; - -{harlenn_sentbyprim_1|Sua expressão me diz que você tem sangue em sua mente.||{ - {Eu fui enviado pelo povo de Prim para pará-lo.|harlenn_sentbyprim_2|||||} - {Eu fui enviado pelo povo de Prim para pará-lo. No entanto, eu decidi não matá-lo.|harlenn_sentbyprim_3|||||} - }|}; -{harlenn_sentbyprim_2|Parar mim? Ha ha. Muito bem, vamos ver quem é o ser parado aqui.|{{0|prim_hunt|90|}}|{ - {Pela a sombra!|F|||||} - {Vamos lutar!|F|||||} - }|}; -{harlenn_sentbyprim_3|Que interessante ... Por favor, continue.||{{É óbvio que este conflito só vai acabar com mais derramamento de sangue. Isso deve parar por aqui.|harlenn_sentbyprim_4|||||}}|}; -{harlenn_sentbyprim_4|O que você está propondo?||{{A minha proposta é que você deixe esse acampamento e encontre um novo lar em outro lugar.|harlenn_sentbyprim_5|||||}}|}; -{harlenn_sentbyprim_5|Agora, por que eu iria querer fazer isso?||{{Estas duas cidades estão sempre lutar uns contra os outros. Se você a deixar, eles vão pensar que eles ganharam, e irão parar seus ataques.|harlenn_sentbyprim_6|||||}}|}; -{harlenn_sentbyprim_6|Hum, você pode ter uma certa razão.||{{N|harlenn_sentbyprim_7|||||}}|}; -{harlenn_sentbyprim_7|Ok, você me convenceu. Vou deixar o assentamento e procurar encontrar outra moradia. A sobrevivência do meu povo aqui é mais importante do que eu.||{{N|harlenn_sentbyprim_8|||||}}|}; -{harlenn_sentbyprim_8|Obrigado amigo, para fazer-me recuperar o juízo.|{{0|prim_hunt|91|}}|{{De nada.|R|||||}}|}; - -{harlenn_killguth_1|Olá, novamente. Você já se livrou daquele Guthbered mentiroso, em Prim?||{ - {Ainda não, mas estou trabalhando nisso.|harlenn_lookforsigns_11|||||} - {O que eu devo mesmo fazer?|harlenn_lookforsigns_7|||||} - {Sim, ele está morto.|harlenn_killguth_2||guthbered_id|1|0|} - {Sim, ele está desaparecido.|harlenn_killguth_2|bwm_agent:131||||} - }|}; -{harlenn_killguth_2|Ha ha! Ele finalmente se foi! Agora podemos descansar confortavelmente em nosso assentamento.|{{0|bwm_agent|149|}}|{{N|harlenn_killguth_3|||||}}|}; -{harlenn_killguth_3|Eles já não nos atacarão, agora que seu líder mentiroso se foi!||{{N|harlenn_killguth_4|||||}}|}; -{harlenn_killguth_4|Obrigado amigo. Aqui, temos esses itens como um símbolo de nossa gratidão por sua ajuda.|{{0|bwm_agent|150|}{1|harlenn_reward||}}|{{N|harlenn_completed|||||}}|}; - - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{blackwater_entranceguard|Ah, um recém-chegado. Bom! Eu espero que você esteja aqui para nos ajudar com os nossos problemas.||{{N|blackwater_guard1|||||}}|}; -{blackwater_guard1|Fique longe de problemas e as dificuldades vão ficar longe de você.|||}; -{blackwater_guest1|Aqui é um ótimo lugar, não?|||}; -{blackwater_guest2|Teehee. Poções Mazeg para fazer você sentir formigamento e engraçado.|||}; -{blackwater_cook|Sai da minha cozinha! Sente-se e eu vou chegar até você a tempo.|||}; -{keneg|Batendo. Chiando.||{{N|keneg_1|||||}}|}; -{keneg_1|Você tem quee fugir!||{{N|keneg_2|||||}}|}; -{keneg_2|Os monstros, eles vêm à noite.||{{N|keneg_3|||||}}|}; -{keneg_3|*Parecendo nervoso* Vá se esconder.|||}; -{blackwater_notrust|Independentemente disso, eu não posso te ajudar. Meus serviços são apenas para residentes da Montanha das Águas Negras, e eu não confio em você o suficiente ainda.|||}; -{waeges|||{ - {|waeges_1|bwm_agent:240||||} - {|waeges_2|||||} - }|}; -{waeges_1|Amigo Bem-vindo. O que eu posso fazer por você?||{{Que armas você tem para venda?|S|||||}}|}; -{waeges_2|Viajante, bem-vindo. Vejo que você está olhando para a minha boa selecção de armas.||{{N|blackwater_notrust|||||}}|}; -{blackwater_fighter|Eu não tenho tempo para você, garoto. Tem que praticar minhas habilidades.|||}; -{ungorm|... mas enquanto as forças estavam se retirando, a maior parte da ...||{{N|ungorm_1|||||}}|}; -{ungorm_1|Oh. Um jovem. Olá. Por favor, não perturbe os meus alunos, enquanto eles estão estudando.|||}; -{blackwater_pupil|Desculpe, eu não posso falar agora.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{laede|||{ - {|laede_1|bwm_agent:240||||} - {|laede_3|||||} - }|}; -{laede_1|Você é bem-vindo para descansar aqui se você quiser. Escolha qualquer cama que você desejar.|{{0|nondisplay|16|}}|{{N|laede_2|||||}}|}; -{laede_2|Devo avisá-lo, no entanto, que tem um canto ali com cheiro de podre. Alguém deve ter derramado algo para ele.|||}; -{laede_3|Viajante, bem-vindo. Estas camas são apenas para moradores de Montanha das Águas Negras.|||}; -{iducus|||{ - {|iducus_1|bwm_agent:240||||} - {|iducus_2|||||} - }|}; -{iducus_1|Amigo, bem-vindo. O que eu posso fazer por você?||{{Quais artigos você tem para venda?|S|||||}}|}; -{iducus_2|Viajante, bem vindo. Vejo que você está olhando para o meu excelente selecção de produtos.||{{N|blackwater_notrust|||||}}|}; -{blackwater_priest|... Kazaul destruidor, de esperança derramada .. \nNão não é isso.||{{N|blackwater_priest_1|||||}}|}; -{blackwater_priest_1|Derramado .. atormentar?\nNão não é isso também.||{{N|blackwater_priest_2|||||}}|}; -{blackwater_priest_2|Argh, eu não consigo lembrar.||{{O que você está fazendo?|blackwater_priest_3|||||}}|}; -{blackwater_priest_3|Oh, Olá. Não importa. Nada. Estou apenas tentando lembrar de algo. Não se preocupe com isso.|||}; -{blackwater_guard2|Alto! Você não pode passar.||{{N|blackwater_guard2_1|||||}}|}; -{blackwater_guard2_1|Há algo ali. Você vê isso?||{{N|blackwater_guard2_2|||||}}|}; -{blackwater_guard2_2|Uma névoa? A Sombra? Tenho certeza de que viu algo se movendo.||{{N|blackwater_guard2_3|||||}}|}; -{blackwater_guard2_3|Esqueça essas tarefas da guarda. Eu vou ficar aqui.||{{N|blackwater_guard2_4|||||}}|}; -{blackwater_guard2_4|Ainda bem que bloqueamos a entrada daquela velha cabana.|||}; -{blackwater_bossguard|||{ - {|blackwater_bossguard_2|prim_hunt:90||||} - {|blackwater_bossguard_1|||||} - }|}; -{blackwater_bossguard_1|(O guarda lhe dá um olhar condescendente, mas não diz nada)|||}; -{blackwater_bossguard_2|Ei, eu ficarei de fora de sua luta com o chefe. Não me envolver em seus esquemas.|||}; -{blackwater_throneguard|||{ - {|blackwater_throneguard_5|bwm_agent:240||||} - {|blackwater_throneguard_5|prim_hunt:140||||} - {|blackwater_throneguard_1|||||} - }|}; -{blackwater_throneguard_1|Apenas os residentes e membros da Montanha das Águas Negras ou aliados são permitidos aqui.||{{Aqui, tenho uma autorização por escrito para entrar.|blackwater_throneguard_3||bwm_permit|1|0|}}|}; -{blackwater_throneguard_2|Vou deixá-lo passar. Por favor, vá em frente.||{ - {Obrigado.|R|||||} - {Sim, saia do meu caminho.|R|||||} - }|}; -{blackwater_throneguard_3|Autorização, você diz? Hum, deixe-me ver isso.|{{0|prim_hunt|140|}}|{{N|blackwater_throneguard_4|||||}}|}; -{blackwater_throneguard_4|Bem, tem a assinatura e tudo. Eu acho que está tudo certo.||{{N|blackwater_throneguard_2|||||}}|}; -{blackwater_throneguard_5|Ah, é você.||{{N|blackwater_throneguard_2|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{herec_start|||{ - {|herec_q5|bwm_wyrms:30||||} - {|herec_q3|bwm_wyrms:20||||} - {|herec_q1|bwm_wyrms:10||||} - {|herec_1|||||} - }|}; -{herec_1|Bem-vindo, viajante. Você deve ser o que eu ouvi falar, que viajou até a montanha.||{{N|herec_2|||||}}|}; -{herec_2|Você estaria disposto a me ajudar com uma tarefa?||{ - {Depende. Que tarefa?|herec_4|||||} - {Por que eu iria querer ajudá-lo?|herec_3|||||} - }|}; -{herec_3|Ah, um negociador. Eu gosto disso. Se você me ajudar, eu vou oferecer para negociar os frutos do meu trabalho com você. Deve ser mais valioso para você.||{ - {Bom. Que tarefa que estamos falando aqui?|herec_4|||||} - {Não, como posso concordar com algo que eu não sei o que é? Eu estou fora.|herec_11|||||} - }|}; -{herec_4|É realmente simples. Estou estudando esses dragões que espreitam fora do assentamento. Estou tentando descobrir os seus pontos fortes, para que eu possa explorar esse conhecimento.||{{N|herec_5|||||}}|}; -{herec_5|Mas minha especialidade é os estudá-los, e não enfrentá-los.||{{N|herec_6|||||}}|}; -{herec_6|E é aí onde você entra||{{N|herec_7|||||}}|}; -{herec_7|Eu preciso de você para coletar algumas amostras deles para mim. Eu ouvi dizer que alguns dos dragões brancos têm garras mais afiadas que podem ser extraídas no momento da morte.||{{N|herec_8|||||}}|}; -{herec_8|Se você fosse me trazer algumas amostras de as garras dos dragões brancos, isso irá realmente acelerar minhas pesquisas.||{{N|herec_9|||||}}|}; -{herec_9|Vamos dizer, cinco dessas garras deve ser suficiente.||{ - {Ok, parece fácil. Vou pegar seus cinco garras de dragões brancos.|herec_10|||||} - {Claro. Essas coisas não são páreo para mim.|herec_10|||||} - {De jeito nenhum eu chego perto desses animais novamente.|herec_11|||||} - }|}; -{herec_10|Bom. Obrigado. Por favor, volte logo para que eu possa continuar minha pesquisa sobre estes animais.|{{0|bwm_wyrms|10|}}||}; -{herec_11|Eu lhe asseguro que minha pesquisa é importante. Mas a decisão é sua, também a sua perda.|||}; -{herec_q1|Bem-vindo de volta. Como vai a pesquisa?||{ - {Conte-me novamente o que devo fazer.|herec_4|||||} - {Eu não encontrei tudo ainda. Mas estou trabalhando nisso.|herec_10|||||} - {Eu encontrei o que você pediu.|herec_q2||bwm_claws|5|0|} - }|}; -{herec_q2|Muito bem feito, meu amigo! Essas garras serão muito valiosas em minha pesquisa.|{{0|bwm_wyrms|20|}}|{{N|herec_q2_2|||||}}|}; -{herec_q2_2|Volte em apenas um minuto e eu vou ter algo pronto para você.|||}; -{herec_q3|Bem-vindo de volta, meu amigo! Boas notícias. Eu destilei com sucesso os fragmentos das garras que você trouxe mais cedo.||{{N|herec_q4|||||}}|}; -{herec_q4|Agora eu sou capaz de criar poções eficazes que contêm algumas essências dos dragões brancos. Estas poções vão ser muito úteis em enfrentamentos futuros contra esses monstros.|{{0|bwm_wyrms|30|}}|{{N|herec_q5|||||}}|}; -{herec_q5|Gostaria de comprar algumas poções?||{{Claro. Vamos ver o que você tem.|S|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bjorgur_start|||{ - {|bjorgur_return_1|bjorgur_grave:50||||} - {|bjorgur_return_2|bjorgur_grave:15||||} - {|bjorgur_1|||||} - }|}; -{bjorgur_return_1|Olá de novo, amigo. Obrigado por sua ajuda anteriormente, junto ao túmulo da minha família.|||}; -{bjorgur_return_2|Olá novamente. Você já investigou se alguma coisa aconteceu com meu túmulo da família?||{ - {Não, ainda não.|bjorgur_9|||||} - {(Mentira) eu fui para verificar o túmulo. Tudo parece estar normal. Você deve estar imaginando coisas.|bjorgur_return_3|bjorgur_grave:60||||} - {Conte-me novamente o que devo fazer.|bjorgur_3|||||} - {Sim. Eu matei o intruso e restaurei o punhal para o seu lugar original.|bjorgur_complete_1|bjorgur_grave:40||||} - }|}; -{bjorgur_1|Olá lá. Você teria como me contar alguma coisa sobre um túmulo a sudoeste de Prim?||{ - {Eu estive lá. Eu conheci alguém em um dos níveis mais baixos.|bjorgur_2|bjorgur_grave:30||||} - {O que tem?|bjorgur_3|||||} - {Não, sinto muito.|bjorgur_3|||||} - }|}; -{bjorgur_2|Você esteve lá?||{{N|bjorgur_3|||||}}|}; -{bjorgur_3|Minha sepultura familiar está localizada no túmulo a sudoeste de Prim, fora da mina Elm. Tenho medo de que alguma coisa tenha perturbado a paz por lá.||{{N|bjorgur_4|||||}}|}; -{bjorgur_4|Veja você, o meu avô gostava muito de uma adaga especial valiosa que nossa família costumava possuir. Ele a usava sempre com ele.||{{N|bjorgur_5|||||}}|}; -{bjorgur_5|A adaga deveria, evidentemente, atrair caçadores de tesouros, mas, até agora, parece ter sido poupada disso.||{{N|bjorgur_6|||||}}|}; -{bjorgur_6|Agora, eu temo algo aconteceu com o túmulo. Eu não tenho dormido bem nas últimas duas noites, e tenho certeza que isso deve ser a causa.|{{0|bjorgur_grave|10|}}|{{N|bjorgur_7|||||}}|}; -{bjorgur_7|Você não poderia ir ver o túmulo e verificar o que está acontecendo por lá?||{ - {Claro. Vou verificar em seu túmulo de ceus ancestais.|bjorgur_8|||||} - {Um tesouro que você diz? Eu estou interessado.|bjorgur_8|||||} - {Eu realmente já estive lá e restaurei o punhal para o seu lugar original.|bjorgur_complete_2|bjorgur_grave:40||||} - }|}; -{bjorgur_8|Obrigado. Por favor, veja se alguma coisa aconteceu com a sepultura, e que poderia ser a causa da minha ansiedade noturna.|{{0|bjorgur_grave|15|}}|{{N|bjorgur_9|||||}}|}; -{bjorgur_return_3|Você dissq que não houve nada? Mas eu tenho certeza de que algo deve ter acontecido por lá. De qualquer maneira, obrigado por verificar isso para mim.|||}; -{bjorgur_9|Por favor, apresse-se, e volte aqui para me contar sobre o seu progresso quando você descobrir alguma coisa.|||}; -{bjorgur_complete_1|Um intruso? Oh, obrigado para lidar com este assunto.||{{N|bjorgur_complete_2|||||}}|}; -{bjorgur_complete_2|Você diz que o punhal foi restaurado a seu lugar original? Obrigado. Agora eu poderei ser capaz de descansar durante as noites.||{{N|bjorgur_complete_3|||||}}|}; -{bjorgur_complete_3|Mais uma vez obrigado. Eu receio que eu não possa dar-lhe qualquer coisa, salvo a minha gratidão. Você deve ir ver os meus parentes em Feygard se você tiver a chance de viajar até lá.|{{0|bjorgur_grave|50|}}||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bjorgur_bandit|Ei você! Você não deveria estar aqui. Este punhal é meu. Sai fora!|{{0|bjorgur_grave|30|}}|{ - {Certo. Eu vou sair.|X|||||} - {Ei, essa adaga que você tem aí parece bem legal.|F|||||} - }|}; -{sign_bwm35|||{ - {|sign_bwm35_1|bjorgur_grave:40||||} - {|sign_bwm35_2|||||} - }|}; -{sign_bwm35_1|Você vê os restos de equipamentos enferrujados e couro podre.|||}; -{sign_bwm35_2|Você vê os restos de equipamentos enferrujados e couro podre. Algo parece ter sido recentemente removido desse lugar, visto que uma parte está completamente sem poeira\n\nA forma marcada na poeira tem aprocimadamente o formato de um punhal. Deve ter havido um punhal aqui antes que alguém o tenha removido.||{{Coloque a adaga em seu lugar original.|sign_bwm35_3||bjorgur_dagger|1|0|}}|}; -{sign_bwm35_3|Você coloca o punhal de volta entre os demais utensílios, de onde ele parecia estar.|{{0|bjorgur_grave|40|}}||}; -{fulus_start|||{ - {|fulus_return_1|bjorgur_grave:60||||} - {|fulus_return_3|bjorgur_grave:51||||} - {|fulus_return_2|bjorgur_grave:20||||} - {|fulus_1|||||} - }|}; -{fulus_return_1|Olá de novo, amigo. Obrigado por sua assistência na obtenção do punhal que antes.|||}; -{fulus_return_2|Olá novamente. Você foi capaz de recuperar esse punhal do túmulo da família Bjorgur?||{ - {Não, ainda não.|fulus_9|||||} - {Eu decidi, ao invés, ajudar Bjorgur.|fulus_return_3|bjorgur_grave:40||||} - {Conte-me novamente o que devo fazer.|fulus_3|||||} - {Sim. Aqui está.|fulus_complete_1||bjorgur_dagger|1|0|} - }|}; -{fulus_return_3|O quê? Suspiro. Criança estúpida. Esse punhal vale uma fortuna. Nós poderíamos ter ficado ricos! Rico, eu te digo!|{{0|bjorgur_grave|51|}}||}; -{fulus_1|Olá lá. Você parece ser exatamente o tipo de pessoa que eu estou procurando.||{{N|fulus_2|||||}}|}; -{fulus_complete_1|Oh, uau, você realmente conseguiu obter o punhal? Obrigado garoto. Isso vale muito. Aqui, tome estas moedas como compensação por seus esforços!|{{0|bjorgur_grave|60|}{1|fulus_reward||}}|{{N|fulus_complete_2|||||}}|}; -{fulus_complete_2|Mais uma vez obrigado. Agora, vamos ver .. quanto devemos vender este punhal para ..|||}; -{fulus_2|Você estaria interessado em ouvir sobre uma proposta de negócio que eu tenho?||{ - {Claro. Qual é a proposta?|fulus_3|||||} - {Se ele irá trazer-me lucros, então tudo bem.|fulus_3|||||} - {Eu não poderia pensar que você tenha algo de bom para me oferecer, mas vou ouvi-lo de qualquer maneira.|fulus_3|||||} - }|}; -{fulus_3|Há algum tempo, eu soube a respeito de um certo punhal valioso que uma determinada família costumava possuir aqui em Prim.||{{N|fulus_4|||||}}|}; -{fulus_9|Agora se apresse. Eu realmente preciso do punhal em breve.|||}; -{fulus_4|Este punhal é extremamente valioso para mim, por motivos pessoais.||{ - {Eu não estou gostando de onde isso está levando. É melhor eu não me envolver em seus negócios obscuros.|fulus_5|||||} - {Isso está ficando cada vez mais interessante, por favor, continue.|fulus_6|||||} - {Conte-me mais.|fulus_6|||||} - {Eu já ajudei Bjorgur devolver o punhal para o seu lugar original.|fulus_return_3|bjorgur_grave:40||||} - }|}; -{fulus_5|Certo. Ajude-se a si mesmo, você é um sujeito de duas faces.|||}; -{fulus_6|A família em questão é a família de Bjorgur.||{{N|fulus_7|||||}}|}; -{fulus_7|Agora, acontece que eu sei que este punhal particular pode ser encontrada em sua tumba familiar que foi aberta por outras ... pessoas ... recentemente.||{{N|fulus_8|||||}}|}; -{fulus_8|O que eu quero é simples. Você vai obter esse punhal e trazê-lo para mim, e eu te recompensarei generosamente.||{ - {Parece fácil. Eu vou fazer isso.|fulus_10|||||} - {Não, acho melhor não se envolver em seus negócios obscuros.|fulus_5|||||} - {Eu já ajudei Bjorgur devolver o punhal para o seu lugar original.|fulus_return_3|bjorgur_grave:40||||} - }|}; -{fulus_10|Bom. Volte para mim uma vez que você o tenha. Talvez você possa falar com Bjorgur sobre como chegar ao túmulo. Sua casa é logo ali fora, aqui em Prim. Só não mencione nada sobre o nosso plano para ele!|{{0|bjorgur_grave|20|}}|{{N|fulus_9|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{prim_armorer|||{ - {|prim_armorer_1|prim_hunt:240||||} - {|prim_armorer_2|||||} - }|}; -{prim_armorer_1|Amigo, bem-vindo! Gostaria de ver os equipamentos que tenho disponíveis?||{{Claro. Mostre-me o que você tem.|prim_armorer_3|||||}}|}; -{prim_armorer_2|Viajante, bem-vindo. Você está aqui para pedir minha ajuda e do equipamento que eu vendo?||{{N|prim_notrust|||||}}|}; -{prim_armorer_3|Devo dizer-lhe que a meus fornecedores não são mais o que costumavam ser, agora que a entrada da mina sul desmoronou. Muito menos comerciantes têm vindo aqui para Prim nesses tempos.||{{Ok, deixe-me ver seus produtos.|S|||||}}|}; -{prim_notrust|Independentemente disso, eu não posso te ajudar. Meus serviços são apenas para residentes de Prim, e eu não confio em você o suficiente ainda. Você pode ser um espião do assentamento da Montanha das Águas Negras.|||}; -{prim_tailor|Viajante, bem-vindo, o que eu posso fazer por você?||{{Deixe-me ver o que você tem disponível para vender.|prim_tailor_1|||||}}|}; -{prim_tailor_1|Vender? Sinto muito, todo meu suprimento acabou. Agora que os comerciantes não vêm mais aqui, eu não recebo mais carregamentos regulares. Então, no momento, não tenho nada para negociar com você, infelizmente.|||}; - -{guthbered_guard|||{ - {|guthbered_guard_2|bwm_agent:130||||} - {|guthbered_guard_1|||||} - }|}; -{guthbered_guard_1|Converse com o chefe ao invés.|||}; -{guthbered_guard_2|Por favor, não me machuque! Eu só estou fazendo o meu trabalho aqui.|||}; - -{prim_guard1|O que você está olhando? Estas armas nas caixas aqui são apenas para nós, guardas.|||}; -{prim_guard2|(O guarda observa você com um olhar condescendente)|||}; -{prim_guard3|Oh, eu estou tão cansado. Quando é que vamos poder descansar?|||}; -{prim_guard4|Não posso falar agora. Estou de guarda. Se precisar de ajuda, fale com alguém ali ao invés.|||}; -{prim_treasury_guard|Veja essas barras? Eles não vão segurar-me por muito tempo.|||}; -{prim_acolyte|Quando a minha formação completar, eu vou ser um dos maiores curandeiros ao redor!|||}; -{prim_pupil1|Você não consegue ver que eu estou tentando ler por aqui? Fale comigo depois e eu poderei estar mais estar interessado.|||}; -{prim_pupil2|Não posso falar agora, tenho trabalho a fazer.|||}; -{prim_pupil3|Você é aquele de quem eu ouvi falar? Não, você não pode ser. Eu imaginei alguém mais alto.|||}; -{prim_priest|||{ - {|prim_priest_1|prim_hunt:240||||} - {|prim_priest_2|||||} - }|}; -{prim_priest_1|Amigo, bem-vindo! Gostaria de consultar minha seleção de finas poções e pomadas?||{{Claro. Mostre-me o que você tem.|S|||||}}|}; -{prim_priest_2|Viajante, bem-vindo. Você veio para pedir minha ajuda e a de minhas poções?||{{N|prim_notrust|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{throdna_start|||{ - {|throdna_purify_4|kazaul:100||||} - {|throdna_purify_1|kazaul:41||||} - {|throdna_return_3|kazaul:30||||} - {|throdna_return_1|kazaul:10||||} - {|throdna_1|||||} - }|}; -{throdna_1|Kazaul .. Sombra .. o que era mesmo?||{{N|throdna_2|||||}}|}; -{throdna_2|Ah, um visitante. Olá lá. Eu não vi você por aqui antes. Eles permitiram que você viesse aqui?||{{N|throdna_3|||||}}|}; -{throdna_3|É claro que eles permitiram. Estou apenas divagando. Harlenn e sua turma sempre mantêm seus deveres mundanos sob controle.||{{N|throdna_4|||||}}|}; -{throdna_4|Então, quem é você, hein? Provavelmente está aqui para me incomodar com alguma queixa mundana sobre a necessidade de mais recursos para o assentamento ou alguém reclamando do vento frio do lado de fora de novo?||{{N|throdna_loop_1|||||}}|}; -{throdna_loop_1|O que você quer?||{ - {Que lugar é esse?|throdna_6|||||} - {Quem é você?|throdna_7|||||} - {O que foi que você falou quando cheguei? Kazaul?|throdna_8|||||} - {Você está ciente de que há uma rivalidade acontecendo entre esse assentamento e Prim?|throdna_5|||||} - }|}; -{throdna_5|E lá vai você com seus problemas mundanos. Eu digo a você, seus problemas mundanos não me interessam nem um pouco.||{{N|throdna_6|||||}}|}; -{throdna_6|Esta é a câmara dos magos da Montanha das Águas Negras. Dedicamos o nosso tempo para os estudos da Sombra e seus descendentes.||{ - {Descendentes?|throdna_8|||||} - {Vamos falar de outras questões.|throdna_loop_1|||||} - }|}; -{throdna_7|Eu sou Throdna. Uma das messoas mais sábias nesse setor, caso você me pergunte.||{{N|throdna_loop_1|||||}}|}; -{throdna_8|Kazaul, a cria da Sombra de medula vermelha.|{{0|kazaul|8|}}|{{N|throdna_9|||||}}|}; -{throdna_9|Estamos tentando ler tudo o que puder sobre Kazaul, e o ritual. Parece que pode ser tarde demais.||{{O que quer dizer?|throdna_10|||||}}|}; -{throdna_10|O ritual. Acreditamos que Kazaul irá se manifestar em nossa presença em breve.||{{N|throdna_11|||||}}|}; -{throdna_11|Temos de aprender mais sobre o ritual Kazaul, para ganhar seu poder e aprender a usá-lo para nossos propósitos.||{ - {Posso ajudar de alguma forma?|throdna_12|||||} - {O que você pretende fazer?|throdna_12|||||} - }|}; -{throdna_12|Como eu disse, nós queremos aprender mais sobre o próprio ritual.|{{0|kazaul|9|}}|{{N|throdna_13|||||}}|}; -{throdna_13|Tempos atrás, estávamos à beira de ter em nossas mãos todo o ritual em si, mas o mensageiro diante em circunstâncias interessantes durante sua viagem até aqui.||{{N|throdna_14|||||}}|}; -{throdna_14|Nós sabíamos que ele tinha as partes do ritual completo com ele, mas como ele foi morto e nós não pudemor ir atrás dele, por causa dos monstros - suas anotações ficaram inacessíveis para nós.||{{N|throdna_15|||||}}|}; -{throdna_15|De acordo com nossas fontes, devem haver cinco partes do ritual espalhadas por toda a montanha. Três deles descrevendo o ritual em si, e duas descrevendo o canto Kazaul usado para chamar o guardião.||{{N|throdna_15_1|||||}}|}; -{throdna_16|Hum, talvez você poderia ter-nos um bom uso ...||{ - {Eu ficaria feliz em ajudar.|throdna_18|||||} - {Parece perigoso, mas vou fazê-lo.|throdna_18|||||} - {Mantenha o seu ritual da sombra para vocês mesmo. Eu não quero ser envolvido nisto.|throdna_17|||||} - }|}; -{throdna_17|Bem, vamos ter de encontrar outra pessoa então.|||}; -{throdna_18|Sim, você pode ser capaz de ajudar. Não que você realmente tenha realmente alguma escolha.||{{N|throdna_19|||||}}|}; -{throdna_19|OK. Encontre-me os fragmentos do ritual que o antigo mensageiro estava trazendo. Eles devem ser encontrados em algum lugar no caminho de acesso à Montanha das Águas Negras.|{{0|kazaul|10|}}|{{Vou voltar com os pedaços do ritual.|throdna_20|||||}}|}; -{throdna_20|Sim, você irá.|{{0|kazaul|11|}}||}; -{throdna_return_1|Olá novamente. Eu espero que você venha aqui me dizer que tem as cinco partes do ritual.||{ - {Eu ainda estou procurando por elas.|throdna_return_2|||||} - {Quantos pedaços eu tenho que encontrar?|throdna_15|||||} - {Conte-me novamente o que devo fazer.|throdna_12|||||} - {Sim, eu acho que encontrei todos eles.|throdna_check_1|kazaul:21||||} - }|}; -{throdna_return_2|Então se apresse e vá encontrá-los! Por quê você ainda está parado aqui?|||}; -{throdna_return_3|Você realmente encontrou todas as cinco partes? Acho que eu deveria agradecer. Pois então. Obrigado.|{{0|kazaul|30|}}|{{N|throdna_return_4|||||}}|}; -{throdna_15_1|||{ - {|X|kazaul:10||||} - {|throdna_16|||||} - }|}; -{throdna_check_1|||{ - {|throdna_check_2|kazaul:22||||} - {|throdna_check_fail|||||} - }|}; -{throdna_check_2|||{ - {|throdna_check_3|kazaul:25||||} - {|throdna_check_fail|||||} - }|}; -{throdna_check_3|||{ - {|throdna_check_4|kazaul:26||||} - {|throdna_check_fail|||||} - }|}; -{throdna_check_4|||{ - {|throdna_return_3|kazaul:27||||} - {|throdna_check_fail|||||} - }|}; -{throdna_check_fail|Parece que você não encontrou ainda todas as cinco partes.||{{N|throdna_15|||||}}|}; -{throdna_return_4|Temos assuntos mais urgentes para nos concentrarmos. Como mencionado anteriormente, acreditamos que Kazaul irá se manifestar em nossa presença em breve.||{{N|throdna_return_5|||||}}|}; -{throdna_return_5|Se isso vier a acontecer, não poderíamos completar a nossa pesquisa sobre o ritual ou sobre Kazaul, e todos os nossos esforços estariam perdidos.||{{N|throdna_return_6|||||}}|}; -{throdna_return_6|Portanto, temos a intenção de retardar o processo, tanto quanto pudermos, até que tenhamos aprendido sobre seus poderes.||{{N|throdna_return_7|||||}}|}; -{throdna_return_7|Você pode ser útil para nós aqui novamente.||{ - {Eu estou pronto para qualquer coisa.|throdna_return_8|||||} - {O que você precisa de mim?|throdna_return_8|||||} - {Espero que envolva mais mortes e saques.|throdna_return_8|||||} - }|}; -{throdna_return_8|Precisamos de você para fazer duas coisas. Primeiro, você deve encontrar o santuário de Kazaul. Nossos batedores dizem-nos que o santuário deve estar localizado em algum lugar perto da base da Montanha das Águas Negras.||{{N|throdna_return_9|||||}}|}; -{throdna_return_9|No entanto, todas as passagens para o santuário estão \'envoltas em sombras\' de acordo com nossos batedores. Eu não tenho certeza o que isso significa.||{{N|throdna_return_10|||||}}|}; -{throdna_return_10|Segundo, nós precisamos que você pegue um frasco de purificador de espírito e aplique ao santuário.|{{0|kazaul|40|}}|{{N|throdna_return_11_select|||||}}|}; -{throdna_return_11_select|||{ - {|throdna_return_13|kazaul:41||||} - {|throdna_return_11|||||} - }|}; -{throdna_return_11|Este frasco é um frasco de purificador de espírito. Deve atrasar o processo o tempo suficiente para que sejamos capazes de continuar nossa pesquisa.||{ - {Parece fácil. Eu vou fazer isso.|throdna_return_12|||||} - {Parece perigoso, mas vou fazê-lo.|throdna_return_12|||||} - {Isso soa como uma armadilha. Eu não vou aceitar fazer seu trabalho sujo.|throdna_17|||||} - }|}; -{throdna_return_12|Bom, aqui está o frasco. Agora se apresse.|{{0|kazaul|41|}{1|throdna_items||}}|{{N|throdna_return_13|||||}}|}; -{throdna_return_13|Volte para mim assim que tiver concluído sua tarefa.|||}; -{throdna_purify_1|Olá novamente. Eu espero que você esteja aqui para me dizer que você purificou o santuário de Kazaul.||{ - {Sim, está feito.|throdna_purify_3|kazaul:60||||} - {Não, ainda não.|throdna_purify_2|||||} - {Conte-me novamente o que devo fazer.|throdna_return_8|||||} - }|}; -{throdna_purify_2|Então se apresse e leve o frasco para o santuário! Por quê você ainda está parado por aqui?|||}; -{throdna_purify_3|Bom. Temos pressa em continuar nossa pesquisa sobre Kazaul.|{{0|kazaul|100|}}|{{N|throdna_purify_4|||||}}|}; -{throdna_purify_4|Você deve sair daqui e permitir que nos concentremos em nosso trabalho.||{{N|throdna_purify_5|||||}}|}; -{throdna_purify_5|.. Kazaul, destruidor de sonhos brilhantes ..||{{N|throdna_purify_6|||||}}|}; -{throdna_purify_6|.. Kazaul .. Sombra ..||{{N|throdna_purify_7|||||}}|}; -{throdna_purify_7|(Throdna continua a resmungar sobre sobre Kazaul, mas você não pode fazer quaisquer outras palavras)|||}; - -{throdna_guard|Mantenha sua voz baixa, enquanto estiver na câmara interior.|||}; -{blackwater_acolyte|Você também está olhando para se tornar um com a Sombra?|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{kazaul_guardian|Kazaul..||{ - {O quê?|kazaul_guardian_1|||||} - {Kazaul, destruidor de sonhos brilhantes.|kazaul_guardian_2|kazaul:40||||} - }|}; -{kazaul_guardian_1|(O guardião parece completamente inconsciente de sua presença)|||}; -{kazaul_guardian_2|(O guardião olha para você com seus olhos ardentes)||{{Kazaul, profanador do Templo do Elytharan.|kazaul_guardian_3|||||}}|}; -{kazaul_guardian_3|(Você vê os olhos ardentes do guardião instantaneamente se transformar em uma névoa vermelho escuro)|{{0|kazaul|50|}}|{ - {Uma luta, eu estava esperando por isso!|F|||||} - {Por favor, não me mate!|F|||||} - {Pela a sombra!|F|||||} - }|}; -{sign_kazaul|||{ - {|sign_kazaul_1|kazaul:60||||} - {|sign_kazaul_3|||||} - }|}; -{sign_kazaul_1|Você vê o santuário de Kazaul onde você derramou o frasco de purificador de espírito.||{{N|sign_kazaul_2|||||}}|}; -{sign_kazaul_2|A rocha anteriormente brilhante e quente agora está fria como qualquer pedaço de rocha comum.|||}; -{sign_kazaul_3|À sua frente está uma grande rocha polida, que parece ser um santuário.||{{N|sign_kazaul_4|||||}}|}; -{sign_kazaul_4|Você pode sentir um calor intenso vindo da rocha, quase como um fogo ardente.||{ - {Deixe a formação sozinha.|X|||||} - {Aplica o frasco purificador de espírito na formação.|sign_kazaul_5||q_kazaul_vial|1|0|} - }|}; -{sign_kazaul_5|Você suavemente derrama o conteúdo do frasco na formação.|{{0|kazaul|60|}}|{{N|sign_kazaul_6|||||}}|}; -{sign_kazaul_6|Você ouve um ruído alto das profundezas do santuário. No início, a formação parece não ter sido afetada, mas depois de um tempo você vê o brilho da rocha diminuir lentamente.||{{N|sign_kazaul_7|||||}}|}; -{sign_kazaul_7|O processo continua, mais rapidamente, reduzindo o calor gerado na formação.||{{N|sign_kazaul_8|||||}}|}; -{sign_kazaul_8|Este deve ser o processo de purificação do santuário Kazaul.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{erinith|||{ - {|erinith_complete_1|erinith:50||||} - {|erinith_givenpotion_1|erinith:40||||} - {|erinith_givenpotion_1|erinith:41||||} - {|erinith_givenpotion_1|erinith:42||||} - {|erinith_needspotions_1|erinith:30||||} - {|erinith_needsbook_1|erinith:20||||} - {|erinith_needsbook_1|erinith:21||||} - {|erinith_1|||||} - }|}; -{erinith_complete_1|Obrigado por toda sua ajuda anterior.|||}; -{erinith_1|Por favor, você tem que me ajudar!||{{O que há de errado?|erinith_story_1|||||}}|}; -{erinith_story_1|Eu estava montando acampamento aqui durante a noite, e foi atacado por bandidos enquanto dormia.|{{0|erinith|10|}}|{{N|erinith_story_2|||||}}|}; -{erinith_story_2|Concordo, esta ferida não parece estar se curando.||{{N|erinith_story_3|||||}}|}; -{erinith_story_3|Pelo menos eu consegui impedi-los de obter o meu livro. Tenho certeza de que eles estavam atrás do livro.||{ - {Parece um livro valioso então. Isso soa interessante, por favor, continue.|erinith_story_4|||||} - {O que aconteceu?|erinith_story_4|||||} - }|}; -{erinith_story_4|Consegui lançar o livro no meio das árvores ali durante o ataque. *Aponta para as árvores diretamente ao norte*||{{N|erinith_story_5|||||}}|}; -{erinith_story_5|Eu não acho que eles conseguiram pegar o livro. É provável que ainda esteja em algum lugar entre as árvores.||{{O que há no livro?|erinith_story_6|||||}}|}; -{erinith_story_6|Ah, eu não posso dizer realmente.||{ - {Eu poderia ajudá-lo a encontrar o livro, se quiser.|erinith_story_7|||||} - {Quanto valeria para você, caso eu obtenha o livro de volta?|erinith_story_gold_1|||||} - }|}; -{erinith_story_7|Você o faria? Oh obrigado.|{{0|erinith|20|}}|{{N|erinith_story_8|||||}}|}; -{erinith_story_8|Por favor, vá procurá-lo entre as árvores para o nordeste.|||}; -{erinith_story_gold_1|Valeria? Bem, eu estava esperando que você pode me ajudar de qualquer maneira, mas eu acho que posso lhe dar umas 200 moedas de ouro.||{ - {200 moedas de ouro é então. Eu vou procurar livro para você.|erinith_story_gold_2|||||} - {Apenas 200 moedas de ouro, é que tudo o que você pode fazer? Tudo bem, eu vou procurar para você esse livro estúpido.|erinith_story_gold_2|||||} - {Guarde seu ouro, eu vou devolver o livro para você de qualquer maneira.|erinith_story_7|||||} - {Não, eu não estou me envolver nisso. Tchau.|X|||||} - }|}; -{erinith_story_gold_2|Faça isso rápido.|{{0|erinith|21|}}|{{N|erinith_story_8|||||}}|}; -{erinith_needsbook_1|Você ainda não encontrou meu livro?||{ - {Ainda não, eu ainda estou procurando.|erinith_story_8|||||} - {Sim, aqui está o seu livro.|erinith_needsbook_2||erinith_book|1|0|} - }|}; -{erinith_needsbook_2||{{0|erinith|30|}}|{ - {|erinith_needsbook_3_2|erinith:21||||} - {|erinith_needsbook_3_1|||||} - }|}; -{erinith_needsbook_3_1|Você encontrou! Oh muito obrigado. Eu estava tão preocupado que eu tinha perdido.||{{N|erinith_needspotions_2|||||}}|}; -{erinith_needsbook_3_2|Você encontrou! Oh muito obrigado. Em troca, aqui é o ouro que eu prometi.|{{1|gold200||}}|{{N|erinith_needspotions_2|||||}}|}; - -{erinith_needspotions_1|Obrigado por me ajudar a encontrar o meu livro anteriormente.||{{N|erinith_needspotions_2|||||}}|}; -{erinith_needspotions_2|Eu ainda estou machucado com esta ferida que abriu durante o ataque noturno.||{{N|erinith_needspotions_3|||||}}|}; -{erinith_needspotions_3|Realmente, dói muito e não parece estar se curando.||{{N|erinith_needspotions_4|||||}}|}; -{erinith_needspotions_4|Eu estou realmente precisando de alguma cicatrização mais forte aqui. Talvez algumas poções resolvessem.||{{N|erinith_needspotions_5|||||}}|}; -{erinith_needspotions_5|Ouvi dizer que os fabricantes de poções estes dias têm de poções maiores de cura, e não apenas as poções regulares.||{{N|erinith_needspotions_6|||||}}|}; -{erinith_needspotions_6|Uma porção maior certamente resolveria. Caso contrário, eu acho que quatro poções regular de saúde seriam suficientes.|{{0|erinith|31|}}|{ - {Vou pegar aquelas poções para você.|erinith_needspotions_7|||||} - {Aqui, pegue essa poção de farinha de ossos ao invés. É muito potente na cura de feridas profundas.|erinith_gavepotion_bm_1||bonemeal_potion|1|0|} - {Aqui, pegue essa poção de saúde.|erinith_gavepotion_major_1||health_major2|1|0|} - {Aqui, pegue essa poção de saúde.|erinith_gavepotion_major_1||health_major|1|0|} - {Aqui, tome estas poções quatro regulares de saúde.|erinith_gavepotion_reg_1||health|4|0|} - }|}; -{erinith_needspotions_7|Obrigado meu amigo. Por favor, volte logo.|||}; -{erinith_gavepotion_bm_1|Poção farinha de ossos? Mas .. mas .. Nós não somos autorizados a usá-los uma vez que eles são proibidos por Lorde Geomyr.|{{0|erinith|40|}}|{ - {Quem vai descobrir?|erinith_gavepotion_bm_2|||||} - {Eu já as usei em mim mesmo. São perfeitamente seguras.|erinith_gavepotion_bm_2|||||} - }|}; -{erinith_gavepotion_bm_2|Hm, sim. Eu acho que você tem razão. Oh, bem, aqui vai. *bebeu a porção*||{{N|erinith_gavepotion_1|||||}}|}; -{erinith_gavepotion_major_1|Obrigado por me trazer uma. *bebeu a porção*|{{0|erinith|41|}}|{{N|erinith_gavepotion_1|||||}}|}; -{erinith_gavepotion_reg_1|Obrigado por trazê-las para mim. *Bebeu todas as quatro poções*|{{0|erinith|42|}}|{{N|erinith_gavepotion_1|||||}}|}; -{erinith_gavepotion_1|Uau, eu já sinto-me um pouco melhor. Eu acho que esta cura realmente funciona.||{{N|erinith_givenpotion_1|||||}}|}; -{erinith_givenpotion_1|Obrigado, meu amigo, por sua ajuda. Meu livro está seguro e minha ferida está cicatrizando. Espero que nossos caminhos se cruzem novamente.|{{0|erinith|50|}}||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{woodcutter_0|Vespas estúpidas ..|||}; -{woodcutter_2|Fique longe da estrada para o oeste, pois conduz a Carn Tower. Você certamente não deve quer ir para lá.||{{N|woodcutter_1|||||}}|}; -{woodcutter_1|Ao viajar, mantenha-se nas estradas. Saia do curso e você pode encontrar-se em perigo.|||}; -{woodcutter_3|Talvez não devêssemos ter cortado todas as árvores ali. Essas vespas parecem realmente chateadas.|||}; -{woodcutter_4|Eu ainda posso sentir a picada dessas vespas em minhas pernas. Que bom que já terminamos de cortar todas as árvores.|||}; -{woodcutter_5|Olá, bem-vindo ao nosso acampamento. Você deve falar com Hadracor ali.|||}; - -{hadracor|||{ - {|hadracor_complete_1|hadracor:30||||} - {|hadracor_gaveitems_1|hadracor:21||||} - {|hadracor_gaveitems_1|hadracor:20||||} - {|hadracor_wantsitems_1|hadracor:10||||} - {|hadracor_1|||||} - }|}; -{hadracor_1|Olá, eu sou Hadracor.||{ - {Que lugar é esse?|hadracor_story_1|||||} - {Você viu meu irmão Andor por aqui? Parece um pouco como eu.|hadracor_andor_1|||||} - }|}; -{hadracor_andor_1|Parece com você? Não, eu teria lembrado.||{ - {Ok, adeus.|X|||||} - {Que lugar é esse?|hadracor_story_1|||||} - }|}; -{hadracor_story_1|Este é o acampamento qu nós, lenhadores montamos, enquanto trabalhamos cortando árvores aqui nesses dias.||{ - {Em que vocês trabalharam?|hadracor_story_2|||||} - {Notei um monte de tocos de árvores por aqui|hadracor_story_2|||||} - }|}; -{hadracor_story_2|Nossas ordens eram para cortar todas as árvores sul da ponte Feygard e norte da estrada daqui para Carn Tower.||{{N|hadracor_story_3|||||}}|}; -{hadracor_story_3|Eu acho que os nobres de Feygard tem alguns planos para estas terras.||{{N|hadracor_story_4|||||}}|}; -{hadracor_story_4|Nós, nós apenas cortamos aquelas árvores. Sem perguntas.||{{N|hadracor_story_5|||||}}|}; -{hadracor_story_5|No entanto, desta vez, encontramos alguns problemas.||{{N|hadracor_story_6|||||}}|}; -{hadracor_story_6|Veja você, havia essas vespas realmente desagradáveis na floresta que cortamos.||{{N|hadracor_story_7|||||}}|}; -{hadracor_story_7|Nada que já tivéssemos visto antes, e, eu vou te dizer, temos visto um monte de animais selvagens em nossos dias.||{{N|hadracor_story_8|||||}}|}; -{hadracor_story_8|Elas quase obtiveram successo conosco, e nós estávamos quase prontos para abandonar tudo. Mas trabalho é trabalho e fomos pagos por Feygard para este trabalho.||{{N|hadracor_story_9|||||}}|}; -{hadracor_story_9|Então nós fomos em frente e terminamos de cortar todas as árvores, tentando evitar as vespas, tanto quanto pudéssemos.||{{N|hadracor_story_10|||||}}|}; -{hadracor_story_10|No entanto, eu aposto que, o que quer que os nobres de Feygard pretendam nestas terras, eles certamente não incluem em seus planos que essas vespas desagradáveis ​​ainda estejam por perto.||{{N|hadracor_story_11|||||}}|}; -{hadracor_story_11|Veja este risco aqui? E este abcesso? Sim, essas vespas.||{{N|hadracor_story_11_1|||||}}|}; -{hadracor_story_11_1|||{ - {|hadracor_accept_1_1|hadracor:10||||} - {|hadracor_story_12|||||} - }|}; -{hadracor_story_12|Eu gostaria de vingança contra as vespas. Nós, infelizmente, não somos combatentes bons o suficiente para pegar essas vespas, eles são realmente muito rápidas para nós.||{ - {Dura sorte, vocês parecem mesmo um bando de covardes.|hadracor_decline_1|||||} - {Eu poderia tentar eliminar essas vespas para você, se quiser.|hadracor_accept_1|||||} - {Apenas um punhado de vespas? Isso não é problema para mim. Eu vou matá-los para você.|hadracor_accept_1|||||} - }|}; -{hadracor_decline_1|Eu vou fingir que não ouvi isso.|||}; -{hadracor_accept_1|Você o faria? Claro, você tem uma chance.||{{N|hadracor_accept_1_1|||||}}|}; -{hadracor_accept_1_1|Notei que algumas das vespas são maiores do que as outras, e as outras vespas tendem a seguir os maiores nas vizinhanças.||{{N|hadracor_accept_2|||||}}|}; -{hadracor_accept_2|Se você pudesse matar pelo menos cinco daquelas gigantes e me trazer de volta suas asas como prova, eu ficaria muito grato.||{ - {Claro, vou estar de volta com essas asas de vespas gigantes para você.|hadracor_accept_3|||||} - {Não tem problema.|hadracor_accept_3|||||} - {Pensando bem, é melhor eu ficar de fora dessa.|hadracor_decline_2|||||} - }|}; -{hadracor_decline_2|Tudo bem, eu acho que nós podemos encontrar alguém para ajudar-nos a obter vingança sobre elas.|||}; -{hadracor_accept_3|Bom, apresse-se em voltar assim que estiver terminado.|{{0|hadracor|10|}}||}; -{hadracor_wantsitems_1|Olá novamente. Você matou aquelas vespas para nós?||{ - {Você poderia contar-me sua história novamente?|hadracor_story_2|||||} - {Conte-me novamente o que devo fazer.|hadracor_story_6|||||} - {Ainda não, mas estou trabalhando nisso.|hadracor_accept_3|||||} - {Sim, eu matei seis delas.|hadracor_wantsitems_3||hadracor_waspwing|6|0|} - {Sim, eu matei cinco delas.|hadracor_wantsitems_2||hadracor_waspwing|5|0|} - }|}; -{hadracor_wantsitems_2|Uau, você realmente matou essas coisas?|{{0|hadracor|20|}}|{{N|hadracor_gaveitems_1|||||}}|}; -{hadracor_wantsitems_3|Uau, você realmente matou seis dessas coisas? Eu pensei que eram apenas cinco, então eu acho que devo ser ainda mais agradecido. Aqui, tome estas luvas como agradecimento.|{{0|hadracor|21|}{1|hadracor_reward||}}|{{N|hadracor_gaveitems_1|||||}}|}; -{hadracor_gaveitems_1|Muito bem meu amigo. Obrigado por se vingar sobre essas coisas.||{{N|hadracor_complete_2|||||}}|}; -{hadracor_complete_1|Olá novamente. Obrigado por sua ajuda com as vespas anteriores.||{{N|hadracor_complete_2|||||}}|}; -{hadracor_complete_2|Como um símbolo de nossa gratidão, estamos dispostos a negociar alguns de nossos equipamentos com você, se você quiser.|{{0|hadracor|30|}}|{{N|hadracor_complete_3|||||}}|}; -{hadracor_complete_3|Não é muito, mas temos alguns machados realmente afiados que você pode estar interessado.||{ - {Não, obrigado. Tchau.|X|||||} - {Ok, deixe-me ver o que você tem.|S|||||} - }|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{tinlyn|||{ - {|tinlyn_killedsheep_0|benbyr:21||||} - {|tinlyn_killedsheep_0|tinlyn:60||||} - {|tinlyn_complete_1|tinlyn:31||||} - {|tinlyn_complete_1|tinlyn:30||||} - {|tinlyn_look_1|tinlyn:15||||} - {|tinlyn_story_1|||||} - }|}; -{tinlyn_killedsheep_0|||{{|tinlyn_killedsheep_0_1|tinlyn:10||||}{|tinlyn_killedsheep_1|||||}}|}; -{tinlyn_killedsheep_0_1||{{0|tinlyn|60|}}|{{|tinlyn_killedsheep_1|||||}}|}; -{tinlyn_killedsheep_1|Você atacou minhas ovelhas! Fique longe de mim, assassino imundo!|||}; -{tinlyn_complete_1|Olá novamente. Obrigado por me ajudar a encontrar a minha ovelha perdida.||{ - {Eu conversei com Benbyr e ouvi a história sobre vocês dois.|tinlyn_benbyr_1|benbyr:10||||} - }|}; -{tinlyn_story_1|Olá. Você não gostaria de ajudar um velho pastor?||{{Qual é o problema?|tinlyn_story_2|||||}}|}; -{tinlyn_story_2|Veja você, eu estou com o meu rebanho de ovelhas aqui. Estes campos são excelentes pastagens para elas.||{{N|tinlyn_story_3|||||}}|}; -{tinlyn_story_3|Mas o problema é que perdi quatro delas. Agora eu não ousaria deixar as que eu ainda tenho na minha visão para ir buscar as perdidas.|{{0|tinlyn|10|}}|{{N|tinlyn_story_3_1|||||}}|}; -{tinlyn_story_3_1|||{ - {|tinlyn_story_6|tinlyn:15||||} - {|tinlyn_story_4|||||} - }|}; -{tinlyn_story_4|Você estaria disposto a me ajudar a encontrá-las?||{ - {Não parece que exista alguma luta envolvida. Eu só faço coisas onde eu possa lutar com alguém.|tinlyn_decline_1|||||} - {Certamente, seria um prazer ajudar a um senhor de idade.|tinlyn_story_5|||||} - {O que eu ganho com isso?|tinlyn_story_4_1|||||} - }|}; -{tinlyn_decline_1|Oh, bem, não custa perguntar.|||}; -{tinlyn_story_4_1|Ganho? Meu agradecimento é claro.||{ - {Não parece que exista alguma luta envolvida. Eu só faço coisas onde eu possa lutar com alguém.|tinlyn_decline_1|||||} - {Claro, vou ajudá-lo a encontrar o seu rebanho.|tinlyn_story_5|||||} - {Não, obrigado, é melhor eu não me envolver nisso.|tinlyn_decline_1|||||} - }|}; -{tinlyn_story_5|Bom, obrigado. Por favor, coloque esses sinos em torno de seus pescoços para que eu possa ouvi-las. Volte para mim depois de ter colocado os sinos ao redor do pescoço de cada uma das quatro ovelhas desaparecidas.|{{0|tinlyn|15|}{1|tinlyn_bells||}}|{{N|tinlyn_story_6|||||}}|}; -{tinlyn_story_6|Volte para mim depois de ter colocado os sinos ao redor do pescoço de cada uma das quatro ovelhas desaparecidas.|||}; -{tinlyn_look_1|Olá novamente. Você encontrou todas os quatro das minhas ovelhas faltantes?||{ - {Sim, encontrei todas eles.|tinlyn_found_1|tinlyn:25||||} - {Ainda não. Eu ainda estou procurando.|tinlyn_story_6|||||} - {O que eu devo fazer mesmo?|tinlyn_story_2|||||} - {Eu conversei com Benbyr e ouvi a história sobre vocês dois.|tinlyn_benbyr_1|benbyr:10||||} - }|}; -{tinlyn_found_1|Sim, eu posso ouvir sons distantes dos sinos dos campos ao sul. Tenho certeza de que elas irão retornar aqui, agora que elas trazem os sinos.||{ - {Fico feliz em ajudar.|tinlyn_found_3|||||} - {Esse foi um trabalho duro. Que tal uma recompensa?|tinlyn_found_2|||||} - }|}; -{tinlyn_found_2|Sinto muito, mas eu sou um simples pastor. Eu não tenho nenhuma riqueza ou bugigangas mágicas para lhe dar.|{{0|tinlyn|31|}}||}; -{tinlyn_found_3|Obrigado por me ajudar|{{0|tinlyn|30|}}||}; -{tinlyn_benbyr_1|Ele ainda está aí? Eu pensei que os guardas haviam pego esse arruaceiro.||{{N|tinlyn_benbyr_2|||||}}|}; -{tinlyn_benbyr_2|Enfim, eu não quero falar sobre isso. Eu deixei esse tipo de vida atrás de mim. Pastorear ovelhas é o que eu faço agora.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{tinlyn_lostsheep1|||{{|tinlyn_lostsheep_y|tinlyn:20||||}{|tinlyn_lostsheep1_n|||||}}|}; -{tinlyn_lostsheep2|||{{|tinlyn_lostsheep_y|tinlyn:21||||}{|tinlyn_lostsheep2_n|||||}}|}; -{tinlyn_lostsheep3|||{{|tinlyn_lostsheep_y|tinlyn:22||||}{|tinlyn_lostsheep3_n|||||}}|}; -{tinlyn_lostsheep4|||{{|tinlyn_lostsheep_y|tinlyn:23||||}{|tinlyn_lostsheep4_n|||||}}|}; -{tinlyn_lostsheep1_n|Behehe!||{ - {Colocar os sinos de Tinlyn ao redor do pescoço das ovelhas|tinlyn_lostsheep1_place||tinlyn_bells|1|0|} - {Atacar!|tinlyn_lostsheep_atk|benbyr:20||||} - }|}; -{tinlyn_lostsheep2_n|Behehe!||{ - {Colocar os sinos de Tinlyn ao redor do pescoço das ovelhas|tinlyn_lostsheep2_place||tinlyn_bells|1|0|} - {Atacar!|tinlyn_lostsheep_atk|benbyr:20||||} - }|}; -{tinlyn_lostsheep3_n|Behehe!||{ - {Colocar os sinos de Tinlyn ao redor do pescoço das ovelhas|tinlyn_lostsheep3_place||tinlyn_bells|1|0|} - {Atacar!|tinlyn_lostsheep_atk|benbyr:20||||} - }|}; -{tinlyn_lostsheep4_n|Behehe!||{ - {Colocar os sinos de Tinlyn ao redor do pescoço das ovelhas|tinlyn_lostsheep4_place||tinlyn_bells|1|0|} - {Atacar!|tinlyn_lostsheep_atk|benbyr:20||||} - }|}; -{tinlyn_lostsheep_y|Behehe!||{{Atacar!|tinlyn_lostsheep_atk|benbyr:20||||}}|}; -{tinlyn_lostsheep1_place||{{0|tinlyn|20|}}|{{|tinlyn_lostsheep_check_1|||||}}|}; -{tinlyn_lostsheep2_place||{{0|tinlyn|21|}}|{{|tinlyn_lostsheep_check_1|||||}}|}; -{tinlyn_lostsheep3_place||{{0|tinlyn|22|}}|{{|tinlyn_lostsheep_check_1|||||}}|}; -{tinlyn_lostsheep4_place||{{0|tinlyn|23|}}|{{|tinlyn_lostsheep_check_1|||||}}|}; -{tinlyn_lostsheep_check_1|||{{|tinlyn_lostsheep_check_2|tinlyn:20||||}{|tinlyn_lostsheep_placed_2|||||}}|}; -{tinlyn_lostsheep_check_2|||{{|tinlyn_lostsheep_check_3|tinlyn:21||||}{|tinlyn_lostsheep_placed_2|||||}}|}; -{tinlyn_lostsheep_check_3|||{{|tinlyn_lostsheep_check_4|tinlyn:22||||}{|tinlyn_lostsheep_placed_2|||||}}|}; -{tinlyn_lostsheep_check_4|||{{|tinlyn_lostsheep_placed_1|tinlyn:23||||}{|tinlyn_lostsheep_placed_2|||||}}|}; -{tinlyn_lostsheep_placed_1||{{0|tinlyn|25|}}|{{|tinlyn_lostsheep_placed_2|||||}}|}; -{tinlyn_lostsheep_placed_2|(Você coloca os sinos ao redor do pescoço das ovelhas.)|||}; -{tinlyn_lostsheep_atk|||{{|tinlyn_lostsheep_atk1|tinlyn:10||||}{|tinlyn_sheep_atk|||||}}|}; -{tinlyn_lostsheep_atk1||{{0|tinlyn|60|}}|{{|tinlyn_sheep_atk|||||}}|}; -{tinlyn_sheep|Behehe!||{{Atacar|tinlyn_lostsheep_atk|benbyr:20||||}}|}; -{tinlyn_sheep_atk||{{0|benbyr|21|}}|{{|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{benbyr|||{ - {|benbyr_declined|benbyr:60||||} - {|benbyr_complete_1|benbyr:30||||} - {|benbyr_mission_1|benbyr:20||||} - {|benbyr_story_1|||||} - }|}; -{benbyr_complete_1|Olá novamente. Tenho certeza que você mostrou ao bastardo do Tinlyn a não mexer comigo de novo.|||}; -{benbyr_declined|Não tenho mais nada para lhe dizer. Deixe-me.|||}; -{benbyr_story_1|Psst, hey. Aqui.||{{N|benbyr_story_2|||||}}|}; -{benbyr_story_2|Você parece um aspirante a aventureiro. Você está disposto a fazer alguma .. (Benbyr pausa) .. aventura? He He.||{ - {Do que se trata?|benbyr_story_3_1|||||} - {Depende do que eu recebo em troca.|benbyr_story_3_2|||||} - {Eu tento ajudar as pessoas, onde quer que eles podem precisar de ajuda.|benbyr_story_3_3|||||} - }|}; -{benbyr_story_3_1|Direto ao ponto hein? Eu gosto disso.||{{N|benbyr_story_4|||||}}|}; -{benbyr_story_3_2|Ah, o aventureiro em busca de compensação. Diga-me, é a emoção de uma aventura não recompensa suficiente?||{ - {Sim, você está certo.|benbyr_story_4|||||} - {Não.|benbyr_story_3_4|||||} - }|}; -{benbyr_story_3_4|Então eu certamente o irei desapontá-lo. Volte para mim uma vez que você esteja pronto para a minha tarefa.|||}; -{benbyr_story_3_3|O nobre aventureiro. He he, eu gosto disso. Sim, você vai fazer bem.||{{N|benbyr_story_4|||||}}|}; -{benbyr_story_4|Tempos atrás, eu fiz alguns negócios com um homem chamado Tinlyn, aqui nesta guarita de Crossroads.||{{N|benbyr_story_5|||||}}|}; -{benbyr_story_5|Quanto à natureza do nosso negócio, eu realmente não posso te dizer. Vamos apenas dizer que o nosso negócio era do tipo que foi benéfico para nós dois e que os guardas não podiam tomar conhecimento.||{{N|benbyr_story_6|||||}}|}; -{benbyr_story_6|Estávamos prontos para concluir um negócio grande, eu e Tinlyn. Foi quando ele decidiu se voltar contra mim.||{{N|benbyr_story_7|||||}}|}; -{benbyr_story_7|Ele delatou-me para os guardas, e me fez assumir a culpa toda por esse negócio.||{{N|benbyr_story_8|||||}}|}; -{benbyr_story_8|Fui enviado para a prisão de Feygard, enquanto ele estava livre por delatar-me.||{{N|benbyr_story_8_1|||||}}|}; -{benbyr_story_8_1|||{ - {|benbyr_story_10|benbyr:20||||} - {|benbyr_story_9|||||} - }|}; -{benbyr_story_9|Argh, que Tinlyn tolo. Espero que a Sombra nunca lhe mostre nenhuma misericórdia.||{ - {Vá direto ao ponto.|benbyr_story_10|||||} - {O que você quer que eu faça?|benbyr_story_10|||||} - }|}; -{benbyr_story_10|Eu quero vingar-me do tolo do Tinlyn, é claro. Agora, o meu plano é o seguinte:||{{N|benbyr_story_11|||||}}|}; -{benbyr_story_11|Ouvi dizer que ele está pastoreando as ovelhas, esses dias. Esta é uma excelente oportunidade para ..digamos ..um acidente acontecer com suas ovelhas. Ele ele.||{{N|benbyr_story_12|||||}}|}; -{benbyr_story_12|Você, meu amigo, seria o o perfeito acidente móvel. Eu quero que você encontre todas as ovelhas Tinlyn e verifique para que elas se unam para sempre junto a Sombra.||{{N|benbyr_story_12_1|||||}}|}; -{benbyr_story_12_1|||{ - {|benbyr_accept_2|benbyr:20||||} - {|benbyr_story_13|||||} - }|}; -{benbyr_story_13|Faça isso, e eu vou ter me vingado do tolo Tinlyn.|{{0|benbyr|10|}}|{ - {Parece o tipo de coisa que gosto de fazer. Eu irei fazer isso!|benbyr_accept_1|||||} - {Isto soa um pouco sombrio, mas eu vou fazer isso de qualquer maneira.|benbyr_accept_1|||||} - {De jeito nenhum, matar ovelhas inocentes é muito sujo para mim. Eu nunca irei fazer sua tarefa.|benbyr_decline_1|||||} - }|}; -{benbyr_decline_1|Muito bem, mas lembre-se que eu tenho meus olhos em você .. aventureiro.|{{0|benbyr|60|}}|{{N|benbyr_declined|||||}}|}; -{benbyr_accept_1|Explêndido!|{{0|benbyr|20|}}|{{N|benbyr_accept_2|||||}}|}; -{benbyr_accept_2|Acontece que eu sei que existem oito de suas ovelhas no total, e todas elas devem estar a noroeste daqui.||{{N|benbyr_accept_3|||||}}|}; -{benbyr_accept_3|Volte para mim a prova de que você matou todas as oito.|||}; -{benbyr_mission_1|Ah, meu acidente móvel está retornando. He He.||{ - {Pode contar a sua história de novo?|benbyr_story_4|||||} - {Eu ainda estou procurando as ovelhas.|benbyr_accept_3|||||} - {Eu matei todas as oito ovelhas de Tinlyn para você.|benbyr_mission_2||tinlyn_sheep_meat|8|0|} - }|}; -{benbyr_mission_2|Ha ha! o tolo do Tinlyn deve estar em lágrimas. A Sombra certamente caminha com você meu amigo.|{{0|benbyr|30|}}|{{N|benbyr_complete_2|||||}}|}; -{benbyr_complete_2|Este é um dia glorioso, de fato! Tinlyn deveria saber não se deve meter comigo!||{{N|benbyr_complete_3|||||}}|}; -{benbyr_complete_3|Quanto a você meu amigo, procure meus amigos em Brightport. Tenho certeza de que irão lhe estender sua hospitalidade.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fanamor|Caramba! Você me assustou.||{{N|fanamor_1|||||}}|}; -{fanamor_1|Eu estava apenas passeando nessa floresta ... eh ... matando Anklebiters.||{{N|fanamor_2|||||}}|}; -{fanamor_2|Sim. Eu estava matando eles. Não fugindo. Matando-os.||{{N|fanamor_3|||||}}|}; -{fanamor_3|... suspiro ...||{{N|fanamor_4|||||}}|}; -{fanamor_4|Ah, quem sou eu enganando. Ok, eu estava tentando atravessar a floresta por aqui e fui emboscado por estes Anklebiters.||{{N|fanamor_5|||||}}|}; -{fanamor_5|Eu não vou sair até o anoitecer, quando não pudem mais me ver e eu poderei ser capaz de esgueirar-se de volta.||{{N|fanamor_6|||||}}|}; -{fanamor_6|Este é o meu esconderijo! Agora me deixe.|||}; - -{crossroads_guard|||{ - {|crossroads_guard_r_1|farrik:90||||} - {|crossroads_guard_1|||||} - }|}; -{crossroads_guard_r_1|Você soube? Alguns ladrões em Fallhaven estavam planejando uma fuga para um dos ladrões presos na prisão de lá.||{{N|crossroads_guard_r_2|||||}}|}; -{crossroads_guard_r_2|Felizmente, alguém ficou sabendo disso e disse ao capitão de guarda.||{{N|crossroads_guard_r_3|||||}}|}; -{crossroads_guard_r_3|É bom saber que há pelo menos algumas pessoas decentes ainda ao redor.|||}; -{crossroads_guard_1|Você não é um pouco jovem para viajar por aqui sozinho?||{{N|crossroads_guard_2|||||}}|}; -{crossroads_guard_2|Eu espero que você não seja mais um daqueles tipos que tentam vender-me o seu lixo barato.||{{N|crossroads_guard_3|||||}}|}; -{crossroads_guard_3|Vá embora, garoto.|||}; - -{cr_loneford_st_1|Você não ouviu? Todos eles têm ficado doente.||{{N|cr_loneford_st_2|||||}}|}; -{cr_loneford_st_2|Tudo começou há alguns dias. Com o desenrolar da história, alguém encontrou um dos agricultores desmaiado em um dos campos, completamente branco e tremendo.||{{N|cr_loneford_st_3|||||}}|}; -{cr_loneford_st_3|Poucos dias depois, os mesmos sintomas começaram a aparecer em muitas mais pessoas.||{{N|cr_loneford_st_4|||||}}|}; -{cr_loneford_st_4|Em seguida, todas as pessoas apresentaram os sintomas de uma forma ou de outra.||{{N|cr_loneford_st_5|||||}}|}; -{cr_loneford_st_5|Algumas pessoas idosas até morreram.||{{N|cr_loneford_st_6|||||}}|}; -{cr_loneford_st_6|Foi iniciada uma investigação para descobrir a causa. Mas até hoje, a causa ainda não foi descoberta.|{{0|loneford|10|}}|{{N|cr_loneford_st_7|||||}}|}; -{cr_loneford_st_7|Felizmente, Feygard está enviando patrulhas até lá para ajudar a proteger a vila, pelo menos. No entanto, as pessoas ainda estão sofrendo.|{{0|loneford|11|}}|{{N|cr_loneford_st_8|||||}}|}; -{cr_loneford_st_8|Estou certo de que este é trabalho daqueles selvagens de Nor City, de alguma forma. Eles provavelmente sabotaram algo por lá.||{{N|cr_loneford_st_9|||||}}|}; -{cr_loneford_st_9|O que eles chamam, a "Sombra"? Eles estão dispostos a fazer quase tudo para perturbar a lei e a ordem por aqui.||{{N|cr_loneford_st_10|||||}}|}; -{cr_loneford_st_10|Eu lhe digo. Savagens - que é o que eles são. Não respeitam as leis ou a autoridade.|{{0|loneford|21|}}||}; - - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{minarra|||{ - {|minarra_completed_1|rogorn:60||||} - {|minarra_completing_1|rogorn:55||||} - {|minarra_completing_1|rogorn:50||||} - {|minarra_look_1|rogorn:20||||} - {|minarra_return_1|rogorn:10||||} - {|minarra_first_1|||||} - }|}; -{minarra_first_1|Olá. Posso ajudá-lo?||{ - {Você parece ter um equipamentos por aqui. Você tem alguma coisa para o vender?|minarra_trade_rej|||||} - {O que você faz aqui?|minarra_first_5|||||} - {Você deve ter uma boa visão dos arredores até aqui. Você já viu alguma coisa interessante ultimamente?|minarra_first_2|||||} - }|}; -{minarra_trade_rej|Talvez. Mas você teria que verificar lá em baixo com Gandoren. Não negociamos com qualquer um.|||}; -{minarra_return_1|Você voltou. Você quer algo mais?||{ - {Você pode me dizer de novo sobre aqueles homens que você viu?|minarra_story_1|||||} - {Você tem alguma coisa para vender?|minarra_trade_rej|||||} - {O que você faz aqui?|minarra_first_5|||||} - }|}; -{minarra_first_2|Principalmente, eu vejo os viajantes na estrada Duleian de e para Feygard daqui.||{{N|minarra_first_3|||||}}|}; -{minarra_first_3|Recentemente, no entanto, tem havido uma série de movimentos de e para Loneford. Eu acho que é por causa dos problemas que têm havido por lá.||{{N|minarra_first_4_s|||||}}|}; -{minarra_first_4_s|||{ - {|minarra_first_4_1|rogorn:60||||} - {|minarra_first_4|||||} - }|}; -{minarra_first_4|Entretanto, eu vi algo muito interessante ontem.||{ - {O que foi?|minarra_story_1|||||} - {Você mencionou a estrada Duleian, o que é isso?|minarra_first_6|||||} - {Você mencionou alguns problemas em Loneford, quais os problemas a quais você está se referindo?|cr_loneford_st_1|||||} - {Não importa, eu queria perguntar-lhe quais são as suas tarefas aqui.|minarra_first_5|||||} - }|}; -{minarra_first_4_1|Alguns animais de fazenda hoje também.||{ - {Você mencionou a estrada Duleian, o que é isso?|minarra_first_6_1|||||} - {Você mencionou alguns problemas em Loneford, quais os problemas a quais você está se referindo?|cr_loneford_st_1|||||} - }|}; -{minarra_first_5|Eu lido com o armazenamento de nossos equipamentos aqui na guarda da guarita Crossroads, e eu mantenho a vigilância dos arredores.||{ - {Você tem alguma coisa para vender?|minarra_trade_rej|||||} - {Você viu alguma coisa interessante, ultimamente?|minarra_first_2|||||} - }|}; -{minarra_first_6|Vê esta larga estrada que vai para fora esta guarita? Essa é a estrada Duleian. Vai direto da gloriosa cidade de Feygard, a noroeste, até Nor City, ao sudeste.||{ - {Você mencionou alguns problemas em Loneford, que problemas são esses?|cr_loneford_st_1|||||} - {Eu queria perguntar-lhe quais são as suas tarefas aqui?|minarra_first_5|||||} - }|}; -{minarra_first_6_1|Veja este larga estrada que vai para fora esta guarita? Essa é a estrada Duleian. Vai direto da gloriosa cidade de Feygard, a noroeste, até Nor City, ao sudeste.||{ - {Você mencionou alguns problemas em Loneford, que problemas são esses?|cr_loneford_st_1|||||} - }|}; -{minarra_story_1|Eu vi um bando de homens mal trajados vindo da estrada Duleian. Normalmente, um grupo de homens mal trajados não é algo que valha a pena reparar.||{{N|minarra_story_2|||||}}|}; -{minarra_story_2|Mas esses homens combinam com a descrição de algumas pessoas que são procuradas pela patrulha de Feygard.||{{N|minarra_story_3|||||}}|}; -{minarra_story_3|Se eu os observei corretamente, estes homens são um bando de trapaceiros liderados por um homem chamado Rogorn, que estamos procurando prender por conta de vários casos cruéis de homicídio e roubo.||{{N|minarra_story_4|||||}}|}; -{minarra_story_4|Seu líder, Rogorn, é um homem particularmente selvagem, de acordo com os relatórios de Feygard que eu li.||{{N|minarra_story_5|||||}}|}; -{minarra_story_5|Agora, usualmente, sairíamos à procura deles, a fim de verificar que os homens que eu vi eram de fato estes homens. Mas agora, com o problema em Loneford, não podemos dar ao luxo de enviar nenhum guarda, a não ser os que estão guardando Loneford.||{{N|minarra_story_6|||||}}|}; -{minarra_story_6|Mas tenho certeza de que são esses os homens. Se pudéssemos pegá-los e matá-los, o povo de Feygard estaria muito mais seguro.|{{0|rogorn|10|}}|{ - {Eu poderia ir procurá-los, se quiser.|minarra_story_8|||||} - {Bem, boa sorte com isso.|minarra_story_7|||||} - }|}; -{minarra_story_7|Obrigado. Boa sorte mesmo. Agora, se me dá licença, eu preciso manter os olhos atentos na estrada.|||}; -{minarra_story_8|Ei, isso é uma ótima ideia. Tem certeza de que você está preparado para isso? O povo de Feygard realmente seria muito grato se você fosse procurá-los.||{{N|minarra_story_9|||||}}|}; -{minarra_story_9|De qualquer forma, eu vi eles viajando na estrada a oeste daqui. Você sabe aquela estrada que leva à Carn Tower? Essa é a última vez que eu os vi. Você pode querer seguir esse caminho e ver se é possível identificá-los.||{{N|minarra_story_10|||||}}|}; -{minarra_story_10|Eles roubaram três pedaços de uma pintura muito valiosa de Feygard, conforme o relatório que eu li. Por seus crimes e da selvageria de seus atos, eles são procurados vivos ou mortos pela patrulha Feygard.|{{0|rogorn|20|}}|{{Eu estarei de volta, uma vez que eles estejão mortos. Mais alguma coisa?|minarra_story_11|||||}}|}; -{minarra_story_11|Sim, eu deveria também dizer que eles provavelmente vão tentar convencê-lo a acreditar em sua história.||{{N|minarra_story_12|||||}}|}; -{minarra_story_12|Em particular, o seu líder, Rogorn, é um vilão bem conhecido por Feygard. Nada do que ele diz é confiável.||{{N|minarra_story_13|||||}}|}; -{minarra_story_13|Exorto-o a não ouvir suas mentiras. Seus crimes devem ser punidos, a fim de cumprir a lei.|{{0|rogorn|21|}}|{{Vou voltar uma vez que cumprir minha tarefa.|X|||||}}|}; -{minarra_look_1|Você voltou. Você encontrou os homens aos quais falamos?||{ - {Eu ainda estou procurando por eles.|minarra_look_2|||||} - {Sim, eu os matei e recuperei as três partes da pintura.|minarra_look_3|rogorn:40|rogorn_qitem|3|0|} - {Eu viajei para o oeste e encontrei um grupo de homens em viagem, mas, entre eles, não foram encontrados os homens aos quais você descreveu.|minarra_look_5|rogorn:45||||} - }|}; -{minarra_look_2|Bom. Volte para mim, assim que você tem algo a relatar. Nós realmente gostariamos de recuperar esses três pedaços da pintura que eles roubaram.|||}; -{minarra_look_3|Isso é uma excelente notícia, de fato! Eu sabia que podia confiar em você.|{{0|rogorn|50|}}|{{N|minarra_look_4|||||}}|}; -{minarra_look_4|Seus serviços para Feygard serão muito apreciados.||{{N|minarra_completing_1|||||}}|}; -{minarra_look_5|Você tem certeza de que não eram eles? Eu tenho uma visão aguçada, é por isso que estou aqui. Eu tinha certeza que eles combinavam com a descrição dos procurados.||{{N|minarra_look_6|||||}}|}; -{minarra_look_6|Eu acho que vou ter que acreditar em sua palavra.|{{0|rogorn|55|}}|{{N|minarra_completing_1|||||}}|}; -{minarra_completing_1|Obrigado por me ajudar a investigar o assunto.|{{0|rogorn|60|}}|{ - {Você tem alguma coisa para vender?|minarra_trade_1|||||} - {Você deve ter uma boa visão dos arredores até aqui. Você já viu alguma coisa interessante ultimamente?|minarra_first_2|||||} - }|}; -{minarra_completed_1|Obrigado por me ajudar a investigar os homens, anteriormente.||{ - {Você tem alguma coisa para vender?|minarra_trade_1|||||} - {Você deve ter uma boa visão dos arredores até aqui. Você já viu alguma coisa interessante ultimamente?|minarra_first_2|||||} - }|}; -{minarra_trade_1|||{ - {|minarra_trade_2|nondisplay:18||||} - {|minarra_trade_rej|||||} - }|}; -{minarra_trade_2|Claro, dê uma olhada.||{{N|S|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{rogorn_henchman|||{ - {|rogorn_henchman_atk|rogorn:40||||} - {|rogorn_henchman_noatk|rogorn:45||||} - {|rogorn_henchman_1|||||} - }|}; -{rogorn_henchman_atk|Pela sombra!||{{Lute!|F|||||}}|}; -{rogorn_henchman_noatk|É bom ouvir que existem pelo menos algumas pessoas por aí, dispostos a tomar uma posição contraria a Feygard.|||}; -{rogorn_henchman_1|Se você realmente esta aqui sozinho?|||}; - -{rogorn|||{ - {|rogorn_completed_1|rogorn:60||||} - {|rogorn_attack_1|rogorn:40||||} - {|rogorn_story_r_9|rogorn:45||||} - {|rogorn_toldstory_1|rogorn:35||||} - {|rogorn_first_1|||||} - }|}; -{rogorn_first_1|rapazes: olhem, um garotinho! Passeando aqui no deserto!||{{N|rogorn_first_2|||||}}|}; -{rogorn_first_2|Você realmente está aqui garoto? Estas áreas são perigosas.||{ - {Sei me cuidar.|rogorn_first_3|||||} - {Por que? O que tem por aqui?|rogorn_first_4|||||} - {Você está certo, é melhor eu ir embora.|X|||||} - }|}; -{rogorn_first_3|Eu aposto que você pode.||{{N|rogorn_first_6|||||}}|}; -{rogorn_first_4|Bem, a oeste daqui não tem muito. Nenhuma cidade por perto, apenas o deserto duro e perigoso.||{{N|rogorn_first_5|||||}}|}; -{rogorn_first_5|É claro, há torre de Carn se você viajar muito longe para oeste, mas você realmente não quer ir até lá.||{{N|rogorn_first_6|||||}}|}; -{rogorn_first_6|Então, o que o traz a estas partes da terra?||{ - {Eu estou procurando um grupo de homens liderado por alguém com o nome de Rogorn. Você é ele?|rogorn_story_1|rogorn:20||||} - {Basta procurar qualquer tesouro que pode revelar-se aqui.|rogorn_first_7|||||} - {Estou apenas explorando.|rogorn_first_7|||||} - }|}; -{rogorn_first_7|Bem, continue procurando então.|||}; - -{rogorn_story_1|Isso depende, por que você quer saber?|{{0|rogorn|30|}}|{ - {Você está sendo procurado pela patrulha Feygard pelos crimes que cometeu.|rogorn_story_2|||||} - {Eu estou procurando para trazer justiça sempre que posso, e ouvi dizer que você precisando saldar suas dívidas com a justiça.|rogorn_story_3|||||} - {Fuiu enviado por alguns guardas em cima da guarita de Crossroads para procurar você.|rogorn_story_6|||||} - {Os guardas de Feygard estão procurando por você, e eu vim para te avisar.|rogorn_story_12|||||} - }|}; -{rogorn_story_2|Hah! Nós? Crimes?||{{N|rogorn_story_4|||||}}|}; -{rogorn_story_3|Justiça? O que você sabe da justiça, garoto?||{{N|rogorn_story_4|||||}}|}; -{rogorn_story_4|Se há alguém que merece punição, certamente não somos nós. Pela Sombra, é aqueles esnobes de Feygard que precisam que alguém lhes ensine uma lição.||{ - {Não vou ouvir suas mentiras! Por Feygard!|rogorn_attack_1|||||} - {Fale tudo o que você quiser, eu descobri que você roubou Feygard, o que não é aceitável.|rogorn_story_5|||||} - {Qual é o seu lado da história, então?|rogorn_story_r_1|||||} - }|}; -{rogorn_story_5|Eu te digo, não roubei nada daqueles esnobes.||{ - {Você está sendo procurado vivo ou morto pela patrulha Feygard. Por Feygard!|rogorn_attack_1|||||} - {Por que eles estão procurando você, então?|rogorn_story_r_1|||||} - }|}; -{rogorn_attack_1|Eu esperava que não chegasse a isso. Pela sombra!|{{0|rogorn|40|}}|{{Vamos lutar!|F|||||}}|}; -{rogorn_story_6|Falou com os guardas de Feygard hein? Diga-me, qual é a sua opinião de Feygard?||{ - {Eles parecem ter ideais honrosos da lei e da ordem, e eu respeito isso.|rogorn_story_10|||||} - {Seus ideais parecem ser um pouco opressivo das pessoas, o que eu não gosto.|rogorn_story_9|||||} - {Não tenho opinião, eu tento não me envolver em seus negócios.|rogorn_story_7|||||} - {Eu não tenho ideia.|rogorn_story_8|||||} - }|}; -{rogorn_story_7|Interessante. Mas agora que você é parte disso, ao vir aqui para me procurar no nome deles, como é que isso se encaixa em sua falta de vontade de tomar algum partido?||{ - {Não vou ouvir suas mentiras! Por Feygard!|rogorn_attack_1|||||} - {Foi-me dito que você roubou de Feygard, o que não é aceitável.|rogorn_story_5|||||} - {Eu quero ouvir o seu lado da história.|rogorn_story_r_1|||||} - {Eu estou apenas procurando para ver se posso obter algum lucro com isso.|rogorn_story_8|||||} - {Eu não tenho ideia.|rogorn_story_8|||||} - }|}; -{rogorn_story_8|Você deve perguntar em sua mente sobre quais são as suas prioridades. Diga a seus amigos Feygard que não seremos oprimidos por eles. A Sombra esteja com você, criança.|||}; -{rogorn_story_9|Você tem esse direito. Eles estão sempre tentando tornar a vida difícil para nós pessoas comuns. Deixe-me dizer-lhe o meu lado da história.||{{N|rogorn_story_r_1|||||}}|}; -{rogorn_story_10|A lei e a ordem? O que notamos é que somos sempre perseguidos por eles e nem sequer temos liberdade para viver a nossa vida da maneira que queremos.||{{N|rogorn_story_11|||||}}|}; -{rogorn_story_11|Eles estão sempre nos procurando e tentando oprimir-nos de alguma forma. Sempre tentando fazer da nossa vida um pouco mais difícil.||{{N|rogorn_story_4|||||}}|}; -{rogorn_story_12|É bom ouvir que ainda existem algumas pessoas que queiram fazer oposição contra Feygard. Deixe-me dizer-lhe o meu lado da história.||{{N|rogorn_story_r_1|||||}}|}; -{rogorn_story_r_1|Eu e meus meninos aqui viajamos de nossa casa de Nor City para essas terras do norte, faz poucos dias.||{{N|rogorn_story_r_2|||||}}|}; -{rogorn_story_r_2|Nós nunca tinha sido aqui antes. Nós apenas haviamos ouvido histórias sobre o quão duro os guardas de Feygard foram, e como eles colocaram sua preciosa lei acima de tudo.||{{N|rogorn_story_r_3|||||}}|}; -{rogorn_story_r_3|De qualquer forma, farejamos uma ótima oportunidade de negócio aqui no norte. Uma onde teríamos ao final um negócio muito rentável.||{{N|rogorn_story_r_4|||||}}|}; -{rogorn_story_r_4|Então nós viemos até aqui para conduzir nossos negócios. Mas eu acho que os guardas de Feygard devem ter sido avisado sobre nossa vinda, uma vez que percebemos que estávamos sendo seguidos pelos guardas depois de um tempo.||{{N|rogorn_story_r_5|||||}}|}; -{rogorn_story_r_5|Não estando dispostos a arriscar-se desnecessariamente, e considerando os rumores que tinham sido nos dito sobre os guardas de lá, fizemos a única coisa razoável que poderíamos fazer - nós abandonamos o plano imediatamente e saimos, antes que pudéssemos realizar o negócio que tínhamos planejado .||{{N|rogorn_story_r_6|||||}}|}; -{rogorn_story_r_6|Mas algo deve ter perturbado os guardas por lá, de qualquer maneira. Agora ouvimos que somos acusados ​​de homicídio e roubo em Feygard, mesmo sem ter estado por lá.|{{0|rogorn|35|}}|{ - {Qual foi o seu negócio lá?|rogorn_story_r_7|||||} - {Não vou ouvir suas mentiras! Para Feygard!|rogorn_attack_1|||||} - {Sua história não faz sentido.|rogorn_story_r_8|||||} - {Eu acredito que sua história. Como posso ajudá-lo?|rogorn_story_r_9|||||} - }|}; -{rogorn_story_r_7|Eu realmente não posso dizer. Nós fazemos o nosso negócio em nome da Nor City, e nosso negócio é nosso.||{ - {Não vou ouvir suas mentiras! Para Feygard!|rogorn_attack_1|||||} - {Sua história não faz sentido.|rogorn_story_r_8|||||} - {Eu acredito que sua história. Como posso ajudá-lo?|rogorn_story_r_9|||||} - }|}; -{rogorn_story_r_8|O que você é, um espião para Feygard? Eu lhe disse, as acusações contra nós são falsas.||{{N|rogorn_attack_1|||||}}|}; -{rogorn_story_r_9|Obrigado por ouvir a nossa versão da história.||{{E agora? Eu fui enviado aqui para encontrá-lo por alguns guardas na guarita Crossroads.|rogorn_story_r_10|||||}}|}; -{rogorn_story_r_10|Você dizer aos guardas que você procurou por nós, mas não encontrou ninguém.|{{0|rogorn|45|}}|{{Vou fazer. Tchau.|X|||||}}|}; - -{rogorn_toldstory_1|Você está de volta.||{ - {Você pode me dizer o seu lado da história de novo?|rogorn_story_r_1|||||} - {Não vou ouvir suas mentiras! Você deve ser responsabilizado por seus crimes contra a Feygard!|rogorn_story_r_8|||||} - {Eu acredito que sua história. Como posso ajudá-lo?|rogorn_story_r_9|||||} - }|}; -{rogorn_completed_1|Obrigado por ouvir a nossa versão da história.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{gandoren|||{ - {|gandoren_completed_1|feygard_shipment:81||||} - {|gandoren_completed_1|feygard_shipment:80||||} - {|gandoren_deliver_1|feygard_shipment:25||||} - {|gandoren_20|feygard_shipment:22||||} - {|gandoren_20|feygard_shipment:21||||} - {|gandoren_wantshelp_1|feygard_shipment:20||||} - {|gandoren_noguards_1|feygard_shipment:10||||} - {|gandoren_1|||||} - }|}; -{gandoren_1|Olá. Bem-vindo à guarita de Crossroads. Como posso ajudá-lo?||{ - {Você guardas parecem ter um monte de equipamento aqui, qualquer coisa para trocar?|gandoren_tr_1|||||} - {O que você faz aqui?|gandoren_2|||||} - }|}; -{gandoren_tr_1|Sinto muito, só negociamos com aliados de Feygard.|||}; -{gandoren_2|Esta guarita é um porto seguro para os comerciantes que viajam na estrada Duleian. Nós mantemos a lei e a ordem por aqui, por Feygard.||{ - {Qualquer acontecimento recente acontecendo?|gandoren_3|||||} - {A estrada Duleian?|gandoren_dr_1|||||} - }|}; -{gandoren_dr_1|Notou essa estrada larga do lado de fora? Essa é a estrada Duleian. Vai direto da gloriosa cidade de Feygard, a noroeste, até Nor City, ao sudeste.||{{Qualquer acontecimento recente acontecendo?|gandoren_3|||||}}|}; -{gandoren_3|Ah, claro. Recentemente, tivemos de concentrar a nossa atenção para os problemas de Loneford.||{{N|gandoren_4|||||}}|}; -{gandoren_4|Essa situação obrigou-nos a estar mais alerta do que o habitual, e nós tivemos que enviar alguns guardas até lá para ajudá-los.||{{N|gandoren_5|||||}}|}; -{gandoren_5|Isto também significa que não podemos concentrar tanto em nossas tarefas habituais como normalmente fazemos, mas precisamos de ajuda com a realização de tarefas básicas.|{{0|feygard_shipment|10|}}|{ - {A quais problemas de Loneford você está se referindo?|cr_loneford_st_1|||||} - {Há algo que eu possa fazer para ajudar?|gandoren_6|||||} - }|}; -{gandoren_noguards_1|Olá novamente. Bem-vindo à guarita Crossroads. Como posso ajudá-lo?||{{Você pode me dizer novamente o que você me disse antes sobre os acontecimentos recentes?|gandoren_3|||||}}|}; -{gandoren_6|Bem, nós geralmente não empregamos qualquer civil. Nossas tarefas são importantes para Feygard - e, por extensão, importante para as pessoas. Nossas tarefas geralmente não são adequados para pessoas comuns como você.||{{N|gandoren_7|||||}}|}; -{gandoren_7|Mas eu acho que a recente situação realmente não nos deixa escolha. Precisamos manter os guardas em Loneford, e também precisamos de entregar esta remessa. No momento, não podemos fazer as duas coisas.||{{N|gandoren_8|||||}}|}; -{gandoren_8|Sabe de uma coisa, você pode ser capaz de ajudar-nos, afinal, se você estiver disposto a trabalhar.||{ - {Qual é a tarefa?|gandoren_11|||||} - {Qualquer coisa para a glória de Feygard.|gandoren_9|||||} - {Se o salário é suficiente, eu acho que posso ajudar.|gandoren_10|||||} - {melhor eu não me envolver em nos negócios de Feygard.|gandoren_rej_1|||||} - }|}; -{gandoren_9|Fico feliz em ouvir isso.||{{N|gandoren_11|||||}}|}; -{gandoren_10|Pagar? Ah, eu acho que nós poderíamos pagar.||{{N|gandoren_11|||||}}|}; -{gandoren_11|Eu preciso de você para transportar algum equipamento para outro de nossos postos avançados mais ao sul na estrada Duleian.||{{N|gandoren_12|||||}}|}; -{gandoren_12|Esses postos avançados mais para o sul estão em maior necessidade de equipamentos do que nós, eles estão mais perto da miserável Nor City e suas cercanias.||{{N|gandoren_13|||||}}|}; -{gandoren_13|Entregue essa remessa de 10 espadas de ferro para o capitão da guarda hospedado em uma taverna chamada \'Foaming Flask\', perto de uma aldeia chamada Vilegard.|{{0|feygard_shipment|20|}}|{ - {Não tem problema. Qualquer coisa para a glória de Feygard.|gandoren_17|||||} - {Você não mencionou quanto receberei por essa tarefa.|gandoren_18|||||} - {Por que eu deveria ajudar vocês? Eu só ouvi coisas ruins sobre Feygard.|gandoren_14|||||} - {Melhor eu não me envolver nos negócios de Feygard.|gandoren_rej_1|||||} - }|}; -{gandoren_wantshelp_1|Olá novamente. Bem-vindo à guarita Crossroads. Como posso ajudá-lo?||{{O que foi que você me disse antes sobre um carregamento?|gandoren_6|||||}}|}; -{gandoren_rej_1|Sinto muito por ouvir isso. Bom dia para você.|||}; -{gandoren_14|Coisas ruins? Quem foi que lhe disse isso? Exorto-o a formar a sua própria opinião sobre Feygard indo até lá voce mesmo.||{{N|gandoren_15|||||}}|}; -{gandoren_15|Pessoalmente, eu não consigo pensar em um melhor lugar para estar do que em Feygard. A ordem é mantida e as pessoas são amigáveis.||{{N|gandoren_16|||||}}|}; -{gandoren_16|Quanto às razões para que você nos ajude, eu só posso dizer que Feygard ficaria grato por seus serviços se você nos ajudar.||{ - {De qualquer forma, tudo bem. Vou levar suas espadas estúpidas. Eu ainda espero que haja alguma recompensa por isso.|gandoren_19|||||} - {Parece bom para mim. Qualquer coisa para a glória de Feygard.|gandoren_17|||||} - {Melhor eu não me envolver nos negócios de Feygard.|gandoren_rej_1|||||} - }|}; -{gandoren_17|Excelente.|{{0|feygard_shipment|21|}}|{{N|gandoren_20|||||}}|}; -{gandoren_18|Eu não posso prometer-lhe qualquer quantia em uma recompensa.||{{N|gandoren_16|||||}}|}; -{gandoren_19|Ok então.|{{0|feygard_shipment|22|}}|{{N|gandoren_20|||||}}|}; -{gandoren_20|Aqui está a carga que eu quero que você transporte.|{{0|feygard_shipment|25|}{1|feygard_shipment||}}|{{N|gandoren_21|||||}}|}; -{gandoren_21|Como eu disse, você deve entregar as 10 espadas de ferro para o capitão da guarda hospedado em uma taverna chamada \'Foaming Flask\', perto de uma aldeia chamada Vilegard.||{{N|gandoren_22|||||}}|}; -{gandoren_22|Volte para mim quanto completar a tarefa.||{{N|gandoren_23|||||}}|}; -{gandoren_23|Eu sinto que eu devo avisá-lo sobre outra coisa. Ver aquela pessoa lá no canto? Ailshara. Ela parece muito interessada nas nossas relações por algum motivo.||{{N|gandoren_24|||||}}|}; -{gandoren_24|Peço-lhe para ficar longe dela a todo custo. Faça o que fizer, não fale com ela sobre sua missão com o envio.|{{0|feygard_shipment|26|}}||}; - -{gandoren_deliver_1|Você voltou. Boas notícias sobre a expedição, espero?||{ - {Você guardas parecem ter um monte de equipamento aqui, algo para trocar?|gandoren_tr_2|||||} - {Eu ainda estou trabalhando no transporte da carga.|gandoren_22|||||} - {Conte-me novamente o que devo fazer.|gandoren_21|||||} - {Sim. Tenho entreguei tudo conforme ordenado.|gandoren_deliver_y_1|feygard_shipment:50||||} - {Sim. Tenho dado.|gandoren_deliver_n_1|feygard_shipment:60||||} - }|}; -{gandoren_tr_2|Sinto muito, só negociamos com aliados de Feygard. Ajude-me com a tarefa que lhe dei e que podemos reconsiderar.|||}; -{gandoren_deliver_y_1|Explêndido! Feygard está em dívida com você.|{{0|feygard_shipment|80|}}|{{N|gandoren_delivered_1|||||}}|}; -{gandoren_deliver_n_1|Explêndido! Feygard está em dívida com você.|{{0|feygard_shipment|81|}}|{{N|gandoren_delivered_1|||||}}|}; -{gandoren_delivered_1|Eu espero que você tenha conseguido ficar longe dos selvagens de Nor City tanto quanto possível, durante a jornada.||{{N|gandoren_delivered_2|||||}}|}; -{gandoren_delivered_2|Pelo que ouvi, as coisas estão duras ao sul.||{{N|gandoren_delivered_3|||||}}|}; -{gandoren_delivered_3|Quanto a você, você tem nossa gratidão, tanto o meu quanto do resto da patrulha Feygard por nos ajudar com isso.||{{N|gandoren_completed_2|||||}}|}; -{gandoren_completed_1|Você voltou. Obrigado por nos ajudar com a remessa anterior.||{{N|gandoren_completed_2|||||}}|}; -{gandoren_completed_2|Existe algo que eu possa fazer por você?||{ - {Você tem alguma coisa para negociar?|gandoren_tr_3|||||} - {Não, obrigado. Tchau.|X|||||} - }|}; -{gandoren_tr_3|||{ - {|gandoren_tr_4|rogorn:60||||} - {|gandoren_tr_6|||||} - }|}; -{gandoren_tr_4|Absolutamente, como agradecimento pela ajuda que forneceu anteriormente para tanto Minarra quanto eu, concordamos em negociar com você.||{{N|gandoren_tr_5|||||}}|}; -{gandoren_tr_5|Suba na torre de vigia lá e fale com Minarra sobre o equipamento. Ele controla nossos suprimentos.|{{0|nondisplay|18|}}||}; -{gandoren_tr_6|Ouvi dizer que Minarra na torre de vigia ali quer ajuda com alguma coisa. Por que você não vá até ele perguntar sobre isso, e nós podemos ser capazes de trabalhar em algo depois disso.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{ailshara|||{ - {|ailshara_completed_y_1|feygard_shipment:82||||} - {|ailshara_completed_n_1|feygard_shipment:80||||} - {|ailshara_deliver_1|feygard_shipment:35||||} - {|ailshara_interested_1|feygard_shipment:25||||} - {|ailshara_1|||||} - }|}; -{ailshara_completed_y_1|Olá novamente meu amigo na Sombra. Como posso ajudá-lo?||{{Deixe-me ver o que você tem para negociar.|S|||||}}|}; -{ailshara_completed_n_1|Ugh, é você. O que você quer?||{{Deixe-me ver o que você tem para negociar.|S|||||}}|}; -{ailshara_1|Psst, hey. Interessado em fazer alguma negociação? Estou sempre à procura de adquirir ... bem, itens alheios ...||{ - {Claro, deixe-me ver o que você tem.|S|||||} - {Os itens alheios?|ailshara_2|||||} - }|}; -{ailshara_2|Ah, sim. Veja você, esses guardas de patrulha Feygard levam algumas coisas realmente interessantes. Eles parecem não se importar muito se alguns de seus embarques .. bem, desaparecem.||{ - {Ok, deixe-me ver o que você tem.|S|||||} - {Eu realmente não deve se envolver nisso. Tchau.|X|||||} - }|}; -{ailshara_interested_1|Psst, ei! Eu vi você falando com Gandoren, e aconteceu de eu perceber que você trocou alguns itens. Algo interessante?||{ - {Não importa que, deixe-me ver o que você tem que trocar.|S|||||} - {É melhor eu não falar sobre isso.|ailshara_interested_2|||||} - {Gandoren especificamente me pediu para não falar com você sobre isso.|ailshara_interested_2|||||} - {Sim, Gandoren quer-me para entregar alguns equipamentos para Feygard. Você quer uma parte do negócio?|ailshara_interested_4|||||} - }|}; -{ailshara_interested_2|Ah, claro. Gandoren não gostaria que eu tivesse oportunidade para atrapalhar seu negócio. Presumo que o está ajudando a entregar os itens em algum lugar. Diga-me isso, o que ele prometer-lhe em troca? Ouro? Honra? Não?||{ - {Agora que você mencionou, ele não chegou a dizer que haveria uma recompensa.|ailshara_interested_3|||||} - {Eu estou fazendo isso para a glória de Feygard.|ailshara_fg_1|||||} - {Auxiliar Feygard parece ser a coisa certa a fazer.|ailshara_fg_1|||||} - {O que você propõe, ao invés?|ailshara_interested_4|||||} - }|}; -{ailshara_interested_3|Como de costume, Feygard mantém todas as suas riquezas para si. E se eu lhe dissesse que haveria uma maneira para que você ganhar com tudo isso também?||{ - {Parece interessante, por favor, continue.|ailshara_interested_4|||||} - {Eu não tenho nenhum problema em ajudar Feygard sem pensar em nenhum ganho pessoal.|ailshara_fg_1|||||} - {É melhor eu não me envolver nisso, adeus.|X|||||} - }|}; -{ailshara_fg_1|Pela Sombra, você soa como um daqueles esnobes enganosos de Feygard.||{{N|ailshara_fg_2|||||}}|}; -{ailshara_fg_2|a Sombra o ajude, filho. Você deve questionar-se se você realmente está fazendo a escolha certa aqui.|||}; -{ailshara_interested_4|Deixe-me dizer-lhe o meu plano. Como você deve saber, todo mundo acredita que vai haver algum conflito entre os esnobes enganosos de Feygard e as pessoas gloriosas da Cidade Nor.||{{N|ailshara_interested_5|||||}}|}; -{ailshara_interested_5|Qualquer ajuda que pode trazer para a Nor City neste assunto é bem-vinda. Esses itens que Gandoren lhe deu seriam útil para o nosso povo nas terras do sul.|{{0|feygard_shipment|30|}}|{{N|ailshara_interested_6|||||}}|}; -{ailshara_interested_6|Se você entregar esses itens aos nossos aliados em Vilegard, a Sombra certamente estaria mais favorável a você.||{{N|ailshara_interested_7|||||}}|}; -{ailshara_interested_7|Dessa forma, as pessoas poderiam recuperar um pouco das riquezas que Feygard roubou de todos nós.||{{N|ailshara_interested_8|||||}}|}; -{ailshara_interested_8|Se você realmente está andando na Sombra, então entregue esses itens para o ferreiro em Vilegard. Ele será capaz de fazer um bom uso delas. Ele também pode ter alguma outra tarefa para você.|{{0|feygard_shipment|35|}}|{ - {Vou ver o que posso fazer.|ailshara_interested_9|||||} - {Não. Eu vou ajudar Feygard ao invés.|ailshara_fg_1|||||} - {Que seja, eu escolho o meu próprio caminho.|ailshara_interested_9|||||} - }|}; -{ailshara_interested_9|A Sombra esteja com você. Que a Sombra o oriente sobre os caminhos nebulosos que você anda.|||}; -{ailshara_deliver_1|Olá novamente. Será que você entregou esses itens para o ferreiro em Vilegard?||{ - {Sim, está feito.|ailshara_deliver_2_s|feygard_shipment:55||||} - {Não importa, deixe-me ver o que você tem que trocar.|S|||||} - {Não. Eu vou ajudar Feygard ao invés.|ailshara_fg_1|||||} - {Você pode me dizer novamente o que eu deveria fazer?|ailshara_interested_4|||||} - {Ainda não.|ailshara_interested_9|||||} - }|}; -{ailshara_deliver_2_s|||{ - {|ailshara_deliver_3|feygard_shipment:81||||} - {|ailshara_deliver_2|||||} - }|}; -{ailshara_deliver_2|Bom. Você também deve tentar convencer Gandoren a pensar que você o ajudou.|||}; -{ailshara_deliver_3|Excelente! Você realmente andar com a Sombra, meu amigo. Estou feliz em saber que existem pelo menos algumas pessoas decentes ainda por aí.|{{0|feygard_shipment|82|}}|{{N|ailshara_delivered_1|||||}}|}; -{ailshara_delivered_1|Sua ajuda será muito apreciada pelo povo de Nor City, e você será bem-vindo entre nós.|||}; - - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{vilegard_smith_fg_1|Oh, isso é muito inesperado, mas muito bem-vindo. Não vou questionar como você adquiriu esses itens, mas, ao invés, vez expressar a minha gratidão por trazê-los para mim.|{{0|feygard_shipment|55|}}|{{N|vilegard_smith_fg_2|||||}}|}; -{vilegard_smith_fg_2|Obrigado por me trazer esses itens, eles serão mais úteis para nós aqui nas terras do sul, e, em particular, em Vilegard. Raramente chegam a nossas mãos esses itens de Feygard, de forma que eles são realmente bem-vindos.||{ - {Eu fui enviado para entregar esses itens para uma patrulha de Feygard acampada na taberna Foaming Flask.|vilegard_smith_fg_3|||||} - }|}; -{vilegard_smith_fg_3|Em vez disso, você trouxe para mim. Você tem meu agradecimento.||{{N|vilegard_smith_fg_4|||||}}|}; -{vilegard_smith_fg_4|Ah, isso significa que temos mais uma oportunidade aqui. E se você entregasse alguns outros itens, ao invés desses, para a patrulha de Feygard? Hah, isso vai realmente fazer o meu dia.||{{N|vilegard_smith_fg_5|||||}}|}; -{vilegard_smith_fg_5|Eu poderia ter algo que lhe vai cair muito bem .. Deixe-me apenas encontrá-los.||{{N|vilegard_smith_fg_6|||||}}|}; -{vilegard_smith_fg_6|Aqui estão eles. Ha ha, isto irá fazer muito bem para os esnobes enganadores de Feygard.||{{N|vilegard_smith_fg_7|||||}}|}; -{vilegard_smith_fg_7|Tome esses itens e entregue-os onde você deveria entregar os itens originais que você me deu.|{{0|feygard_shipment|56|}{1|vg_smith_fg_items||}}||}; - -{ff_captain_vg_items_1||{{0|feygard_shipment|60|}}|{{|ff_captain_items_1|||||}}|}; -{ff_captain_fg_items_1||{{0|feygard_shipment|50|}}|{{|ff_captain_items_1|||||}}|}; -{ff_captain_items_1|Excelente, eu tenho esperado por esses. Obrigado por trazê-los para mim.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{gallain|Bem-vindo à guarita Crossroads. Sou Gallain, o proprietário do lugar.||{{N|gallain_1|||||}}|}; -{gallain_1|Como posso ajudá-lo?||{ - {Você tem algo para comer por aqui?|gallain_trade_1|||||} - {Existe algum lugar que eu possa descansar aqui?|gallain_rest_1|||||} - {Que lugar é esse?|gallain_cr_1|||||} - }|}; -{gallain_cr_1|Como eu disse, esta é a guarita Crossroads. Os guardas de Feygard usam esse lugar como um lugar para descansar e preparar-se.||{{N|gallain_cr_2|||||}}|}; -{gallain_cr_2|Por isso, é também um refúgio seguro para os comerciantes que viajam por aqui. Nós atendemos uma grande quantidade de pessoas.||{{N|gallain_1|||||}}|}; -{gallain_trade_1|Aqui, dê uma olhada.||{{Negociar|S|||||}}|}; -{gallain_rest_1|Os guardas colocaram algumas camas no andar inferior. Verifique com eles.||{{N|gallain_1|||||}}|}; - -{celdar|E quem é você? Você veio vender-me algumas dessas bugigangas que vocês trazem, né?||{{N|celdar_1|||||}}|}; -{celdar_1|Não, deixe-me adivinhar - você quer saber se eu tenho algo para negociar?||{{N|celdar_2|||||}}|}; -{celdar_2|Deixe-me dizer-lhe uma coisa filho. Eu não quero comprar nada de você, nem quero te vender nada. Eu só quero ser deixadp em paz aqui, agora que eu fiz todo o caminho a este porto seguro.||{{N|celdar_3|||||}}|}; -{celdar_3|Tenho viajado por todo o caminho desde minha cidade natal, Sullengard, e dirigindo-me para Brimhaven, eu parei nesse lugar para começar uma ruptura com todos os plebeus, que sempre me incomodam com suas bugigangas e miudezas.||{{N|celdar_4|||||}}|}; -{celdar_4|Então, você vai me desculpar, mas eu realmente preciso do meu merecido descanso aqui. Sem você me incomodando.||{ - {Ok, eu vou embora.|X|||||} - {Uau, você é do tipo amigável, não é?|celdar_5|||||} - {Eu deveria colocar minha espada através de você por falar assim.|celdar_5|||||} - }|}; -{celdar_5|Você ainda está aí? Será que você não ouvir o que eu disse?|||}; - -{crossroads_guest|Você ouviu sobre o que aconteceu em Loneford? Os guardas parecem um bando de abelhas furiosas zanzando por lá.|||}; - - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{crossroads_sleepguard|||{ - {|crossroads_sleepguard_2|nondisplay:17||||} - {|crossroads_sleepguard_1|||||} - }|}; -{crossroads_sleepguard_1|Olá. Posso ajudá-lo?||{ - {Não. Adeus.|X|||||} - {Se importa se eu usar uma das camas por aqui?|crossroads_sleepguard_3|||||} - }|}; -{crossroads_sleepguard_2|Olá novamente. Espero que a cama esteja confortável o suficiente. Use-a tanto quanto quiser.|||}; -{crossroads_sleepguard_3|||{ - {|crossroads_sleepguard_5|farrik:90||||} - {|crossroads_sleepguard_4|||||} - }|}; -{crossroads_sleepguard_4|Não, sinto muito. Estas camas são apenas para guardas e aliados de Feygard.|||}; -{crossroads_sleepguard_5|Diga, você não é aquele garoto que ajudou os guardas no Fallhaven? Com os ladrões que estavam planejando uma fuga?||{{Sim, eu ajudei os guardas da prisão descobrir sobre alguns planos que os ladrões tinham.|crossroads_sleepguard_6|||||}}|}; -{crossroads_sleepguard_6|Eu sabia que eu tinha ouvido falar de você em algum lugar. Será sempre bem-vindo para nós, guardas. Você pode usar essa segunda cama lá para a esquerda, se precisar descansar.|{{0|nondisplay|17|}}||}; - -{crossroads_backguard|Uh, Olá.||{{Olá. O que tem aí?|crossroads_backguard_1|||||}}|}; -{crossroads_backguard_1|Lá? Oh, nada.||{{Ok, deixa prá lá.|X|||||}{Mas há um buraco na parede lá. Onde leva?|crossroads_backguard_2|||||}}|}; -{crossroads_backguard_2|Levar? Oh não. Não leva a lugar algum.||{{Ok, deixa pra lá.|X|||||}{Existe algo que você não está me contando.|crossroads_backguard_3|||||}}|}; -{crossroads_backguard_3|Ah, não, não. Nada de interessante aqui. Agora, caia fora.||{{Ok, deixa prá lá.|X|||||}{Que tal eu te pagar 100 moedas de ouro para sair do caminho?|crossroads_backguard_4|||||}}|}; -{crossroads_backguard_4|Você faria isso? Hum, deixe-me pensar.||{{N|crossroads_backguard_5|||||}}|}; -{crossroads_backguard_5|Não.||{{Ok, deixa prá lá.|X|||||}{200 moedas de ouro, então?|crossroads_backguard_6|||||}}|}; -{crossroads_backguard_6|Não.||{{Ok, deixa prá lá.|X|||||}{400 moedas de ouro, então?|crossroads_backguard_7|||||}}|}; -{crossroads_backguard_7|Olha, você não está chegando a lugar algum, e não há nada para ver lá.||{{Ok, deixa prá lá.|X|||||}{Oferta final: 800 moedas de ouro. Isso é uma fortuna.|crossroads_backguard_8|||||}}|}; -{crossroads_backguard_8|Hum, 800 ouro que você diz? Bem, por que não disse desde o início? Com certeza, isso poderia funcionar.||{{N|crossroads_backguard_9|||||}}|}; -{crossroads_backguard_9|Devo dizer-lhe no entanto, que há algo lá que nós não ousaríamos chegar perto. Eu só estou de guarda aqui para certificar de que aquilo não saia, e que ninguém entre||{{N|crossroads_backguard_10|||||}}|}; -{crossroads_backguard_10|Alguns outros guardas foram lá antes, e voltaram aos berros. Entre por sua conta e risco, mas não diga que eu não o avisei.||{{Não importa, eu só estava brincando.|X|||||}{Aqui está o ouro, agora saia do caminho.|R||gold|800|0|}}|}; - -{keknazar|* hssss * n (Você ouve um sibilado conforme a criatura começa a se mover em direção a você)||{{Pela a sombra!|F|||||}{Você não vai sobreviver a isso, criatura patética.|F|||||}{Uma luta! Eu estava ansioso para isso!|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{feygard_bridgeguard|Desculpe, o caminho para Feygard está fechado até nova ordem.|||}; -{sign_crossroadshouse|Guarita de Crossroads, hospedagem para aliados de Feygard.|||}; -{sign_crossroads_s|Sudeste: Nor City\nNoroeste: Feygard\nLeste: Loneford\nSul: Fallhaven|||}; -{sign_crossroads_n|Noroeste: Feygard\nLeste: Loneford.|||}; -{sign_fields1|Noroeste: Feygard\nLeste: Loneford.|||}; -{sign_fields6|Noroeste: Feygard\nSul: Nor City.|||}; -{crossroads_sleep|O guarda grita com você: Hei! Você não pode dormir aqui!|||}; -{sign_loneford2|Bem-vindo à pacífica Loneford.\n(A placa também contém um desenho de fardo de feno com o que se parece com um agricultor sentado em cima.)|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{loneford_farmer0|O que fizemos para merecer isso?||{{O que há de errado?|loneford_farmer0_1|||||}}|}; -{loneford_farmer0_1|Você não ouviu sobre a doença?||{{Que doença?|loneford_farmer_il_1|||||}}|}; - -{loneford_farmer_il_1|Tudo começou há alguns dias. Selgan encontrou Hesor desmaiado em sua lavoura antiga, com o rosto completamente branco e tremendo.||{{N|loneford_farmer_il_2|||||}}|}; -{loneford_farmer_il_2|Poucos dias depois, Selgan começou a mostrar os mesmos sintomas que Hesor, com dores de estômago. Eu também comecei a sentir as dores e tem arrepios.||{{N|loneford_farmer_il_3|||||}}|}; -{loneford_farmer_il_3|Em seguida, todas as pessoas apresentaram os sintomas de uma forma ou de outra.||{{N|loneford_farmer_il_4|||||}}|}; -{loneford_farmer_il_4|Pobre Selgan e Hesor: aparentemente pegaram a forma mais forte disso. âmbos morreram anteontem.||{{N|loneford_farmer_il_5|||||}}|}; -{loneford_farmer_il_5|Maldita doença, por que tinha que ser Selgan e Hesor? Eu quero saber quem é o próximo.||{{N|loneford_farmer_il_6|||||}}|}; -{loneford_farmer_il_6|Nós todos começamos a investigar o que poderia ser a causa. Ainda não descobrimos a causa, mas temos as nossas suspeitas.|{{0|loneford|10|}}|{{N|loneford_farmer_il_7|||||}}|}; -{loneford_farmer_il_7|Felizmente, agora Feygard enviou patrulhas aqui para ajudar a proteger a vila, pelo menos. Nós ainda estamos sofrendo, porém, e tememos quem será o próximo a ser tomado pela doença.|{{0|loneford|11|}}||}; - -{loneford_wellguard|Por favor, informar qualquer comportamento suspeito que você puder descobrir a Kuldan.|||}; - -{rolwynn|O que fizemos para merecer isso? Por favor, você pode nos ajudar?||{ - {O que você acha que é a causa da doença?|rolwynn_1|loneford:11||||} - {O que há de errado?|loneford_farmer0_1|||||} - }|}; -{rolwynn_1|Meu palpite é que isso deve ter sido algo feito por essas pessoas arrogantes de Feygard.||{{N|rolwynn_2|||||}}|}; -{rolwynn_2|Eles estão sempre procurando maneiras de tornar nossa vida um pouco mais difícil.||{{N|rolwynn_3|||||}}|}; -{rolwynn_3|Tentamos cultivar nossas terras para nos alimentar, mas eles exigem que eles recebam uma parcela de tudo o que obtemos das vendas||{{N|rolwynn_4|||||}}|}; -{rolwynn_4|Ultimamente, as culturas não têm sido tão boas como costumavam ser, e os guardas, aparentemente, acho que estão embolsando com uma parcela do que está sendo pago.||{{N|rolwynn_5|||||}}|}; -{rolwynn_5|Estou certo de que eles tenham feito algo conosco, como punição por não seguirmos suas regras *. Eles estão sempre falando sobre como as leis e as regras são tão preciosas para eles.|{{0|loneford|22|}}|{{N|loneford_ill_c_1|||||}}|}; - -{loneford_ill_c_1|||{{|loneford_ill_c_2|loneford:21||||}{|loneford_ill_c_n|||||}}|}; -{loneford_ill_c_2|||{{|loneford_ill_c_3|loneford:22||||}{|loneford_ill_c_n|||||}}|}; -{loneford_ill_c_3|||{{|loneford_ill_c_4|loneford:23||||}{|loneford_ill_c_n|||||}}|}; -{loneford_ill_c_4|||{{|loneford_ill_c_5|loneford:24||||}{|loneford_ill_c_n|||||}}|}; -{loneford_ill_c_n|Isso é o que eu acho, que de qualquer maneira.|||}; -{loneford_ill_c_5|Há algo mais, também. Eu conversei com aquele bêbado, Landa, na taberna, mais cedo hoje. Ele disse que viu alguma coisa, mas não se atreveu a dizer-me o que era.|{{0|loneford|25|}}|{ - {Obrigado, eu vou falar com ele.|X|||||} - {Grande, devo falar com mais um bêbado.|X|||||} - }|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{loneford_guard0|Nós mantemos a ordem por aqui. Eu me pergunto o que as pessoas de Loneford fariam sem nós, guardas de Feygard. Coitados.|||}; -{loneford_villager0|*tosse* Por favor, ajude-nos, em breve não haverá mais muitos de nós!||{{O que houve?|loneford_farmer0_1|||||}}|}; -{loneford_villager1|Não consigo sentir mais o meu rosto! Por favor, ajude-nos!||{{O que há de errado?|loneford_farmer0_1|||||}}|}; -{loneford_villager2|Não mexa comigo, eu preciso terminar de cortar a madeira. Vá incomodar outra pessoa.|||}; -{loneford_villager3|Eu temo pela nossa sobrevivência. Parece que estamos piorando a cada dia que passa. É uma coisa boa que Feygard nos ajude, pelo menos.||{{O que há de errado?|loneford_farmer0_1|||||}}|}; -{loneford_villager4|Não te conheço de algum lugar? Você parece-me familiar de alguma forma.|||}; - -{landa|||{ - {|landa_already_1|loneford:35||||} - {|landa_1|||||} - }|}; -{landa_1|Wha? Você? Não, fica longe de mim!||{{Ouvi dizer que você viu alguma coisa que você não vai falar.|landa_2|loneford:25||||}}|}; -{landa_2|(Landa dá-lhe um olhar aterrorizado)||{{N|landa_3|||||}}|}; -{landa_3|Você estava lá! Eu v-v-vi você!||{{N|landa_4|||||}}|}; -{landa_4|Não foi você? Não, parecia com você, e eu tenho uma boa memória! * Morde o lábio *||{{Calma.|landa_5|||||}}|}; -{landa_5|Fique longe de mim, o que quer que você tenha feito por lá, é problema seu e eu não quero me intrometer!||{{Você deve ter me confundido com outra pessoa.|landa_6|||||}}|}; -{landa_6|Por favor, não me machuque!||{{Landa, você deve ter me confundido com outra pessoa! O que foi que você viu?|landa_7|||||}}|}; -{landa_7|Não, é menor do que ele.||{{Você vai me dizer o que foi que você viu?|landa_8|||||}}|}; -{landa_8|O rapaz. Ele estava fazendo algo. Eu tentei a esgueirar-se por perto para ver o que foi que ele estava fazendo, o que eu fiz. Mas ele fugiu antes que eu pudesse ver.||{{N|landa_9|||||}}|}; -{landa_9|Ele fez algo no poço de Loneford.||{{Quando foi isso?|landa_10|||||}}|}; -{landa_10|Foi no meio da noite, no dia antes de tudo começar. No dia seguinte, eu estava dormindo durante o dia. Assim, não percebi toda a agitação quando eles trouxeram Hesor volta.||{{N|landa_11|||||}}|}; -{landa_11|Quase toda a aldeia queria ver o que tinha acontecido com Hesor. Guardei isso para mim e não se atrevi a falar com ninguém.|{{0|loneford|30|}}|{{N|landa_12|||||}}|}; -{landa_12|No mesmo dia, outros começaram a ficar pálidos também. Eu podia ver isso em seus rostos.||{{N|landa_13|||||}}|}; -{landa_13|Na noite seguinte, eu estava me preparando para ir para ir para o poço e procurar todos os vestígios do que o rapaz tinha feito.||{{N|landa_14|||||}}|}; -{landa_14|Olhei pela janela para ver se havia alguém que pudesse me ver. Em vez disso, eu vi alguém se escondendo em torno do poço, enchendo vários frascos misturando imundice com a água do próprio poço.||{{N|landa_15|||||}}|}; -{landa_15|Tenho certeza que foi Buceth, da capela. Eu tenho um bom olho para as pessoas, e uma boa memória. Sim, tenho a certeza que foi Buceth.||{{N|landa_16|||||}}|}; -{landa_16|Além disso, não é estranho que Buceth não tenha ficado doente, enquanto todos os outros na aldeia ficaram doentes?|{{0|loneford|31|}}|{{N|landa_17|||||}}|}; -{landa_17|Ele deve estar tramando algo. Ele e aquele rapaz que parecia você. Tem certeza de que não foi você?|{{0|loneford|35|}}|{{N|landa_18|||||}}|}; -{landa_18|Não importa. Por favor, não diga a ninguém que eu lhe disse tudo isso.||{{N|landa_19|||||}}|}; -{landa_19|Agora, sai daqui garoto, antes que alguém o veja falar comigo. *Olha em volta ansiosamente*||{ - {Obrigado Landa. Seu segredo está seguro comigo.|X|||||} - {Obrigado Landa. Eu vou considerar isso.|X|||||} - {Você terminou? Ufa, pensei que nunca ia parar de falar.|X|||||} - }|}; -{landa_already_1|Você de novo? Eu já disse a você. Saia daqui antes que alguém o veja falar comigo.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{buceth|||{ - {|buceth_complete_1|loneford:60||||} - {|buceth_fight_1|loneford:50||||} - {|buceth_story_3|loneford:45||||} - {|buceth_follow_1|loneford:42||||} - {|buceth_bribed_1|loneford:41||||} - {|buceth_1|||||} - }|}; -{buceth_bribed_1|Você de novo. Obrigado pelo ouro antes.||{{N|buceth_story_1|||||}}|}; -{buceth_follow_1|Bem-vindo de volta meu amigo. Caminhe com a Sombra.||{{N|buceth_story_1|||||}}|}; -{buceth_1|A Sombra esteja com você.||{ - {Eu sei do seu negócio no poço à noite posterior à eclosão da doença.|buceth_2|loneford:35||||} - {Você pode me dizer mais sobre a Sombra?|priest_shadow_1|||||} - }|}; -{buceth_2|Ah, eu tenho certeza que você sabe. Mas o que prova que você tem, hein? Alguma coisa que os guardas acreditariam?||{{N|buceth_3|||||}}|}; -{buceth_3|Deixe-me perguntar uma coisa primeiro, e podemos falar depois disso.||{ - {Ok, o que?|buceth_4|||||} - {Que tal um pouco de ouro, ajudaria a fazê-lo falar?|buceth_gold_1|||||} - }|}; -{buceth_4|Deixe-me começar por contar-lhe uma história.||{ - {Vá em frente|buceth_5|||||} - {Deixe-me adivinhar, esta história vai demorar uma eternidade para ouvir. Que tal eu dar-lhe um pouco de ouro, em vez disso, e podemor ir direto ao que você estava fazendo no poço.|buceth_gold_1|||||} - }|}; -{buceth_gold_1|Hm, isso pode ser uma proposta interessante. Quanto ouro está sugerindo?||{ - {Aqui tem 10 moedas de ouro, pegue.|buceth_gold_no||gold|10|0|} - {Aqui está 100 moedas de ouro, pegue.|buceth_gold_no||gold|100|0|} - {Aqui está 250 moedas de ouro, pegue.|buceth_gold_no||gold|250|0|} - {Aqui está 500 moedas de ouro, pegue.|buceth_gold_no||gold|500|0|} - {Aqui está 1000 moedas de ouro, pegue.|buceth_gold_yes||gold|1000|0|} - {Aqui está 2000 moedas de ouro, pegue.|buceth_gold_yes||gold|2000|0|} - }|}; -{buceth_gold_no|Hrmpf. Obrigado pelo ouro, mas eu não estou interessado em falar com você. Agora, por favor, deixe.|||}; -{buceth_gold_yes|Você parece perceber o verdadeiro valor da Sombra. Sim, isso vai fazer muito bem, obrigado.|{{0|loneford|41|}}|{{N|buceth_story_1|||||}}|}; -{buceth_5|Vamos supor que você vive em uma aldeia que, em sua maior parte, é auto-suficiente. Sua aldeia é auto-sustentável e as colheitas foram boas durante alguns anos.||{{N|buceth_6|||||}}|}; -{buceth_6|Com as poucas exceções de algumas lutas aqui e ali entre os moradores por causa de mal-entendidos, em geral, a sua aldeia é uma aldeia simpática e serena.||{{N|buceth_7|||||}}|}; -{buceth_7|Você trabalha na mesma profissão que seus pais, que por sua vez trabalhavam nas mesmas profissões dos pais deles.||{{N|buceth_8|||||}}|}; -{buceth_8|Vamos supor também que a forma como você conduz seus negócios é a mesma maneira que as pessoas da vila conduziam seus negócios em gerações passadas.||{{N|buceth_9|||||}}|}; -{buceth_9|Todos respeitam um ao outro na vila, e seu líder eleito faz um bom trabalho em manter os interesses de todos satisfeitos, e, ao mesmo tempo, seja razoavelmente justo.||{{N|buceth_10|||||}}|}; -{buceth_10|Então, um dia, um grupo de homens vêm andando para a vila. Armaduras brilhantes, dentes brancos, cabelos penteados, barbas aparadas.||{{N|buceth_11|||||}}|}; -{buceth_11|Os homens afirmam que o senhor deles é dono desta terra, incluindo a sua aldeia.||{{N|buceth_12|||||}}|}; -{buceth_12|Eles alegam que mantêm a terra livre de malfeitores e criaturas do mal.||{{N|buceth_13|||||}}|}; -{buceth_13|Por sua ajuda na proteção de sua aldeia, eles pedem para a aldeia compensá-los com uma parte da colheita.||{{N|buceth_14|||||}}|}; -{buceth_14|Agora, me diga. Você apoiaria esses homens por concordar com seus termos?||{ - {Sim.|buceth_15|||||} - {Não.|buceth_15|||||} - {Eu não sei.|buceth_dontknow|||||} - }|}; -{buceth_dontknow|Lamento ouvir isso. Você deve limpar a sua mente de preconceitos e depois tornar a mim. Então, talvez possa ser capaz de falar mais.||{ - {Ok, adeus.|X|||||} - {Que tal eu dar-lhe um pouco de ouro em vez disso?|buceth_gold_1|||||} - }|}; -{buceth_15|Proposta interessante.||{{N|buceth_16|||||}}|}; -{buceth_16|Deixe-me continuar a história do nosso caso hipotético.||{{N|buceth_17|||||}}|}; -{buceth_17|Um pouco mais tarde, os homens retornam. Explicam que alguns dos métodos que são utilizados na aldeia já foram proibidos em todo o reino.||{{N|buceth_18|||||}}|}; -{buceth_18|Sem entrar em detalhes, vamos dizer que estes são os métodos que têm sido utilizados pelas gerações passadas de sua aldeia.||{{N|buceth_19|||||}}|}; -{buceth_19|Mudar a forma como as coisas são feitas sem esses métodos vai exigir um grande esforço. Um monte de pessoas na aldeia estão chateadas por causa dessas notícias trazidas por esses homens.||{{N|buceth_20|||||}}|}; -{buceth_20|Agora, me diga. Você iria, em segredo, continuar usando os velhos métodos que suas gerações passadas usaram, ou você iria, ao invés, trocar para a nova forma que esses homens estão defendendo?||{ - {gostaria de continuar usando as velhas formas em segredo|buceth_21_1|||||} - {gostaria de continuar usando as velhas, e lutar contra a decisão que proibiu-as em primeiro lugar|buceth_21_2|||||} - {Eu só iria usar os métodos que são permitidos|buceth_22|||||} - {Gostaria de seguir a lei|buceth_22|||||} - {Eu não posso decidir sem conhecer mais detalhes|buceth_dontknow|||||} - }|}; -{buceth_21_1|Interessante.||{{N|buceth_25|||||}}|}; -{buceth_21_2|Fico feliz em saber que existem pessoas por aí que estejão dispostas a defender o que é certo.||{{N|buceth_25|||||}}|}; -{buceth_22|Interessante. Você tem uma visão diferente do mundo do que eu e os sacerdotes de Nor city temos.||{{N|buceth_23|||||}}|}; -{buceth_23|Você, é claro, tem direito à sua opinião, mas você deve saber que sua opinião pode entrar em conflito com a Sombra.||{{N|buceth_24|||||}}|}; -{buceth_24|Você queria saber sobre algum assunto que você me acusa. Como você não tem nenhuma prova, eu vou declarar inocência. Eu sei que a minha consciência está limpa.||{ - {Ok, adeus.|X|||||} - {Bom. Que tal eu dar-lhe um pouco de ouro em vez disso, isso faria você falar?|buceth_gold_1|||||} - }|}; -{buceth_25|As suas opiniões coincidem com aqueles que eu e os outros sacerdotes de Nor City acreditamos. Diga-me, você estaria interessado em seguir o brilho da sombra?||{ - {Eu estou pronto para seguir a Sombra.|buceth_27|||||} - {Como posso concordar com algo sem saber o que isso implica?|buceth_26|||||} - {Não, eu vou seguir o meu caminho.|buceth_decline|||||} - {Não, eu vou seguir o meu caminho. Sua estúpida Sombra é apenas blá-blá-blá e palavras bonitas.|buceth_decline|||||} - }|}; -{buceth_26|Se as respostas que deu anteriormente eram de fato os seus pontos de vista, então eu posso garantir-vos que o seu caminho que é guiado pela Sombra é o caminho certo.||{ - {Eu estou pronto para seguir o Sombra.|buceth_27|||||} - {Não, eu vou seguir o meu caminho.|buceth_decline|||||} - {Não, eu vou seguir o meu caminho. Sua estúpida Sombra é apenas blá-blá-blá e palavras bonitas.|buceth_decline|||||} - }|}; -{buceth_decline|Lamento ouvir isso. Eu acho que nós não compartilham pontos de vista, depois de tudo.||{{N|buceth_24|||||}}|}; -{buceth_27|Eu estou contente de ouvir isso. Mas então, eu tinha a sensação de o tempo todo que você diria isso desde o início.|{{0|loneford|42|}}|{{N|buceth_story_1|||||}}|}; - -{buceth_story_1|Você queria me perguntar alguma coisa?||{{O que você estava fazendo no poço durante a noite?|buceth_story_2|||||}}|}; -{buceth_story_2|Deixe-me dizer-lhe primeiro o meu plano.||{ - {Ótimo. Outra história sem fim.|buceth_story_3|||||} - {Por favor, vá em frente.|buceth_story_3|||||} - }|}; -{buceth_story_3|Fui designado por sacerdotes de Nor City para ajudar a guiar o povo de Loneford para a Sombra. Nossa missão é fazer com que a Sombra lance seu brilho sobre Loneford, bem como outras aldeias por aqui.||{{N|buceth_story_4|||||}}|}; -{buceth_story_4|Boa parte das pessoas nestas partes do norte parecem demasiado ocupadas com obediência à vontade de Feygard e Lorde Geomyr. Queremos ajudar as pessoas enchergar os absurdos defendidos por Feygard, e apontar os erros em seus caminhos.||{{N|buceth_story_5|||||}}|}; -{buceth_story_5|Essa é a minha missão aqui. Para ver que a Sombra lança seu brilho sobre Loneford.||{{Como isso se relaciona com o que você estava fazendo no poço?|buceth_story_6|||||}}|}; -{buceth_story_6|Nor City enviou-me uma mensagem dizendo-me que algo estava para acontecer aqui em Loneford. Algo que poderia ajudar a nossa causa.||{{N|buceth_story_7|||||}}|}; -{buceth_story_7|Eles estavam enviando um menino para fazer alguns negócios aqui, e fui designado para ter certeza de que a missão seria bem sucedida.|{{0|andor|61|}}|{{N|buceth_story_8|||||}}|}; -{buceth_story_8|Eu tinha a tarefa de recolher amostras de água do poço e da terra em torno do poço. Além disso, me foi dado alguns frascos cujo conteúdo deveria ser vertido no poço.||{{N|buceth_story_9|||||}}|}; -{buceth_story_9|Aparentemente, o menino que enviou foi bem sucedido em sua missão. A tarefa que eu fiz foi também bem sucedida, se me permite assim o dizer.|{{0|loneford|45|}}|{{N|buceth_story_10|||||}}|}; -{buceth_story_10|É onde estamos agora: a ação é realizada, e a Sombra vai olhar favoravelmente sobre nós.||{ - {Então, o poço foi envenenado, isso é horrível. Como você pôde?|buceth_story_11|||||} - {Obrigado por me dizer.|buceth_story_12|||||} - }|}; -{buceth_story_11|Horrível!? O que é horrível? O que essas pessoas de Feygard estavam fazendo - isso é o que é horrível!||{{N|buceth_story_12|||||}}|}; -{buceth_story_12|Agora, peço-lhe para manter esta história só entre nós dois. Você entende que, certo?||{ - {Absolutamente. Caminhe com a Sombra.|buceth_story_14|||||} - {Eu prometo não contar a ninguém.|buceth_story_14|||||} - {Não, vou te denunciar ao guarda.|buceth_story_13|||||} - }|}; -{buceth_story_13|Peço-lhe para repensar o seu raciocínio. O caminho da sombra é a maneira justa.||{ - {Muito bem. Eu prometo não contar a ninguém.|buceth_story_14|||||} - {Não. O crime será punido!|buceth_fight_1|||||} - }|}; -{buceth_fight_1|Infiel, você não vai me derrotar! Pela a sombra!|{{0|loneford|50|}}|{{Lute!|F|||||}}|}; -{buceth_story_14|Obrigado, meu amigo.|{{0|loneford|60|}}|{{N|buceth_story_15|||||}}|}; -{buceth_story_15|Se você quiser saber mais sobre o Sombra, visite o guardião capela Nor City. Diga a ele que eu o enviei, e ele certamente irá estender a sua gratidão para com você.|{{0|loneford|60|}}||}; -{buceth_complete_1|Bem-vindo de volta meu amigo. Que você possa aquecer-se no brilho da Sombra.||{{N|buceth_story_15|||||}}|}; - - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{talion|||{ - {|talion_0|maggots:51||||} - {|talion_cured_1|maggots:50||||} - {|talion_cure_5|maggots:45||||} - {|talion_infect_30|maggots:30||||} - {|talion_infect_1|maggots:10||||} - {|talion_0|||||} - }|}; -{talion_0|A Sombra esteja com você.||{ - {Você sabe alguma coisa sobre a doença aqui em Loneford?|talion_1|loneford:11||||} - {Você tem alguma coisa para negociar?|S|||||} - {Que bênçãos você pode oferecer?|talion_bless_1|maggots:51||||} - }|}; -{talion_1|O povo de Loneford está muito interessado ​​em seguir a vontade de Feygard, seja ela qual for.||{{N|talion_2|||||}}|}; -{talion_2|Normalmente, isso não seria um problema. Mas Lorde Geomyr parece ter algo contra a Sombra. Ele vai fazer o que puder para se opor a todas as ações que, de alguma forma, estenderem o alcance da Sombra.||{{N|talion_3|||||}}|}; -{talion_3|Devido a isso, o povo de Loneford está agora ativamente abolindo o pensamento que a Sombra orienta suas vidas.||{{N|talion_4|||||}}|}; -{talion_4|As pessoas daqui preferem seguir a lei de Feygard a seguir os velhos caminhos.||{{N|talion_5|||||}}|}; -{talion_5|Meu sentimento é que esta doença é causada pela sombra, como castigo para todos nós aqui em Loneford.|{{0|loneford|23|}}|{{N|loneford_ill_c_1|||||}}|}; - - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{taevinn|Por favor, você tem que nos ajudar!||{ - {Você sabe alguma coisa sobre a doença?|taevinn_1|loneford:11||||} - {O que há de errado?|loneford_farmer0_1|||||} - }|}; -{taevinn_1|Eu vou te dizer o que eu sei. Tentamos seguir a lei por aqui. Sem regras e leis, como nós seríamos diferentes dos selvagens que vagueiam as terras do sul?||{{N|taevinn_2|||||}}|}; -{taevinn_2|Mas mesmo se nós aqui em Loneford mantivermo-nos tão calmo quanto possível, há sempre alguém que tem desejo de causar dano.||{{N|taevinn_3|||||}}|}; -{taevinn_3|Você já viu? Que Sienn tolo. Ele e seu \'animal de estimação\' estão sempre tentando causar algum problema. Nós não podemos ter isso aqui na nossa amigável aldeia. Especialmente em tempos como estes, quando estamos tentando mostrar o nosso lado bom para os guardas magníficos de Feygard que estão aqui.||{{N|taevinn_4|||||}}|}; -{taevinn_4|Você sabe que eu tentei falar com ele várias vezes sobre seu chamado \'bichinho\'? Eu realmente não consegui entender o que ele estava tentando me dizer, mas essa coisa sua quase tentou me matar, ele o fez!||{{N|taevinn_5|||||}}|}; -{taevinn_5|Eu digo a você, existe um mal em torno dele e daquilo que ele mantém em torno de si. Tenho certeza de que eles estão aprontando alguma coisa. Eles provavelmente causaram essa doença, de alguma forma. Talvez possa-se pegar algo contagiante daquela coisa de que ele mantém seu redor.|{{0|loneford|24|}}|{{N|loneford_ill_c_1|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{kuldan|||{ - {|kuldan_c_1|loneford:55||||} - {|kuldan_bc_1|loneford:54||||} - {|kuldan_1|||||} - }|}; -{kuldan_1|Por favor, informe qualquer comportamento suspeito que você pode ver.||{ - {Eu sei qual é a causa da doença. Dê uma olhada neste frasco que Buceth tinha com ele.|kuldan_bc_1|loneford:50|buceth_vial|1|0|} - {Quem é você?|kuldan_2|||||} - }|}; -{kuldan_2|Eu sou Kuldan, capitão do destacamento de guardas aqui em Loneford. Agora, se me der licença, tenho trabalho a fazer.|||}; -{kuldan_c_1|Feygard é grata por sua ajuda para resolver o mistério da doença aqui em Loneford.||{{N|kuldan_c_2|||||}}|}; -{kuldan_c_2|Estamos tentando ajudar as últimas pessoas que ainda estão mal aqui. Loneford pode necessitar de nossa assistência de Feygard por mais algum tempo.|||}; -{kuldan_bc_1|O que é isso? Isso cheira a veneno Narwood. Você diz que tomou isso de Buceth?|{{0|loneford|54|}}|{{Buceth era parte de um plano de sacerdotes de Nor City para envenenar a água bem aqui em Loneford.|kuldan_bc_2|||||}}|}; -{kuldan_bc_2|Mas isso significa .. É pela água que as pessoas estão a ficar doente? Isso explica um monte de coisas.||{{N|kuldan_bc_3|||||}}|}; -{kuldan_bc_3|Você meu amigo fez a Loneford um grande serviço ao encontrar isto, e, por extensão, a Feygard também. Devemos ir pegar Buceth e o responsabilizar pelo que ele tem feito.||{{Ele já está morto|kuldan_bc_4|||||}}|}; -{kuldan_bc_4|Morto, você diz? Hum, não é a forma como fazemos as coisas em Feygard, mas acho que este é um caso excepcional.||{{N|kuldan_bc_5|||||}}|}; -{kuldan_bc_5|Eu sempre suspeitei que esses selvagens de Nor City estavam atrás de tudo isso.||{{N|kuldan_bc_6|||||}}|}; -{kuldan_bc_6|É bom saber que agora, pelo menos, tenhamos alguma evidência para apoiar nossas reivindicações.||{{N|kuldan_bc_7|||||}}|}; -{kuldan_bc_7|Quanto a Loneford, acho que vamos ter que começar a trazer água de Feygard para ajudar as pessoas aqui. Que bom que eles nos tenham por perto. O que eles fariam, caso contrário?||{{N|kuldan_bc_8|||||}}|}; -{kuldan_bc_8|E você, meu amigo - você deve, naturalmente, ser suficientemente recompensado por sua ajuda neste assunto. Você deve viajar para a gloriosa cidade de Feygard para o noroeste e reportar-se ao taifeiro do castelo, para mais instruções.||{{N|kuldan_bc_9|||||}}|}; -{kuldan_bc_9|Acontece que eu conheço pessoalmente o taifeiro do castelo, e eu vou mandar avisá-lo sobre sua ajuda aqui.||{{N|kuldan_bc_10|||||}}|}; -{kuldan_bc_10|Pela a glória de Feygard, o povo de Loneford pôde sobreviver graças à sua ajuda.|{{0|loneford|55|}}||}; - -{kuldan_guard|O quê? Fale com o chefe.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{sienn|Ha! Você parece engraçado. Você pequeno.||{ - {Quem é você?|sienn_who_1|||||} - {O que é essa a coisa que você está mantendo junto de si?|sienn_pet_1|||||} - }|}; -{sienn_who_1|Me, Sienn. Eu forte!||{ - {O que é essa a coisa que você está mantendo junto de si?|sienn_pet_1|||||} - }|}; -{sienn_pet_1|Bichinho, bonito!\n(Sienn faz sonzinhos fofos enquanto coça o animal no queixo dele)||{ - {Quem é você?|sienn_who_1|||||} - {Você sabia que Taevinn acha que você causou a doença aqui em Loneford?|sienn_pet_2|loneford:24||||} - }|}; -{sienn_pet_2|Sienn não doente! Sienn forte!|||}; -{sienn_pet|*Guinchando!*\n (A criatura olha para você, mostrando todos os seus dentes, ao fazer um som agudo estridente.)||{ - {Aqui, aqui. Fácil agora.|X|||||} - {*lentamente afastado*|X|||||} - }|}; - -{siola|Olá. Você veio para ver a minha seleção de itens?||{ - {Sim, vamos negociar..|S|||||} - {Qual é o negócio de Sienn ali com seu animal de estimação?|siola_sienn_1|||||} - }|}; -{siola_sienn_1|Eu não sei onde ele o pegou. De qualquer forma, não prejudica ninguém, então eu estou bem com eles aqui. Eu percebi que alguém deve ajudá-los a ter algum lugar para ficar, e ninguém mais queria ajudá-los, assim eu os deixei ficar aqui.||{{N|siola_sienn_2|||||}}|}; -{siola_sienn_2|Sienn pode ser um pouco grosso, mas ele com certeza pode ser engraçado quando você começa a conhecê-lo e ele confia em você. Ele pode fazer um monte dessas expressões faciais hilárias.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{grimion|Olá e bem-vindo ao Loneford. Por favor, sente, eu irei logo aí.||{ - {Você tem algo para comer por aqui?|grimion_trade_1|||||} - {Existe um lugar onde eu possa descansar um pouco por aqui?|grimion_rest_1|||||} - }|}; -{grimion_trade_1|Claro, dê uma olhada.||{{N|S|||||}}|}; -{grimion_rest_1|Claro, os guardas colocaram algumas camas no sótão. Vá falar com Arngyr lá, ele pode ser capaz de ajudá-lo.|||}; - -{loneford_tavern_room|Arngyr o agarra pelo ombro e puxa você de volta\nSe você quiser descansar aí, você precisa falar comigo primeiro.|||}; -{arngyr|||{ - {|arngyr_back_1|nondisplay:19||||} - {|arngyr_1|||||} - }|}; -{arngyr_1|Sim, eu posso ajudá-lo?||{{Se importa se eu usar uma das camas aqui?|arngyr_2|||||}}|}; -{arngyr_2|||{ - {|arngyr_3|loneford:55||||} - {|arngyr_4|||||} - }|}; -{arngyr_3|Ah, não, de forma alguma. Vá em frente. Depois de tudo o que você tem feito por nós aqui em Loneford, seria um privilégio ser capaz de dar-lhe algo em retribuição a você.|{{0|nondisplay|19|}}|{{N|arngyr_6|||||}}|}; -{arngyr_4|Estas camas são mais utilizadas por nós, guardas. Mas eu acho que eu poderia fazer uma exceção já que você é apenas um garoto. Digamos, 600 moedas de ouro e você poderia usá-las?||{{Claro, aqui está o ouro.|arngyr_5||gold|600|0|}{O quê? Isso é um pouco demais, não acha?|arngyr_7|||||}}|}; -{arngyr_5|Obrigado.|{{0|nondisplay|19|}}|{{N|arngyr_6|||||}}|}; -{arngyr_6|Use a cama que melhor lhe aprouver.||{{Obrigado.|X|||||}}|}; -{arngyr_7|Olhar, garoto. Eu faço as regras por aqui. Se esse é o meu preço, então esse é o meu preço. É pegar ou largar.||{{Bem, aqui está o ouro|arngyr_5||gold|600|0|}{Não importa. Não estou tão cansado.|X|||||}}|}; -{arngyr_back_1|Olá novamente. Espero que a cama esteja suficientemente confortável.|||}; - -{loneford_chapelguard|Caminhe com a Sombra, criança.|||}; - -{wallach|Ah, Selgan pobre velho. Por que tinha que ser ele? Eu quero saber quem é o próximo, e eu temo pelo pior.|||}; -{mienn|Não consigo ver como poderíamos fazer isso sem a ajuda dos guardas agradáveis de Feygard por aqui. Temos realmente sorte de ter a sua ajuda.|||}; -{conren|Temos a sorte de ter Feygard aqui nos ajudando.|||}; -{telund|Quem é você? Você viu meu pai Selgan? Todos me dizem que ele vai estar de volta em breve, mas todos eles estão mentindo! Eu sei, eu sei! Ele não estava em casa ontem, e ele não está em casa hoje.|||}; - -{loneford_tavern_patron|Este não é lugar para um garoto como você. Eu acho melhor você ir embora agora.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{iqhan_greeter|Vá embora! Não! Volte, enquanto você ainda pode!||{{N|iqhan_greeter_1|||||}}|}; -{iqhan_greeter_1|Você não sabe o que eles vão fazer com você!||{{Que lugar é esse?|iqhan_greeter_2|||||}}|}; -{iqhan_greeter_2|O quê? Não, não, não. Você deve sair daqui!||{{N|R|||||}}|}; -{iqhan_boss|*Ofegante*||{{N|iqhan_boss_1|||||}}|}; -{iqhan_boss_1|(A figura aponta o dedo para você, no que parece ser uma ordem para os escravos proximos atacá-lo.)||{{Lute!|F|||||}}|}; -{sign_waterway1|Sul: Loneford\nLeste: Brimhaven.\n(Você também vê algo escrito em uma seta apontando para o oeste, mas você não consegue entender as palavras)|||}; -{sign_waterway3|(A placa está escrita em um idioma que você não pode entender)|||}; - -{gauward|O que .. Ah, um visitante!||{ - {Que lugar é esse?|gauward_1|||||} - {Tenho algumas garras Izthiel para vender você.|gauward_sell_1|nondisplay:20||||} - }|}; -{gauward_1|Este lugar costumava ser uma parada segura para os viajantes entre Loneford e Brimhaven, antes de terem atravessado toda a estrada entre as aldeias.||{{N|gauward_2|||||}}|}; -{gauward_2|Mas hoje em dia, quase ninguém vem aqui - por causa dessas criaturas amaldiçoadas do rio.||{{N|gauward_3|||||}}|}; -{gauward_3|Izthiel, eles as chamam.||{{N|gauward_4|||||}}|}; -{gauward_4|Argh, se não fosse por essas coisas lá fora, tenho certeza que um monte de gente ia passar por aqui mais vezes.||{ - {Gostaria que eu mate essas criaturas para você?|gauward_5|||||} - }|}; -{gauward_5|Ah, claro. Eu tentei isso. Mas elas continuam voltando.||{{N|gauward_6|||||}}|}; -{gauward_6|Quer saber: traga-me as garras deles, e eu vou comprá-los por um bom preço.||{{Ok, vou voltar com algumas de suas garras.|gauward_7|||||}}|}; -{gauward_7|Bom. Por favor, faça. Eu gosto de saber que seus números sejão reduzidos, pelo menos.|{{0|nondisplay|20|}}||}; -{gauward_sell_1|Ótimo. Quantas você gostaria de vender?||{ - {Aqui está um.|gauward_sold_1||izthiel_claw|1|0|} - {Aqui estão cinco.|gauward_sold_5||izthiel_claw|5|0|} - {Aqui estão 10.|gauward_sold_10||izthiel_claw|10|0|} - {Aqui estão 20.|gauward_sold_20||izthiel_claw|20|0|} - {Não importa. Eu estarei de volta com mais garras Izthiel para vender você.|gauward_7|||||} - }|}; -{gauward_sold_1|Bom, obrigado. Aqui está um pouco de ouro para seus problemas.|{{1|gold5||}}||}; -{gauward_sold_5|Excelente, muito obrigado! Aqui está um pouco de ouro para seus problemas.|{{1|gold25||}}||}; -{gauward_sold_10|Excelente, muito obrigado! Aqui está um pouco de ouro para seus problemas.|{{1|gold50||}}||}; -{gauward_sold_20|Oh, uau, você conseguiu obter 20 dessas garras? Isso é excelente, muito obrigado! Aqui está um pouco de ouro e algum extra em poções de saúde para seus problemas.|{{1|gauward_sold_20||}}||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{thorin|||{ - {|thorin_return_1|thorin:40||||} - {|thorin_search_1|thorin:20||||} - {|thorin_1|||||} - }|}; -{thorin_1|O que é isso, um visitante? Como isso é inesperado.||{{N|thorin_2|||||}}|}; -{thorin_2|Diga-me, o que Thorin pode fazer por você?||{ - {O que você está fazendo aqui?|thorin_what_1|||||} - {Quem é você?|thorin_who_1|||||} - {Posso usar sua cama para lá para descansar?|thorin_rest_1|||||} - {Você tem alguma coisa para vender?|thorin_trade_1|||||} - }|}; -{thorin_what_1|Oh, não muito. Bem, na verdade, eu estou à espera de alguém - ou melhor, algumas pessoas.||{{N|thorin_story_1|||||}}|}; -{thorin_story_1|Veja você, eu e meus companheiros coletores estávamos investigando a natureza venenosa dos Irdegh.||{{N|thorin_story_2|||||}}|}; -{thorin_story_2|Aparentemente, eu fui o único que teve o cuidado suficiente ao manusear os nossos produtos.||{{N|thorin_story_3|||||}}|}; -{thorin_story_3|Os outros adoeceram muito rápido, e se esconderam em uma caverna para descansar. No entanto, não haviam contado com esses insetos aqui.||{{N|thorin_story_4|||||}}|}; -{thorin_story_4|Esses \'Scaradons\' as criaturas são difíceis! Eles não parecem mesmo sofrer qualquer dano quando eu atinjo-os.||{{N|thorin_story_5|||||}}|}; -{thorin_story_5|Então, é aqui onde estou agora. As pessoas que nos enviaram para investigar nos disseram para montar um acampamento se encontrarmos problemas, e elas viriam para nos ajudar.||{{N|thorin_story_6|||||}}|}; -{thorin_story_6|Até agora, você é o primeiro visitante aqui, já faz um bom tempo.||{ - {Você não parece chateado que seus amigos tenham morrido.|thorin_story_6_1|||||} - {Alguma coisa que eu possa fazer para ajudá-lo com isso?|thorin_story_7|||||} - {Azar. Eu aposto que a ajuda vai chegar a qualquer momento. Tchau.|X|||||} - }|}; -{thorin_story_6_1|Não, é apenas negócios. Apenas negócios.||{ - {Alguma coisa que eu possa fazer para ajudar?|thorin_story_7|||||} - {Azar. Eu aposto que seu resgate vai estar aqui a qualquer momento. Tchau.|X|||||} - }|}; -{thorin_story_7|Humm.. Sim, realmente há algo que você pode fazer por mim.||{{N|thorin_story_8|||||}}|}; -{thorin_story_8|Os outros aos quais eu estava viajando, eles não entraram tão profundamente na caverna, mas foram atacados por esses insetos um pouco mais perto da entrada.||{{N|thorin_story_9|||||}}|}; -{thorin_story_9|Considerando como eles morreram, eu estaria muito interessado em ver que efeitos os Irdegh e os Scaradons tiveram sobre eles.||{{N|thorin_story_10|||||}}|}; -{thorin_story_10|Se você pudesse me encontrar seus restos mortais, eu ficaria muito grato. Talvez eu pudesse continuar minha investigação com base em seus restos mortais. Humm, sim, isso seria ótimo.||{ - {Claro, encontrarei seus restos mortais. Parece fácil o suficiente, eu vou fazê-lo.|thorin_story_11|||||} - {Eu adoro encontrar coisas mortas. Eu vou fazer isso.|thorin_story_11|||||} - {Hum, isso soa um pouco obscuro para mim. Eu não tenho certeza se eu deveria fazer isso.|thorin_decline|||||} - }|}; -{thorin_story_11|Excelente. Me traga de volta os restos mortais de todos os seis. Eu iria procurar pessoalmente, se esses insetos não estivessem por lá.|{{0|thorin|20|}}||}; -{thorin_who_1|Ah, eu não me apresentei, minhas desculpas. Sou Thorin.||{{O que você está fazendo aqui?|thorin_what_1|||||}}|}; -{thorin_decline|Pena. Bom dia para você, então.|||}; -{thorin_search_1|Bem-vindo de volta. Você encontrou todos os seis?||{ - {Não, ainda não. Eu ainda estou procurando.|thorin_search_2|||||} - {Sim, isso é o que eu encontrei.|thorin_search_c_1||thorin_bone|6|0|} - {Posso usar sua cama para lá para descansar?|thorin_rest_1|||||} - {Você tem alguma coisa para vender?|thorin_trade_1|||||} - }|}; -{thorin_search_2|Ok então. Por favor, retorne depois de ter encontrado todos eles. Eu iria procurar pessoalmente, se esses insetos não estivessem por lá.|||}; -{thorin_rest_1|||{ - {|thorin_rest_y|thorin:40||||} - {|thorin_rest_n|||||} - }|}; -{thorin_rest_y|Por favor, vá em frente. Você pode descansar aqui tanto quanto quiser.|||}; -{thorin_rest_n|A minha cama? Não, isso é meu. Talvez o deixe usar se você me ajudar com uma tarefa pequena.||{{O que é isso?|thorin_story_1|||||}}|}; -{thorin_trade_1|||{ - {|thorin_trade_y|thorin:40||||} - {|thorin_trade_n|||||} - }|}; -{thorin_trade_y|Ah, sim. O lado positivo desta caverna é que literalmente está rastejando com cadáveres desses insetos Scaradon.||{{N|thorin_trade_y2|||||}}|}; -{thorin_trade_y2|Por acaso, aconteceu que, com a mistura certa, eles podem ser transformados em uma substância de cura.||{{Vamos ver o que você tem que trocar.|S|||||}}|}; -{thorin_trade_n|Não. Eu poderia ter algo para trocar, se você me ajudasse com uma tarefa pequena.||{{O que é isso?|thorin_story_1|||||}}|}; -{thorin_search_c_1|Obrigado. Eu teria ido me se esses insetos não estivessem lá. Isso ficaria muito mais fácil.|{{0|thorin|40|}}|{{N|thorin_search_c_2|||||}}|}; -{thorin_search_c_2|Como um símbolo de meu apreço, você está convidado a usar a cama para descansar. Além disso, se você estiver interessado em cura, eu poderia ser capaz de lhe fornecer alguma ajuda.||{ - {Eu acho que deve usar a cama para descansar agora. Obrigado.|X|||||} - {Você tem alguma coisa para o negociar?|thorin_trade_1|||||} - {Você é bem-vindo. Tchau.|X|||||} - }|}; -{thorin_return_1|Retornou, meu amigo. O que Thorin pode fazer por você?||{ - {Posso usar sua cama para descansar?|thorin_rest_1|||||} - {Você tem alguma coisa para vender?|thorin_trade_1|||||} - }|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{mountaincave_sleep|Thorin grita com você: Ei, saia daí! Essa é a minha cama.|||}; -{remains_mcave_1|||{{|remains_mcave_a|thorin:31||||}{|remains_mcave_1b|thorin:20||||}{|remains_mcave_c|||||}}|}; -{remains_mcave_2|||{{|remains_mcave_a|thorin:32||||}{|remains_mcave_2b|thorin:20||||}{|remains_mcave_c|||||}}|}; -{remains_mcave_3|||{{|remains_mcave_a|thorin:33||||}{|remains_mcave_3b|thorin:20||||}{|remains_mcave_c|||||}}|}; -{remains_mcave_4|||{{|remains_mcave_a|thorin:34||||}{|remains_mcave_4b|thorin:20||||}{|remains_mcave_c|||||}}|}; -{remains_mcave_5|||{{|remains_mcave_a|thorin:35||||}{|remains_mcave_5b|thorin:20||||}{|remains_mcave_c|||||}}|}; -{remains_mcave_6|||{{|remains_mcave_a|thorin:36||||}{|remains_mcave_6b|thorin:20||||}{|remains_mcave_c|||||}}|}; -{remains_mcave_1b|Você vé um monte de restos de esqueletos. Este deve ser um dos ex-companheiros de Thorin.||{{Deixe-o sozinho.|X|||||}{Peguei um dos ossos.|remains_mcave_1d|||||}}|}; -{remains_mcave_2b|Você vê um monte de restos de esqueletos. Este deve ser um dos ex-companheiros de Thorin.||{{Deixe-o sozinho.|X|||||}{Peguei um dos ossos.|remains_mcave_2d|||||}}|}; -{remains_mcave_3b|Você vê um monte de restos de esqueletos. Este deve ser um dos ex-companheiros de Thorin.||{{Deixe-o sozinho.|X|||||}{Peguei um dos ossos.|remains_mcave_3d|||||}}|}; -{remains_mcave_4b|Você vê um monte de restos de esqueletos. Este deve ser um dos ex-companheiros de Thorin.||{{Deixe-o sozinho.|X|||||}{Peguei um dos ossos.|remains_mcave_4d|||||}}|}; -{remains_mcave_5b|Você vê um monte de restos de esqueletos. Este deve ser um dos ex-companheiros de Thorin.||{{Deixe-o sozinho.|X|||||}{Peguei um dos ossos.|remains_mcave_5d|||||}}|}; -{remains_mcave_6b|Você vê um monte de restos de esqueletos. Este deve ser um dos ex-companheiros de Thorin.||{{Deixe-o sozinho.|X|||||}{Peguei um dos ossos.|remains_mcave_6d|||||}}|}; -{remains_mcave_1d|Você pega um dos ossos. Parece ter sido severamente danificado por algo corrosivo.|{{0|thorin|31|}{1|thorin_bone||}}||}; -{remains_mcave_2d|Você pega um dos ossos. Parece ter sido severamente danificado por algo corrosivo.|{{0|thorin|32|}{1|thorin_bone||}}||}; -{remains_mcave_3d|Você pega um dos ossos. Parece ter sido severamente danificado por algo corrosivo.|{{0|thorin|33|}{1|thorin_bone||}}||}; -{remains_mcave_4d|Você pega um dos ossos. Parece ter sido severamente danificado por algo corrosivo.|{{0|thorin|34|}{1|thorin_bone||}}||}; -{remains_mcave_5d|Você pega um dos ossos. Parece ter sido severamente danificado por algo corrosivo.|{{0|thorin|35|}{1|thorin_bone||}}||}; -{remains_mcave_6d|Você pega um dos ossos. Parece ter sido severamente danificado por algo corrosivo.|{{0|thorin|36|}{1|thorin_bone||}}||}; -{remains_mcave_a|Você vê um monte de restos de esqueletos, de onde você removeu algumas peças antes.|||}; -{remains_mcave_c|Você vê um monte de restos de esqueletos.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{algangror|||{ - {|algangror_fight_6|remgard2:35||||} - {|algangror_fight_3|remgard2:30||||} - {|algangror_return_d1|fiveidols:100||||} - {|algangror_cmp5|fiveidols:70||||} - {|algangror_cmp1|fiveidols:61||||} - {|algangror_story1|fiveidols:51||||} - {|algangror_task2_ret1|fiveidols:37||||} - {|algangror_task2_7|fiveidols:20||||} - {|algangror_return_d1|algangror:101||||} - {|algangror_return_d1|algangror:100||||} - {|algangror_return_c1|algangror:21||||} - {|algangror_return_3|algangror:20||||} - {|algangror_return_1|algangror:15||||} - {|algangror_1|||||} - }|}; -{algangror_1|Oh, uma criança. há há, que legal. Diga-me, o que o traz aqui?|{{0|algangror|10|}}|{ - {Eu estou procurando meu irmão.|algangror_2a|||||} - {Eu só entrei aqui para ver se há alguma grana que eu pudesse obter aqui.|algangror_2b|||||} - {Eu sou um aventureiro, procurando ajudar quem precisa de ajuda.|algangror_2c|||||} - {Eu prefiro não dizer.|algangror_2d|||||} - {Estou enviado por Jhaeld para acabar com o que quer que você esteja fazendo com o povo de Remgard.|algangror_fight_1|remgard2:21||||} - }|}; -{algangror_2a|Fugindo, não é? He he.||{{N|algangror_3|||||}}|}; -{algangror_2b|Ah, claro, você acha que pode simplesmente pegar qualquer coisa e reivindicaro como seu?||{{N|algangror_3|||||}}|}; -{algangror_2c|Quão nobre. Talvez você possa ser de utilidade para mim.||{{N|algangror_3|||||}}|}; -{algangror_2d|Inteligente. Eu gosto disso.||{{N|algangror_3|||||}}|}; -{algangror_3|Diga-me, agora que você entrou nesta casa, você estaria disposto a me ajudar com um pequeno... problema?||{ - {Claro, qual é o problema?|algangror_4|||||} - {Talvez, isso depende de qual seja o problema.|algangror_4|||||} - {Talvez, isso depende de que tipo de recompensa que você esteja falando.|algangror_3c|||||} - {De jeito nenhum. Você está agindo maneira muito assustadora para mim.|algangror_decline_1|||||} - }|}; -{algangror_3c|Recompensa? Não, não, eu não tenho nada para lhe dar, infelizmente.||{ - {Eu acho que você também não irá obter quaisquer ajuda.|X|||||} - {Certo, qual é o problema que você quer ajuda?|algangror_4|||||} - {Algo parece estar errado aqui. É melhor eu não me envolver nisso.|algangror_decline_1|||||} - }|}; -{algangror_4|Veja você, eu tenho esse problema com ... hã ... vermes.||{{N|algangror_5|||||}}|}; -{algangror_5|Sempre se esgueirando, sempre tentando causar algum dano.||{{N|algangror_6|||||}}|}; -{algangror_6|Felizmente, eu consegui capturar alguns deles, e tranquei-os no meu porão.||{{N|algangror_7|||||}}|}; -{algangror_7|Agora, eu não posso lidar com eles me por causa de certas... questões.||{{N|algangror_8|||||}}|}; -{algangror_8|Isso é onde você vem dentro Você estaria disposto a ... hã ... lidar com esses roedores para mim?|{{0|algangror|11|}}|{ - {Claro, alguns roedores, eu posso lidar com isso.|algangror_9|||||} - {Não tem problema, eu vou estar de volta depois que eu os exterminar.|algangror_9|||||} - {Alguma coisa parece errada por aqui. É melhor eu não me envolver nisso.|algangror_decline_1|||||} - }|}; -{algangror_decline_1|Ah sim. Afina de contas, você é apenas uma criança e eu posso entender que tal tarefa seria demais para você. He He.|{{0|algangror|100|}}||}; -{algangror_9|Explêndido. Volte para mim com alguma prova de que eles foram exterminados.|{{0|algangror|15|}}||}; -{algangror_return_1|Você voltou. Você lidou com todos aqueles .. hã .. roedores no meu porão?||{ - {Sim, eles estão todos mortos.|algangror_return_2||algangror_rat|6|0|} - {Eu ainda estou trabalhando nisso. Tchau.|X|||||} - {Não vou fazer a sua tarefa estúpida, não conte comigo.|algangror_decline_1|||||} - {Eu decidi não ajudá-la com seus roedores.|algangror_decline_1|||||} - {Fui enviado por Jhaeld para acabar com tudo o que você fez para o povo de Remgard.|algangror_fight_1|remgard2:21||||} - }|}; -{algangror_return_2|He He. Aposto que você mostrou o que podia fazer a eles. Excelente. Obrigado por ... hã ... me ajudar.|{{0|algangror|20|}}|{{N|algangror_return_3|||||}}|}; -{algangror_return_3|Esses roedores realmente me incomodavam. Ainda bem que eu consegui pegar alguns deles. He He.||{{N|algangror_return_4|||||}}|}; -{algangror_return_4|Agora, não há mais nada que eu queira falar contigo. Você já foi para a cidade de Remgard em suas viagens?||{ - {Sim, eu estive lá.|algangror_remgard_2|||||} - {Não, onde é isso?|algangror_remgard_1|||||} - }|}; -{algangror_return_c1|Você voltou. Obrigado por me ajudar com a meu ... hã ... problema com roedores anteriormente.||{{N|algangror_return_c2|||||}}|}; -{algangror_return_c2|||{ - {|algangror_told_1|remgard2:10||||} - {|algangror_return_c4|remgard:75||||} - {|algangror_return_c3|||||} - }|}; -{algangror_return_c3|Espero que vá dar uma lição nesses *outros* ratos.|||}; -{algangror_return_c4|Diga-me: você parece ser uma pessoa de recursos. Você estaria interessado em ajudar-me com outra .. tarefa?||{ - {Depende da tarefa.|algangror_task2_1|||||} - {Claro.|algangror_task2_1|||||} - {Não agora.|algangror_task2_d|||||} - }|}; -{algangror_remgard_1|Ah, não é longe daqui. Não importa realmente.||{{N|algangror_remgard_2|||||}}|}; -{algangror_remgard_2|Veja você, eu morava lá. Para encurtar a história, houveram certos ... hã ... mal-entendidos.||{{N|algangror_remgard_3|||||}}|}; -{algangror_remgard_3|Nesses dias, eu acho que eles estão me procurando, por algum motivo. Pessoalmente, não consigo descobrir o motivo. Mas eu acredito que eles estejão.||{{N|algangror_remgard_4|||||}}|}; -{algangror_remgard_4|Por causa de nosso anterior ... mal-entendido, eu acho que é melhor não descobrirem que eu estou aqui.||{{N|algangror_remgard_5|||||}}|}; -{algangror_remgard_5|Portanto, peço-lhe para não revelar meu paradeiro a eles.||{{Certo.|algangror_remgard_6|||||}{(Mentira) Certo.|algangror_remgard_6|||||}}|}; -{algangror_remgard_6|Obrigado. Sob nenhuma circunstância você deve dizer a eles onde estou. Eles provavelmente irão tentar persuadi-lo a revelar a minha localização.||{{Certo.|algangror_remgard_7|||||}}|}; -{algangror_remgard_7|Sob nenhuma circunstância.|{{0|algangror|21|}}||}; -{algangror_return_d1|Oh, é você de novo.||{{N|algangror_return_d2|||||}}|}; -{algangror_return_d2|Você provavelmente deve sair antes de tropeçar em algo que possa ... hã ... quebrar. He he.||{ - {Fui enviado por Jhaeld para acabar com o que é que você fez para o povo de Remgard.|algangror_fight_1|remgard2:21||||} - {Cuidado com a língua, bruxa.|X|||||} - {Você está certo, é melhor eu ir embora.|X|||||} - }|}; -{algangror_fight_1|||{ - {|algangror_fight_2|algangror:100||||} - {|algangror_fight_2|algangror:101||||} - {|algangror_fight_1a|algangror:10||||} - {|algangror_fight_2|||||} - }|}; -{algangror_fight_1a||{{0|algangror|101|}}|{{|algangror_fight_2|||||}}|}; -{algangror_fight_2|||{{|algangror_fight_2a|fiveidols:10||||}{|algangror_fight_3|||||}}|}; -{algangror_fight_2a||{{0|fiveidols|100|}}|{{|algangror_fight_3|||||}}|}; -{algangror_fight_3|Jhaeld, o tolo. Ele se esconde por trás de seus guardas e muros de pedra dele. Ele é homem tão lamentável. Sim, eu fiz essas pessoas desaparecem, mas valeu a pena. Eu terei minha vingança!|{{0|remgard2|30|}}|{{N|algangror_fight_4|||||}}|}; -{algangror_fight_4|E você, o que você está tentando realizar, executando suas tarefas? Que sorte que você entrou na minha casa. He he.||{{N|algangror_fight_5|||||}}|}; -{algangror_fight_5|Você realmente acha que pode derrotar *a mim*? Ha ha, isso vai ser divertido!||{{Lute!|algangror_fight_6|||||}}|}; -{algangror_fight_6||{{0|remgard2|35|}}|{{|F|||||}}|}; -{algangror_told_1|||{{|algangror_told_1a|algangror:10||||}{|algangror_told_2|||||}}|}; -{algangror_told_1a||{{0|algangror|101|}}|{{|algangror_told_2|||||}}|}; -{algangror_told_2|Diga-me, apesar do meu pedido anterior para que você mantenha a minha localização um segredo do povo de Remgard, eu tenho essa sensação de que essa confiança foi quebrada. Por favor, me diga que não é assim.||{ - {Sim, eu disse Jhaeld onde você está.|algangror_told_3|||||} - {(Mentira) Não, eu não disse a ninguém.|algangror_told_3|||||} - }|}; -{algangror_told_3|Eu posso sentir isso em mim.||{{N|algangror_return_d2|||||}}|}; -{algangror_task2_d|Muito bem, volte para mim assim que estiver pronto.|||}; -{algangror_task2_1|Agora, eu não posso te dizer o que tarefa eu tenho em mente antes de eu esteja confiante de que você vai realmente me ajudar. Verdade seja dita: você já mostrou algum nível de confiança com minha necessidade de discrição.||{{N|algangror_task2_2|||||}}|}; -{algangror_task2_2|Também não posso descrever minhas razões por trás dessa tarefa antes de terminar com ela.||{{N|algangror_task2_3|||||}}|}; -{algangror_task2_3|Garanto-lhe que você vai ser suficientemente recompensado por ajudar-me. Na verdade, você vê este colar aqui? Ele tem alguns poderes peculiares que muitas pessoas procuram.||{{N|algangror_task2_4|||||}}|}; -{algangror_task2_4|O mundo ao seu redor parece mover-se um pouco mais lento quando você o usa.|{{0|fiveidols|10|}}|{ - {OK. Vou ajudá-la em sua tarefa.|algangror_task2_6|||||} - {Ok, eu vou ajudar. Estou sempre interessado em novos itens.|algangror_task2_6|||||} - {Tudo depende do que você quer que eu faça.|algangror_task2_5|||||} - {Alguma coisa parece errada aqui. Eu não acho que eu deveria ajudá-la.|algangror_task2_n|||||} - }|}; -{algangror_task2_5|Como eu disse, eu não posso te dizer qual a tarefa que eu tenho em mente, ou minhas razões até que seja completada. Eu preciso de sua total... cooperação com elaa.||{ - {OK. Eu vou concordar em ajudá-la com sua tarefa.|algangror_task2_6|||||} - {Ok, eu vou ajudar. Estou sempre interessado em novos itens.|algangror_task2_6|||||} - {Não. Eu não vou ajudá-la a menos que você me diga o que você quer que eu faça.|algangror_task2_n|||||} - {Não, eu nunca iria ajudar alguém como você.|algangror_task2_n|||||} - }|}; -{algangror_task2_n|Ah sim. Apesar de tudo, você é apenas uma criança e eu posso entender que tudo isso deve ser demais para você. He He.|{{0|algangror|100|}}|{{N|algangror_task2_n2|||||}}|}; -{algangror_task2_n2|Posso pelo menos pedir que você não divulgar onde estou para o povo de Remgard?||{ - {Vou manter o seu segredo de localização. Tchau.|X|||||} - {Vamos ver. Tchau.|X|||||} - {Não me diga o que fazer! Tchau.|X|||||} - }|}; -{algangror_task2_6|Bom, muito bom.|{{0|fiveidols|20|}}|{{N|algangror_task2_7|||||}}|}; -{algangror_task2_7|Você não deve dizer a ninguém sobre essa tarefa a qual eu estou a ponto de dar a você, e você deve ser o mais discreto possível.||{{N|algangror_task2_8|||||}}|}; -{algangror_task2_8|Eu tenho em minha posse cinco ídolos. Cinco ídolos com qualidades muito... especiais. O que eu quero que você faça é... colocar esses ídolos perto de várias pessoas na cidade de Remgard.||{{N|algangror_task2_9|||||}}|}; -{algangror_task2_9|Você vai colocá-los pelas camas de cinco pessoas em particular, e você deve escondê-las bem para que a pessoa não encontre-os.||{{N|algangror_task2_10|||||}}|}; -{algangror_task2_10|Lembre-se, é de extrema importância que você seja o mais discreto possível sobre isso. Os ídolos não deve ser encontrados após sua colocação, e ninguém deve perceber o que você fez.|{{0|fiveidols|30|}}|{{Vá em frente.|algangror_task2_11|||||}}|}; -{algangror_task2_11|Então, a primeira pessoa que eu quero que você visite é Jhaeld. Ouvi dizer que ele passa a maior parte de seu tempo na taberna Remgard estes dias.|{{0|fiveidols|31|}}|{{N|algangror_task2_12|||||}}|}; -{algangror_task2_12|Em segundo lugar, eu quero que você visite um dos agricultores, denominado Larni. Ele vive com sua esposa Caeda aqui em Remgard em uma das cabanas do norte.|{{0|fiveidols|32|}}|{{N|algangror_task2_13|||||}}|}; -{algangror_task2_13|A terceira pessoa é o armador Arnal, que vive ao noroeste do Remgard.|{{0|fiveidols|33|}}|{{N|algangror_task2_14|||||}}|}; -{algangror_task2_14|A quarta é Emerei, que provavelmente pode ser encontrada em sua casa a sudeste de Remgard.|{{0|fiveidols|34|}}|{{N|algangror_task2_15|||||}}|}; -{algangror_task2_15|A quinta é o agricultor Carthe. Carthe vive na costa leste de Remgard, perto da taverna.|{{0|fiveidols|35|}}|{{N|algangror_task2_16|||||}}|}; -{algangror_task2_16|Depois de ter colocado estes cinco ídolos pelas camas dessas cinco pessoas, voltará para mim o mais rápido possível.||{{N|algangror_task2_17|||||}}|}; -{algangror_task2_17|Mais uma vez - eu devo insistir bastante - você não deve contar a ninguém sobre esses ídolos, e você não deve ser visto enquanto colocá-los.||{{Eu entendo.|algangror_task2_18s|||||}}|}; -{algangror_task2_18s|||{ - {|algangror_task2_19|fiveidols:37||||} - {|algangror_task2_18|||||} - }|}; -{algangror_task2_18|Aqui estão os ídolos.|{{1|fiveidols||}{0|fiveidols|37|}}|{ - {Eu estarei de volta em breve.|algangror_task2_19|||||} - {Isso deve ser fácil.|algangror_task2_19|||||} - }|}; -{algangror_task2_19|Agora vá, e por favor pressa, talvez não tenhamos muito tempo.|||}; -{algangror_task2_ret1|Diga-me, está o andamento da tarefa de colocar os ídolos?||{ - {Você pode repetir o que você queria que eu fizesse?|algangror_task2_8|||||} - {Eu ainda estou tentando encontrar todos.|algangror_task2_ret2|||||} - {Está feito.|algangror_task2_done1|fiveidols:50||||} - {Não vou fazer a sua tarefa estúpida.|algangror_task2_n|||||} - {Não vou ajudá-la com sua tarefa.|algangror_task2_n|||||} - }|}; -{algangror_task2_ret2|Por favor, pressa, talvez não tenhamos muito tempo.|||}; -{algangror_task2_done1|Excelente. Talvez, agora eu posso descansar finalmente. Muito obrigado por me ajudar.||{{N|algangror_task2_done2|||||}}|}; -{algangror_task2_done2|Será que ninguém viu onde você colocou os ídolos?||{{Não, eu escondi os ídolos como você instruiu.|algangror_task2_done3|||||}}|}; -{algangror_task2_done3|Bom. Obrigado novamente por me ajudar.|{{0|fiveidols|51|}}|{{N|algangror_story|||||}}|}; -{algangror_story|Deixe-me contar minha história.||{ - {Por favor, faça.|algangror_story1|||||} - {Podemos pular para o final?|algangror_cmp1|||||} - }|}; -{algangror_story1|Veja você, eu morava na cidade de Remgard. Eram bons tempos, e a cidade prosperou.||{{N|algangror_story2|||||}}|}; -{algangror_story2|Nossos grãos cresciam bem, e algumas pessoas fizeram acordos comerciais muito afortunados com outras cidades, tornando a vida para a maioria de nós que vivem em Remgard muito fácil.||{{N|algangror_story3|||||}}|}; -{algangror_story3|Eu até vendi alguns dos cestos que eu costumava fazer a um comerciante rico, que nos visitou a partir de Nor City.||{{N|algangror_story4|||||}}|}; -{algangror_story4|No entanto, mesmo a vida fácil fica chata depois de um tempo. Eu acredito que é em nossa natureza para lutar por coisas novas e melhores, para libertar-nos do tédio do dia-a-dia.||{{N|algangror_story5|||||}}|}; -{algangror_story5|Eu queria aprender mais coisas que eu nada sabia, e queria explorar coisas que eu só tinha lido nos livros de antes.||{{N|algangror_story6|||||}}|}; -{algangror_story6|Então eu fui para Nor City, e visitei muitas... pessoas interessantes e... cantos sombrios.||{{N|algangror_story7|||||}}|}; -{algangror_story7|Naturalmente, eu estava fascinada com o conhecimento que adquiri com a experiência e com o que eu aprendi por lá.||{{E dai?|algangror_story8|||||}}|}; -{algangror_story8|Quando cheguei em casa, eu queria continuar praticando o que eu tinha observado e aprendido enquanto estava em Nor City.||{{N|algangror_story9|||||}}|}; -{algangror_story9|Alguns poderiam dizer que eu fiquei obcecada para aprender mais. Eu acho que os outros habitantes de Remgard não .. partilhavam do meu entusiasmo. Alguns deles ainda questionavam o fato de que eu queria aprender mais.||{{N|algangror_story10|||||}}|}; -{algangror_story10|Então eu disse a mim mesma que os outros não me atrapalhar na minha curiosidade para aprimorar-me.||{{N|algangror_story11|||||}}|}; -{algangror_story11|Esses livros que comprei na residência de Blackmarrow em Nor City - Eu devo ter lido todos eles talvez cinco vezes ou mais. Isso era algo completamente novo para mim, e ao mesmo tempo muito emocionante.||{{Por favor, continue.|algangror_story12|||||}}|}; -{algangror_story12|Por alguma razão, os outros em Remgard começaram me dar olhares estranhos, e eu podia ouvir os sussurros atrás das costas.||{{N|algangror_story13|||||}}|}; -{algangror_story13|Eu estive inclusive impedida de entrar na taberna. \'As pessoas vêm aqui faz um bom tempo, e nós não queremos pessoas como você aqui arruinando-nos\' - eles disseram. Que tolos são.||{{N|algangror_story14|||||}}|}; -{algangror_story14|Eu ouvi uma mulher sussurrando para seu filho, \'Não olhe para ela, ela vai transformá-lo em pedra!\'. Outros apenas se viravam para o outro lado quando me viam.||{{N|algangror_story15|||||}}|}; -{algangror_story15|Que tolos são.||{{Então, o que aconteceu?|algangror_story16|||||}}|}; -{algangror_story16|Um dia, Jhaeld apareceu na minha porta com um grupo de guardas.||{{N|algangror_story17|||||}}|}; -{algangror_story17|O povo de Remgard tinha decidido que eu não podia ficar mais lá, disse ele. As coisas que eu fazia estavam causando mal a outras pessoas, disse ele.||{{N|algangror_story18|||||}}|}; -{algangror_story18|O que eu tinha feito, eu perguntei a mim mesmo? Eu nunca tinha feito mal a ninguém, muito menos afetado a ninguém com meus... experimentos. Não tenho o direito de fazer o que eu desejo?||{{N|algangror_story19|||||}}|}; -{algangror_story19|Eu tinha pouca chance de argumentar, no entanto. Os guardas me tomaram, pondo-me para fora da cidade. Eles nem sequer me deixaram pegar minhas coisas. Todos os meus livros, os meus apontamentos e todos os meus resultados - foram-se. Eu perdi tudo.|{{0|fiveidols|60|}}|{{E agora?|algangror_story20|||||}}|}; -{algangror_story20|Tudo isso aconteceu diversos trimestres atrás. Eu sabia que tinha que vingar-me pelo que fizeram para mim.||{{N|algangror_story21|||||}}|}; -{algangror_story21|Ah, como eu desprezo a todos eles. As pessoas que me olhavam enviesadas, as pessoas que sussurravam nas minhas costas, e, acima de tudo, o tolo Jhaeld.||{{N|algangror_story22|||||}}|}; -{algangror_story22|Então, eu decidi estender meus... experimentos... para coisas maiores. Para as pessoas, as coisas vivas. Esta é a oportunidade perfeita para aprender ainda mais sobre o que estava nos livros.||{{N|algangror_story23|||||}}|}; -{algangror_story23|E pensar que eu poderia fazê-lo e, ao mesmo tempo, obter vingança sobre essas pessoas desprezíveis - é um excelente plano, se assim posso dizer a mim mesmo. He he.||{{Então, o que aconteceu com todas aquelas pessoas que desapareceram?|algangror_story24|||||}}|}; -{algangror_story24|Eu os atrai aqui. Uma vez que consegui prendê-los, eu coloquei uma maldição sobre eles que, em teoria, deveria ter feito somente os incapazes de falar.||{{N|algangror_story25|||||}}|}; -{algangror_story25|Talvez eu não tenha entendido tudo corretamente, a partir dos livros que li, pois em vez de torná-los incapazes de falar, todos eles foram transformados em ratazanas.||{{N|algangror_story26|||||}}|}; -{algangror_story26|A Prática torna perfeito, eu suponho. Ha ha.||{{Espere, isso significa que aquelas ratazanas que eu matei para você era...|algangror_story27|||||}}|}; -{algangror_story27|Ah, sim. Com a sua ajuda, eles agora são um problema a menos para lidar, por assim dizer. He he.||{{N|algangror_story28|||||}}|}; -{algangror_story28|Então, essa é a minha história. Obrigado por ouvir-me.|{{0|fiveidols|61|}}|{ - {Eu entendo, e estou de acordo com suas ações.|algangror_story29a|||||} - {Eu não concordo totalmente com suas ações.|algangror_story29b|||||} - {O que você fez não pode ser justificado!|algangror_story29b|||||} - }|}; -{algangror_story29a|Obrigado. É bom saber que há mais pessoas interessadas em aprender mais.||{{N|algangror_cmp1|||||}}|}; -{algangror_story29b|Eu nunca esperei que você entenda isso. Ninguém parece entender-me também. Oh, bem, você perdeu, eu acho.||{{N|algangror_cmp1|||||}}|}; -{algangror_cmp1|Então, por me ajudar com os ídolos, eu acredito que eu prometi-lhe o meu colar encantado, \'Marrowtaint\'.||{{N|algangror_cmp2|||||}}|}; -{algangror_cmp2|Use-o bem, meu amigo. Não deixe que os outros se apoderem do poder que Marrowtaint proporciona.||{{N|algangror_cmp3|||||}}|}; -{algangror_cmp3|Aqui está.|{{0|fiveidols|70|}{1|marrowtaint||}}|{ - {Isso é tudo? Um colar ruim por todo este problema que eu passei?|algangror_cmp5|||||} - {Obrigado.|algangror_cmp4|||||} - }|}; -{algangror_cmp4|Não subestime isso, meu amigo.||{{N|algangror_cmp5|||||}}|}; -{algangror_cmp5|Mais uma vez, obrigado por me ajudar. Você será sempre bem-vindo aqui, amigo.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{remgard_bridge|||{ - {|remgardb_helped_1|remgard:35||||} - {|remgardb_helped_n|remgard:31||||} - {|remgardb_helped_y|remgard:30||||} - {|remgardb_help_return|remgard:20||||} - {|remgardb_1|||||} - }|}; -{remgardb_1|Alto! Ninguém está autorizado a entrar ou sair Remgard.||{{Por que? Há algo de errado?|remgardb_2|||||}}|}; -{remgardb_2|Errado? Pode apostar que está. Várias das pessoas da cidade desapareceram, e ainda estamos conduzindo o inquérito.||{{N|remgardb_3|||||}}|}; -{remgardb_3|Estamos procurando por eles na cidade, e questionando todos em busca de pistas sobre onde eles poderiam estar.|{{0|remgard|10|}}|{ - {Por favor, continue.|remgardb_5|||||} - {Talvez eles apenas tenham decidido ir embora?|remgardb_4|||||} - }|}; -{remgardb_4|Não, eu duvido disso.||{{N|remgardb_5|||||}}|}; -{remgardb_5|Considerando que nossa cidade é cercada pelo lago Laeroth, nós, os guardas, somos capazes de manter um olhar atento sobre tudo o que acontece aqui. Nós somos capazes de manter um registro de quem vai e vem, uma vez que esta ponte é a nossa única ligação com o continente.||{{N|remgardb_6|||||}}|}; -{remgardb_6|Para o seu bem, é provavelmente mais seguro para você ficar fora da cidade até que a nossa investigação esteja completa.||{ - {Eu estou disposto a ajudá-lo com a investigação se quiser.|remgardb_help_1|||||} - {Ok, vou deixá-lo com a sua investigação.|X|||||} - {Que tal se você me permitir entrar na cidade, para que eu possa negociar. Prometo ser rápido.|remgardb_7|||||} - }|}; -{remgardb_7|Não. Como eu disse, ninguém, exceto nós, os guardas, estamos autorizados a entrar ou sair da cidade até que nossa investigação seja concluída. Eu sugiro que você saia agora.|||}; -{remgardb_help_1|Hum, sim, acho que pode ser uma boa ideia, na verdade. Considerando que você chegou até aqui, você deve ter algum conhecimento dos arredores.|{{0|remgard|15|}}|{{N|remgardb_help_2|||||}}|}; -{remgardb_help_2|Quer saber: você pode ser capaz de nos ajudar.||{{N|remgardb_help_2b|||||}}|}; -{remgardb_help_2b|Há uma casa abandonada em algum lugar a leste da aqui, em uma península na margem norte do lago Laeroth.||{{N|remgardb_help_3|||||}}|}; -{remgardb_help_3|Temos razões para acreditar que esta cabana esteja habitada por alguém, já que temos visto luzes de velas vindo de lá durante a noite através do lago. Não estamos certos, porém, pode ser apenas a luz da lua sobre a água.||{{N|remgardb_help_4|||||}}|}; -{remgardb_help_4|É aí que você entra. Talvez você possa ser capaz de nos ajudar.||{{N|remgardb_help_5|||||}}|}; -{remgardb_help_5|Devo ficar aqui e guardar a ponte, mas você pode ir lá e dar olhada dentro.||{{N|remgardb_help_6|||||}}|}; -{remgardb_help_6|Agora, devo avisá-lo - isso pode ser perigoso. Se for como suspeitamos, a pessoa na cabina pode ser... digamos... uma oradora persuasiva.||{{N|remgardb_help_7|||||}}|}; -{remgardb_help_7|Então, se você realmente quiser nos ajudar, a tarefa que lhe peço é que você apenas olhe dentro dessa cabana e identifique se há alguém lá, e se assim for quem seria.||{{N|remgardb_help_8|||||}}|}; -{remgardb_help_8|Relate-me de volta o mais rápido possível, e não fale muito com alguém esteja por lá.||{{N|remgardb_help_9s|||||}}|}; -{remgardb_help_9s|||{ - {|X|remgard:20||||} - {|remgardb_help_9|||||} - }|}; -{remgardb_help_9|Você estaria disposto a fazer essa tarefa por nós?||{ - {Claro, eu ficaria feliz em ajudar.|remgardb_help_10|||||} - {Eu vou fazer isso. Espero, no entanto, que haja alguma recompensa por isso.|remgardb_help_10|||||} - {De jeito nenhum, isso soa muito perigoso para mim.|remgardb_help_9d|||||} - {Na verdade, eu já estive lá. Há uma mulher chamada Algangror na cabana.|remgardb_helped_y|algangror:10||||} - {Na verdade, eu já estive lá, mas a cabana estava vazia.|remgardb_helped_n|algangror:10||||} - }|}; -{remgardb_help_9d|Eu não culpo você por declinar. Apesar de tudo, pode ser uma tarefa perigosa. Não custava perguntar.|||}; -{remgardb_help_10|Excelente. Relate-me ao retornar o mais rápido possível.|{{0|remgard|20|}}||}; -{remgardb_help_return|Será que você encontrou alguma coisa naquela casa abandonada?||{ - {Ainda não. Conte-me novamente o que devo fazer.|remgardb_help_2b|||||} - {Ainda não, ainda estou trabalhando nisso.|remgardb_help_10|||||} - {Há uma mulher chamada Algangror na cabana.|remgardb_helped_y|algangror:10||||} - {Sim, eu estive lá, mas a cabana estava vazia.|remgardb_helped_n|algangror:10||||} - }|}; -{remgardb_helped_y|Algangror, argh. Então é como se temia. Esta é uma notícia terrível.|{{0|remgard|30|}}|{{N|remgardb_helped_1|||||}}|}; -{remgardb_helped_1|Você deve ir ver o ancião da vila, Jhaeld, e conversar com ele sobre o que devemos fazer em seguida. Eu vou deixar você entrar Remgard para falar com ele.|{{0|remgard|35|}}|{{N|remgardb_helped_2|||||}}|}; -{remgardb_helped_2|Você provavelmente pode encontrá-lo na taberna para o sudeste, já que é onde ele passa a maior parte do seu tempo.||{{Eu vou vê-lo.|R|||||}}|}; -{remgardb_helped_n|Obrigado por checar a cabana. É um alívio saber que ela esteja vazia. Nossos receios podem não ser verdade, então, depois de tudo.|{{0|remgard|31|}}|{ - {De nada. Algo mais em que eu possa ajudá-lo?|remgardb_helped_n_2|||||} - {De nada. Agora, e sobre a recompensa?|remgardb_helped_n_3|||||} - }|}; -{remgardb_helped_n_2|Eu acho que você provou-nos ser útil. Podemos ter mais trabalho para você, se você estiver interessado.||{{N|remgardb_helped_1|||||}}|}; -{remgardb_helped_n_3|Não, não, nós não discutimos qualquer recompensa. Mas pode haver uma para você, se você está disposto a nos ajudar ainda mais.||{{N|remgardb_helped_1|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{ulirfendor|||{ - {|ulirfendor_dp_bless_6|darkprotector:40||||} - {|ulirfendor_dp_bless_6|darkprotector:41||||} - {|ulirfendor_helmet_keep3|darkprotector:51||||} - {|ulirfendor_helmet_keep2|darkprotector:50||||} - {|ulirfendor_dp_proc_16|darkprotector:35||||} - {|ulirfendor_dp_proc_3|darkprotector:31||||} - {|ulirfendor_dp_proc_1|darkprotector:30||||} - {|ulirfendor_dp_return1|darkprotector:15||||} - {|ulirfendor_cured_1|maggots:50||||} - {|ulirfendor_infected_8|toszylae:60||||} - {|ulirfendor_infected_1|toszylae:50||||} - {|ulirfendor_findparts_10|toszylae:32||||} - {|ulirfendor_findparts_6|toszylae:30||||} - {|ulirfendor_findparts_1|toszylae:15||||} - {|ulirfendor_4|toszylae:10||||} - {|ulirfendor_1|||||} - }|}; -{ulirfendor_1|Não! Fique longe! Você não deve me derrotar!||{{N|ulirfendor_2|||||}}|}; -{ulirfendor_2|Oh, espere, você não é um deles. Você .. você não é uma daquelas crias.||{ - {Relaxe, eu não vim aqui para te machucar.|ulirfendor_4|||||} - {O que está havendo aqui?|ulirfendor_4|||||} - {Quem é você?|ulirfendor_4|||||} - }|}; -{ulirfendor_4|Oh, há quanto tempo eu estive aqui? Eu não me lembro.||{{N|ulirfendor_5|||||}}|}; -{ulirfendor_5|Não importa. Devo terminar meu trabalho aqui. Você vê este santuário aqui?||{{N|ulirfendor_5_1|||||}}|}; -{ulirfendor_5_1|Se meu entendimento está correto, este santuário é um remanescente de Kazaul.||{{N|ulirfendor_6|||||}}|}; -{ulirfendor_6|Os escritos nele quase desapareceram, mas eu consegui ler algumas partes dele. Ele fala em uma língua antiga de Kazaul, mas nem todas as partes estão claras para mim.||{{N|ulirfendor_7|||||}}|}; -{ulirfendor_7|Estou certo de que este santuário é parte da causa do porque essas... essas... coisas... que se escondem nesta caverna. Eu farei qualquer coisa ao meu alcance para derrotar qualquer mal que vem dele.||{ - {O que são essas criaturas?|ulirfendor_8|||||} - {Como é que essas criaturas não o atacam?|ulirfendor_10|||||} - {O que você traduziu até agora?|ulirfendor_12|||||} - }|}; -{ulirfendor_8|Ah, os Allaceph. Eu não tinha visto nenhum faz muito tempo... até que entrei nesta caverna. Eles remanescentes dos guardiães do Kazaul.||{{N|ulirfendor_9|||||}}|}; -{ulirfendor_9|Você já percebeu como eles parecem alimentar-se quem tenta combatê-los? Coisas amaldiçoadas, quase conseguiram uma parte de mim, bem que tentaram.||{ - {Como é que essas criaturas o atacam?|ulirfendor_10|||||} - {O que você já traduziu do santuário até agora?|ulirfendor_12|||||} - }|}; -{ulirfendor_10|Eu coloquei uma bênção da Sombra sobre esta pequena ilha aqui, para que eu possa trabalhar sem interrupções. Estranhamente, parece ser muito eficaz sobre eles.||{{N|ulirfendor_11|||||}}|}; -{ulirfendor_11|Eles parecem ser muito cautelosos com isso. Até agora, nem um sequer ousou se aproximar de mim. Mesmo aqueles lagartos traquinas estão mantendo sua distância.||{ - {O que são essas criaturas?|ulirfendor_8|||||} - {O que você já traduzil do santuário até agora?|ulirfendor_12|||||} - }|}; -{ulirfendor_12|Fala de Kazaul e da miséria que se aproxima de alguém que se opõe à vontade de Kazaul.||{{N|ulirfendor_13|||||}}|}; -{ulirfendor_13|Algo sobre re-nascimento de dentro dos seguidores. Não tenho certeza de que eu traduzi essa parte corretamente, mas eu acho que isso é o que diz. Definitivamente algo sobre re-nascimento ou nascimento.||{{N|ulirfendor_14|||||}}|}; -{ulirfendor_14|Ele também fala de alguém ou alguma... coisa chamada \'Protetor Negro\'. A maior parte do texto está faltando no santuário no entanto.||{{N|ulirfendor_15|||||}}|}; -{ulirfendor_15|O que quer que isso signifique, parece importante. Também é óbvio que o \'Protetor Negro\' traz poder para Kazaul e miséria a qualquer oposição.||{{N|ulirfendor_16|||||}}|}; -{ulirfendor_16|Independentemente disso, ele deve ser parado, o que quer que isso signifique. Talvez isso se refira a algo mais profundo dentro dessa caverna. Eu não me aventurei mais na caverna ao leste, pois eu não poderia ter passado aquelas... coisas.|{{0|toszylae|10|}}|{{N|ulirfendor_16_1|||||}}|}; -{ulirfendor_16_1|||{ - {|ulirfendor_19|toszylae:15||||} - {|ulirfendor_17|||||} - }|}; -{ulirfendor_17|Perdoe-me, eu devo continuar traduzindo as poucas partes legíveis que restam nesse santuário.||{ - {Gostaria de alguma ajuda com isso?|ulirfendor_18|||||} - {Bem, boa sorte com isso.|ulirfendor_bye|||||} - }|}; -{ulirfendor_bye|Obrigado. Tchau.|||}; -{ulirfendor_18|Hm, talvez. Eu preciso descobrir o que esta última parte deve ser. Humm ..||{{N|ulirfendor_19|||||}}|}; -{ulirfendor_19|A última parte desta peça foi corroída da rocha. Ela começa com \'Kulauil hamar Urum Kazaul\'te\'. Mas, o que vem depois?|{{0|toszylae|11|}}|{{N|ulirfendor_19_1|||||}}|}; -{ulirfendor_19_1|||{ - {|ulirfendor_21|toszylae:15||||} - {|ulirfendor_19_2|||||} - }|}; -{ulirfendor_19_2|Argh, se esta caverna não fosse tão úmida, eu aposto que o resto do texto ainda estaria lá.|toszylae:15|{ - {Eu poderia ir procurar outras pistas sobre as partes que faltam, se você quiser.|ulirfendor_20|||||} - {Boa sorte com isso, adeus.|ulirfendor_bye|||||} - }|}; -{ulirfendor_20|Claro, você pode fazer isso.||{{N|ulirfendor_21|||||}}|}; -{ulirfendor_21|Eu olhei bem para todos os indícios, na parte oeste da caverna, mas não encontrei nenhum. Eu não entrei nas partes orientais da caverna, no entanto.||{{N|ulirfendor_22|||||}}|}; -{ulirfendor_22|Além disso, devo avisá-lo que eu acredito que o santuário fala de uma poderosa criatura em algum lugar nesta caverna. Talvez se você encontrar aquela criatura, isso irá fornecer alguma pista sobre o que as está faltando. No entanto, você precisa ser cuidadoso.|{{0|toszylae|15|}}|{ - {Eu vou olhar na parte oriental da caverna então.|ulirfendor_bye|||||} - }|}; -{ulirfendor_findparts_1|Olá novamente. Você encontrou nenhuma pista sobre o que está faltando?||{ - {Não, eu não encontrei nenhuma pista ainda.|ulirfendor_findparts_2|||||} - {Você pode me dizer novamente o que você já traduziu do santuário?|ulirfendor_5_1|||||} - {Sim, eu encontrei uma criatura no leste, que falava aquilo que você me disse.|ulirfendor_findparts_3|toszylae:20||||} - }|}; -{ulirfendor_findparts_2|Se você realmente quer ajudar, por favor, vá procurar por outras pistas.||{{N|ulirfendor_21|||||}}|}; -{ulirfendor_findparts_3|Ah bom, diga-me, você encontrou mais pistas?||{{Sim, a criatura também falou as palavras \'Kazaul Hamat urul\', talvez isso seja parte do que faltava?|ulirfendor_findparts_4|||||}}|}; -{ulirfendor_findparts_4|Hmm. .. \'Hamat urul\'.. Sim, claro! Isso é o que diz nas partes corroídas do santuário!||{{N|ulirfendor_findparts_5|||||}}|}; -{ulirfendor_findparts_5|Excelente trabalho meu amigo! Agora eu só preciso traduzi-lo.|{{0|toszylae|30|}}|{{N|ulirfendor_findparts_6|||||}}|}; -{ulirfendor_findparts_6|Gostaria de saber o que a frase inteira significa. \'Kulauil hamar Urum Kazaul\'te. Kazaul Hamat urul\' - essa é a parte que você ouviu falar da criatura.||{{N|ulirfendor_findparts_7|||||}}|}; -{ulirfendor_findparts_7|A próxima parte é \'Klatam ur turum Kazaul\'te\', e eu não sei o que isso significa. Algo sobre entregar algum item?||{{N|ulirfendor_findparts_8|||||}}|}; -{ulirfendor_findparts_8|Talvez a criatura que você encontrou responda a essa frase, se você falar com ela? Se você quiser ajudar, você pode ir tenta falar essa frase para ela.||{ - {Claro, eu vou falar as palavras para a criatura.|ulirfendor_findparts_9|||||} - {De qualquer forma, eu irei fazê-lo. Mas eu espero que esta seja a última vez que eu tenha que fazer esse percurso!|ulirfendor_findparts_9|||||} - {De jeito nenhum, eu já o ajudei bastante até agora.|ulirfendor_decline|||||} - {Melhor eu não me envolver nisso.|ulirfendor_decline|||||} - }|}; -{ulirfendor_decline|Não importa, eu vou encontrar por mim mesmo então. Obrigado por sua ajuda até agora. Tchau.|||}; -{ulirfendor_findparts_9|Bom. Por favor, devolva o mais rápido possível.|{{0|toszylae|32|}}||}; -{ulirfendor_findparts_10|Olá novamente. Você falou essas palavras para a criatura que você encontrou?||{ - {Conte-me novamente o que devo fazer.|ulirfendor_findparts_6|||||} - {Você pode repetir as palavras que eu deveria falar com o guardião?|ulirfendor_findparts_11|||||} - {Não, ainda não. Mas estou trabalhando nisso.|ulirfendor_findparts_9|||||} - {Sim, está feito.|ulirfendor_findparts_12|toszylae:42||||} - }|}; -{ulirfendor_findparts_11|Claro. É \'Klatam ur turum Kazaul\'te\'.|||}; -{ulirfendor_findparts_12|Então, aconteceu alguma coisa?||{ - {A criatura começou a atacar-me.|ulirfendor_findparts_13|||||} - {Não, não aconteceu nada.|ulirfendor_findparts_13|||||} - }|}; -{ulirfendor_findparts_13|Bem, você provavelmente deve investigar essa área um pouco mais. Estou certo de que há mais pistas de lá sobre o que este santuário fala.|||}; -{ulirfendor_infected_1|(Ulirfendor dá-lhe um olhar aterrorizado)||{{N|ulirfendor_infected_2|||||}}|}; -{ulirfendor_infected_2|Você está de volta! Por favor me diga que você está bem! Por favor me diga nada aconteceu com você!||{{N|ulirfendor_infected_3|||||}}|}; -{ulirfendor_infected_3|Eu consegui traduzir a peça que falamos. Oh, o que eu fiz. Por favor, me diga que você está bem!||{ - {Não, eu não estou bem. Meu estômago está girando e eu me sinto mais fraco do que o habitual. Eu encontrei um lich lá que fez algo comigo.|ulirfendor_infected_4|||||} - }|}; -{ulirfendor_infected_4|Nããão! O que eu fiz?||{{N|ulirfendor_infected_5|||||}}|}; -{ulirfendor_infected_5|Veja você, enquanto estava fora, eu consegui traduzir as palavras que falamos antes.||{{N|ulirfendor_infected_6|||||}}|}; -{ulirfendor_infected_6|A parte que a criatura falou basicamente significa \'Nenhuma oferta é digna para Kazaul\'.||{{N|ulirfendor_infected_7|||||}}|}; -{ulirfendor_infected_7|E, a última parte, que eu fiz você falar com a criatura, \'Klatam ur turum Kazaul\'te\', significa \'Meu corpo para Kazaul\'.||{{N|ulirfendor_infected_8|||||}}|}; -{ulirfendor_infected_8|Oh, o que eu fiz? Eu fiz-lhe dizer isso, e agora você foi tocado pela sua essência vil.|{{0|toszylae|60|}}|{ - {Não é tão ruim assim. Eu já tive momentos piores.|ulirfendor_infected_9|||||} - {O que posso fazer para se livrar dessa maldição?|ulirfendor_infected_9|||||} - {É melhor ter um plano de como você deve retribuir-me para este truque!|ulirfendor_infected_9|||||} - {Eu pelo menos derrotei o lich que me infectou com esta coisa.|ulirfendor_demon_s|darkprotector:10||||} - {Encontrei um capacete de aparência estranha entre os restos do lich que eu derrotei. Você sabe alguma coisa sobre isso?|ulirfendor_helmet_s|toszylae:70||||} - }|}; -{ulirfendor_infected_9|Deixe-me dar uma olhada em você.||{{N|ulirfendor_infected_10|||||}}|}; -{ulirfendor_infected_10|Não... como poderia? Isso realmente existe?||{{O que é?|ulirfendor_infected_11|||||}}|}; -{ulirfendor_infected_11|Você mostra todos os sinais. Se isso for verdade, então você está em grande perigo.||{{N|ulirfendor_infected_12|||||}}|}; -{ulirfendor_infected_12|Há muito tempo atrás, li um livro sobre rituais Kazaul. A primeira parte de um certo ritual particular que li fala sobre \'o transportador\', que supostamente está infectada com vermes da podridão de Kazaul.||{{N|ulirfendor_infected_13|||||}}|}; -{ulirfendor_infected_13|Os vermes da podridão de Kazaul precisam de um ser vivo para alimentar-se, antes de seus ovos possam eclodir. Seus ovos podem matar lentamente uma pessoa por dentro, e os próprios vermes causam fraqueza ao transportador durante todo o processo.||{{N|ulirfendor_infected_14|||||}}|}; -{ulirfendor_infected_14|O ritual também descreve que o transportador é comido vivo pelos vermes da podridão e seus ovos. Além disso, o processo pode ter... digamos... um efeito incomum ao transportador.||{{N|ulirfendor_infected_15|||||}}|}; -{ulirfendor_infected_15|Desnecessário dizer, você está em grande perigo, e você deve procurar ajuda imediatamente.|{{0|maggots|20|}}|{{N|ulirfendor_infected_16|||||}}|}; -{ulirfendor_infected_16|O ritual também descreve que o transportador é comido pelos vermes da podridão e pelos seus ovos o que, de fato, da à luz as criaturas dentro do seu corpo. Além disso, o processo pode ter.. digamos.. um efeito incomum no transportador antes que isso ocorra.||{{N|ulirfendor_infected_17|||||}}|}; -{ulirfendor_infected_17|Você deve se apressar e procurar a ajuda de um dos sacerdotes da Sombra tão rápido quanto possível. Meu querido amigo Talião no templo de Loneford deve ser capaz de ajudá-lo.|{{0|maggots|21|}}|{{N|ulirfendor_infected_18_s|||||}}|}; -{ulirfendor_infected_18_s|||{ - {|ulirfendor_infected_18|toszylae:70||||} - {|ulirfendor_infected_19|||||} - }|}; -{ulirfendor_infected_18|Procure-o imediatamente. Depressa! Você pode não deve ter muito tempo.||{{Ok, eu vou para Talião no templo de Loneford imediatamente. Tchau.|X|||||}}|}; -{ulirfendor_infected_19|Gostaria também de dizer-lhe que é de grande importância que primeiro destrua qualquer criatura que o infectou com isso.||{ - {Ok, eu vou derrotar o lich primeiro. Tchau.|X|||||} - {Eu derroteu o lich nas profundezas da caverna oriental.|ulirfendor_demon_s|darkprotector:10||||} - }|}; -{ulirfendor_demon_s|||{ - {|ulirfendor_demon_1|toszylae:70||||} - {|ulirfendor_demon_d1|||||} - }|}; -{ulirfendor_demon_1|Sim, você disse-me que matou o lich. Excelente trabalho.||{{N|ulirfendor_demon_2|||||}}|}; -{ulirfendor_demon_2|As pessoas das cidades vizinhas terão que o agradecer.||{ - {Não tem problema. Tchau.|X|||||} - {Encontrei um capacete de aparência estranha entre os restos de que lich. Você sabe alguma coisa sobre isso?|ulirfendor_helmet_s|toszylae:70||||} - }|}; -{ulirfendor_demon_d1|Ah, isso é uma boa notícia. Um lich que você diz? Com a sua ajuda, as pessoas das cidades vizinhas devem estar seguras do mal que o lich poderia ter causado até agora.|{{0|toszylae|70|}}|{{N|ulirfendor_demon_d2|||||}}|}; -{ulirfendor_demon_d2|Muito obrigado pela sua ajuda!||{{N|ulirfendor_demon_2|||||}}|}; - -{ulirfendor_helmet_s|||{ - {|ulirfendor_helmet_1|maggots:50||||} - {|ulirfendor_helmet_d1|||||} - }|}; -{ulirfendor_helmet_d1|Isso é muito interessante, mas parece que você tem assuntos mais urgentes para tratar.||{{N|ulirfendor_infected_17|||||}}|}; -{ulirfendor_cured_1|Eu estou contente em ver que você está parecendo melhor do que antes. Eu suponho que você conseguiu a ajuda que precisava de Talião em Loneford?||{{Sim, Talião me curou dessa coisa.|ulirfendor_cured_2|||||}}|}; -{ulirfendor_cured_2|Isso é bom ouvir. Eu espero que... essa coisa... não tenha quaisquer efeitos colaterais permanentes em você.||{ - {Eu derrotei o lich nas profundezas da caverna oriental.|ulirfendor_demon_s|darkprotector:10||||} - {Encontrei um capacete de aparência estranha entre os restos daquele lich. Você sabe alguma coisa sobre isso?|ulirfendor_helmet_s|toszylae:70||||} - }|}; - -{ulirfendor_helmet_1|Poderia ser? Humm. Deixe-me procurar aquela coisa.||{{N|ulirfendor_helmet_2|||||}}|}; -{ulirfendor_helmet_2|Essas marcações sobre ele são muito peculiares. Ele foi encontrado com o lich da qual você falou?||{{N|ulirfendor_helmet_3|||||}}|}; -{ulirfendor_helmet_3|Humm.. Você quer saber, isso poderia realmente estar ligado àquilo na qual o santuário fala - O Protetor Negro||{{N|ulirfendor_helmet_4|||||}}|}; -{ulirfendor_helmet_4|Eu não estou certo de que o termo \'Protetor Negro\' se refere. No começo eu pensei que poderia ser alguma criatura proteger alguma coisa, mas este capacete parece se encaixar melhor naquilo a qual o santuário descreve.||{{N|ulirfendor_helmet_5|||||}}|}; -{ulirfendor_helmet_5|Poderia ser o capacete em si, ou que o capacete tem algum efeito sobre quem o usa, o que significa que o utilizador se torne no Protetor Negro.||{{N|ulirfendor_helmet_6|||||}}|}; -{ulirfendor_helmet_6|No entanto, tenho quase certeza de que este artefato está ligado àquilo no qual este santuário descreve, e que o artefato é rico de influência Kazaul.||{{N|ulirfendor_helmet_7|||||}}|}; -{ulirfendor_helmet_7|Como tal, iria certamente trazer miséria nas vizinhanças daquele a qual o carrega. Direta ou indiretamente, eu não sei.||{{N|ulirfendor_helmet_8|||||}}|}; -{ulirfendor_helmet_8|Eu digo que devemos destruir esse item imediatamente para certificar-se de que estaremos para sempre livres dessa maldição de Kazaul e para certificar-nos de que não caia em mãos erradas.|{{0|darkprotector|15|}}|{ - {He he, um item poderoso que você diz? Quanto você acha que ele valha?|ulirfendor_helmet_worth|||||} - {O que devemos fazer, a fim de destruí-lo?|ulirfendor_helmet_n2|||||} - {Absolutamente. Eu farei qualquer coisa para proteger as pessoas de tal coisa.|ulirfendor_helmet_n1|||||} - {Interessante. Como alguém poderia se tornar poderoso vestindo esta coisa?|ulirfendor_helmet_power|||||} - }|}; -{ulirfendor_helmet_worth|Vale!? Que diferença isso faria? Nós precisamos destruí-lo imediatamente!||{ - {Quanto poder teria algém vestindo esta coisa?|ulirfendor_helmet_power|||||} - {O que devemos fazer a fim de destruí-la?|ulirfendor_helmet_n2|||||} - {Não. Eu vou reservar esse item para mim, ao invés.|ulirfendor_helmet_keep1|||||} - }|}; -{ulirfendor_helmet_power|Eu não quero nem pensar nisso. Iria, sem dúvida trazer miséria para os arredores de quem o usa. Nós devemos destruí-lo imediatamente!||{ - {He he, soa poderoso. Quanto você acha que isso vale?|ulirfendor_helmet_worth|||||} - {O que devemos fazer, a fim de destruí-la?|ulirfendor_helmet_n2|||||} - {Não. Eu vou manter esse item para mim, ao invés.|ulirfendor_helmet_keep1|||||} - }|}; -{ulirfendor_helmet_n1|Fico feliz em ouvir isso.||{{N|ulirfendor_helmet_n2|||||}}|}; -{ulirfendor_helmet_n2|Para destruí-lo, eu acho que será suficiente usar usar o que normalmente usamos quando removemos a marca de Kazaul - um frasco de purificar o espírito.||{{N|ulirfendor_helmet_n3|||||}}|}; -{ulirfendor_helmet_n3|Felizmente, eu sempre carrego um pouco comigo, então, isso não será um problema.||{{N|ulirfendor_helmet_n4|||||}}|}; -{ulirfendor_helmet_n4|O que pode ser um problema, porém, é a outra coisa que precisamos. Este artefato é provavelmente ligado a esse lich que o teve.||{{N|ulirfendor_helmet_n5|||||}}|}; -{ulirfendor_helmet_n5|Vamos precisar de usar o frasco de espírito de purificação em algo poderoso que também tenha vindo do lich.||{{Eu consegui o coração do lich, poderia servir?|ulirfendor_helmet_n6|||||}}|}; -{ulirfendor_helmet_n6|O coração? Ah, sim, que certamente servirá.|{{0|darkprotector|26|}}|{{N|ulirfendor_helmet_n7|||||}}|}; -{ulirfendor_helmet_n7|Rapidamente agora, dê-me o capacete e o coração do lich, e vou começar o procedimento.||{ - {Aqui está o capacete.|ulirfendor_dp_proc_1||helm_protector0|1|0|} - {Eu acho que eu devo pensar melhor a respeito antes de começar.|ulirfendor_helmet_n8|||||} - {Não. Eu vou manter esse item para mim, ao invés.|ulirfendor_helmet_keep1|||||} - }|}; -{ulirfendor_helmet_n8|Pense o que quiser, mas por favor apresse-se. Precisamos destruir essa coisa o mais rápido possível!|||}; -{ulirfendor_dp_proc_1|Obrigado. Agora, eu preciso que o coração do lich.|{{0|darkprotector|30|}}|{{Aqui está.|ulirfendor_dp_proc_2||toszylae_heart|1|0|}}|}; -{ulirfendor_dp_proc_2|Excelente. Vou começar o processo imediatamente.|{{0|darkprotector|31|}}|{{N|ulirfendor_dp_proc_3|||||}}|}; -{ulirfendor_dp_proc_3|(Ulirfendor coloca o capacete e o coração do lich no chão diante dele, e abre sua mochila de itens)||{{N|ulirfendor_dp_proc_4|||||}}|}; -{ulirfendor_dp_proc_4|(Ele pega um frasco de couro de sua mochila e retira um frasco com um líquido claro, ligeiramente brilhoso)||{{N|ulirfendor_dp_proc_5|||||}}|}; -{ulirfendor_dp_proc_5|(Ulirfendor derrama o conteúdo do frasco no capacete e no coração em movimentos circulares, tomando o cuidado para não o derramar ao chão)||{{N|ulirfendor_dp_proc_6|||||}}|}; -{ulirfendor_dp_proc_6|Deve ser tão simples quanto isto realmente. Material poderoso isso.||{{N|ulirfendor_dp_proc_7|||||}}|}; -{ulirfendor_dp_proc_7|(A superfície do capacete parece congelar, quase como que tivesse uma camada de gelo)||{{N|ulirfendor_dp_proc_8|||||}}|}; -{ulirfendor_dp_proc_8|(Depois de um tempo, pequenas fissuras aparecem na superfície, fazendo sons minúsculos ao aparecerem)||{{N|ulirfendor_dp_proc_9|||||}}|}; -{ulirfendor_dp_proc_9|(As rachaduras começam a ficar maiores e mais densas ao longo da superfície, até que o capacete fique completamente coberto por elas)||{{N|ulirfendor_dp_proc_10|||||}}|}; -{ulirfendor_dp_proc_10|Agora, veja isso. Eu adoro esta parte.||{{N|ulirfendor_dp_proc_11|||||}}|}; -{ulirfendor_dp_proc_11|(Ulirfendor mira com o pé e pisa o capacete com o salto de sua bota em um movimento poderoso.||{{N|ulirfendor_dp_proc_12|||||}}|}; -{ulirfendor_dp_proc_12|(O capacete quebra-se completamente, deixando apenas uma fina poeira.)|{{0|darkprotector|35|}}|{{N|ulirfendor_dp_proc_13|||||}}|}; -{ulirfendor_dp_proc_13|Ha ha! Olha isso!||{{N|ulirfendor_dp_proc_14|||||}}|}; -{ulirfendor_dp_proc_14|(Ele faz o mesmo com o coração que também parece ter ficado completamente congelado e coberto com rachaduras)||{{N|ulirfendor_dp_proc_15|||||}}|}; -{ulirfendor_dp_proc_15|Ah, isso com certeza soa bem.||{{N|ulirfendor_dp_proc_16|||||}}|}; -{ulirfendor_dp_proc_16|Você, meu amigo, fez um grande feito aqui, hoje. Essa coisa teria trazido grande miséria se tivesse caído em mãos erradas.||{{N|ulirfendor_dp_proc_17|||||}}|}; -{ulirfendor_dp_proc_17|As pessoas das cidades vizinhas estão agora a salvo de qualquer miséria que o capacete teria trazido. Tudo graças a você!||{{N|ulirfendor_dp_proc_18|||||}}|}; -{ulirfendor_dp_proc_18|Como um símbolo de meu apreço, eu estou disposto a conceder sobre você uma bênção da Sombra.||{ - {O que essa bênção faz?|ulirfendor_dp_bless_2|||||} - {Obrigado, mas isso não será necessário. Estou apenas feliz por ajudar.|ulirfendor_dp_bless_1|||||} - {Obrigado, por favor, vá em frente.|ulirfendor_dp_bless_3|||||} - }|}; -{ulirfendor_dp_bless_1|Você realmente tem um grande coração.|{{0|darkprotector|41|}}|{{N|ulirfendor_dp_bless_6|||||}}|}; -{ulirfendor_dp_bless_2|A bênção vai lhe conceder o auxílio da sombra enquanto em combate, protegendo-o dos efeitos nocivos que o adversário poderia infligir sobre você.||{ - {Obrigado, mas isso não será necessário. Estou apenas feliz por ajudar.|ulirfendor_dp_bless_1|||||} - {Obrigado, por favor, vá em frente.|ulirfendor_dp_bless_3|||||} - }|}; -{ulirfendor_dp_bless_3|Muito bem, vou dar-lhe a bênção escura da sombra.||{{N|ulirfendor_dp_bless_4|||||}}|}; -{ulirfendor_dp_bless_4|(Ulirfendor começa a cantar em uma língua que você não reconhece)||{{N|ulirfendor_dp_bless_5|||||}}|}; -{ulirfendor_dp_bless_5|Não. Você agora tem a bênção escura da sombra em cima de você.|{{0|darkprotector|40|}{2|20|1|}}|{{N|ulirfendor_dp_bless_6|||||}}|}; -{ulirfendor_dp_bless_6|Obrigado mais uma vez por tudo o que fez aqui.|||}; -{ulirfendor_helmet_keep1|O quê? Mantê-lo!? Você enlouqueceu? Nós precisamos destruí-lo para proteger o povo!||{ - {Quem pode saber o poder que eu poderia ganhar com isso? Eu vou manter isso para mim.|ulirfendor_helmet_keep2|||||} - {Ele pode valer muito. Eu vou manter isso para mim.|ulirfendor_helmet_keep2|||||} - {Eu acho que devo pensar melhor antes de começar.|ulirfendor_helmet_n8|||||} - }|}; -{ulirfendor_helmet_keep2|O que é isso!? Eu sabia que havia algo errado com você a primeira vez que te vi.|{{0|darkprotector|50|}}|{{N|ulirfendor_helmet_keep3|||||}}|}; -{ulirfendor_helmet_keep3|Pela sombra, eu vou o deter. O que for preciso. Você não vai viver para ver o dia seguinte!|{{0|darkprotector|51|}}|{{Atacar!|F|||||}}|}; - -{ulirfendor_dp_return1|Olá novamente. Você já pensou melhor sobre o que falamos antes?||{ - {O que você decidiu quanto à destruição do capacete?|ulirfendor_helmet_8|||||} - {Você pode me dizer novamente o que você pensa sobre esse capacete?|ulirfendor_helmet_2|||||} - }|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{toszylae_guard|||{ - {|toszylae_guard_8|toszylae:45||||} - {|toszylae_guard_5|toszylae:42||||} - {|toszylae_guard_1|||||} - }|}; -{toszylae_guard_1|(A criatura horripilante olha para baixo, dirigindo a você os seus olhos ardentes, e fala em voz sibilante)||{{N|toszylae_guard_s|||||}}|}; -{toszylae_guard_s|||{ - {|toszylae_guard_3_1|toszylae:32||||} - {|toszylae_guard_2_1|toszylae:15||||} - {|toszylae_guard_1_1|||||} - }|}; -{toszylae_guard_1_1|O quê?||{ - {Kulauil hamar Urum Kazaul\'te. Kazaul Hamat urul.|toszylae_guard_1_n|||||} - {Kazaul o quê?|toszylae_guard_1_n|||||} - }|}; -{toszylae_guard_1_n|(A criatura se afasta)||{{Atacar!|toszylae_guard_1_n2|||||}{Deixou a criatura|X|||||}}|}; -{toszylae_guard_1_n2|(Embora você tente fazer o seu ataque contra o guardião, seus braços permanecem retidos por uma força enorme)|||}; -{toszylae_guard_2_1|Kulauil hamar Urum Kazaul\'te. Kazaul Hamat urul.|{{0|toszylae|20|}}|{ - {Esta deve ser a frase que Ulirfendor estava procurando.|toszylae_guard_2_n|||||} - }|}; -{toszylae_guard_2_n|(A criatura se afasta)||{{Atacar!|toszylae_guard_2_n2|||||}{Deixou a criatura|X|||||}}|}; -{toszylae_guard_2_n2|(Embora você tente fazer o seu ataque contra o guardião, seus braços permanecem retidos por uma força enorme)|{{0|toszylae|21|}}||}; -{toszylae_guard_3_1|Kulauil hamar Urum Kazaul\'te. Kazaul Hamat urul.||{ - {Klaatu varmun ur Kazaul\'te|toszylae_guard_2_n|||||} - {Klaatu ur Kazaul\'te|toszylae_guard_2_n|||||} - {Klatam ur turum Kazaul\'te|toszylae_guard_4|||||} - {Klaatu... Verata...n .. nick .. (o resto é superado pelo ruído de uma tosse bem-cronometrada)|toszylae_guard_2_n|||||} - }|}; -{toszylae_guard_4|Kulum Kazaul.|{{0|toszylae|42|}}|{{N|toszylae_guard_5|||||}}|}; -{toszylae_guard_5|(Seus olhos pulsa em um brilho intenso quando a criatura começa a se mover em direção a você)||{{N|toszylae_guard_6|||||}}|}; -{toszylae_guard_6|(O Guardião dá um riso que faz o cabelo na parte de trás do seu pescoço se ouriçar)||{{N|toszylae_guard_7|||||}}|}; -{toszylae_guard_7|Kazaul\'te vaarmun iktel urul.||{{N|toszylae_guard_8|||||}}|}; -{toszylae_guard_8|(Ela levanta suas garras parecidas com mãos para cima da cabeça, procurando ficar pronto para atacar em você)|{{0|toszylae|45|}}|{{Atacar!|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{toszylae|||{ - {|toszylae_10|toszylae:50||||} - {|toszylae_1|||||} - }|}; -{toszylae_1|(O lich olha com seus olhos ardentes, e olha para os restos do guardião você derrotou)||{{N|toszylae_2|||||}}|}; -{toszylae_2|Kazaul\'te vaarmun iktel urul. Klatam ku turum Kazaul\'te?||{{N|toszylae_3|||||}}|}; -{toszylae_3|(O lich levanta as mãos em direção ao teto, cantando algo que você não pode entende)||{{N|toszylae_4|||||}}|}; -{toszylae_4|(Enquanto canta, lentamente abaixa suas mãos em sua direção, até que finalmente apontem para você)||{{N|toszylae_5|||||}}|}; -{toszylae_5|Klatam ku turum Kazaul\'te.||{{N|toszylae_6|||||}}|}; -{toszylae_6|(Como se tivesse engolido mil agulhas, de repente você sente uma forte dor no estômago)|{{3|rotworm|999|}{0|maggots|10|}{0|toszylae|50|}}|{{N|toszylae_7|||||}}|}; -{toszylae_7|(Você começa a sentir náuseas, e reviravoltas em seu estômago - como se ele tivesse vida própria)||{{N|toszylae_8|||||}}|}; -{toszylae_8|(A dor aumenta um pouco, e você começa a perceber que algo está se movendo dentro de você)||{{N|toszylae_9|||||}}|}; -{toszylae_9|(O lich deve ter infectado você com alguma coisa)||{{O que está acontecendo comigo!?|toszylae_10|||||}}|}; -{toszylae_10|(O lich parece gostar de vê-lo em dores)||{{Você vai pagar pelo que fez comigo!|F|||||}}|}; -{sign_toszylae|||{ - {|sign_toszylae_2|darkprotector:10||||} - {|sign_toszylae_1|||||} - }|}; -{sign_toszylae_1|(Entre os restos do linch \'Toszylae \' que você derrotou, você encontra um capacete de aparência estranha)|{{0|darkprotector|10|}{1|sign_toszylae|0|}}||}; -{sign_toszylae_2|(Você vê os restos do linch \'Toszylae\' que você derrotou.)|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{sign_brimcave4|||{ - {|sign_ulirfendor_r|darkprotector:70||||} - {|sign_ulirfendor_8|darkprotector:66||||} - {|sign_ulirfendor_6|darkprotector:65||||} - {|sign_ulirfendor_1|||||} - }|}; -{sign_ulirfendor_1|Na frente do santuário, você encontra um livro deitado na areia. \'Reflexões sobre rituais Kazaul\'.||{{N|sign_ulirfendor_2|||||}}|}; -{sign_ulirfendor_2|Você passa rapidamente os olhos pelo livro, e encontra vários cânticos e rituais de Kazaul.||{{N|sign_ulirfendor_3|||||}}|}; -{sign_ulirfendor_3|Existe um rito em particular que sobressai: o que fala de artefatos antigos imbuídos pelo poder de Kazaul.||{{N|sign_ulirfendor_4|||||}}|}; -{sign_ulirfendor_4|O ritual em si exige o coração de um lich e, à partir do texto sobre o ritual no livro, seria possível restaurar o capacete à sua antiga glória.|{{0|darkprotector|55|}}|{ - {Começou o ritual.|sign_ulirfendor_5|||||} - {Deixou o santuário sozinho.|X|||||} - }|}; -{sign_ulirfendor_5|Você coloca-se na frente do santuário, ajoelhado como os desenhos do livro mostram.|{{0|darkprotector|60|}}|{ - {Você coloca o capacete na frente do santuário|sign_ulirfendor_6||helm_protector0|1|0|} - }|}; -{sign_ulirfendor_6|Você coloca o capacete no chão na frente de você, inclinando-o ligeiramente contra o santuário.|{{0|darkprotector|65|}}|{ - {Coloque o coração do lich em frente ao santuário|sign_ulirfendor_7||toszylae_heart|1|0|} - }|}; -{sign_ulirfendor_7|Você coloca o coração do lich ao lado do capacete na frente do santuário.|{{0|darkprotector|66|}}|{{Você fala as palavras do ritual do livro|sign_ulirfendor_8|||||}}|}; -{sign_ulirfendor_8|Você começa a recitar as palavras da língua Kazaul do livro, tomando muito cuidado para dizer as palavras exatamente como o livro as descreve.||{{N|sign_ulirfendor_9|||||}}|}; -{sign_ulirfendor_9|Conforme você recita as palavras, você percebe um brilho fraco vindo do santuário, e você tem a sensação estranha de que a areia no chão quase se movimenta por si só.||{{N|sign_ulirfendor_10|||||}}|}; -{sign_ulirfendor_10|Os movimentos começam a ficar mais visíveis, quase como se houvesse algo rastejando sob a areia.||{{N|sign_ulirfendor_11|||||}}|}; -{sign_ulirfendor_11|Conforme se aproxima o fim do ritual, o capacete cai para a frente, de bruços na areia.||{{N|sign_ulirfendor_12|||||}}|}; -{sign_ulirfendor_12|Uma vez que você fala as palavras finais do ritual, o chão afunda um pouco na frente do santuário, enterrando parcialmente o capacete na areia.||{{N|sign_ulirfendor_13|||||}}|}; -{sign_ulirfendor_13|Quando você o levanta e retira o pó da areia, você nota uma mudança na textura da peça que estava submersa na areia.||{{Você pega capacete|sign_ulirfendor_14|||||}}|}; -{sign_ulirfendor_14|Você tira o capacete, e examiná-o mais de perto.|{{0|darkprotector|70|}{1|sign_ulirfendor|0|}}|{{N|sign_ulirfendor_15|||||}}|}; -{sign_ulirfendor_15|Ao seu lado, você percebe alguns ornamentos que não estavam lá antes. O capacete também passa um leve formigamento às mãos conforme você o segura.||{{N|sign_ulirfendor_16|||||}}|}; -{sign_ulirfendor_16|Completar o ritual deve ter restaurado o capacete à sua antiga glória.|||}; -{sign_ulirfendor_r|Você vê o santuário de Kazaul, onde realizou o ritual Kazaul.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{talion_infect_1|Oh, o que aconteceu com você? Você não parece muito bem.||{ - {Eu fui infectado com algo por um lich de Kazaul.|talion_infect_5|||||} - {Um homem chamado Ulirfendor me disse que eu poderia estar infectado com vermes da podridão de Kazaul.|talion_infect_2|||||} - {Disseram-me para encontrá-lo, e que você poderia ser capaz de me ajudar.|talion_infect_4|||||} - }|}; -{talion_infect_2|Ah, meu velho amigo, Ulirfendor. É bom saber que ele ainda está vivo. Mas o que foi que, disse? Vermes da podridão, né?||{{N|talion_infect_3|||||}}|}; -{talion_infect_3|Coisas desagradáveis, eles são. Eu tenho visto pessoas indo à loucura por causa das dores de estômago, e eu tenho visto pessoas sendo comidas vivas por dentro.||{ - {Você é capaz de me ajudar?|talion_infect_4|||||} - {Não é tão ruim assim. Eu já passei por coisas piores.|talion_infect_4|||||} - }|}; -{talion_infect_4|É bom que você veio me ver. Eu posso ser capaz de ajudá-lo.||{{N|talion_demon_1|||||}}|}; -{talion_infect_5|Um lich de Kazaul hein? Então eu tenho certeza de que o que o aflige são os amaldiçoados vermes da podridão.||{{N|talion_infect_3|||||}}|}; -{talion_demon_1|Só para ter certeza, você matou qualquer criatura que o infectou com isso, certo?||{ - {Sim, eu matei aquele lich.|talion_demon_2|darkprotector:10||||} - {Não, eu não matei ainda.|talion_demon_3|||||} - }|}; -{talion_demon_2|Bom. Então, eu sou capaz de ajudá-lo.||{{N|talion_infect_6|||||}}|}; -{talion_demon_3|Então é melhor você ir cuidar disso primeiro!||{{Ok, eu vou estar de volta uma vez que o lich estiver derrotado.|X|||||}}|}; -{talion_infect_6|Mas há um pequeno problema. Veja você, normalmente, a minha fonte de poções e ingredientes estariam totalmente abastecida. No entanto, com este problema que temos aqui em Loneford, minhas fontes estão mais baixas do que jamais estiveram.||{{N|talion_infect_7|||||}}|}; -{talion_infect_7|Eu não capaz de sair e reunir novos suprimentos por mim mesmo, com a doença e tudo mais.||{ - {Então, o que você pode fazer?|talion_infect_8|||||} - {Existe algo que eu possa fazer para ajudar?|talion_infect_8|||||} - {Bah! Então você é inútil para mim. Acho que você deveria ter se preparado melhor antes.|talion_infect_9|||||} - }|}; -{talion_infect_9|Sim, eu suponho que eu deveria.|||}; -{talion_infect_8|Quer saber, talvez, você possa sair e recolher alguns itens para mim. Com a sua condição, é importante que se apresse tanto quanto puder.||{ - {O que você gostaria que eu fizesse?|talion_infect_11|||||} - {Argh! As dores estão piorando! Não há nada que você possa fazer?|talion_infect_10|||||} - }|}; -{talion_infect_10|Não, infelizmente não. Não com este alguns suprimentos. Sinto muito.||{ - {Certo. O que você gostaria que eu fizesse?|talion_infect_11|||||} - {Bah! Então você é inútil para mim. Acho que você deveria ter se preparado melhor antes .|talion_infect_9|||||} - }|}; -{talion_infect_11|Para este trabalho especial de cura, eu preciso de ajuda em obter quatro itens.||{{N|talion_infect_12|||||}}|}; -{talion_infect_12|Ou... bem... na verdade, oito itens no total, mas de quatro tipos diferentes. Eh... bem, você está pegando a ideia.||{{N|talion_infect_13|||||}}|}; -{talion_infect_13|Enfim, o que você precisa para trazer mim é, antes de mais nada, alguns ossos mais frescos. Cinco ossos devem dar, eu acho. Certifique-se de que eles sejão frescos. Qualquer esqueleto velho vai servir, mas eu prefiro usar alguns ossos frescos de algum animal desagradável.||{{N|talion_infect_14|||||}}|}; -{talion_infect_14|Em segundo lugar, eu vou precisar de alguma pele animal para juntar com isso. Dois pedaços de pêlos certamente deverão dar. Eu tenho certeza que qualquer pele animal velho do deserto fora da cidade vai servir.||{{N|talion_infect_15|||||}}|}; -{talion_infect_15|Terceiro, vou precisar de uma glândula de veneno de uma criatura chamada Irdegh.||{{N|talion_infect_16|||||}}|}; -{talion_infect_16|Agora, eu pessoalmente ainda não vi nenhum Irdegh, mas eu ouvi dizer que eles são criaturas particularmente desagradáveis. Venenosas como nada que eu tenha ouvido falar antes.||{ - {Ok, uma glândula de veneno Irdegh. Onde posso encontrar um?|talion_infect_17|||||} - {Entendi. Mais alguma coisa?|talion_infect_18|||||} - }|}; -{talion_infect_17|Algumas pessoas têm comentado que viram alguns deles a uma boa distância ao leste, ao longo das pontes.||{{Mais alguma coisa?|talion_infect_18|||||}}|}; -{talion_infect_18|Por último, eu preciso de um frasco limpo e vazio para fazer a poção dentro. Eu ouvi dizer que o fabricante de porções de Fallhaven tem os melhores frascos disponíveis.||{{N|talion_infect_19|||||}}|}; -{talion_infect_19|Traga-me essas coisas e eu vou ser capaz de ajudá-lo com a sua... condição.|{{0|maggots|30|}}|{ - {Muito bem, eu vou estar de volta em breve.|X|||||} - }|}; -{talion_infect_30|Você voltou. Você já reuniu as coisas que eu pedi?||{ - {O que é que eu devo mesmo coletar?|talion_infect_11|||||} - {Eu trouxe cinco ossos para você.|talion_bone_s|||||} - {Eu trouxe dois pedaços de pêlos para você.|talion_hair_s|||||} - {Eu trouxe uma glândula de veneno Irdegh para você.|talion_irdegh_s|||||} - {Eu trouxe um frasco vazio para você.|talion_vial_s|||||} - {Você sabe alguma coisa sobre a doença aqui em Loneford?|talion_1|loneford:11||||} - {Você tem alguma coisa para negociar?|S|||||} - }|}; -{talion_infect_31|Ainda preciso de mais alguns desses itens.||{ - {O que é que eu devo procurar mesmo?|talion_infect_11|||||} - {Eu trouxe cinco ossos para você.|talion_bone_s|||||} - {Eu trouxe dois pedaços de pêlos para você.|talion_hair_s|||||} - {Eu trouxe uma glândula de veneno Irdegh para você.|talion_irdegh_s|||||} - {Eu trouxe um frasco vazio para você.|talion_vial_s|||||} - }|}; -{talion_gather_r|Não há necessidade, você já me trouxe isso antes. Mas obrigado assim mesmo.||{{N|talion_gather_s|||||}}|}; -{talion_bone_s|||{{|talion_gather_r|maggots:40||||}{|talion_bone_1|||||}}|}; -{talion_bone_1|Ah, bom. Por favor, dê-os a mim.||{{Aqui está.|talion_bone_2||bone|5|0|}{Pensando bem, já volto.|X|||||}}|}; -{talion_bone_2|Ah, bom. Por favor, dê-os a mim.|{{0|maggots|40|}}|{{N|talion_gather_s|||||}}|}; -{talion_hair_s|||{{|talion_gather_r|maggots:41||||}{|talion_hair_1|||||}}|}; -{talion_hair_1|Obrigado.||{{Aqui está.|talion_hair_2||hair|2|0|}{Pensando bem, já volto.|X|||||}}|}; -{talion_hair_2|Ah, bom. Por favor, dê-os para mim.|{{0|maggots|41|}}|{{N|talion_gather_s|||||}}|}; -{talion_irdegh_s|||{{|talion_gather_r|maggots:42||||}{|talion_irdegh_1|||||}}|}; -{talion_irdegh_1|Obrigado.||{{Aqui está.|talion_irdegh_2||irdegh|1|0|}{Pensando bem, já volto.|X|||||}}|}; -{talion_irdegh_2|Ah, bom. Por favor, dê-os para mim.|{{0|maggots|42|}}|{{N|talion_gather_s|||||}}|}; -{talion_vial_s|||{{|talion_gather_r|maggots:43||||}{|talion_vial_1|||||}}|}; -{talion_vial_1|Obrigado.||{ - {Aqui está, um pequeno frasco vazio.|talion_vial_2||vial_empty1|1|0|} - {Aqui está, um frasco vazio.|talion_vial_2||vial_empty2|1|0|} - {Pensando bem, já volto.|X|||||} - }|}; -{talion_vial_2|Isso é tudo que eu preciso para curá-lo. Bom trabalho.|{{0|maggots|43|}}|{{N|talion_gather_s|||||}}|}; -{talion_gather_s|||{{|talion_gather_s2|maggots:40||||}{|talion_infect_31|||||}}|}; -{talion_gather_s2|||{{|talion_gather_s3|maggots:41||||}{|talion_infect_31|||||}}|}; -{talion_gather_s3|||{{|talion_gather_s4|maggots:42||||}{|talion_infect_31|||||}}|}; -{talion_gather_s4|||{{|talion_cure_1|maggots:43||||}{|talion_infect_31|||||}}|}; -{talion_cure_1|Obrigado.|{{0|maggots|45|}}|{{N|talion_cure_2|||||}}|}; -{talion_cure_2|Agora, vamos começar esta porção de cura. Eu só preciso moer isto... e misturar esses outros... e...||{{N|talion_cure_3|||||}}|}; -{talion_cure_3|Dê-me um minuto.||{{N|talion_cure_4|||||}}|}; -{talion_cure_4|(Talião mistura os ingredientes juntos no frasco que você trouxe, com algumas folhas e frutos que tinha com ele)||{{N|talion_cure_5|||||}}|}; -{talion_cure_5|(Ele mistura por um bom tempo a poção completa)||{{N|talion_cure_6|||||}}|}; -{talion_cure_6|Aqui. Beba isso. Isso deve resolver.||{{Beba a poção|talion_cure_7|||||}}|}; -{talion_cure_7|(A poção tem um cheiro rançoso, mas você consegue engolir tudo. As cólicas estomacais reduzem, e você se sente que um dos vermes da podridão está rastejando em sua boca. Você rapidamente cospe o verme para dentro do frasco que estava vazio)|{{0|maggots|50|}{1|potion_rotworm|0|}{3|rotworm|-99|}}|{{N|talion_cured_1|||||}}|}; -{talion_cured_1|Ah, parece que funcionou. Francamente, eu estava um pouco preocupado que isso talvez não tivesse funcionado, mas vê-lo cuspir aquele verme realmente confirma. Ha ha.||{ - {Eca! Essas coisas estavam dentro de mim?|talion_cured_2|||||} - {E agora?|talion_cured_3|||||} - }|}; -{talion_cured_2|Sim. Desagradável, não são? * Rindo *||{{N|talion_cured_3|||||}}|}; -{talion_cured_3|Aquele verme você cuspiu, você deve se certificar de que você o guarde. Ele pode ser útil no futuro.||{ - {Para quê?|talion_cured_4|||||} - {Ok, vou segurá-lo.|talion_cured_7|||||} - {Eu acho que seria melhor colocá-lo sob minha bota.|talion_cured_5|||||} - }|}; -{talion_cured_4|Bem, nunca se sabe. Algumas pessoas realmente gostam... de coisas exóticas.||{{N|talion_cured_7|||||}}|}; -{talion_cured_5|A escolha é sua, é claro.||{{N|talion_cured_7|||||}}|}; -{talion_cured_7|Agora, eu sei que você deve ter passado por um bocado, para se infectar com essas coisas. Você parece o tipo aventureiro.||{{N|talion_cured_8|||||}}|}; -{talion_cured_8|Vou te dizer, eu normalmente não ofereco isso aninguém, mas parece que você poderia precisar de ajuda.||{{N|talion_cured_9|||||}}|}; -{talion_cured_9|Vendo como você conseguiu superar tudo isso, eu estaria disposto a oferecer-lhe ajuda ao dar-lhe bênçãos da Sombra, se você quiser.|{{0|maggots|51|}}|{{Bênçãos da Sombra?|talion_cured_10|||||}}|}; -{talion_cured_10|Sim. Bem .. por uma pequena taxa, é claro.||{ - {Que bênçãos você pode oferecer?|talion_bless_1|||||} - }|}; -{talion_bless_1|Eu sou capaz lhe abençoar com as bêncãos da sombra para a força, para a regeneração ou para a precisão, ou até mesmo a bênção do guardião da Sombra.||{ - {Estou interessado na bênção de força da Sombra|talion_bless_str_1|||||} - {Estou interessado na bênção de regeneração da Sombra|talion_bless_heal_1|||||} - {Estou interessado na bênção de precisão da Sombra|talion_bless_acc_1|||||} - {Estou interessado na bênção do guardião da Sombra|talion_bless_guard_1|||||} - {Não importa.|talion_0|||||} - }|}; -{talion_bless_str_1|A bênção de força da Sombra concede-lhe mais força ao ataque, aumentando assim a quantidade de dano que você faz em cada acertot. Eu posso lhe dar a bênção por 300 moedas de ouro.||{ - {Ok, eu vou dar-lhe as 300 moedas de ouro.|talion_bless_str_2||gold|300|0|} - {Não importa, vamos ver as outras bênçãos.|talion_bless_1|||||} - }|}; -{talion_bless_heal_1|A bênção da regeneração da Sombra lentamente vai curá-lo de volta, se você se machucar. Eu posso lhe dar a bênção por 250 moedas de ouro.||{ - {Ok, eu vou dar-lhe 250 moedas de ouro.|talion_bless_heal_2||gold|250|0|} - {Não importa, vamos ver as outras bênçãos.|talion_bless_1|||||} - }|}; -{talion_bless_acc_1|A bênção de precisão Sombra concede-lhe um sentido apurado de onde melhor para atacar seu oponente, aumentando assim a chance de um ataque bem sucedido enquanto luta. Eu posso lhe dar a bênção por 250 moedas de ouro.||{ - {Ok, eu vou dar-lhe 250 moedas de ouro.|talion_bless_acc_2||gold|250|0|} - {Não importa, vamos ver as outras bênçãos.|talion_bless_1|||||} - }|}; -{talion_bless_guard_1|Ah, sim, a bênção do guardião do Sombra. A Sombra protege de lugares escuros, e mantém você seguro onde outros não poderiam ver. Eu posso lhe dar a bênção por 400 moedas de ouro.||{ - {Ok, eu vou dar-lhe 400 moedas de ouro.|talion_bless_guard_2||gold|400|0|} - {Não importa, vamos voltar a essas outras bênçãos.|talion_bless_1|||||} - }|}; -{talion_bless_str_2|Muito bem. * Começa a cantar *|{{3|shadowbless_str|30|}}|{{N|talion_bless_2|||||}}|}; -{talion_bless_heal_2|Muito bem. * Começa a cantar *|{{3|shadowbless_heal|45|}}|{{N|talion_bless_2|||||}}|}; -{talion_bless_acc_2|Muito bem. * Começa a cantar *|{{3|shadowbless_acc|30|}}|{{N|talion_bless_2|||||}}|}; -{talion_bless_guard_2|Muito bem. * Começa a cantar *|{{3|shadowbless_guard|20|}}|{{N|talion_bless_2|||||}}|}; -{talion_bless_2|Aqui. Eu espero que isso lhe seja útil em suas viagens.||{ - {Obrigado, adeus.|X|||||} - {Cai fora, garoto. Você não deveria estar aqui.|talion_bless_1|||||} - }|}; - - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{gylew|Cai fora, garoto. Você não deveria estar aqui.|||}; -{gylew_henchman|Ei, eu estou tentando admirar a vista aqui. Saia do meu caminho.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{ingus|||{ - {|ingus_r1|sisterfight:10||||} - {|ingus_1|||||} - }|}; -{ingus_1|Olá. Eu acho que eu nunca vi você antes aqui em Remgard.||{{N|ingus_speak1|||||}}|}; -{ingus_r1|Olá novamente. Espero que você aprecie a sua estadia em Remgard.||{{N|ingus_speak1|||||}}|}; -{ingus_speak1|Como posso ajudá-lo?||{ - {O que há para fazer por aqui?|ingus_2|||||} - {Existe uma loja na cidade?|ingus_s1|||||} - {O que está acontecendo aqui na cidade?|ingus_2|||||} - }|}; -{ingus_2|Oh, não tem muita coisa acontecendo por aqui. Nós tentamos manter a cidade tão pacífica quanto possível.||{{N|ingus_3|||||}}|}; -{ingus_3|Nós não temos muitos visitantes aqui nas montanhas.||{{N|ingus_4s|||||}}|}; -{ingus_4s|||{ - {|ingus_4b|remgard2:45||||} - {|ingus_4a|||||} - }|}; -{ingus_4a|No entanto, ultimamente tem havido alguns problemas aqui na cidade.||{ - {Qual o problema?|ingus_t1|||||} - {Não importa, há uma loja na cidade?|ingus_s1|||||} - }|}; -{ingus_4b|Com sorte, teremos mais visitantes agora que você já nos ajudou a descobrir o que aconteceu com as pessoas que desapareceram.||{ - {Você é bem-vindo. Mais alguma coisa?|ingus_t3|||||} - {Existe uma loja na cidade?|ingus_s1|||||} - }|}; -{ingus_t1|Ah, eu não sei muito sobre isso. Os guardas dizem ter visto sinais estranhos fora da cidade, e algumas pessoas desapareceram.||{{N|ingus_t2|||||}}|}; -{ingus_t2|Eu tento me manter longe disso, no entanto. Soa como problema para mim.||{ - {Mais alguma coisa?|ingus_t3|||||} - {Obrigado, adeus.|X|||||} - }|}; -{ingus_t3|Bem, como sempre, as irmãs Elwille estão brigando.||{{N|ingus_t4s|||||}}|}; -{ingus_t4s|||{ - {|ingus_q1|sisterfight:71||||} - {|ingus_t4|||||} - }|}; -{ingus_t4|Ontem à noite, elas mantiveram a cidade inteira acordada, da maneira como elas estavam gritando uma com a outra.||{{Por quê elas estão brigando?|ingus_t5|||||}}|}; -{ingus_t5|Ah... nada... tudo. Eu não sei. Ninguém dá muito valor aos argumentos delas.||{{N|ingus_t6|||||}}|}; -{ingus_t6|Eles vivem em uma das cabanas da margem sul. *Ingus aponta para o sul*|{{0|sisterfight|10|}}|{ - {Obrigado, eu poderia ir visitá-las. Tchau.|X|||||} - {Obrigado. Tchau.|X|||||} - {Obrigado. Eu queria perguntar a você, há uma loja na cidade?|ingus_s1|||||} - }|}; -{ingus_s1|Loja? Ah, sim, claro. Há as lojas de Rothses e de Arnal ali. * Ingus aponta para as duas casas próximas ao oeste *||{{N|ingus_s2|||||}}|}; -{ingus_s2|Além disso, se você tem algum dinheiro, você sempre pode gastá-lo na taberna da cidade.||{ - {Obrigado. O que está acontecendo na cidade?|ingus_2|||||} - {Obrigado, adeus.|X|||||} - }|}; -{ingus_q1|Infelizmente, por algum motivo, as pessoas que vivem em sua vizinhança foram relatar que situação entre as duas tornou-se recentemente mais..., digamos..., \'notável\'.||{{N|ingus_q2|||||}}|}; -{ingus_q2|Eu tenho medo de que, se elas não resolverem suas diferenças em breve por conta própria, que a prefeitura terá que agir e resolver o assunto junto a elas.||{{N|ingus_q3|||||}}|}; -{ingus_q3|Não seria a primeira vez que o conselho da cidade teve de intervir em assuntos privados que ficaram fora de controle.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{elwel|||{ - {|elwel_4|sisterfight:71||||} - {|elwel_3|sisterfight:20||||} - {|elwel_1|||||} - }|}; -{elwel_1|Vá embora, eu não quero falar com você!||{ - {Até logo.|elwel_2|||||} - {Uau, você é do tipo amigável, não é?|X|||||} - }|}; -{elwel_2|(Elwel murmura para si mesma) Crianças estúpidas ..|||}; -{elwel_3|Eu vi você falando com a minha maldita irmã. Não dê ouvidos a ela, ela sempre se esforça muito para me retratar da pior maneira possível.|{{0|sisterfight|21|}}||}; -{elwel_4|Olha o que você fez!|{{0|sisterfight|21|}}|{{N|elwyl_2|||||}}|}; -{elwyl|||{ - {|elwyl_cmp_1|sisterfight:71||||} - {|elwyl_res_2|sisterfight:70||||} - {|elwyl_pot_1|sisterfight:31||||} - {|elwyl_12|sisterfight:20||||} - {|elwyl_1|||||} - }|}; -{elwyl_1|Quem é você? Será que nós o convidamos? Não, eu não penso assim. Agora sai!||{ - {Vocês são irmãs?|elwyl_3|||||} - {Eu vou para onde eu quiser.|elwyl_2|||||} - {Ok, eu vou embora.|X|||||} - }|}; -{elwyl_2|Bah. Vá embora, antes que eu chame os guardas por aqui!|||}; -{elwyl_3|Sim. Argh. Não é que eu esteja orgulhosa de ter uma irmã como... ela.||{{N|elwyl_4|||||}}|}; -{elwyl_4|Ela é a ovelha negra da família. Ela nunca concorda com nada, e sempre reclama. Basta olhar para ela.||{{N|elwyl_5|||||}}|}; -{elwyl_5|Ela ainda tem o estômago de me chamar de ovelha negra da família, quando é evidente que é ela que está causando todo o problema por aqui.||{{N|elwyl_6|||||}}|}; -{elwyl_6|Ela está sempre me importunando dizendo-me que eu deveria sair do que ela considera ser a sua casa, quando na verdade é a minha casa e é ela que deveria se mudar para que as coisas possam se acalmar.||{{N|elwyl_8|||||}}|}; -{elwyl_8|Argh. Estou tão chateado com ela!||{ - {Boa sorte com isso. Vou deixá-las com sua briga.|X|||||} - {Existe algo que eu possa fazer para ajudar?|elwyl_9|||||} - {Algumas pessoas têm reclamado que a sua disputa os têm mantido acordados à noite.|elwyl_10|sisterfight:10||||} - }|}; -{elwyl_9|Sim, você deve sair! Eu nunca te convidei aqui. Vá embora, antes que eu chame os guardas!|||}; -{elwyl_10|É o que eu sempre digo a ela, para simplificar. Ela insiste em gritar comigo quando discutimos. Eu acho que toda a sua gritaria deve ter tornado-a meia surda, pois eu também tenho que gritar com ela para fazê-la entender.||{{N|elwyl_11|||||}}|}; -{elwyl_11|Ela não para também. Não me lembro mais há quanto tempo isso tem acontecido, isto acontece há praticamente uma eternidade.|{{0|sisterfight|20|}}|{{N|elwyl_12|||||}}|}; -{elwyl_12|Oh, minha irmã é tão teimosa! Você sabe, na noite passada, eu estava falando com ela sobre as poções que Hjaldar costumava fazer. O cheiro de sua fabricação costumava ser sentido em nossa casa... quer dizer... em minha casa.||{{N|elwyl_13|||||}}|}; -{elwyl_13|Então, eu estava falando com ela sobre as poções de foco precisão e como eu sempre pensei que o sua coloração azulada parecia tão estranha, já que ele não usava ingredientes azuis na sua fabricação.||{{N|elwyl_14|||||}}|}; -{elwyl_14|Então, de repente, ela começou a discutir comigo sobre como eu tenho estado completamente errada. Ela insiste que as poções eram verdes.||{{N|elwyl_15|||||}}|}; -{elwyl_15|Eu não consigo entender por que ela fez tal alvoroço visto que a poção era claramente azul. Lembro-me claramente. Argh, como ela é teimosa! Ela não quer sequer admitir que esteja errada!|{{0|sisterfight|30|}}|{ - {Você tem certeza de que era azul?|elwyl_16|||||} - {Por que fazer tal escarcel por conta da cor de alguma poção?|elwyl_17|||||} - {Há algo que eu possa fazer para ajudá-las?|elwyl_18|||||} - }|}; -{elwyl_16|Por quê... sim... claro. Eu não estou errada! Eram claramente azul.||{ - {Por que fazer um escarcel por conta da cor de alguma poção?|elwyl_17|||||} - {Há algo que eu possa fazer para ajudá-las?|elwyl_18|||||} - }|}; -{elwyl_17|Exatamente. Ela está claramente errada, por que não pode simplesmente admitir, e nós podemos seguir em frente?||{ - {Você tem certeza de que era azul?|elwyl_16|||||} - {Há algo que eu possa fazer para ajudá-las?|elwyl_18|||||} - }|}; -{elwyl_18|Talvez você possa ir visitar Hjaldar e conseguir um desses poções de precisão e ambos podemos mostrar que ela está claramente errada.||{{N|elwyl_19|||||}}|}; -{elwyl_19|Sua casa fica na costa nordeste da cidade. *Elwyl aponta para fora*||{{N|elwyl_20|||||}}|}; -{elwyl_20|No entanto, eu não sei por que ele não faz essas poções. Talvez ele ainda possua algumas em seu antigo suprimento que possa lhe dar.||{ - {Eu vou voltar com uma daqueles poções.|elwyl_21|||||} - {Não vou me envolver nisso. Você vai ter que resolver o seu próprio conflito.|elwyl_22|||||} - }|}; -{elwyl_21|Bom. Talvez quando você trouxer essa poção, ela vai concordar em que estava errada de uma vez!|{{0|sisterfight|31|}}||}; -{elwyl_22|Bah, vocês crianças nunca são bons com nada.|||}; -{elwyl_pot_1|Oh, é você de novo. O que você quer?||{ - {Eu tenho uma daquelas poções de precisão para você.|elwyl_res_1||pot_focus_ac|1|0|} - {Eu tenho uma poção forte de precisão para você.|elwyl_res_1||pot_focus_ac2|1|0|} - {Você falou sobre uma poção antes. Pode repetir?|elwyl_12|||||} - {Algumas pessoas têm reclamado que a sua disputa os têm mantido acordados à noite.|elwyl_10|sisterfight:10||||} - }|}; -{elwyl_res_1|Ah bom. Dê-me isso.|{{0|sisterfight|70|}}|{{N|elwyl_res_2|||||}}|}; -{elwyl_res_2|Huh, o que é isso? É amarelo .. Eu tinha certeza que ela costumava ser azul. Deixe-me cheirar para ter certeza de que é o tipo certo de poção.||{{N|elwyl_res_3|||||}}|}; -{elwyl_res_3|Hum, sim, cheira exatamente como eu me lembro. Deve ser a poção certa.||{{N|elwyl_res_4|||||}}|}; -{elwyl_res_4|Isto significa... Que Elwel que estava errada de qualquer maneira!||{{N|elwyl_res_5|||||}}|}; -{elwyl_res_5|Elwel, olha isso, você estava errada! A poção não era verde, como você disse, é amarela! Por que você não me escutou?!||{{N|elwyl_res_6|||||}}|}; -{elwyl_res_6|Elwel, você está sempre se esforçando para provar que estou errada. Olhe bem para isso, veja você mesma que você estava errada, de uma vez!||{ - {Que que seja, vocês duas não parecem se dar muito bem. Eu vou deixar vocês com a sua disputa.|elwyl_res_7|||||} - {Espero que vocês dois possam se dar bem algum dia.|elwyl_res_7|||||} - }|}; -{elwyl_res_7|Ei Elwel, você estava errada o tempo todo! Por que não você nunca vai admitir quando você está claramente errada?|{{0|sisterfight|71|}}||}; -{elwyl_cmp_1|Oh, é você de novo. Obrigado por me trazer aquela poção antes.||{{N|elwyl_res_7|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{hjaldar|||{ - {|hjaldar_pots_1|sisterfight:61||||} - {|hjaldar_r3|sisterfight:60||||} - {|hjaldar_r1|sisterfight:45||||} - {|hjaldar_7r|sisterfight:40||||} - {|hjaldar_1|||||} - }|}; -{hjaldar_1|Olá. Sou Hjaldar.||{{O que você faz aqui?|hjaldar_2|||||}}|}; -{hjaldar_2|Eu costumava ser um fabricante de porções. Na verdade, eu costumava ser o único fabricante de poções aqui em Remgard.||{{N|hjaldar_3|||||}}|}; -{hjaldar_3|Isso foi um bom negócio. As pessoas até mesmo viajavam até aqui de outras cidades pelas montanhas.||{{O que fez você parar?|hjaldar_4|||||}}|}; -{hjaldar_4|Bem, duas coisas. Em primeiro lugar, eu estou ficando mais velho e não tenho mais o desejo de trabalhar dias inteiros, fazendo poções para os outros.||{{N|hjaldar_5|||||}}|}; -{hjaldar_5|Em segundo lugar, eu fiquei sem a maioria dos ingredientes. Alguns deles são realmente difíceis de obter.||{ - {Pena. Foi bom falar com você, adeus.|X|||||} - {Eu estou procurando uma poção de precisão para as irmãs Elwille, você pode ajudar com isso?|hjaldar_6|sisterfight:31||||} - }|}; -{hjaldar_6|Oh, poções de precisão. Sim, aquelas eram populares. Infelizmente, não posso ajudá-lo com isso agora.||{{N|hjaldar_7|||||}}|}; -{hjaldar_7|Meu fornecimento de extrato de medula de Lyson secou. Sem o qual, não posso fazer poções que sejam úteis para alguma coisa, realmente.|{{0|sisterfight|40|}}|{ - {Pena. Obrigado assim mesmo. Tchau.|X|||||} - {Existe algum lugar que eu possa obter algum, e trazê-lo para você?|hjaldar_8|||||} - }|}; -{hjaldar_7r|Olá novamente. Desculpe por não ser capaz de ajudá-lo com as poções de precisão que você pediu.||{{N|hjaldar_7|||||}}|}; -{hjaldar_8|Duvido. É realmente difícil de encontrar. Apenas os mais bem abastecidos fabricantes de poção têm.||{{N|hjaldar_9|||||}}|}; -{hjaldar_9|Eu costumava abastecer meu estoque com meu velho amigo Mazeg. Eu não tenho nenhuma ideia de onde ele possa estar nestes dias, no entanto.||{{N|hjaldar_10|||||}}|}; -{hjaldar_10|Eu acho que, se você puder encontrá-lo, ele poderá ser capaz de fornecer-lhe um pouco de extrato de medula de Lyson.||{ - {Alguma ideia de onde eu poderia encontrá-lo?|hjaldar_12|||||} - {Isso parece muito trabalhoso. Esqueça a poção.|hjaldar_11|||||} - }|}; -{hjaldar_11|Ok então. Desculpe eu possa ajudá-lo. Tchau.|||}; -{hjaldar_12|Não, eu não sei. A última vez que o vi, ele foi para o oeste. Pela aparência de sua mochila, parecia que ele estava se preparando para uma longa viagem rumo oeste.||{{N|hjaldar_13|||||}}|}; -{hjaldar_13|Ele até tinha trajes para viajar através de climas mais frios - neve, gelo e esse tipo de coisa.|{{0|sisterfight|41|}}|{ - {Obrigado pela informação. Vou tentar encontrá-lo.|hjaldar_14|||||} - {Isso soa como muito trabalhoso.Esqueça a poção.|hjaldar_11|||||} - }|}; -{hjaldar_14|Boa sorte em sua busca. Se você encontrá-lo, o que eu duvido que você consiga, por favor, diga \'olá\' para ele de minha parte, e diga-lhe que estou bem.|{{0|sisterfight|45|}}||}; -{hjaldar_r1|Olá novamente. Será que você conseguiu encontrar o meu velho amigo Mazeg?||{ - {Sim, eu trouxe um pouco de extrato de medula de Lyson.|hjaldar_r2||lyson_marrow|1|0|} - {O que foi que você estava dizendo sobre as poções de precisão?|hjaldar_6|||||} - {O que fez você parar de fazer poções?|hjaldar_4|||||} - {Alguma ideia de onde eu poderia encontrar Mazeg?|hjaldar_12|||||} - }|}; -{hjaldar_r2|Oh uau. Sim, isso é, de fato, extrato de medula. Bom trabalho!|{{0|sisterfight|60|}}|{{N|hjaldar_r4|||||}}|}; -{hjaldar_r3|Obrigado por me trazer algum extrato de medula. Bom trabalho!||{{N|hjaldar_r4|||||}}|}; -{hjaldar_r4|Diga-me, você encontrou Mazeg ou você conseguiu isso em algum outro lugar?||{ - {Eu visitei Mazeg no povoado de Montanha das Águas Negras.|hjaldar_r5|||||} - {Você me fez correr todo o caminho para a Montanha das Águas Negras, espero que as poções valam a pena!|hjaldar_r5|||||} - }|}; -{hjaldar_r5|Montanha das Águas Negras? Eu receio que eu não saiba onde é. Não importa, eu espero que tudo esteja bem com o meu velho amigo.||{ - {Ele me disse para enviar seus cumprimentos mais calorosos.|hjaldar_r6|||||} - {Ele parecia um homem velho lamentável que já viveu o melhor de seus dias.|hjaldar_r7|||||} - }|}; -{hjaldar_r6|Bom. Bom. Fico feliz em saber que ele está bem.||{{N|hjaldar_r8|||||}}|}; -{hjaldar_r7|Admito que o tempo não ficou ao seu lado.||{{N|hjaldar_r8|||||}}|}; -{hjaldar_r8|De qualquer forma, vamos fazer essa poção que você pediu anteriormente. Eu já preparei os outros ingredientes para outra poção de antemão.||{{N|hjaldar_r9|||||}}|}; -{hjaldar_r9|Agora, vamos ver. Alguns destes .. *Hjaldar puxa alguns morangos e coloca-os em sua mistura*||{{N|hjaldar_r10|||||}}|}; -{hjaldar_r10|Adiciona um pouco isso em alguns frascos limpos ..||{{N|hjaldar_r11|||||}}|}; -{hjaldar_r11|Apenas uma pitada destes em um desses frascos ..||{{N|hjaldar_r12|||||}}|}; -{hjaldar_r12|Finalmente, o extrato de medula Lyson ..||{{N|hjaldar_r13|||||}}|}; -{hjaldar_r13|Isso. Agora só precisa lhes dar uma boa misturada.||{{N|hjaldar_r14|||||}}|}; -{hjaldar_r14|*Hjaldar agita vigorosamente os frascos, um em cada uma das suas mãos*||{{N|hjaldar_r15|||||}}|}; -{hjaldar_r15|Ah, isso deve servir. Aqui está. Uma poção de precisão e uma poção de dano. Espero que seja útil.|{{0|sisterfight|61|}{1|hjaldar_pots|0|}}|{ - {Que seja. Espero que todo esse trabalho valha a pena!|X|||||} - {Obrigado.|X|||||} - }|}; -{hjaldar_pots_1|Obrigado por entrar em contato com Mazeg para mim anteriormente. Com este extrato de medula de Lyson que você me trouxe, eu posso agora fazer outras poções para você, se você precisar.||{ - {Deixe-me ver que poções que você tem.|S|||||} - {Você é bem-vindo, adeus.|X|||||} - }|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{mazeg|||{ - {|mazeg_1|bwm_agent:240||||} - {|mazeg_2|||||} - }|}; -{mazeg_1|Amigo, bem-vindo! Gostaria de olhar minha seleção de multa poções e pomadas?||{ - {Claro. Mostre-me o que você tem.|S|||||} - {Eu estou procurando algum extrato de medula de Lyson, paraHjaldar em Remgard.|mazeg_e_1|sisterfight:45||||} - }|}; -{mazeg_2|Viajante, bem-vindo. Você veio para pedir minha ajuda e a de minhas poções?||{ - {Sim. Por favor, mostre-me o que você tem.|blackwater_notrust|||||} - {Eu estou procurando algum extrato de medula de Lyson, para Hjaldar em Remgard.|mazeg_e_1|sisterfight:45||||} - }|}; -{mazeg_e_1|||{ - {|mazeg_d|sisterfight:55||||} - {|mazeg_e_5b|sisterfight:51||||} - {|mazeg_e_5b|sisterfight:50||||} - {|mazeg_e_2|||||} - }|}; -{mazeg_d|Eu já lhe vendi um pouco antes. Será que você perdeu? Por favor, diga a meu velho amigo Hjaldar velho amigo que eu disse: Olá.|||}; -{mazeg_e_2|Hjaldar, meu velho amigo! Diga-me, como ele está, nestes dias?||{ - {Ele me pediu para retransmitir suas saudações para você, e para lhe dizer que ele está bem.|mazeg_e_3|||||} - {Ele está doente, e piora a cada dia.|mazeg_e_4|||||} - }|}; -{mazeg_e_3|Oh, estou tão feliz em ouvir isso! Temos certeza que tivemos bons momentos ​enquanto trabalhávamos juntos.||{{N|mazeg_e_5|||||}}|}; -{mazeg_e_4|Sinto muito por ouvir isso. Ele sempre me pareceu um velho resistente para mim.||{{N|mazeg_e_5|||||}}|}; -{mazeg_e_5|Você pediu algum extrato de medula de Lyson.||{{N|mazeg_e_5b|||||}}|}; -{mazeg_e_5b|Claro, eu tenho isso.||{{N|mazeg_e_6|||||}}|}; -{mazeg_e_6|||{ - {|mazeg_e_7a|bwm_agent:240||||} - {|mazeg_e_7b|||||} - }|}; -{mazeg_e_7a|Como você nos ajudou até aqui no assentamento Montanha das Águas Negras antes, eu estou disposto a dar-lhe um desconto sobre o preço de algum extrato de medula de Lyson. Por 400 moedas de ouro, eu estou disposto a vender alguns deles para o meu velhoa amigo Hjaldar.|{{0|sisterfight|50|}}|{ - {Aqui está 400 moedas de ouro.|mazeg_e_9||gold|400|0|} - {Ai, está caro! Há algo que você possa fazer para baixar o preço?|mazeg_e_8a|||||} - {Eu vou voltar quando eu tiver o ouro para ele.|X|||||} - }|}; -{mazeg_e_8a|Não, custa 400 moedas de ouro. Esse é um preço muito bom, considerando o quão difícil isso é encontrar essa coisa. Além disso, se não fosse por Hjaldar, eu não iria mesmo estar vendendo isso para você.||{ - {Aqui está 400 moedas de ouro.|mazeg_e_9||gold|400|0|} - {Eu vou voltar quando eu tiver ouro suficiente para comprar.|X|||||} - }|}; -{mazeg_e_7b|Por 800 moedas de ouro, eu estou disposto a vender alguns deles para o meu velho amigo Hjaldar.|{{0|sisterfight|51|}}|{ - {Aqui está 800 moedas de ouro.|mazeg_e_9||gold|800|0|} - {Ai, está caro! Há algo que você pode fazer para baixar o preço?|mazeg_e_8b|||||} - {Eu vou voltar quando eu tiver ouro suficiente para comprar.|X|||||} - }|}; -{mazeg_e_8b|Não, 800 moedas de ouro é o preço. Esse é um preço muito bom, considerando o quão difícil isso é encontrar essa coisa. Além disso, se não fosse por Hjaldar, eu não iria mesmo estar vendendo isso para você.||{ - {Aqui está 800 moedas de ouro.|mazeg_e_9||gold|800|0|} - {Eu vou voltar quando eu tiver ouro suficiente para comprar.|X|||||} - }|}; -{mazeg_e_9|Obrigado. Aqui está um pouco de extrato de medula de Lyson.|{{0|sisterfight|55|}{1|lyson_marrow|0|}}|{{N|mazeg_e_10|||||}}|}; -{mazeg_e_10|Por favor, dê os meus mais calorosos cumprimentos ao meu bom amigo Hjaldar. Diga-lhe que estou bem.||{ - {Vou fazer. Obrigado e adeus.|X|||||} - {Que seja. Tchau.|X|||||} - }|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{sign_waterwaycave|Você percebe uma leve brisa soprando através de seus tornozelos enquanto você está admirando a qualidade do tecido da bobina da corda.||{ - {Pegue a corda.|sign_waterwaycave2|||||} - {Deixe-a onde está.|X|||||} - }|}; -{sign_waterwaycave2|Apesar de seus esforços para pegar a corda, você acha que ela está passando pelo que parece ser uma rachadura na parede de pedra diante de você. Infelizmente, esta parece ser uma aventura para um outro dia.|||}; -{sign_bwm31|(Você percebe alguns papéis rasgados no chão. Pela aparência delas, essas páginas parecem ter sido arrancadas de um grande diário)||{{Leia o diário.|sign_bwm31_1|||||}}|}; -{sign_bwm31_1|Brakas, dia 4. Por que, oh porque eu fui aventurar-me aqui?||{{N|sign_bwm31_2|||||}}|}; -{sign_bwm31_2|Essas coisas são fortes demais para mim. O primeiro grupo deles caiu muito facilmente, mas estas .. coisas .. por aqui são muito fortes para mim.||{{N|sign_bwm31_3|||||}}|}; -{sign_bwm31_3|Agora estou quase sem poções também.||{{N|sign_bwm31_4|||||}}|}; -{sign_bwm31_4|Enquanto estou escrevendo este diário, eu posso ouvi-los uivando fora da cabana. Eu preciso descansar um pouco mais antes que eu possa ter alguma chance para matar alguns deles novamente.||{{N|sign_bwm31_5|||||}}|}; -{sign_bwm31_5|(O papel está cheio de sujeira, mas você ainda consegue ler a maior parte dele)||{{Continuar lendo.|sign_bwm31_6|||||}}|}; -{sign_bwm31_6|Brakas, dia 7. Pela Sombra, eu não posso nem descer a montanha agora! Essas coisas estão no caminho, e eu sou muito fraco para passar por eles agora.||{{N|sign_bwm31_7|||||}}|}; -{sign_bwm31_7|Minhas poções agora estão todas esgotadas. Como vou sair daqui?!||{{N|sign_bwm31_8|||||}}|}; -{sign_bwm31_8|Estou ficando mais fraco. Devo descansar.||{{Continuar lendo.|sign_bwm31_9|||||}}|}; -{sign_bwm31_9|Brakas, dia 9. Sucesso! Eu consegui matar alguns dos monstros que estavam mais próximos da cabana, e alguns deles estavam carregando frascos de cura menor que eu consegui pegar!||{{N|sign_bwm31_10|||||}}|}; -{sign_bwm31_10|Eu não me lembro de estar tão feliz em ver algumas dessas poções!||{{N|sign_bwm31_11|||||}}|}; -{sign_bwm31_11|Com elas, eu poderia ser capaz de descer a montanha de novo!||{{N|sign_bwm31_12|||||}}|}; -{sign_bwm31_12|Ha ha, esses bastardos de Prim lá em baixo não vão se livrar de mim tão facilmente.||{{N|sign_bwm31_13|||||}}|}; -{sign_bwm31_13|Talvez se eu recolher o suficiente dessas poções dos monstros próximos a essa cabana, eu possa ter o suficiente novamente para descer em segurança.||{{Continuar lendo.|sign_bwm31_14|||||}}|}; -{sign_bwm31_14|Brakas, dia 10. Eu já consegui reunir bastante poções de cura para se sentir confiante de que vou conseguir descer vivo.||{{N|sign_bwm31_15|||||}}|}; -{sign_bwm31_15|Eu só espero que essas cobras repugnantes fiquem longe de mim desta vez, com seu veneno desagradável.||{{N|sign_bwm31_16|||||}}|}; -{sign_bwm31_16|Se a sorte estiver do meu lado, eu poderia até estar na segurança de casa ao anoitecer.||{{N|sign_bwm31_17|||||}}|}; -{sign_bwm31_17|(o diário não tem mais páginas)|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{jhaeld|||{ - {|jhaeld_idol_1|fiveidols:41||||} - {|jhaeld_completed|remgard2:45||||} - {|jhaeld_killalg_3|remgard2:41||||} - {|jhaeld_killalg_2|remgard2:40||||} - {|jhaeld_killalg|remgard2:21||||} - {|jhaeld_alg_3|remgard2:10||||} - {|jhaeld_rejected|remgard:110||||} - {|jhaeld_return8|remgard:80||||} - {|jhaeld_return6|remgard:75||||} - {|jhaeld_return1|remgard:50||||} - {|jhaeld_1|||||} - }|}; -{jhaeld_1|O que, quem é você? Não me incomode, criança. Nós não queremos que as crianças passeiem por aqui.||{ - {Você é Jhaeld? Eu fui enviado aqui para ajudá-lo a investigar as pessoas desaparecidas.|jhaeld_3|||||} - {Ei, cuidado com o seu tom. Seria uma pena se mais alguém de seu povo... desaparece.|jhaeld_2|||||} - }|}; -{jhaeld_2|Hrmpf. Eu não levo ameaças facilmente. Especialmente quando vem de um fedelho como você.||{ - {Eu fui enviado aqui para ajudá-lo a investigar as pessoas desaparecidas.|jhaeld_3|||||} - {É melhor se acostumar com isso, com uma atitude como essa.|jhaeld_leave|||||} - }|}; -{jhaeld_reject||{{0|remgard|110|}}|{{|jhaeld_leave|||||}}|}; -{jhaeld_leave|Eu acho que é melhor sair, antes que qualquer coisa ruim aconteça com você.|||}; -{jhaeld_3|Sim, sim. As pessoas desaparecidas. O que poderia um garoto como você ajudar, ein?||{ - {Eu estava pensando que você poderia me fornecer algumas tarefas para ajudá-lo com a investigação.|jhaeld_4|||||} - {O guarda ponte me disse para falar com você.|jhaeld_4|||||} - }|}; -{jhaeld_4|Hum, agora que você está aqui você pode muito bem tornar-se útil, em vez de apenas estar parado aí com esse olhar estúpido. Mesmo você sendo uma criança, você pode ser capaz de coletar algumas informações para mim.||{ - {Claro, do que você precisa?|jhaeld_7|||||} - {Suspiro. Ok. Eu acho.|jhaeld_7|||||} - {Eu prefiro matar alguma coisa.|jhaeld_6|||||} - {Ei, cuidado com o o que diz!|jhaeld_5|||||} - }|}; -{jhaeld_5|Não, você deveria moderar seu tom! Lembre-se de onde você está e com quem você está falando. Eu sou Jhaeld, e você está em Remgard - o que poderia ser chamado de *minha* cidade.||{ - {Certo. Do que você precisa?|jhaeld_7|||||} - {Você não me assusta, velho!|jhaeld_leave|||||} - }|}; -{jhaeld_6|Ha ha. Você? Matar alguma coisa? Agora essa é a coisa mais engraçada que eu ouvi durante todo o dia. Apenas isso.||{ - {Ei, cuidado com o seu tom!|jhaeld_5|||||} - {Sei me cuidar. Do que você precisa?|jhaeld_7|||||} - {É só esperar e ver.|jhaeld_7|||||} - }|}; -{jhaeld_7|(Suspiro) Sequer pensar que precisamos obter ajuda de crianças como mensageiros nesses dias.||{{N|jhaeld_8|||||}}|}; -{jhaeld_8|Eu acho que você sabe já sabe o histórico dessa situação. Tivemos algumas pessoas desaparecidas dentre nós há algum tempo. Nós não temos ideia do que aconteceu com as pessoas que desapareceram, ou mesmo se eles ainda estão vivas.||{{N|jhaeld_9|||||}}|}; -{jhaeld_9|Considerando como muitos são os que desapareceram sem que ninguém saiba o que aconteceu, não parece que eles estejão viajando.|{{0|remgard|40|}}|{{N|jhaeld_10|||||}}|}; -{jhaeld_10|Ok, então o que eu gostaria que você fizesse para mim é pedir a algumas pessoas que conhecem as pessoas desaparecidas. O fato de que você não seja daqui pode ajudá-lo a obter informações que nem eu nem meus guardas seriamos capazes de adquirir.||{ - {Som bastante simples.|jhaeld_14|||||} - {Claro, eu vou fazê-lo. Quem você quer que eu procure?|jhaeld_14|||||} - {Eu não estou muito certo sobre isso. Haverá uma recompensa?|jhaeld_11|||||} - {Eu não estou muito certo sobre isso. Por que eu irei ajudar vocês?|jhaeld_13|||||} - }|}; -{jhaeld_11|O quê, você tem a arrogância de pedir uma recompensa por nos ajudar a encontrar as pessoas que estão faltando? Se é ouro que você procura, eu sugiro que você procure em outro lugar.||{ - {Bem, eu vou fazê-lo. Quem você quer que eu procure?|jhaeld_14|||||} - {Sem recompensa, sem ajuda.|jhaeld_12|||||} - }|}; -{jhaeld_12|Eu sabia que você era apenas problema. Suspiro. Por favor, deixe-me.||{ - {Bem, eu vou fazê-lo. Quem você quer que eu procure?|jhaeld_14|||||} - {Como quiser.|jhaeld_reject|||||} - }|}; -{jhaeld_13|Porque? Seria a coisa certa a fazer, claro. Se você não consegue entender isso, é melhor ir para outro lugar.||{ - {Bem, eu vou fazê-lo. Quem você quer que eu procure?|jhaeld_14|||||} - {Não vou fazer isso. Não vejo por que eu deveria ajudá-lo.|jhaeld_reject|||||} - }|}; -{jhaeld_14|Há quatro pessoas aqui em Remgard que eu acredito que possam dizer mais do que aquilo que conseguimos extrair deles. Eu quero que você vá perguntar a eles o que eles sabem dos desaparecimentos.|{{0|remgard|50|}}|{{N|jhaeld_15|||||}}|}; -{jhaeld_15|Primeiro, tem o Norath e sua esposa Bethir que vivem na casa da fazenda na costa sudoeste. Bethir está desaparecida, e Norath pode saber mais sobre onde ela poderia estar.|{{0|remgard|51|}}|{{N|jhaeld_16|||||}}|}; -{jhaeld_16|Em segundo lugar, como você pode ter ouvido, fomos abençoados com a visita de uma delegação dos Cavaleiros de Elythom aqui em Remgard. Infelizmente, um dos cavaleiros desapareceu, o que é muito constrangedor para nós. Eles podem ser encontrados aqui na taverna.|{{0|remgard|52|}}|{{N|jhaeld_17|||||}}|}; -{jhaeld_17|Em terceiro lugar, a anciã Duaina geralmente tem uma grande sabedoria a compartilhar, considerando a experiência que ela tem com... coisas fora do comum. Você vai encontrá-la em sua casa, ao sul.|{{0|remgard|53|}}|{{N|jhaeld_18|||||}}|}; -{jhaeld_18|Por último, você deve ir falar com Rothses, o armeiro na cidade. Ele se encontra com a maioria das pessoas e, em seguida, e poderia ter pego algo que ele não ousaria contar aos guardas. Sua casa fica no lado oeste da cidade.|{{0|remgard|54|}}|{{N|jhaeld_19|||||}}|}; -{jhaeld_19|Por favor seja tão rápido quanto possível.||{ - {E sobre aquela mulher, Algangror, que vive fora da cidade?|jhaeld_21|remgard:30||||} - {Eu vou perguntar a eles.|jhaeld_20|||||} - }|}; -{jhaeld_20|Como eu disse, por favor, seja o mais rápido possível.|||}; -{jhaeld_21|O que foi isso? Você ainda está aqui? Eu lhe disse para ser tão rápido quanto possível.|{{0|remgard|59|}}|{ - {O que tem ela? O guarda da ponte enviou-me a investigar aquela casa, e parecia muito chateado quando eu mencionei que ela estava lá.|jhaeld_22|||||} - {Eu vou procurar essas pessoas que você mencionou.|jhaeld_20|||||} - }|}; -{jhaeld_22|Você não me ouve? Eu lhe disse para ser tão rápido quanto possível! Isso significa que você deve ir falar com as pessoas em vez de estar aqui jogando conversa fora.||{ - {Mas o guarda ponte parecia ...|jhaeld_23|||||} - {Mas eu pensei que ...|jhaeld_23|||||} - {E sobre o ...|jhaeld_23|||||} - {Eu vou procurar essas pessoas que você mencionou.|jhaeld_20|||||} - }|}; -{jhaeld_23|Você ainda está falando? Eu sabia que você era nada além de problemas no momento em que a vi. Agora, por favor você pode se apressar e ir falar com essas pessoas?||{ - {Certo. Eu vou perguntar a eles.|jhaeld_20|||||} - }|}; -{jhaeld_rejected|E agora? Olha, nós não queremos que crianças como você fiquem zanzando por aqui, mexendo com nossas coisas.||{{N|jhaeld_leave|||||}}|}; -{jhaeld_return1|Você falou com as pessoas que eu lhe enviei para perguntar sobre as pessoas desaparecidas?||{ - {Sim, eu falei com todos eles.|jhaeld_return2|remgard:70||||} - {Você pode repetir os nomes das pessoas que você queria que eu procurasse?|jhaeld_14|||||} - {Eu não estou muito certo sobre isso. Haverá uma recompensa?|jhaeld_11|||||} - {Eu não estou muito certo sobre isso. Por que eu iria ajudar vocês?|jhaeld_13|||||} - {Ainda não, mas eu irei.|jhaeld_19|||||} - }|}; -{jhaeld_return2|Bem, o que você descobriu?||{ - {Nada. Nenhum deles me disse nada de novo sobre as pessoas desaparecidas.|jhaeld_return3|||||} - }|}; -{jhaeld_return3|Então .. Deixe-me entender direito. Você foi e perguntou-lhes sobre as pessoas desaparecidas, e que não lhe disseram nada de novo?||{ - {Não. Nenhum deles tinha nada de novo a dizer.|jhaeld_return4|||||} - {Você me ouviu pela primeira vez.|jhaeld_return4|||||} - {Talvez você devesse ter me mandou perguntar a outras pessoas do que esses perdedores que voce me mandou procurar.|jhaeld_return4|||||} - }|}; -{jhaeld_return4|Ah, eu sabia que você era nada além de problemas no momento em que o vi.||{{N|jhaeld_return5|||||}}|}; -{jhaeld_return5|Enviei-lhe para fazer uma tarefa simples, e você voltou com... nada!||{{N|jhaeld_return6|||||}}|}; -{jhaeld_return6|(Jhaeld murmura) crianças estúpidas ..|{{0|remgard|75|}}|{{N|jhaeld_return7|||||}}|}; -{jhaeld_return7|Certo então.||{{N|jhaeld_return8|||||}}|}; -{jhaeld_return8|Sugiro que você vá olhar em outros lugares, se você realmente quer nos ajudar.|{{0|remgard|80|}}|{{N|jhaeld_return_s|||||}}|}; -{jhaeld_return_s|||{ - {|jhaeld_task2_n|fiveidols:20||||} - {|jhaeld_task2_f|remgard:59||||} - {|jhaeld_task2_y|remgard:30||||} - {|jhaeld_task2|||||} - }|}; -{jhaeld_task2_f|Talvez alguém saiba algo que nós não tenhamos levado em conta. Além disso, eu me lembro de você dizer algo sobre Algangror antes, não é mesmo?||{{Sim. Como eu tentei dizer-lhe, Algangror está escondida na casa abandonada fora da cidade.|jhaeld_alg_3|||||}}|}; -{jhaeld_task2_y|Talvez alguém saiba algo que nós não tenhamos levado em conta.||{ - {O guarda ponte enviou-me para explorar uma casa abandonada fora da cidade.|jhaeld_alg_1|||||} - {Será que o nome \'Algangror\' significa alguma coisa para você?|jhaeld_alg_2|||||} - }|}; -{jhaeld_task2|Talvez alguém saiba algo que nós não tenhamos levado em conta.||{ - {O guarda ponte enviou-me para explorar uma casa abandonada fora da cidade.|jhaeld_alg_1|||||} - {Eu poderia saber algo, mas prometi não contar a ninguém.|jhaeld_task2_1|remgard:31||||} - {Eu não sei de mais nada.|jhaeld_task2_n|||||} - {Eu vou procurar ao redor.|jhaeld_task2_n|||||} - }|}; -{jhaeld_task2_1|Um segredo, né? Você faria bem se me dissesse o que sabe. Vidas podem estar em jogo aqui.||{ - {O guarda ponte enviou-me para explorar uma casa abandonada fora da cidade.|jhaeld_alg_1|||||} - {Não, eu vou manter minha palavra, e não dizer.|jhaeld_task2_2|||||} - {Não importa, não era nada.|jhaeld_task2_n|||||} - {Não importa, eu vou perguntar se alguém mais sabe de algo.|jhaeld_task2_n|||||} - }|}; -{jhaeld_task2_2|Ah, alguém com honra. Eu respeito isso, e não vou perguntar mais nada.||{{N|jhaeld_task2_n|||||}}|}; -{jhaeld_task2_n|Não tenho mais nada para lhe dizer.|||}; -{jhaeld_alg_1|Hm, sim, e daí?||{{Eu conheci uma mulher chamada Algangror naquela casa.|jhaeld_alg_2|||||}}|}; -{jhaeld_alg_2|Algangror?! Esse é um nome que eu não ouço faz muito tempo.||{{Algangror está escondida na casa abandonada fora da cidade.|jhaeld_alg_3|||||}}|}; -{jhaeld_alg_3|Se Algangror está aqui, esta é uma notícia realmente sombria.|{{0|remgard2|10|}}|{{N|jhaeld_alg_4|||||}}|}; -{jhaeld_alg_4|Para ser honesto, eu tinha ouvido falar sobre isso antes, mas eu desconsiderei toda a conversa pois eu não acreditei nisso. Agora que você também me afirma isso eu estou começando a pensar que isso talvez possa ser verdade. Ela pode ter retornado.||{{Quem é ela?|jhaeld_alg_5|||||}}|}; -{jhaeld_alg_5|Ela morava aqui em Remgard, durante os dias de prosperidade. Ela ainda ajudou com as colheitas em alguns anos.||{{N|jhaeld_alg_6|||||}}|}; -{jhaeld_alg_6|Então algo aconteceu. Ela começou a ter idéias, e, ocasionalmente, se trancou em sua casa por vários dias. Ninguém sabia o que estava fazendo ali, mas todos sabíamos que nada era de bom.||{{N|jhaeld_alg_7|||||}}|}; -{jhaeld_alg_7|Ainda me lembro do cheiro que vinha da casa dela. Ugh. O que poderia cheirar tão ruim assim?||{{N|jhaeld_alg_8|||||}}|}; -{jhaeld_alg_8|De qualquer forma, começamos a questioná-la, e tentamos persuadi-la a dizer o que ela estava fazendo. Teimosa e louca como ela estava, se recusou, é claro.||{{N|jhaeld_alg_9|||||}}|}; -{jhaeld_alg_9|As coisas começaram a piorar, e o mau cheiro se espalhava como uma névoa profunda sobre toda a cidade. Todos nós que vivemos aqui em Remgard sabiamos que tinhamos que agir antes que ela fizesse algo que poderia prejudicar a todos nós.||{{N|jhaeld_alg_10|||||}}|}; -{jhaeld_alg_10|Assim, forçamo-la a se explicar.||{{E ela contou?|jhaeld_alg_11|||||}}|}; -{jhaeld_alg_11|Você acredita, ela nos disse que ela acreditava que o que ela fazia não era da nossa conta. Ela ainda teve o estômago para nos dizer que queria ser deixada sozinha.||{{O que você fez?|jhaeld_alg_12|||||}}|}; -{jhaeld_alg_12|É claro que fiz o que qualquer homem sensato faria. Nós a obrigamos a abandonar sua casa e encontrar outro lugar para viver. Em algum lugar diferente Remgard.||{{N|jhaeld_alg_13|||||}}|}; -{jhaeld_alg_13|Você deveria tê-la ter visto. Unhas tão longas quanto os dedos, e o rosto dela cheio de cabelo sujo. Claramente, ela era louca e não poderia ser razoável.||{{N|jhaeld_alg_14|||||}}|}; -{jhaeld_alg_14|Quando ela caminhava pela cidade, as crianças começavam a gritar de pavor por causa dela.||{{N|jhaeld_alg_15|||||}}|}; -{jhaeld_alg_15|A pior coisa, porém, é que ela disse que iria lançar uma maldição sobre todos nós.||{{N|jhaeld_alg_16|||||}}|}; -{jhaeld_alg_16|Tudo isso foi a vários trimestres atrás, e as coisas têm retornado a seu ritmo normal deste então.||{{E estava assim, até então, antes do seu retorno.|jhaeld_alg_17|||||}}|}; -{jhaeld_alg_17|Sim. Seu retorno explicaria as pessoas desaparecidas. Ela deve ter feito alguma coisa com eles. Eu temo pelo pior.||{{N|jhaeld_alg_18|||||}}|}; -{jhaeld_alg_18|Considerando as pessoas que desapareceram, eu sinceramente não sei o que fazer. Como você sabe, até mesmo um dos Cavaleiros de Elythom desapareceu.||{{N|jhaeld_alg_19|||||}}|}; -{jhaeld_alg_19|Alguém que possa fazer isso é realmente perigosa. Eu não tenho certeza se iria mesmo arriscar a enviar os guardas lá fora, atrás ela, com medo do que ela poderia fazer.||{{Então, o que fazer?|jhaeld_alg_20|||||}}|}; -{jhaeld_alg_20|Se eu tivesse que escolher, eu preferiria não lidar com isso, e apenas selar a ponte da cidade para estar tão segura quanto possível, para evitar que mais pessoas continuem desaparecendo.|{{0|remgard2|20|}}|{{N|jhaeld_alg_21s|||||}}|}; -{jhaeld_alg_21s|||{ - {|jhaeld_alg_21n|remgard2:21||||} - {|jhaeld_alg_21|||||} - }|}; -{jhaeld_alg_21n|Eu... Eu não sei o que fazer.|||}; -{jhaeld_alg_21|Eu... Eu não sei o que fazer.||{ - {Eu poderia ajudá-lo, se quiser.|jhaeld_alg_24|||||} - {Você é um idiota patético. Você prefere sentar aqui e não fazer nada, em vez de confrontá-la?|jhaeld_alg_22|||||} - {Hah, parece chato ser você!|jhaeld_alg_23|||||} - }|}; -{jhaeld_alg_22|Eu não vou ver mais do meu povo se machucar, ou o que quer que ela tenha feito para eles. Vou manter o meu povo seguro.||{ - {Eu poderia ajudá-lo, se quiser.|jhaeld_alg_24|||||} - {Hah, parece chato ser você!|jhaeld_alg_23|||||} - }|}; -{jhaeld_alg_23|Insultos não vão ajudar a chegar a lugar algum. As pessoas que desapareceram ainda estão faltando, e mais alguém pode ser ferida, enquanto você anda por aí distribuindo insultos. Tenho pena de você.||{ - {Eu poderia ajudá-lo, se quiser.|jhaeld_alg_24|||||} - {Você idiota patético. Você prefere sentar aqui e não fazer nada, em vez de confrontá-la?|jhaeld_alg_22|||||} - }|}; -{jhaeld_alg_24|Se você realmente quiser nos ajudar, por favor, tenha cuidado. Não se pode confiar nela.||{{N|jhaeld_alg_25|||||}}|}; -{jhaeld_alg_25|No entanto, se você encontrar uma maneira de fazê-la desaparecer, nós naturalmente teríamos para sempre uma dívida com você.||{ - {Vou ver o que posso fazer.|jhaeld_alg_26|||||} - {Eu tenho lidado com inimigos mais fortes.|jhaeld_alg_27|||||} - }|}; -{jhaeld_alg_26|Lembre-se, por favor, tenha cuidado! Eu não quero ser responsável por outra pessoa desaparecer.|{{0|remgard2|21|}}||}; -{jhaeld_alg_27|Eu duvido.||{{N|jhaeld_alg_26|||||}}|}; -{jhaeld_killalg|Olá novamente. Que novidades você traz?||{ - {Você pode me contar a história de Algangror novamente?|jhaeld_alg_5|||||} - {Eu ainda estou tentando encontrar uma maneira de fazer Algangror desaparecer.|jhaeld_alg_26|||||} - {Algangror está morta.|jhaeld_killalg_1|remgard2:35||||} - }|}; -{jhaeld_killalg_1|Acho isso muito difícil de acreditar. Matar Algangror é uma tarefa difícil, dado o seu poder.||{ - {Eu lhe trouxe o anel dela como prova de que o que eu digo é verdade.|jhaeld_killalg_1b||algangror_ring|1|0|} - {Não, não importa. Eu realmente não a derrotei ainda.|jhaeld_alg_26|||||} - }|}; -{jhaeld_killalg_1b|Eu mal posso acreditar! Sim, este é realmente o seu anel.|{{0|remgard2|40|}}|{{N|jhaeld_killalg_2|||||}}|}; -{jhaeld_killalg_2|Você realmente a derrotou? Estou tão aliviado! Diga-me, o quão louco ela estava? Não, não me diga, eu não quero ouvir mais dessa sujeira.||{{N|jhaeld_killalg_3|||||}}|}; -{jhaeld_killalg_3|Isso significa que o povo de Remgard está agora a salvo dela, e é tudo graças a você! Quem diria.|{{0|remgard2|41|}}|{{N|jhaeld_killalg_4|||||}}|}; -{jhaeld_killalg_4|Eu... Eu não sei o que dizer. Obrigado, isso é o mínimo que posso dizer.||{ - {Você é muito bem-vindo.|jhaeld_killalg_5|||||} - {Essa foi uma luta dura. Agora, vamos falar da recompensa.|jhaeld_killalg_5|||||} - {Apenas mais outro corpo nas minhas costas.|jhaeld_killalg_5|||||} - }|}; -{jhaeld_killalg_5|Eu acho que a cidade inteira está em dívida, mas eles podem não saber disso.||{{N|jhaeld_killalg_6|||||}}|}; -{jhaeld_killalg_6|Vá falar com Rothses mais no lado oeste da cidade. Ele deve ser capaz de ajudar a melhorar alguns de seus equipamentos.|{{0|remgard2|45|}}|{{N|jhaeld_completed|||||}}|}; -{jhaeld_completed|Mais uma vez, obrigado por toda sua ajuda.|||}; -{jhaeld_idol_1|Por favor, deixe-me, criança. Eu estou com um súbito ataque de náuseas. Eu provavelmente devo me deitar.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{norath|||{{|norath_1|||||}}|}; -{norath_1|Olá. Posso ajudá-lo?||{ - {eu fui enviado por Jhaeld para perguntar sobre sua esposa desaparecida.|norath_jhaeld1|remgard:51||||} - {Você tem alguma coisa para vender?|norath_2|||||} - {O que você faz aqui?|norath_3|||||} - }|}; -{norath_2|Eu? Não, eu não tenho nada para vender. Isto se parece com uma loja para você?||{ - {Eu fui enviado por Jhaeld para perguntar sobre sua esposa desaparecida.|norath_jhaeld1|remgard:51||||} - {O que você faz aqui?|norath_3|||||} - }|}; -{norath_3|Bem, geralmente eu faço a colheita das culturas que crescem aqui. Agora, eu não posso encontrar a força para fazer isso, porém.||{ - {Por que, o que está errado?|norath_4|||||} - }|}; -{norath_4|Minha esposa, Bethir. Ela se foi, e ninguém parece saber onde ela está.||{{N|norath_5|||||}}|}; -{norath_5|Eu mesmo cheguei a ponto a ponto de pedir aos guardas para procurem por ela, mas ela está longe de ser encontrada.||{ - {Você tem certeza de que ela não está apenas fora da cidade passando alguns recados?|norath_6|||||} - {Onde você acha que ela foi?|norath_7|||||} - {Eu fui enviado por Jhaeld para lhe perguntar sobre ela.|norath_jhaeld1|remgard:51||||} - }|}; -{norath_6|Se fosse esse o caso, eu teria esperado que ela tivesse dito isso a mim primeiro. Não, eu posso sentir isso - Tenho certeza de que algo ruim aconteceu com ela.||{ - {Onde você acha que ela foi?|norath_7|||||} - {Eu fui enviado por Jhaeld para lhe perguntar sobre ela.|norath_jhaeld1|remgard:51||||} - }|}; -{norath_7|Para ser bem honesto, eu não tenho ideia.||{ - {Você tem certeza de que ela não está apenas fora da cidade passando alguns recados?|norath_6|||||} - {Eu fui enviado por Jhaeld para lhe perguntar sobre ela.|norath_jhaeld1|remgard:51||||} - }|}; -{norath_jhaeld1|O que você quer que eu diga? Ela está sumida.||{{Existe alguma coisa que você descobriu que você não disse ainda para os guardas?|norath_jhaeld2|||||}}|}; -{norath_jhaeld2|Não. Eu disse aos guardas toda a história. Se eu descobrisse mais, iria contar-lhes imediatamente, claro.||{{N|norath_jhaeld3|||||}}|}; -{norath_jhaeld3|Nós tivemos uma pequena briga, na noite anterior ao desaparecimento. Mas foi apenas uma pequena discussão, nada sério.||{{N|norath_jhaeld_s_1|||||}}|}; -{norath_jhaeld_s_1||{{0|remgard|61|}}|{{|norath_jhaeld_s_2|remgard:62||||}{|norath_jhaeld4|||||}}|}; -{norath_jhaeld_s_2|||{{|norath_jhaeld_s_3|remgard:63||||}{|norath_jhaeld4|||||}}|}; -{norath_jhaeld_s_3|||{{|norath_jhaeld_s_4|remgard:64||||}{|norath_jhaeld4|||||}}|}; -{norath_jhaeld_s_4||{{0|remgard|70|}}|{{|norath_jhaeld4|||||}}|}; -{norath_jhaeld4|Agora, se você me der licença, tenho coisas para cuidar.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{krell|||{{|krell_1|||||}}|}; -{krell_1|Bom dia. Eu sou o mestre Krell dos Cavaleiros de Elythom. Como podemos o ajudar?||{ - {Cavaleiros de Elythom? O que é isso?|krell_knights_1|||||} - {Eu fui enviado por Jhaeld para perguntar-lhe sobre as pessoas desaparecidas.|krell_jhaeld1|remgard:52||||} - {O que você faz aqui?|krell_2|||||} - }|}; -{krell_2|Eu e meu regimento de cavaleiros estamos apenas visitando Remgard por causa de,.. digamos... negócios inacabados.||{{N|krell_3|||||}}|}; -{krell_3|Quanto à natureza do nosso negócio aqui, isso é algo que eu prefiro não revelar.||{{N|krell_4|||||}}|}; -{krell_4|Servimos a ordem de Elythom.||{ - {O que é isso?|krell_knights_1|||||} - {Jhaeld enviou-me para perguntar sobre as pessoas desaparecidas.|krell_jhaeld1|remgard:52||||} - }|}; -{krell_knights_1|Somos uma ordem de cavaleiros que vêm de Brimhaven.||{{N|krell_knights_2|||||}}|}; -{krell_knights_2|Você deve visitar nosso batalhão em Brimhaven, se você alguma vez estiver por lá.||{{N|krell_knights_3|||||}}|}; -{krell_knights_3|Atendemos todos os tipos de clientes, desde os mais ricos até mesmo aos mais pobres dentre os pobres.||{{N|krell_knights_4|||||}}|}; -{krell_knights_4|Independentemente disso, nós sempre fazemos o trabalho.||{{Quais são os tipos de trabalho que você faz?|krell_knights_5|||||}}|}; -{krell_knights_5|Principalmente, nós ajudamos as pessoas a cobrar o ouro que outras pessoas lhes devem.||{{N|krell_knights_6|||||}}|}; -{krell_knights_6|Nós também ajudamos as pessoas a encontrar .. erm .. pessoas que estão desaparecidas.||{ - {Sobre isso, Jhaeld enviou-me para perguntar sobre as pessoas desaparecidas.|krell_jhaeld1|remgard:52||||} - {Boa sorte com isso.|X|||||} - }|}; -{krell_jhaeld1|Shh, não tão alto!||{{N|krell_jhaeld2|||||}}|}; -{krell_jhaeld2|Sim, ouvimos os relatos de que pessoas estão desaparecidas aqui em Remgard. Muita... falta de sorte.||{{N|krell_jhaeld3|||||}}|}; -{krell_jhaeld3|Tivemos até um de nossos cavaleiros desaparecendo de nosso grupo. Agora, devido à natureza de nossa ordem, eu presumo que você pode ver como isso nos coloca em uma .. situação peculiar.||{{N|krell_jhaeld4|||||}}|}; -{krell_jhaeld4|Veja você, geralmente, é nos cavaleiros que encontramos... pessoas desaparecidas. Agora, temos um dos nossos desaparecendo. Isso nunca aconteceu antes, e estamos muito inseguros sobre o que fazer sobre isso.||{{N|krell_jhaeld5|||||}}|}; -{krell_jhaeld5|Verdade seja dita, as pessoas em nossa ordem sucumbiram em combate ante inimigos mais fortes, mas apenas .. desaparecer sem deixar rastro, isso é inédito.||{{N|krell_jhaeld6|||||}}|}; -{krell_jhaeld6|Temos uma forte ligação um com o outro, e alguém deixar a ordem seria impensável.||{{N|krell_jhaeld7|||||}}|}; -{krell_jhaeld7|Como você pode ver, isso nos coloca em uma situação difícil.||{ - {O que você sabe sobre o cavaleiro que está faltando?|krell_jhaeld8|||||} - {Existe alguma coisa que você descobriu que você não disse para os guardas antes?|krell_jhaeld8|||||} - }|}; -{krell_jhaeld8|Bem, eu disse tudo que sabemos até agora aos guardas. Eles também parecem achar esta situação bastante embaraçosa, por não poderem nem mesmo manter um cavaleiro seguro aqui em sua cidade.||{{N|krell_jhaeld9|||||}}|}; -{krell_jhaeld9|Não temos pistas além do fato de que ele esteja faltando, infelizmente. Onde o nosso irmão cavaleiro está, ainda é um mistério para nós.||{ - {N|krell_jhaeld_s_1|||||} - }|}; -{krell_jhaeld_s_1||{{0|remgard|62|}}|{{|krell_jhaeld_s_2|remgard:61||||}{|krell_jhaeld10|||||}}|}; -{krell_jhaeld_s_2|||{{|krell_jhaeld_s_3|remgard:63||||}{|krell_jhaeld10|||||}}|}; -{krell_jhaeld_s_3|||{{|krell_jhaeld_s_4|remgard:64||||}{|krell_jhaeld10|||||}}|}; -{krell_jhaeld_s_4||{{0|remgard|70|}}|{{|krell_jhaeld10|||||}}|}; -{krell_jhaeld10|Para o bem da reputação da nossa ordem, por favor, mantenha isso para si mesmo, se possível. Nós não queremos que as pessoas tenham a percepção sobre Cavaleiros de Elythom enfraquecida, de forma alguma.|||}; -{elythom_knight1|Olá. O que os Cavaleiros de Elythom fazem por você?||{ - {Cavaleiros de Elythom? O que é isso?|elythom_knight1_2|||||} - {Essa armadura que vocês usam parece ser muito agradável.|elythom_knight1_3|||||} - }|}; -{elythom_knight1_2|Fale com o mestre Krell lá, ele pode dizer tudo sobre nós.|||}; -{elythom_knight1_3|Obrigado, é o conjunto padrão de armadura que nós usamos na ordem. Ela requer, no entanto, muita limpeza e polimento para torná-la impecável.|||}; -{elythom_knight2|Olá. *Tosse*||{ - {Quem é você?|elythom_knight1_2|||||} - {Essa armadura que vocês usam parece realmente ser muito agradável.|elythom_knight1_3|||||} - }|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{duaina|||{{|duaina_0|||||}}|}; -{duaina_0|Você! Eu vi você.||{ - {Jhaeld enviou-me para perguntar-lhe sobre as pessoas que desapareceram.|duaina_1|remgard:52||||} - {Eu acho que não, eu nunca estive aqui antes.|duaina_stop|||||} - {Sim, eu esteve aqui, lembra?|duaina_1|remgard:63||||} - }|}; -{duaina_1|Os sonhos e as visões. É você! A criança que desafia a besta. (Duaina dá-lhe um olhar aterrorizado)||{{Então você me viu em suas visões?|duaina_2|||||}}|}; -{duaina_2|A besta dormindo. Não, não. A luz ofuscante. Ah, por que você veio aqui? Você veio para mim?||{{O que você está falando?|duaina_3|||||}}|}; -{duaina_3|Nããão, por favor, me poupe!||{{Eu não estou aqui para te pegar, se é isso que você está com medo.|duaina_4|||||}}|}; -{duaina_4|Eu posso ver isso em você. Você tem o dom. O presente que irá destruir a besta. Minhas visões eram verdadeiras.||{{Talvez você esteja me confundindo com meu irmão Andor?|duaina_5|||||}}|}; -{duaina_5|Um irmão? Sim, isso deve ser o que eu vi em minhas visões. Está tudo ficando mais claras.||{{N|duaina_6|||||}}|}; -{duaina_6|A mão negra varre a terra. O animal que caça. Nããão! Deixar este lugar!||{{Eu não estou aqui para te machucar!|duaina_7|||||}}|}; -{duaina_7|A criança e o irmão. As pessoas inocentes. A besta lança sua sombra.||{{N|duaina_s_0|||||}}|}; -{duaina_s_0|Eu te vi em minhas visões.||{{N|duaina_s_1|||||}}|}; -{duaina_s_1|||{{|duaina_s_1a|flagstone:60||||}{|duaina_s_2|||||}}|}; -{duaina_s_1a|Matando a besta debaixo da prisão de Flagstone.||{{N|duaina_s_2|||||}}|}; -{duaina_s_2|||{{|duaina_s_2a|farrik:70||||}{|duaina_s_2b|farrik:90||||}{|duaina_s_3|||||}}|}; -{duaina_s_2a|Cooperando com os ladrões em Fallhaven.||{{N|duaina_s_3|||||}}|}; -{duaina_s_2b|Trabalhando contra os ladrões em Fallhaven.||{{N|duaina_s_3|||||}}|}; -{duaina_s_3|||{{|duaina_s_3a|bjorgur_grave:50||||}{|duaina_s_3b|bjorgur_grave:60||||}{|duaina_s_4|||||}}|}; -{duaina_s_3a|Algo sobre um punhal voltou a um ancestral em seu túmulo.||{{N|duaina_s_4|||||}}|}; -{duaina_s_3b|Alguma coisa sobre roubar um punhal em uma tumba escura.||{{N|duaina_s_4|||||}}|}; -{duaina_s_4|||{{|duaina_s_4a|benbyr:30||||}{|duaina_jhaeld_s_1|||||}}|}; -{duaina_s_4a|Matando ovelhas inocentes.||{{N|duaina_jhaeld_s_1|||||}}|}; -{duaina_jhaeld_s_1||{{0|remgard|63|}}|{{|duaina_jhaeld_s_2|remgard:61||||}{|duaina_8|||||}}|}; -{duaina_jhaeld_s_2|||{{|duaina_jhaeld_s_3|remgard:62||||}{|duaina_8|||||}}|}; -{duaina_jhaeld_s_3|||{{|duaina_jhaeld_s_4|remgard:64||||}{|duaina_8|||||}}|}; -{duaina_jhaeld_s_4||{{0|remgard|70|}}|{{|duaina_8|||||}}|}; -{duaina_8|(Duaina olha em você em silêncio, enquanto segura sua mão sobre a boca)||{ - {O que mais você viu em suas visões?|duaina_stop|||||} - {Eu não entendo.|duaina_stop|||||} - }|}; -{duaina_stop|(Duaina olha em você em silêncio)|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{rothses|||{ - {|rothses_c1|remgard2:45||||} - {|rothses_1|||||} - }|}; -{rothses_c1|O nosso herói entra em minha loja. Sinto-me honrado. Como posso ajudá-lo? Um novo conjunto de botas talvez, ou algumas luvas novas?||{ - {Deixe-me ver o que você tem para venda.|S|||||} - {Jhaeld me disse que você poderia me ajudar a melhorar meu equipamento.|rothses_c2|remgard2:45||||} - }|}; -{rothses_c2|Ah, sim, eu posso fazer modificações na maioria dos nossos equipamentos de defesa que eu vendo. Quer deixar-me olhar aquilo que você carrega para ver se há alguma coisa que eu possa melhorar para você?||{ - {Claro, vá em frente.|rothses_imp_s0|||||} - {Não, eu não quero que você mecha nas minhas coisas.|rothses_c3|||||} - {Talvez algum outro momento.|rothses_c3|||||} - }|}; -{rothses_c3|Claro. Eu ficaria honrado em tê-lo de volta, se você mudar de ideia.|||}; -{rothses_1|Oi. Como posso ajudá-lo? Um novo conjunto de botas talvez, ou algumas luvas novas?||{ - {Deixe-me ver o que você tem para venda.|S|||||} - {Jhaeld enviou-me para perguntar-lhe sobre as pessoas que desapareceram.|rothses_3s|remgard:52||||} - {Como é está o seu negócio?|rothses_2|||||} - }|}; -{rothses_2|Está tudo bem, eu acho. Não tão bom como eu gostaria que fosse, agora que as portas para a cidade estão fechadas. Mas as pessoas aqui ainda parecem precisar de novas peças de couro de vez em quando.||{ - {Deixe-me ver o que você tem para venda.|S|||||} - {Jhaeld enviou-me a perguntar-lhe sobre as pessoas que desapareceram.|rothses_3s|remgard:52||||} - }|}; -{rothses_3s|||{{|rothses_19|remgard:64||||}{|rothses_3|||||}}|}; -{rothses_3|Ah, eu não sei muito sobre isso. Engraçado você perguntar. (Rothses dá-lhe um olhar desconfiado)||{{Você tem certeza? Qualquer coisa que você saiba ou possa ter visto pode ser interessante.|rothses_4|||||}}|}; -{rothses_4|Bem, você talvez pense que eu vejo a maioria do que acontece por aqui, considerando a minha loja é esta perto de ponte que dá acesso a Remgard.||{{N|rothses_5|||||}}|}; -{rothses_5|No entanto, eu não sei nada sobre isso. *Tosse*||{ - {Existe algo que você não está me dizendo?|rothses_7|||||} - {Será que os guardas lhe perguntaram sobre o que você sabe?|rothses_6|||||} - }|}; -{rothses_6|Ah, sim, eles têm andado por aí perguntando isso a todos. Eu já disse a a eles sobre tudo o que sei.||{{N|rothses_7|||||}}|}; -{rothses_7|Eu vi Bethir na noite antes dela desaparecer. Ela tinha alguns equipamentos para a venda. Nada fora do comum, no entanto.||{{N|rothses_8|||||}}|}; -{rothses_8|Não vi onde ela foi depois disso.||{{N|rothses_9|||||}}|}; -{rothses_9|Olha, eu disse tudo isso para os guardas antes. Você está insinuando alguma coisa?||{ - {Vou ficar de olho em você.|rothses_jhaeld_s_1|||||} - {Obrigado por sua cooperação.|rothses_jhaeld_s_1|||||} - }|}; -{rothses_jhaeld_s_1||{{0|remgard|64|}}|{{|rothses_jhaeld_s_2|remgard:61||||}{|rothses_20|||||}}|}; -{rothses_jhaeld_s_2|||{{|rothses_jhaeld_s_3|remgard:62||||}{|rothses_20|||||}}|}; -{rothses_jhaeld_s_3|||{{|rothses_jhaeld_s_4|remgard:63||||}{|rothses_20|||||}}|}; -{rothses_jhaeld_s_4||{{0|remgard|70|}}|{{|rothses_20|||||}}|}; -{rothses_19|Olha, eu já lhe disse antes.||{{N|rothses_20|||||}}|}; -{rothses_20|Agora, se você me der licença, tenho coisas para fazer.|||}; -{rothses_imp_s0|Hum, deixe-me ver.||{{N|rothses_imp_s|||||}}|}; -{rothses_imp_s|||{{|rothses_imp_shield||remgard_shield_1|1|1|}{|rothses_imp_shield_w||remgard_shield_1|1|2|}{|rothses_imp_s3|||||}}|}; -{rothses_imp_s3|||{{|rothses_imp_gloves||gloves_combat1|1|1|}{|rothses_imp_gloves_w||gloves_combat1|1|2|}{|rothses_imp_s4|||||}}|}; -{rothses_imp_s4|||{{|rothses_imp_armour||armour_superior_chain|1|1|}{|rothses_imp_armour_w||armour_superior_chain|1|2|}{|rothses_imp_s5|||||}}|}; -{rothses_imp_s5|||{{|rothses_imp_n|||||}}|}; -{rothses_imp_n|Não, você não parece ter nada que eu possa melhorar. Volte mais tarde e eu poderia ser capaz de ajudá-lo.|||}; -{rothses_imp_shield|Você tem aí um escudo de Remgard que parece em bom estado. Por 700 moedas de ouro, eu sou capaz de melhorá-lo para que ele bloqueie golpes um pouco melhor.||{ - {Claro, aqui está o ouro.|rothses_imp_shield_1||gold|700|0|} - {Talvez mais tarde. Eu tenho alguma coisa que você pode melhorar?|rothses_imp_s3|||||} - }|}; -{rothses_imp_shield_1|||{{|rothses_imp_shield_2||remgard_shield_1|1|0|}{|rothses_imp_s3|||||}}|}; -{rothses_imp_shield_2|Aqui está. Um escudo de Remgard melhorado.|{{1|remgard_shield_2||}}|{{Não tenho qualquer outra coisa que você pode melhorar?|rothses_imp_s3|||||}}|}; -{rothses_imp_shield_w|Você está equipado com um bom escudo de Remgard. Remova-o de suas mãos e eu poderia ser capaz de ajudá-lo a melhorar, se quiser.||{{Mais alguma coisa?|rothses_imp_s3|||||}}|}; -{rothses_imp_gloves|Essas parecem ser são algumas boas luvas de combate que você tem aí. Por 300 moedas de ouro, eu sou capaz de melhorá-las para que elas bloqueiem golpes um pouco melhor.||{ - {Claro, aqui está o ouro.|rothses_imp_gloves_1||gold|300|0|} - {Talvez mais tarde. Eu tenho alguma coisa que você pode melhorar?|rothses_imp_s4|||||} - }|}; -{rothses_imp_gloves_1|||{{|rothses_imp_gloves_2||gloves_combat1|1|0|}{|rothses_imp_s4|||||}}|}; -{rothses_imp_gloves_2|Aqui está. Um par de luvas de combate melhoradas.|{{1|gloves_combat2||}}|{{Não tem qualquer outra coisa que você possa melhorar?|rothses_imp_s4|||||}}|}; -{rothses_imp_gloves_w|Essas são algumas boas luvas de combate que você está usando. Rema-as de suas mãos e eu poderia ser capaz de ajudá-la a melhorá-la, se quiser.||{{Mais alguma coisa?|rothses_imp_s4|||||}}|}; -{rothses_imp_armour|Agora, tem essa malha fina de boa aparência. Por 3000 moedas de ouro, eu sou capaz de melhorá-la para que não apenas bloquear melhor ataques, mas também dificultar menos seus ataques.||{ - {Claro, aqui está o ouro.|rothses_imp_armour_1||gold|3000|0|} - {Talvez mais tarde. Eu tenho mais alguma coisa que você pode melhorar?|rothses_imp_s5|||||} - }|}; -{rothses_imp_armour_1|||{{|rothses_imp_armour_2||armour_superior_chain|1|0|}{|rothses_imp_s5|||||}}|}; -{rothses_imp_armour_2|Aqui está. Uma cota de malha melhorada.|{{1|armour_chain_remg||}}|{{Não tenho qualquer outra coisa que você pode melhorar?|rothses_imp_s5|||||}}|}; -{rothses_imp_armour_w|Agora, tem essa malha fina de boa aparência. Tire-a de seu peito para que eu possa ser capaz de ajudá-lo a melhorar, se quiser.||{{Mais alguma coisa?|rothses_imp_s5|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{remgard_villager1|Eu não o reconheço. Você não é de Remgard, não é?||{ - {Não, eu sou de um pequeno povoado chamado Crossglen, e eu estou procurando meu irmão Andor.|remgard_villager1_2|||||} - }|}; -{remgard_villager1_2|Ok então. Boa sorte com isso.|||}; -{remgard_villager2|Não fique no meu caminho, eu estou tentando andar aqui, você não vê?||{ - {Não tem problema, por favor, vá em frente.|X|||||} - {Não, você saia do *meu* caminho!|remgard_villager2_2|||||} - }|}; -{remgard_villager2_2|Hah! *bufando*|||}; -{remgard_villager3|Você viu o meu anel? Deixei-o entre as árvores, eu tenho certeza. Ele era um lindo anel.|||}; -{remgard_villager4|Bom dia.|||}; -{remgard_villager5|Desculpe-me, eu não tenho tempo para falar.|||}; -{remgard_villager6|Você não é daqui, não é? Se você precisar de um lugar para ficar, visite a taverna. Ouvi dizer que Kendelow tem um quarto disponível para alugar.|||}; -{remgard_villager7|Eu ouvi barulhos estranhos da outra margem do lago Laeroth. Gostaria de saber o que se esconde nas margens do outro lado.|||}; -{remgard_villager8|Olá.|||}; -{petdog|Au, Au! *arfado* *arfado*|||}; -{taylin|Não, fuja! Eles não podem me encontrar aqui. Não revele o meu bom esconderijo!|||}; -{larni|||{{|larni_2|fiveidols:42||||}{|larni_1|||||}}|}; -{larni_1|Ei, saia daqui! Esta é a minha casa!|||}; -{larni_2|(Você vê Larni segurando sua testa.) Hei, * tosse * saia daqui! Esta é... *tosse* ... minha casa!|||}; -{caeda|Tanto trabalho a fazer. Eu espero que faça um pouco de chuva em breve.|||}; -{arnal|||{{|arnal_2|fiveidols:43||||}{|arnal_1|||||}}|}; -{arnal_1|Bem-vindo à minha loja. Gostaria de ver o que tenho disponível?||{ - {Sim, por favor, mostre-me o que você tem.|S|||||} - {Não, obrigado. Tchau.|X|||||} - }|}; -{arnal_2|(Arnal limpa a garganta)||{{N|arnal_3|||||}}|}; -{arnal_3|Bem-vindo a... *Tosse* ... minha loja. Gostaria... *Tosse* ... de ver o que tem disponível?||{ - {Sim, por favor, mostre-me o que você tem.|S|||||} - {Não, obrigado. Tchau.|X|||||} - {Você está bem?|arnal_4|||||} - {Fique longe de mim, eu não quero pegar o que é que você esteha infectado!|X|||||} - }|}; -{arnal_4|Eu não sei o que ... *Tosse* ... aconteceu. Eu comecei a ficar tonto e enjoado. Agora, esta tosse é realmente irritante. Deve ter sido algo que eu comi. *Tosse*|||}; -{skylenar|Que você ande sempre com o Sombra, meu filho.||{ - {Você tem alguma coisa para negociar?|S|||||} - {O que você faz aqui?|skylenar_1|||||} - }|}; -{skylenar_1|Eu forneço .. orientação para aqueles que a procuram. A Sombra nos guia. Ele nos mantém seguros e nos conforta quando dormimos.||{{N|skylenar_2|||||}}|}; -{skylenar_2|Ultimamente, parece Remgard está em extrema necessidade do conforto que a Sombra oferece.||{ - {Eu percebo. Tchau.|X|||||} - {Você tem alguma coisa para negociar?|S|||||} - }|}; -{atash|A Sombra nos acompanha onde quer que vamos. Vá com a sombra do meu filho.||{{A Sombra esteja com você.|X|||||}{O que for, tchau.|X|||||}}|}; -{remgard_guard1|Eu estou de olho em você. Não faça nada estúpido.|||}; -{remgard_prison_guard|Nem pense nisso.|||}; -{remgard_drunk1|*burp* Ha ha! Nunca pensei que ela faria isso! Ou seria o contrário? Eu não me lembro.|||}; -{remgard_drunk2|*burp* Este é o melhor lugar em todas as terras do norte!||{{N|remgard_drunk2_2|||||}}|}; -{remgard_drunk2_2|Oh, Olá. *Burp* Garoto, eu lhe digo, não vá à procura de problemas, mesmo se você acha que possa lidar com isso.||{{N|remgard_drunk2_3|||||}}|}; -{remgard_drunk2_3|Eu fiz uma vez, e acabei nessas cavernas horríveis de Monte Galmore.||{{N|remgard_drunk2_4|||||}}|}; -{remgard_drunk2_4|Lugar que torce sua mente. Eu digo a você, não vá lá, mesmo se você acha que você consegue!||{ - {Monte Galmore, onde é isso?|remgard_drunk2_5|||||} - {Eu vou manter isso em mente.|X|||||} - {Saia do meu caminho!|X|||||} - }|}; -{remgard_drunk2_5|*burp* O que foi isso? Você estava dizendo alguma coisa?|||}; -{remgard_farmer1|Oh, Olá. Eu não posso falar agora, devo terminar o plantio dessas culturas.|||}; -{remgard_farmer2|Espero que as terras sejam boas conosco nesta temporada.|||}; -{chael|(Chael dá-lhe um olhar vazio)||{{N|chael_2|||||}}|}; -{chael_2|Chael corta lenha. Madeira faz Chael feliz.|||}; -{morgisia|Guardas! Alguém invadiu meu quarto e está tentando roubar-me!||{ - {Isso mesmo. Entregue todos os seus pertences e você ainda pode viver.|morgisia_1|||||} - {Mas eu era apenas ..|morgisia_1|||||} - {Desculpe, eu pensei ..|morgisia_1|||||} - }|}; -{morgisia_1|Socorro! Guardas!|||}; -{easturlie|Ei, esta é a minha casa. Saia daqui antes que eu chame os guardas!|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{kendelow|||{{|kendelow_1|remgard2:45||||}{|kendelow_2|||||}}|}; -{kendelow_1|Ouvi dizer que você nos ajudou a nos livrar da bruxa Algangror. Obrigado.||{{N|kendelow_d|||||}}|}; -{kendelow_2|Bem-vindo ao meu botequim. Eu espero que possa tornar sua estadia o mais agradável.||{{N|kendelow_d|||||}}|}; -{kendelow_d|Como posso ser útil?||{ - {O que há para fazer por aqui?|kendelow_3|||||} - {Você tem alguma coisa para negociar?|kendelow_shop|||||} - {Existem quartos disponíveis?|kendelow_room_1|||||} - }|}; -{kendelow_shop|Ah, claro. Aqui, dê uma olhada.||{{N|S|||||}}|}; -{kendelow_3|A maioria das pessoas aqui em Remgard cuidam das suas colheitas. Fora isso, eu ouvi que o armeiro Arnal mais na costa ocidental, tem alguns bom produtos para negociar.||{{N|kendelow_4|||||}}|}; -{kendelow_4|Além disso, geralmente recebemos muitos visitantes aqui na taverna. Ultimamente, temos tido muito menos visitas por aqui, no entanto, com o fechamento da ponte, por causa dessas pessoas desaparecidas e tudo o mais.||{{N|kendelow_5|||||}}|}; -{kendelow_5|Em seu caminho, talvez você tenha notado que temos até uma visita dos Cavaleiros de Elythom aqui na taberna? Parece que mais e mais pessoas estão se conscientizando da hospitalidade de Remgard.||{{Obrigado. Eu tenho algumas outras perguntas.|kendelow_d|||||}}|}; -{kendelow_room_1|||{{|kendelow_room_2|nondisplay:21||||}{|kendelow_room_3|||||}}|}; -{kendelow_room_2|Você já alugou meu quarto anteriormente. Não temos quaisquer outros quartos disponíveis alem dele.|||}; -{kendelow_room_3|Por quê? Sim, de fato, tenho sim. Eu tenho um quarto confortável disponível no andar superior.||{{N|kendelow_room_4|||||}}|}; -{kendelow_room_4|O inquilino anterior deixou-o apressadamente alguns dias atrás.||{{N|kendelow_room_5|||||}}|}; -{kendelow_room_5|Você pode alugar o quarto por tanto tempo quanto você quiser por apenas 600 moedas de ouro.||{ - {600 moedas de ouro, você está louco!? Isso é uma fortuna.|kendelow_room_6s|||||} - {Existe alguma coisa que você pode fazer para baixar o preço?|kendelow_room_6s|||||} - {Eu vou ocupá-lo. Aqui está o ouro.|kendelow_room_8||gold|600|0|} - {Eu não tenho tanto ouro.|kendelow_room_7|||||} - }|}; -{kendelow_room_6s|||{{|kendelow_room_6b|remgard2:45||||}{|kendelow_room_6a|||||}}|}; -{kendelow_room_6a|O preço é fixo. Eu não posso sair por aí distribuindo descontos para qualquer um. Além disso, mantenha em mente que você pode alugá-lo durante o tempo que você deseja.||{ - {Eu vou ocupá-lo. Aqui está o ouro.|kendelow_room_8||gold|600|0|} - {Eu não tenho tanto ouro.|kendelow_room_7|||||} - }|}; -{kendelow_room_6b|Como você nos ajudou aqui em Remgard com a bruxa Algangror, eu estou preparado para oferecer-lhe um desconto. Que tal lhe parecem 400 moedas de ouro por ele, ao invés?||{ - {Eu vou ocupá-lo. Aqui está o ouro.|kendelow_room_8||gold|400|0|} - {Eu não tenho tanto ouro.|kendelow_room_7|||||} - }|}; -{kendelow_room_7|Estarei esperando pelo seu retorno, uma vez que você consiga ouro, se você ainda estiver interessado.||{{N|kendelow_d|||||}}|}; -{kendelow_room_8|Obrigado. O quarto é no andar de cima. Você pode alugá-lo durante o tempo que você quiser.|{{0|nondisplay|21|}}||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{arghes|||{{|arghes_2|andor:51||||}{|arghes_1|||||}}|}; -{arghes_1|Você não irá encontrar nada da sua conta por aqui, criança.|||}; -{arghes_2|Bem interessante. Uma criança de Fallhaven, aqui em Remgard?||{ - {Eu não sou de Fallhaven, sou de Crossglen, a oeste de Fallhaven.|arghes_3a|||||} - {Quem é você?|arghes_3b|||||} - {Como você sabe de onde eu sou?|arghes_3c|||||} - }|}; -{arghes_3a|É isso mesmo? Hum, mais interessante. Isso não muda nada, porém.||{{N|arghes_4|||||}}|}; -{arghes_3b|Quem eu sou não é importante nesta situação. Você, por outro lado, é mais importante.||{{N|arghes_4|||||}}|}; -{arghes_3c|Eu sei .. uma grande quantidade de coisas.||{{N|arghes_4|||||}}|}; -{arghes_4|$playername - sim, é assim que eles o chamam ||{{Como você sabe o meu nome? Quem é você?|arghes_5|||||}}|}; -{arghes_5|Vamos apenas dizer que eu sou um... amigo. Você faria bem em manter seus... amigos próximos.||{{N|arghes_6|||||}}|}; -{arghes_6|Agora, como posso ajudá-lo? Equipamento? Informação?||{ - {Deixe-me ver o que você tem que trocar.|arghes_shop|||||} - {Quais as informações que você tem?|arghes_7|||||} - }|}; -{arghes_shop|Certamente.||{{N|S|||||}}|}; -{arghes_7|Hum, deixe-me ver.||{{N|arghes_8|||||}}|}; -{arghes_8|Não, eu não posso dizer nada neste momento. Você está convidado a retornar uma vez que o seu caminho se tornar .. mais claro.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{perester|Se você estiver procurando por Duaina, ela está no quintal.|||}; -{freen|Desculpe, estamos fechados. Se você quer praticar suas habilidades de leitura, por favor, volte outro dia. Se há um livro específico que você está procurando, eu poderia ser capaz de ajudá-lo.||{{Não, obrigado. Tchau.|X|||||}}|}; -{almars|He he. Eles nunca saberão o que os atingiu.||{{N|almars_1|||||}}|}; -{almars_1|Oh, Olá! Não importa-me, eu estou apenas passeando por aqui. Nada de estranho nisso. Veja?|||}; -{carthe|||{{|carthe_1|fiveidols:45||||}{|carthe_2|||||}}|}; -{carthe_1|*tosse* Por favor, deixe-me. Eu não *tosse* fiz nada!|||}; -{carthe_2|Ei, o que você está fazendo aqui? Não faça nenhuma gracinha.|||}; -{emerei|Nós não temos muitos visitantes aqui estes dias. Eu espero que você goste do que vê aqui em Remgard.|||}; -{janach|Este não é lugar para crianças. É melhor sair.|||}; -{perlynn|Veja isso: As colheitas já começaram a apodrecer. Argh, eu sabia que deveria ter trancado a porta quando tivemos a chance.|||}; -{maelf|Ah, não é agradável esse lugar? O que mais alguém poderia desejar? Este lugar tem tudo o que um homem precisa - boa comida, uma cama quente e as pessoas para trocar histórias.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{ervelyn|||{ - {|ervelyn_gave1|remgard2:46||||} - {|ervelyn_give1|remgard2:45||||} - {|ervelyn_1|||||} - }|}; -{ervelyn_gave1|Olá de novo, meu amigo. Você é sempre bem-vindo aqui.||{{N|ervelyn_d|||||}}|}; -{ervelyn_1|Olá. Bem-vindo à minha loja.||{{N|ervelyn_d|||||}}|}; -{ervelyn_d|Como posso ser útil?||{ - {Deixe-me ver o que você tem que trocar.|ervelyn_shop|||||} - {Não importa. Tchau.|X|||||} - }|}; -{ervelyn_shop|Certamente.||{{N|S|||||}}|}; -{ervelyn_give1|É você! Eu ouvi o que você fez, nos ajudando com a bruxa Algangror. Você tem o meu agradecimento, amigo!||{{N|ervelyn_give2|||||}}|}; -{ervelyn_give2|Como um símbolo de meu apreço, por favor aceite este chapéu que eu fiz. Que ele possa orientá-lo através da luz ofuscante.|{{1|ervelyn_hat||}{0|remgard2|46|}}|{{Você parece apenas mais um aventureiro. Diga-me filho, o que o traz aqui?|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{reinkarr|Obrigado.||{ - {Quem é você?|reinkarr_3|||||} - {Estou procurando meu irmão Andor.|reinkarr_1|||||} - {Eu estou apenas procurando por problemas.|reinkarr_2|||||} - }|}; -{reinkarr_1|Ok então. Boa sorte com isso.||{{Quem é você?|reinkarr_3|||||}}|}; -{reinkarr_2|Ha ha, isso soa como um aventureiro certeza! Coragem é o que você precisa para ser um aventureiro bem sucedido, filho. Em você não parece faltar coragem, se assim posso dizer.||{{Quem é você?|reinkarr_3|||||}}|}; -{reinkarr_3|Eu sou Reinkarr. Eu acho que você poderia me chamar de um aventureiro sortudo.||{{Alguma boa história para contar?|reinkarr_4|||||}}|}; -{reinkarr_4|Não, não realmente. Eu nunca peguei o jeito do negócio aventurar totalmente. Eu e alguns outros companheiros foram à procura por estes... cristais... da qual havíamos ouvido falar.||{{Que cristais?|reinkarr_5|||||}}|}; -{reinkarr_5|Realmente não importa. Nós nunca encontramos nenhum deles, de qualquer maneira.||{{Que cristais que você estava procurando?|reinkarr_6|||||}}|}; -{reinkarr_6|Eles eram chamados de \'cristais Oegyth\'. Supostamente muito poderosos e valem uma fortuna.||{ - {Eu tenho um desses.|reinkarr_oeg_1||oegyth|1|1|} - {Então, o que o fez parar de procurar?|reinkarr_8|||||} - {O que são eles?|reinkarr_7|||||} - }|}; -{reinkarr_7|Na verdade, tudo o que eu sei é que eles são uma espécie de cristal. Como eu disse, eles são supostamente muito poderosos. Nós só procuramos eles para que possamos vendê-los e tornar-nos ricos.||{{O que fez você parar de procurar?|reinkarr_8|||||}}|}; -{reinkarr_8|Só o tédio total, eu acho. Nós nunca fomos nem um pouco bons com respeito a lutas, e como tal, nunca encontramos uma dessas coisas.||{{N|reinkarr_9|||||}}|}; -{reinkarr_9|De qualquer forma, foi bom falar com você, garoto. Tome cuidado.|||}; -{reinkarr_oeg_1|O quê? Você realmente tem uma dessas coisas? Deixe-me ver. Sim, isso combina com a descrição que eu li.||{{N|reinkarr_oeg_2|||||}}|}; -{reinkarr_oeg_2|Você faria bem para si mesmo em guardar isso para si, garoto. Faça o que fizer, não perca-lo, e não saia por aí mostrando para todo mundo que você o encontrou. Você pode entrar em sérios apuros.||{{O que posso fazer com ele?|reinkarr_oeg_3|||||}}|}; -{reinkarr_oeg_3|Eu ouço há comerciantes que fariam qualquer coisa para ter em suas mãos em alguns desses cristais. Você deve procurar os comerciantes em uma das grandes cidades, e perguntar-lhes.||{{N|reinkarr_oeg_4|||||}}|}; -{reinkarr_oeg_4|Tenha cuidado embora!||{{N|reinkarr_9|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{jhaeld_bed|||{{|jhaeld_bed_2|fiveidols:41||||}{|jhaeld_bed_3|fiveidols:31||||}{|jhaeld_bed_1|||||}}|}; -{jhaeld_bed_1|Você vê uma cama.|||}; -{jhaeld_bed_2|Você vê uma cama. O ídolo ainda está onde você deixou.|||}; -{jhaeld_bed_3|Você vê uma cama, que você acha que deve ser a cama de Jhaeld.||{{Você ocultou um dos ídolos sob a cama.|jhaeld_bed_4s1||algangror_idol|1|0|}{Você deixou a cama vazia.|X|||||}}|}; -{jhaeld_bed_4s1||{{0|fiveidols|41|}}|{{|jhaeld_bed_4s2|fiveidols:42||||}{|jhaeld_bed_4|||||}}|}; -{jhaeld_bed_4s2|||{{|jhaeld_bed_4s3|fiveidols:43||||}{|jhaeld_bed_4|||||}}|}; -{jhaeld_bed_4s3|||{{|jhaeld_bed_4s4|fiveidols:44||||}{|jhaeld_bed_4|||||}}|}; -{jhaeld_bed_4s4|||{{|jhaeld_bed_4s5|fiveidols:45||||}{|jhaeld_bed_4|||||}}|}; -{jhaeld_bed_4s5||{{0|fiveidols|50|}}|{{|jhaeld_bed_4|||||}}|}; -{jhaeld_bed_4|Você esconde o ídolo debaixo da cama.|||}; - -{larni_bed|||{{|larni_bed_2|fiveidols:42||||}{|larni_bed_3|fiveidols:32||||}{|larni_bed_1|||||}}|}; -{larni_bed_1|Você vê uma cama e mesa de cabeceira.|||}; -{larni_bed_2|Você vê uma cama e mesa de cabeceira. O ídolo ainda está onde você o deixou.|||}; -{larni_bed_3|Você vê uma cama e mesa de cabeceira. Este deve ser o leito de Larni.||{{Você ocultou um dos ídolos sob a cama.|larni_bed_4s1||algangror_idol|1|0|}{Você deixou a cama vazia.|X|||||}}|}; -{larni_bed_4s1||{{0|fiveidols|42|}}|{{|larni_bed_4s2|fiveidols:41||||}{|larni_bed_4|||||}}|}; -{larni_bed_4s2|||{{|larni_bed_4s3|fiveidols:43||||}{|larni_bed_4|||||}}|}; -{larni_bed_4s3|||{{|larni_bed_4s4|fiveidols:44||||}{|larni_bed_4|||||}}|}; -{larni_bed_4s4|||{{|larni_bed_4s5|fiveidols:45||||}{|larni_bed_4|||||}}|}; -{larni_bed_4s5||{{0|fiveidols|50|}}|{{|larni_bed_4|||||}}|}; -{larni_bed_4|Você esconde o ídolo debaixo da cama.|||}; - -{arnal_bed|||{{|arnal_bed_2|fiveidols:43||||}{|arnal_bed_3|fiveidols:33||||}{|arnal_bed_1|||||}}|}; -{arnal_bed_1|Você vê uma cama e mesa de cabeceira.|||}; -{arnal_bed_2|Você vê uma cama e mesa de cabeceira. O ídolo ainda está onde você deixou.|||}; -{arnal_bed_3|Você vê uma cama e mesa de cabeceira. Esta deve ser cama de Arnal.||{{Você ocultou um dos ídolos sob a cama.|arnal_bed_4s1||algangror_idol|1|0|}{Você deixou a cama vazia.|X|||||}}|}; -{arnal_bed_4s1||{{0|fiveidols|43|}}|{{|arnal_bed_4s2|fiveidols:41||||}{|arnal_bed_4|||||}}|}; -{arnal_bed_4s2|||{{|arnal_bed_4s3|fiveidols:42||||}{|arnal_bed_4|||||}}|}; -{arnal_bed_4s3|||{{|arnal_bed_4s4|fiveidols:44||||}{|arnal_bed_4|||||}}|}; -{arnal_bed_4s4|||{{|arnal_bed_4s5|fiveidols:45||||}{|arnal_bed_4|||||}}|}; -{arnal_bed_4s5||{{0|fiveidols|50|}}|{{|arnal_bed_4|||||}}|}; -{arnal_bed_4|Você esconde o ídolo debaixo da cama.|||}; - -{emerei_bed|||{{|emerei_bed_2|fiveidols:44||||}{|emerei_bed_3|fiveidols:34||||}{|emerei_bed_1|||||}}|}; -{emerei_bed_1|Você vê uma cama e mesa de cabeceira.|||}; -{emerei_bed_2|Você vê uma cama e mesa de cabeceira. O ídolo ainda está onde você deixou.|||}; -{emerei_bed_3|Você vê uma cama e mesa de cabeceira. Este deve ser o leito Emerei.||{{Você ocultou um dos ídolos sob a cama.|emerei_bed_4s1||algangror_idol|1|0|}{Você deixou a cama vazia.|X|||||}}|}; -{emerei_bed_4s1||{{0|fiveidols|44|}}|{{|emerei_bed_4s2|fiveidols:41||||}{|emerei_bed_4|||||}}|}; -{emerei_bed_4s2|||{{|emerei_bed_4s3|fiveidols:42||||}{|emerei_bed_4|||||}}|}; -{emerei_bed_4s3|||{{|emerei_bed_4s4|fiveidols:43||||}{|emerei_bed_4|||||}}|}; -{emerei_bed_4s4|||{{|emerei_bed_4s5|fiveidols:45||||}{|emerei_bed_4|||||}}|}; -{emerei_bed_4s5||{{0|fiveidols|50|}}|{{|emerei_bed_4|||||}}|}; -{emerei_bed_4|Você esconde o ídolo debaixo da cama.|||}; - -{carthe_bed|||{{|carthe_bed_2|fiveidols:45||||}{|carthe_bed_3|fiveidols:35||||}{|carthe_bed_1|||||}}|}; -{carthe_bed_1|Você vê uma cama e mesa de cabeceira.|||}; -{carthe_bed_2|Você vê uma cama e mesa de cabeceira. O ídolo ainda está onde você deixou.|||}; -{carthe_bed_3|Você vê uma cama e mesa de cabeceira. Este deve ser o leito carThe.||{{Você ocultou um dos ídolos sob a cama.|carthe_bed_4s1||algangror_idol|1|0|}{Você deixou a cama vazia.|X|||||}}|}; -{carthe_bed_4s1||{{0|fiveidols|45|}}|{{|carthe_bed_4s2|fiveidols:41||||}{|carthe_bed_4|||||}}|}; -{carthe_bed_4s2|||{{|carthe_bed_4s3|fiveidols:42||||}{|carthe_bed_4|||||}}|}; -{carthe_bed_4s3|||{{|carthe_bed_4s4|fiveidols:43||||}{|carthe_bed_4|||||}}|}; -{carthe_bed_4s4|||{{|carthe_bed_4s5|fiveidols:44||||}{|carthe_bed_4|||||}}|}; -{carthe_bed_4s5||{{0|fiveidols|50|}}|{{|carthe_bed_4|||||}}|}; -{carthe_bed_4|Você esconde o ídolo debaixo da cama.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{remgard_tavern_room|Você não tem permissão para entrar nesta sala até que você a alugue.|||}; -{sign_waterway6|Sul: Brimhaven\nOeste: Loneford\nLeste: Brightport, Lago Laeroth|||}; -{sign_waterway9|Oeste: Loneford\nLeste: Brightport, Lago Laeroth|||}; -{sign_waterway11|Oeste: Loneford\nSul: Brightport|||}; -{sign_remgard0|Bem-vindo ao Lago Laeroth e à cidade de Remgard!|||}; -{wild16_cave|O mato é denso demais para você passar.|||}; -{sign_wild16|||{ - {|sign_wild16_r|kaverin:100||||} - {|sign_wild16_1|||||} - }|}; -{sign_wild16_r|Você se espreme através da abertura estreita da caverna.|||}; -{sign_wild16_1|Você se espreme através da abertura estreita da caverna. O ar viciado que paira pesado dentro da caverna úmida, que cheira a mofo e a papel antigo, enche o seu nariz.|{{0|kaverin|100|}}|{{N|sign_wild16_2|||||}}|}; -{sign_wild16_2|Esta deve ser a caverna que o mapa leva. Este deve ser o esconderijo do velho Vacor.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{kaverin|||{ - {|kaverin_decline2|kaverin:21||||} - {|kaverin_fight_1|kaverin:60||||} - {|kaverin_done_ret|kaverin:90||||} - {|kaverin_done3|kaverin:45||||} - {|kaverin_done1|kaverin:40||||} - {|kaverin_return1|kaverin:25||||} - {|kaverin_accept2|kaverin:22||||} - {|kaverin_8r|kaverin:20||||} - {|kaverin_1|||||} - }|}; -{kaverin_1|Pelo seu aspecto, você não parece ser daqui. Isso se aplica a mim também. He he.||{{Eu sou da vila de Crossglen, mais ao oeste daqui.|kaverin_2|||||}}|}; -{kaverin_2|Crossglen! Eu conheço o lugar, não é longe de Fallhaven, certo?||{{N|kaverin_3|||||}}|}; -{kaverin_3|Eu tenho um velho... digamos... amigo... de Fallhaven. Atende pelo nome de Unzel.||{{N|kaverin_4|||||}}|}; -{kaverin_4|Você por acaso não o conhece, não?|{{0|kaverin|10|}}|{ - {Não, eu nunca o conheci.|kaverin_5|||||} - {Sim, eu conheci p tolo. Ele foi uma presa fácil.|kaverin_6|vacor:60||||} - {Sim, eu já conheci. Eu ainda tenho um pouco de seu sangue em minhas botas.|kaverin_6|vacor:60||||} - {Sim, eu mesmo ajudei a derrotar um canalha chamado Vacor.|kaverin_7|vacor:61||||} - }|}; -{kaverin_5|Eu acho que ele consegue se virar. Espero que ele esteja bem. Se você o encontrar, por favor, diga-lhe um oi da minha parte.||{{Estou tentando encontrar meu irmão Andor, você o viu?|kaverin_5b|||||}}|}; -{kaverin_5b|Andor? Não, sinto muito. Eu nunca ouvi falar dele.|||}; -{kaverin_6|Você?! Mas .. Mas .. Isso é terrível! Eu aposto que você é um dos capangas que seguiam a Vacor.||{{N|kaverin_fight_1|||||}}|}; -{kaverin_fight_1|Ah, sim, eu posso sentir isso. Você trabalha para Vacor! Ele deve ser detido!|{{0|kaverin|60|}}|{{Lute!|F|||||}}|}; -{kaverin_7|Excelente, que é uma boa notícia! Que você caminhe com a Sombra, meu amigo!||{{N|kaverin_8|||||}}|}; -{kaverin_8r|Meu amigo retornou de Fallhaven. É reconfortante saber que Unzel ainda está vivo.||{{N|kaverin_8|||||}}|}; -{kaverin_8|Você estaria disposto a entregar-lhe uma mensagem?|{{0|kaverin|20|}}|{{N|kaverin_9|||||}}|}; -{kaverin_9|Você seria bem recompensado por seus esforços.||{ - {Qualquer coisa por causa da Sombra.|kaverin_accept1|||||} - {Certamente.|kaverin_accept1|||||} - {Não, eu estou cansado de ajudar às pessoas.|kaverin_decline1|||||} - }|}; -{kaverin_decline1|Isso é lamentável, você parecia um menino brilhante para mim.|{{0|kaverin|21|}}||}; -{kaverin_decline2|Meu amigo retornou de Fallhaven. Por favor, deixe-me agora, eu tenho coisas para fazer.|||}; -{kaverin_accept1|Bom, isso é exatamente o que eu queria ouvir.|{{0|kaverin|22|}}|{{N|kaverin_accept2|||||}}|}; -{kaverin_accept2|Certifique-se que isso não caia nas mãos de Feygard, ou seus partidários.||{{N|kaverin_accept3|||||}}|}; -{kaverin_accept3|(Ele dá-lhe uma mensagem selada)|{{1|kaverin_message||}{0|kaverin|25|}}|{{Você pode contar comigo, Kaverin.|kaverin_accept4|||||}}|}; -{kaverin_accept4|Bom. Agora vá entregar a mensagem para Unzel.|||}; -{kaverin_return1|É bom ver você de novo. Você já entregou minha mensagem para Unzel?||{ - {Sim, a mensagem foi entregue.|kaverin_done1|kaverin:30||||} - {Não, ainda não.|kaverin_return2|||||} - }|}; -{kaverin_return2|Por favor, não demore muito. Caminhe com a Sombra, meu amigo.|||}; -{kaverin_done1|Obrigado, meu amigo. Que você caminhe no brilho da Sombra.|{{0|kaverin|40|}}|{{N|kaverin_done2|||||}}|}; -{kaverin_done2|Leve este mapa como compensação por um trabalho bem feito.|{{1|vacor_map||}{0|kaverin|45|}}|{{N|kaverin_done3|||||}}|}; -{kaverin_done3|Descobrimos um dos esconderijos Vacor, longe para o sul.||{{N|kaverin_done4|||||}}|}; -{kaverin_done4|Como você nos ajudou a detê-lo, é justo que você fique com isso.||{{N|kaverin_done5|||||}}|}; -{kaverin_done5|De acordo com o mapa, o esconderijo deve ficar logo a noroeste da antiga prisão de Flagstone. Sinta-se livre para pegar o que estiver por lá.|{{0|kaverin|90|}}|{{N|kaverin_done6|||||}}|}; -{kaverin_done6|Caminhe com a Sombra, meu amigo.|||}; -{kaverin_done_ret|Olá novamente. É reconfortante saber que Unzel ainda está vivo, e que você entregou a minha mensagem para ele.||{{N|kaverin_done6|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{vacor_msg1|O que é isso em suas mãos?! ... Eu reconheço que o selo!|{{0|kaverin|70|}}|{ - {Você deve reconhecê-lo, eu achei essa mensagem com um dos associados a Unzel em Remgard.|vacor_msg_a1|||||} - {O quê? ... Oh, isso?|vacor_msg_b1|||||} - }|}; -{vacor_msg_a1|Com certeza, ele não deu isso apenas a você!||{{Ele estava fazendo perguntas demais. Ele precisava ser silenciado.|vacor_msg_a2|||||}}|}; -{vacor_msg_a2|Então, você o matou? Certo?!||{{Kaverin está morto. Seu sangue ainda está em minhas botas.|vacor_msg_3|||||}}|}; -{vacor_msg_b1|Como esse documento foi chegar em suas mãos ?!||{{Um homem em Remgard, com o nome de Kaverin, perguntou-me sobre Unzel ...|vacor_msg_b2|||||}}|}; -{vacor_msg_b2|O que aconteceu, menino?!||{{Kaverin está morto. Seu sangue ainda está em minhas botas.|vacor_msg_3|||||}}|}; -{vacor_msg_3|Bom, talvez agora eu posso trabalhar no meu feitiço de elevação em paz ...||{{N|vacor_msg_4|||||}}|}; -{vacor_msg_4|eu devo ter esse documento!||{{N|vacor_msg_5|||||}}|}; -{vacor_msg_5|Eu preciso saber o que eles estão planejando!||{ - {Aqui, temos a mensagem.|vacor_msg_8||kaverin_message|1|0|} - {O que está nele para mim?|vacor_msg_6|||||} - }|}; -{vacor_msg_6|Eu tenho uma reserva de poções escondida, longe a sudoeste.||{ - {Excelente, eu posso sempre usar mais suprimentos.|vacor_msg_7|||||} - }|}; -{vacor_msg_7|Bom. Agora dê-me a mensagem.||{{Aqui está a mensagem, Vacor.|vacor_msg_8||kaverin_message|1|0|}}|}; -{vacor_msg_8|Aqui, pegue este mapa como compensação por seus problemas.|{{1|vacor_map||}{0|kaverin|75|}}|{{N|vacor_msg_9|||||}}|}; -{vacor_msg_9|Ele vai levar você longe para o sudoeste, com um dos meus esconderijos secretos ... onde uma reserva de poções está oculta.||{{N|vacor_msg_10|||||}}|}; -{vacor_msg_10|(O mapa mostra uma localização a noroeste da antiga prisão de Flagstone)|{{0|kaverin|90|}}|{{N|vacor_msg_11|||||}}|}; -{vacor_msg_11|Agora, vamos ver isso aqui.||{{N|vacor_msg_12|||||}}|}; -{vacor_msg_12|(Vacor abre a mensagem e inicia a leitura da mensagem selada)||{{N|vacor_msg_13|||||}}|}; -{vacor_msg_13|Sim ... hum ... Sério?! *Murmura* ... Sim, é verdade ...||{{N|vacor_msg_14|||||}}|}; -{vacor_msg_14|HA HA HA!!! O PODER LOGO SERÁ MEU!||{{N|vacor_msg_15|||||}}|}; -{vacor_msg_15|HA HA HA! O PODER LOGO SERÁ MEU!||{ - {Excelente! A sombra deve ser parada!|vacor_msg_16|||||} - {Eu só queria uma recompensa ... Que estranho.|vacor_msg_16|||||} - }|}; -{vacor_msg_16|Obrigado por me dar essa mensagem, mas agora, por favor me deixe. Tenho coisas mais importantes para fazer do que falar com você.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{unzel_msg1|Kaverin, meu velho amigo! É bom saber que ele ainda esteja vivo. Qual é a mensagem?||{{Aqui está.|unzel_msg2||kaverin_message|1|0|}}|}; -{unzel_msg2|Hummm, sim ... Vamos ver ... (Unzel abre a mensagem selada e a lê)|{{0|kaverin|30|}}|{{N|unzel_msg3|||||}}|}; -{unzel_msg3|Sim, isso faz sentido com o que eu já vi.||{{N|unzel_msg4|||||}}|}; -{unzel_msg4|Obrigado por trazê-la para mim.||{{N|unzel_msg5|||||}}|}; -{unzel_msg5|A sua ajuda pode ser mais valiosa do que você imagina.||{{N|unzel_msg6|||||}}|}; -{unzel_msg6|Diga olá para o meu velho amigo Kaverin da próxima vez que você o ver, ok?|||}; -{unzel_msg_r0|Oi novamente. Obrigado pela sua ajuda combatendo Vacor e trazendo-me a mensagem de Kaverin.||{{N|unzel_msg5|||||}}|}; - - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{sign_wild3_grave|Na cruz, se lê: Descanse em paz, meu amigo.|||}; -{sign_wild6_stump|Você percebe que o toco da árvore é parcialmente oco, e parece um esconderijo excelente. Está vazio agora.|||}; -{sign_snakecave3_grave|O terreno ao redor da sepultura está cheio de pequenos furos, provavelmente causados por algo que deslizou no caminho para o seu ninho lá adiante. A cruz tem algo escrito nela, mas você não consegue entender o que diz|||}; -{sign_fallhaven_ne_grave1|Aqui jaz Kargir o comerciante.|||}; -{sign_fallhaven_ne_grave2|(A pedra está coberta com uma fina camada de musgo. A escrita na pedra corroeu e está completamente ilegível)|||}; -{sign_fallhaven_ne_grave3|Descanse com a Sombra, Berth-perna-única. Ela viveu uma vida plena, mas no final ela não conseguia suportar mais a doença que se abateu sobre ela.|||}; -{sign_fallhaven_ne_grave4|Os restos de Kigrim estão aqui, depois que ele foi morto por lobos, ao sul de Fallhaven|||}; -{sign_fallhaven_ne_grave5|Gimlont, o corpulento, está aqui. Que possamos finalmente ficar livres de suas mãos engorduaradas que faziam parte de todos os nossos negócios.|||}; -{sign_fallhaven_ne_grave6|Aqui jaz Terdar, o ferreiro. Que ele esteja sempre abraçado pelo conforto da Sombra.|||}; -{sign_fallhaven_ne_grave7|Aqui jaz O\'llath, elogiado por seus concidadãos de Fallhaven por seus deliciosos bolos.|||}; -{sign_fallhaven_ne_grave8|Sidari, o lenhador, está aqui. Nós todos dissemos-lhe para ter cuidado com o machado dele, mas ele nunca nos escutou.|||}; -{sign_fallhaven_ne_grave9|Tyngose, ​​o nobre, está aqui. Que seu legado nunca seja esquecido.|||}; -{sign_catacombs1_grave1|Aqui jaz os restos do cavalo de Sir Eneryth, o Shadowsteed.|||}; -{sign_catacombs1_grave2|Aqui jaz Sir Eneryth, da casa de Gellir. Filho de Sir Anarogas, e irmão mais velho de Sir Karthanir.|||}; -{sign_catacombs1_grave3|Aqui jaz Sir Karthanir da casa de Gellir. Filho de Sir Anarogas, e irmão mais novo de Sir Eneryth.|||}; -{sign_catacombs1_grave4|Aqui jaz Lady Gelythus da casa de Gellir. Esposa de Sir Eneryth, da casa de Gellir.|||}; -{sign_catacombs2_grave1|Aqui jaz ta\'Draiden, servo da Sombra na capela de Fallhaven.|||}; -{sign_catacombs2_grave2|Aqui jaz ta\'Tembas servo, da Sombra na capela de Fallhaven.|||}; -{sign_catacombs2_grave3|Aqui jaz Elodam, servo do Senhor Eneryth, da casa de Gellir.|||}; -{sign_catacombs2_grave4|Aqui jaz os restos mortais de Tragdas-caolho, empregado de Sir Eneryth da casa Gellir.|||}; -{sign_catacombs2_grave5|Aqui jaz o gentil Lerythal. Que ela descanse com a Sombra4358|||}; -{sign_catacombs2_grave6|Here lies Kragnis the second, steward of the chapel of Fallhaven.|||}; -{sign_catacombs2_grave7|The writing on the grave reads: Rest with the Shadow, my dearest.|||}; -{sign_catacombs2_papers1|(No chão é o que se parece com algumas páginas arrancadas de um livro)|||}; -{sign_catacombs2_papers2|(Você encontra alguns papéis amassados ​​no chão, contendo notas rabiscadas sobre as belas artes da cerâmica. Você decide deixá-los onde está)|||}; -{sign_catacombs3_grave1|(O túmulo lê:. Aqui jaz Sir Anarogas da casa Gellir, filho de Gellir, o bravo)|||}; -{sign_catacombs3_grave2|(O fedor que vem do túmulo é insuportável. Algo deve ter perturbado o túmulo recentemente)|||}; -{sign_catacombs4_grave1|(Na cruz, lê-se:. Ta\'Dreg está aqui, conselheiro da sombra do rei Luthor)|||}; -{sign_catacombs4_grave2|(O túmulo lê:.. Rei Luthor, nosso salvador e líder. O túmulo também está adornado com o selo dourado da casa de Luthor)|||}; -{sign_hh3_papers|Situado sob a estátua, você encontra alguns papéis com desenhos do que parecem esqueletos. Os desenhos parecem que foram feitos por uma criança, e você começa a se perguntar como eles poderiam ter acabado em um lugar como este. |||}; -{sign_hh3_grave|(Alguém escreveu as palavras \'Descanso\' e \'Sombra\' na cruz, com o que parece ser sangue seco)|||}; -{sign_bwm30_grave|(Na cruz lê-se: Descanse com a Sombra, minha querida)|||}; -{sign_bwm33_grave|(A lápide foi escrita em um idioma que você não entende)|||}; -{sign_bwm52_grave1|(Na cruz, lê-se:.. Aqui jaz Magnir, o comerciante. Outra vítima desses animais)|||}; -{sign_bwm52_grave2|(O túmulo parece que foi recentemente escavado)|||}; -{sign_bwm52_grave3|(A cruz diz: Aqui jaz Torkurt, servo leal do acampamento das Águas Negras)|||}; -{sign_bwm52_grave4|(Na cruz, lê-se:.. Aqui jaz o\'Rani, o guerreiro mais feroz deste lado da montanha. Que ele descanse em paz)|||}; -{sign_bwm52_grave5|(Na cruz, lê-se:.. Viajante Sem nome encontrado no penhasco do lado, morto por um desses animais)|||}; -{sign_bwm52_grave7|(Na cruz, lê-se:. Aqui jaz Trombul, o famoso fabricante de porções)|||}; -{sign_bwm52_grave6|(Na cruz, lê-se:. Aqui jaz os restos de Antagnart, amado por ninguém, mas lembrado por todos)|||}; -{sign_bwm52_papers1|(No chão está o que se parece com algumas páginas arrancadas de um livro)|||}; -{sign_bwm52_papers2|(Você encontra um desenho primitivo de um dos dragões brancos, mas você decide não mantê-lo, uma vez que deve pertencer a alguém)|||}; -{sign_pwcave1_grave|(A cruz mostra lotes de pequenos recortes, como se alguém batesse repetidamente com um objeto afiado. Você mal consegue ler as palavras:... Descanse com a sombra, meu amigo, eu vou vingar-lhe dessas bestas)|||}; -{sign_pwcave2a_grave|(A cruz contém símbolos que você não pode entender)|||}; -{sign_pwcave4_grave1|(A cruz contém símbolos que você não pode entender. Parece que alguém começou a cavar esta cova recentemente, mas parou na metade.)|||}; -{sign_pwcave4_grave2|(A cruz contém símbolos que você não pode compreender e um desenho rude do que você acha que parece com uma besta Izthiel.)|||}; -{sign_pwcave4_grave3|(A cruz contém símbolos que você não pode compreender e um desenho rude do que você acha que parece com um sapo.)|||}; -{sign_pwcave4_grave4|(A cruz contém símbolos que você não pode compreender, mas você reconhece a palavra\'Iqhan\')|||}; -{sign_pwcave4_grave5|(A cruz contém símbolos que você não pode compreender e um desenho rude do que você acha que parece com uma espada.)|||}; -{sign_pwcave4_grave6|(A cruz contém símbolos que você não pode compreender e um desenho rude que não parece com nada que você já tenha visto antes.)|||}; -{sign_pwcave4_grave7|(A cruz contém símbolos que você não pode compreender e um desenho elaborado de uma caveira)|||}; -{sign_waterway14_hole|(você para para observar um buraco na parede perto do chão, grande o suficiente para caber algo dentro. O terreno aqui mostra marcas recentes de sapato, o que poderia indicar que o buraco na parede é um esconderijo de algum tipo. No entanto, parece estar vazio agora)|||}; -{sign_waterway11e_grave|(Na cruz, lê-se:.. Aqui jaz Telban, um querido amigo de muitos, e um inimigo temido por aqueles que não saldavam suas dívidas)|||}; -{sign_mountaincave0_grave|(Na cruz, lê-se:.. Tengil, o necessitado, está aqui, depois de ter sucumbido ao mais desagradável dos venenos. Descanse com a sombra, meu amigo)|||}; -{sign_mountainlake1_grave|(O solo ao redor da sepultura parece que foi parcialmente desenterrado por animais. Eles não parecem ter chegado a lugar algum ainda)|||}; -{sign_waytobrim3_grave1|Aqui jaz os restos de Ilirathos, mãe de dois.|||}; -{sign_waytobrim3_grave2|Ke\'roos está aqui. Ninguém o conhecia na vida, pois sempre foi muito reservado, mas todos nós somos-lhe gratos pelos presentes generosos que ele deixou em Brimhaven.|||}; -{sign_waytobrim3_grave3|Aqui jaz Lawellyn, o fraco.|||}; -{sign_waytolake2_grave|(A cruz está coberta com uma grossa camada de telhas de aranha. Você quer saber por que alguém iria escolher este lugar como um túmulo para seu descanso)|||}; -{sign_lh1_grave|(Mesmo que a madeira na cruz pareca ter sido cortada recentemente, você não vê sinais de algo que esteja enterrado aqu.)|||}; -{sign_lh1_sign|(Na parede, você vê uma placa que diz \'Traga-me o que eu não posso suportar, porque isso me torna mais forte\'.|||}; - - - - diff --git a/AndorsTrail/res/values-pt-rBR/content_itemlist.xml b/AndorsTrail/res/values-pt-rBR/content_itemlist.xml deleted file mode 100644 index 1c1f584a7..000000000 --- a/AndorsTrail/res/values-pt-rBR/content_itemlist.xml +++ /dev/null @@ -1,362 +0,0 @@ - - - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{gold|items_misc:10|Moedas de ouro|money||1|1|||||||||||||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{club1|items_weapons:42|Clava de madeira|club|||7|1||||5|10|||0|1|||||||||||||||||||||||}; -{club3|items_weapons:44|Clava de ferro|mace|||253|1||||6|5|||2|7|||||||||||||||||||||||}; -{ironsword0|items_weapons:0|Espada de ferro crú|lsword|||12|1||||5|10|||0|1|||||||||||||||||||||||}; -{hammer0|items_weapons:45|Martelo de ferro|hammer|||12|1||||5|10|||0|1|||||||||||||||||||||||}; -{hammer1|items_weapons:45|Martelo gigante|hammer2h|||121|1||||10|5|||4|7|||||||||||||||||||||||}; -{dagger0|items_weapons:14|Adaga de ferro|dagger|||12|1||||5|10|||0|1|||||||||||||||||||||||}; -{dagger1|items_weapons:14|Adaga afiada de ferro|dagger|||53|1||||4|20|||1|2|||||||||||||||||||||||}; -{dagger2|items_weapons:14|Adaga superior de ferro|dagger|||70|1||||4|25|||1|2|||||||||||||||||||||||}; -{shortsword1|items_weapons:15|Espada curta de ferro|ssword|||78|1||||4|15|||1|2|||||||||||||||||||||||}; -{ironsword1|items_weapons:0|Espada de ferro|lsword|||78|1||||5|10|||1|3|||||||||||||||||||||||}; -{ironsword2|items_weapons:1|Espada comprida de ferro|lsword|||121|1||||5|10|||1|4|||||||||||||||||||||||}; -{broadsword1|items_weapons:5|Espada larga de ferro|bsword|||251|1||||7|2|||1|10|||||||||||||||||||||||}; -{broadsword2|items_weapons:6|Espada larga de aço|bsword|||582|1||||6|15|||3|10|||||||||||||||||||||||}; -{steelsword1|items_weapons:7|Espada de aço|lsword|||874|1||||4|24|||3|7|||||||||||||||||||||||}; -{axe1|items_weapons:56|Machado de lenhador|axe|||24|1||||5|5|||1|3|||||||||||||||||||||||}; -{axe2|items_weapons:56|Machado de ferro|axe|||312|1||||6|5|||2|5|||||||||||||||||||||||}; -{quickdagger1|items_weapons:14|Adaga de ataque rápido|dagger|4||512|1||||3|20|||0|0|-20||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{ring_dmg1|items_jewelry:0|Anel de dano +1|ring|||215|1||||||||1|1|||||||||||||||||||||||}; -{ring_dmg2|items_jewelry:1|Anel de dano +2|ring|||398|1||||||||2|2|||||||||||||||||||||||}; -{ring_dmg5|items_jewelry:2|Anel de dano +5|ring|4||2014|1||||||||5|5|||||||||||||||||||||||}; -{ring_dmg6|items_jewelry:3|Anel de dano +6|ring|4||3186|1||||||||6|6|||||||||||||||||||||||}; -{ring_block1|items_jewelry:0|Anel de bloqueio leve|ring|4||1239|1||||||||||10||||||||||||||||||||||}; -{ring_block2|items_jewelry:0|Anel de bloqueio polido|ring|4||3866|1||||||||||15||||||||||||||||||||||}; -{ring_atkch1|items_jewelry:0|Anel do golpe certeiro|ring|||215|1|||||15|||||||||||||||||||||||||||}; -{ring1|items_jewelry:0|Anel mundano|ring||1|13|1||||||||0|1|||||||||||||||||||||||}; -{ring2|items_jewelry:0|Anel polido|ring||1|21|1||||||||||1||||||||||||||||||||||}; -{ring_jinxed1|items_jewelry:2|Anel de resistência a dano amaldiçoado|ring|||229|1||||||||||-9|1|||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{jewel_fallhaven|items_jewelry:6|Jóia de Fallhaven|neck|4||3125|1||||-1||||||||||||||||||||||||||||}; -{necklace_shield1|items_jewelry:7|Colar do guardião|neck|4||935|1||||||||||9||||||||||||||||||||||}; -{necklace_shield2|items_jewelry:7|Colar de blindagem|neck|4||1255|1||||||||||12||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{shirt1|items_armours:14|Blusa de algodão|bdy_clth|||16|1||||||||||2||||||||||||||||||||||}; -{shirt2|items_armours:14|Blusa boa|bdy_clth|||72|1||||||||||5||||||||||||||||||||||}; -{shirt_dmgresist|items_armours:15|Blusa de couro reforçada|bdy_lthr|4||1633|1||||||||||5|1|||||||||||||||||||||}; -{armor1|items_armours:15|Armadura de couro|bdy_lthr|||464|1||||||||||8||||||||||||||||||||||}; -{armor2|items_armours:15|Armadura superior de couro|bdy_lthr|||624|1||||||||||9||||||||||||||||||||||}; -{armor3|items_armours:16|Armadura reforçada de couro|bdy_lthr|||2407|1||||||||||13||||||||||||||||||||||}; -{armor4|items_armours:16|Armadura superior reforçada de couro|bdy_lthr|||3866|1||||||||||15||||||||||||||||||||||}; -{hat1|items_armours:21|Chapéu verde|hd_cloth|||13|1||||||||||1||||||||||||||||||||||}; -{hat2|items_armours:21|Chapéu bom verde|hd_cloth|||25|1||||||||||2||||||||||||||||||||||}; -{hat3|items_armours:24|Capuz de couro crú|hd_lthr|||72|1||||||||||5||||||||||||||||||||||}; -{hat4|items_armours:24|Capuz de couro|hd_lthr|||146|1||||||||||6||||||||||||||||||||||}; -{gloves1|items_armours:35|Luvas de couro|hnd_lthr|||23|1||||||||||3||||||||||||||||||||||}; -{gloves2|items_armours:35|Luvas boas de couro|hnd_lthr|||38|1||||||||||4||||||||||||||||||||||}; -{gloves3|items_armours:36|Luvas de pele de cobra|hnd_cloth|||72|1||||||||||5||||||||||||||||||||||}; -{gloves4|items_armours:36|Luvas boas de pele de cobra|hnd_cloth|||146|1||||||||||6||||||||||||||||||||||}; -{shield1|items_armours:0|Broquel de madeira|buckler|||72|1|||||-2|||||5||||||||||||||||||||||}; -{shield3|items_armours:1|Broquel de madeira reforçado|buckler|||226|1|||||-5|||||7||||||||||||||||||||||}; -{shield4|items_armours:2|Escudo de madeira crua|shld_wd_li|||464|1|||||-5|||||8||||||||||||||||||||||}; -{shield5|items_armours:2|Escudo de madeira superior|shld_wd_li|||624|1|||||-4|||||9||||||||||||||||||||||}; -{boots1|items_armours:28|Botas de couro|feet_lthr|||23|1||||||||||3||||||||||||||||||||||}; -{boots2|items_armours:28|Botas de couro superiores|feet_lthr|||38|1||||||||||4||||||||||||||||||||||}; -{boots3|items_armours:29|Botas de pele de cobra|feet_lthr|||146|1||||||||||6||||||||||||||||||||||}; -{boots5|items_armours:30|Botas reforçadas|feet_mtl_hv|||226|1||||||||||7||||||||||||||||||||||}; -{gloves_attack1|items_armours:35|Luvas de ataque rápido|hnd_lthr|||150|1|||||15|||||-9||||||||||||||||||||||}; -{gloves_attack2|items_armours:35|Luvas boas de ataque rápido|hnd_lthr|||221|1|||||17|||||-9||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{apple_green|items_consumables:2|Maçã Verde|food||1|14||||||||||||||1|||||{{food|1|8|100|}}||||||||||||||}; -{apple_red|items_consumables:3|Maçã|food||1|22||||||||||||||1|||||{{food|1|12|100|}}||||||||||||||}; -{meat|items_consumables:25|Carne|animal_e||1|29||||||||||||||1|||||{{food|2|12|100|}{foodp|3|10|10|}}||||||||||||||}; -{meat_cooked|items_consumables:27|Carne cozida|food||1|78||||||||||||||1|||||{{food|3|11|100|}}||||||||||||||}; -{strawberry|items_consumables:8|Morango|food||1|3||||||||||||||1|||||{{food|1|2|100|}}||||||||||||||}; -{carrot|items_consumables:15|Cenoura|food||1|14||||||||||||||1|||||{{food|1|8|100|}}||||||||||||||}; -{bread|items_consumables:21|Pão|food||1|6||||||||||||||1|||||{{food|1|10|100|}}||||||||||||||}; -{mushroom|items_consumables:19|Cogumeno|food||1|3||||||||||||||1|||||{{food|1|2|100|}}||||||||||||||}; -{pear|items_consumables:9|Peira|food||1|14||||||||||||||1|||||{{food|1|8|100|}}||||||||||||||}; -{eggs|items_consumables:20|Ovos|food||1|10||||||||||||||1|||||{{food|1|6|100|}}||||||||||||||}; -{radish|items_consumables:14|Rabanete|food||1|6||||||||||||||1|||||{{food|1|4|100|}}||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{vial_empty1|items_consumables:56|Frasco vazio pequeno|flask||1|2|||||||||||||||||||||||||||||||||}; -{vial_empty2|items_consumables:57|Frasco vazio|flask||1|4|||||||||||||||||||||||||||||||||}; -{vial_empty3|items_consumables:59|Odre vazio|flask||1|6|||||||||||||||||||||||||||||||||}; -{vial_empty4|items_consumables:58|Garrafa de porção vazia|flask||1|11|||||||||||||||||||||||||||||||||}; -{health_minor|items_consumables:35|Frasco pequeno de cura|pot||1|5||||||||||||||1|5|5|||||||||||||||||}; -{health_minor2|items_consumables:35|Porção pequena de cura|pot|||18||||||||||||||1|5|5|||||||||||||||||}; -{health|items_consumables:49|Porção regular de cura|pot|||40||||||||||||||1|10|10|||||||||||||||||}; -{health_major|items_consumables:28|Frasco maior de cura|pot||1|210||||||||||||||1|40|40|||||||||||||||||}; -{health_major2|items_consumables:28|Porção maior de cura|pot|||280||||||||||||||1|40|40|||||||||||||||||}; -{mead|items_consumables:51|Hidromel|drink|||15||||||||||||||1|1|1|||||||||||||||||}; -{milk|items_consumables:55|Leite|drink|||21||||||||||||||1|2|2|||||||||||||||||}; -{bonemeal_potion|items_consumables:34|Porção de farinha óssea|pot||1|45||||||||||||||1|40|40|||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{hair|items_misc:48|Pelo animal|animal||1|2|||||||||||||||||||||||||||||||||}; -{insectwing|items_misc:52|Asa de inseto|animal||1|3|||||||||||||||||||||||||||||||||}; -{bone|items_misc:44|Osso|animal||1|2|||||||||||||||||||||||||||||||||}; -{claws|items_misc:47|Garras|animal||1|2|||||||||||||||||||||||||||||||||}; -{shell|items_misc:54|Casca de inseto|animal||1|2|||||||||||||||||||||||||||||||||}; -{gland|actorconditions_1:60|Glândula de veneno|animal||1|15|||||||||||||||||||||||||||||||||}; -{rat_tail|items_misc:38|Rabo de ratazana|animal||1|2|||||||||||||||||||||||||||||||||}; - - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{rock|items_misc:28|Pedra pequena|gem||1|1|||||||||||||||||||||||||||||||||}; -{gem1|items_misc:0|Gema de vidro|gem||1|2|||||||||||||||||||||||||||||||||}; -{gem2|items_misc:1|Gema de rubi|gem||1|6|||||||||||||||||||||||||||||||||}; -{gem3|items_misc:2|Gema polida|gem||1|8|||||||||||||||||||||||||||||||||}; -{gem4|items_misc:3|Gema lapidada|gem||1|13|||||||||||||||||||||||||||||||||}; -{gem5|items_misc:5|Brilhante polido|gem||1|15|||||||||||||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{tail_caverat|items_misc:38|Rabo de ratazana das cavernas|animal|1|1|0|||||||||||||||||||||||||||||||||}; -{tail_trainingrat|items_misc:38|Rabo de ratazana pequena|animal|1|1|0|||||||||||||||||||||||||||||||||}; -{ring_mikhail|items_jewelry:0|Anel do Mikhail|ring|||15|1|||||10|||||||||||||||||||||||||||}; -{neck_irogotu|items_jewelry:7|Colar do Irogotu|neck|3|1|30|1||||||||||5|1|||||||||||||||||||||}; -{ring_gandir|items_jewelry:0|Anel do Gandir|other|1|1|0|||||||||||||||||||||||||||||||||}; -{dagger_venom|items_weapons:17|Adaga envenenada|dagger|3||15|1||||4|10|5|2|1|2|||||||||||||||||||||||}; -{key_luthor|items_misc:21|Chave do Luthor|other|1|1|0|||||||||||||||||||||||||||||||||}; -{calomyran_secrets|items_books:0|Segredos de Calomyran|other|1|1|0|||||||||||||||||||||||||||||||||}; -{heartstone|items_misc:6|Pedra do Coração|gem|1|1|0|||||||||||||||||||||||||||||||||}; -{vacor_spell|items_books:7|Pedaço do feitiço de Vacor|other|1|1|0|||||||||||||||||||||||||||||||||}; -{ring_unzel|items_jewelry:0|Anel de Unzel|other|1|1|0|||||||||||||||||||||||||||||||||}; -{ring_vacor|items_jewelry:0|Anel de Vacor|other|1|1|0|||||||||||||||||||||||||||||||||}; -{boots_unzel|items_armours:29|botas defensivas de Unzel|feet_lthr|3||185|1||||||||||8||||||||||||||||||||||}; -{boots_vacor|items_armours:29|botas de ataque de Vacor|feet_lthr|3||185|1|||||9|||||2||||||||||||||||||||||}; -{necklace_flagstone|items_jewelry:6|Colar do diretor de Flagstone|other|1|1|0|||||||||||||||||||||||||||||||||}; -{packhide|items_armours:15|Veste de disfarçe de lobo|bdy_hide|3|1|121|1|||||-15|||||2|1|||||||||||||||||||||}; -{sword_flagstone|items_weapons:7|Orgulho de Flagstone|lsword|3||169|1||||4|21|10|2|1|6|||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{armor_chain1|items_armours:17|Cota de malha enferrujada|chmail|||3629|1|||||-9|||||20||||||||||||||||||||||}; -{armor_chain2|items_armours:17|Cota de malha oridnária|chmail|||4191|1|||||-10|||||22||||||||||||||||||||||}; -{hat_leather1|items_armours:24|Chapel ordinário de couro|hd_lthr|||261|1|||||-2|||||7||||||||||||||||||||||}; -{sleepingmead|items_consumables:51|Hidromel com sonífero|other|1|1|0|||||||||||||||||||||||||||||||||}; -{ffguard_qitem|items_jewelry:0|Anel da patrulha de Feygard|other|1|1|0|||||||||||||||||||||||||||||||||}; -{shield6|items_armours:3|Escudo retangular de madeira|shld_twr|||952|1|||||-6|||||12||||||||||||||||||||||}; -{shield7|items_armours:3|Escudo retangular de madeira reforçado|shld_twr|||1538|1|||||-6|||||14||||||||||||||||||||||}; -{club_wood1|items_weapons:44|Clava pesada de ferro|mace|||950|1||||8|15|5|3|2|11|||||||||||||||||||||||}; -{club_wood2|items_weapons:44|Clava pesada palanciado de ferro|mace|||2194|1||||7|10|10|3|2|11|||||||||||||||||||||||}; -{gloves_grip|items_armours:35|Luvas para melhor pegada|hnd_lthr|||471|1|||||9|||||1||||||||||||||||||||||}; -{gloves_fancy|items_armours:35|Luvas ideais|hnd_cloth|||78|1|||||5|||||||||||||||||||||||||||}; -{ring_crit1|items_jewelry:0|Anel de ataque|ring|4||2921|1||||||5||||||||||||||||||||||||||}; -{ring_crit2|items_jewelry:0|Anel de ataque viciado|ring|4||3455|1|||||-3|7||||||||||||||||||||||||||}; -{armor_stone|items_armours:17|Couraça de pedra|bdy_hv|3||52|1||||2||||||22|1|||||||||||||||||||||}; -{ring_shadow0|items_jewelry:2|Anel menor das Sombras|ring|2|1|0|1|||||25|6||4|7|5||{{regen|1|}}||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{rapier_lifesteal|items_weapons:71|Florete de roubo vital|rapier|2|1|0|1|5|||5|21|||1|6||||||||||1|0|3|||||1|3|3||||}; -{dagger_barbed|items_weapons:17|Adaga enfarpada|dagger|3|1|0|1||||4|15|||0|0|5|||||||||1||||||{{bleeding_wound|1|5|50|}}|||||||}; -{elytharan_redeemer|items_weapons:70|Elytharan redentora|2hsword|2|1|0|1||2||5|25|||3|8|5||{{bless|1|}}|0|||||||||||||||||||}; -{clouded_rage|items_weapons:71|Espada da raiva das Sombras|rapier|3|1|0|1||||5|21|||3|6|5|||0|||||||||||||1|||||{{rage_minor|1|1|50|}}|}; -{shadow_slayer|items_weapons:60|Matador das Sombras|axe2h|3|1|0|1||2||7|25|10|2|5|9|||||||||||||||||1|1|1||||}; -{ring_shadow_embrace|items_jewelry:0|Anel do Abraço das Sombras|ring|3|1|0|1|20||||10|||2|2|||||||||||||||||||||||}; -{bwm_dagger|items_weapons:19|Adaga das Águas Negras|dagger|4|1|539|1||||3|40|||1|1|5||{{blackwater_misery|1|}}||||||||||||||||||||}; -{bwm_dagger_venom|items_weapons:19|Adaga das Águas Negras envenenada|dagger|4|1|1552|1||||3|45|||1|1|||{{blackwater_misery|1|}}|||||||1||||||{{poison_weak|1|5|50|}}|||||||}; -{bwm_ironsword|items_weapons:0|Espada de ferro das Águas Negras|lsword|4|1|1224|1||||4|50|||3|7|5||{{blackwater_misery|1|}}||||||||||||||||||||}; -{bwm_leather_armour|items_armours:15|Armadura de couro das Águas Negras|bdy_lthr|4|1|2551|1||||||||||25|1|{{blackwater_misery|1|}}||||||||||||||||||||}; -{bwm_leather_cap|items_armours:24|Capuz de couro das Águas Negras|hd_lthr|4|1|722|1|5|||||||||21||{{blackwater_misery|1|}}||||||||||||||||||||}; -{bwm_combat_ring|items_jewelry:2|Anel de combate das Águas Negras|ring|4|1|595|1|||||5|||0|7|||{{blackwater_misery|1|}}||||||||||||||||||||}; -{bwm_brew|items_consumables:51|Lodo das Águas Negras|pot||1|57||||||||||||||1|15|15|||{{intoxicated|1|10|100|}}||||||||||||||}; -{woodcutter_hatchet|items_weapons:57|Machadinha de lenhador|axe|||0|1||||6|9|||6|12|||||||||||||||||||||||}; -{woodcutter_boots|items_armours:30|Botas de lenhador|feet_lthr|||873|1|1||||3|||||8||||||||||||||||||||||}; -{heavy_club|items_weapons:44|Clava Pesada|mace|||1229|1||||7|15|5|3|2|15|||||||||||||||||||||||}; -{pot_speed_1|items_consumables:41|Porção pequena de velocidade|pot||1|261||||||||||||||1|||||{{speed_minor|1|5|100|}}||||||||||||||}; -{pot_poison_weak|items_consumables:40|Veneno fraco|pot||1|125||||||||||||||1|||||{{poison_weak|1|5|100|}}||||||||||||||}; -{pot_poison_weak_antidote|items_consumables:54|Antídoto para veneno fraco|pot||1|337||||||||||||||1|||||{{poison_weak|-99||100|}}||||||||||||||}; -{pot_bleeding_ointment|items_consumables:35|Pomada para fechamento de feridas|pot||1|310||||||||||||||1|||||{{bleeding_wound|-99||100|}}||||||||||||||}; -{pot_fatigue_restore|items_consumables:41|Restaurador de fatiga|pot||1|210||||||||||||||1|||||{{fatigue_minor|-99||100|}}||||||||||||||}; -{pot_blind_rage|items_consumables:63|Porção para fúria cega|pot||1|495||||||||||||||1|||||{{rage_minor|1|5|100|}}|0|||||||0||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{rusted_iron_sword|items_weapons:0|Espada rústica de ferro|lsword|||52|1||||5|10|||1|2|||||||||||||||||||||||}; -{broken_buckler|items_armours:0|Broquel de madeira quebrado|buckler|||120|1|||||-5|||||1||||||||||||||||||||||}; -{used_gloves|items_armours:35|Luvas sujas de sangue|hnd_lthr|||56|1||||||||||1||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{bwm_claws|items_misc:47|Garra de dragão branco|animal||1|35|||||||||||||||||||||||||||||||||}; -{bwm_permit|items_books:8|Credenciais forjadas para Águas Negras|other|1|1|0|||||||||||||||||||||||||||||||||}; -{bjorgur_dagger|items_weapons:14|Adaga de família de Bjorgur|dagger|1|1|0|1||||5||||||||||||||||||||||||||||}; -{q_kazaul_vial|items_consumables:57|Porção de purificação do espírito|other|1|1|0|||||||||||||||||||||||||||||||||}; -{guthbered_id|items_jewelry:0|Anel de Guthbered|other|1|1|0|||||||||||||||||||||||||||||||||}; -{harlenn_id|items_jewelry:0|Anel de Harlenn|other|1|1|0|||||||||||||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{dagger_shadow_priests|items_weapons:17|Adaga dos sacerdotes da Sombra|dagger|3|1|15|1||||4|20|20|3|1|2|||||||||||||||||||||||}; -{sword_hard_iron|items_weapons:0|Espada reforçada de ferro|lsword||0|369|1||||5|15|||2|4|||||||||||||||||||||||}; -{club_fine_wooden|items_weapons:42|Clava boa de madeira|club||0|245|1||||5|12|||0|7|||||||||||||||||||||||}; -{axe_fine_iron|items_weapons:56|Machado bom de ferro|axe||0|365|1||||6|9|||4|6|||||||||||||||||||||||}; -{longsword_hard_iron|items_weapons:1|Espada comprida reforçada de ferro|lsword||0|362|1||||5|14|||2|6|||||||||||||||||||||||}; -{broadsword_fine_iron|items_weapons:5|Espada larga de ferro boa|bsword||0|422|1||||7|5|||4|10|||||||||||||||||||||||}; -{dagger_sharp_steel|items_weapons:14|Adaga afiada de aço|dagger||0|1428|1||||4|24|||2|4|||||||||||||||||||||||}; -{sword_balanced_steel|items_weapons:7|Espada balanceada de ferro|lsword||0|2797|1||||4|32|||3|7|||||||||||||||||||||||}; -{broadsword_fine_steel|items_weapons:6|Espada comprida de ferro boa|bsword||0|1206|1||||6|20|||4|11|||||||||||||||||||||||}; -{sword_defenders|items_weapons:2|Lâmina do Defensor|lsword||0|1711|1||||5|26|||3|7|3||||||||||||||||||||||}; -{sword_villains|items_weapons:16|Lâmina do Vilão|ssword||0|1665|1||||4|20|5|3|1|2|||||||||||||||||||||||}; -{sword_challengers|items_weapons:1|Espada de ferro do desafiante|lsword||0|785|1||||5|20|||2|6|||||||||||||||||||||||}; -{sword_fencing|items_weapons:13|Lâmina de Esgrima|rapier||0|922|1||||4|14|||2|5|5||||||||||||||||||||||}; -{club_brutal|items_weapons:44|Maça|mace||0|2522|1||||7|20|5|3|2|21|||||||||||||||||||||||}; -{axe_gutsplitter|items_weapons:58|Separador de Intestino|axe2h||0|2733|1||||6|21|||7|17|||||||||||||||||||||||}; -{hammer_skullcrusher|items_weapons:45|Triturador de Crânios|hammer2h||0|3142|1||||7|20|5|3|0|26|||||||||||||||||||||||}; -{shield_crude_wooden|items_armours:0|Broquel de madeira crua|buckler||0|31|1||||||||||1||||||||||||||||||||||}; -{shield_cracked_wooden|items_armours:0|Broquel de madeira rachado|buckler||0|34|1|||||-2|||||2||||||||||||||||||||||}; -{shield_wooden_buckler|items_armours:0|Broquel de madeira de segunda mão|buckler||0|92|1|||||-2|||||3||||||||||||||||||||||}; -{shield_wooden|items_armours:2|Escudo de madeira|shld_wd_li||0|514|1|||||-4|||||8||||||||||||||||||||||}; -{shield_wooden_defender|items_armours:2|Defensor de madeira|shld_wd_li||0|1996|1|||||-8|-5||||14|1|||||||||||||||||||||}; -{hat_hard_leather|items_armours:24|Capuz de couro reforçado|hd_lthr||0|648|1|||||-3|-1||||8||||||||||||||||||||||}; -{hat_fine_leather|items_armours:24|Capuz de couro bom|hd_lthr||0|846|1|||||-3|-2||||9||||||||||||||||||||||}; -{hat_leather_vision|items_armours:24|Capuz de couro com visão reduzida|hd_lthr||0|971|1|||||-3|-4||||10||||||||||||||||||||||}; -{helm_crude_iron|items_armours:25|Elmo de ferro crú|hd_mtl_hv||0|1120|1|||||-3|-5||||11||||||||||||||||||||||}; -{shirt_torn|items_armours:14|Camisa Rasgada|bdy_clth||0|92|1|||||-2|||||3||||||||||||||||||||||}; -{shirt_weathered|items_armours:14|Camisa desbotada|bdy_clth||0|125|1|||||-1|||||3||||||||||||||||||||||}; -{shirt_patched_cloth|items_armours:14|Camisa remendada|bdy_clth||0|208|1||||||||||4||||||||||||||||||||||}; -{armour_crude_leather|items_armours:16|Armadura de couro crú|bdy_lthr||0|514|1|||||-4|||||8||||||||||||||||||||||}; -{armour_firm_leather|items_armours:16|Armadura firme de couro|bdy_lthr||0|417|1|||1|||||||8||||||||||||||||||||||}; -{armour_rigid_leather|items_armours:16|Armadura rígida de couro|bdy_lthr||0|625|1|||1||-1|||||9||||||||||||||||||||||}; -{armour_rigid_chain|items_armours:17|Cota de malha rígida|chmail||0|4667|1||||1|-5|||||23||||||||||||||||||||||}; -{armour_superior_chain|items_armours:17|Cota de malha superior|chmail||0|5992|1|||||-9|||||23||||||||||||||||||||||}; -{armour_chain_champ|items_armours:17|Cota de malha do campeão|chmail||0|6808|1|2||||-9|-5||||24||||||||||||||||||||||}; -{armour_leather_villain|items_armours:16|armadura de couro do vilão|bdy_lthr||0|3700|1|||-1||-4|3||||15||||||||||||||||||||||}; -{armour_misfortune|items_armours:15|Blusa de couro do infortúnio|bdy_lthr||0|2459|1|||||-5|||-1|-1|15||||||||||||||||||||||}; -{gloves_barbrawler|items_armours:35|Luvas de arruaçeiros de bar|hnd_lthr||0|95|1|||||5|||||2||||||||||||||||||||||}; -{gloves_fumbling|items_armours:35|Luvas de desastrados|hnd_lthr||0|-432|1|||||-5|||||1||||||||||||||||||||||}; -{gloves_crude_cloth|items_armours:35|Luvas de pele crua|hnd_cloth||0|31|1||||||||||1||||||||||||||||||||||}; -{gloves_crude_leather|items_armours:35|Luvas de couro crú|hnd_lthr||0|180|1|||||-4|||||6||||||||||||||||||||||}; -{gloves_troublemaker|items_armours:36|Luvas do Arruaçeiro|hnd_lthr||0|501|1|1||||7|4||||4||||||||||||||||||||||}; -{gloves_guards|items_armours:37|Luvas dos Guardas|hnd_mtl_li||0|636|1|3||||3|||||5||||||||||||||||||||||}; -{gloves_leather_attack|items_armours:35|Luvas de couro para ataque|hnd_lthr||0|510|1|3||||13|||||-2||||||||||||||||||||||}; -{gloves_woodcutter|items_armours:35|Luvas de lenhador|hnd_lthr||0|426|1|3||||8|||||1||||||||||||||||||||||}; -{boots_crude_leather|items_armours:28|Botas de couro crú|feet_lthr||0|31|1||||||||||1||||||||||||||||||||||}; -{boots_sewn|items_armours:28|Sapato costurado|feet_clth||0|73|1||||||||||2||||||||||||||||||||||}; -{boots_coward|items_armours:28|Botas do covarde|feet_lthr||0|933|1|||-1|||||||2||||||||||||||||||||||}; -{boots_hard_leather|items_armours:30|Botas de couro reforçado|feet_lthr||0|626|1|||1||-4|||||10||||||||||||||||||||||}; -{boots_defender|items_armours:30|Botas do defensor|feet_mtl_li||0|1190|1|2|||||||||9||||||||||||||||||||||}; -{necklace_shield_0|items_jewelry:7|Colar de proteção fraca|neck||0|131|1||||||||||3||||||||||||||||||||||}; -{necklace_strike|items_jewelry:6|Colar do ataque|neck||0|832|1|5|||||5||||||||||||||||||||||||||}; -{necklace_defender_stone|items_jewelry:7|Pedra do defensor|neck|4|0|1325|1|||||||||||1|||||||||||||||||||||}; -{necklace_protector|items_jewelry:7|Colar do protetor|neck|4|0|3207|1|5||||||||||2|||||||||||||||||||||}; -{ring_crude_combat|items_jewelry:0|Anel de combate crú|ring||0|44|1|||||5|||0|1|||||||||||||||||||||||}; -{ring_crude_surehit|items_jewelry:0|Anel crú do tiro certeiro|ring||0|52|1|||||7|||||||||||||||||||||||||||}; -{ring_crude_block|items_jewelry:0|Anel de bloqueio crú|ring||0|73|1||||||||||2||||||||||||||||||||||}; -{ring_rough_life|items_jewelry:0|Anel grosseiro da força vital|ring||0|100|1|1|||||||||||||||||||||||||||||||}; -{ring_fumbling|items_jewelry:0|Anel do desastrado|ring||0|-463|1|||||-5|||||||||||||||||||||||||||}; -{ring_rough_damage|items_jewelry:0|Anel de dano grosseiro|ring||0|56|1||||||||0|2|||||||||||||||||||||||}; -{ring_barbrawler|items_jewelry:0|Anel dos arruaçeiros de bar|ring||0|222|1|||||12|||0|1|||||||||||||||||||||||}; -{ring_dmg_3|items_jewelry:0|Anel de dano +3|ring||0|624|1||||||||3|3|||||||||||||||||||||||}; -{ring_life|items_jewelry:0|Anel da força vital|ring||0|557|1|5|||||||||||||||||||||||||||||||}; -{ring_taverbrawler|items_jewelry:0|Anel dos arruaçeiros de tavernas|ring||0|314|1|||||12|||0|3|||||||||||||||||||||||}; -{ring_defender|items_jewelry:0|Anel do defensor|ring||0|755|1|||||-6|||||11||||||||||||||||||||||}; -{ring_challenger|items_jewelry:0|Anel do desafiante|ring||0|408|1|||||12|||||4||||||||||||||||||||||}; -{ring_dmg_4|items_jewelry:2|Anel de dano +4|ring||0|1168|1||||||||4|4|||||||||||||||||||||||}; -{ring_troublemaker|items_jewelry:2|Anel do Arruaçeiro|ring||0|797|1|||||15|||2|4|||||||||||||||||||||||}; -{ring_guardian|items_jewelry:2|Anel do guardião|ring|4|0|1489|1|||||19|||3|5|||||||||||||||||||||||}; -{ring_block|items_jewelry:2|Anel de bloqueio|ring|4|0|2192|1||||||||||13||||||||||||||||||||||}; -{ring_backstab|items_jewelry:2|Anel do caluniador|ring||0|1363|1|||||17|7||||3||||||||||||||||||||||}; -{ring_polished_combat|items_jewelry:2|Anel de combate polido|ring|4|0|1346|1|5||||15|||1|5|||||||||||||||||||||||}; -{ring_villain|items_jewelry:2|Anel do vilão|ring|4|0|2750|1|4||||25|||3|6|||||||||||||||||||||||}; -{ring_polished_backstab|items_jewelry:2|Anel polido do caluniador|ring|4|0|2731|1|||||21|7||4|4|||||||||||||||||||||||}; -{ring_protector|items_jewelry:4|Anel do protetor|ring|4|0|3744|1|3||||20|||0|3|14||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{erinith_book|items_books:0|Livro de Erinith|other|1|1|0|||||||||||||||||||||||||||||||||}; -{hadracor_waspwing|items_misc:52|Asa de vespa gigante|animal|1|1|0|||||||||||||||||||||||||||||||||}; -{tinlyn_bells|items_necklaces_1:10|Sino da ovelha de Tinlyn|other|1|1|0|||||||||||||||||||||||||||||||||}; -{tinlyn_sheep_meat|items_consumables:25|Carne de ovelha de Tinlyn|animal|1|1|0|||||||||||||||||||||||||||||||||}; -{rogorn_qitem|items_books:7|Parte de uma pintura|other|1|1|0|||||||||||||||||||||||||||||||||}; -{fg_ironsword|items_weapons:0|Espada de ferro de Feygard|lsword|1|1|0|1||||5|10|||1|5|||||||||||||||||||||||}; -{fg_ironsword_d|items_weapons:0|Espada de ferro de Feygard degradada|lsword|1|1|0|1||||5|-50|||0|0|||||||||||||||||||||||}; -{buceth_vial|items_consumables:47|Frasco com líquido vital de Buceth|other|1|1|0|||||||||||||||||||||||||||||||||}; -{chaosreaper|items_weapons:49|Ceifeiro do Caos|scepter|3|1|339|1||||4|-30|||0|2||||0||||||1||||||{{chaotic_grip|5|3|50|}}|||||||}; -{izthiel_claw|items_misc:47|Garra de Izthiel|animal_e||1|1||||||||||||||1|||||{{food|3|6|100|}{foodp|3|10|20|}}||||||||||||||}; -{iqhan_pendant|items_necklaces_1:2|Pingente de Iqhan|neck||1|10|1|||||6|||||||||||||||||||||||||||}; -{shadowfang|items_weapons_3:41|Presa das Sombras|ssword|3|1|512|1|-20|||4|40|||2|5||||0||||||1|||||{{fatigue_minor|1|3|20|}}||||||||}; -{gloves_life|items_armours_2:1|Luvas da força vital|hnd_lthr|3|1|390|1|9||||5|||||3||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{pot_focus_dmg|items_consumables:39|Porção de dano na precisão|pot||1|272||||||||||||||1|||||{{focus_dmg|1|4|100|}}||||||||||||||}; -{pot_focus_dmg2|items_consumables:39|Porção forte de dano na precisão|pot||1|630||||||||||||||1|||||{{focus_dmg|2|4|100|}}||||||||||||||}; -{pot_focus_ac|items_consumables:37|Porção de aumento da precisão|pot||1|210||||||||||||||1|||||{{focus_ac|1|4|100|}}||||||||||||||}; -{pot_focus_ac2|items_consumables:37|Porção forte de aumento da precisão|pot||1|618||||||||||||||1|||||{{focus_ac|2|4|100|}}||||||||||||||}; -{pot_scaradon|items_consumables:48|Extrato de Scaradon|pot||0|28||||||||||||||1|5|10|||||||||||||||||}; -{remgard_shield_1|items_armours_3:24|Escudo de Remgard|shld_mtl_li||0|2189|1|||||-3|||||9|1|||||||||||||||||||||}; -{remgard_shield_2|items_armours_3:24|Escudo de combate de Remgard|shld_mtl_li||0|2720|1|||||-3|||||11|1|||||||||||||||||||||}; -{helm_combat1|items_armours:25|Elmo de combate|hd_mtl_li||0|455|1|||||5|||||6||||||||||||||||||||||}; -{helm_combat2|items_armours:25|Elmo de combate avançado|hd_mtl_li||0|485|1|||||7|||||6||||||||||||||||||||||}; -{helm_combat3|items_armours:26|Elmo de combate de Remgard|hd_mtl_hv||0|1540|1|1||||-3|-5||||12||||||||||||||||||||||}; -{helm_redeye1|items_armours:24|Capuz dos olhos vermelhos|hd_lthr||0|1|1|-5|||||||||8||||||||||||||||||||||}; -{helm_redeye2|items_armours:24|Capuz dos olhos ensanguentados|hd_lthr||0|1|1|-5|||||||0|1|8||||||||||||||||||||||}; -{helm_defend1|items_armours_3:31|Elmo do defensor|hd_mtl_hv||0|1975|1|||||-3|||||8|1|||||||||||||||||||||}; -{helm_protector0|items_armours_3:31|Elmo de aparência estranha|hd_mtl_li|1|1|0|1|-9|||||||0|1|5||||||||||||||||||||||}; -{helm_protector|items_armours_3:31|Protetor Negro|hd_mtl_li|3|0|3119|1|-6|||||||0|1|13|1|||||||||||||||||||||}; -{armour_chain_remg|items_armours_3:13|Cota de malha de Remgard|chmail||0|8927|1|||||-7|||||25||||||||||||||||||||||}; -{armour_cvest1|items_armours_3:5|Veste de combate|bdy_lt||0|1116|1|||||15|||||8||||||||||||||||||||||}; -{armour_cvest2|items_armours_3:5|Veste de combate de Remgard|bdy_lt||0|1244|1|||||17|||||8||||||||||||||||||||||}; -{gloves_leather1|items_armours:38|Luvas de couro reforçadas|hnd_lthr||0|757|1|3||||2|||||6||||||||||||||||||||||}; -{gloves_arulir|items_armours_2:1|Luvas de pele de Arulir|hnd_lthr||0|1793|1|||||-3|||||7|1|||||||||||||||||||||}; -{gloves_combat1|items_armours:36|Luvas de combate|hnd_lthr||0|956|1|4||||-5|||||9||||||||||||||||||||||}; -{gloves_combat2|items_armours:36|Luvas de combate melhoradas|hnd_lthr||0|1204|1|4||||-5|||||10||||||||||||||||||||||}; -{gloves_remgard1|items_armours:37|Luvas de briga de Remgard|hnd_mtl_li||0|1205|1|4|||||||||8||||||||||||||||||||||}; -{gloves_remgard2|items_armours:37|Luvas encantadas de Remgard|hnd_mtl_li||0|1326|1|5||||2|||||8||||||||||||||||||||||}; -{gloves_guard1|items_armours:38|Luvas do guardião|hnd_lthr||1|601|1|||||-9|-5||||14||||||||||||||||||||||}; -{boots_combat1|items_armours:30|Botas de combate|feet_mtl_li||0|0|1|||||7|||||7||||||||||||||||||||||}; -{boots_combat2|items_armours:30|Botas de combate melhoradas|feet_mtl_li||0|0|1|||||7|||||11||||||||||||||||||||||}; -{boots_remgard1|items_armours:31|Botas de Remgard|feet_mtl_hv||0|0|1|4|||||||||12||||||||||||||||||||||}; -{boots_guard1|items_armours:31|Botas do guardião|feet_mtl_hv||0|0|1||||||||||7|1|||||||||||||||||||||}; -{boots_brawler|items_armours_3:38|Botas dos arruaçeiros de bar|feet_lthr||0|0|1|2|||||4||||7||||||||||||||||||||||}; -{marrowtaint|items_necklaces_1:9|Tintura de medula|neck|3|0|4760|1|5|||-1|9|||||9||||||||||||||||||||||}; -{valugha_gown|items_armours_3:2|Robe de seda de Valugha|bdy_clth|3|0|3109|1|5||-1||30|||||-10|||||||||0|||||||||||||}; -{valugha_hat|items_armours_3:1|Chapéu de pele de Valugha|hd_cloth|3|1|648|1|3||-1||15|||-2|-2|-5||||||||||||||||||||||}; -{hat_crit|items_armours_3:0|Chapel de lenhador com penas|hd_cloth|3|0|1|1||||||4||||-5||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{thorin_bone|items_misc:44|osso mastigado|animal|1|1|0|||||||||||||||||||||||||||||||||}; -{spider|items_misc:40|Aranha morta|animal||1|1|||||||||||||||||||||||||||||||||}; -{irdegh|items_misc:49|Glândula de veneno de Irdegh|animal||1|5|||||||||||||||||||||||||||||||||}; -{arulir_skin|items_misc:39|Pele de Arulir|animal||1|4|||||||||||||||||||||||||||||||||}; -{algangror_rat|items_misc:38|Rabo de ratazana com visual estralho|animal|1|1|0|||||||||||||||||||||||||||||||||}; -{oegyth|items_misc:35|Cristal Oegyth|gem|1|1|0|||||||||||||||||||||||||||||||||}; -{toszylae_heart|items_misc:6|Coração de demônio|other|1|1|0|||||||||||||||||||||||||||||||||}; -{potion_rotworm|items_consumables:63|Podridão de Kazaul|other|1|1|0|||||||||||||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{lyson_marrow|items_consumables:63|Porção de estrato de medula de Lyson|other|1|1|0|||||||||||||||||||||||||||||||||}; -{algangror_idol|items_misc_2:220|Ídolo pequeno|other|1|1|0|||||||||||||||||||||||||||||||||}; -{algangror_ring|items_rings_1:11|Anel de Algangror|other|1|1|0|||||||||||||||||||||||||||||||||}; -{kaverin_message|items_books:7|Mensagem selada de Kaverin|other|1|1|0|||||||||||||||||||||||||||||||||}; -{vacor_map|items_books:9|Mapa para o esconderijo antigo de Vacor|other|1|1|0|||||||||||||||||||||||||||||||||}; - - diff --git a/AndorsTrail/res/values-pt-rBR/content_monsterlist.xml b/AndorsTrail/res/values-pt-rBR/content_monsterlist.xml deleted file mode 100644 index 5681aa226..000000000 --- a/AndorsTrail/res/values-pt-rBR/content_monsterlist.xml +++ /dev/null @@ -1,562 +0,0 @@ - - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{tiny_rat|monsters_rats:0|Ratazana pequena|trainingrat||4|1||2|||10|50|||1|1|||trainingrat|||||||||}; -{cave_rat|monsters_rats:1|Ratazana-das-cavernas|crossglen_caverat||4|||5|||10|90|||2|2|||rat|||||||||}; -{tough_cave_rat|monsters_rats:1|Ratazana-das-cavernas resistente|crossglen_caverat2||4|||5|||5|90|||3|3|||rat|||||||||}; -{strong_cave_rat|monsters_rats:3|Ratazana-das-cavernas forte|crossglen_caveboss||4|1||20|||5|100|||2|4|10||caveratboss|||||||||}; -{black_ant|monsters_insects:0|Formiga preta|crossglen_ant||1|||3|||10|70|||1|2|||insect|||||||||}; -{small_wasp|monsters_insects:1|Vespa pequena|crossglen_wasp||1|||4|||10|70|||1|2|||wasp|||||||||}; -{beetle|monsters_insects:4|Escaravelho|crossglen_beetle||1|||4|||10|70|||3|3|||insect|||||||||}; -{forest_wasp|monsters_insects:1|Vespa-das-florestas|forestwasp||1|||6|||10|70|||1|2|||wasp|||||||||}; -{forest_ant|monsters_insects:0|Formiga-das-florestas|forestant||1|||4|||10|90|||1|2|10||insect|||||||||}; -{yellow_forest_ant|monsters_insects:2|Formiga-das-florestas amarela|forestant||1|||5|||10|100|||2|2|15||insect|||||||||}; -{small_rabid_dog|monsters_dogs:1|Cão raivoso pequeno|forestdog||4|||6|||10|90|||2|2|||canine|||||||||}; -{forest_snake|monsters_snakes:1|Cobra-das-florestas|forestsnake||7|||7|||10|110|||1|2|10||snake|||||||||}; -{young_cave_snake|monsters_snakes:3|Cobra-das-cavernas jovem|cavesnake1||7|||8|||5|110|10|2|2|2|10||snake|||||||||}; -{cave_snake|monsters_snakes:3|Cobra-das-cavernas|cavesnake1||7|||12|||5|110|20|2|2|2|15||snake|||||||||}; -{venomous_cave_snake|monsters_snakes:3|Cobra-das-cavernas venenosa|cavesnake2||7|||15|10||5|110|40|2|2|2|10||snake||1||||||{{poison_weak|1|1|10|}}|}; -{tough_cave_snake|monsters_snakes:3|Cobra-das-cavernas resistente|cavesnake2||7|||21|||5|110|20|2|2|2|15||snake|||||||||}; -{basilisk|monsters_rats:4|Basilisco|cavesnake2_boss||7|||40|||7|40|||3|9|50|2|cavecritter|||||||||}; -{snake_servant|monsters_liches:0|Cobra servo|cavesnake3||6|||35|||5|80|40|3|2|3|10|1|lich1|||||||||}; -{snake_master|monsters_liches:1|Cobra mestre|cavesnake3_boss||6|1||55|||5|60|200|3|1|4|10|4|snakemaster|snakemaster||||||||}; -{rabid_boar|monsters_dogs:6|Javali raivoso|forestboar||4|||20|||5|110|||3|3|30||canineboss|||||||||}; -{rabid_fox|monsters_dogs:3|Raposa raivosa|fox1||4|||25|||5|100|||3|3|50||canine|||||||||}; -{yellow_cave_ant|monsters_insects:2|Formiga-das-cavernas amarela|pitcave1||1|||20|||3|30|||1|1|80||insect|||||||||}; -{young_teeth_critter|monsters_misc:0|Monstro-dos-dentes jovem|pitcave2||7|||15|||2|50|||1|1|70||cavecritter|||||||||}; -{teeth_critter|monsters_misc:0|Monstro-dos-dentes|pitcave2||7|||25|||2|60|10|3|1|1|70||cavecritter|||||||||}; -{young_minotaur|monsters_misc:5|Minotauro jovem|pitcave2||5|||45|||6|20|40|3|4|4|50|2|cavemonster|||||||||}; -{strong_minotaur|monsters_misc:5|Minotauro forte|pitcave2_boss||5|||53|||6|40|50|3|5|5|50|2|cavemonster|||||||||}; -{irogotu|monsters_liches:0|Irogotu|pitcave_boss||6|1||61|||3|50|40|3|2|5|70|4|irogotu|irogotu||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{lost_spirit|monsters_rltiles2:45|Espírito perdido|minorhaunt1||8|||15|||10|50|||1|2|10|3|haunt|haunt||||||||}; -{lost_soul|monsters_rltiles2:45|Alma perdida|minorhaunt2||8|||15|||10|50|||1|2|10|4|haunt|||||||||}; -{haunting|monsters_ghost1:0|Assombração|haunt3||8|||31|10|10|5|120|20|2|1|5|30|1|haunt|||||||||}; -{skeletal_warrior|monsters_skeleton1:0|Esqueleto guerreiro|skeleton1||3|||52|10|10|5|60|||1|3|40|1|skeleton|||||||||}; -{skeletal_master|monsters_skeleton2:0|Esqueleto mestre|skeletonmaster||3|||52|10|10|5|70|||1|3|30|2|skeleton|||||||||}; -{skeleton|monsters_skeleton1:0|Esqueleto|skeleton1||3|||35|10|10|10|60|||1|4|40||skeleton|||||||||}; - -{guardian_of_the_catacombs|monsters_rltiles2:45|Guardião das catacumbas|catacombguard1||8|1||6|10|10|10|10|||1|6|10|3|catacombguard|catacombguard||||||||}; -{catacomb_rat|monsters_rats:0|Ratazana-das-catacumbas|catacombrat1||4|||15|10|10|3|60|||1|1|40||catacombrat|||||||||}; -{large_catacomb_rat|monsters_rats:3|Ratazana-das-catacumbas grande|catacombrat1||4|||21|10|10|3|60|10|2|1|2|40||catacombrat|||||||||}; -{ghostly_visage|monsters_ghost1:0|Visão fantasmagórica|catacombguard2||8|||16|10|10|5|20|||1|4|20|2|catacombguard|||||||||}; -{spectre|monsters_rltiles2:45|Espectro|catacombguard2||8|||15|10|10|3|50|||1|5|60|2|catacombguard|||||||||}; -{apparition|monsters_rltiles2:45|Apraição|catacombguard3||8|||17|10|10|3||||1|5|70|2|catacombguard|||||||||}; -{shade|monsters_ghost1:0|Sombra|catacombguard3||8|||16|10|10|5|20|||1|4|20|3|catacombguard|||||||||}; -{young_gargoyle|monsters_misc:2|Gárgula jovem|catacombguard3||3|||35|10|10|10|110|10|2|2|5|70|1|catacombguard|||||||||}; -{ghost_of_luthor|monsters_liches:2|Fantasma de Luthor|luthor||6|1||86|10|10|5|120|15|2|2|5|50|3|luthor|luthor||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{mikhail|monsters_mage2:0|Mikhail|mikhail||0|||||||||||||||mikhail_start_select||||||||}; -{leta|monsters_men:2|Leta|leta||0|||||||||||||||leta1||||||||}; -{audir|monsters_men:0|Audir|audir||0||||||||||||||shop_audir|audir1||||||||}; -{arambold|monsters_men:3|Arambold|arambold||0||||||||||||||shop_arambold|arambold1||||||||}; -{tharal|monsters_men:4|Tharal|tharal||0||||||||||||||shop_tharal|tharal1||||||||}; -{drunk|monsters_rltiles3:14|Bêbedo|drunk||0|||||||||||||||drunk1||||||||}; -{mara|monsters_men:7|Mara|mara||0||||||||||||||shop_mara|mara1||||||||}; -{gruil|monsters_rogue1:0|Gruil|gruil||0||||||||||||||shop_gruil|gruil1||||||||}; -{leonid|monsters_men:3|Leonid|leonid||0|||||||||||||||leonid1||||||||}; -{farmer|monsters_man1:0|Agricultor|crossglen_farmer1||0|||||||||||||||farm1||||||||}; -{tired_farmer|monsters_man1:0|Agricultor cansado|crossglen_farmer2||0|||||||||||||||farm2||||||||}; -{oromir|monsters_man1:0|Oromir|oromir||0|||||||||||||||oromir1||||||||}; -{odair|monsters_men:8|Odair|odair||0|||||||||||||||odair1||||||||}; -{jan|monsters_rltiles3:14|Jan|jan||0|||||||||||||||jan_start_select||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{warden|monsters_men:3|Director|fallhaven_warden||0|||||||||||||||fallhaven_warden_select_1||||||||}; -{guard|monsters_rltiles3:14|Guarda|fallhaven_guard||0|||||||||||||||fallhaven_guard||||||||}; -{acolyte|monsters_men:4|Acólito|fallhaven_priest||0|||||||||||||||fallhaven_priest||||||||}; -{bearded_citizen|monsters_man1:0|Cidadão barbudo|fallhaven_citizen1||0|||||||||||||||fallhaven_citizen1||||||||}; -{old_citizen|monsters_men:2|Cidadão idoso|fallhaven_citizen2||0|||||||||||||||fallhaven_citizen2||||||||}; -{tired_citizen|monsters_men:7|Cidadão cansado|fallhaven_citizen4||0|||||||||||||||fallhaven_citizen4||||||||}; -{citizen|monsters_man1:0|Cidadão|fallhaven_citizen3||0|||||||||||||||fallhaven_citizen3||||||||}; -{grumpy_citizen|monsters_men:2|Cidadão irritado|fallhaven_citizen5||0|||||||||||||||fallhaven_citizen5||||||||}; -{blond_citizen|monsters_men:7|Cidadão louro|fallhaven_citizen6||0|||||||||||||||fallhaven_citizen6||||||||}; -{bucus|monsters_rogue1:0|Bucus|bucus||0|||||||||||||||bucus_welcome||||||||}; -{drunkard|monsters_men:0|Alcoólico|fallhaven_drunk||0|||||||||||||||fallhaven_drunk||||||||}; -{old_man|monsters_men:5|Idoso|fallhaven_oldman||0|||||||||||||||fallhaven_oldman||||||||}; -{nocmar|monsters_men:8|Nocmar|nocmar||0||||||||||||||nocmar|nocmar||||||||}; -{prisoner|monsters_rogue1:0|Prisioneiro|fallhaven_prisoner||0|||1|1|1|1|0|||0|0||||||||||||}; -{ganos|monsters_rogue1:0|Ganos|ganos||0||||||||||||||shop_ganos|ganos||||||||}; -{arcir|monsters_mage2:0|Arcir|arcir||0|||||||||||||||arcir_start||||||||}; -{athamyr|monsters_men:4|Athamyr|athamyr||0|||||||||||||||athamyr||||||||}; -{thoronir|monsters_men2:8|Thoronir|thoronir||0||||||||||||||shop_thoronir|thoronir_default||||||||}; -{chapelgoer|monsters_men:6|Beato|chapelgoer||0|||||||||||||||chapelgoer||||||||}; -{potion_merchant|monsters_mage2:0|Mercador de poções|fallhaven_potions||0||||||||||||||shop_fallhaven_potions|fallhaven_potions||||||||}; -{tailor|monsters_men2:0|Alfaiate|fallhaven_clothes||0||||||||||||||shop_fallhaven_clothes|fallhaven_clothes||||||||}; -{bela|monsters_men:7|Bela|bela||0||||||||||||||shop_bela|bela||||||||}; -{larcal|monsters_men2:2|Larcal|larcal||0|1||51|10|10|10|25|||1|2|50||larcal|larcal||||||||}; -{gaela|monsters_men2:9|Gaela|gaela||0|||||||||||||||gaela||||||||}; -{unnmir|monsters_mage2:0|Unnmir|unnmir||0|||||||||||||||unnmir||||||||}; -{rigmor|monsters_men:1|Rigmor|rigmor||0|||||||||||||||rigmor||||||||}; - -{jakrar|monsters_men2:2|Jakrar|fallhaven_lumberjack||0|||||||||||||||fallhaven_lumberjack||||||||}; -{alaun|monsters_mage2:0|Alaun|alaun||0|||||||||||||||alaun||||||||}; -{busy_farmer|monsters_man1:0|Agricultor atarefado|fallhaven_farmer1||0|||||||||||||||fallhaven_farmer1||||||||}; -{old_farmer|monsters_mage2:0|Agricultor idoso|fallhaven_farmer2||0|||||||||||||||fallhaven_farmer2||||||||}; -{khorand|monsters_men:3|Khorand|khorand||0|||||||||||||||khorand||||||||}; - -{vacor|monsters_mage:0|Vacor|vacor||0|1||72|||5|110|||4|8|40|2|vacor|vacor||||||||}; -{unzel|monsters_men:8|Unzel|unzel||0|1||59|||10|80|30|3|5|9|40|2|unzel|unzel||||||||}; -{shady_bandit|monsters_men2:9|Bandido|fallhaven_bandit||0|1||45|||5|70|30|3|3|9|50|2|fallhaven_bandit|fallhaven_bandit||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{wild_fox|monsters_dogs:3|Raposa selvagem|fox2||4|||25|||5|100|||4|5|40||canine|||||||||}; -{stinging_wasp|monsters_insects:1|Vespa picante|forestwasp2||1|||15|||10|150|||1|2|60||wasp|||||||||}; -{wild_boar|monsters_dogs:6|Javali selvagem|forestboar2||4|||20|||5|110|||3|3|30||canineboss|||||||||}; -{forest_beetle|monsters_insects:4|Escaravelho-das-florestas|forestbeetle||1|||14|||10|150|||2|4|60|2|insect|||||||||}; -{wolf|monsters_dogs:4|Lobo|forestwolf1||4|||30|10|3|5|110|||3|6|30||canine|||||||||}; -{forest_serpent|monsters_snakes:4|Serpente-das-florestas|forestserpent1||7|||20|10|5|3|150|30|2|2|3|60||snake2|||||||||}; -{vicious_forest_serpent|monsters_snakes:4|Serpente-das-florestas feroz|forestserpent2||7|||27|10|5|3|150|30|2|3|4|50||snake2|||||||||}; -{anklebiter|monsters_dogs:6|Morde-calcanhares|forestboar3||4|||31|||5|150|||3|9|60|3|canine2|||||||||}; -{flagstone_sentry|monsters_men:3|Sentinela de Flagstone|flagstone_sentry||0|||||||||||||||flagstone_sentry||||||||}; -{escaped_prisoner|monsters_men:0|Prisioneiro em fuga|prisoner1||0|1||15|||10|50|||3|7|20||prisoner|prisoner1||||||||}; -{starving_prisoner|monsters_misc:11|Prisioneiro esfomeado|prisoner2||0|1||10|||3|60|||3|5|60||prisoner|prisoner2||||||||}; -{bone_warrior|monsters_skeleton1:0|Ossudo guerreiro|skeleton2||3|||32|||5|120|||3|9|60|2|skeleton2|||||||||}; -{bone_champion|monsters_skeleton1:0|Ossudo campeão|skeleton3||3|||49|||5|130|||4|9|60|2|skeleton3|||||||||}; -{undead_warden|monsters_liches:0|Director morto-vivo|flagstone_guard0||6|1||57|||5|120|20|2|4|8|60|1|flagstone_guard0|flagstone_guard0||||||||}; -{cave_guardian|monsters_rltiles1:16|Guardião da caverna|flagstone_guard1||2|1||61|||5|150|10|3|4|10|90|2|flagstone_guard1|flagstone_guard1||||||||}; -{winged_demon|monsters_demon1:0|Demónio voador|flagstone_guard2|2x2|2|1||82|||5|90|10|2|4|12|70|5|flagstone_guard2|flagstone_guard2||||||||}; -{narael|monsters_man1:0|Narael|narael||0|||||||||||||||narael||||||||}; -{rotting_corpse|monsters_zombie1:0|Cadáver putrefacto|undead1||6|||71|||10|30|50|2|2|5|30|2|undead1|zombie1||||||||}; -{walking_corpse|monsters_zombie1:0|Cadáver andante|undead1||6|||90|||10|30|40|2|2|4|30|2|undead1|||||||||}; -{gargoyle|monsters_misc:2|Gárgula|undead1||3|||47|||10|110|10|2|3|7|70|2|undead1|||||||||}; -{fledgling_gargoyle|monsters_misc:1|Gágula inexperiente|undead1||3|||35|||10|110|||3|6|60|2|undead1|||||||||}; -{large_cave_rat|monsters_rats:3|Ratazana-das-cavernas grande|undeadrat1||4|||21|10|10|3|60|10|2|3|4|40||catacombrat|||||||||}; -{pack_leader|monsters_dogs:5|Chefe da matilha|pack_boss||4|1||65|||5|90|20|2|2|10|40|4|pack_boss|||||||||}; -{pack_hunter|monsters_dogs:4|Caçador da matilha|pack3||4|||45|||5|90|10|2|2|7|40|3|pack3|||||||||}; -{rabid_wolf|monsters_dogs:4|Lobo raivoso|pack2||4|||42|||5|90|||2|6|50|3|pack2|||||||||}; -{fledgling_wolf|monsters_dogs:3|Lobo inexperiente|pack2||4|||42|||3|70|||2|5|50|3|pack2|||||||||}; -{young_wolf|monsters_dogs:4|Lobo jovem|pack1||4|||35|||3|60|||2|5|30|2|pack1|||||||||}; -{hunting_dog|monsters_dogs:2|Cão de caça|pack1||4|||25|||5|60|||2|5|50||pack1|||||||||}; -{highwayman|monsters_men:8|Salteador|bandit1||0|||54|||5|90|50|2|2|4|30|2|bandit1|bandit1||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{smug_looking_thief|monsters_men2:9|Ladrão presunçoso|tg_thief||0|||||||||||||||thievesguild_thief_1||||||||}; -{thieves_guild_cook|monsters_men:0|Cozinheiro da guilda de ladrões|tg_cook||0||||||||||||||shop_thieves_guild_cook|thievesguild_cook_1||||||||}; -{pickpocket|monsters_men:7|Carteirista|pickpocket||0|||||||||||||||thievesguild_pickpocket_1||||||||}; -{troublemaker|monsters_men:8|Arruaceiro|troublemaker||0||||||||||||||shop_troublemaker|thievesguild_troublemaker_1||||||||}; -{farrik|monsters_rogue1:0|Farrik|farrik||0|||||||||||||||farrik_select_1||||||||}; -{umar|monsters_man1:0|Umar|umar||0|||||||||||||||umar_select_1||||||||}; -{kaori|monsters_men:7|Kaori|kaori||0|||||||||||||||kaori_start||||||||}; -{old_vilegard_villager|monsters_men:0|Aldeão idoso de Vilegard|vilegard_villager_1||0|||||||||||||||vilegard_villager_1||||||||}; -{grumpy_vilegard_villager|monsters_men:5|Aldeão irritado de Vilegard|vilegard_villager_2||0|||||||||||||||vilegard_villager_2||||||||}; -{vilegard_citizen|monsters_men:1|Cidadão de Vilegard|vilegard_villager_3||0|||||||||||||||vilegard_villager_3||||||||}; -{vilegard_resident|monsters_men2:0|Residente de Vilegard|vilegard_villager_4||0|||||||||||||||vilegard_villager_4||||||||}; -{vilegard_woman|monsters_men:6|Mulher de Vilegard|vilegard_villager_5||0|||||||||||||||vilegard_villager_5||||||||}; -{erttu|monsters_mage2:0|Erttu|erttu||0|||||||||||||||erttu_1||||||||}; -{dunla|monsters_rogue1:0|Dunla|dunla||0||||||||||||||shop_dunla|dunla_default||||||||}; -{tharwyn|monsters_men:7|Tharwyn|tharwyn||0||||||||||||||shop_tharwyn|tharwyn_select||||||||}; -{tavern_guest|monsters_men:0|Visitante da taberna|vg_tavern_drunk||0|||||||||||||||vilegard_tavern_drunk_1||||||||}; -{jolnor|monsters_men2:8|Jolnor|jolnor||0||||||||||||||shop_jolnor|jolnor_select_1||||||||}; -{alynndir|monsters_mage2:0|Alynndir|alynndir||0||||||||||||||shop_alynndir|alynndir_1||||||||}; -{vilegard_armorer|monsters_mage2:0|Armeiro de Vilegard|vg_armorer||0||||||||||||||shop_vg_armorer|vilegard_armorer_select||||||||}; -{vilegard_smith|monsters_mage2:0|Ferreiro de Vilegard|vg_smith||0||||||||||||||shop_vg_smith|vilegard_smith_select||||||||}; -{ogam|monsters_men:0|Ogam|ogam||0|||||||||||||||ogam_1||||||||}; -{foaming_flask_cook|monsters_men:0|Cozinheiro do Foaming Flask|ff_cook||0|||||||||||||||ff_cook_1||||||||}; -{torilo|monsters_men2:9|Torilo|torilo||0||||||||||||||shop_torilo|torilo_1||||||||}; -{ambelie|monsters_men:6|Ambelie|ambelie||0|||||||||||||||ambelie_1||||||||}; -{feygard_patrol|monsters_rltiles3:14|Patrulha de Feygard|ff_guard||0|||||||||||||||ff_guard_1||||||||}; -{feygard_patrol_captain|monsters_men:3|Capitão de patrulha de Feygard|ff_captain||0|||||||||||||||ff_captain_1||||||||}; -{feygard_patrol_watch|monsters_rltiles3:14|Vigia de patrulha de Feygard|ff_outsideguard||0|1||80|||5|70|||2|7|80|3|ff_outsideguard|ff_outsideguard_select||||||||}; -{wrye|monsters_men:6|Wrye|wrye||0|||||||||||||||wrye_select_1||||||||}; -{oluag|monsters_men:8|Oluag|oluag||0|||||||||||||||oluag_1||||||||}; - -{cave_dwelling_boar|monsters_dogs:6|Javali-das-cavernas|caveboar1||4|||35|||5|70|||3|8|60|3|canine2|||||||||}; -{hardshell_beetle|monsters_insects:4|Escaravelho de casca dura|beetle2||1|||25|||5|50|||0|5|40|9|beetle2|||||||||}; -{young_shadow_gargoyle|monsters_misc:1|Gárgula-das-sombras jovem|shadowgarg1||3|||35|||5|65|8|3|3|9|75|3|shadowgarg1|||||||||}; -{fledgling_shadow_gargoyle|monsters_misc:1|Gárgula-das-sombras inexperiente|shadowgarg1||3|||36|||5|65|8|3|3|9|75|3|shadowgarg1|||||||||}; -{shadow_gargoyle|monsters_misc:2|Gárgula-das-sombras|shadowgarg2||3|||37|||5|70|8|3|4|10|85|3|shadowgarg1|||||||||}; -{tough_shadow_gargoyle|monsters_misc:2|Gárgula-das-sobras resistente|shadowgarg2||3|||37|||5|70|8|3|4|10|85|4|shadowgarg2|||||||||}; -{shadow_gargoyle_trainer|monsters_liches:0|Gárgula-das-sombras instrutora|shadowgarg3||6|||35|||5|90|12|3|3|6|90|5|shadowgarg3|||||||||}; -{shadow_gargoyle_master|monsters_liches:1|Gárgula-das-sombras mestre|shadowgarg4||6|||35|||5|125|12|3|3|6|90|5|shadowgarg3|||||||||}; -{maelveon|monsters_liches:2|Maelveon|maelveon||6|1||55|||3|80|15|3|0|12|90|5|maelveon|maelveon||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{puny_caverat|monsters_rats:0|Ratazana-das-cavernas|puny_caverat||4|||5|10|5|5|50|||1|1|30||rat|||||||||}; -{rabid_hound|monsters_rltiles2:108|Cão raivoso|forestwolf2||4|||40|10|5|5|110|||3|9|30||canine|||||||||}; -{vicious_hound|monsters_rltiles2:110|Cão feroz|forestboar4||4|||31|10|5|5|150|||3|9|60|3|canineboss|||||||||}; -{mountain_wolf|monsters_rltiles2:109|Lobo-das-montanhas|primwolf1||4|||49|10|5|5|150|||3|9|60|3|canine|||||||||}; - -{hatchling_white_wyrm|monsters_rltiles1:118|Cria de wyrm branco|wyrm_1||7|||41|10|5|5|75|||4|10|130|5|wyrm_1||1||||||{{fatigue_minor|1|5|10|}}|}; -{young_white_wyrm|monsters_rltiles1:118|Wyrm branco jovem|wyrm_2||7|||47|10|5|5|75|||4|10|130|5|wyrm_2||1||||||{{fatigue_minor|1|5|20|}}|}; -{white_wyrm|monsters_rltiles1:119|Wyrm branco|wyrm_3||7|||55|10|5|3|75|||4|10|130|5|wyrm_3||1||||||{{fatigue_minor|1|5|50|}}|}; -{young_aulaeth|monsters_rltiles2:176|Aulaeth jovem|wyrm_1||5|||105|10|5|5|40|||0|4|30|5|aulaeth||1|1|1|||||}; -{aulaeth|monsters_rltiles2:58|Aulaeth|wyrm_2||5|||120|10|5|5|40|||0|5|40|6|aulaeth||1|1|1|||||}; -{strong_aulaeth|monsters_rltiles2:58|Aulaeth forte|wyrm_3||5|||135|10|5|5|40|||0|5|35|6|aulaeth||1|1|1|||||}; -{wyrm_trainer|monsters_rltiles2:0|Wyrm instrutor|wyrm_4||6|||69|10|5|3|90|||2|9|90|4|wyrm_4||1|1|1||||{{fatigue_minor|1|10|70|}}|}; -{wyrm_apprentice|monsters_rltiles2:0|Wyrm aprendiz|wyrm_4||6|||69|10|5|5|140|||2|9|90|4|wyrm_4||1|1|1||||{{fatigue_minor|1|10|70|}}|}; -{young_gornaud|monsters_rltiles2:29|Gornaud jovem|gornaud_1||5|||70|10|5|5|70|||0|15|50||gornaud_1||1||||||{{dazed|1|5|20|}}|}; -{gornaud|monsters_rltiles2:29|Gornaud|gornaud_2||5|||95|10|5|5|70|||0|15|50|4|gornaud_2||1||||||{{dazed|1|5|50|}}|}; -{strong_gornaud|monsters_rltiles2:30|Gornaud forte|gornaud_3||5|||95|10|5|5|70|||0|15|50|5|gornaud_3||1||||||{{dazed|1|5|70|}}|}; -{slithering_venomfang|monsters_snakes:2|Venomfang rastejante|gornaud_1||7|||35|10|5|3|120|||1|2|90|2|cave_serpent||1||||||{{poison_weak|1|2|20|}}|}; -{scaled_venomfang|monsters_snakes:3|Venomfang escamosa|gornaud_2||7|||35|10|5|3|150|||2|4|90|2|cave_serpent||1||||||{{poison_weak|1|2|50|}}|}; -{tough_venomfang|monsters_snakes:3|Venomfang resistente|gornaud_3||7|||41|10|5|3|150|||2|5|90|2|cave_serpent||1||||||{{poison_weak|1|2|50|}}|}; - -{restless_dead|monsters_rltiles1:47|Morto irrequieto|restless_dead_1||8|||25|10|5|5|50|80|2|0|3|140|3|restless_dead_1|||||||||}; -{grave_spawn|monsters_rltiles1:49|Ente-das-sepulturas|restless_dead_1||2|||45|10|5|5|110|40|2|2|5|35|3|restless_dead_1|||||||||}; -{restless_apparition|monsters_rltiles1:47|Aparição irrequieta|restless_dead_2||8|||29|10|5|3|90|60|3|2|6|10|1|restless_dead_2|||||||||}; -{skeletal_reaper|monsters_rltiles1:27|Esqueleto ceifador|restless_dead_2||3|||15|10|5|5|150|20|2|0|9|110||restless_dead_2|||||||||}; -{kazaul_spawn|monsters_rltiles1:41|Kazaul ente|kazaul_1||2|||45|10|5|3|70|50|2|3|5|90|1|kazaul_1|||||||||}; -{kazaul_imp|monsters_rltiles1:45|Kazaul duende|kazaul_2||2|||45|10|5|3|70|40|2|3|7|105|1|kazaul_2|||||||||}; -{kazaul_guardian|monsters_rltiles1:42|Kazaul guardião|kazaul_guardian||2|1||95|10|5|5|70|40|2|3|8|90|3|kazaul_guardian|kazaul_guardian||||||||}; -{graverobber|monsters_karvis2:3|Saqueador-de-túmulos|bjorgur_bandit||0|1||62|10|5|5|120|||2|6|72|1|bjorgur_bandit|bjorgur_bandit||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{agent1|monsters_men:4|Agente|bwm_agent_1||0|1||||||||||||||bwm_agent_1_start||||||||}; -{agent2|monsters_men:4|Agente|bwm_agent_2||0|1||||||||||||||bwm_agent_2_start||||||||}; -{agent3|monsters_men:4|Agente|bwm_agent_3||0|1||||||||||||||bwm_agent_3_start||||||||}; -{agent4|monsters_men:4|Agente|bwm_agent_4||0|1||||||||||||||bwm_agent_4_start||||||||}; -{agent5|monsters_men:4|Agente|bwm_agent_5||0|1||||||||||||||bwm_agent_5_start||||||||}; -{agent6|monsters_men:4|Agente|bwm_agent_6||0|1||||||||||||||bwm_agent_6_start||||||||}; -{arghest|monsters_rltiles2:81|Arghest|arghest||0|||||||||||||||arghest_start||||||||}; -{tonis|monsters_rltiles1:67|Tonis|tonis||0|||||||||||||||tonis_start||||||||}; - -{moyra|monsters_rltiles1:74|Moyra|moyra||0|||||||||||||||moyra_1||||||||}; -{prim_citizen|monsters_karvis2:6|Cidadão de Prim|prim_commoner1||0|||||||||||||||prim_commoner1||||||||}; -{prim_commoner|monsters_rltiles1:68|Plebeu de Prim|prim_commoner2||0|||||||||||||||prim_commoner2||||||||}; -{prim_resident|monsters_karvis2:2|Habitante de Prim|prim_commoner3||0|||||||||||||||prim_commoner3||||||||}; -{prim_evoker|monsters_rltiles1:84|Invocador de Prim|prim_commoner4||0|||||||||||||||prim_commoner4||||||||}; -{laecca|monsters_rltiles1:72|Laecca|laecca||0|||||||||||||||laecca_1||||||||}; -{prim_cook|monsters_karvis2:0|Cozinheiro de Prim|prim_cook||0|||||||||||||||prim_cook_start||||||||}; -{prim_visitor|monsters_rltiles1:63|Visitante de Prim|prim_innguest||0|||||||||||||||prim_innguest||||||||}; -{birgil|monsters_rltiles2:81|Birgil|birgil||0||||||||||||||shop_birgil|birgil_1||||||||}; -{prim_tavern_guest|monsters_rltiles1:106|Visitante da taberna de Prim|prim_tavern_guest1||0|||||||||||||||prim_tavern_guest1||||||||}; -{prim_tavern_regular|monsters_rltiles1:106|Cliente da taberna de Prim|prim_tavern_guest2||0|||||||||||||||prim_tavern_guest2||||||||}; -{prim_bar_guest|monsters_rltiles1:106|Visitante do bar de Prim|prim_tavern_guest3||0|||||||||||||||prim_tavern_guest3||||||||}; -{prim_bar_regular|monsters_rltiles1:106|Cliente do bar de Prim|prim_tavern_guest4||0|||||||||||||||prim_tavern_guest4||||||||}; -{prim_armorer|monsters_rltiles1:88|Armeiro de Prim|prim_armorer||0||||||||||||||shop_prim_armorer|prim_armorer||||||||}; -{jueth|monsters_men2:0|Jueth|prim_tailor||0|||||||||||||||prim_tailor||||||||}; -{bjorgur|monsters_karvis2:7|Bjorgur|bjorgur||0|||||||||||||||bjorgur_start||||||||}; -{prim_prisoner|monsters_rltiles2:81|Prisioneiro de Prim|prim_prisoner||0|||||||||||||||prim_guard1||||||||}; -{fulus|monsters_karvis2:3|Fulus|fulus||0|||||||||||||||fulus_start||||||||}; -{guthbered|monsters_rltiles1:92|Guthbered|guthbered||0|1||80|10|5|5|70|||4|9|80|4|guthbered|guthbered_start||||||||}; -{guthbereds_bodyguard|monsters_rltiles1:76|Guarda-costas de Guthbered|guthbered_guard||0|||||||||||||||guthbered_guard||||||||}; -{prim_weapon_guard|monsters_rltiles1:65|Guarda-armas de Prim|prim_guard1||0|||||||||||||||prim_guard1||||||||}; -{prim_sentry|monsters_rltiles3:14|Sentinela de Prim|prim_guard2||0|||||||||||||||prim_guard2||||||||}; -{prim_guard|monsters_rltiles1:65|Guarda de Prim|prim_guard4||0|||||||||||||||prim_guard4||||||||}; -{tired_prim_guard|monsters_rltiles1:76|Guarda de Prim cansado|prim_guard3||0|||||||||||||||prim_guard3||||||||}; -{prim_treasury_guard|monsters_rltiles1:69|Guarda do Tesouro de Prim|prim_treasury_guard||0|||||||||||||||prim_treasury_guard||||||||}; -{samar|monsters_rltiles2:93|Samar|prim_priest||0||||||||||||||shop_samar|prim_priest||||||||}; -{prim_priestly_acolyte|monsters_rltiles1:83|Acólito sacerdotal de Prim|prim_acolyte||0|||||||||||||||prim_acolyte||||||||}; -{studying_prim_pupil|monsters_rltiles1:74|Pupilo em estudo de Prim|prim_pupil1||0|||||||||||||||prim_pupil1||||||||}; -{reading_prim_pupil|monsters_rltiles1:74|Pupilo em leitura de Prim|prim_pupil2||0|||||||||||||||prim_pupil2||||||||}; -{prim_pupil|monsters_rltiles1:74|Pupilo de Prim|prim_pupil3||0|||||||||||||||prim_pupil3||||||||}; - -{blackwater_entrance_guard|monsters_rltiles3:14|Guarda da entrada de Blackwater|blackwater_entranceguard||0|||30|10|||||||||||blackwater_entranceguard||||||||}; -{blackwater_dinner_guest|monsters_karvis2:2|Convidado de jantar de Blackwater|blackwater_guest1||0|||20|10|||||||||||blackwater_guest1||||||||}; -{blackwater_inhabitant|monsters_man1:0|Habitante de Blackwater|blackwater_guest2||0|||10|10|||||||||||blackwater_guest2||||||||}; -{blackwater_cook|monsters_karvis2:0|Cozinheiro de Blackwater|blackwater_cook||0|||||||||||||||blackwater_cook||||||||}; -{keneg|monsters_rltiles1:86|Keneg|keneg||0|||||||||||||||keneg||||||||}; -{mazeg|monsters_rltiles1:85|Mazeg|mazeg||0||||||||||||||shop_mazeg|mazeg||||||||}; -{waeges|monsters_rltiles1:88|Waeges|waeges||0||||||||||||||shop_waeges|waeges||||||||}; -{blackwater_fighter|monsters_rltiles1:66|Lutador de Blackwater|blackwater_fighter||0|||||||||||||||blackwater_fighter||||||||}; -{ungorm|monsters_rltiles1:83|Ungorm|ungorm||0|||||||||||||||ungorm||||||||}; -{blackwater_pupil|monsters_rltiles1:74|Pupilo de Blackwater|blackwater_pupil||0|||||||||||||||blackwater_pupil||||||||}; -{laede|monsters_rltiles1:81|Laede|blackwater_sleephall||0|||||||||||||||laede||||||||}; -{herec|monsters_men2:9|Herec|herec||0||||||||||||||shop_herec|herec_start||||||||}; -{iducus|monsters_rltiles1:87|Iducus|iducus||0||||||||||||||shop_iducus|iducus||||||||}; -{blackwater_priest|monsters_rltiles1:80|Prior de Blackwater|blackwater_priest||0|||||||||||||||blackwater_priest||||||||}; -{studying_blackwater_priest|monsters_rltiles1:84|Prior em estudo de Blackwater|blackwater_pupil||0|||||||||||||||blackwater_pupil||||||||}; -{blackwater_guard|monsters_rltiles1:76|Guarda de Blackwater|blackwater_guard1||0|||||||||||||||blackwater_guard1||||||||}; -{blackwater_border_patrol|monsters_rltiles1:76|Patrulha de fronteira de Blackwater|blackwater_guard2||0|||||||||||||||blackwater_guard2||||||||}; -{harlenns_bodyguard|monsters_rltiles1:76|Guarda-costas de Harlenn|blackwater_bossguard||0|||||||||||||||blackwater_bossguard||||||||}; -{blackwater_chamber_guard|monsters_men:3|Guarda de câmara de Blackwater|blackwater_throneguard||0|1||||||||||||||blackwater_throneguard||||||||}; -{harlenn|monsters_men2:6|Harlenn|harlenn||0|1||80|10|5|5|70|||4|9|80|4|harlenn|harlenn_start||||||||}; -{throdna|monsters_men2:4|Throdna|throdna||0|||||||||||||||throdna_start||||||||}; -{throdnas_guard|monsters_rltiles1:85|Guarda de Throdna|throdna_guard||0|||||||||||||||throdna_guard||||||||}; -{blackwater_mage|monsters_rltiles1:80|Mago de Blackwater|blackwater_acolyte||0|||||||||||||||blackwater_acolyte||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{young_larval_burrower|monsters_rltiles2:164|Larva-escavadora jovem|larva_1||1|||30|10|5|5|120|35|3|1|6|25||larva_1|||||||||}; -{larval_burrower|monsters_rltiles2:164|Larva-escavadora|larva_2||1|||35|10|5|5|120|35|3|1|6|25||larva_2|||||||||}; -{larval_boss|monsters_rltiles2:164|Larva-escavadora forte|larva_boss||1|1||35|10|5|5|120|35|3|1|6|25||larva_boss|||||||||}; - -{rivertroll|monsters_rltiles1:104|Duende-dos-rios|rivertroll||5|1||210|10|5|5|120|30|4|2|9|65|7|rivertroll|||||||||}; -{grass_ant|monsters_insects:0|Formigra-das-pradarias|fieldcritter_0||1|||29|10|5|3|120|||0|4|80||fieldcritter_0|||||||||}; -{grass_ant2|monsters_insects:2|Formiga-das-pradarias resistente|fieldcritter_0||1|||29|10|5|3|125|||1|5|80||fieldcritter_0|||||||||}; -{grass_beetle|monsters_insects:4|Escaravelho-das-pradarias|fieldcritter_1||1|||34|10|5|5|120|||0|5|80|3|fieldcritter_1|||||||||}; -{grass_beetle2|monsters_insects:4|Escaravelho-das-pradarias resistente|fieldcritter_1||1|||35|10|5|5|125|||1|6|80|4|fieldcritter_1|||||||||}; -{grass_snake|monsters_rltiles2:25|Cobra-das-pradarias|fieldcritter_2||7|||36|10|5|3|120|||0|6|80||fieldcritter_2|||||||||}; -{grass_snake2|monsters_rltiles2:25|Cobra-das-pradarias resistente|fieldcritter_2||7|||38|10|5|3|125|||1|7|80||fieldcritter_2|||||||||}; -{grass_lizard|monsters_rltiles2:114|Lagarto-das-pradarias|fieldcritter_3||7|||45|10|5|3|120|||0|8|80|3|fieldcritter_3|||||||||}; -{grass_lizard2|monsters_rltiles2:117|Lagarto-das-pradarias negro|fieldcritter_3||7|||45|10|5|3|125|||2|9|80|4|fieldcritter_3|||||||||}; - -{keknazar|monsters_misc:9|Keknazar|keknazar||7|1||90|10|5|5|50|20|3|3|9|70|8|keknazar|keknazar||||||||}; - -{crossroads_rat|monsters_rats:0|Ratazana|crossroads_rat||4|||5|10|5|5|50|||1|1|30||rat|||||||||}; -{fieldwasp_0|monsters_insects:1|Vespa-das-florestas frenética|fieldwasp_0||1|||29|10|5|3|70|60|3|2|6|95||fieldwasp|||||||||}; -{fieldwasp_1|monsters_insects:1|Vespa-das-florestas frenética|fieldwasp_1||1|||32|10|5|3|70|70|3|2|6|125||fieldwasp|||||||||}; -{fieldwasp_2|monsters_insects:1|Vespa-das-florestas frenética|fieldwasp_2||1|||35|10|5|3|70|75|3|2|6|130||fieldwasp|||||||||}; - -{izthiel_1|monsters_rltiles2:51|Izthiel jovem|izthiel_1||7|||40|10|5|3|70|||2|7|57|5|izthiel||0|||||||}; -{izthiel_2|monsters_rltiles2:49|Izthiel|izthiel_2||7|||45|10|5|3|90|||2|7|58|6|izthiel||0|||||||}; -{izthiel_3|monsters_rltiles2:48|Izthiel forte|izthiel_3||7|||52|10|5|3|80|||2|7|60|8|izthiel||1||||||{{bleeding_wound|2|4|40|}}|}; -{izthiel_4|monsters_rltiles2:52|Izthiel guardião|izthiel_4||7|||54|10|5|3|120|||3|7|60|11|izthiel_4||1||||||{{bleeding_wound|3|5|50|}}|}; -{frog_1|monsters_rltiles1:131|Sapo-dos-rios|frog_1||7|||15|10|5|2|150|||0|5|45||frog||0|||||||}; -{frog_2|monsters_rltiles1:131|Sapo-dos-rios resistente|frog_2||7|||17|10|5|2|160|||0|5|49||frog||0|||||||}; -{frog_3|monsters_rltiles1:130|Sapo-dos-rios venenoso|frog_3||7|||21|10|5|2|165|||0|5|55||frog_3||1||||||{{poison_weak|2|5|30|}}|}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{lostsheep1|monsters_karvis2:8|Ovelha|tinlyn_lostsheep1||4|1||5|10|5|5|10|||0|1|5||tinlyn_sheep|tinlyn_lostsheep1||||||||}; -{lostsheep2|monsters_karvis2:8|Ovelha|tinlyn_lostsheep2||4|1||5|10|5|5|10|||0|1|5||tinlyn_sheep|tinlyn_lostsheep2||||||||}; -{lostsheep3|monsters_karvis2:8|Ovelha|tinlyn_lostsheep3||4|1||5|10|5|5|10|||0|1|5||tinlyn_sheep|tinlyn_lostsheep3||||||||}; -{lostsheep4|monsters_karvis2:8|Ovelha|tinlyn_lostsheep4||4|1||5|10|5|5|10|||0|1|5||tinlyn_sheep|tinlyn_lostsheep4||||||||}; -{sheep1|monsters_karvis2:8|Ovelha|tinlyn_sheep||4|1||5|10|5|5|10|||0|1|5||tinlyn_sheep|tinlyn_sheep||||||||}; - -{ailshara|monsters_men:8|Ailshara|ailshara||0||||||||||||||shop_ailshara|ailshara||||||||}; -{arngyr|monsters_rltiles1:65|Arngyr|arngyr||0|||||||||||||||arngyr||||||||}; -{benbyr|monsters_rltiles1:74|Benbyr|benbyr||0|||||||||||||||benbyr||||||||}; -{celdar|monsters_rltiles1:94|Celdar|celdar||0|||||||||||||||celdar||||||||}; -{conren|monsters_karvis2:5|Conren|conren||0|||||||||||||||conren||||||||}; -{crossroads_backguard|monsters_rltiles1:76|Guarda|crossroads_backguard||0|1||||||||||||||crossroads_backguard||||||||}; -{crossroads_guard|monsters_rltiles1:76|Guarda|crossroads_guard||0|||||||||||||||crossroads_guard||||||||}; -{crossroads_sleepguard|monsters_rltiles1:76|Guarda|crossroads_sleepguard||0|||||||||||||||crossroads_sleepguard||||||||}; -{crossroads_guest|monsters_rltiles1:83|Visitante|crossroads_guest||0|||||||||||||||crossroads_guest||||||||}; -{erinith|monsters_rltiles1:82|Erinith|erinith||0|||||||||||||||erinith||||||||}; -{fanamor|monsters_men:7|Fanamor|fanamor||0|||||||||||||||fanamor||||||||}; -{feygard_bridgeguard|monsters_men2:4|Guarda da ponte de Feygard|feygard_bridgeguard||0|||||||||||||||feygard_bridgeguard||||||||}; -{fieldwasp_unique|monsters_insects:1|Vespa-das-florestas frenética|fieldwasp_unique||1|1||70|10|5|3|70|200|3|2|6|150||fieldwasp_unique|||||||||}; -{gallain|monsters_man1:0|Gallain|gallain||0||||||||||||||shop_gallain|gallain||||||||}; -{gandoren|monsters_rltiles1:69|Gandoren|gandoren||0|||||||||||||||gandoren||||||||}; -{grimion|monsters_men2:2|Grimion|grimion||0||||||||||||||shop_grimion|grimion||||||||}; -{hadracor|monsters_men2:2|Hadracor|hadracor||0||||||||||||||shop_hadracor|hadracor||||||||}; -{kuldan|monsters_rltiles1:85|Kuldan|kuldan||0|||||||||||||||kuldan||||||||}; -{kuldan_guard|monsters_rltiles3:14|Guarda de Kuldan|kuldan_guard||0|||||||||||||||kuldan_guard||||||||}; -{landa|monsters_men:0|Landa|landa||0|||||||||||||||landa||||||||}; -{loneford_chapelguard|monsters_rltiles1:78|Guarda da capela|loneford_chapelguard||0|||||||||||||||loneford_chapelguard||||||||}; -{loneford_farmer0|monsters_karvis2:1|Agricultor|loneford_farmer0||0|||||||||||||||loneford_farmer0||||||||}; -{loneford_guard0|monsters_rltiles3:14|Guarda|loneford_guard0||0|||||||||||||||loneford_guard0||||||||}; -{loneford_tavern_patron|monsters_karvis2:2|Taberneiro|loneford_tavern_patron||0|||||||||||||||loneford_tavern_patron||||||||}; -{loneford_villager0|monsters_karvis2:0|Aldeão|loneford_villager0||0|||||||||||||||loneford_villager0||||||||}; -{loneford_villager1|monsters_karvis2:1|Aldeão|loneford_villager1||0|||||||||||||||loneford_villager1||||||||}; -{loneford_villager2|monsters_karvis2:3|Aldeão|loneford_villager2||0|||||||||||||||loneford_villager2||||||||}; -{loneford_villager3|monsters_karvis2:5|Aldeão|loneford_villager3||0|||||||||||||||loneford_villager3||||||||}; -{loneford_villager4|monsters_men:2|Aldeão|loneford_villager4||0|||||||||||||||loneford_villager4||||||||}; -{loneford_wellguard|monsters_rltiles1:72|Guarda|loneford_wellguard||0|||||||||||||||loneford_wellguard||||||||}; -{mienn|monsters_rltiles1:87|Mienn|mienn||0|||||||||||||||mienn||||||||}; -{minarra|monsters_rltiles1:86|Minarra|minarra||0||||||||||||||shop_minarra|minarra||||||||}; -{puny_warehouserat|monsters_rats:1|Ratazana-dos-celeiros|puny_warehouserat||4|||5|10|5|5|50|||1|1|30||rat|||||||||}; -{rolwynn|monsters_rltiles1:77|Rolwynn|rolwynn||0|||||||||||||||rolwynn||||||||}; -{sienn|monsters_rltiles1:66|Sienn|sienn||0|||||||||||||||sienn||||||||}; -{sienn_pet|monsters_misc:0|Animal de estimação de Sienn|sienn_pet||7|||||||||||||||sienn_pet||||||||}; -{siola|monsters_rltiles1:90|Siola|siola||0||||||||||||||shop_siola|siola||||||||}; -{taevinn|monsters_karvis2:5|Taevinn|taevinn||0|||||||||||||||taevinn||||||||}; -{talion|monsters_men2:8|Talion|talion||0||||||||||||||shop_talion|talion||||||||}; -{telund|monsters_rltiles1:74|Telund|telund||0|||||||||||||||telund||||||||}; -{tinlyn|monsters_karvis2:7|Tinlyn|tinlyn||0|||||||||||||||tinlyn||||||||}; -{wallach|monsters_rltiles1:75|Wallach|wallach||0|||||||||||||||wallach||||||||}; -{woodcutter_0|monsters_men:0|Lenhador|woodcutter_0||0|||||||||||||||woodcutter_0||||||||}; -{woodcutter_2|monsters_men:0|Lenhador|woodcutter_2||0|||||||||||||||woodcutter_2||||||||}; -{woodcutter_3|monsters_men2:2|Lenhador|woodcutter_3||0|||||||||||||||woodcutter_3||||||||}; -{woodcutter_4|monsters_rltiles1:93|Lenhador|woodcutter_4||0|||||||||||||||woodcutter_4||||||||}; -{woodcutter_5|monsters_men2:2|Lenhador|woodcutter_5||0|||||||||||||||woodcutter_5||||||||}; -{rogorn|monsters_rltiles1:63|Rogorn|rogorn||0|1||145|10|5|3|90|||5|9|120|5|rogorn|rogorn||||||||}; -{rogorn_henchman|monsters_rogue1:0|Escudeiro de Rogorn|rogorn_henchman||0|1||130|10|5|3|80|||5|8|120|4|rogorn_henchman|rogorn_henchman||||||||}; -{buceth|monsters_men2:7|Buceth|buceth||0|1||75|10|5|3|80|200|2|3|9|120|4|buceth|buceth||||||||}; -{gauward|monsters_mage2:0|Gauward|gauward||0|||||||||||||||gauward||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{iqhan_1a|monsters_rltiles2:96|Iqhan escravo operário|iqhan_1||0|||55|10|5|3|110|||2|9|70||iqhan_lesser|||||||||}; -{iqhan_1b|monsters_rltiles2:96|Iqhan escravo servo|iqhan_1||0|||57|10|5|3|120|15|2|2|9|70||iqhan_lesser|||||||||}; -{iqhan_2a|monsters_rltiles2:97|Iqhan escravo guarda|iqhan_2||0|||59|10|5|3|130|15|2|2|9|70||iqhan_lesser|||||||||}; -{iqhan_2b|monsters_rltiles2:97|Iqhan escravo|iqhan_2||0|||62|10|5|3|130|15|2|2|10|70||iqhan_lesser|||||||||}; -{iqhan_3a|monsters_rltiles2:128|Iqhan escravo guerreiro|iqhan_3||0|||65|10|5|3|140|15|2|2|11|70||iqhan_lesser|||||||||}; -{iqhan_3b|monsters_rltiles2:129|Iqhan mestre|iqhan_3||0|||67|10|5|3|140|20|2|2|12|60||iqhan_lesser|||||||||}; -{iqhan_4a|monsters_rltiles2:129|Iqhan mestre|iqhan_4||0|||69|10|5|3|140|20|2|2|13|60||iqhan_lesser|||||||||}; -{iqhan_4b|monsters_rltiles2:133|Iqhan mestre|iqhan_4||0|||71|10|5|3|140|20|2|2|15|60||iqhan|||||||||}; -{iqhan_ch_1a|monsters_rltiles2:135|Iqhan invocador do caos|iqhan_ch_1||0|||73|10|5|3|140|20|2|2|15|60||iqhan||1||||||{{chaotic_grip|2|5|20|}}|}; -{iqhan_ch_1b|monsters_rltiles2:135|Iqhan invocador do caos|iqhan_ch_1||0|||75|10|5|3|150|20|2|2|14|60||iqhan||1||||||{{chaotic_grip|2|5|20|}}|}; -{iqhan_ch_2a|monsters_rltiles2:134|Iqhan servo do caos|iqhan_ch_2||0|||78|10|5|3|150|20|2|2|14|60||iqhan||1||||||{{chaotic_grip|4|5|50|}}|}; -{iqhan_ch_2b|monsters_rltiles2:134|Iqhan servo do caos|iqhan_ch_2||0|||79|10|5|3|150|25|2|2|13|75||iqhan||1||||||{{chaotic_grip|4|5|50|}}|}; -{iqhan_ch_3a|monsters_rltiles2:136|Iqhan mestre do caos|iqhan_ch_3||0|||83|10|5|3|170|25|2|2|13|75||iqhan_master||1||||||{{chaotic_grip|4|5|50|}}|}; -{iqhan_ch_3b|monsters_rltiles2:137|Iqhan mestre do caos|iqhan_ch_3||0|||85|10|5|3|170|25|2|2|13|75||iqhan_master||1||||||{{chaotic_grip|4|5|50|}}|}; -{iqhan_chb_1a|monsters_rltiles1:19|Iqhan besta do caos|iqhan_chb_1||3|||122|10|10|10|150|10|3|0|15|45|9|iqhan_beast||1||||||{{chaotic_grip|5|5|50|}}|}; -{iqhan_chb_1b|monsters_rltiles1:19|Iqhan besta do caos|iqhan_chb_1||3|||140|10|10|10|150|10|3|0|15|45|9|iqhan_beast||1||||||{{chaotic_grip|5|5|50|}}|}; -{iqhan_greeter|monsters_men:8|Rancent|iqhan_greeter||0|1||||||||||||||iqhan_greeter||||||||}; -{iqhan_boss|monsters_rltiles1:5|Iqhan escravagista do caos|iqhan_boss||6|1||120|10|5|3|170|30|2|2|13|75|2|iqhan_boss|iqhan_boss|1||||||{{chaotic_grip|7|5|50|}{chaotic_curse|3|5|50|}}|}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{cbeetle_1|monsters_rltiles2:63|Besouro-carniça jovem|scaradon_1||1|||45|10|5|5|65|||0|5|30|9|scaradon|||||||||}; -{cbeetle_2|monsters_rltiles2:63|Besouro-carniça|scaradon_1||1|||51|10|5|5|75|||0|5|30|9|scaradon|||||||||}; -{scaradon_1|monsters_rltiles1:98|Scaradon jovem|scaradon_1||1|||32|10|5|3|50|||0|4|30|15|scaradon|||||||||}; -{scaradon_2|monsters_rltiles1:98|Scaradon pequeno|scaradon_2||1|||35|10|5|3|50|||1|4|30|15|scaradon|||||||||}; -{scaradon_3|monsters_rltiles1:97|Scaradon|scaradon_2||1|||35|10|5|3|50|||0|4|30|17|scaradon|||||||||}; -{scaradon_4|monsters_rltiles1:97|Scaradon resistente|scaradon_2||1|||37|10|5|3|50|||1|4|30|17|scaradon|||||||||}; -{scaradon_5|monsters_rltiles1:97|Scaradon casca-dura|scaradon_3||1|||38|10|5|3|50|||1|5|30|18|scaradon_b|||||||||}; - -{mwolf_1|monsters_dogs:3|Filhote de lobo da montanha|mwolf_1||4|||45|10|5|5|80|10|2|2|7|40|3|mwolf|||||||||}; -{mwolf_2|monsters_dogs:3|Lobo da montanha jovem|mwolf_1||4|||52|10|5|5|80|10|2|3|7|44|3|mwolf|||||||||}; -{mwolf_3|monsters_dogs:2|Raposa da montanha jovem|mwolf_1||4|||56|10|5|5|80|10|2|3|7|48|4|mwolf|||||||||}; -{mwolf_4|monsters_dogs:2|Raposa da montanha|mwolf_2||4|||60|10|5|5|85|10|2|3|8|52|4|mwolf|||||||||}; -{mwolf_5|monsters_dogs:2|Raposa da montanha feroz|mwolf_2||4|||64|10|5|3|85|10|2|3|8|54|5|mwolf|||||||||}; -{mwolf_6|monsters_dogs:4|Lobo da montanha raivoso|mwolf_2||4|||67|10|5|3|90|10|2|3|9|56|5|mwolf|||||||||}; -{mwolf_7|monsters_dogs:4|Lobo da montanha forte|mwolf_3||4|||73|10|5|3|90|10|2|3|9|57|6|mwolf|||||||||}; -{mwolf_8|monsters_dogs:4|Lobo da montanha feroz|mwolf_3||4|||78|10|5|3|90|10|2|3|10|59|6|mwolf_b|||||||||}; - -{mbrute_1|monsters_rltiles2:35|Besta da monhtanha jovem|mbrute_1||5|||148|10|5|5|70|20|2.5|0|14|60|4|mbrute|||||||||}; -{mbrute_2|monsters_rltiles2:35|Besta da monhtanha fraca|mbrute_1||5|||157|10|5|5|70|20|2.5|0|14|60|4|mbrute|||||||||}; -{mbrute_3|monsters_rltiles2:36|Besta da monhtanha forrada de branco|mbrute_1||5|||166|10|5|5|70|20|2.5|0|14|60|4|mbrute|||||||||}; -{mbrute_4|monsters_rltiles2:35|Besta da monhtanha|mbrute_2||5|||175|10|5|5|70|20|2.5|0|14|60|4|mbrute|||||||||}; -{mbrute_5|monsters_rltiles2:36|Besta da monhtanha larga|mbrute_2||5|||184|10|5|5|70|20|2.5|0|14|60|4|mbrute|||||||||}; -{mbrute_6|monsters_rltiles2:34|Besta da monhtanha rápida|mbrute_2||5|||82|12|5|3|80|20|2.5|0|14|60|4|mbrute|||||||||}; -{mbrute_7|monsters_rltiles2:34|Besta da monhtanha veloz|mbrute_3||5|||93|12|5|3|80|20|2.5|0|15|60|4|mbrute|||||||||}; -{mbrute_8|monsters_rltiles2:34|Besta da monhtanha agressiva|mbrute_3||5|||104|12|5|3|80|20|2.5|1|15|60|4|mbrute|||||||||}; -{mbrute_9|monsters_rltiles2:33|Besta da monhtanha forte|mbrute_3||5|||115|10|5|3|80|20|2.5|1|15|60|4|mbrute|||||||||}; -{mbrute_10|monsters_rltiles2:33|Besta da monhtanha resistente|mbrute_4||5|||126|10|5|3|80|30|3|2|15|60|4|mbrute|||||||||}; -{mbrute_11|monsters_rltiles2:33|Besta da monhtanha destemida|mbrute_4||5|||137|10|5|3|80|30|3|2|15|60|4|mbrute_b|||||||||}; -{mbrute_12|monsters_rltiles2:33|Besta da monhtanha enfurecida|mbrute_4||5|||148|10|5|3|80|40|3|2|16|60|4|mbrute_b|||||||||}; - -{erumen_1|monsters_rltiles2:114|Lagarto Erumem jovem|erumen_1||7|||45|10|5|3|125|||2|9|80|4|erumen|||||||||}; -{erumen_2|monsters_rltiles2:114|Lagarto Erumem malhado|erumen_1||7|||45|10|5|3|125|||2|9|80|4|erumen|||||||||}; -{erumen_3|monsters_rltiles2:114|Lagarto Erumem|erumen_2||7|||45|10|5|3|125|||2|9|80|4|erumen|||||||||}; -{erumen_4|monsters_rltiles2:115|Lagarto Erumem forte|erumen_2||7|||79|10|5|3|125|||2|9|80|4|erumen|||||||||}; -{erumen_5|monsters_rltiles2:115|Lagarto Erumem vil|erumen_3||7|||89|10|5|3|150|||2|9|80|4|erumen|||||||||}; -{erumen_6|monsters_rltiles2:117|Lagarto Erumem resistente|erumen_3||7|||91|10|5|3|125|||2|9|90|8|erumen|||||||||}; -{erumen_7|monsters_rltiles2:117|Lagarto Erumem endurecido|erumen_4||7|||93|10|5|3|125|||2|9|90|12|erumen_b||||||||{{bleeding_wound|3|3|50|}}|}; - -{plaguesp_1|monsters_rltiles2:61|Réptil-praga fraco|plaguespider_1||1|||55|10|5|3|80|60|3|1|6|140||plaguespider||1||||||{{contagion|1|5|70|}{blister|1|5|20|}}|}; -{plaguesp_2|monsters_rltiles2:61|Réptil-praga|plaguespider_1||1|||57|10|5|3|80|60|3|1|6|140||plaguespider||1||||||{{contagion|3|5|70|}{blister|2|5|20|}}|}; -{plaguesp_3|monsters_rltiles2:61|Réptil-praga robusto|plaguespider_1||1|||59|10|5|3|80|60|3|1|6|140||plaguespider||1||||||{{contagion|3|5|70|}{blister|2|5|20|}}|}; -{plaguesp_4|monsters_rltiles2:61|Réptil-praga preto|plaguespider_2||1|||61|10|5|3|80|60|3|1|6|150||plaguespider||1||||||{{contagion|4|5|70|}{blister|3|5|20|}}|}; -{plaguesp_5|monsters_rltiles2:151|Percevejo-praga|plaguespider_2||1|||62|10|5|3|80|60|3|2|6|150||plaguespider||1||||||{{contagion|4|5|70|}{blister|3|5|20|}}|}; -{plaguesp_6|monsters_rltiles2:151|Percevejo-praga de de casca dura|plaguespider_2||1|||63|10|5|3|80|60|3|2|6|150||plaguespider||1||||||{{contagion|5|5|70|}{blister|4|5|20|}}|}; -{plaguesp_7|monsters_rltiles2:151|Percevejo-praga resistente|plaguespider_3||1|||64|10|5|3|80|70|3|2|6|155||plaguespider||1||||||{{contagion|5|5|70|}{blister|4|5|20|}}|}; -{plaguesp_8|monsters_rltiles2:153|Percevejo-praga peludo|plaguespider_3||1|||65|10|5|3|80|70|3|2|6|155||plaguespider||1||||||{{contagion|6|5|70|}{blister|5|5|50|}}|}; -{plaguesp_9|monsters_rltiles2:153|Percevejo-praga peludo resistente|plaguespider_3||1|||66|10|5|3|80|70|3|2|7|160||plaguespider||1||||||{{contagion|6|5|70|}{blister|5|5|50|}}|}; -{plaguesp_10|monsters_rltiles2:151|Percevejo-praga vil|plaguespider_4||1|||67|10|5|3|85|70|3|2|7|160||plaguespider||1||||||{{contagion|6|5|70|}{blister|5|5|50|}}|}; -{plaguesp_11|monsters_rltiles2:153|Percevejo-praga aninhando|plaguespider_4||1|||68|10|5|3|85|70|3|2|7|165||plaguespider||1||||||{{contagion|6|5|70|}{blister|5|5|50|}}|}; -{plaguesp_12|monsters_rltiles2:38|Servo Percevejo-praga|plaguespider_5||6|||65|10|5|3|85|120|3|2|7|165||plaguespider||1||||||{{contagion|7|5|70|}{blister|6|5|50|}}|}; -{plaguesp_13|monsters_rltiles2:38|Mestre Percevejo-praga|plaguespider_6||6|||65|10|5|3|85|120|3|2|8|175|2|plaguespider_b||1||||||{{contagion|7|5|70|}{blister|6|5|50|}}|}; - -{allaceph_1|monsters_rltiles2:101|Allaceph jovem|allaceph_1||2|||90|10|5|3|80|40|2|3|7|105|1|allaceph||1|4|4||||{{feebleness_minor|2|3|20|}}|}; -{allaceph_2|monsters_rltiles2:101|Allaceph|allaceph_1||2|||94|10|5|3|80|40|2|3|7|105|1|allaceph||1|4|4||||{{feebleness_minor|2|3|20|}}|}; -{allaceph_3|monsters_rltiles2:102|Allaceph forte|allaceph_2||2|||101|10|5|3|80|40|2|3|7|105|2|allaceph||1|4|4||||{{feebleness_minor|2|3|20|}}|}; -{allaceph_4|monsters_rltiles2:102|Allaceph resistente|allaceph_2||2|||111|10|5|3|80|40|2|3|7|110|2|allaceph||1|4|4||||{{feebleness_minor|3|3|20|}}|}; -{allaceph_5|monsters_rltiles2:103|Allaceph radiante|allaceph_3||2|||124|10|5|3|80|40|2|3|7|110|3|allaceph_b||1|6|6||||{{feebleness_minor|3|3|20|}}|}; -{allaceph_6|monsters_rltiles2:103|Ancião Allaceph|allaceph_3||2|||133|10|5|3|80|40|2|3|7|115|3|allaceph_b||1|7|7||||{{feebleness_minor|3|3|20|}}|}; -{vaeregh_1|monsters_rltiles1:42|Vaeregh|allaceph_4||2|||149|10|5|3|80|40|2|2|7|120|4|allaceph||1|10|10||||{{feebleness_minor|4|3|20|}}|}; - -{irdegh_sp_1|monsters_rltiles2:26|Irdegh filhote|irdegh_spawn||7|||57|12|5|3|120|||0|6|80||irdegh_spawn||1||||||{{poison_irdegh|2|3|10|}}|}; -{irdegh_sp_2|monsters_rltiles2:26|Irdegh filhote|irdegh_spawn||7|||68|12|5|3|120|||0|6|80||irdegh_spawn||1||||||{{poison_irdegh|2|3|10|}}|}; -{irdegh_1|monsters_rltiles2:15|Irdegh|irdegh_1||7|||115|10|5|3|120|||3|7|60|10|irdegh||1||||||{{poison_irdegh|3|4|50|}}|}; -{irdegh_2|monsters_rltiles2:15|Irdegh venenoso|irdegh_2||7|||120|10|5|3|120|||3|7|60|11|irdegh||1||||||{{poison_irdegh|3|4|50|}}|}; -{irdegh_3|monsters_rltiles2:14|Irdegh farpado|irdegh_3||7|||125|10|5|3|120|10|2|3|7|60|11|irdegh||1||||||{{poison_irdegh|3|4|50|}}|}; -{irdegh_4|monsters_rltiles2:14|Irdegh farpado ancião|irdegh_4||7|||130|10|5|3|120|30|2|3|7|60|14|irdegh_b||1||||||{{poison_irdegh|3|4|70|}}|}; - -{maonit_1|monsters_rltiles1:104|Troll Maonit|maonit_1||5|||255|5|5|5|65|10|3|1|20|20|4|maonit|||||||||}; -{maonit_2|monsters_rltiles1:104|Troll Maonit gigante|maonit_1||5|||270|5|5|5|65|10|3|1|20|20|4|maonit|||||||||}; -{maonit_3|monsters_rltiles1:104|Troll Maonit forte|maonit_2||5|||285|5|5|5|65|20|3|1|20|20|5|maonit|||||||||}; -{maonit_4|monsters_rltiles1:107|Besta Maonit|maonit_2||5|||290|5|5|5|65|20|3|1|20|20|5|maonit|||||||||}; -{maonit_5|monsters_rltiles1:107|Besta Maonit resistente|maonit_3||5|||310|5|5|5|65|30|3|1|20|20|6|maonit||1||||||{{stunned|1|3|10|}}|}; -{maonit_6|monsters_rltiles1:107|Besta Maonit resistente|maonit_3||5|||320|5|5|5|65|30|3|1|20|20|6|maonit||1||||||{{stunned|1|3|10|}}|}; -{arulir_1|monsters_rltiles1:13|Arulir|arulir_1||5|||325|5|5|5|70|30|3|1|20|20|8|arulir||1||||||{{stunned|1|3|20|}}|}; -{arulir_2|monsters_rltiles1:13|Arulir gigante|arulir_1||5|||330|5|5|5|70|30|3|1|20|20|8|arulir||1||||||{{stunned|1|3|20|}}|}; - -{burrower_1|monsters_rltiles2:164|Burrower larval da caverna|burrower_1||1|||30|10|5|5|95|||1|25|80|2|burrower|||||||||}; -{burrower_2|monsters_rltiles2:164|Burrower da caverna|burrower_1||1|||37|10|5|5|95|||1|25|80|2|burrower|||||||||}; -{burrower_3|monsters_rltiles2:165|Burrower larval forte|burrower_2||1|||44|10|5|5|95|||1|25|80|2|burrower|||||||||}; -{burrower_4|monsters_rltiles2:165|Burrower larval gigante|burrower_3||1|||75|10|5|5|95|||1|25|80|2|burrower|||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{ulirfendor|monsters_rltiles1:84|Ulirfendor|ulirfendor||0|1||288|10|5|3|70|30|2|1|16|60|6|ulirfendor|ulirfendor||||||||}; -{gylew|monsters_mage2:0|Gylew|gylew||0|||||||||||||||gylew||||||||}; -{gylew_henchman|monsters_men:8|Escudeiro de Gylew|gylew_henchman||0|||||||||||||||gylew_henchman||||||||}; -{toszylae|monsters_liches:1|Toszylae|toszylae||6|1||207|8|5|2|80|40|2|2|7|120|4|toszylae|toszylae|1|6|6||||{{feebleness_minor|3|3|20|}}|}; -{toszylae_guard|monsters_rltiles1:20|Guardião radiante|toszylae_guard||2|1||320|10|5|3|80|40|2|2|7|120|4|toszylae_guard|toszylae_guard|1|5|5||||{{feebleness_minor|2|3|20|}}|}; -{thorin|monsters_rltiles1:66|Thorin|thorin||0||||||||||||||shop_thorin|thorin||||||||}; - -{lonelyhouse_sp|monsters_rats:1|Ratazana de porão|lonelyhouse_sp||4|1||79|10|5|3|125|||2|9|180|4|lonelyhouse_sp|||||||||}; -{algangror|monsters_rltiles1:68|Algangror|algangror||0|1||241|10|5|3|80|200|2|3|9|120|4|algangror|algangror||||||||}; -{remgard_bridge|monsters_men2:4|Vigia da ponte|remgard_bridge||0|1||||||||||||||remgard_bridge||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{ingus|monsters_rltiles1:94|Ingus|ingus||0|||||||||||||||ingus||||||||}; -{elwyl|monsters_rltiles3:17|Elwyl|elwyl||0|||||||||||||||elwyl||||||||}; -{elwel|monsters_rltiles3:17|Elwel|elwel||0|||||||||||||||elwel||||||||}; -{hjaldar|monsters_rltiles1:70|Hjaldar|hjaldar||0||||||||||||||shop_hjaldar|hjaldar||||||||}; -{norath|monsters_ld1:8|Norath|norath||0|||||||||||||||norath||||||||}; -{rothses|monsters_ld1:14|Rothses|rothses||0||||||||||||||shop_rothses|rothses||||||||}; -{duaina|monsters_ld1:154|Duaina|duaina||0|||||||||||||||duaina||||||||}; -{rg_villager1|monsters_ld1:132|Cidadão comum|remgard_villager1||0|||||||||||||||remgard_villager1||||||||}; -{rg_villager2|monsters_ld1:20|Cidadão comum|remgard_villager2||0|||||||||||||||remgard_villager2||||||||}; -{rg_villager3|monsters_ld1:134|Cidadão comum|remgard_villager3||0|||||||||||||||remgard_villager3||||||||}; -{jhaeld|monsters_mage:0|Jhaeld|jhaeld||0|||||||||||||||jhaeld||||||||}; -{krell|monsters_men2:6|Krell|krell||0|||||||||||||||krell||||||||}; -{elythom_kn1|monsters_men:3|Cavaleiro de Elythom|elythom_knight1||0|||||||||||||||elythom_knight1||||||||}; -{elythom_kn2|monsters_men:3|Cavaleiro de Elythom|elythom_knight2||0|||||||||||||||elythom_knight2||||||||}; - -{almars|monsters_rogue1:0|Almars|almars||0|||||||||||||||almars||||||||}; -{arghes|monsters_rogue1:0|Arghes|arghes||0||||||||||||||shop_arghes|arghes||||||||}; -{arnal|monsters_ld1:28|Arnal|arnal||0||||||||||||||shop_arnal|arnal||||||||}; -{atash|monsters_ld1:38|Aatash|atash||0|||||||||||||||atash||||||||}; -{caeda|monsters_ld1:145|Caeda|caeda||0|||||||||||||||caeda||||||||}; -{carthe|monsters_man1:0|Carthe|carthe||0|||||||||||||||carthe||||||||}; -{chael|monsters_men:0|Chael|chael||0|||||||||||||||chael||||||||}; -{easturlie|monsters_men:6|Easturlie|easturlie||0|||||||||||||||easturlie||||||||}; -{emerei|monsters_ld1:27|Emerei|emerei||0|||||||||||||||emerei||||||||}; -{ervelyn|monsters_ld1:228|Ervelyn|ervelyn||0||||||||||||||shop_ervelyn|ervelyn||||||||}; -{freen|monsters_rltiles1:77|Freen|freen||0|||||||||||||||freen||||||||}; -{janach|monsters_rltiles3:8|Janach|janach||0|||||||||||||||janach||||||||}; -{kendelow|monsters_man1:0|Kendelow|kendelow||0||||||||||||||shop_kendelow|kendelow||||||||}; -{larni|monsters_ld1:26|Larni|larni||0|||||||||||||||larni||||||||}; -{maelf|monsters_ld1:53|Maelf|maelf||0|||||||||||||||maelf||||||||}; -{morgisia|monsters_rltiles3:5|Morgisia|morgisia||0|||||||||||||||morgisia||||||||}; -{perester|monsters_rltiles3:18|Perester|perester||0|||||||||||||||perester||||||||}; -{perlynn|monsters_mage2:0|Perlynn|perlynn||0|||||||||||||||perlynn||||||||}; -{reinkarr|monsters_rltiles1:66|Reinkarr|reinkarr||0|||||||||||||||reinkarr||||||||}; -{remgard_d1|monsters_ld1:18|Hóspede da taverna|remgard_drunk||0|||||||||||||||remgard_drunk1||||||||}; -{remgard_d2|monsters_rltiles2:81|Hóspede da taverna|remgard_drunk||0|||||||||||||||remgard_drunk2||||||||}; -{remgard_farmer1|monsters_ld1:26|Fazendeiro|remgard_farmer1||0|||||||||||||||remgard_farmer1||||||||}; -{remgard_farmer2|monsters_ld1:220|Fazendeiro|remgard_farmer2||0|||||||||||||||remgard_farmer2||||||||}; -{remgard_g1|monsters_ld1:4|Guarda|remgard_guard||0|||||||||||||||fallhaven_guard||||||||}; -{remgard_g2|monsters_ld1:5|Guarda|remgard_guard||0|||||||||||||||blackwater_guard1||||||||}; -{remgard_g3|monsters_ld1:67|Guarda|remgard_guard2||0|||||||||||||||remgard_guard1||||||||}; -{remgard_pg|monsters_ld1:11|Guarda da Prisão|remgard_prison_guard||0|||||||||||||||remgard_prison_guard||||||||}; -{rg_villager4|monsters_ld1:164|Cidadão comum|remgard_villager4||0|||||||||||||||remgard_villager4||||||||}; -{rg_villager5|monsters_ld1:148|Cidadão comum|remgard_villager5||0|||||||||||||||remgard_villager5||||||||}; -{rg_villager6|monsters_ld1:188|Cidadão comum|remgard_villager6||0|||||||||||||||remgard_villager6||||||||}; -{rg_villager7|monsters_ld1:10|Cidadão comum|remgard_villager7||0|||||||||||||||remgard_villager7||||||||}; -{rg_villager8|monsters_rltiles3:18|Cidadão comum|remgard_villager8||0|||||||||||||||remgard_villager8||||||||}; -{skylenar|monsters_ld1:3|Skylenar|skylenar||0||||||||||||||shop_skylenar|skylenar||||||||}; -{taylin|monsters_rltiles1:74|Taylin|taylin||0|||||||||||||||taylin||||||||}; -{petdog|monsters_dogs:0|Cachorro|petdog||4|||||||||||||||petdog||||||||}; -{kaverin|monsters_ld1:100|Kaverin|kaverin||5|1||320|5|5|3|65|30|3|1|20|90|6|kaverin|kaverin|0|||||||}; - -{izthiel_cr|monsters_rltiles2:52|Guardião de Izthiel|izthiel_cr||7|1||354|10|5|3|120|||3|7|60|11|oegyth1||1||||||{{bleeding_wound|3|5|50|}}|}; -{burrower_cr|monsters_rltiles2:165|Burrower larval gigante|burrower_cr||1|1||175|10|5|5|95|||1|25|80|2|oegyth1|||||||||}; -{allaceph_cr|monsters_rltiles2:103|Ancião Allaceph|allaceph_cr||2|1||333|10|5|3|80|40|2|3|7|115|3|oegyth1||1|7|7||||{{feebleness_minor|3|3|20|}}|}; -{plaguesp_cr|monsters_rltiles2:38|Mestre rogador de pragas|plaguespider_cr||6|1||365|10|5|3|85|160|3|2|8|175|2|oegyth1||1||||||{{contagion|4|5|70|}{blister|3|5|50|}}|}; -{maonit_cr|monsters_rltiles1:107|Maonit forte bruto|maonit_cr||5|1||620|5|5|5|65|30|3|1|20|20|6|oegyth1||1||||||{{stunned|1|3|10|}}|}; - - - diff --git a/AndorsTrail/res/values-pt-rBR/content_questlist.xml b/AndorsTrail/res/values-pt-rBR/content_questlist.xml deleted file mode 100644 index 7cf0a5223..000000000 --- a/AndorsTrail/res/values-pt-rBR/content_questlist.xml +++ /dev/null @@ -1,481 +0,0 @@ - - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{andor|Busca por Andor|1|{ - {1|Meu pai Mikhail diz que Andor não foi para casa desde ontem. Eu devo ir procurá-lo na aldeia.||0|} - {10|Leonid diz-me que ele viu Andor falando Gruil. Eu devo ir perguntar Gruil se ele sabe mais.||0|} - {20|Gruil quer que eu traga uma glândula de veneno. Então, ele talvez fale mais. Ele me diz que apenas algumas cobras venenosas tem tal glândula||0|} - {30|Gruil diz que Andor estava procurando alguém chamado Umar. Eu devo ir perguntar a seu amigo Gaela em Fallhaven para o leste||0|} - {40|Eu conversei com Gaela em Fallhaven. Ele me diz para ir ver Bucus e perguntar sobre a corja dos ladrões||0|} - {50|Bucus permitiu-me entrar no portal da casa abandonada em Fallhaven. Eu devo ir falar com Umar||0|} - {51|Umar da corja dos ladrões de Fallhaven reconheceu-me, mas deve ter me confundido com Andor. Aparentemente, Andor foi até lá para vê-lo||0|} - {55|Umar disse-me que Andor foi ver um fabricante de poção chamada Lodar. Eu devo procurar seu esconderijo||0|} - {61|Eu ouvi uma história em Loneford, onde parece que Andor esteve Loneford, e que ele pode ter algo a ver com a doença que as pessoas estão sofrendo de lá. Eu não tenho certeza se ele realmente era Andor. Se fosse Andor, por que ele teria feito o povo de Loneford doente?||0|} - }|}; -{mikhail_bread|Pão para o Café da manhã|1|{ - {100|Eu trouxe o pão para Mikhail.||1|} - {10|Mikhail quer que eu vá comprar um pão de Mara na prefeitura.||0|} - }|}; -{mikhail_rats|Ratazanas!|1|{ - {100|Eu matei as duas ratazanas do nosso jardim.|20|1|} - {10|Mikhail quer que eu vá procurar por ratazanas no nosso jardim. Eu devo matar as ratazanas no nosso jardim e voltar para Mikhail. Se eu me machucar, eu posso voltar para a cama e descansar para recuperar minha saúde.||0|} - }|}; -{leta|Marido sumido|1|{ - {10|Leta em Crossglen quer que eu procure por seu marido Oromir.||0|} - {20|Eu descobri Oromir em Crossglen, escondendo-se de sua esposa Leta.||0|} - {100|Eu disse Leta que Oromir está escondido na aldeia Crossglen.|50|1|} - }|}; -{odair|Infestação de ratazanas|1|{ - {10|Odair quer que eu limpe a caverna de abastecimento em Crossglen de ratazanas. Em particular, eu devo matar a ratazana grande e voltar para Odair.||0|} - {100|Ajudei Odair a exterminar as ratazanas da caverna de abastecimento em Crossglen.|300|1|} - }|}; -{bonemeal|Substâncias proibidas|1|{ - {10|Leonid na prefeitura de Crossglen disse-me que houve um distúrbio na vila há algumas semanas. Aparentemente, o Lorde Geomyr proibiu todo o uso de farinha de ossos como substância de cura\n\nTharal, o sacerdote da vila deve saber mais.||0|} - {20|Tharal não quer falar sobre farinha de ossos. Eu poderia ser capaz de persuadi-lo, trazendo-lhe 5 asas de insetos.||0|} - {30|Tharal me diz que farinha de ossos é uma substância de cura muito potente, e é muito ruim que não seja mais permitida. Eu devo ir ver Thoronir em Fallhaven se eu quiser saber mais. Devo dizer-lhe a senha \'Brilho da Sombra\'.||0|} - {40|Conversei com Thoronir em Fallhaven. Ele pode ser capaz de misturar-me uma poção de ossos se eu trazê-lo cinco ossos de esqueleto. Deve haver alguns esqueletos em uma casa abandonada ao norte de Fallhaven.||0|} - {100|Eu trouxe os ossos para Thoronir. Ele agora é capaz de fornecer-me porções de farinha de ossos\nEu devo ter cuidado ao usá-los, porém, visto que Lorde Geomyr proibiu seu uso.|900|1|} - }|}; -{jan|Amigos em queda|1|{ - {10|Jan me conta sua história, onde ele e seus dois amigos e Gandir Irogotu, entraram em um buraco para escavar um tesouro escondido, mas eles começaram a brigar e Irogotu matou Gandir em sua raiva \nEu devo trazer de volta Gandir o anel de Irogotu, e ver Jan quando o tiver.||0|} - {100|Irogotu está morto. Eu trouxe a Jano anel de Gandir, and vingança sobre seu amigo.|1500|1|} - }|}; -{bucus|Chave de Luthor|1|{ - {10|Bucus em Fallhaven pode saber algo sobre Andor. Ele quer que eu traga-lhe a chave de Luthor das catacumbas da igreja de Fallhaven.||0|} - {20|As catacumbas igreja Fallhaven estão fechadas. Athamyr é o único tanto com permissão e bravura para entrar neles. Eu pretendo ir vê-lo em sua casa ao sudoeste da igreja.||0|} - {30|Athamyr quer que eu traga um pouco de carne cozida, então talvez ele vai falar mais.||0|} - {40|Eu trouxe um pouco de carne cozida para Athamyr.|700|0|} - {50|Athamyr me deu permissão para entrar nas catacumbas abaixo da igreja Fallhaven.||0|} - {100|Eu trouxe Bucus a chave de Luthor.|2150|1|} - }|}; -{fallhavendrunk|Estória de bêbado|1|{ - {10|Um bêbado fora da taverna de Fallhaven começou a me contar sua história, mas quer que lhe traga algum hidromel. Apesar disso, eu não sei se a sua história vai levar a algum lugar.||0|} - {100|O bêbado disse-me que ele costumava viajar com Unnmir. Eu devo ir falar com Unnmir.||1|} - }|}; -{calomyran|Segredos de Calomyran|1|{ - {10|Um velho parado no meio de Fallhaven perdeu seu livro \'Segredos de Calomyran\'. Ele pediu para eu procurar o livro. Talvez esteja na casa de Arcir ao sul?||0|} - {20|Encontrei uma página rasgada de um livro chamado \'Segredos de Calomyran\' com o nome \'Larcal\' escrito nele.||0|} - {100|Eu retornei o livro de volta ao velho.|600|1|} - }|}; -{nocmar|Tesouros perdidos|1|{ - {10|Unnmir me disse que ele costumava ser um aventureiro, e me deu uma dica para ir ver Nocmar. Sua casa é a sudoeste da taverna de Fallhaven.||0|} - {20|Nocmar me dise que ele costumava ser um ferreiro. Mas o Lorde Geomyr proibiu o uso do Aço do Coração. Assim, ele não pode forjar mais suas armas\nSe eu puder encontrar uma Pedra do Coração e trazê-la para Nocmar, ele deve ser capaz de forjar com o Aço do Coração novamente.||0|} - {200|Eu trouxe uma heartstone para Nocmar. Ele deve ter itens heartsteel disponíveis agora.|1200|1|} - }|}; -{flagstone|Segredos antigos|1|{ - {10|Eu conheci um sentinela do lado de fora de uma fortaleza chamada Flagstone. O guarda disse-me que Flagstone costumava ser um campo de prisioneiros para os trabalhadores fugitivos do Monte Galmore. Recentemente, tem havido um aumento de monstros saindo de Flagstone. Eu devo investigar a origem dos monstros mortos-vivos. O guarda disse-me para voltar a ele se eu precisar de ajuda.||0|} - {20|Encontrei um tunel escavado em baixo de Flagstone que parece levar a uma caverna mais larga. A caverna é guardada por um demônio que não permite nenhuma aproximação. Talvez o sentinela fora de Flagstone saiba mais.||0|} - {30|O sentinela dise que o antigo diretor tinha um colar que ele sempre usava. O colar tem provavelmente as palavras necessárias para abordar o demônio. Eu devo mostrar para o guarda de decifrar qualquer mensagem sobre o colar, uma vez que eu o encontre.||0|} - {31|Encontrei o antigo diretor de Flagstone no nível superior. Eu devo voltar para o guarda agora.||0|} - {40|Aprendi as palavras necessárias para abordar o demônio no subsolo de de Flagstone: \'A Sombra da luz do dia\'.|1600|0|} - {50|Nas profundezas de Flagstrone, encontrei a fonte da infestação mortos-vivos: uma criatura nascida do sofrimento dos ex-prisioneiros de Flagstone.||0|} - {60|Encontrei um prisioneiro, Narael, vivo nas profundezas Laje. Narael era uma vez um cidadão de Nor City. Ele está fraco demais para andar por si mesmo, mas se eu puder encontrar sua esposa em Nor City, eu provavelmente serei recompensado.|2100|1|} - }|}; -{vacor|Partes perdidas|1|{ - {10|Um mago chamado Vacor no sudoeste Fallhaven vem tentando lançar um feitiço de ruptura.\nAparentemente, tem algo errado com ele, pois ele aparenta estar muito obsecado com seu feitiço. Está relacionado a ele ganhar um certo poder com isso.||0|} - {20|Vacor quer que eu traga as quatro peças do feitiço que ele alega ter sido roubado dele. Os quatro bandidos deve estar em algum lugar ao sul de Fallhaven.||0|} - {30|Eu trouxe as quatro peças do feitiço de ruptura para Vacor.|1200|0|} - {40|Vacor conta-me que seu ex-aprendiz Unzel tinha começado a questionar Vacor. Vacor agora quer que eu mate Unzel. Eu devo ser capaz de encontrá-lo no sudeste, fora dos limites de Fallhaven. Eu devo trazer o anel de Vacor qundo o matar.||0|} - {50|Unzel dá-me a opção de ficar ao lado dele ou de Vacor.||0|} - {51|Eu escolhi o lado de Unzel. Eu devo ir para sudoeste Fallhaven falar com Vacor sobre Unzel e a Sombra.||0|} - {53|Começei uma luta com Unzel. Eu devo trazer seu anel a Vacor uma vez que ele esteja morto.||0|} - {54|Começei uma luta com Vacor. Eu devo trazer seu anel a Unzel uma vez que ele esteja morto.||0|} - {60|Eu matei Unzel e disse Vacor sobre a escritura.|1600|1|} - {61|Eu matei Vacor e disse Unzel sobre a escritura.|1600|1|} - }|}; - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{farrik|Visita noturna|1|{ - {10|Farrik na corja de ladrões de Fallhaven contou-me sobre um plano para ajudar um colega de crimes a fugir da prisão Fallhaven.||0|} - {20|Farrik na corja de ladrões de Fallhaven deu-me detalhes do plano, e eu aceitei a tarefa de ajudá-lo. O capitão da guarda, aparentemente, tem um problema com a bebida. O plano é que eu lhe dê uma dose de hidromel preparada pelo cozinheiro da corja dos ladrões que vai colocaro capitão da guarda para dormir na prisão. Pode ser necessário subornar o capitão da guarda.||0|} - {25|Peguei o hidromel preparado junto ao cozinheiro da corja dos ladrões.||0|} - {30|Eu disse Farrik que eu não concordo totalmente com o seu plano. Eu poderia dizer o capitão da guarda sobre seu plano sombrio.||0|} - {32|Eu dei o hidromel preparado para o capitão da guarda.||0|} - {40|Eu disse ao capitão da guarda do plano que os ladrões têm para libertar o seu amigo.||0|} - {50|O capitão da guarda quer que eu diga os ladrões que a segurança será reduzida nessa noite. Poderíamos ser capazes de capturar alguns dos ladrões.||0|} - {60|Consegui subornar o capitão da guarda a beber o hidromel preparado. Ele deve estar apagado durante a noite, permitindo que os ladrões para libertem seu amigo.||0|} - {70|Farrik recompensou-me para ajudar a corja dos ladrões.|1500|1|} - {80|Eu disse Farrik que a segurança será reduzido essa noite.||0|} - {90|O capitão da guarda agradeceu-me por ajudar seu plano para pegar os ladrões. Ele disse que também vai contar outros guardas que eu o ajudei.|1700|1|} - }|}; -{lodar|Uma porção perdida|1|{ - {10|Eu devo encontrar um fabricante de poção chamado Lodar. Umar da corja dos ladrões de Fallhaven disse-me que eu que vou precisar de saber as palavras certas para passar por um guardião, a fim de alcançar o esconderijo de Lodar.||0|} - {15|Umar disse-me que eu devo ir ver alguém chamado Ogam em Vilegard. Ogam pode fornecer-me as palavras certas para alcançar o esconderijo de Lodar.||0|} - {20|Eu visitei Ogam no sudoeste de Vilegard. Ele estava falando algo que pareciam enigmas. Eu mal pude conseguir alguns detalhes quando eu perguntei sobre refúgio de Lodar. \'A meio caminho entre a sombra e a luz. Formações rochosas.\' E as palavras \'Brilho da Sombra\' estavam entre as coisas que ele disse. Eu não sei o que isso quer dizer.||0|} - }|}; -{vilegard|Confiando em um estrangeiro|1|{ - {10|O povo de Vilegard é muito desconfiado de estranhos. Disseram-me para ir ver Jolnor na capela de Vilegard se eu quiser ganhar a confiança deles.||0|} - {20|Eu conversei com Jolnor na capela de Vilegard. Ele sugere que eu ajude três pessoas influentes, a fim de ganhar a confiança das pessoas em Vilegard. Eu devo ajudar Kaori, Wrye e o próprio Jolnor em Vilegard.||0|} - {30|Eu ajudei as três pessoas em Vilegard que Jolnor sugeriu. Agora o povo de Vilegard deve confiar mais em mim.|2100|1|} - }|}; -{kaori|Recados de Kaori|1|{ - {5|Jolnor da capela de Vilegard quer que eu fale com Kaori no norte de Vilegard, para ver se ela quer alguma ajuda.||0|} - {10|Kaori no norte Vilegard quer que eu traga para ela 10 poções de farinha de osso.||0|} - {20|Eu trouxe 10 porções de farinha de ossos para Kaori.|520|1|} - }|}; -{wrye|Causa incerta|1|{ - {10|Jolnor da capela de Vilegard quer que eu fale com Wrye no norte de Vilegard. Ela aparentemente perdeu o filho recentemente.||0|} - {20|Wrye no norte Vilegard me diz que seu filho Rincel desapareceu. Ela acha que ele morreu ou se encontra gravemente ferido.||0|} - {30|Wrye me diz que ela acha que a guarda real de Feygard está envolvida em seu desaparecimento, e que ele foi recrutado pela guarda.||0|} - {40|Wrye quer que eu vá em busca de pistas sobre o paradeiro de seu filho.||0|} - {41|Eu devo olhar na taverna de Vilegard e na taverna Foaming Flask, ao norte de Vilegard.|200|0|} - {42|Eu escutei que um menino esteve na taberna Foaming Flask tempos atrás. Aparentemente, ele deixou a taverna, dirigindo-se a algum lugar no oeste.||0|} - {80|Ao noroeste de Vilegard, eu encontrei um homem que tinha visto Rincel combater alguns monstros. Rincel aparentemente deixou Vilegard por sua própria vontade para conhecer a cidade de Feygard. Eu devo contar a Wrye no norte Vilegard o que aconteceu com seu filho.||0|} - {90|Eu disse Wrye a verdade sobre o desaparecimento do filho dela.|520|1|} - }|}; -{jolnor|Espiões em Foaming Flask|1|{ - {10|Jolnor da capela de Vilegard contou-me sobre um guarda postado no lado de fora da taverna Foaming Flask. Ele acha que é um espião para a guarda real de Feygard. Ele quer que eu faça o guarda desaparecer, da forma que eu julgar melhor. A taberna fica ao norte de Vilegard.||0|} - {20|Eu convenci o guarda na porta da taberna Foaming Flask a sair após o fim de seu turno.||0|} - {21|Eu comecei uma briga com o guarda fora da taverna Foaming Flask. Eu devo levar o anel do guarda da guarda real de Feygard para Jolnor uma vez que ele esteja morto para mostrar Jolnor que ele desapareceu.||0|} - {30|Eu disse Jolnor que o guarda se foi.|630|1|} - }|}; - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{bwm_agent|O agente e a besta|1|{ - {1|Eu conheci um homem em busca de ajuda para a sua colonia, a \'Montanha das Águas Negras\'. Supostamente, sua colônia está sendo atacada por monstros e bandidos, e eles precisam de ajuda do exterior.|||} - {5|Concordei em ajudar o homem e a Montanha das Águas negras a lidar com o problema.|||} - {10|O homem disse-me para encontrá-lo do outro lado da mina que desabou. Ele vai rastejar através da mina e eu vou descer para a mina escura abandonada.|||} - {20|Caminhei pela mina escura abandonada, e encontrei o homem no outro lado. Ele parecia muito ansioso, dizendo-me para ir direto para o leste, uma vez que eu saísse da mina. Eu devo encontrar o homem na base da montanha ao leste.|||} - {25|Eu ouvi uma história sobre Prim e colônia da Montanha das Águas Negras estarem lutando uns contra os outros.|||} - {30|Devo seguir o caminho ao longo da montanha até alcançar a colônia da Montanha das Águas Negras.|||} - {40|Encontrei novamente o homem no meu caminho para a Montanha das Águas Negras. Devo seguir em frente até a montanha.|||} - {50|Eu subi até as partes cobertas de neve da Montanha das Águas Negras. O homem disse-me para avançar na montanha. Aparentemente, a colônia da Montanha das Águas Negras está próximo.|||} - {60|Alcancei a colônia da Montanha das Águas Negras. Eu devo encontrar e conversar com seu mestre batalha, Harlenn.|||} - {65|Falei com Harlenn da colônia da Montanha das Águas Negras. Aparentemente, o assentamento está sob ataque de uma série de monstros, os dragões Aulaeth e dragões brancos. Mais que isso, eles estão sendo atacados pelo povo de Prim.|||} - {66|Harlenn acha que as pessoas de Prim estão por trás dos ataques de monstro de alguma forma.|||} - {70|Harlenn quer que eu deixe uma mensagem para Guthbered de Prim: Ou as pessoas de Prim param seus ataques à colônia da Montanha das Águas Negras, ou eles terão guerra. Eu devo falar com Guthbered em Prim.|||} - {80|Guthbered nega que o povo de Prim tenha relação com os ataques de monstros no povoamento de Montanha das Águas Negras. Eu devo falar com Harlenn|||} - {90|Harlenn tem certeza de que o povo de Prim está por trás dos ataques de alguma forma.|||} - {95|Harlenn quer que retorne a Prim e procure por sinais de que eles estão se preparando para um ataque à colônia. Eu devo procurar pistas ao redor de onde está Guthbered.|||} - {100|Eu encontrei alguns planos em Prim para recrutar mercenários e atacar a colônia da Montanha das Águas Negras. Eu devo falar com Harlenn imediatamente.|||} - {110|Harlenn agradeceu-me por investigar os planos de ataque.|1150||} - {120|Por conta dos planos para ataques à colônia da Montanha das Águas Negras, Harlenn quer que eu mate Guthbered em Prim.|||} - {130|Eu iniciei a luta com com Guthbered.|||} - {131|Eu disse Guthbered que foi enviado para matá-lo, mas eu iria deixá-lo viver. Ele agradeceu-me profundamente, e deixou Prim.|2100||} - {149|Eu disse que Harlenn Guthbered se foi.|||} - {150|Harlenn agradeceu-me pela ajuda prestada. Felizmente, os ataques contra a colônia da Montanha de Águas Negras devem parar agora.|5000||} - {240|Ganhei a confiança da colônia da Montanha de Águas Negras. Todos os serviços devem estar disponíveis para eu usar.||1|} - {250|Eu decidi não ajudar a colônia da Montanha de Águas Negras.||1|} - {251|Desde que eu estou ajudando Prim, Harlenn não quer mais falar comigo.||1|} - }|}; -{prim_innquest|Bem Descansado|1|{ - {10|Eu conversei com o cozinheiro em Prim, na base da Montanha das Águas Negras. Há um quarto na pousada para alugar, mas está atualmente alugado para Arghest. Eu devo falar com Arghest para ver se ele ainda quer continuar alugando o quarto. O cozinheiro disse-me que o encontrarei a sudoeste de Prim.|||} - {20|Eu conversei com Arghest sobre o quarto na pousada. Ele ainda está interessado em mantê-lo como uma opção para descanso. Mas ele me disse que provavelmente poderia ser persuadido a deixar-me usá-lo se eu o compensá-lo suficientemente.|||} - {30|Arghest quer que eu lhe traga 5 garrafas de leite. Eu provavelmente poderei encontrar um pouco de leite em qualquer uma das aldeias maiores.|||} - {40|Eu trouxe o leite para Arghest. Ele concordou em deixar-me usar o quarto na pousada Prim. Eu poderei finalmente descansar agora. Eu devo falar com o cozinheiro da pousada.|500||} - {50|Eu expliquei para o cozinheiro que eu tenho permissão de Arghest por usar o quarto de dormir.||1|} - }|}; -{prim_hunt|Intenções obscuras|1|{ - {10|Próximo à mina parcialmente soterrada, no caminho para a Montanha das Águas Negras, conheci um homem da aldeia de Prim. Ele pediu-me para ajudá-los.|||} - {11|A aldeia de Prim necessita da ajuda de alguém de fora para lidar com ataques de alguns monstros. Eu devo falar com Guthbered em Prim a respeito dessa ajuda.|||} - {15|Guthbered pode ser encontrado na prefeitura de Prim. Eu devo procurar uma casa de pedra ao centro da cidade.|||} - {20|Eu Guthbered contou-me uma história sobre Prim. Prim esteve recentemente sob constante ataque do assentamento da Montanha das Águas Negras.|||} - {25|Guthbered quer que eu vá até o assentamento no topo da Montanha das Águas Negras e perguntar a Harlenn, ministro da guerra, por que (ou se) eles têm convocado os monstros Gornaud contra Prim.|||} - {30|Eu conversei com Harlenn sobre os ataques a Prim. Ele nega que as pessoas do assentamento da Montanha das Águas Negras tenha algo a ver com eles. Eu devo falar com Guthbered de Prim novamente.|||} - {40|Guthbered ainda acredita que as pessoas no assentamento Águas Negras tenham algo a ver com os ataques.|||} - {50|Guthbered quer que eu vá procurar por indícios de que as pessoas do assentamento da Montanha das Águas Negras estejam se preparando para um ataque em grande escala a Prim. Eu devo procurar pistas perto dos aposentos privados de Harlenn, certificanto-me que eu não seja visto.|||} - {60|Eu encontrei alguns papéis em torno de aposentos privados do Harlenn delineando um plano para atacar Prim. Eu devo falar com Guthbered imediatamente.|||} - {70|Guthbered me agradeceu por ajudá-lo a encontrar evidências dos planos para um ataque.|1150||} - {80|A fim de por fim aos ataques à Prim, Guthbered quer que eu mate Harlenn no assentamento da Montanha das Águas Negras.|||} - {90|Eu comecei uma briga com Harlenn.|||} - {91|Eu disse que à Harlenn que fui enviado para matá-lo, mas eu vou deixá-lo viver. Ele agradeceu-me profundamente, e deixou o assentamento.|2100||} - {99|Eu disse para Guthbered que Harlenn se foi.|||} - {100|Guthbered me agradeceu pela ajuda que dei a Prim. Felizmente, os ataques a Prim devem parar agora. Como agradecimento, Guthbered me deu alguns itens e uma autorização forjada para que eu possa entrar na câmara interna-se no assentamento Montanha das Águas Negras.|5000||} - {140|Eu mostrei a autorização forjada para a guarda e deixaram-me passar para a câmara interior.|||} - {240|Agora que ganhei a confiança de Prim, todos os serviços devem estar disponíveis para eu usar.||1|} - {250|Eu decidi não ajudar o povo do Prim.||1|} - {251|Desde que eu estou ajudando o assentamento da Montanha das Águas Negras, Guthbered não quer mais falar comigo.||1|} - }|}; -{kazaul|Luzes na escuridão|1|{ - {8|Eu consegui caminhar até a câmara interna no assentamento Montanha das Águas Negras e encontrei um grupo de magos liderados por um homem chamado Throdna.|||} - {9|Throdna parece muito interessado em alguém (ou algo assim) chamado Kazaul, e em particular em um ritual realizado em seu nome.|||} - {10|Eu concordei em ajudar Throdna a obter mais informações sobre o ritual, procurando por pedaços do ritual que, aparentemente, estão espalhadas por toda a montanha. Eu devo procurar as partes do ritual Kazaul no caminho de desce montanha a baixo até Prim.|||} - {11|Eu preciso encontrar as duas partes do canto e os três pedaços que descrevem o ritual em si, e voltar ao Throdna uma vez que encontre tudo.|||} - {21|Eu encontrei a primeira metade do canto para o ritual Kazaul.|||} - {22|Eu encontrei a segunda metade do canto para o ritual Kazaul.|||} - {25|Eu encontrei a primeira parte do ritual Kazaul.|||} - {26|Eu encontrei a segunda parte do ritual Kazaul.|||} - {27|Eu encontrei a terceira peça do ritual Kazaul.|||} - {30|Throdna agradeceu-me para encontrar todas as partes do ritual.|3600||} - {40|Throdna quer que eu ponha um fim o que esteja levando à ascensão de Kazaul que está acontecendo perto da Montanha das Águas Negras. Há um templo na base da montanha que eu devo investigar mais perto.|||} - {41|Eu recebi um frasco de purificador de espírito que Throdna quere que eu aplique no santuário de Kazaul. Eu devo voltar para Throdna quando eu encontrar o santuário e o tiver purificado.|||} - {50|No santuário na base da Montanha das Águas Negras, eu conheci um guardião de Kazaul. Ao recitar os versos do canto ritual, eu fui capaz de fazer o guardião me atacar.|||} - {60|Eu purifiquei o santuário de Kazaul.|3200||} - {100|Eu esperava ganhar algum tipo de retorno de Throdna por ajudá-lo a aprender mais sobre o ritual de purificação do santuário. Mas ele parece mais preocupado em divagar sobre Kazaul. Eu não ganho nenhum retorno com as suas divagações.||1|} - }|}; -{bwm_wyrms|Sem fraqueza|1|{ - {10|Herec, no segundo nível do assentamento da Montanha das Águas Negras está pesquisando sobre os dragões brancos fora do assentamento. Ele quer que eu o traga 5 garras de dragão branco para que ele possa continuar a sua pesquisa. Aparentemente, apenas alguns dos dragões tem essas garras. Vou ter que matar alguns para encontrá-las.|||} - {20|Eu dei as cinco garras de dragões brancos para Herec.|||} - {30|Herec acabou de fazer uma poção de restauração fadiga, que tornará muito útil lutar contra os dragões no futuro.|1500|1|} - }|}; -{bjorgur_grave|Acordando da letargia|1|{ - {10|Bjorgur de Prim, na base da Montanha das Águas Negras, pensa que alguma coisa tem perturbado o túmulo de seus pais, a sudoeste de Prim, fora da mina de Elm.|||} - {15|Bjorgur quer que eu vá verificar o túmulo, e certifique-se punhal de sua família ainda esteja seguro no túmulo.|||} - {20|Fulus em Prim está interessado em obter punhal Bjorgur da família que o avô de Bjorgur possuia.|||} - {30|Eu conheci um homem que empunhava uma adaga de aparência estranha nas partes baixas de um túmulo a sudoeste de Prim. Ele deve ter roubado este punhal do túmulo.|||} - {40|Eu coloquei o punhal de volta em seu lugar no túmulo. Estranhamente, os mortos-vivos inquietos parecem muito menos inquietos agora.|200||} - {50|Bjorgur agradeceu-me por minha ajuda. Ele me disse que eu devo também procurar seus parentes em Feygard.|1100|1|} - {51|Eu disse a Fulus que eu ajudei Bjorgur a retornar a adaga família ao seu lugar original.|||} - {60|Eu dei punhal Bjorgur da família para Fulus. Ele me agradeceu por trazê-lo a ele, e me recompensou generosamente.|1700|1|} - }|}; - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{erinith|Ferida profunda|1|{ - {10|À nordeste da aldeia Crossglen, conheci Erinith que estava acampando. Aparentemente, ele foi atacado durante a noite e perdeu um livro.|||} - {20|Eu concordei em ajudar Erinith a encontrar seu livro. Ele me disse que o jogou entre algumas árvores a norte de seu acampamento.|||} - {21|Eu concordei em ajudar Erinith encontrar seu livro em troca de 200 moedas de ouro. Ele me disse que o jogou entre algumas árvores para o norte de seu acampamento.|||} - {30|eu voltei com o livro para Erinith.|2000||} - {31|Ele também precisa de ajuda com a sua ferida que não parece quere curar. Ou eu devo trazê-lo uma poção maior de saúde, ou quatro poções regulares de saúde.|||} - {40|Eu dei Erinith uma poção de farinha de ossos para curar a ferida. Ele ficou com medo de usá-la, uma vez que são proibidas pelo Lorde Geomyr.|||} - {41|Eu dei Erinith uma poção maior de saúde para curar a ferida.|||} - {42|Eu dei Erinith quatro poções regulares de saúde para curar a ferida.|||} - {50|O ferimento cicatrizou completamente e Erinith me agradeceu por toda a ajuda.|1500|1|} - }|}; -{hadracor|Terra Devastada|1|{ - {10|Na estrada para Carn Tower, oeste da guarita encruzilhada, eu conheci um grupo de lenhadores liderados por Hadracor. Hadracor quer ajuda para se vingar de algumas vespas que os atacavam enquanto eles estavam derrubando a floresta. Para ajudá-los a se vingar, eu devo procurar as vespas gigantes perto de seu acampamento e trazer pelo menos cinco asas de vespas gigantes.|||} - {20|Eu trouxe cinco asas de vespas gigantes para Hadracor.|||} - {21|Eu trouxe seis asas de vespas gigantes para Hadracor. Pela ajuda, ele deu-me um par de luvas.|||} - {30|Hadracor agradeceu-me por ajudar a ele e aos outros lenhadores a se vingar das vespas. Em troca, ele ofereceu-me trocar comigo alguns de seus itens.||1|} - }|}; -{tinlyn|Lost ovelhas|1|{ - {10|Na estrada para Feygard, perto da ponte Feygard, eu conheci um pastor chamado Tinlyn. Tinlyn me disse que quatro de suas ovelhas se desviaram e que ele não vai ousar deixar o restante ovelhas para procurar eles.|||} - {15|Eu concordei em ajudar a encontrar o seu Tinlyn quatro ovelhas perdidas.|||} - {20|Eu encontrei uma das ovelhas perdidas da Tinlyn.|||} - {21|Eu encontrei uma das ovelhas perdidas da Tinlyn.|||} - {22|Eu encontrei uma das ovelhas perdidas da Tinlyn.|||} - {23|Eu encontrei uma das ovelhas perdidas da Tinlyn.|||} - {25|Eu encontrei todas as quatro ovelhas perdidas da Tinlyn.|||} - {30|Tinlyn agradeceu-me para encontrar as ovelhas perdidas.|3500|1|} - {31|Tinlyn agradeceu-me para encontrar as ovelhas perdidas, mas ele não tinha nenhuma recompensa para me dar.|2000|1|} - {60|Eu ataquei pelo menos uma das ovelhas perdidas de Tinlyn. Portanto, sou incapaz de devolvêr todas elas para Tinlyn.||1|} - }|}; -{benbyr|Violência gratuita|1|{ - {10|Eu conheci Benbyr no lado de fora da guarita de Crossroads. Ele quer se vingar de um antigo \'parceiro de negócios\' seu - Tinlyn. Benbyr quer que eu mate todas as ovelhas de Tinlyn.|||} - {20|Eu concordei em ajudar Benbyr, encontrando todas as ovelhas de Tinlyn e matando todas as oito. Eu devo procurá-las nos campos a noroeste da guarita de Crossroads.|||} - {21|Eu comecei a atacar as ovelhas. Eu devo voltar para Benbyr quando terminar de matar todas os oito.|||} - {30|Benbyr ficou radiante ao saber que todas as ovelhas de Tinlyn estão mortas.|5200|1|} - {60|Eu não quis ajudar Benbyr matando ovelhas.||1|} - }|}; -{rogorn|O caminho é claro para mim|1|{ - {10|Minarra na torre na guarita de Crossroads viu um bando de malandros indo a oeste da guarita se dirigindo para Carn Tower. Minarra tem certeza de que correspondem à descrição de alguns homens cujas cabeças foram colocadas a prêmio pela patrulha de Feygard. Se estes são os homens que Minarra pensa, eles são supostamente liderados pelo selvagem e particularmente cruel Rogorn.|||} - {20|Eu estou ajudando Minarra a encontrar o bando de malandros. Eu devo viajar pela estrada a oeste da guarita de Crossroads em direção a Carn Tower e procurar por eles. Eles supostamente roubaram três pedaços de uma pintura valiosa e são procurados vivos ou mortos por seus crimes.|||} - {21|Minarra também me diz que eu não posso confiar em qualquer coisa que eu ouça deles. Em particular, qualquer coisa vinda de Rogorn deve ser vista com grande desconfiança.|||} - {30|Eu encontrei os bandidos na estrada nm direção oeste de Carn Tower, liderados por Rogorn.|||} - {35|Rogorn me diz que eles foram injustamente acusados de assassinato e de roubo em Feygard, quando eles mesmos nunca tinham sequer estado Feygard.|||} - {40|eu decidi atacar Rogorn e seu bando de malandros. Eu devo voltar para Minarra com as três partes da pintura, uma vez que eles estejam mortos.|||} - {45|Eu decidi não atacar Rogorn e seu bando de bandidos, mas sim informar a Minarra que ela deve ter confundido os homens que ele viu com alguma outra pessoa.|||} - {50|Minarra agradeceu-me para lidar com os ladrões, e disse-me que os meus serviços para Feygard serão apreciados.|||} - {55|Depois de contar Minarra que ele deve ter confundido os homens com outra pessoa, ela pareceu um pouco desconfiado, mas me agradeceu por ajudá-lo a resolver esse assunto.|||} - {60|Eu ajudei Minarra com sua tarefa.||1|} - }|}; -{feygard_shipment|Recados de Feygard|1|{ - {10|eu conheci Gandoren, o capitão de guarda na guarita de Crossroads. Ele me contou sobre alguns problemas em Loneford, que forçaram os guardas a estarem ainda mais alerta do que o usual. Devido a isso, eles não podem fazer trocar mensagens regularmente entre si, precisando de ajuda com algumas tarefas básicas.|||} - {20|Gandoren quer que eu o ajude a transportar um carregamento de 10 espadas de ferro para outro posto da guarda ao sul.|||} - {21|Eu concordei em ajudar Gandoren a transportar o carregamento, como um serviço para Feygard.|||} - {22|Meio à contragosto concordei em ajudar Gandoren a transportar o carregamento.|||} - {25|Eu devo entregar a remessa para o capitão patrulha Feygard, hospedado na taberna Floaming Flask.|||} - {26|Gandoren me disse que Ailshara manifestou algum interesse nos transportes de Feygard, e pediu-me para ficar longe dela.|||} - {30|Ailshara está realmente interessada no transporte, e quer que eu ajude, ao invés, Nor City com suprimentos.|||} - {35|Se eu quero ajudar Ailshara e Nor City, eu devo entregar a remessa para o ferreiro em Vilegard.|||} - {50|Eu entreguei a remessa para o capitão da patrulha de Feygard na taberna Foaming Flask. Eu devo ir contar a Gandoren na guarita Crossroads que a remessa for entregue.|||} - {55|Eu entreguei o carregamento para o ferreiro em Vilegard.|||} - {56|O ferreiro Vilegard me deu um carregamento de itens degradados que eu devo entregar ao capitão da patrulha Feygard na taberna Foaming Flask em vez dos normais.|||} - {60|Eu entreguei o embarque de itens degradados ao capitão da patrulha de Feygard na taberna Foaming Flask. Eu devo ir contar Gandoren na guarita Crossroads que a remessa foi entregue.|||} - {80|Gandoren me agradeceu por ajudá-lo entregar a remessa.|4000|1|} - {81|Gandoren me agradeceu por ajudá-lo entregar a remessa. Ele não suspeitou de nada. Preciso também informar a Ailshara.|||} - {82|Relatei sobre a remessa à Ailshara.|4000|1|} - }|}; -{loneford|Flui através das veias|1|{ - {10|Eu ouvi uma história sobre Loneford. Aparentemente, muitas pessoas ficaram doentes por lá recentemente, e alguns têm até mesmo morrido. A causa ainda é desconhecida.|||} - {11|Eu devo investigar o que poderia ter causado a doença no povo de Loneford. Para coletar pistas, eu devo perguntar aos cidadãos de Loneford e nas regiões circunvizinhas sobre o que eles acham que é a causa.|||} - {21|Os guardas na guarita de Crossroads estão certos de que a doença em Loneford é causada por alguma sabotagem feito pelos sacerdotes ou pessoas de Nor City.|||} - {22|Alguns moradores em Loneford acreditam que a doença seja causada pelos guardas de Feygard, em algum esquema para fazer o povo sofrer ainda mais do que eles já têm.|||} - {23|Talião, o sacerdote capela em Loneford, acha que a doença é trabalho da Sombra, como punição pela falta Loneford de devoção para a Sombra.|||} - {24|Taevinn em Loneford é certo que Sienn no celeiro sudeste tem algo a ver com a doença. Aparentemente, Sienn mantém pertod e si um animal de estimação que abordou Taevinn de uma maneira ameaçadora várias vezes.|||} - {25|Eu devo ir ver Landa na taberna de Loneford. Há rumores de que ela viu algo que não se atreve a contar para ninguém.|||} - {30|Landa, inicialmente, confundiu-me com outra pessoa. Ela, aparentemente, viu um menino fazendo alguma coisa perto cidade bem durante a noite antes que a doença come - cassasse. Ela estava com medo de falar para mim na primeira vez, pois ela pensou que eu parecia como menino que tinha visto. Poderia ter sido Andor que ela viu?|||} - {31|Além disso, na noite seguinte à em que ela viu o menino no poço, viu Buceth recolher amostras de água no poço. Estranhamente, Buceth não ficou doente como os outros na aldeia.|||} - {35|Eu devo ir perguntar a Buceth, na capela de Loneford, sobre o que ele estava fazendo por lá, e se ele sabe alguma coisa a respeito de Andor.|||} - {41|Eu subornei Buceth a falar comigo.|||} - {42|Eu disse a Buceth que estou pronto para seguir a Sombra.|||} - {45|Buceth me diz que ele foi designado pelos sacerdotes de Nor City para garantir que a Sombra lance seu brilho sobre Loneford. Aparentemente, os sacerdotes enviaram um menino para fazer alguns negócios em Loneford, e Buceth foi encarregado de recolher algumas amostras da água do poço.|||} - {50|Eu ataquei Buceth. Eu devo trazer qualquer evidência de que Buceth tenha com ele para Kuldan, o capitão da guarda que está na casa comprida, em Loneford.|||} - {54|Eu dei o frasco que Buceth tinha com ele para Kuldan, o capitão da guarda em Loneford.|||} - {55|Kuldan agradeceu-me para resolver o mistério da doença em Loneford. Eles vão começar a trazer em água, juntamente com auxílio de Feygard para que não seja mais necessário beber água do poço à partir de agora. Kuldan também me disse para procurar o taifeiro do castelo de Feygard se eu precisar de ajuda.|15000|1|} - {60|Eu prometi para manter a história de Buceth em segredo. Se Andor era de fato aqui, ele deve ter tido um bom motivo para fazer o que fez. Buceth também me disse para visitar o guardião da capela na cidade nem se eu quiser saber mais sobre a Sombra.|15000|1|} - }|}; - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{thorin|Pedaços|1|{ - {20|Em uma caverna ao leste, eu encontrei um homem chamado Thorin, que quer que eu o ajude a encontrar os restos mortais de seus antigos companheiros de viagem. Eu devo encontrar os restos de todos os seis deles e devolvê-los a ele.|||} - {31|Eu encontrei alguns restos de esqueletos na mesma caverna em que encontrei com Thorin|||} - {32|Eu encontrei alguns restos de esqueletos na mesma caverna em que encontrei com Thorin|||} - {33|Eu encontrei alguns restos de esqueletos na mesma caverna em que encontrei com Thorin|||} - {34|Eu encontrei alguns restos de esqueletos na mesma caverna em que encontrei com Thorin|||} - {35|Eu encontrei alguns restos de esqueletos na mesma caverna em que encontrei com Thorin|||} - {36|Eu encontrei alguns restos de esqueletos na mesma caverna em que encontrei com Thorin|||} - {40|Thorin agradeceu-me por ajudá-lo. Em troca, ele me permitiu usar sua cama para descansar, e está disposto a vender-me algumas das suas poções.|4000|1|} - }|}; -{algangror|De Ratazanas e Homens|1|{ - {10|Em uma casa solitária em uma península na margem norte do lago Laeroth nas montanhas ao norte-leste, conheci uma mulher chamada Algangror.|||} - {11|Ela tem um problema com ratazanas e precisa de ajuda para lidar com algumas delas que estão presas em seu porão.|||} - {15|Eu concordei em ajudar Algangror a lidar com seus roedores. Eu devo retornar a vê-la quando matar todos os seis roedores em seu porão.|||} - {20|Algangror me agradeceu por ajudá-la com o seu problema.|5000||} - {21|Ela também me disse para não falar com ninguém em Remgard sobre seu paradeiro. Aparentemente, eles estão procurando por ela por algum motivo que ela não quer contar. Sob nenhuma circunstância que eu devo dizer a ninguém onde ela está.||1|} - {100|Não vou ajudar Algangror com sua tarefa.||1|} - {101|Algangror não vai falar comigo, e eu não poderei ajudá-la com sua tarefa.||1|} - }|}; - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{toszylae|Uma carregador involuntário|1|{ - {10|Na estrada entre Loneford e Brimhaven, eu encontrei o leito seco de um antigo lago com uma grande caverna embaixo. Lá no fundo da caverna, eu conheci Ulirfendor - um sacerdote da Sombra de Brimhaven. Ulirfendor está tentando traduzir as inscrições em um santuário de Kazaul, e comentou que ela fala do \'Protetor Negro\', mas ele não tem certeza do que se refere. O que quer que seja, ele está determinado que isso deve ser interrompido.|||} - {11|Ulirfendor precisa de ajuda para descobrir algumas das peças que faltam na inscrição do santuário. Está escrito: \'Kulauil hamar Urum Kazaul\'te\', mas o restante encontra-se completamente corroído na rocha.|||} - {15|Eu concordei em ajudar Ulirfendor a descobrir as partes que faltam na inscrição. Ulirfendor acredita que o santuário fala de uma poderosa criatura que vive mais profundamente dentro do calabouço. Talvez isso poderia fornecer alguma pista sobre o que está nas partes faltantes.|||} - {20|Bem no fundo da masmorra, eu encontrei um guardião radiante, guardando algum outro ser. O guardião proferiu a frase \'Kulauil hamar Urum Kazaul\'te. Kazaul hamat urul\'. Isto deve ser o que Ulirfendor estava procurando. Eu devo voltar a ele agora.|||} - {21|Eu tentei atacar o guardião, mas fui incapaz de chegar até ele. Alguma força poderosa me segurou. Talvez Ulirfendor saiba mais.|||} - {30|Ulirfendor ficou muito satisfeito ao ouvir que eu descobri as partes faltantes na inscrição.|2000||} - {32|Ele também me disse o resto da inscrição, mas não sei o que significa. Eu devo voltar para o guardião e proferir as palavras que Ulirfendor me disse.|||} - {42|Proferi as palavras para o guardião.|5000||} - {45|O guardião deu um largo e frio sorriso, e começou a me atacar.|||} - {50|Derrotei o guardião e fui junto ao linch \'Toszylae\'. O lich conseguiu infectar-me com alguma coisa. Devo matar o lich e voltar para Ulirfendor.|||} - {60|Ulirfendor disse-me que ele tinha conseguido traduzir as partes da inscrição que o guardião me disse. Aparentemente, o que o guardião me disse significa aproximadamente \'Meu corpo para Kazaul\'. Ulirfendor estava muito preocupado com o que isso significa para mim, e ficou muito perturbado ao dizer-me tais palavras.|||} - {70|Ulirfendor estava muito feliz em saber que eu consegui derrotar o lich. Com o lich derrotado, as pessoas nas áreas circundantes devem estar seguras agora.|20000|1|} - }|}; -{darkprotector|O Protetor Negro|1|{ - {10|Eu encontrei um capacete de aparência estranha que tomei de \'Toszylae\' o lich ao derrotá-lo. Eu devo perguntar a Ulirfendor se ele sabe alguma coisa sobre isso.|||} - {15|Ulirfendor, na mesma masmorra, acha que este artefato é o mesmo citado no santuário, e que vai trazer miséria nos arredores de quem o carrega. Ele quer que eu o ajude a destruí-lo imediatamente.|||} - {26|Para destruir o artefato, eu preciso dar o capacete e o coração do lich para Ulirfendor.|||} - {30|Eu dei o capacete para Ulirfendor.|||} - {31|Eu dei o coração do lich para Ulirfendor.|||} - {35|Ulirfendor destruiu o artefato. As pessoas das cidades vizinhas estão a salvo de qualquer miséria o capacete teria trazido.|||} - {40|Pela ajuda, tanto com o linch quanto com o capacete, Ulirfendor me deu a bênção escura da sombra.|15000|1|} - {41|Pela ajuda, tanto com o linch quanto com o capacete, Ulirfendor queria me dar a bênção escura da sombra, mas eu recusei.|35000|1|} - {50|Eu decidi manter o capacete comigo. Quem sabe o poder que eu poderia ganhar com isso.|||} - {51|Ulirfendor atacou-me por manter o capacete.|||} - {55|Eu encontrei um livro dentro do santuário onde Ulirfendor estava. O livro fala de um ritual que irá restaurar ao capacete para o seu verdadeiro poder. Eu devo completar o ritual do santuário, se eu quiser usar o capacete.|||} - {60|Eu comecei o ritual Kazaul.|||} - {65|Eu coloquei o capacete na frente do santuário de Kazaul.|||} - {66|Eu coloquei o coração do lich na frente do santuário de Kazaul.|||} - {70|O ritual está completo, e eu restaurei o poder do capacete para sua antiga glória.|5000|1|} - }|}; -{maggots|Eu tenho algo dentro de mim|1|{ - {10|Na parte mais profunda de uma caverna, eu encontrei um lich de Kazaul. De alguma forma, o lich conseguiu infectar-me com as coisas que rastejam dentro de minha barriga! Eu preciso encontrar alguma maneira de se livrar dessas coisas dentro de mim. Eu devo ir falar com Ulirfendor, ou buscar ajuda em uma das capelas.|||} - {20|Ulirfendor me dise que ele leu algo sobre vermes da podridão, que se alimentam de tecidos vivos. Eles causar o que ele chamou de efeitos \'incomuns\' em quem os transporta, e seus ovos pode matar lentamente uma pessoa de dentro prá fora. Eu devo procurar ajuda imediatamente, antes que seja tarde demais.|||} - {21|Ulirfendor dise-me que um dos sacerdotes da Sombra deve ser capaz de me ajudar. Eu devo ir visitar Talião na capela em Loneford enquanto há tempo.|||} - {30|Talião, em Loneford, disse-me que, para ser curado da minha doença, eu vou precisar lhe trazer quatro coisas. O que é necessário são cinco ossos, dois pedaços de pêlo, uma glândula de veneno Irdegh e um frasco vazio. Ossos e pele provavelmente podem ser encontrados em algum animal no deserto, e a glândula de veneno pode ser encontrada em um dos Irdeghs que foram vistos a leste.|||} - {40|Eu trouxe os cinco ossos para Talião.|||} - {41|eu trouxe os dois pedaços de pelo para Talião.|||} - {42|Eu trouxe uma glândula de veneno Irdegh para Talião.|||} - {43|Eu trouxe um frasco vazio para Talião.|||} - {45|Eu já trouxe todas as peças que Talião precisa, a fim de curar-me destas coisas.|||} - {50|Talião me curou-me dos vermes da podridão de Kazaul. Eu consegui colocar um dos vermes da podridão em um frasco vazio, e Talião disse-me que isso seria muito valioso. Eu não posso imaginar por quê.|30000||} - {51|Por causa da minha antiga doença, Talião concordou em me ajudar, colocando bênçãos da Sombra em mim, sempre que eu quiser, por uma certa quantia.||1|} - }|}; -{sisterfight|Uma diferença de opinião|1|{ - {10|Eu ouvi uma história sobre duas irmãs briguentas em Remgard, Elwel e Elwyl. Aparentemente, elas têm mantido as pessoas acordadas durante a noite com a maneira como eles gritam umas com as outras. Eu devo ir visitá-las em sua casa na costa sul da cidade de Remgard.|||} - {20|Eu conversei com Elwyl, uma das irmãs Elwille em Remgard. Ela está furiosa com a irmã por que ela não concorda mesmo com o mais simples dos fatos. Aparentemente, elas têm suas divergências uma com a outra ao longo de vários anos.|||} - {21|Elwel não vai falar comigo.|||} - {30|Uma questão que as irmãs discordam sobre atualmente é a cor de uma certa poção que o fabricante de porções da cidade Hjaldar costumava fazer. Elwyl diz que a poção de foco precisão que Hjaldar fazia era uma poção azul, mas Elwel insiste que a poção tinha uma coloração esverdeada.|||} - {31|Elwyl quer que eu pegue uma poção de foco de precisão com Hjaldar, aqui em Remgard, para que ela possa finalmente mostrar a Elwel que ela está errada.|||} - {40|Eu conversei com Hjaldar em Remgard. Hjaldar já não faz poções desde o seu fornecimento de extrato de medula de Lyson acabou.|||} - {41|Aparentemente, Mazeg, um velho amigo de Hjaldar, certamente tem algum extrato de medula de Lyson para vender. Infelizmente, ele não sabe onde Mazeg vive atualmente. Ele só sabe que Mazeg viajou muito para o oeste, desde seu último encontro.|||} - {45|Eu devo encontrar Mazeg e obter algum extrato de medula de Lyson para que Hjaldar possa começar a fazer poções novamente.|||} - {50|Eu conversei com Mazeg no assentamento Montanha das Águas Negras. Ele está disposto a vender-me o extrato de medula Lyson por 800 moedas de ouro.|||} - {51|Eu conversei com Mazeg no assentamento Montanha das Águas Negras. Como eu havia ajudado anteriormente as pessoas da Montanha das Águas Negras, ele está disposto a vender-me um frasco de extrato de medula de Lyson por apenas 400 moedas de ouro.|||} - {55|Eu comprei de Marzeg o extrato de medula de Lyson. Eu devo voltar para Remgard e dar a Hjaldar.|||} - {60|Hjaldar me agradeceu por trazê-lo o extrato de medula.|15000||} - {61|Hjaldar agora pode criar poções de novo, e está disposto a vender-me. Ele até me deu algumas das primeiras poções que ele fez. Eu devo ir visitar as irmãs Elwille aqui em Remgard novamente, e mostrar-lhes uma poção de foco precisão.|||} - {70|Eu dei uma poção de foco precisão para Elwyl.|||} - {71|Infelizmente, não conseguir fazer a briga diminuir. Pelo contrário, elas parecem estar com mais raiva uma da outra agora, já que âmbas erraram a cor.|9000|1|} - }|}; - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{remgard|Tudo em ordem|1|{ - {10|Cheguei na ponte que dá acesso à cidade de Remgard. De acordo com o guarda da ponte, a cidade está fechada para estrangeiros, e ninguém está autorizado a sair. Eles estão investigando alguns desaparecimentos de alguns dos habitantes da cidade.|||} - {15|Eu ofereci minha ajuda para ajudar o povo do Remgard a investigar o que aconteceu com os desaparecidos.|||} - {20|O guarda da ponte, que pediu-me para investigar uma casa abandonada ao leste, ao longo da costa norte do lago. Eu devo ter cuidado com qualquer habitantes que possam estar lá.|||} - {30|Eu relatei ao guarda da ponte que eu conheci Algangror na casa abandonada.|3000||} - {31|Eu relatei ao guarda ponte que a casa abandonada estava vazia.|3000||} - {35|Foi-me concedida a entrada em Remgard. Eu devo visitar Jhaeld, o ancião da cidade, para falar sobre o que o próximo passo devo dar. Jhaeld provavelmente pode ser encontrado na taberna no sudeste.|||} - {40|Jhaeld foi bastante arrogante, mas me disse que eles tiveram alguns problemas com algumas pessoas que desapareceram recentemente. Ele não têm idéia do que pode ter causado isso.|||} - {50|Devo visitar quatro pessoas em Remgard, e perguntar-lhes sobre quaisquer pistas a respeito do que pode ter acontecido com as pessoas desaparecidas.|||} - {51|Primeiro é Norath, cuja esposa, Bethir, desapareceu. Norath pode ser encontrado na casa da fazenda a sudoeste.|||} - {52|Em segundo lugar, eu devo ir falar com os Cavaleiros de Elythom, aqui na taverna.|||} - {53|Em terceiro lugar, eu devo ir falar com a anciã Duaina em sua casa, ao sul.|||} - {54|Por último, eu devo falar com Rothses, o armeiro. Ele mora no lado oeste da cidade.|||} - {59|Eu tentei dizer a Jhaeld sobre Algangror, mas ele me dispensou fazend como se não tivess escutado.|||} - {61|Eu conversei com Norath. Ele e sua esposa brigaram recentemente, mas ele não tem idéia do que pode ter acontecido com ela.|||} - {62|Os Cavaleiros de Elythom na taberna Remgard disseram que um dos seus cavaleiros desapareceu recentemente. Ninguém notou nada quando ele desapareceu, no entanto.|||} - {63|Duaina me viu em suas visões. Eu não entendi tudo o que ela falou, mas as partes que eram claras eram de que eu e Andor somos partes de um grande enredo. Eu me pergunto o que isso significa. Ela não falou de quaisquer pessoas desaparecidas, no entanto, não que eu pudesse entender o que ela fala, de qualquer forma.|||} - {64|Rothses disse-me que Bethir a visitou na noite antes do desaparecimento, para vender alguns equipamentos. Ele não a viu para onde foi depois disso.|||} - {70|Eu já falei com todas as pessoas Jhaeld ordenou que eu conversasse, mas não obteve qualquer informação de nenhum deles sobre o que poderia ter acontecido com as pessoas desaparecidas. Eu devo voltar para Jhaeld e perguntar quais são os próximos passos.|||} - {75|Jhaeld estava realmente chateado que eu não consegui nada de novo com as pessoas às quais ele me enviou para conversar.|15000||} - {80|Se eu ainda quero ajudar Jhaeld e as pessoas de Remgard, eu devo procurar pistas em outros lugares.||1|} - {110|Jhaeld não quer falar comigo. Eu não vou ajudá-lo a descobrir o que aconteceu com as pessoas desaparecidas de Remgard.||1|} - }|}; -{remgard2|O que é que o mau cheiro?|1|{ - {10|Eu disse a Jhaeld, o ancião da aldeia em Remgard, a respeito de uma mulher chamada Algangror, que vive na casa abandonada ao leste, ao longo da costa norte do lago próximo a Remgard.|||} - {20|Jhaeld me disse que ele prefere não lidar com ela, já que ele acredita que ela é muito perigosa. Para o bem de seus guardas, ele não irá correr o risco de lutar contra ela, visto que ele está com medo do que poderia acontecer com todos eles.|||} - {21|Se eu quero ajudar Jhaeld e as pessoas de Remgard, eu devo encontrar uma maneira de fazer Algangror desaparecer. Ele também adverte que eu seja extremamente cuidadoso.|||} - {30|Algangror admitiu para mim que foi ela que fez algumas pessoas desaparecem de Remgard. No entanto, ela não quis me dizer o que aconteceu com eles.|||} - {35|Eu comecei a atacar Algangror. Eu devo voltar para Jhaeld com a prova de sua derrota, após sua morte.|||} - {40|Eu disse a Jhaeld que derrotei Algangror.|||} - {41|Jhaeld ficou muito satisfeito ao ouvir a boa notícia. O povo de Remgard agora deve estar seguro, e da cidade pode ser aberta a estrangeiros novamente.|||} - {45|Por ajudar o povo do Remgard a encontrar a causa das pessoas desaparecidas, Jhaeld aconselhou-me a procurar Rothses. Ele pode ser capaz de melhorar um pouco do meu equipamento.|21000|1|} - {46|Ervelyn, o alfaiate Remgard, deu-me um chapéu de penas como agradecimento por ajudar o povo do Remgard a descobrir o que aconteceu com as pessoas desaparecidas.|||} - }|}; -{fiveidols|Os cinco ídolos|1|{ - {10|Algangror quer que eu a ajude com uma tarefa. Ela não pode descrever a natureza da tarefa, ou a lógica por trás dela. Se eu ajudá-la, ela prometeu me dar seu colar encantado, que, aparentemente, vale muito.|||} - {20|Eu concordei em ajudar Algangror com sua tarefa.|||} - {30|Algangror quer que eu coloque cinco ídolos perto de cinco pessoas diferentes em Remgard. Os ídolos deve ser colocados perto dos leitos destas cinco pessoas, e devem estar escondidos de modo que eles não possam ser facilmente encontrados.|||} - {31|A primeira pessoa é Jhaeld, o ancião da aldeia, que pode ser encontrado na taverna Remgard.|||} - {32|Em segundo lugar, eu devo colocar um ídolo ao lado da cama de Larni, o agricultor, que vive em uma das cabines do norte em Remgard.|||} - {33|A terceira pessoa é o fabricante de armas Arnal, que vive no noroeste de Remgard.|||} - {34|A quarta é Emerei, que pode ser encontradp a sudeste de Remgard.|||} - {35|A quinta pessoa é Carthe. Carthe vive na costa leste da Remgard, perto da taverna.|||} - {37|Eu não deve contar a ninguém da minha tarefa, ou da colocação dos ídolos.|||} - {41|Eu coloquei um ídolo na cama de Jhaeld.|||} - {42|Eu coloquei um ídolo na cama do fazendeiro Larni.|||} - {43|Eu coloquei um ídolo na cama de Arnal.|||} - {44|Eu coloquei um ídolo na cama de Emerei.|||} - {45|Eu coloquei um ídolo na cama de Carthe.|||} - {50|Todos os ídolos foram colocados nas camas das pessoas que Algangror me disse para visitar. Eu devo voltar a ver Algangror.|||} - {51|Algangror agradeceu-me por ajudá-la.|||} - {60|Ela contou-me sua história, e como ela costumava viver na cidade, mas foi perseguida por suas crenças. Segundo ela, a perseguição foi totalmente injustificada, uma vez que ela não faz mal para as pessoas.|||} - {61|Para vingar-se da cidade de Remgard, ela conseguiu atrair algumas pessoas para sua cabana e transformá-las em ratazanas.|||} - {70|Por ajudá-la com as tarefas que ela não poderia realizar sozinha, Algangror me deu seu colar encantado, \'Marrowtaint\'.|21000|1|} - {100|Eu decidi não ajudar Algangror com sua tarefa.||1|} - }|}; -{kaverin|Velhos amigos?|1|{ - {10|Eu conheci Kaverin em Remgard, que, aparentemente, é um velho conhecido de Unzel, que vive próximo a Fallhaven.|||} - {20|Kaverin quer que eu entrege uma mensagem para Unzel.|||} - {21|Eu quis ajudar Kaverin.||1|} - {22|Eu concordei em entregar a mensagem.|||} - {25|Kaverin deu-me a mensagem de que ele quer que eu entregue a Unzel.|||} - {30|Eu entreguei a mensagem a Unzel. Eu devo voltar para Kaverin em Remgard.|||} - {40|Kaverin agradeceu-me por entregar a mensagem para Unzel.|10000||} - {45|Em troca, Kaverin me deu um mapa antigo que tinha adquirido. Aparentemente, ele leva para o esconderijo antigo de Vacor.|||} - {60|Kaverin ficou furioso com o fato de que eu matei Unzel, e ajudei Vacor. Ele começou a me atacar. Devo voltar para Vacor vez que Kaverin esteja morto.|||} - {70|Kaverin estava carregando uma mensagem lacrada. Vacor reconheceu imediatamente o selo, e parecia muito interessado nele.|||} - {75|Eu dei a Vacor a mensagem de que Kaverin estava carregando. Em troca, Vacor me deu um mapa antigo, que leva a seu antigo esconderijo.|10000||} - {90|Eu devo tentar encontrar o esconderijo antigo de Vacor, na estrada para o oeste da antiga prisão de Flagstone, a sudoeste de Fallhaven.|||} - {100|Eu encontrei o antigo esconderijo de Vacor.||1|} - }|}; - - - diff --git a/AndorsTrail/res/values-pt/content_actorconditions.xml b/AndorsTrail/res/values-pt/content_actorconditions.xml deleted file mode 100644 index 9d9712193..000000000 --- a/AndorsTrail/res/values-pt/content_actorconditions.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - -[id|name|iconID|category|isStacking|isPositive|hasRoundEffect|round_visualEffectID|round_boostHP_Min|round_boostHP_Max|round_boostAP_Min|round_boostAP_Max|hasFullRoundEffect|fullround_visualEffectID|fullround_boostHP_Min|fullround_boostHP_Max|fullround_boostAP_Min|fullround_boostAP_Max|hasAbilityEffect|boostMaxHP|boostMaxAP|moveCostPenalty|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|]; -{bless|Benção|actorconditions_1:41|0||1|||||||||||||1|||||5|||||||}; -{poison_weak|Veneno Fraco|actorconditions_1:60|3|||1|2|-1|-1|||||||||||||||||||||}; -{str|Força|actorconditions_1:70|2||1|||||||||||||1||||||||2|2|||}; -{regen|Regeneração das Sombras|actorconditions_1:35|0||1|1|1|1|1|||||||||0||||||||||||}; - - - -[id|name|iconID|category|isStacking|isPositive|hasRoundEffect|round_visualEffectID|round_boostHP_Min|round_boostHP_Max|round_boostAP_Min|round_boostAP_Max|hasFullRoundEffect|fullround_visualEffectID|fullround_boostHP_Min|fullround_boostHP_Max|fullround_boostAP_Min|fullround_boostAP_Max|hasAbilityEffect|boostMaxHP|boostMaxAP|moveCostPenalty|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|]; -{speed_minor|Velocidade menor|actorconditions_1:87|2||1|||||||||||||1||2||||||||||}; -{fatigue_minor|Fadiga menor|actorconditions_1:14|2|||0||||||0||||||1|||2|2||||-1|-1|||}; -{feebleness_minor|Fraqueza de arma menor|actorconditions_1:74|1|||||||||||||||1||||||||-3|-3|||}; -{bleeding_wound|Ferida aberta|actorconditions_2:0|3|1||1|0|-1|-1|||||||||||||||||||||}; -{rage_minor|Fúria menor|actorconditions_1:90|1||1|0|-1|||||||||||1|35||||60|||||-90|-1|}; -{blackwater_misery|Tormento das águas-negras|actorconditions_1:58|3|||||||||||||||1||||1|-50|-50||||||}; -{intoxicated|Intoxicado|actorconditions_2:1|1||1|||||||||||||1|15|||1|-30|||4|4|||}; -{dazed|Atordoado|actorconditions_1:65|1|||||||||||||||1||||||||||-40||}; - - - -[id|name|iconID|category|isStacking|isPositive|hasRoundEffect|round_visualEffectID|round_boostHP_Min|round_boostHP_Max|round_boostAP_Min|round_boostAP_Max|hasFullRoundEffect|fullround_visualEffectID|fullround_boostHP_Min|fullround_boostHP_Max|fullround_boostAP_Min|fullround_boostAP_Max|hasAbilityEffect|boostMaxHP|boostMaxAP|moveCostPenalty|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|]; -{chaotic_grip|Aperto caótico|actorconditions_1:96|1|||0||||||||||||1||||||||||-10|-1|}; -{chaotic_curse|Maldição caótica|actorconditions_1:89|1|||0||||||||||||1||-1||||||-1|-1|-10|-1|}; - - - diff --git a/AndorsTrail/res/values-pt/content_monsterlist.xml b/AndorsTrail/res/values-pt/content_monsterlist.xml deleted file mode 100644 index 0c9fa4c37..000000000 --- a/AndorsTrail/res/values-pt/content_monsterlist.xml +++ /dev/null @@ -1,403 +0,0 @@ - - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{tiny_rat|monsters_rats:0|Ratazana pequena|trainingrat||4|1||2|||10|50|||1|1|||trainingrat|||||||||}; -{cave_rat|monsters_rats:1|Ratazana-das-cavernas|crossglen_caverat||4|||5|||10|90|||2|2|||rat|||||||||}; -{tough_cave_rat|monsters_rats:1|Ratazana-das-cavernas resistente|crossglen_caverat2||4|||5|||5|90|||3|3|||rat|||||||||}; -{strong_cave_rat|monsters_rats:3|Ratazana-das-cavernas forte|crossglen_caveboss||4|1||20|||5|100|||2|4|10||caveratboss|||||||||}; -{black_ant|monsters_insects:0|Formiga preta|crossglen_ant||1|||3|||10|70|||1|2|||insect|||||||||}; -{small_wasp|monsters_insects:1|Vespa pequena|crossglen_wasp||1|||4|||10|70|||1|2|||wasp|||||||||}; -{beetle|monsters_insects:4|Escaravelho|crossglen_beetle||1|||4|||10|70|||3|3|||insect|||||||||}; -{forest_wasp|monsters_insects:1|Vespa-das-florestas|forestwasp||1|||6|||10|70|||1|2|||wasp|||||||||}; -{forest_ant|monsters_insects:0|Formiga-das-florestas|forestant||1|||4|||10|90|||1|2|10||insect|||||||||}; -{yellow_forest_ant|monsters_insects:2|Formiga-das-florestas amarela|forestant||1|||5|||10|100|||2|2|15||insect|||||||||}; -{small_rabid_dog|monsters_dogs:1|Cão raivoso pequeno|forestdog||4|||6|||10|90|||2|2|||canine|||||||||}; -{forest_snake|monsters_snakes:1|Cobra-das-florestas|forestsnake||7|||7|||10|110|||1|2|10||snake|||||||||}; -{young_cave_snake|monsters_snakes:3|Cobra-das-cavernas jovem|cavesnake1||7|||8|||5|110|10|2|2|2|10||snake|||||||||}; -{cave_snake|monsters_snakes:3|Cobra-das-cavernas|cavesnake1||7|||12|||5|110|20|2|2|2|15||snake|||||||||}; -{venomous_cave_snake|monsters_snakes:3|Cobra-das-cavernas venenosa|cavesnake2||7|||15|10||5|110|40|2|2|2|10||snake||1||||||{{poison_weak|1|1|10|}}|}; -{tough_cave_snake|monsters_snakes:3|Cobra-das-cavernas resistente|cavesnake2||7|||21|||5|110|20|2|2|2|15||snake|||||||||}; -{basilisk|monsters_rats:4|Basilisk|cavesnake2_boss||7|||40|||7|40|||3|9|50|2|cavecritter|||||||||}; -{snake_servant|monsters_liches:0|Cobra servo|cavesnake3||6|||35|||5|80|40|3|2|3|10|1|lich1|||||||||}; -{snake_master|monsters_liches:1|Cobra mestre|cavesnake3_boss||6|1||55|||5|60|200|3|1|4|10|4|snakemaster|snakemaster||||||||}; -{rabid_boar|monsters_dogs:6|Javali raivoso|forestboar||4|||20|||5|110|||3|3|30||canineboss|||||||||}; -{rabid_fox|monsters_dogs:3|Raposa raivosa|fox1||4|||25|||5|100|||3|3|50||canine|||||||||}; -{yellow_cave_ant|monsters_insects:2|Formiga-das-cavernas amarela|pitcave1||1|||20|||3|30|||1|1|80||insect|||||||||}; -{young_teeth_critter|monsters_misc:0|Monstro-dos-dentes jovem|pitcave2||7|||15|||2|50|||1|1|70||cavecritter|||||||||}; -{teeth_critter|monsters_misc:0|Monstro-dos-dentes|pitcave2||7|||25|||2|60|10|3|1|1|70||cavecritter|||||||||}; -{young_minotaur|monsters_misc:5|Minotauro jovem|pitcave2||5|||45|||6|20|40|3|4|4|50|2|cavemonster|||||||||}; -{strong_minotaur|monsters_misc:5|Minotauro forte|pitcave2_boss||5|||53|||6|40|50|3|5|5|50|2|cavemonster|||||||||}; -{irogotu|monsters_liches:0|Irogotu|pitcave_boss||6|1||61|||3|50|40|3|2|5|70|4|irogotu|irogotu||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{lost_spirit|monsters_rltiles2:45|Espírito perdido|minorhaunt1||8|||15|||10|50|||1|2|10|3|haunt|haunt||||||||}; -{lost_soul|monsters_rltiles2:45|Alma perdida|minorhaunt2||8|||15|||10|50|||1|2|10|4|haunt|||||||||}; -{haunting|monsters_ghost1:0|Assombração|haunt3||8|||31|10|10|5|120|20|2|1|5|30|1|haunt|||||||||}; -{skeletal_warrior|monsters_skeleton1:0|Esqueleto guerreiro|skeleton1||3|||52|10|10|5|60|||1|3|40|1|skeleton|||||||||}; -{skeletal_master|monsters_skeleton2:0|Esqueleto mestre|skeletonmaster||3|||52|10|10|5|70|||1|3|30|2|skeleton|||||||||}; -{skeleton|monsters_skeleton1:0|Esqueleto|skeleton1||3|||35|10|10|10|60|||1|4|40||skeleton|||||||||}; - -{guardian_of_the_catacombs|monsters_rltiles2:45|Guardião das catacumbas|catacombguard1||8|1||6|10|10|10|10|||1|6|10|3|catacombguard|catacombguard||||||||}; -{catacomb_rat|monsters_rats:0|Ratazana-das-catacumbas|catacombrat1||4|||15|10|10|3|60|||1|1|40||catacombrat|||||||||}; -{large_catacomb_rat|monsters_rats:3|Ratazana-das-catacumbas grande|catacombrat1||4|||21|10|10|3|60|10|2|1|2|40||catacombrat|||||||||}; -{ghostly_visage|monsters_ghost1:0|Visão fantasmagórica|catacombguard2||8|||16|10|10|5|20|||1|4|20|2|catacombguard|||||||||}; -{spectre|monsters_rltiles2:45|Espectro|catacombguard2||8|||15|10|10|3|50|||1|5|60|2|catacombguard|||||||||}; -{apparition|monsters_rltiles2:45|Apraição|catacombguard3||8|||17|10|10|3||||1|5|70|2|catacombguard|||||||||}; -{shade|monsters_ghost1:0|Sombra|catacombguard3||8|||16|10|10|5|20|||1|4|20|3|catacombguard|||||||||}; -{young_gargoyle|monsters_misc:2|Gárgula jovem|catacombguard3||3|||35|10|10|10|110|10|2|2|5|70|1|catacombguard|||||||||}; -{ghost_of_luthor|monsters_liches:2|Fantasma de Luthor|luthor||6|1||86|10|10|5|120|15|2|2|5|50|3|luthor|luthor||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{mikhail|monsters_mage2:0|Mikhail|mikhail||0|||||||||||||||mikhail_start_select||||||||}; -{leta|monsters_men:2|Leta|leta||0|||||||||||||||leta1||||||||}; -{audir|monsters_men:0|Audir|audir||0||||||||||||||shop_audir|audir1||||||||}; -{arambold|monsters_men:3|Arambold|arambold||0||||||||||||||shop_arambold|arambold1||||||||}; -{tharal|monsters_men:4|Tharal|tharal||0||||||||||||||shop_tharal|tharal1||||||||}; -{drunk|monsters_rltiles3:14|Bêbedo|drunk||0|||||||||||||||drunk1||||||||}; -{mara|monsters_men:7|Mara|mara||0||||||||||||||shop_mara|mara1||||||||}; -{gruil|monsters_rogue1:0|Gruil|gruil||0||||||||||||||shop_gruil|gruil1||||||||}; -{leonid|monsters_men:3|Leonid|leonid||0|||||||||||||||leonid1||||||||}; -{farmer|monsters_man1:0|Agricultor|crossglen_farmer1||0|||||||||||||||farm1||||||||}; -{tired_farmer|monsters_man1:0|Agricultor cansado|crossglen_farmer2||0|||||||||||||||farm2||||||||}; -{oromir|monsters_man1:0|Oromir|oromir||0|||||||||||||||oromir1||||||||}; -{odair|monsters_men:8|Odair|odair||0|||||||||||||||odair1||||||||}; -{jan|monsters_rltiles3:14|Jan|jan||0|||||||||||||||jan_start_select||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{warden|monsters_men:3|Director|fallhaven_warden||0|||||||||||||||fallhaven_warden_select_1||||||||}; -{guard|monsters_rltiles3:14|Guarda|fallhaven_guard||0|||||||||||||||fallhaven_guard||||||||}; -{acolyte|monsters_men:4|Acólito|fallhaven_priest||0|||||||||||||||fallhaven_priest||||||||}; -{bearded_citizen|monsters_man1:0|Cidadão barbudo|fallhaven_citizen1||0|||||||||||||||fallhaven_citizen1||||||||}; -{old_citizen|monsters_men:2|Cidadão idoso|fallhaven_citizen2||0|||||||||||||||fallhaven_citizen2||||||||}; -{tired_citizen|monsters_men:7|Cidadão cansado|fallhaven_citizen4||0|||||||||||||||fallhaven_citizen4||||||||}; -{citizen|monsters_man1:0|Cidadão|fallhaven_citizen3||0|||||||||||||||fallhaven_citizen3||||||||}; -{grumpy_citizen|monsters_men:2|Cidadão irritado|fallhaven_citizen5||0|||||||||||||||fallhaven_citizen5||||||||}; -{blond_citizen|monsters_men:7|Cidadão louro|fallhaven_citizen6||0|||||||||||||||fallhaven_citizen6||||||||}; -{bucus|monsters_rogue1:0|Bucus|bucus||0|||||||||||||||bucus_welcome||||||||}; -{drunkard|monsters_men:0|Alcoólico|fallhaven_drunk||0|||||||||||||||fallhaven_drunk||||||||}; -{old_man|monsters_men:5|Idoso|fallhaven_oldman||0|||||||||||||||fallhaven_oldman||||||||}; -{nocmar|monsters_men:8|Nocmar|nocmar||0||||||||||||||nocmar|nocmar||||||||}; -{prisoner|monsters_rogue1:0|Prisioneiro|fallhaven_prisoner||0|||1|1|1|1|0|||0|0||||||||||||}; -{ganos|monsters_rogue1:0|Ganos|ganos||0||||||||||||||shop_ganos|ganos||||||||}; -{arcir|monsters_mage2:0|Arcir|arcir||0|||||||||||||||arcir_start||||||||}; -{athamyr|monsters_men:4|Athamyr|athamyr||0|||||||||||||||athamyr||||||||}; -{thoronir|monsters_men2:8|Thoronir|thoronir||0||||||||||||||shop_thoronir|thoronir_default||||||||}; -{chapelgoer|monsters_men:6|Beato|chapelgoer||0|||||||||||||||chapelgoer||||||||}; -{potion_merchant|monsters_mage2:0|Mercador de poções|fallhaven_potions||0||||||||||||||shop_fallhaven_potions|fallhaven_potions||||||||}; -{tailor|monsters_men2:0|Alfaiate|fallhaven_clothes||0||||||||||||||shop_fallhaven_clothes|fallhaven_clothes||||||||}; -{bela|monsters_men:7|Bela|bela||0||||||||||||||shop_bela|bela||||||||}; -{larcal|monsters_men2:2|Larcal|larcal||0|1||51|10|10|10|25|||1|2|50||larcal|larcal||||||||}; -{gaela|monsters_men2:9|Gaela|gaela||0|||||||||||||||gaela||||||||}; -{unnmir|monsters_mage2:0|Unnmir|unnmir||0|||||||||||||||unnmir||||||||}; -{rigmor|monsters_men:1|Rigmor|rigmor||0|||||||||||||||rigmor||||||||}; - -{jakrar|monsters_men2:2|Jakrar|fallhaven_lumberjack||0|||||||||||||||fallhaven_lumberjack||||||||}; -{alaun|monsters_mage2:0|Alaun|alaun||0|||||||||||||||alaun||||||||}; -{busy_farmer|monsters_man1:0|Agricultor atarefado|fallhaven_farmer1||0|||||||||||||||fallhaven_farmer1||||||||}; -{old_farmer|monsters_mage2:0|Agricultor idoso|fallhaven_farmer2||0|||||||||||||||fallhaven_farmer2||||||||}; -{khorand|monsters_men:3|Khorand|khorand||0|||||||||||||||khorand||||||||}; - -{vacor|monsters_mage:0|Vacor|vacor||0|1||72|||5|110|||4|8|40|2|vacor|vacor||||||||}; -{unzel|monsters_men:8|Unzel|unzel||0|1||59|||10|80|30|3|5|9|40|2|unzel|unzel||||||||}; -{shady_bandit|monsters_men2:9|Bandido|fallhaven_bandit||0|1||45|||5|70|30|3|3|9|50|2|fallhaven_bandit|fallhaven_bandit||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{wild_fox|monsters_dogs:3|Raposa selvagem|fox2||4|||25|||5|100|||4|5|40||canine|||||||||}; -{stinging_wasp|monsters_insects:1|Vespa picante|forestwasp2||1|||15|||10|150|||1|2|60||wasp|||||||||}; -{wild_boar|monsters_dogs:6|Javali selvagem|forestboar2||4|||20|||5|110|||3|3|30||canineboss|||||||||}; -{forest_beetle|monsters_insects:4|Escaravelho-das-florestas|forestbeetle||1|||14|||10|150|||2|4|60|2|insect|||||||||}; -{wolf|monsters_dogs:4|Lobo|forestwolf1||4|||30|10|3|5|110|||3|6|30||canine|||||||||}; -{forest_serpent|monsters_snakes:4|Serpente-das-florestas|forestserpent1||7|||20|10|5|3|150|30|2|2|3|60||snake2|||||||||}; -{vicious_forest_serpent|monsters_snakes:4|Serpente-das-florestas feroz|forestserpent2||7|||27|10|5|3|150|30|2|3|4|50||snake2|||||||||}; -{anklebiter|monsters_dogs:6|Morde-calcanhares|forestboar3||4|||31|||5|150|||3|9|60|3|canine2|||||||||}; -{flagstone_sentry|monsters_men:3|Sentinela de Flagstone|flagstone_sentry||0|||||||||||||||flagstone_sentry||||||||}; -{escaped_prisoner|monsters_men:0|Prisioneiro em fuga|prisoner1||0|1||15|||10|50|||3|7|20||prisoner|prisoner1||||||||}; -{starving_prisoner|monsters_misc:11|Prisioneiro esfomeado|prisoner2||0|1||10|||3|60|||3|5|60||prisoner|prisoner2||||||||}; -{bone_warrior|monsters_skeleton1:0|Ossudo guerreiro|skeleton2||3|||32|||5|120|||3|9|60|2|skeleton2|||||||||}; -{bone_champion|monsters_skeleton1:0|Ossudo campeão|skeleton3||3|||49|||5|130|||4|9|60|2|skeleton3|||||||||}; -{undead_warden|monsters_liches:0|Director morto-vivo|flagstone_guard0||6|1||57|||5|120|20|2|4|8|60|1|flagstone_guard0|flagstone_guard0||||||||}; -{cave_guardian|monsters_rltiles1:16|Guardião da caverna|flagstone_guard1||2|1||61|||5|150|10|3|4|10|90|2|flagstone_guard1|flagstone_guard1||||||||}; -{winged_demon|monsters_demon1:0|Demónio voador|flagstone_guard2|2x2|2|1||82|||5|90|10|2|4|12|70|5|flagstone_guard2|flagstone_guard2||||||||}; -{narael|monsters_man1:0|Narael|narael||0|||||||||||||||narael||||||||}; -{rotting_corpse|monsters_zombie1:0|Cadáver putrefacto|undead1||6|||71|||10|30|50|2|2|5|30|2|undead1|zombie1||||||||}; -{walking_corpse|monsters_zombie1:0|Cadáver andante|undead1||6|||90|||10|30|40|2|2|4|30|2|undead1|||||||||}; -{gargoyle|monsters_misc:2|Gárgula|undead1||3|||47|||10|110|10|2|3|7|70|2|undead1|||||||||}; -{fledgling_gargoyle|monsters_misc:1|Gágula inexperiente|undead1||3|||35|||10|110|||3|6|60|2|undead1|||||||||}; -{large_cave_rat|monsters_rats:3|Ratazana-das-cavernas grande|undeadrat1||4|||21|10|10|3|60|10|2|3|4|40||catacombrat|||||||||}; -{pack_leader|monsters_dogs:5|Chefe da matilha|pack_boss||4|1||65|||5|90|20|2|2|10|40|4|pack_boss|||||||||}; -{pack_hunter|monsters_dogs:4|Caçador da matilha|pack3||4|||45|||5|90|10|2|2|7|40|3|pack3|||||||||}; -{rabid_wolf|monsters_dogs:4|Lobo raivoso|pack2||4|||42|||5|90|||2|6|50|3|pack2|||||||||}; -{fledgling_wolf|monsters_dogs:3|Lobo inexperiente|pack2||4|||42|||3|70|||2|5|50|3|pack2|||||||||}; -{young_wolf|monsters_dogs:4|Lobo jovem|pack1||4|||35|||3|60|||2|5|30|2|pack1|||||||||}; -{hunting_dog|monsters_dogs:2|Cão de caça|pack1||4|||25|||5|60|||2|5|50||pack1|||||||||}; -{highwayman|monsters_men:8|Salteador|bandit1||0|||54|||5|90|50|2|2|4|30|2|bandit1|bandit1||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{smug_looking_thief|monsters_men2:9|Ladrão presunçoso|tg_thief||0|||||||||||||||thievesguild_thief_1||||||||}; -{thieves_guild_cook|monsters_men:0|Cozinheiro da guilda de ladrões|tg_cook||0||||||||||||||shop_thieves_guild_cook|thievesguild_cook_1||||||||}; -{pickpocket|monsters_men:7|Carteirista|pickpocket||0|||||||||||||||thievesguild_pickpocket_1||||||||}; -{troublemaker|monsters_men:8|Arruaceiro|troublemaker||0||||||||||||||shop_troublemaker|thievesguild_troublemaker_1||||||||}; -{farrik|monsters_rogue1:0|Farrik|farrik||0|||||||||||||||farrik_select_1||||||||}; -{umar|monsters_man1:0|Umar|umar||0|||||||||||||||umar_select_1||||||||}; -{kaori|monsters_men:7|Kaori|kaori||0|||||||||||||||kaori_start||||||||}; -{old_vilegard_villager|monsters_men:0|Aldeão idoso de Vilegard|vilegard_villager_1||0|||||||||||||||vilegard_villager_1||||||||}; -{grumpy_vilegard_villager|monsters_men:5|Aldeão irritado de Vilegard|vilegard_villager_2||0|||||||||||||||vilegard_villager_2||||||||}; -{vilegard_citizen|monsters_men:1|Cidadão de Vilegard|vilegard_villager_3||0|||||||||||||||vilegard_villager_3||||||||}; -{vilegard_resident|monsters_men2:0|Residente de Vilegard|vilegard_villager_4||0|||||||||||||||vilegard_villager_4||||||||}; -{vilegard_woman|monsters_men:6|Mulher de Vilegard|vilegard_villager_5||0|||||||||||||||vilegard_villager_5||||||||}; -{erttu|monsters_mage2:0|Erttu|erttu||0|||||||||||||||erttu_1||||||||}; -{dunla|monsters_rogue1:0|Dunla|dunla||0||||||||||||||shop_dunla|dunla_default||||||||}; -{tharwyn|monsters_men:7|Tharwyn|tharwyn||0||||||||||||||shop_tharwyn|tharwyn_select||||||||}; -{tavern_guest|monsters_men:0|Visitante da taberna|vg_tavern_drunk||0|||||||||||||||vilegard_tavern_drunk_1||||||||}; -{jolnor|monsters_men2:8|Jolnor|jolnor||0||||||||||||||shop_jolnor|jolnor_select_1||||||||}; -{alynndir|monsters_mage2:0|Alynndir|alynndir||0||||||||||||||shop_alynndir|alynndir_1||||||||}; -{vilegard_armorer|monsters_mage2:0|Armeiro de Vilegard|vg_armorer||0||||||||||||||shop_vg_armorer|vilegard_armorer_select||||||||}; -{vilegard_smith|monsters_mage2:0|Ferreiro de Vilegard|vg_smith||0||||||||||||||shop_vg_smith|vilegard_smith_select||||||||}; -{ogam|monsters_men:0|Ogam|ogam||0|||||||||||||||ogam_1||||||||}; -{foaming_flask_cook|monsters_men:0|Cozinheiro do Foaming Flask|ff_cook||0|||||||||||||||ff_cook_1||||||||}; -{torilo|monsters_men2:9|Torilo|torilo||0||||||||||||||shop_torilo|torilo_1||||||||}; -{ambelie|monsters_men:6|Ambelie|ambelie||0|||||||||||||||ambelie_1||||||||}; -{feygard_patrol|monsters_rltiles3:14|Patrulha de Feygard|ff_guard||0|||||||||||||||ff_guard_1||||||||}; -{feygard_patrol_captain|monsters_men:3|Capitão de patrulha de Feygard|ff_captain||0|||||||||||||||ff_captain_1||||||||}; -{feygard_patrol_watch|monsters_rltiles3:14|Vigia de patrulha de Feygard|ff_outsideguard||0|1||80|||5|70|||2|7|80|3|ff_outsideguard|ff_outsideguard_select||||||||}; -{wrye|monsters_men:6|Wrye|wrye||0|||||||||||||||wrye_select_1||||||||}; -{oluag|monsters_men:8|Oluag|oluag||0|||||||||||||||oluag_1||||||||}; - -{cave_dwelling_boar|monsters_dogs:6|Javali-das-cavernas|caveboar1||4|||35|||5|70|||3|8|60|3|canine2|||||||||}; -{hardshell_beetle|monsters_insects:4|Escaravelho de casca dura|beetle2||1|||25|||5|50|||0|5|40|9|beetle2|||||||||}; -{young_shadow_gargoyle|monsters_misc:1|Gárgula-das-sombras jovem|shadowgarg1||3|||35|||5|65|8|3|3|9|75|3|shadowgarg1|||||||||}; -{fledgling_shadow_gargoyle|monsters_misc:1|Gárgula-das-sombras inexperiente|shadowgarg1||3|||36|||5|65|8|3|3|9|75|3|shadowgarg1|||||||||}; -{shadow_gargoyle|monsters_misc:2|Gárgula-das-sombras|shadowgarg2||3|||37|||5|70|8|3|4|10|85|3|shadowgarg1|||||||||}; -{tough_shadow_gargoyle|monsters_misc:2|Gárgula-das-sobras resistente|shadowgarg2||3|||37|||5|70|8|3|4|10|85|4|shadowgarg2|||||||||}; -{shadow_gargoyle_trainer|monsters_liches:0|Gárgula-das-sombras instrutora|shadowgarg3||6|||35|||5|90|12|3|3|6|90|5|shadowgarg3|||||||||}; -{shadow_gargoyle_master|monsters_liches:1|Gárgula-das-sombras mestre|shadowgarg4||6|||35|||5|125|12|3|3|6|90|5|shadowgarg3|||||||||}; -{maelveon|monsters_liches:2|Maelveon|maelveon||6|1||55|||3|80|15|3|0|12|90|5|maelveon|maelveon||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{puny_caverat|monsters_rats:0|Ratazana-das-cavernas|puny_caverat||4|||5|10|5|5|50|||1|1|30||rat|||||||||}; -{rabid_hound|monsters_rltiles2:108|Cão raivoso|forestwolf2||4|||40|10|5|5|110|||3|9|30||canine|||||||||}; -{vicious_hound|monsters_rltiles2:110|Cão feroz|forestboar4||4|||31|10|5|5|150|||3|9|60|3|canineboss|||||||||}; -{mountain_wolf|monsters_rltiles2:109|Lobo-das-montanhas|primwolf1||4|||49|10|5|5|150|||3|9|60|3|canine|||||||||}; - -{hatchling_white_wyrm|monsters_rltiles1:118|Cria de wyrm branco|wyrm_1||7|||41|10|5|5|75|||4|10|130|5|wyrm_1||1||||||{{fatigue_minor|1|5|10|}}|}; -{young_white_wyrm|monsters_rltiles1:118|Wyrm branco jovem|wyrm_2||7|||47|10|5|5|75|||4|10|130|5|wyrm_2||1||||||{{fatigue_minor|1|5|20|}}|}; -{white_wyrm|monsters_rltiles1:119|Wyrm branco|wyrm_3||7|||55|10|5|3|75|||4|10|130|5|wyrm_3||1||||||{{fatigue_minor|1|5|50|}}|}; -{young_aulaeth|monsters_rltiles2:176|Aulaeth jovem|wyrm_1||5|||105|10|5|5|40|||0|4|30|5|aulaeth||1|1|1|||||}; -{aulaeth|monsters_rltiles2:58|Aulaeth|wyrm_2||5|||120|10|5|5|40|||0|5|40|6|aulaeth||1|1|1|||||}; -{strong_aulaeth|monsters_rltiles2:58|Aulaeth forte|wyrm_3||5|||135|10|5|5|40|||0|5|35|6|aulaeth||1|1|1|||||}; -{wyrm_trainer|monsters_rltiles2:0|Wyrm instrutor|wyrm_4||6|||69|10|5|3|90|||2|9|90|4|wyrm_4||1|1|1||||{{fatigue_minor|1|10|70|}}|}; -{wyrm_apprentice|monsters_rltiles2:0|Wyrm aprendiz|wyrm_4||6|||69|10|5|5|140|||2|9|90|4|wyrm_4||1|1|1||||{{fatigue_minor|1|10|70|}}|}; -{young_gornaud|monsters_rltiles2:29|Gornaud jovem|gornaud_1||5|||70|10|5|5|70|||0|15|50||gornaud_1||1||||||{{dazed|1|5|20|}}|}; -{gornaud|monsters_rltiles2:29|Gornaud|gornaud_2||5|||95|10|5|5|70|||0|15|50|4|gornaud_2||1||||||{{dazed|1|5|50|}}|}; -{strong_gornaud|monsters_rltiles2:30|Gornaud forte|gornaud_3||5|||95|10|5|5|70|||0|15|50|5|gornaud_3||1||||||{{dazed|1|5|70|}}|}; -{slithering_venomfang|monsters_snakes:2|Venomfang rastejante|gornaud_1||7|||35|10|5|3|120|||1|2|90|2|cave_serpent||1||||||{{poison_weak|1|2|20|}}|}; -{scaled_venomfang|monsters_snakes:3|Venomfang escamosa|gornaud_2||7|||35|10|5|3|150|||2|4|90|2|cave_serpent||1||||||{{poison_weak|1|2|50|}}|}; -{tough_venomfang|monsters_snakes:3|Venomfang resistente|gornaud_3||7|||41|10|5|3|150|||2|5|90|2|cave_serpent||1||||||{{poison_weak|1|2|50|}}|}; - -{restless_dead|monsters_rltiles1:47|Morto irrequieto|restless_dead_1||8|||25|10|5|5|50|80|2|0|3|140|3|restless_dead_1|||||||||}; -{grave_spawn|monsters_rltiles1:49|Ente-das-sepulturas|restless_dead_1||2|||45|10|5|5|110|40|2|2|5|35|3|restless_dead_1|||||||||}; -{restless_apparition|monsters_rltiles1:47|Aparição irrequieta|restless_dead_2||8|||29|10|5|3|90|60|3|2|6|10|1|restless_dead_2|||||||||}; -{skeletal_reaper|monsters_rltiles1:27|Esqueleto ceifador|restless_dead_2||3|||15|10|5|5|150|20|2|0|9|110||restless_dead_2|||||||||}; -{kazaul_spawn|monsters_rltiles1:41|Kazaul ente|kazaul_1||2|||45|10|5|3|70|50|2|3|5|90|1|kazaul_1|||||||||}; -{kazaul_imp|monsters_rltiles1:45|Kazaul duende|kazaul_2||2|||45|10|5|3|70|40|2|3|7|105|1|kazaul_2|||||||||}; -{kazaul_guardian|monsters_rltiles1:42|Kazaul guardião|kazaul_guardian||2|1||95|10|5|5|70|40|2|3|8|90|3|kazaul_guardian|kazaul_guardian||||||||}; -{graverobber|monsters_karvis2:3|Saqueador-de-túmulos|bjorgur_bandit||0|1||62|10|5|5|120|||2|6|72|1|bjorgur_bandit|bjorgur_bandit||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{agent1|monsters_men:4|Agente|bwm_agent_1||0|1||||||||||||||bwm_agent_1_start||||||||}; -{agent2|monsters_men:4|Agente|bwm_agent_2||0|1||||||||||||||bwm_agent_2_start||||||||}; -{agent3|monsters_men:4|Agente|bwm_agent_3||0|1||||||||||||||bwm_agent_3_start||||||||}; -{agent4|monsters_men:4|Agente|bwm_agent_4||0|1||||||||||||||bwm_agent_4_start||||||||}; -{agent5|monsters_men:4|Agente|bwm_agent_5||0|1||||||||||||||bwm_agent_5_start||||||||}; -{agent6|monsters_men:4|Agente|bwm_agent_6||0|1||||||||||||||bwm_agent_6_start||||||||}; -{arghest|monsters_rltiles2:81|Arghest|arghest||0|||||||||||||||arghest_start||||||||}; -{tonis|monsters_rltiles1:67|Tonis|tonis||0|||||||||||||||tonis_start||||||||}; - -{moyra|monsters_rltiles1:74|Moyra|moyra||0|||||||||||||||moyra_1||||||||}; -{prim_citizen|monsters_karvis2:6|Cidadão de Prim|prim_commoner1||0|||||||||||||||prim_commoner1||||||||}; -{prim_commoner|monsters_rltiles1:68|Plebeu de Prim|prim_commoner2||0|||||||||||||||prim_commoner2||||||||}; -{prim_resident|monsters_karvis2:2|Habitante de Prim|prim_commoner3||0|||||||||||||||prim_commoner3||||||||}; -{prim_evoker|monsters_rltiles1:84|Invocador de Prim|prim_commoner4||0|||||||||||||||prim_commoner4||||||||}; -{laecca|monsters_rltiles1:72|Laecca|laecca||0|||||||||||||||laecca_1||||||||}; -{prim_cook|monsters_karvis2:0|Cozinheiro de Prim|prim_cook||0|||||||||||||||prim_cook_start||||||||}; -{prim_visitor|monsters_rltiles1:63|Visitante de Prim|prim_innguest||0|||||||||||||||prim_innguest||||||||}; -{birgil|monsters_rltiles2:81|Birgil|birgil||0||||||||||||||shop_birgil|birgil_1||||||||}; -{prim_tavern_guest|monsters_rltiles1:106|Visitante da taberna de Prim|prim_tavern_guest1||0|||||||||||||||prim_tavern_guest1||||||||}; -{prim_tavern_regular|monsters_rltiles1:106|Cliente da taberna de Prim|prim_tavern_guest2||0|||||||||||||||prim_tavern_guest2||||||||}; -{prim_bar_guest|monsters_rltiles1:106|Visitante do bar de Prim|prim_tavern_guest3||0|||||||||||||||prim_tavern_guest3||||||||}; -{prim_bar_regular|monsters_rltiles1:106|Cliente do bar de Prim|prim_tavern_guest4||0|||||||||||||||prim_tavern_guest4||||||||}; -{prim_armorer|monsters_rltiles1:88|Armeiro de Prim|prim_armorer||0||||||||||||||shop_prim_armorer|prim_armorer||||||||}; -{jueth|monsters_men2:0|Jueth|prim_tailor||0|||||||||||||||prim_tailor||||||||}; -{bjorgur|monsters_karvis2:7|Bjorgur|bjorgur||0|||||||||||||||bjorgur_start||||||||}; -{prim_prisoner|monsters_rltiles2:81|Prisioneiro de Prim|prim_prisoner||0|||||||||||||||prim_guard1||||||||}; -{fulus|monsters_karvis2:3|Fulus|fulus||0|||||||||||||||fulus_start||||||||}; -{guthbered|monsters_rltiles1:92|Guthbered|guthbered||0|1||80|10|5|5|70|||4|9|80|4|guthbered|guthbered_start||||||||}; -{guthbereds_bodyguard|monsters_rltiles1:76|Guarda-costas de Guthbered|guthbered_guard||0|||||||||||||||guthbered_guard||||||||}; -{prim_weapon_guard|monsters_rltiles1:65|Guarda-armas de Prim|prim_guard1||0|||||||||||||||prim_guard1||||||||}; -{prim_sentry|monsters_rltiles3:14|Sentinela de Prim|prim_guard2||0|||||||||||||||prim_guard2||||||||}; -{prim_guard|monsters_rltiles1:65|Guarda de Prim|prim_guard4||0|||||||||||||||prim_guard4||||||||}; -{tired_prim_guard|monsters_rltiles1:76|Guarda de Prim cansado|prim_guard3||0|||||||||||||||prim_guard3||||||||}; -{prim_treasury_guard|monsters_rltiles1:69|Guarda do Tesouro de Prim|prim_treasury_guard||0|||||||||||||||prim_treasury_guard||||||||}; -{samar|monsters_rltiles2:93|Samar|prim_priest||0||||||||||||||shop_samar|prim_priest||||||||}; -{prim_priestly_acolyte|monsters_rltiles1:83|Acólito sacerdotal de Prim|prim_acolyte||0|||||||||||||||prim_acolyte||||||||}; -{studying_prim_pupil|monsters_rltiles1:74|Pupilo em estudo de Prim|prim_pupil1||0|||||||||||||||prim_pupil1||||||||}; -{reading_prim_pupil|monsters_rltiles1:74|Pupilo em leitura de Prim|prim_pupil2||0|||||||||||||||prim_pupil2||||||||}; -{prim_pupil|monsters_rltiles1:74|Pupilo de Prim|prim_pupil3||0|||||||||||||||prim_pupil3||||||||}; - -{blackwater_entrance_guard|monsters_rltiles3:14|Guarda da entrada de Blackwater|blackwater_entranceguard||0|||30|10|||||||||||blackwater_entranceguard||||||||}; -{blackwater_dinner_guest|monsters_karvis2:2|Convidado de jantar de Blackwater|blackwater_guest1||0|||20|10|||||||||||blackwater_guest1||||||||}; -{blackwater_inhabitant|monsters_man1:0|Habitante de Blackwater|blackwater_guest2||0|||10|10|||||||||||blackwater_guest2||||||||}; -{blackwater_cook|monsters_karvis2:0|Cozinheiro de Blackwater|blackwater_cook||0|||||||||||||||blackwater_cook||||||||}; -{keneg|monsters_rltiles1:86|Keneg|keneg||0|||||||||||||||keneg||||||||}; -{mazeg|monsters_rltiles1:85|Mazeg|mazeg||0||||||||||||||shop_mazeg|mazeg||||||||}; -{waeges|monsters_rltiles1:88|Waeges|waeges||0||||||||||||||shop_waeges|waeges||||||||}; -{blackwater_fighter|monsters_rltiles1:66|Lutador de Blackwater|blackwater_fighter||0|||||||||||||||blackwater_fighter||||||||}; -{ungorm|monsters_rltiles1:83|Ungorm|ungorm||0|||||||||||||||ungorm||||||||}; -{blackwater_pupil|monsters_rltiles1:74|Pupilo de Blackwater|blackwater_pupil||0|||||||||||||||blackwater_pupil||||||||}; -{laede|monsters_rltiles1:81|Laede|blackwater_sleephall||0|||||||||||||||laede||||||||}; -{herec|monsters_men2:9|Herec|herec||0||||||||||||||shop_herec|herec_start||||||||}; -{iducus|monsters_rltiles1:87|Iducus|iducus||0||||||||||||||shop_iducus|iducus||||||||}; -{blackwater_priest|monsters_rltiles1:80|Prior de Blackwater|blackwater_priest||0|||||||||||||||blackwater_priest||||||||}; -{studying_blackwater_priest|monsters_rltiles1:84|Prior em estudo de Blackwater|blackwater_pupil||0|||||||||||||||blackwater_pupil||||||||}; -{blackwater_guard|monsters_rltiles1:76|Guarda de Blackwater|blackwater_guard1||0|||||||||||||||blackwater_guard1||||||||}; -{blackwater_border_patrol|monsters_rltiles1:76|Patrulha de fronteira de Blackwater|blackwater_guard2||0|||||||||||||||blackwater_guard2||||||||}; -{harlenns_bodyguard|monsters_rltiles1:76|Guarda-costas de Harlenn|blackwater_bossguard||0|||||||||||||||blackwater_bossguard||||||||}; -{blackwater_chamber_guard|monsters_men:3|Guarda de câmara de Blackwater|blackwater_throneguard||0|1||||||||||||||blackwater_throneguard||||||||}; -{harlenn|monsters_men2:6|Harlenn|harlenn||0|1||80|10|5|5|70|||4|9|80|4|harlenn|harlenn_start||||||||}; -{throdna|monsters_men2:4|Throdna|throdna||0|||||||||||||||throdna_start||||||||}; -{throdnas_guard|monsters_rltiles1:85|Guarda de Throdna|throdna_guard||0|||||||||||||||throdna_guard||||||||}; -{blackwater_mage|monsters_rltiles1:80|Mago de Blackwater|blackwater_acolyte||0|||||||||||||||blackwater_acolyte||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{young_larval_burrower|monsters_rltiles2:164|Larva-escavadora jovem|larva_1||1|||30|10|5|5|120|35|3|1|6|25||larva_1|||||||||}; -{larval_burrower|monsters_rltiles2:164|Larva-escavadora|larva_2||1|||35|10|5|5|120|35|3|1|6|25||larva_2|||||||||}; -{larval_boss|monsters_rltiles2:164|Larva-escavadora forte|larva_boss||1|1||35|10|5|5|120|35|3|1|6|25||larva_boss|||||||||}; - -{rivertroll|monsters_rltiles1:104|Duende-dos-rios|rivertroll||5|1||210|10|5|5|120|30|4|2|9|65|7|rivertroll|||||||||}; -{grass_ant|monsters_insects:0|Formigra-das-pradarias|fieldcritter_0||1|||29|10|5|3|120|||0|4|80||fieldcritter_0|||||||||}; -{grass_ant2|monsters_insects:2|Formiga-das-pradarias resistente|fieldcritter_0||1|||29|10|5|3|125|||1|5|80||fieldcritter_0|||||||||}; -{grass_beetle|monsters_insects:4|Escaravelho-das-pradarias|fieldcritter_1||1|||34|10|5|5|120|||0|5|80|3|fieldcritter_1|||||||||}; -{grass_beetle2|monsters_insects:4|Escaravelho-das-pradarias resistente|fieldcritter_1||1|||35|10|5|5|125|||1|6|80|4|fieldcritter_1|||||||||}; -{grass_snake|monsters_rltiles2:25|Cobra-das-pradarias|fieldcritter_2||7|||36|10|5|3|120|||0|6|80||fieldcritter_2|||||||||}; -{grass_snake2|monsters_rltiles2:25|Cobra-das-pradarias resistente|fieldcritter_2||7|||38|10|5|3|125|||1|7|80||fieldcritter_2|||||||||}; -{grass_lizard|monsters_rltiles2:114|Lagarto-das-pradarias|fieldcritter_3||7|||45|10|5|3|120|||0|8|80|3|fieldcritter_3|||||||||}; -{grass_lizard2|monsters_rltiles2:117|Lagarto-das-pradarias negro|fieldcritter_3||7|||45|10|5|3|125|||2|9|80|4|fieldcritter_3|||||||||}; - -{keknazar|monsters_misc:9|Keknazar|keknazar||7|1||90|10|5|5|50|20|3|3|9|70|8|keknazar|keknazar||||||||}; - -{crossroads_rat|monsters_rats:0|Ratazana|crossroads_rat||4|||5|10|5|5|50|||1|1|30||rat|||||||||}; -{fieldwasp_0|monsters_insects:1|Vespa-das-florestas frenética|fieldwasp_0||1|||29|10|5|3|70|60|3|2|6|95||fieldwasp|||||||||}; -{fieldwasp_1|monsters_insects:1|Vespa-das-florestas frenética|fieldwasp_1||1|||32|10|5|3|70|70|3|2|6|125||fieldwasp|||||||||}; -{fieldwasp_2|monsters_insects:1|Vespa-das-florestas frenética|fieldwasp_2||1|||35|10|5|3|70|75|3|2|6|130||fieldwasp|||||||||}; - -{izthiel_1|monsters_rltiles2:51|Izthiel jovem|izthiel_1||7|||40|10|5|3|70|||2|7|57|5|izthiel||0|||||||}; -{izthiel_2|monsters_rltiles2:49|Izthiel|izthiel_2||7|||45|10|5|3|90|||2|7|58|6|izthiel||0|||||||}; -{izthiel_3|monsters_rltiles2:48|Izthiel forte|izthiel_3||7|||52|10|5|3|80|||2|7|60|8|izthiel||1||||||{{bleeding_wound|2|4|40|}}|}; -{izthiel_4|monsters_rltiles2:52|Izthiel guardião|izthiel_4||7|||54|10|5|3|120|||3|7|60|11|izthiel_4||1||||||{{bleeding_wound|3|5|50|}}|}; -{frog_1|monsters_rltiles1:131|Sapo-dos-rios|frog_1||7|||15|10|5|2|150|||0|5|45||frog||0|||||||}; -{frog_2|monsters_rltiles1:131|Sapo-dos-rios resistente|frog_2||7|||17|10|5|2|160|||0|5|49||frog||0|||||||}; -{frog_3|monsters_rltiles1:130|Sapo-dos-rios venenoso|frog_3||7|||21|10|5|2|165|||0|5|55||frog_3||1||||||{{poison_weak|2|5|30|}}|}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{lostsheep1|monsters_karvis2:8|Ovelha|tinlyn_lostsheep1||4|1||5|10|5|5|10|||0|1|5||tinlyn_sheep|tinlyn_lostsheep1||||||||}; -{lostsheep2|monsters_karvis2:8|Ovelha|tinlyn_lostsheep2||4|1||5|10|5|5|10|||0|1|5||tinlyn_sheep|tinlyn_lostsheep2||||||||}; -{lostsheep3|monsters_karvis2:8|Ovelha|tinlyn_lostsheep3||4|1||5|10|5|5|10|||0|1|5||tinlyn_sheep|tinlyn_lostsheep3||||||||}; -{lostsheep4|monsters_karvis2:8|Ovelha|tinlyn_lostsheep4||4|1||5|10|5|5|10|||0|1|5||tinlyn_sheep|tinlyn_lostsheep4||||||||}; -{sheep1|monsters_karvis2:8|Ovelha|tinlyn_sheep||4|1||5|10|5|5|10|||0|1|5||tinlyn_sheep|tinlyn_sheep||||||||}; - -{ailshara|monsters_men:8|Ailshara|ailshara||0||||||||||||||shop_ailshara|ailshara||||||||}; -{arngyr|monsters_rltiles1:65|Arngyr|arngyr||0|||||||||||||||arngyr||||||||}; -{benbyr|monsters_rltiles1:74|Benbyr|benbyr||0|||||||||||||||benbyr||||||||}; -{celdar|monsters_rltiles1:94|Celdar|celdar||0|||||||||||||||celdar||||||||}; -{conren|monsters_karvis2:5|Conren|conren||0|||||||||||||||conren||||||||}; -{crossroads_backguard|monsters_rltiles1:76|Guarda|crossroads_backguard||0|1||||||||||||||crossroads_backguard||||||||}; -{crossroads_guard|monsters_rltiles1:76|Guarda|crossroads_guard||0|||||||||||||||crossroads_guard||||||||}; -{crossroads_sleepguard|monsters_rltiles1:76|Guarda|crossroads_sleepguard||0|||||||||||||||crossroads_sleepguard||||||||}; -{crossroads_guest|monsters_rltiles1:83|Visitante|crossroads_guest||0|||||||||||||||crossroads_guest||||||||}; -{erinith|monsters_rltiles1:82|Erinith|erinith||0|||||||||||||||erinith||||||||}; -{fanamor|monsters_men:7|Fanamor|fanamor||0|||||||||||||||fanamor||||||||}; -{feygard_bridgeguard|monsters_men2:4|Guarda da ponte de Feygard|feygard_bridgeguard||0|||||||||||||||feygard_bridgeguard||||||||}; -{fieldwasp_unique|monsters_insects:1|Vespa-das-florestas frenética|fieldwasp_unique||1|1||70|10|5|3|70|200|3|2|6|150||fieldwasp_unique|||||||||}; -{gallain|monsters_man1:0|Gallain|gallain||0||||||||||||||shop_gallain|gallain||||||||}; -{gandoren|monsters_rltiles1:69|Gandoren|gandoren||0|||||||||||||||gandoren||||||||}; -{grimion|monsters_men2:2|Grimion|grimion||0||||||||||||||shop_grimion|grimion||||||||}; -{hadracor|monsters_men2:2|Hadracor|hadracor||0||||||||||||||shop_hadracor|hadracor||||||||}; -{kuldan|monsters_rltiles1:85|Kuldan|kuldan||0|||||||||||||||kuldan||||||||}; -{kuldan_guard|monsters_rltiles3:14|Guarda de Kuldan|kuldan_guard||0|||||||||||||||kuldan_guard||||||||}; -{landa|monsters_men:0|Landa|landa||0|||||||||||||||landa||||||||}; -{loneford_chapelguard|monsters_rltiles1:78|Guarda da capela|loneford_chapelguard||0|||||||||||||||loneford_chapelguard||||||||}; -{loneford_farmer0|monsters_karvis2:1|Agricultor|loneford_farmer0||0|||||||||||||||loneford_farmer0||||||||}; -{loneford_guard0|monsters_rltiles3:14|Guarda|loneford_guard0||0|||||||||||||||loneford_guard0||||||||}; -{loneford_tavern_patron|monsters_karvis2:2|Taberneiro|loneford_tavern_patron||0|||||||||||||||loneford_tavern_patron||||||||}; -{loneford_villager0|monsters_karvis2:0|Aldeão|loneford_villager0||0|||||||||||||||loneford_villager0||||||||}; -{loneford_villager1|monsters_karvis2:1|Aldeão|loneford_villager1||0|||||||||||||||loneford_villager1||||||||}; -{loneford_villager2|monsters_karvis2:3|Aldeão|loneford_villager2||0|||||||||||||||loneford_villager2||||||||}; -{loneford_villager3|monsters_karvis2:5|Aldeão|loneford_villager3||0|||||||||||||||loneford_villager3||||||||}; -{loneford_villager4|monsters_men:2|Aldeão|loneford_villager4||0|||||||||||||||loneford_villager4||||||||}; -{loneford_wellguard|monsters_rltiles1:72|Guarda|loneford_wellguard||0|||||||||||||||loneford_wellguard||||||||}; -{mienn|monsters_rltiles1:87|Mienn|mienn||0|||||||||||||||mienn||||||||}; -{minarra|monsters_rltiles1:86|Minarra|minarra||0||||||||||||||shop_minarra|minarra||||||||}; -{puny_warehouserat|monsters_rats:1|Ratazana-dos-celeiros|puny_warehouserat||4|||5|10|5|5|50|||1|1|30||rat|||||||||}; -{rolwynn|monsters_rltiles1:77|Rolwynn|rolwynn||0|||||||||||||||rolwynn||||||||}; -{sienn|monsters_rltiles1:66|Sienn|sienn||0|||||||||||||||sienn||||||||}; -{sienn_pet|monsters_misc:0|Animal de estimação de Sienn|sienn_pet||7|||||||||||||||sienn_pet||||||||}; -{siola|monsters_rltiles1:90|Siola|siola||0||||||||||||||shop_siola|siola||||||||}; -{taevinn|monsters_karvis2:5|Taevinn|taevinn||0|||||||||||||||taevinn||||||||}; -{talion|monsters_men2:8|Talion|talion||0||||||||||||||shop_talion|talion||||||||}; -{telund|monsters_rltiles1:74|Telund|telund||0|||||||||||||||telund||||||||}; -{tinlyn|monsters_karvis2:7|Tinlyn|tinlyn||0|||||||||||||||tinlyn||||||||}; -{wallach|monsters_rltiles1:75|Wallach|wallach||0|||||||||||||||wallach||||||||}; -{woodcutter_0|monsters_men:0|Lenhador|woodcutter_0||0|||||||||||||||woodcutter_0||||||||}; -{woodcutter_2|monsters_men:0|Lenhador|woodcutter_2||0|||||||||||||||woodcutter_2||||||||}; -{woodcutter_3|monsters_men2:2|Lenhador|woodcutter_3||0|||||||||||||||woodcutter_3||||||||}; -{woodcutter_4|monsters_rltiles1:93|Lenhador|woodcutter_4||0|||||||||||||||woodcutter_4||||||||}; -{woodcutter_5|monsters_men2:2|Lenhador|woodcutter_5||0|||||||||||||||woodcutter_5||||||||}; -{rogorn|monsters_rltiles1:63|Rogorn|rogorn||0|1||145|10|5|3|90|||5|9|120|5|rogorn|rogorn||||||||}; -{rogorn_henchman|monsters_rogue1:0|Escudeiro de Rogorn|rogorn_henchman||0|1||130|10|5|3|80|||5|8|120|4|rogorn_henchman|rogorn_henchman||||||||}; -{buceth|monsters_men2:7|Buceth|buceth||0|1||75|10|5|3|80|200|2|3|9|120|4|buceth|buceth||||||||}; -{gauward|monsters_mage2:0|Gauward|gauward||0|||||||||||||||gauward||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{iqhan_1a|monsters_rltiles2:96|Iqhan escravo operário|iqhan_1||0|||55|10|5|3|110|||2|9|70||iqhan_lesser|||||||||}; -{iqhan_1b|monsters_rltiles2:96|Iqhan escravo servo|iqhan_1||0|||57|10|5|3|120|15|2|2|9|70||iqhan_lesser|||||||||}; -{iqhan_2a|monsters_rltiles2:97|Iqhan escravo guarda|iqhan_2||0|||59|10|5|3|130|15|2|2|9|70||iqhan_lesser|||||||||}; -{iqhan_2b|monsters_rltiles2:97|Iqhan escravo|iqhan_2||0|||62|10|5|3|130|15|2|2|10|70||iqhan_lesser|||||||||}; -{iqhan_3a|monsters_rltiles2:128|Iqhan escravo guerreiro|iqhan_3||0|||65|10|5|3|140|15|2|2|11|70||iqhan_lesser|||||||||}; -{iqhan_3b|monsters_rltiles2:129|Iqhan mestre|iqhan_3||0|||67|10|5|3|140|20|2|2|12|60||iqhan_lesser|||||||||}; -{iqhan_4a|monsters_rltiles2:129|Iqhan mestre|iqhan_4||0|||69|10|5|3|140|20|2|2|13|60||iqhan_lesser|||||||||}; -{iqhan_4b|monsters_rltiles2:133|Iqhan mestre|iqhan_4||0|||71|10|5|3|140|20|2|2|15|60||iqhan|||||||||}; -{iqhan_ch_1a|monsters_rltiles2:135|Iqhan invocador do caos|iqhan_ch_1||0|||73|10|5|3|140|20|2|2|15|60||iqhan||1||||||{{chaotic_grip|2|5|20|}}|}; -{iqhan_ch_1b|monsters_rltiles2:135|Iqhan invocador do caos|iqhan_ch_1||0|||75|10|5|3|150|20|2|2|14|60||iqhan||1||||||{{chaotic_grip|2|5|20|}}|}; -{iqhan_ch_2a|monsters_rltiles2:134|Iqhan servo do caos|iqhan_ch_2||0|||78|10|5|3|150|20|2|2|14|60||iqhan||1||||||{{chaotic_grip|4|5|50|}}|}; -{iqhan_ch_2b|monsters_rltiles2:134|Iqhan servo do caos|iqhan_ch_2||0|||79|10|5|3|150|25|2|2|13|75||iqhan||1||||||{{chaotic_grip|4|5|50|}}|}; -{iqhan_ch_3a|monsters_rltiles2:136|Iqhan mestre do caos|iqhan_ch_3||0|||83|10|5|3|170|25|2|2|13|75||iqhan_master||1||||||{{chaotic_grip|4|5|50|}}|}; -{iqhan_ch_3b|monsters_rltiles2:137|Iqhan mestre do caos|iqhan_ch_3||0|||85|10|5|3|170|25|2|2|13|75||iqhan_master||1||||||{{chaotic_grip|4|5|50|}}|}; -{iqhan_chb_1a|monsters_rltiles1:19|Iqhan besta do caos|iqhan_chb_1||3|||122|10|10|10|150|10|3|0|15|45|9|iqhan_beast||1||||||{{chaotic_grip|5|5|50|}}|}; -{iqhan_chb_1b|monsters_rltiles1:19|Iqhan besta do caos|iqhan_chb_1||3|||140|10|10|10|150|10|3|0|15|45|9|iqhan_beast||1||||||{{chaotic_grip|5|5|50|}}|}; -{iqhan_greeter|monsters_men:8|Rancent|iqhan_greeter||0|1||||||||||||||iqhan_greeter||||||||}; -{iqhan_boss|monsters_rltiles1:5|Iqhan esclavagista do caos|iqhan_boss||6|1||120|10|5|3|170|30|2|2|13|75|2|iqhan_boss|iqhan_boss|1||||||{{chaotic_grip|7|5|50|}{chaotic_curse|3|5|50|}}|}; - - - diff --git a/AndorsTrail/res/values-ru/content_actorconditions.xml b/AndorsTrail/res/values-ru/content_actorconditions.xml deleted file mode 100644 index 4348ce0c6..000000000 --- a/AndorsTrail/res/values-ru/content_actorconditions.xml +++ /dev/null @@ -1,52 +0,0 @@ - - - - -[id|name|iconID|category|isStacking|isPositive|hasRoundEffect|round_visualEffectID|round_boostHP_Min|round_boostHP_Max|round_boostAP_Min|round_boostAP_Max|hasFullRoundEffect|fullround_visualEffectID|fullround_boostHP_Min|fullround_boostHP_Max|fullround_boostAP_Min|fullround_boostAP_Max|hasAbilityEffect|boostMaxHP|boostMaxAP|moveCostPenalty|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|]; -{bless|Благословление|actorconditions_1:41|0||1|||||||||||||1|||||5|||||||}; -{poison_weak|Слабый яд|actorconditions_1:60|3|||1|2|-1|-1|||||||||||||||||||||}; -{str|Сила|actorconditions_1:70|2||1|||||||||||||1||||||||2|2|||}; -{regen|Регенерация Тени|actorconditions_1:35|0||1|1|1|1|1|||||||||0||||||||||||}; - - - -[id|name|iconID|category|isStacking|isPositive|hasRoundEffect|round_visualEffectID|round_boostHP_Min|round_boostHP_Max|round_boostAP_Min|round_boostAP_Max|hasFullRoundEffect|fullround_visualEffectID|fullround_boostHP_Min|fullround_boostHP_Max|fullround_boostAP_Min|fullround_boostAP_Max|hasAbilityEffect|boostMaxHP|boostMaxAP|moveCostPenalty|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|]; -{speed_minor|Малая скорость|actorconditions_1:87|2||1|||||||||||||1||2||||||||||}; -{fatigue_minor|Малая усталость|actorconditions_1:14|2|||0||||||0||||||1|||2|2||||-1|-1|||}; -{feebleness_minor|Малая слабость оружия|actorconditions_1:74|1|||||||||||||||1||||||||-3|-3|||}; -{bleeding_wound|Кровоточащая рана|actorconditions_2:0|3|1||1|0|-1|-1|||||||||||||||||||||}; -{rage_minor|Малая ярость берсерка|actorconditions_1:90|1||1|0|-1|||||||||||1|35||||60|||||-90|-1|}; -{blackwater_misery|Блеквотское страдание|actorconditions_1:58|3|||||||||||||||1||||1|-50|-50||||||}; -{intoxicated|Опьянение|actorconditions_2:1|1||1|||||||||||||1|15|||1|-30|||4|4|||}; -{dazed|Ошеломление|actorconditions_1:65|1|||||||||||||||1||||||||||-40||}; - - - -[id|name|iconID|category|isStacking|isPositive|hasRoundEffect|round_visualEffectID|round_boostHP_Min|round_boostHP_Max|round_boostAP_Min|round_boostAP_Max|hasFullRoundEffect|fullround_visualEffectID|fullround_boostHP_Min|fullround_boostHP_Max|fullround_boostAP_Min|fullround_boostAP_Max|hasAbilityEffect|boostMaxHP|boostMaxAP|moveCostPenalty|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|]; -{chaotic_grip|Хаотический спазм|actorconditions_1:96|1|||0||||||||||||1||||||||||-10|-1|}; -{chaotic_curse|Хаотическое проклятие|actorconditions_1:89|1|||0||||||||||||1||-1||||||-1|-1|-10|-1|}; - - - -[id|name|iconID|category|isStacking|isPositive|hasRoundEffect|round_visualEffectID|round_boostHP_Min|round_boostHP_Max|round_boostAP_Min|round_boostAP_Max|hasFullRoundEffect|fullround_visualEffectID|fullround_boostHP_Min|fullround_boostHP_Max|fullround_boostAP_Min|fullround_boostAP_Max|hasAbilityEffect|boostMaxHP|boostMaxAP|moveCostPenalty|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|]; -{contagion|Блохи|actorconditions_1:58|3|||0|2|||||||||||1|||||-10|||-1|-1|||}; -{blister|Ожог кожи|actorconditions_1:15|3|||1|0|-1|-1|||||||||||||||||||||}; -{stunned|Оглушение|actorconditions_1:95|2|||||||||||||||1||-2|8|5||||||||}; -{focus_dmg|Улучшение урона|actorconditions_1:70|1||1|||||||||||||1||||1||||3|3|||}; -{focus_ac|Улучшение точности|actorconditions_1:98|1||1|||||||||||||1||||1|40|||||||}; -{poison_irdegh|Яд ирдега|actorconditions_1:60|3|1||1|2|-1|-1|||||||||||||||||||||}; - - - -[id|name|iconID|category|isStacking|isPositive|hasRoundEffect|round_visualEffectID|round_boostHP_Min|round_boostHP_Max|round_boostAP_Min|round_boostAP_Max|hasFullRoundEffect|fullround_visualEffectID|fullround_boostHP_Min|fullround_boostHP_Max|fullround_boostAP_Min|fullround_boostAP_Max|hasAbilityEffect|boostMaxHP|boostMaxAP|moveCostPenalty|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|]; -{rotworm|Kazaul rotworms|actorconditions_1:82|2|||||||||||||||1|-15|-3|||||||||-1|}; -{shadowbless_str|Благословение силы Тени|actorconditions_1:70|0||1|||||||||||||1||||||||1|1|||}; -{shadowbless_heal|Благословение регенерации Тени|actorconditions_1:35|0||1|1|1|1|1|||||||||||||||||||||}; -{shadowbless_acc|Благословение аккуратности Тени|actorconditions_1:98|0||1|||||||||||||1|||||30|||||||}; -{shadowbless_guard|Благословение защитника Тени|actorconditions_1:91|0||1|||||||||||||1|30||||||||||1|}; -{crit1|Внутреннее кровотечение|actorconditions_1:89|2|1||||||||||||||1||||1|-50|||-3|-3|||}; -{crit2|Перелом|actorconditions_1:89|2|1||||||||||||||1||||||||||-50|-2|}; -{concussion|Сотрясение|actorconditions_1:80|2|1||||||||||||||1|||||-30|||||||}; - - - diff --git a/AndorsTrail/res/values-ru/content_conversationlist.xml b/AndorsTrail/res/values-ru/content_conversationlist.xml deleted file mode 100644 index 54a52c8b0..000000000 --- a/AndorsTrail/res/values-ru/content_conversationlist.xml +++ /dev/null @@ -1,531 +0,0 @@ - - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{mikhail_start_select|||{{|mikhail_start_select2|mikhail_bread:100||||}{|mikhail_bread_continue|mikhail_bread:10||||}{|mikhail_start_select2|||||}}|}; -{mikhail_start_select2|||{{|mikhail_start_select_default|mikhail_rats:100||||}{|mikhail_rats_continue|mikhail_rats:10||||}{|mikhail_start_select_default|||||}}|}; -{mikhail_start_select_default|||{{|mikhail_visited|andor:1||||}{|mikhail_gamestart|||||}}|}; -{mikhail_gamestart|Отлично, ты проснулся.||{{N|mikhail_visited|||||}}|}; -{mikhail_visited|Я нигде не могу найти твоего брата. Он не вернулся, с тех пор как ушел вчера.|{{0|andor|1|}}|{{N|mikhail3|||||}}|}; -{mikhail3|Неважно, он, наверное, скоро вернется.||{{N|mikhail_default|||||}}|}; -{mikhail_default|Можешь мне помочь кое в чем?||{{Помощь|mikhail_tasks|||||}{Брат|mikhail_andor1|||||}}|}; -{mikhail_tasks|О да, есть некоторые вещи в которых мне нужна помощь.||{{Хлеб|mikhail_bread_select|||||}{Крысы|mikhail_rats_select|||||}{Назад|mikhail_default|||||}}|}; -{mikhail_andor1|Как я говорил, Эндор ушел вчера и до сих пор не вернулся. Я начинаю беспокоиться за него. Пожалуйста, иди и поищи своего брата, он сказал что скоро вернется.||{{N|mikhail_andor2|||||}}|}; -{mikhail_andor2|Может он снова отправился в пещеры и потерялся. Или он в подвале у Леты снова тренируется со своим деревянным мечом. Пожалуйста, поищи его в городе.||{{N|mikhail_default|||||}}|}; -{mikhail_bread_select|||{{|mikhail_bread_complete2|mikhail_bread:100||||}{|mikhail_bread_continue|mikhail_bread:10||||}{|mikhail_bread_start|||||}}|}; -{mikhail_bread_start|Ой, я совсем забыл. Если у тебя есть время, пожалуйста найди Мару в ратуше и купи мне немного хлеба.|{{0|mikhail_bread|10|}}|{{N|mikhail_default|||||}}|}; -{mikhail_bread_continue|Ты купил хлеб у Мары в ратуше, о котором я просил?||{{Да, вот|mikhail_bread_complete||bread|1|0|}{Нет еще|mikhail_default|||||}}|}; -{mikhail_bread_complete|Большое спасибо, теперь я смогу позавтракать. Вот, возми несколько монет за твою помощь.|{{0|mikhail_bread|100|}{1|gold20||}}|{{N|mikhail_default|||||}}|}; -{mikhail_bread_complete2|Спасибо, еще раз, за хлеб.||{{Пожалуйста|mikhail_default|||||}}|}; -{mikhail_rats_select|||{{|mikhail_rats_complete2|mikhail_rats:100||||}{|mikhail_rats_continue|mikhail_rats:10||||}{|mikhail_rats_start|||||}}|}; -{mikhail_rats_start|Я видел несколько крыс в огороде. Не мог бы ты поискать их? Пожалуйста, убей всех крыс, которых увидишь.|{{0|mikhail_rats|10|}}|{{Готово|mikhail_rats_complete||tail_trainingrat|2|0|}{Конечно|mikhail_rats_start2|||||}}|}; -{mikhail_rats_start2|Если пострадаешь от крыс, то возвращайся и отдохни в кровати. Это поможет восстановить силы.||{{N|mikhail_rats_start3|||||}}|}; -{mikhail_rats_start3|Так же не забудь проверить свой инвентарь. У тебя, наверное, еще сохранилось кольцо, которое я тебе подарил. Убедись что надел его.||{{Хорошо|mikhail_default|||||}}|}; -{mikhail_rats_continue|Ты убил крыс в огороде?||{{Да|mikhail_rats_complete||tail_trainingrat|2|0|}{Еще нет|mikhail_rats_start2|||||}}|}; -{mikhail_rats_complete|Вау, Спасибо за твою помощь!\n\nЕсли устал, используй кровать для отдыха. Это поможет восстановить твои силы.|{{0|mikhail_rats|100|}}|{{N|mikhail_default|||||}}|}; -{mikhail_rats_complete2|Спасибо, еще раз, за помощь с крысами.\n\nЕсли устал, используй кровать для отдыха. Это поможет восстановить твои силы.||{{N|mikhail_default|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{leta1|Эй, это мой дом, проваливай от сюда!||{{Но я просто...|leta2|||||}{Оромир|leta_oromir_select|||||}}|}; -{leta2|Давай парень, проваливай из моего дома!||{{Оромир|leta_oromir_select|||||}}|}; -{leta_oromir_select|||{{|leta_oromir_complete2|leta:100||||}{|leta_oromir1|||||}}|}; -{leta_oromir1|Слышал что-нибудь о моем муже? Он должен был помогать на ферме сегодня, но он отлынивает, как обычно.\nВздох.||{{Нет, не слышал|leta_oromir2|||||}{Найти его|leta_oromir_complete|leta:20||||}}|}; -{leta_oromir2|Если увидишь его, скажи ему что бы поторапливался обратно и помог мне с работой по дому.\nА теперь проваливай!|{{0|leta|10|}}||}; -{leta_oromir_complete|Он прячется? Он выбрал неправильный путь. Пойду покажу ему, кто в доме хозяин.\nСпасибо что дал знать.|{{0|leta|100|}}||}; -{leta_oromir_complete2|Спасибо за помощь с Оромиром. Я отправлюсь за ним через минуту.|||}; -{oromir1|Ой ты меня напугал.\nПривет.||{{Привет|oromir2|||||}}|}; -{oromir2|Я скрываюсь от своей жены Леты. Она вечно ворчит на меня за то, что не помогаю на ферме. Пожалуйста, не говори ей где я.|{{0|leta|20|}}|{{Конечно|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{audir1|Добро пожаловать в мой магазин!\n\nПожалуйста посмотри мой ассортимент.||{{Магазин|S|||||}}|}; -{arambold1|О боже, я когда-нибудь получу покой с этими орущими пьяницами?\n\nКто-то должен с этим разобраться.||{{Отдых|arambold2|||||}{Торговать|S|||||}}|}; -{arambold2|Конечно друг, можешь поспать здесь.\n\nВыбирай любую кровать.||{{Спасибо, пока|X|||||}}|}; -{drunk1|Пей пей пей, пей еще больше.\nПей пей пей на пол меньше лей.\n\nЭй друг, давай к нам за стол, побухаем?||{{Нет, спасибо|X|||||}{Как-нибудь в другой раз.|X|||||}}|}; -{mara_default|Не обращайте внимания на этих пьяниц, они всегда вызывают проблемы.\n\nХотите перекусить?||{{Торговать|S|||||}}|}; -{mara1|||{{|mara_thanks|odair:100||||}{|mara_default|||||}}|}; -{mara_thanks|Я слышала вы помогли Одаиру очистить старые продовольственные пещеры. Спасибо большое, скоро мы начнем их использовать снова.||{{Всегда пожалуйста|mara_default|||||}}|}; -{farm1|Пожалуйста не беспокойте меня, я занят работой.||{{Брат|farm_andor|||||}}|}; -{farm2|Что?! Не видишь что я занят? Иди и побеспокой кого-нибудь еще.||{{Брат|farm_andor|||||}}|}; -{farm_andor|Эндор? Нет, я не видел его в последнее время.|||}; -{snakemaster|Ну и ну, кто тут такой? Посетитель, как мило. Я впечатлен, ты дошел до сюда через всех моих Фаворитов.\n\nТеперь приготовься к смерти, заморыш.||{{В бой!|F|||||}{Это мы еще посмотрим кто кого.|F|||||}{Пожалуйста, не трогай меня!|F|||||}}|}; -{haunt|О смертный, освободи меня из этого проклятого мира!||{{Оставить|F|||||}{Ты имеешь в виду, убить тебя?|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{tharal1|Сиянии Тени озаряет твой путь, сын мой.||{{Торговать|S|||||}{Костная мука|tharal_bonemeal_select|bonemeal:10||||}}|}; -{tharal_bonemeal_select|||{{|tharal_bonemeal4|bonemeal:30||||}{|tharal_bonemeal1|||||}}|}; -{tharal_bonemeal1|Костная мука? Мы не должны говорить об этом. Никто не должен. Приказ Лорда Геомира.||{{Ну пожаалуйста?|tharal_bonemeal2_1|||||}}|}; -{tharal_bonemeal2_1|Нет, мы в самом деле не должны говорить об этом.||{{Ой, ну расскажи|tharal_bonemeal2|||||}}|}; -{tharal_bonemeal2|Что же, если ты действительно хочешь это знать. Принеси мне 5 крыльев насекомых, которые я использую для создания зелья и может быть мы поговорим.|{{0|bonemeal|20|}}|{{Я сделал это|tharal_bonemeal3||insectwing|5|0|}{Хорошо|X|||||}}|}; -{tharal_bonemeal3|Спасибо парень. Я знал, что могу рассчитывать на тебя.|{{0|bonemeal|30|}}|{{N|tharal_bonemeal4|||||}}|}; -{tharal_bonemeal4|Ах да, Костная мука. Смешанная с правильными компонентами она может быть одним из наиболее эффективных исцеляющих средств.||{{N|tharal_bonemeal5|||||}}|}; -{tharal_bonemeal5|Раньше мы ее часто использовали. Но сейчас этот ублюдок, Лорд Геомир, запретил ее использование.||{{N|tharal_bonemeal6|||||}}|}; -{tharal_bonemeal6|Как я должен лечить людей сейчас? Использовать обычные лечебные зелья? Черт, это так не эффективно.||{{N|tharal_bonemeal7|||||}}|}; -{tharal_bonemeal7|Если ты заинтересован - я знаю, что кто-то до сих пор поставляет Костную муку. Иди и поговори с Форониром, священником в Фоллхейвене. Скажи ему пароль \"Сияние Тени\".||{{Спасибо, пока|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{gruil1|Псс, эй.\n\nХочешь торговать?||{{Торговать|S|||||}{Брат|gruil_select|andor:10||||}}|}; -{gruil_select|||{{|gruil_return|andor:30||||}{|gruil2|||||}}|}; -{gruil2|Твой брат? Ах, ты имеешь в виду Эндора? Я могу знать кое-что, но эта информация будет тебе дорого стоить. Принеси мне железу одной из ядовитых змей и, возможно, я тебе скажу.|{{0|andor|20|}}|{{Я принес|gruil_complete||gland|1|0|}{Хорошо, пока|X|||||}}|}; -{gruil_complete|Большое спасибо друг. Это очень хорошо.|{{0|andor|30|}}|{{N|gruil_andor1|||||}}|}; -{gruil_return|Слушай парень, я расскажу тебе.||{{N|gruil_andor1|||||}}|}; -{gruil_andor1|Я разговаривал с ним вчера. Он спросил, знаю ли я кого-то по имени Умар или нечто подобное. Я не имею понятия о ком он говорил.||{{N|gruil_andor2|||||}}|}; -{gruil_andor2|Казалось, он действительно чем-то расстроен и очень торопится. Что-то еще о Гильдии Воров в Фоллхейвене.||{{N|gruil_andor3|||||}}|}; -{gruil_andor3|Это все что я знаю. Может поспрашиваеш в Фоллхейвене. Найди моего друга Гаела, он, обычно, много чего знает.||{{Пока|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{leonid1|Привет пацан. Ты ведь сын Михаила, не так ли? У тебя еще есть брат.\n\nЯ Леонид, управляющий деревни Кроссглен.||{{Брат|leonid_andor|||||}{Кроссглен|leonid_crossglen|||||}{Пока|leonid_bye|||||}}|}; -{leonid_andor|Твоего брата? Нет, я не видел его сегодня. Кажется я видел его здесь вчера, он разговаривал с Груилом. Может он знает?|{{0|andor|10|}}|{{Спасибо|leonid_continue|||||}{Пока|leonid_bye|||||}}|}; -{leonid_continue|Могу я еще чем нибудь помочь?||{{Брат|leonid_andor|||||}{Кроссглен|leonid_crossglen|||||}{Пока|leonid_bye|||||}}|}; -{leonid_crossglen|Как ты знаешь, это деревня Кроссглен. Мы фермерская община.||{{N|leonid_crossglen1|||||}}|}; -{leonid_crossglen1|У нас есть Аудир, с его кузницей на юго-западе, хижина Леты и ее мужа на западе, эта ратуша и хижина твоего отца на северо-западе.||{{N|leonid_crossglen2|||||}}|}; -{leonid_crossglen2|Вот в принципе и всё. Мы стараемся жить мирно.||{{Последние события|leonid_crossglen3|||||}{Назад|leonid_continue|||||}}|}; -{leonid_crossglen3|Были некоторые беспорядки несколько недель назад, которые вы могли заметить. Некоторые жители участвовали в митинге против нового указа Лорда Геомира.||{{N|leonid_crossglen4|||||}}|}; -{leonid_crossglen4|Лорд Геомир выступил с заявлением о незаконном использовании Костной муки, как исцеляющего вещества. Некоторые жители утверждают, что мы должны выступить против слова Лорда Геомира и по-прежнему использовать ее сами.|{{0|bonemeal|10|}}|{{N|leonid_crossglen4_1|||||}}|}; -{leonid_crossglen4_1|Фарал, наш священник, особенно расстроился и предложил сделать что-то c Лордом Геомиром.||{{N|leonid_crossglen5|||||}}|}; -{leonid_crossglen5|Другие жители утверждают, что мы должны придерживаться желания Лорда Геомира желания.\n\nЛично я еще не решил на чьей я стороне.||{{N|leonid_crossglen6|||||}}|}; -{leonid_crossglen6|С одной стороны, Лорд Геомир поддерживает Долину Креста большим количеством охраны. *указывает на солдат в зале*||{{N|leonid_crossglen7|||||}}|}; -{leonid_crossglen7|Но, с другой стороны, налоги и жесткие правила, что разрешено, а что нет действительно сильно ударили по деревне.||{{N|leonid_crossglen8|||||}}|}; -{leonid_crossglen8|Кто-то должен идти к замку Геомира и поговорить с управляющим о нашей ситуации здесь, в Кроссглене.|{{0|crossglen|1|}}|{{N|leonid_crossglen9|||||}}|}; -{leonid_crossglen9|В то же время, мы запретили любое использование костной муки, как исцеляющего вещества.||{{Назад|leonid_continue|||||}{Пока|leonid_bye|||||}}|}; -{leonid_bye|Да прибудет с тобой Тень.||{{Выход|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{odair1|О, это ты. Ты один из братьев. Всегда вас путал.||{{N|odair_select|||||}}|}; -{odair_select|||{{|odair_complete2|odair:100||||}{|odair_continue|odair:10||||}{|odair2|||||}}|}; -{odair2|Хм, возможно ты будешь мне полезен. Сможешь помочь мне с небольшим делом, как ты думаешь?||{{Что за дело?|odair3|||||}{Пока|odair3|||||}}|}; -{odair3|Недавно я пошел к пещере *указывает на запад*, чтобы проверить, наши поставки. Но, пещера была зараженна крысами.||{{N|odair4|||||}}|}; -{odair4|В частности, я видел одну крысу, что была больше других. Как ты думаешь, сможешь помочь мне с моей задачей?||{{Конечно|odair5|||||}{Нет, извини|odair5|||||}{Нет уж, как-нибудь обойдусь|odair_cowards|||||}}|}; -{odair5|Ты должен войти в эту пещеру и убить большую крысу, таким образом, возможно, мы сможем остановить распространение крыс в пещере и начать использовать её снова, как наши пещеры поставок.|{{0|odair|10|}}|{{Хорошо|X|||||}{Ну уж нет|odair_cowards|||||}}|}; -{odair_cowards|Ничего удивительного. Ты и твой брат всегда были трусами.||{{Пока|X|||||}}|}; -{odair_continue|Ты убил большую крысу в пещере к западу отсюда?||{{Да|odair_complete||tail_caverat|1|0|}{Что?|odair5|||||}{Еще нет|odair_cowards|||||}}|}; -{odair_complete|Большое спасибо тебе за помощь парень! Может быть, ты и твой брат не столь трусливы, как я думал. Вот, возьми эти монеты за твою помощь.|{{0|odair|100|}{1|gold20||}}|{{Спасибо|X|||||}}|}; -{odair_complete2|Спасибо за помощь, ешё раз. Теперь мы можем начать использовать эти пещеры, как наши пещеры поставок снова.||{{Пока|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{jan_start_select|||{{|jan_complete2|jan:100||||}{|jan_return|jan:10||||}{|jan_default|||||}}|}; -{jan_default|Привет парень. Пожалуйста, оставь меня в моём трауре.||{{Что случилось?|jan_default2|||||}{Хорошо, пока|jan_default2|||||}{Ok, bye|X|||||}}|}; -{jan_default2|Ох, это так грустно. Я не хочу говорить об этом.||{{Расскажи|jan_default3|||||}{Хорошо, пока|X|||||}}|}; -{jan_default3|Что-же, я думаю можно сказать тебе. Ты кажешся неплохим парнем.||{{N|jan_default4|||||}}|}; -{jan_default4|Я, мой друг Гандир и его друг Ирогот пришли сюда копать эту яму. Мы слышали что там было скрыто сокровище.||{{N|jan_default5|||||}}|}; -{jan_default5|Мы начали копать и, наконец, прорвались к системе пещер. Вот тогда мы и обнаружили их. Тварей и жуков.||{{N|jan_default6|||||}}|}; -{jan_default6|Ах эти твари. Черт сволочи. Чуть не убили меня.\n\nЯ и Гандир сказали Ироготу, что мы должны прервать раскопки, пока мы еще целы.||{{N|jan_default7|||||}}|}; -{jan_default7|Но Ирогот хотел идти глубже, в подземелье. Он и Гандир не смогли договориться и начали драться.||{{N|jan_default8|||||}}|}; -{jan_default8|Вот что случилось.\n\n*рыдает*\n\nАх, что мы наделали?||{{Далее|jan_default9|||||}}|}; -{jan_default9|Ирогот убил Гандира собственными руками. Видел бы ты огонь в его глазах. Казалось, он наслаждался.||{{N|jan_default10|||||}}|}; -{jan_default10|Я бежал и не осмелился вернуться туда из-за тварей и Ирогота.||{{N|jan_default11|||||}}|}; -{jan_default11|Чертов Ирогот. Если бы только я мог добраться до него. Я бы показал ему где раки зимуют.||{{Далее|jan_default11_1|||||}}|}; -{jan_default11_1|Думаешь сможешь помочь мне?||{{Я помогу|jan_default12|||||}{Пока|jan_default12|||||}{No thanks, I would rather not be involved in this. It sounds dangerous.|X|||||}}|}; -{jan_default12|Правда? Думаешь сможешь? Хм, может быть. Остерегайся тех жуков, они очень крепкие ублюдки.|{{0|jan|10|}}|{{N|jan_default13|||||}}|}; -{jan_default13|Если ты и правда хочешь помочь, найди Ирогота в пещерах и верни мне кольцо Гандира.||{{Конечно|jan_default14|||||}{История|jan_background|||||}{Пока|X|||||}}|}; -{jan_default14|Возвращайся когда закончишь. Верни мне кольцо Гандира. Забери его у Ирогота в пещерах.||{{Хорошо, пока|X|||||}}|}; -{jan_return|Привет опять, парень. Ты нашел Ирогота в пещерах?||{{Еще нет|jan_default14|||||}{История|jan_background|||||}{Да|jan_complete||ring_gandir|1|0|}}|}; -{jan_background|Разве ты не слушал первый раз, когда я рассказывал тебе историю? Хочешь что бы я рассказал тебе её еще раз?||{{Да|jan_default3|||||}{Нет|jan_default4|||||}{Нет, не волнуйся, я все хорошо помню.|jan_default14|||||}}|}; -{jan_complete2|Спасибо за дело с Ироготом! Я твой вечный должник.||{{Пока|X|||||}}|}; -{jan_complete|Постой! Ведь ты вошел туда и вернулся живым? Как тебе это удалось? Ничего себе, я чуть не умер от страха собираясь к этой пещере.\n\nО, спасибо тебе большое за возвращение мне кольца Гандира! Теперь у меня есть хоть что-то на память о нем.|{{0|jan|100|}}|{{Пока|X|||||}{Да прибудет с тобой Тень. Прощай.|X|||||}{Как бы то ни было, я сделал это только для трофея.|X|||||}}|}; - -{irogotu|Ну привет тебе. Неизвестный авантюрист. Это МОЯ ПЕЩЕРА. Сокровище будет МОЁ!||{{Гандир|irogotu1|jan:10||||}}|}; -{irogotu1|Этот щенок Гандир? Он стоял у меня на пути. Я просто использовал его в качестве инструмента чтоб докопать до пещер.||{{N|irogotu2|||||}}|}; -{irogotu2|На самом деле я его никогда не любил.||{{Кольцо|irogotu3|||||}{Jan упоминала что-то про кольцо?|irogotu3|||||}}|}; -{irogotu3|НЕТ! Ты не получишь его. Оно мое! А что касается тебя, парень, зачем ты пришел сюда и беспокоишь меня?!||{{Колечко|irogotu4|||||}{Отдай мне это кольцо, и тогда, возможно, мы оба выйдем отсюда живыми.|irogotu4|||||}}|}; -{irogotu4|Нет. Если оно тебе так нужно попробуй забрать его силой, но я должен предупредить тебя - я очень силен. По этому я бы не советовал тебе тягаться со мной.||{{В бой!|F|||||}{Уйти|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fallhaven_citizen1|Эй, привет. Хорошая погода, не так ли?||{{Брат|fallhaven_andor_1|||||}}|}; -{fallhaven_citizen2|Здрасть. Ты что-то хотел?||{{Брат|fallhaven_andor_2|||||}}|}; -{fallhaven_citizen3|Прив. Чем могу помочь?||{{Брат|fallhaven_andor_3|||||}}|}; -{fallhaven_citizen4|Ты, парень, из деревни Кроссглен, так?||{{Брат|fallhaven_andor_4|||||}}|}; -{fallhaven_citizen5|Прочь с дороги, крестьянин.|||}; -{fallhaven_citizen6|Доброго дня вам.||{{Брат|fallhaven_andor_6|||||}}|}; -{fallhaven_andor_1|Нет, прости. я никого не видел в округе.|||}; -{fallhaven_andor_2|Еще один пацан говоришь? Хм, дай подумать.||{{N|fallhaven_andor_1|||||}}|}; -{fallhaven_andor_3|Хм, я видел кого-то несколько дней назад. Но не могу вспомнить точно.|||}; -{fallhaven_andor_4|Ах да, еще один парень из Кроссглена был здесь несколько дней назад. Не уверен что он подходит под описание.||{{N|fallhaven_andor_4_1|||||}}|}; -{fallhaven_andor_4_1|За ним следили какие-то темные люди. Больше ничего не видел.|||}; -{fallhaven_andor_6|Неа. Не видел.|||}; -{fallhaven_guard|Держись по дальше от проблем.|||}; -{fallhaven_priest|Да прибудет с тобой Тень.||{{Тень|priest_shadow_1|||||}}|}; - -{priest_shadow_1|Тень защищает нас. Тень оберегает нас когда мы спим.||{{N|priest_shadow_2|||||}}|}; -{priest_shadow_2|Она следует за нами куда бы мы не шли. Следуй с Тенью, сын мой.||{{Пока|X|||||}{Все, до свидания|X|||||}}|}; - -{rigmor|Ну привет! Маленький уродец.||{{Брат|rigmor_1|||||}{Пока|rigmor_leave_select|||||}}|}; -{rigmor_1|Говоришь твой брат? Его зовут Эндор? Нет. Не встречала никого похожего.||{{Пока|rigmor_leave_select|||||}}|}; -{rigmor_leave_select|||{{|rigmor_thanks|calomyran:100||||}{|X|||||}}|}; -{rigmor_thanks|Я слышала, что вы помогли моему старику найди его книгу, спасибо. Он говорил об этой книге несколько недель. Бедняжка, у него тенденция забывать вещи.||{{Пока|X|||||}{Не спускай с него глаз или с ним может случиться что-нибудь плохое.|X|||||}{Все, что я сделал, я сделал только ради денег.|X|||||}}|}; - -{fallhaven_clothes|Приветствую в моём магазине. Пожалуйста оцени богатый выбор одежды и ювелирных изделий.||{{Торговать|S|||||}}|}; -{fallhaven_potions|Добро пожаловать в мой магазин. У меня широкий выбор зелий на все случаи жизни.||{{Торговать|S|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bucus_welcome|Приветствую снова, добро пожаловать в... Ой погоди, я принял тебя за другово.||{{Брат|bucus_andor_select|||||}{Гильдия Воров|bucus_thieves_select|||||}}|}; -{bucus_andor_select|||{{|bucus_umar_1|bucus:100||||}{|bucus_andor_no_1|||||}}|}; -{bucus_andor_no_1|Интересный, вопрос. И что если видел? Почему я должен говорить тебе?||{{N|bucus_andor_no_2|||||}}|}; -{bucus_andor_no_2|Нет, я не скажу тебе. Пожалуйста, отвали.|||}; -{bucus_thieves_select|||{{|bucus_thieves_complete_3|bucus:100||||}{|bucus_thieves_continue|bucus:10||||}{|bucus_thieves_select2|||||}}|}; -{bucus_thieves_select2|||{{|bucus_thieves_1|andor:40||||}{|bucus_thieves_no|||||}}|}; -{bucus_thieves_no|Фх, что? Нет, я незнаю ничего об этом.|||}; -{bucus_umar_1|Хорошо парень. Ты заслужил мое уважение. Да, я видел парня подходящего под описание, он пробегал здесь пару дней назад.||{{N|bucus_umar_2|||||}}|}; -{bucus_umar_2|Я незнаю сколько он здесь пробыл. Но задавал он слишком много вопросов. Прям как ты. *хихикает*||{{N|bucus_umar_3|||||}}|}; -{bucus_umar_3|В любом случае, это все что я знаю. Тебе стоит поговорить с Умаром, возможно он знает больше. Он в люке, спускайся.|{{0|andor|50|}}|{{Хорошо, пока|X|||||}}|}; -{bucus_thieves_1|Кто тебе это сказал? Аррргх.\n\nЛадно, ты нашел нас. И что теперь?||{{Вступить|bucus_thieves_2|||||}}|}; -{bucus_thieves_2|Хах! Вступить в гильдию воров?! Ты?!\n\nТы забавный парень.||{{Я серьезно!|bucus_thieves_3|||||}{Пока|bucus_thieves_3|||||}}|}; -{bucus_thieves_3|Ладно, вот что я скажу тебе, парень. Выполни мое поручение и, возможно, я расскажу тебе больше.||{{Поручение?|bucus_thieves_4|||||}{Пока|bucus_thieves_4|||||}}|}; -{bucus_thieves_4|Принеси мне ключ Лютора и тогда поговорим. Я ничего незнаю об этом ключе, но ходят слухи, что он находится где-то в катакомбах под Фоллхейвенской церковью.|{{0|bucus|10|}}|{{Хорошо|X|||||}}|}; -{bucus_thieves_continue|Как продвигаются поиски ключа Лютора?||{{Расскажи еще раз|bucus_thieves_4|||||}{Я нашел его|bucus_thieves_complete_1||key_luthor|1|0|}{Пока|X|||||}}|}; -{bucus_thieves_complete_1|Здорово, ты и в правду достал ключ Лютора? Я не думал что тебе это по силам.|{{0|bucus|100|}}|{{N|bucus_thieves_complete_2|||||}}|}; -{bucus_thieves_complete_2|Ну что же парень.||{{N|bucus_thieves_complete_3|||||}}|}; -{bucus_thieves_complete_3|Давай поговорим. Что ты хочешь узнать?||{{Брат|bucus_umar_1|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fallhaven_drunk|Нет проблем. Нет сееерр! Не причиняю больше никаких проблем. Я сижу здесь, снаружи.||{{N|fallhaven_drunk_2|||||}}|}; -{fallhaven_drunk_2|Подожди, кто ты такой? Ты из стражи?||{{Да|fallhaven_drunk_3_1|||||}{Нет|fallhaven_drunk_3_2|||||}}|}; -{fallhaven_drunk_3_1|Ой, сэр. Я не причиняю больше проблем, видите? Сижу снаружи, как вы и сказали, хорошо?||{{N|fallhaven_drunk_4|||||}}|}; -{fallhaven_drunk_3_2|Уфф, хорошо. Этот стражник вышвырнул меня из таверны. Если я его снова встречу, я покажу ему кузькину мать.||{{N|fallhaven_drunk_4|||||}}|}; -{fallhaven_drunk_4|Бухать, бухать, бухать с утра до ночи. Бухать, бухать .. Что, опять?||{{N|fallhaven_drunk_5|||||}}|}; -{fallhaven_drunk_5|Ты что-то сказал? Ик... Где был? Ик.. Да, мы были в этом подземелье.||{{N|fallhaven_drunk_6|||||}}|}; -{fallhaven_drunk_6|Или это был дом? Ик... Я не помню.||{{N|fallhaven_drunk_7|||||}}|}; -{fallhaven_drunk_7|Нет нет, это было снаружи! Теперь я вспомнил.||{{N|fallhaven_drunk_7_select|||||}}|}; -{fallhaven_drunk_7_select|||{{|fallhaven_drunk_11|fallhavendrunk:100||||}{|fallhaven_drunk_8|||||}}|}; -{fallhaven_drunk_8|Вот где мы..\n\nЭй, куда делся мой эль? Достанешь его для меня?||{{Да|fallhaven_drunk_9_1|||||}{Нет|fallhaven_drunk_9_2|||||}}|}; -{fallhaven_drunk_9_1|Верни мне его! Или иди и купи другой.|{{0|fallhavendrunk|10|}}|{{Вот твой эль|fallhaven_drunk_10||mead|1|0|}{Пока|X|||||}{Нет. Пожалуй, я не стану тебе помогать. Пока.|X|||||}}|}; -{fallhaven_drunk_9_2|Я должен его выпить. Можешь принести еще один?|{{0|fallhavendrunk|10|}}|{{Вот, держи|fallhaven_drunk_10||mead|1|0|}{Пока|X|||||}{Нет. Пожалуй, я не стану тебе помогать. Пока.|X|||||}}|}; -{fallhaven_drunk_10|О светлый напиток радости. Да прибудет ссс т-тобой теень парень. *делает большие глаза*||{{N|fallhaven_drunk_11|||||}}|}; -{fallhaven_drunk_11|*делает большой глоток эля*\n\nЭто божественно!||{{N|fallhaven_drunk_12|||||}}|}; -{fallhaven_drunk_12|Да, я и Унмир видели хорошие времена. Иди спроси его сам, он, как правило, в амбаре на востоке отсюда. Интересно, где сейчас эти сокровища.|{{0|fallhavendrunk|100|}}|{{Пока|X|||||}{Спасибо за историю. До свидания.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fallhaven_oldman|||{{|fallhaven_oldman_complete_2|calomyran:100||||}{|fallhaven_oldman_continue|calomyran:10||||}{|fallhaven_oldman_1|||||}}|}; -{fallhaven_oldman_1|Не могли бы вы помочь старому человеку?||{{Конечно|fallhaven_oldman_2|||||}{Пока|fallhaven_oldman_2|||||}{Нет, я не хочу помогать старикам вроде тебя. Пока.|X|||||}}|}; -{fallhaven_oldman_2|Я потерял очень важную, для меня, книгу.||{{N|fallhaven_oldman_3|||||}}|}; -{fallhaven_oldman_3|Я носил ее вчера с собой. А теперь не могу найти.||{{N|fallhaven_oldman_4|||||}}|}; -{fallhaven_oldman_4|Я никогда не теряю вещи! Я думаю ее кто-то украл у меня.||{{N|fallhaven_oldman_5|||||}}|}; -{fallhaven_oldman_5|Не могли бы вы поискать её? Она называется \"Секреты Каломирана\".||{{N|fallhaven_oldman_6|||||}}|}; -{fallhaven_oldman_6|Я не представляю где она может быть. Вам следует поговорить с Арсиром, он, кажется, очень любит книги. *указывает на дом на юге*|{{0|calomyran|10|}}|{{Пока|X|||||}}|}; -{fallhaven_oldman_continue|Как продвигаются поиски моей книги? Она называется \"Секреты Каломирана\". Ты нашел ее?||{{Да|fallhaven_oldman_complete||calomyran_secrets|1|0|}{Нет|fallhaven_oldman_6|||||}{Книга?|fallhaven_oldman_2|||||}}|}; -{fallhaven_oldman_complete|Моя книга! Спасибо тебе, спасибо! Где она была? Нет, не говори мне. Вот, возми несколько монет за беспокойство.|{{0|calomyran|100|}{1|gold51||}}|{{Пока|X|||||}{ Наконец, немного золота. До свидания.|X|||||}}|}; -{fallhaven_oldman_complete_2|Спасибо тебе большое за возвращение моей книги!|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{nocmar|Привет. Я Нокмар.||{{Торговать|nocmar_trade_select|||||}{Унмир|nocmar_quest_select|nocmar:10||||}{Пока|X|||||}}|}; -{nocmar_quest_select|||{{|nocmar_complete_5|nocmar:200||||}{|nocmar_continue|nocmar:20||||}{|nocmar_quest|||||}}|}; -{nocmar_trade_select|||{{|S|nocmar:200||||}{|nocmar_trade_1|||||}}|}; -{nocmar_trade_1|Мне нечем торговать. Раньше у меня было много вещей на продажу, но в настоящее время мне не позволено продавать что-либо.||{{N|nocmar_trade_2|||||}}|}; -{nocmar_trade_2|Я был одним из лучших кузнецов в Фоллхейвене. Затем этот ублюдок Лорд Геомир запретил мне использовать Сердечную сталь.||{{N|nocmar_trade_3|||||}}|}; -{nocmar_trade_3|По его приказу, никому в Фоллхейвене не разрешается иметь оружие из сердечной стали. А так же продавать его.||{{N|nocmar_trade_4|||||}}|}; -{nocmar_trade_4|Теперь я вынужден прятать то оружие, что у меня осталось. И не осмеливаюсь продать его кому-либо.||{{N|nocmar_trade_4_1|||||}}|}; -{nocmar_trade_4_1|Я не видел сияния сердечной стали уже несколько лет, со времен указа Лорда Геомира.||{{N|nocmar_trade_5|||||}}|}; -{nocmar_trade_5|Так что, к сожалению, я не могу продать вам ни одно из моих оружий.|||}; -{nocmar_quest|Тебя послал Унмир? Я думаю, это должно быть важно.|{{0|nocmar|20|}}|{{N|nocmar_quest_1|||||}}|}; -{nocmar_quest_1|Хорошо, это старое оружие потеряло внутреннее свечение, ведь оно не использовалось долгое время.||{{N|nocmar_quest_2|||||}}|}; -{nocmar_quest_2|Что бы заставить его снова сиять нам нужен сердечный камень.||{{N|nocmar_quest_3|||||}}|}; -{nocmar_quest_3|Годами мы бились с личами из Подземья. Я не представляю где сейчас на них охотятся.||{{Подземье?|nocmar_quest_4|||||}}|}; -{nocmar_quest_4|Подземье: пристанице потерянных душ. Отправляйся на юг в пещеры Гномов. Следуй на ужасный запах.||{{N|nocmar_quest_5|||||}}|}; -{nocmar_quest_5|Опасайся Личей в Подземье, если они еще там. Эти твари могут убить итебя одним своим запахом.|||}; -{nocmar_continue|Ты нашел Сердечный камень?||{{Да|nocmar_complete||heartstone|1|0|}{Камень?|nocmar_quest_1|||||}{Еще нет|nocmar_continue_2|||||}}|}; -{nocmar_continue_2|Пожалуйста, продолжайте искать. Унмир, должно быть, планирует что-то важное для тебя.|||}; -{nocmar_complete|О Тени! Ты и в правду добыл сердечный камень. Я и не думал что доживу до дня, когда снова смогу увидеть его.|{{0|nocmar|200|}}|{{N|nocmar_complete_2|||||}}|}; -{nocmar_complete_2|Видишь сияние? Оно буквально пульсирует.||{{N|nocmar_complete_3|||||}}|}; -{nocmar_complete_3|Быстрее. Заставим оружие снова сиять.||{{N|nocmar_complete_4|||||}}|}; -{nocmar_complete_4|*Нокмар кладет сердечный камень среди оружия из сердечной стали*||{{N|nocmar_complete_5|||||}}|}; -{nocmar_complete_5|Ты видишь это? Сердечная сталь снова сияет.||{{Торговать|S|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bela|Добро пожаловать в таверну Фоллхейвена. Присаживайтесь за любой столик.||{{Торговать|S|||||}{Комната|bela_room_select|||||}}|}; -{bela_room_1|Комната стоит 10 золотых в сутки.||{{Я беру|bela_room_2||gold|10|0|}{Назад|bela|||||}}|}; -{bela_room_2|Спасибо. Ваша комната последняя по коридору.|{{0|fallhaventavern|10|}}|{{Назад|bela|||||}{Пока|X|||||}}|}; -{bela_room_3|Я надеюсь комната вас устроит. Это последняя комната по коридору.||{{Назад|bela|||||}{Пока|X|||||}}|}; -{bela_room_select|||{{|bela_room_3|fallhaventavern:10||||}{|bela_room_1|||||}}|}; -{ganos|YТы мне кого-то напоминаешь.||{{Торговать|S|||||}{Гильдия Воров|ganos_1|andor:30||||}}|}; -{ganos_1|Гильдия воров? Откуда мне знать? По-твоему я похож на вора?! Хрррф.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{arcir_start|Здравствуйте. Я Арсир.||{{Элифара|arcir_elythara_1|arcir:10||||}{Книги|arcir_books_1|||||}}|}; -{arcir_anythingelse|Хотите узнать еще что нибудь?||{{Элифара|arcir_elythara_1|arcir:10||||}{Книги|arcir_books_1|||||}}|}; -{arcir_elythara_1|Вы, думаю, видели статую в подвале?\n\nДа, Элифара мой защитник.||{{Назад|arcir_anythingelse|||||}}|}; -{arcir_books_1|Я нахожу море удовольствия в своих книгах. В них накоплены знания многих поколений.||{{Секреты Каломирана|arcir_calomyran_select|calomyran:10||||}{Назад|arcir_anythingelse|||||}}|}; -{arcir_calomyran_1|\"Секреты Каломирана\"? Хм, да, я думаю, у меня есть одна в подвале.||{{N|arcir_calomyran_2|||||}}|}; -{arcir_calomyran_2|Старик Бенрадас приходил ко мне на прошлой неделе, хотел продать мне эту книгу. Поскольку это не совсем мой тип книги - я отказался.||{{N|arcir_calomyran_3|||||}}|}; -{arcir_calomyran_3|Казалось, он расстроен тем, что мне не нравится его книга, и бросил ее в меня, когда выскочил из дома.||{{N|arcir_calomyran_4|||||}}|}; -{arcir_calomyran_4|Бедный Бенрадас, он, вероятно, забыл, что оставил ее здесь. Он имеет тенденцию забывать вещи.||{{N|arcir_anythingelse|||||}}|}; -{arcir_calomyran_5|Ты спускался вниз, но не нашел ее? Говоришь записка? Я думаю кто-то был в моем доме.||{{N|arcir_calomyran_6|||||}}|}; -{arcir_calomyran_select|||{{|arcir_calomyran_complete|calomyran:100||||}{|arcir_calomyran_5|calomyran:20||||}{|arcir_calomyran_1|||||}}|}; -{arcir_calomyran_complete|Я слышал, ты нашел ее и отдал обратно старику Бенрадасу. Спасибо. Он имеет тенденцию забывать вещи.||{{N|arcir_anythingelse|||||}}|}; -{arcir_calomyran_6|Что сказано в записке?\n\nЛаркал.. Я так и знал. Вечно от него проблемы. Он, обычно, в амбаре на востоке от сюда.||{{Спасибо, пока|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{chapelgoer|Тень, обними меня.|||}; -{thoronir_default|Грейся в Тени, сын мой.||{{Тень|thoronir_shadow_1|||||}{Церковь|thoronir_church_1|||||}{Торговать|thoronir_trade_bonemeal|bonemeal:100||||}}|}; -{thoronir_shadow_1|Тень оберегает нас от опасностей ночи. Она бережет наш покой, пока мы спим.||{{Сияние Тени|thoronir_tharal_select|bonemeal:30||||}{Назад|thoronir_default|||||}{Пока|thoronir_default|||||}}|}; -{thoronir_church_1|Это наша часовня богослужения в Фоллхейвене. Все общины обращаются к нам за поддержкой.||{{N|thoronir_church_2|||||}}|}; -{thoronir_church_2|Эта церковь стоит уже сотни лет, и была сохранена в безопасности от расхитителей могил.||{{N|thoronir_church_3|||||}}|}; -{thoronir_tharal_select|||{{|thoronir_trade_bonemeal|bonemeal:100||||}{|thoronir_tharal_1|||||}}|}; -{thoronir_tharal_1|Сияние Тени с нами, сын мой. Это мой старый друг Фарал из Кроссглена тебя послал?||{{Далее|thoronir_tharal_2|||||}}|}; -{thoronir_church_3|Катакомбы под церковью это последнее пристанище великих лидеров прошлого. Наш великий Лютор, по слухам, тоже там похоронен.||{{Войти|thoronir_church_4|bucus:10||||}{Назад|thoronir_default|||||}}|}; -{thoronir_church_4|Никому не дозволено входить в катакомбы, за исключением Афамира, моего ученика. Он единственный, кто был там за последние годы.|{{0|bucus|20|}}|{{Назад|thoronir_default|||||}}|}; -{thoronir_tharal_2|Шшшшш, мы не должны говорить громко о Костной муке. Как ты знаешь, Лорд Геомир наложил запрет на ее использование.||{{N|thoronir_tharal_3|||||}}|}; -{thoronir_tharal_3|Когда запрет пришел, я не посмел сохранить ни чего, так что я выбросил все. Довольно глупый поступок, когда я оглядываюсь на него.||{{N|thoronir_tharal_4|||||}}|}; -{thoronir_tharal_4|Как думаешь, смог бы ты найти мне 5 костей скелета, которые я смогу использовать для смешивания зелья из Костной муки? Костная мука является очень мощным средством в исцелении старых ран.||{{Конечно|thoronir_tharal_5|||||}{Готово!|thoronir_tharal_complete||bone|5|0|}}|}; -{thoronir_tharal_5|Спасибо тебе, возвращайся скорее. Я слышал, что некоторая нежить водится возле старого заброшенного дома, к северу от Фоллхейвена. Может быть, ты сможешь найти кости там?|{{0|bonemeal|40|}}|{{Назад|thoronir_default|||||}}|}; -{thoronir_tharal_complete|Спасибо тебе, эти кости великолепны. Теперь я могу приступить к изготовлению зелья для тебя.|{{0|bonemeal|100|}}|{{N|thoronir_complete_2|||||}}|}; -{thoronir_complete_2|Дай мне некоторое время на приготовление. Это очень мощное лечебное зелье.|||}; -{thoronir_trade_bonemeal|Зелье из Костной муки готово. Пожалуйста, используйте его с осторожностью, и не позволяйте охранникам заметить вас. Нам, на самом деле, не разрешено использовать его.||{{Торговать|S|||||}{Назад|thoronir_default|||||}}|}; -{catacombguard|Возвратись, пока еще можешь, смертный. Это не место для тебя. Здесь тебя ждет только смерть.||{{Уйти|X|||||}{Продолжить|catacombguard1|||||}{ С Тенью, ты не остановишь меня.|catacombguard1|||||}}|}; -{catacombguard1|Нееет, ты не сможешь пройти!||{{В бой!|F|||||}}|}; -{luthor|*хисссс* Что за смертный осмелился потревожить мой сон?||{{В бой!|F|||||}{Наконец, достойный бой! Я ждал этого.|F|||||}{Что ж, давай покончим с этим.|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{athamyr|Следуй с Тенью.||{{Катакомбы|athamyr_select|bucus:20||||}}|}; -{athamyr_1|Да, я спускался в катакомбы под церковью.||{{N|athamyr_2|||||}}|}; -{athamyr_2|Но я единственный, кто имеет право и мужество, чтобы войти туда.||{{Право?|athamyr_3|||||}}|}; -{athamyr_3|Хочешь спуститься в катакомбы? Хм, возможно мы сможем договориться.||{{N|athamyr_4|||||}}|}; -{athamyr_4|Принеси мне того, прекрасно приготовленного, мяса из таверны и ты получишь свое разрешение на вход в катакомбы под церковью.|{{0|bucus|30|}}|{{Вот твое мясо|athamyr_complete||meat_cooked|1|0|}{Пока|X|||||}}|}; -{athamyr_complete_2|Спасибо за помощь. Я разрешаю тебе спуститься в катакомбы под Церковью.|{{0|bucus|50|}}||}; -{athamyr_select|||{{|athamyr_complete_2|bucus:40||||}{|athamyr_1|||||}}|}; -{athamyr_complete|Спасибо, это будет приятно.|{{0|bucus|40|}}|{{N|athamyr_complete_2|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{larcal|У меня нет на тебя времени ,парень. Исчезни.||{{Секреты Каломирана|larcal_1|calomyran:20||||}}|}; -{larcal_1|Ну и ну, что тут у нас? Ты намекаешь, что я был в подвале Арсира?||{{N|larcal_2|||||}}|}; -{larcal_2|Что же, может и был. Но книга все равно моя.||{{N|larcal_3|||||}}|}; -{larcal_3|Послушай, давай решим все мирно. Ты уходишь и забываешь об этой книге, и тогда ты еще поживешь.||{{Уйти|larcal_4|||||}{Нет|larcal_5|||||}}|}; -{larcal_4|Хороший мальчик. А теперь проваливай.|||}; -{larcal_5|Слушай, ты начинаешь раздражать меня пацан. Проваливай пока это еще возможно.||{{Уйти|X|||||}{Только с книгой|larcal_6|||||}}|}; -{larcal_6|Ты все еще здесь? Хорошо, если тебе так нужна эта книга, то попробуй забрать ее у меня!||{{В бой!|F|||||}{Уйти|F|||||}{ Очень хорошо. Я уйду.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{unnmir|||{ - {|unnmir_r|nocmar:10||||} - {|unnmir_0|||||} - }|}; -{unnmir_r|Hello again. You should go talk to Nocmar.||{{N|unnmir_13|||||}}|}; -{unnmir_0|Эй, привет!||{{История пьяницы|unnmir_1|fallhavendrunk:100||||}}|}; -{unnmir_1|Этот старый пьянчуга у таверны рассказал тебе историю, не так ли?||{{N|unnmir_2|||||}}|}; -{unnmir_2|Это старая история. Мы путешествовали вместе несколько лет назад.||{{N|unnmir_3|||||}}|}; -{unnmir_3|Это были настоящие приключения, мечи и магия.||{{N|unnmir_4|||||}}|}; -{unnmir_4|Но мы перестали. Незнаю почему, возможно мы просто устали от жизни в пути. Мы осели здесь, в Фоллхейвене.||{{N|unnmir_5|||||}}|}; -{unnmir_5|Приятный маленьки городок. Только вот много воров вокруг, но меня они не беспокоят.||{{N|unnmir_6|||||}}|}; -{unnmir_6|Ну, а какова твоя история, парень? Что ты забыл в Фоллхейвене?||{{Брат|unnmir_7|||||}}|}; -{unnmir_7|Да да, я видел его. Твой брат, наверно, спустился в какое-нибудь подземелье в поисках приключений. *закатыват глаза*||{{N|unnmir_8|||||}}|}; -{unnmir_8|Или отправился в один из больших городов на севере.||{{N|unnmir_9|||||}}|}; -{unnmir_9|Не могу сказать, что я виню его за желание увидеть мир.||{{N|unnmir_10|||||}}|}; -{unnmir_10|Эй, постой, ты тоже ищешь приключений?||{{Да|unnmir_11|||||}{Нет, не ищу|unnmir_12|||||}}|}; -{unnmir_11|Мило. Я намекну тебе. *хихикает*. Найди Нокмара в западной части города. Скажи что я прислал тебя.|{{0|nocmar|10|}}|{{N|unnmir_13|||||}}|}; -{unnmir_12|Умный выбор. Приключения оставляют много шрамов. Ты понимаешь о чем я.|||}; -{unnmir_13|Его дом юго-западней таверны.||{{Пасиб|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{gaela|||{ - {|gaela_r|andor:40||||} - {|gaela_0|||||} - }|}; -{gaela_r| Здравствуйте еще раз. Я надеюсь, что вы найдете то, что ищете.|||}; -{gaela_0|Свифт - мой клинок. Отравленный моим языком. Или это было наоборот?||{{Воры|gaela_1|||||}}|}; -{gaela_1|Да, мы воры, имеем сильное влияние в Фоллхейвене.||{{Далее|gaela_2|andor:30||||}}|}; -{gaela_2|Я слышал, что ты помог Груилу, представителю гильдии в Кроссглене.||{{N|gaela_3|||||}}|}; -{gaela_3|Так же я слышал, что ты ищешь кого-то. Я мог бы тебе помочь.||{{N|gaela_4|||||}}|}; -{gaela_4|Тебе нужно поговорить с Букусом в заброшенном доме немного юго-западней от сюда. Скажи ему ты хочешь узнать больше о Гильдии Воров.|{{0|andor|40|}}|{{Пасиб|gaela_5|||||}}|}; -{gaela_5|Считай, что это сделано в обмен твою на помощь Груилу.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{vacor|||{{|vacor_return_complete0|vacor:60||||}{|vacor_return2|vacor:40||||}{|vacor_42|vacor:30||||}{|vacor_select1|||||}}|}; -{vacor_select1|||{{|vacor_return1|vacor:20||||}{|vacor_begin|||||}}|}; -{vacor_begin|Привет.||{{N|vacor_2|||||}}|}; -{vacor_2|Юный авантюрист? Хм. Возможно ты будешь мне полезен.||{{N|vacor_3|||||}}|}; -{vacor_3|Готов ли ты помочь мне?||{{Конечно|vacor_4|||||}{Нет|vacor_bah|||||}}|}; -{vacor_bah|Черт, жалкое существо. Я знал, что не стоит тебя просить. А теперь оставь меня.|||}; -{vacor_4|Долгое время, я работал над Заклинанием разрыва и много читал об этом.||{{N|vacor_5|||||}}|}; -{vacor_5|Заклинание могло открыть, так сказать, новые возможности.||{{N|vacor_6|||||}}|}; -{vacor_6|Эм, да, Заклинание разрыва открывает кое-что. Гм.||{{N|vacor_7|||||}}|}; -{vacor_7|Так что я усердно работал над получением последней части для него.||{{N|vacor_8|||||}}|}; -{vacor_8|Потом вдруг, банда головорезов пришла сюда и начала запугивать меня.||{{N|vacor_9|||||}}|}; -{vacor_9|Они сказали, что они посланники Тени, и настаивали, что бы я прекратил работу над заклинанием.||{{N|vacor_10|||||}}|}; -{vacor_10|Нелепо, не правда ли? Я был настолько близок к получению силы!||{{N|vacor_11|||||}}|}; -{vacor_11|О, я мог бы быть сильным. Мое дорогое Заклинание.|{{0|vacor|10|}}|{{N|vacor_12|||||}}|}; -{vacor_12|В любом случае, я как раз собирался закончить последнюю часть моего Заклинаниея разрыва, когда бандиты пришли и ограбили меня.||{{N|vacor_13|||||}}|}; -{vacor_13|Бандиты взяли мой рецепт для заклинания и скрылись, прежде чем я успел позвать стражу.||{{N|vacor_14|||||}}|}; -{vacor_14|Теперь я не могу вспомнить, последнюю его часть.||{{N|vacor_15|||||}}|}; -{vacor_15|Как вы думаете, могли бы помочь мне найти его? Тогда бы я наконец-то получил бы силу!||{{N|vacor_16|||||}}|}; -{vacor_16|Вы, конечно же, будете соответствующим образом вознаграждены.||{{Я помогу|vacor_17|||||}{Думаю нет|vacor_17|||||}{Нет, спасибо, это похоже то, с чем бы я предпочел не связываться.|vacor_bah|||||}}|}; -{vacor_17|Я знал, что не стоило довер... Подождите, что? На самом деле вы сказали \"да\"? Ха, ну и ну.||{{N|vacor_18|||||}}|}; -{vacor_18|Хорошо, найди четыре части моего Заклинания разрыва, что украли бандиты, и принеси их ко мне.|{{0|vacor|20|}}|{{N|vacor_19|||||}}|}; -{vacor_19|Было четверо бандитов, и все они направились на юг от Фоллхейвена, после того как на меня напали.||{{N|vacor_20|||||}}|}; -{vacor_20|Вы должны отыскать четырех бандитов южнее Фоллхейвена.||{{N|vacor_21|||||}}|}; -{vacor_21|Пожалуйста поторопитесь! Мне так хочется открыть раскол .. Эм, я подразумеваю закончить заклинание. Ничего странного в этом, правда?|||}; -{vacor_return1|Снова здравствуйте. Как продвигаются поиски частей моего Заклинания разрыва?||{{Готово|vacor_40||vacor_spell|4|0|}{Частей?|vacor_18|||||}{Пока|vacor_4|||||}}|}; -{vacor_40|О, ты нашел все части? Скорее, Дай их мне.|{{0|vacor|30|}}|{{N|vacor_41|||||}}|}; -{vacor_41|Да, это те самые, украденные, части.||{{N|vacor_42|||||}}|}; -{vacor_42|Теперь я должен закончить заклинание и открыть Теневой разлом .. эмм я имел в виду новые возможности. Да, именно это я и сказал.||{{N|vacor_43|||||}}|}; -{vacor_43|Есть одна проблемма, перед тем как я смогу продолжить работу над заклинанием, это мой глупый помошник Унзел.||{{N|vacor_44|||||}}|}; -{vacor_44|Унзел поступил ко мне в ученики уже очень давно. Но он начал меня раздражать своими вопросами и разговорами о морали.||{{N|vacor_45|||||}}|}; -{vacor_45|Он говорит что мое занятие заклинаниями нарушает волю Тени.||{{N|vacor_46|||||}}|}; -{vacor_46|Хах, Тень. Какую пользу мы когда-либо имели от Тени?||{{N|vacor_47|||||}}|}; -{vacor_47|Я однажды закончу Заклинание разрыва и мы будем избавлены от Тени.||{{N|vacor_48|||||}}|}; -{vacor_48|В любом случае. Я чую что это Унзел натравил на меня тех бандитов, и если его не остановить возможны и другие проблеммы.||{{N|vacor_49|||||}}|}; -{vacor_49|Я хочу что бы ты нашел Унзела и убил его для меня. Возможно он сейчас где-то на юго-западе от Фоллхейвена.|{{0|vacor|40|}}|{{N|vacor_50|||||}}|}; -{vacor_50|Принеси мне его перстень в качестве доказательства, что ты убил его.||{{N|vacor_51|||||}}|}; -{vacor_51|А теперь торопись, я не могу долго ждать. Сила должна быть МОЕЙ!|||}; -{vacor_return2|Снова здравствуйте. Как продвигается наше дело?||{{Унзел|vacor_return2_2|||||}{Дело?|vacor_43|||||}}|}; -{vacor_return2_2|Ты убил Унзела? Принеси мне его перстень, когда убьешь.||{{Убил|vacor_60||ring_unzel|1|0|}{Shadow|vacor_70|vacor:51||||}}|}; -{vacor_60|Уха-ха, Унзел мертв! Это исчадье морали!|{{0|vacor|60|}}|{{N|vacor_61|||||}}|}; -{vacor_61|Я вижу кровь на твоих сапогах. Я надеюсь что ты убил и его приспешников.||{{N|vacor_62|||||}}|}; -{vacor_62|Это замечательный день. Скоро я получу силу!||{{N|vacor_63|||||}}|}; -{vacor_63|Вот, возми эти монеты за твою помощь.|{{1|gold200||}}|{{N|vacor_64|||||}}|}; -{vacor_64|А теперь оставь меня, я должен подготовиться к созданию заклинания.|||}; -{vacor_return_complete0|||{ - {|vacor_msg_16|kaverin:90||||} - {|vacor_msg_9|kaverin:75||||} - {|vacor_msg1|kaverin:60|kaverin_message|1|1|} - {|vacor_return_complete|||||} - }|}; -{vacor_return_complete|Снова здравствуй, мой ассасин. Скоро я закончу свое Заклинание разрыва.|||}; -{vacor_70|Что? Он поведал тебе историю? И ты конечно же поверил ему?||{{N|vacor_71|||||}}|}; -{vacor_71|Я даю тебе один шанс. Или ты убиваешь Унзела и получаешь свои деньги. Или ты будешь иметь честь познать мою силу!||{{В бой!|vacor_72|||||}{Уйти|X|||||}}|}; -{vacor_72|Ха, ничтожное создание. Я знал, что не стоит доверять тебе. Теперь ты умрешь вместе со своей драгоценной Тенью.|{{0|vacor|54|}}|{{В бой!|F|||||}{Тебя надо остановить.|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{unzel_1|Привет. Я Унзел.||{{Лагерь|unzel_2|||||}{Вакор|unzel_3|vacor:40||||}}|}; -{unzel_2|а, это мой лагерь. Приятное местечко, не так ли?||{{Пока|X|||||}}|}; -{unzel_3|Тебя послал Вакор? Я понимал что рано или поздно он пришлет кого-нибудь.||{{N|unzel_4|||||}}|}; -{unzel_4|Ну что же. Убей меня если должен, или позволь мне рассказать свою сторону этой истории.||{{В бой!|unzel_fight|||||}{История|unzel_5|||||}}|}; -{unzel_fight|Ну хорошо, начнем нашу битву.|{{0|vacor|53|}}|{{В бой!|F|||||}}|}; -{unzel_5|Спасибо за то что решил выслушать.||{{N|unzel_10|||||}}|}; -{unzel_10|Вакор и я путешествовали вместе. Но он стал одержим созданием заклинаний.||{{N|unzel_11|||||}}|}; -{unzel_11|Он начал интересоваться Тенью. Я знаю, что должен был попытаться остановить его.||{{N|unzel_12|||||}}|}; -{unzel_12|Я начал расспрашивать его о причине интереса, но он отмалчивался.||{{N|unzel_13|||||}}|}; -{unzel_13|Через некоторое время он стал одержим мыслью о Заклинании разрыва, говорил что оно дарует ему неограниченную силу против Тени.||{{N|unzel_14|||||}}|}; -{unzel_14|Было только одно, что я мог сделать. Я должен был оставить его и положить конец изготовлению Заклинания разрыва.||{{N|unzel_15|||||}}|}; -{unzel_15|Я послал несколько друзей забрать у него заклинание.||{{N|unzel_16_select|||||}}|}; -{unzel_16_select|||{{|unzel_16_2|vacor:50||||}{|unzel_16_1|||||}}|}; -{unzel_16_1|И вот мы здесь.||{{Бандиты|unzel_17|||||}}|}; -{unzel_16_2|И вот мы здесь.||{{N|unzel_19|||||}}|}; -{unzel_17|Что? Ты убил моих друзей? Ох, я чувствую как во мне закипает ярость.||{{N|unzel_18|||||}}|}; -{unzel_18|Но я понимаю, что это все дело рук Вакора. Я дам тебе выбор. Выбирай разумно.||{{N|unzel_19|||||}}|}; -{unzel_19|Или ты на стороне Вакора и его заклинания, или ты поможешь мне расквитаться с ним. Так на чьей ты стороне?|{{0|vacor|50|}}|{{Я с тобой|unzel_20|||||}{Вакор|unzel_fight|||||}}|}; -{unzel_20|Спасибо тебе, друг мой. Мы защитим Тень от Вакора.|{{0|vacor|51|}}|{{N|unzel_21|||||}}|}; -{unzel_21|Ты должен поговорить с ним о Тени.|||}; -{unzel_return_1|С возвращением. Ты поговорил с Вакором?||{{Да|unzel_30||ring_vacor|1|0|}{Вакор?|X|||||}}|}; -{unzel_30|Ты убил его? Прими мою благодарность, друг. Теперь мы в безопасности. Вот, Возми эти монеты за твою помощь.|{{0|vacor|61|}{1|gold200||}}|{{Пока|X|||||}{Thank you.|X|||||}}|}; -{unzel_40|Спасибо за помощь. Мы спасены от заклинания Вакора.||{{У меня есть послание для тебя от Каверина из Ремгарда|unzel_msg1|kaverin:25|kaverin_message|1|1|}}|}; -{unzel|||{{|unzel_msg_r0|kaverin:30||||}{|unzel_40|vacor:61||||}{|unzel_return_1|vacor:51||||}{|unzel_1|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fallhaven_bandit|Исчезни пацан. У меня нет на тебя времени.||{{Заклинание разрыва|fallhaven_bandit_2|vacor:20||||}}|}; -{fallhaven_bandit_2|Нет! Вакор не получит силу заклинания разрыва!||{{В бой!|F|||||}}|}; -{bandit1|Что у нас здесь? Потерявшийся странник?||{{N|bandit1_2|||||}}|}; -{bandit1_2|Сколько стоит твоя жизнь? Гони 100 золотых и я позволю тебе уйти.||{{Вот, возмите|bandit1_3||gold|100|0|}{Нет|bandit1_4|||||}{А сколько стоит твоя?|bandit1_4|||||}}|}; -{bandit1_3|Проклятое время. Можешь идти.|||}; -{bandit1_4|Ну что же, это твоя жизнь. Давай сразимся. Я в предвкушении хорошей драки!||{{В бой!|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{zombie1|Свежее мясо!||{{В бой!|F|||||}{ Фу, что ты такое? Что за запах?|F|||||}}|}; -{prisoner1|Неееет, я больше не отправлюсь в тюрьму!||{{В бой!|F|||||}}|}; -{prisoner2|Aaaa! Кто здесь? Я не отдамся в рабство!||{{В бой!|F|||||}}|}; -{flagstone_guard0|О, еще один смертный. Приготовься пополнить собой ряды нежити!|{{0|flagstone|31|}}|{{В бой!|F|||||}{Приготовься умереть еще раз.|F|||||}}|}; -{flagstone_guard1|Сдохни смертный!||{{В бой!|F|||||}{Приготовься к встрече с моим мечом.|F|||||}}|}; -{flagstone_guard2|Что, здесь есть смертный которого не коснулась моя рука?|{{0|flagstone|50|}}|{{N|flagstone_guard2_2|||||}}|}; -{flagstone_guard2_2|Ты, кажется, очень вкусный и мягкий, хочешь быть частью праздника?||{{N|flagstone_guard2_3|||||}}|}; -{flagstone_guard2_3|Да, я думаю, будешь. Моя армия нежити распространится далеко за пределы Флагстоуна, как только я разделаюсь с тобой.||{{В бой!|F|||||}{Нет! Эта земля должна быть защищена от нежити!|F|||||}}|}; - -{flagstone_sentry|||{{|flagstone_sentry_return4|flagstone:60||||}{|flagstone_sentry_return3|flagstone:40||||}{|flagstone_sentry_select0|||||}}|}; -{flagstone_sentry_select0|||{{|flagstone_sentry_return2|flagstone:30||||}{|flagstone_sentry_return1|flagstone:10||||}{|flagstone_sentry_1|||||}}|}; -{flagstone_sentry_1|Стой! Кто здесь? Никто не смеет приближаться к Флагстоуну.||{{N|flagstone_sentry_2|||||}}|}; -{flagstone_sentry_2|Тебе лучше вернуться назад, пока еще можешь.||{{N|flagstone_sentry_3|||||}}|}; -{flagstone_sentry_3|Флагстоун был захвачен нежитью, и я стою здесь чтобы не дать нежити покинуть его.||{{Далее|flagstone_sentry_4|||||}}|}; -{flagstone_sentry_4|Флагстоун раньше был лагерем для беглых каторжников из Горы Галмор, когда там велись раскопки.||{{N|flagstone_sentry_5|||||}}|}; -{flagstone_sentry_5|Но однажды раскопки прекратили и лагерь потерял смысл своего назначения.||{{N|flagstone_sentry_6|||||}}|}; -{flagstone_sentry_6|Лорду в то время было плевать на заключенных, которые были в Флагстоуне, поэтому он оставил их там.||{{N|flagstone_sentry_7|||||}}|}; -{flagstone_sentry_7|Надзиратель, оставшийся в Флагстоуне, был ответственным человеком и продолжал управлять лагерем так же, как и до закрытия каменоломни.||{{N|flagstone_sentry_8|||||}}|}; -{flagstone_sentry_8|В течении многих лет, никто не обращал внимание на Флагстоун. За исключением отдельных докладов от путешественников, слышавших страшные крики исходящие из лагеря.||{{N|flagstone_sentry_9|||||}}|}; -{flagstone_sentry_9|Вплоть до недавнего времени, когда произошло увеличение активности в Флагстоуне. Нежить начала появляться в больших количествах.||{{N|flagstone_sentry_10|||||}}|}; -{flagstone_sentry_10|И вот я здесь. Мой долг охранять дороги от нежити, чтобы они не распространились на другие области, кроме Флагстоуна.||{{N|flagstone_sentry_11|||||}}|}; -{flagstone_sentry_11|Таким образом, я бы посоветовал тебе оставить свое занятие, если не хочешь быть захвачен нежитью.||{{Расследование|flagstone_sentry_12|||||}{Уйти|X|||||}}|}; -{flagstone_sentry_12|Ты действительно уверен, что хочешь пройти? Ну, хорошо.||{{N|flagstone_sentry_13|||||}}|}; -{flagstone_sentry_13|Я не буду мешать тебе, но и горевать тоже не буду, если ты никогда не вернешся.||{{N|flagstone_sentry_14|||||}}|}; -{flagstone_sentry_14|Продолжай свой путь. Дай мне знать, если чем-нибудь смогу помочь.||{{N|flagstone_sentry_15|||||}}|}; -{flagstone_sentry_15|Возвращайся сюда, если тебе понадобится мой совет.|{{0|flagstone|10|}}|{{Уйти|X|||||}}|}; -{flagstone_sentry_return1|Снова здравствуй. Ты вошел в Флагстоун? Я удивлен что ты вернулся.||{{Флагстоун?|flagstone_sentry_4|||||}{Демон|flagstone_sentry_20|flagstone:20||||}}|}; -{flagstone_sentry_20|Стражник-демон говоришь? Это тревожные новости, так как это означает, что крупные силы стоят за всем этим.||{{N|flagstone_sentry_21|||||}}|}; -{flagstone_sentry_21|Ты нашел бывшего старосту Флагстоуна? Надзиратель все время носил с собой ожерелье.||{{N|flagstone_sentry_22|||||}}|}; -{flagstone_sentry_22|Он очень берёг его. Может быть, ожерелье являлось своего рода ключом?||{{N|flagstone_sentry_23|||||}}|}; -{flagstone_sentry_23|Если ты найдешь надзирателя и получишь ожерелье, то, пожалуйста, вернись сюда, и я помогу тебе расшифровать любое сообщение, которое, возможно, найдем на нем.|{{0|flagstone|30|}}|{{Нашел|flagstone_sentry_40||necklace_flagstone|1|0|}{Демон|flagstone_sentry_20|||||}{Уйти|X|||||}}|}; -{flagstone_sentry_return2|Привет опять. Ты нашел бывшего надзирателя в Флагстоуне?||{{Надзиратель|flagstone_sentry_23|||||}{Кого?|flagstone_sentry_3|||||}}|}; -{flagstone_sentry_40|Ты нашел ожерелье? Хорошо. Дай его мне.|{{0|flagstone|40|}}|{{N|flagstone_sentry_41|||||}}|}; -{flagstone_sentry_41|Давайка посмотрим. Ах да, как я и думал. Ожерелье содержит шифр.||{{N|flagstone_sentry_42|||||}}|}; -{flagstone_sentry_42|\"Дневная Тень\". Скорее всего так. Ты должен попробовать сказать эту фразу стражнику, возможно это пароль.||{{Уйти|X|||||}}|}; -{flagstone_sentry_return3|Привет привет. Как идут поиски источника нежити в Флагстоуне?||{{Никак|flagstone_sentry_43|||||}}|}; -{flagstone_sentry_43|Что же, продолжай искать. Возвращайся сюда, если тебе понадобится мой совет.|||}; -{flagstone_sentry_return4|Привет привет. Кажется, что-то произошло во Флагстоуне, что-то, что сделало нежить слабее. Я уверен, что нужно поблагодарить тебя за это.|||}; - -{narael|Спасибо тебе, спасибо за освобождение меня от этого монстра.||{{N|narael_select|||||}}|}; -{narael_select|||{{|narael_9|flagstone:60||||}{|narael_1|||||}}|}; -{narael_1|Я был в плену здесь так долго, что, кажется, прошла целая вечность.||{{N|narael_2|||||}}|}; -{narael_2|Ах, что они сделали со мной. Большое вам спасибо за освобождение.||{{N|narael_3|||||}}|}; -{narael_3|Я был одним из жителей Нора, и работал в каменоломнях Горы Галмор.||{{N|narael_4|||||}}|}; -{narael_4|Но в один прекрасный день я захотел бросить работу и вернуться к моей жене.||{{N|narael_5|||||}}|}; -{narael_5|Но офицер не позволил мне, и я был направлен в Флагстоун, как заключенный, за неподчинение приказам.||{{N|narael_6|||||}}|}; -{narael_6|Если бы я только смог увидеть мою жену еще раз. Но вряд ли это получится, у меня не достаточно сил, даже чтобы покинуть это место.||{{N|narael_7|||||}}|}; -{narael_7|Я думаю, что моя судьба погибнуть здесь. Но как свободный человек, по крайней мере.||{{N|narael_8|||||}}|}; -{narael_8|Теперь оставь меня на едине с судьбой. У меня нет сил, чтобы покинуть это место.|{{0|flagstone|60|}}|{{N|narael_9|||||}}|}; -{narael_9|Если встретишь мою жену Таурум в г.Нор, пожалуйста, скажи ей, что я жив и что я не забыл о ней.||{{Пока|X|||||}{Хорошо, скажу. Да прибудет с тобой Тень.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fallhaven_lumberjack|Привет, я Джакрар.||{{Бревна|fallhaven_lumberjack_2|||||}}|}; -{fallhaven_lumberjack_2|Да, я дровосек. Нужна отличная древесина? Я могу достать ее.|||}; -{alaun|Привет. Я Алан. Чем могу помочь?||{{Брат|alaun_2|||||}}|}; -{alaun_2|Говориш ты ищешь своего брата? Похож на тебя? Хм.||{{N|alaun_3|||||}}|}; -{alaun_3|Нет, не могу никого вспомнить, подходящего под описание. Может стоит поискать его в Кроссглене, что на западе от сюда.|||}; -{fallhaven_farmer1|Приветствую. Пожалуйста не отвлекай меня, у меня много работы.|||}; -{fallhaven_farmer2|Привет. Не мог бы ты свалить отсюда? Я пытаюсь работать.|||}; -{khorand|Эй, ты, не вздумай трогать ящики. Я слежу за тобой!|||}; - - - diff --git a/AndorsTrail/res/values-ru/content_itemlist.xml b/AndorsTrail/res/values-ru/content_itemlist.xml deleted file mode 100644 index c11369377..000000000 --- a/AndorsTrail/res/values-ru/content_itemlist.xml +++ /dev/null @@ -1,354 +0,0 @@ - - - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{gold|items_misc:10|Золото|money||1|1|||||||||||||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{club1|items_weapons:42|Дубинка|club|||7|1||||5|10|||0|1|||||||||||||||||||||||}; -{club3|items_weapons:44|Палица|mace|||253|1||||6|5|||2|7|||||||||||||||||||||||}; -{ironsword0|items_weapons:0|Скверный железный меч|lsword|||12|1||||5|10|||0|1|||||||||||||||||||||||}; -{hammer0|items_weapons:45|Железный молот|hammer|||12|1||||5|10|||0|1|||||||||||||||||||||||}; -{hammer1|items_weapons:45|Большой молот|hammer2h|||121|1||||10|5|||4|7|||||||||||||||||||||||}; -{dagger0|items_weapons:14|Железный кинжал|dagger|||12|1||||5|10|||0|1|||||||||||||||||||||||}; -{dagger1|items_weapons:14|Острый железный кинжал|dagger|||53|1||||4|20|||1|2|||||||||||||||||||||||}; -{dagger2|items_weapons:14|Превосходный железный кинжал|dagger|||70|1||||4|25|||1|2|||||||||||||||||||||||}; -{shortsword1|items_weapons:15|Железный короткий меч|ssword|||78|1||||4|15|||1|2|||||||||||||||||||||||}; -{ironsword1|items_weapons:0|Железный меч|lsword|||78|1||||5|10|||1|3|||||||||||||||||||||||}; -{ironsword2|items_weapons:1|Железный полуторный меч|lsword|||121|1||||5|10|||1|4|||||||||||||||||||||||}; -{broadsword1|items_weapons:5|Железный палаш|bsword|||251|1||||7|2|||1|10|||||||||||||||||||||||}; -{broadsword2|items_weapons:6|Стальной палаш|bsword|||582|1||||6|15|||3|10|||||||||||||||||||||||}; -{steelsword1|items_weapons:7|Стальной меч|lsword|||874|1||||4|24|||3|7|||||||||||||||||||||||}; -{axe1|items_weapons:56|Топор для колки дров|axe|||24|1||||5|5|||1|3|||||||||||||||||||||||}; -{axe2|items_weapons:56|Железный топор|axe|||312|1||||6|5|||2|5|||||||||||||||||||||||}; -{quickdagger1|items_weapons:14|Кинжал быстрого удара|dagger|4||512|1||||3|20|||0|0|-20||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{ring_dmg1|items_jewelry:0|Кольцо урона +1|ring|||215|1||||||||1|1|||||||||||||||||||||||}; -{ring_dmg2|items_jewelry:1|Кольцо урона +2|ring|||398|1||||||||2|2|||||||||||||||||||||||}; -{ring_dmg5|items_jewelry:2|Кольцо урона +5|ring|4||2014|1||||||||5|5|||||||||||||||||||||||}; -{ring_dmg6|items_jewelry:3|Кольцо урона +6|ring|4||3186|1||||||||6|6|||||||||||||||||||||||}; -{ring_block1|items_jewelry:0|Малое кольцо защиты|ring|4||1239|1||||||||||10||||||||||||||||||||||}; -{ring_block2|items_jewelry:0|Блестящее кольцо защиты|ring|4||3866|1||||||||||15||||||||||||||||||||||}; -{ring_atkch1|items_jewelry:0|Кольцо атаки|ring|||215|1|||||15|||||||||||||||||||||||||||}; -{ring1|items_jewelry:0|Обычное кольцо|ring||1|13|1||||||||0|1|||||||||||||||||||||||}; -{ring2|items_jewelry:0|Блестящее кольцо|ring||1|21|1||||||||||1||||||||||||||||||||||}; -{ring_jinxed1|items_jewelry:2|Порченое кольцо защиты от урона|ring|||229|1||||||||||-9|1|||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{jewel_fallhaven|items_jewelry:6|Драгоценность Фоллхейвена|neck|4||3125|1||||-1||||||||||||||||||||||||||||}; -{necklace_shield1|items_jewelry:7|Ожерелье стражника|neck|4||935|1||||||||||9||||||||||||||||||||||}; -{necklace_shield2|items_jewelry:7|Защитное ожерелье|neck|4||1255|1||||||||||12||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{shirt1|items_armours:14|Хлопковая рубаха|bdy_clth|||16|1||||||||||2||||||||||||||||||||||}; -{shirt2|items_armours:14|Первоклассная рубаха|bdy_clth|||72|1||||||||||5||||||||||||||||||||||}; -{shirt_dmgresist|items_armours:15|Рубаха из грубой кожи|bdy_lthr|4||1633|1||||||||||5|1|||||||||||||||||||||}; -{armor1|items_armours:15|Кожаная броня|bdy_lthr|||464|1||||||||||8||||||||||||||||||||||}; -{armor2|items_armours:15|Превосходная кожаная броня|bdy_lthr|||624|1||||||||||9||||||||||||||||||||||}; -{armor3|items_armours:16|Жесткая кожаная броня|bdy_lthr|||2407|1||||||||||13||||||||||||||||||||||}; -{armor4|items_armours:16|Превосходная жесткая кожаная броня|bdy_lthr|||3866|1||||||||||15||||||||||||||||||||||}; -{hat1|items_armours:21|Зеленая шапка|hd_cloth|||13|1||||||||||1||||||||||||||||||||||}; -{hat2|items_armours:21|Первоклассная зеленая шапка|hd_cloth|||25|1||||||||||2||||||||||||||||||||||}; -{hat3|items_armours:24|Скверная кожаная шапка|hd_lthr|||72|1||||||||||5||||||||||||||||||||||}; -{hat4|items_armours:24|Шапка из кожи|hd_lthr|||146|1||||||||||6||||||||||||||||||||||}; -{gloves1|items_armours:35|Кожаные перчатки|hnd_lthr|||23|1||||||||||3||||||||||||||||||||||}; -{gloves2|items_armours:35|Первоклассные кожаные перчатки|hnd_lthr|||38|1||||||||||4||||||||||||||||||||||}; -{gloves3|items_armours:36|Перчатки из змеиной кожи|hnd_cloth|||72|1||||||||||5||||||||||||||||||||||}; -{gloves4|items_armours:36|Первоклассные перчатки из змеиной кожи|hnd_cloth|||146|1||||||||||6||||||||||||||||||||||}; -{shield1|items_armours:0|Деревянный круглый щит|buckler|||72|1|||||-2|||||5||||||||||||||||||||||}; -{shield3|items_armours:1|Усиленный деревянный круглый щит|buckler|||226|1|||||-5|||||7||||||||||||||||||||||}; -{shield4|items_armours:2|Скверный деревянный щит|shld_wd_li|||464|1|||||-5|||||8||||||||||||||||||||||}; -{shield5|items_armours:2|Превосходный деревянный щит|shld_wd_li|||624|1|||||-4|||||9||||||||||||||||||||||}; -{boots1|items_armours:28|Кожаные сапоги|feet_lthr|||23|1||||||||||3||||||||||||||||||||||}; -{boots2|items_armours:28|Превосходные кожаные сапоги|feet_lthr|||38|1||||||||||4||||||||||||||||||||||}; -{boots3|items_armours:29|Сапоги из змеиной кожи|feet_lthr|||146|1||||||||||6||||||||||||||||||||||}; -{boots5|items_armours:30|Усиленные сапоги|feet_mtl_hv|||226|1||||||||||7||||||||||||||||||||||}; -{gloves_attack1|items_armours:35|Перчатки быстрой атаки|hnd_lthr|||150|1|||||15|||||-9||||||||||||||||||||||}; -{gloves_attack2|items_armours:35|Первоклассные перчатки быстрой атаки|hnd_lthr|||221|1|||||17|||||-9||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{apple_green|items_consumables:2|Зеленое яблоко|food||1|14||||||||||||||1|||||{{food|1|8|100|}}||||||||||||||}; -{apple_red|items_consumables:3|Красное яблоко|food||1|22||||||||||||||1|||||{{food|1|12|100|}}||||||||||||||}; -{meat|items_consumables:25|Мясо|animal_e||1|29||||||||||||||1|||||{{food|2|12|100|}{foodp|3|10|10|}}||||||||||||||}; -{meat_cooked|items_consumables:27|Приготовленное мясо|food||1|78||||||||||||||1|||||{{food|3|11|100|}}||||||||||||||}; -{strawberry|items_consumables:8|Клубника|food||1|3||||||||||||||1|||||{{food|1|2|100|}}||||||||||||||}; -{carrot|items_consumables:15|Морковь|food||1|14||||||||||||||1|||||{{food|1|8|100|}}||||||||||||||}; -{bread|items_consumables:21|Хлеб|food||1|6||||||||||||||1|||||{{food|1|10|100|}}||||||||||||||}; -{mushroom|items_consumables:19|Гриб|food||1|3||||||||||||||1|||||{{food|1|2|100|}}||||||||||||||}; -{pear|items_consumables:9|Груша|food||1|14||||||||||||||1|||||{{food|1|8|100|}}||||||||||||||}; -{eggs|items_consumables:20|Яйца|food||1|10||||||||||||||1|||||{{food|1|6|100|}}||||||||||||||}; -{radish|items_consumables:14|Редиска|food||1|6||||||||||||||1|||||{{food|1|4|100|}}||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{vial_empty1|items_consumables:56|Пустая склянка|flask||1|2|||||||||||||||||||||||||||||||||}; -{vial_empty2|items_consumables:57|Пустой пузырек|flask||1|4|||||||||||||||||||||||||||||||||}; -{vial_empty3|items_consumables:59|Пустой флакон|flask||1|6|||||||||||||||||||||||||||||||||}; -{vial_empty4|items_consumables:58|Пустая бутыль|flask||1|11|||||||||||||||||||||||||||||||||}; -{health_minor|items_consumables:35|Малый пузырек здоровья|pot||1|5||||||||||||||1|5|5|||||||||||||||||}; -{health_minor2|items_consumables:35|Малое зелье здоровья|pot|||18||||||||||||||1|5|5|||||||||||||||||}; -{health|items_consumables:49|Обычное зелье здоровья|pot|||40||||||||||||||1|10|10|||||||||||||||||}; -{health_major|items_consumables:28|Большая бутыль здоровья|pot||1|210||||||||||||||1|40|40|||||||||||||||||}; -{health_major2|items_consumables:28|Большое зелье здоровья|pot|||280||||||||||||||1|40|40|||||||||||||||||}; -{mead|items_consumables:51|Медовуха|drink|||15||||||||||||||1|1|1|||||||||||||||||}; -{milk|items_consumables:55|Молоко|drink|||21||||||||||||||1|2|2|||||||||||||||||}; -{bonemeal_potion|items_consumables:34|Зелье из костной муки|pot||1|45||||||||||||||1|40|40|||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{hair|items_misc:48|Шерсть животного|animal||1|2|||||||||||||||||||||||||||||||||}; -{insectwing|items_misc:52|Крыло насекомого|animal||1|3|||||||||||||||||||||||||||||||||}; -{bone|items_misc:44|Кость|animal||1|2|||||||||||||||||||||||||||||||||}; -{claws|items_misc:47|Коготь|animal||1|2|||||||||||||||||||||||||||||||||}; -{shell|items_misc:54|Оболочка насекомого|animal||1|2|||||||||||||||||||||||||||||||||}; -{gland|actorconditions_1:60|Ядовитая железа|animal||1|15|||||||||||||||||||||||||||||||||}; -{rat_tail|items_misc:38|Хвост крысы|animal||1|2|||||||||||||||||||||||||||||||||}; - - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{rock|items_misc:28|Камушек|gem||1|1|||||||||||||||||||||||||||||||||}; -{gem1|items_misc:0|Стекляшка|gem||1|2|||||||||||||||||||||||||||||||||}; -{gem2|items_misc:1|Самоцвет|gem||1|6|||||||||||||||||||||||||||||||||}; -{gem3|items_misc:2|Полированный самоцвет|gem||1|8|||||||||||||||||||||||||||||||||}; -{gem4|items_misc:3|Ограненный камень|gem||1|13|||||||||||||||||||||||||||||||||}; -{gem5|items_misc:5|Полированный сверкающий камень|gem||1|15|||||||||||||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{tail_caverat|items_misc:38|Хвост пещерной крысы|animal|1|1|0|||||||||||||||||||||||||||||||||}; -{tail_trainingrat|items_misc:38|Хвост малой крысы|animal|1|1|0|||||||||||||||||||||||||||||||||}; -{ring_mikhail|items_jewelry:0|Кольцо Михаила|ring|||15|1|||||10|||||||||||||||||||||||||||}; -{neck_irogotu|items_jewelry:7|Ожерелье Ирогота|neck|3|1|30|1||||||||||5|1|||||||||||||||||||||}; -{ring_gandir|items_jewelry:0|Кольцо Гандира|other|1|1|0|||||||||||||||||||||||||||||||||}; -{dagger_venom|items_weapons:17|Отравленный кинжал|dagger|3||15|1||||4|10|5|2|1|2|||||||||||||||||||||||}; -{key_luthor|items_misc:21|Ключ Лютора|other|1|1|0|||||||||||||||||||||||||||||||||}; -{calomyran_secrets|items_books:0|Секреты Каломирана|other|1|1|0|||||||||||||||||||||||||||||||||}; -{heartstone|items_misc:6|Камень-сердце|gem|1|1|0|||||||||||||||||||||||||||||||||}; -{vacor_spell|items_books:7|Часть заклинания Вакора|other|1|1|0|||||||||||||||||||||||||||||||||}; -{ring_unzel|items_jewelry:0|Кольцо Унзела|other|1|1|0|||||||||||||||||||||||||||||||||}; -{ring_vacor|items_jewelry:0|Кольцо Вакора|other|1|1|0|||||||||||||||||||||||||||||||||}; -{boots_unzel|items_armours:29|Сапоги обороны Унзела|feet_lthr|3||185|1||||||||||8||||||||||||||||||||||}; -{boots_vacor|items_armours:29|Сапоги атаки Вакора|feet_lthr|3||185|1|||||9|||||2||||||||||||||||||||||}; -{necklace_flagstone|items_jewelry:6|Ожерелье надзирателя Флагстоуна|other|1|1|0|||||||||||||||||||||||||||||||||}; -{packhide|items_armours:15|Куртка из шкур|bdy_hide|3|1|121|1|||||-15|||||2|1|||||||||||||||||||||}; -{sword_flagstone|items_weapons:7|Сокровище Флагстоуна|lsword|3||169|1||||4|21|10|2|1|6|||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{armor_chain1|items_armours:17|Ржавая кольчуга|chmail|||3629|1|||||-9|||||20||||||||||||||||||||||}; -{armor_chain2|items_armours:17|Простая кольчуга|chmail|||4191|1|||||-10|||||22||||||||||||||||||||||}; -{hat_leather1|items_armours:24|Простая шапка из кожи|hd_lthr|||261|1|||||-2|||||7||||||||||||||||||||||}; -{sleepingmead|items_consumables:51|Медовуха со снотворным|other|1|1|0|||||||||||||||||||||||||||||||||}; -{ffguard_qitem|items_jewelry:0|Кольцо патруля Фейгарда|other|1|1|0|||||||||||||||||||||||||||||||||}; -{shield6|items_armours:3|Деревянный пехотный щит|shld_twr|||952|1|||||-6|||||12||||||||||||||||||||||}; -{shield7|items_armours:3|Крепкий деревянный пехотный щит|shld_twr|||1538|1|||||-6|||||14||||||||||||||||||||||}; -{club_wood1|items_weapons:44|Тяжелая палица|mace|||950|1||||8|15|5|3|2|11|||||||||||||||||||||||}; -{club_wood2|items_weapons:44|Сбалансированная тяжелая палица|mace|||2194|1||||7|10|10|3|2|11|||||||||||||||||||||||}; -{gloves_grip|items_armours:35|Перчатки лучшей хватки|hnd_lthr|||471|1|||||9|||||1||||||||||||||||||||||}; -{gloves_fancy|items_armours:35|Необычные перчатки|hnd_cloth|||78|1|||||5|||||||||||||||||||||||||||}; -{ring_crit1|items_jewelry:0|Кольцо удара|ring|4||2921|1||||||5||||||||||||||||||||||||||}; -{ring_crit2|items_jewelry:0|Кольцо подлого удара|ring|4||3455|1|||||-3|7||||||||||||||||||||||||||}; -{armor_stone|items_armours:17|Кираса из камня|bdy_hv|3||52|1||||2||||||22|1|||||||||||||||||||||}; -{ring_shadow0|items_jewelry:2|Кольцо меньшей Тени|ring|2|1|0|1|||||25|6||4|7|5||{{regen|1|}}||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{rapier_lifesteal|items_weapons:71|Рапира-душегуб|rapier|2|1|0|1|5|||5|21|||1|6||||||||||1|0|3|||||1|3|3||||}; -{dagger_barbed|items_weapons:17|Кинжал с зазубринами|dagger|3|1|0|1||||4|15|||0|0|5|||||||||1||||||{{bleeding_wound|1|5|50|}}|||||||}; -{elytharan_redeemer|items_weapons:70|Элитаран-Спаситель|2hsword|2|1|0|1||2||5|25|||3|8|5||{{bless|1|}}|0|||||||||||||||||||}; -{clouded_rage|items_weapons:71|Меч ярости Тени|rapier|3|1|0|1||||5|21|||3|6|5|||0|||||||||||||1|||||{{rage_minor|1|1|50|}}|}; -{shadow_slayer|items_weapons:60|Тень убийцы|axe2h|3|1|0|1||2||7|25|10|2|5|9|||||||||||||||||1|1|1||||}; -{ring_shadow_embrace|items_jewelry:0|Кольцо объятия Тени|ring|3|1|0|1|20||||10|||2|2|||||||||||||||||||||||}; -{bwm_dagger|items_weapons:19|Блеквотский кинжал|dagger|4|1|539|1||||3|40|||1|1|5||{{blackwater_misery|1|}}||||||||||||||||||||}; -{bwm_dagger_venom|items_weapons:19|Блеквотский отравленный кинжал|dagger|4|1|1552|1||||3|45|||1|1|||{{blackwater_misery|1|}}|||||||1||||||{{poison_weak|1|5|50|}}|||||||}; -{bwm_ironsword|items_weapons:0|Блеквотский железный меч|lsword|4|1|1224|1||||4|50|||3|7|5||{{blackwater_misery|1|}}||||||||||||||||||||}; -{bwm_leather_armour|items_armours:15|Блеквотская кожаная броня|bdy_lthr|4|1|2551|1||||||||||25|1|{{blackwater_misery|1|}}||||||||||||||||||||}; -{bwm_leather_cap|items_armours:24|Блеквотская шапка из кожи|hd_lthr|4|1|722|1|5|||||||||21||{{blackwater_misery|1|}}||||||||||||||||||||}; -{bwm_combat_ring|items_jewelry:2|Блеквотское боевое кольцо|ring|4|1|595|1|||||5|||0|7|||{{blackwater_misery|1|}}||||||||||||||||||||}; -{bwm_brew|items_consumables:51|Блеквотский напиток|pot||1|57||||||||||||||1|15|15|||{{intoxicated|1|10|100|}}||||||||||||||}; -{woodcutter_hatchet|items_weapons:57|Топор дровосека|axe|||0|1||||6|9|||6|12|||||||||||||||||||||||}; -{woodcutter_boots|items_armours:30|Сапоги дровосека|feet_lthr|||873|1|1||||3|||||8||||||||||||||||||||||}; -{heavy_club|items_weapons:44|Тяжелая булава|mace|||1229|1||||7|15|5|3|2|15|||||||||||||||||||||||}; -{pot_speed_1|items_consumables:41|Малое зелье скорости|pot||1|261||||||||||||||1|||||{{speed_minor|1|5|100|}}||||||||||||||}; -{pot_poison_weak|items_consumables:40|Слабый яд|pot||1|125||||||||||||||1|||||{{poison_weak|1|5|100|}}||||||||||||||}; -{pot_poison_weak_antidote|items_consumables:54|Противоядие от слабого яда|pot||1|337||||||||||||||1|||||{{poison_weak|-99||100|}}||||||||||||||}; -{pot_bleeding_ointment|items_consumables:35|Мазь от кровотечения|pot||1|310||||||||||||||1|||||{{bleeding_wound|-99||100|}}||||||||||||||}; -{pot_fatigue_restore|items_consumables:41|Зелье от усталости|pot||1|210||||||||||||||1|||||{{fatigue_minor|-99||100|}}||||||||||||||}; -{pot_blind_rage|items_consumables:63|Зелье слепой ярости|pot||1|495||||||||||||||1|||||{{rage_minor|1|5|100|}}|0|||||||0||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{rusted_iron_sword|items_weapons:0|Ржавый железный меч|lsword|||52|1||||5|10|||1|2|||||||||||||||||||||||}; -{broken_buckler|items_armours:0|Разбитый деревянный круглый щит|buckler|||120|1|||||-5|||||1||||||||||||||||||||||}; -{used_gloves|items_armours:35|Окровавленные перчатки|hnd_lthr|||56|1||||||||||1||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{bwm_claws|items_misc:47|Коготь белой змеи|animal||1|35|||||||||||||||||||||||||||||||||}; -{bwm_permit|items_books:8|Поддельные бумаги для Блеквота|other|1|1|0|||||||||||||||||||||||||||||||||}; -{bjorgur_dagger|items_weapons:14|Фамильный кинжал Бьоргура|dagger|1|1|0|1||||5||||||||||||||||||||||||||||}; -{q_kazaul_vial|items_consumables:57|Пузырек очищенного духа|other|1|1|0|||||||||||||||||||||||||||||||||}; -{guthbered_id|items_jewelry:0|Кольцо Гатбереда|other|1|1|0|||||||||||||||||||||||||||||||||}; -{harlenn_id|items_jewelry:0|Кольцо Харленна|other|1|1|0|||||||||||||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{dagger_shadow_priests|items_weapons:17|Кинжал священников Тени|dagger|3|1|15|1||||4|20|20|3|1|2|||||||||||||||||||||||}; -{sword_hard_iron|items_weapons:0|Закаленный железный меч|lsword||0|369|1||||5|15|||2|4|||||||||||||||||||||||}; -{club_fine_wooden|items_weapons:42|Первоклассная дубинка|club||0|245|1||||5|12|||0|7|||||||||||||||||||||||}; -{axe_fine_iron|items_weapons:56|Первоклассный железный топор|axe||0|365|1||||6|9|||4|6|||||||||||||||||||||||}; -{longsword_hard_iron|items_weapons:1|Закаленный железный полуторный меч|lsword||0|362|1||||5|14|||2|6|||||||||||||||||||||||}; -{broadsword_fine_iron|items_weapons:5|Первоклассный железный палаш|bsword||0|422|1||||7|5|||4|10|||||||||||||||||||||||}; -{dagger_sharp_steel|items_weapons:14|Острый стальной кинжал|dagger||0|1428|1||||4|24|||2|4|||||||||||||||||||||||}; -{sword_balanced_steel|items_weapons:7|Сбалансированный стальной меч|lsword||0|2797|1||||4|32|||3|7|||||||||||||||||||||||}; -{broadsword_fine_steel|items_weapons:6|Первоклассный стальной палаш|bsword||0|1206|1||||6|20|||4|11|||||||||||||||||||||||}; -{sword_defenders|items_weapons:2|Клинок защитника|lsword||0|1711|1||||5|26|||3|7|3||||||||||||||||||||||}; -{sword_villains|items_weapons:16|Клинок злодея|ssword||0|1665|1||||4|20|5|3|1|2|||||||||||||||||||||||}; -{sword_challengers|items_weapons:1|Железный меч для поединков|lsword||0|785|1||||5|20|||2|6|||||||||||||||||||||||}; -{sword_fencing|items_weapons:13|Фехтовальный клинок|rapier||0|922|1||||4|14|||2|5|5||||||||||||||||||||||}; -{club_brutal|items_weapons:44|Брутальная булава|mace||0|2522|1||||7|20|5|3|2|21|||||||||||||||||||||||}; -{axe_gutsplitter|items_weapons:58|Потрошитель|axe2h||0|2733|1||||6|21|||7|17|||||||||||||||||||||||}; -{hammer_skullcrusher|items_weapons:45|Сокрушитель черепов|hammer2h||0|3142|1||||7|20|5|3|0|26|||||||||||||||||||||||}; -{shield_crude_wooden|items_armours:0|Скверный круглый щит|buckler||0|31|1||||||||||1||||||||||||||||||||||}; -{shield_cracked_wooden|items_armours:0|Треснувший круглый щит|buckler||0|34|1|||||-2|||||2||||||||||||||||||||||}; -{shield_wooden_buckler|items_armours:0|Подержанный круглый щит|buckler||0|92|1|||||-2|||||3||||||||||||||||||||||}; -{shield_wooden|items_armours:2|Деревянный щит|shld_wd_li||0|514|1|||||-4|||||8||||||||||||||||||||||}; -{shield_wooden_defender|items_armours:2|Деревянный защитник|shld_wd_li||0|1996|1|||||-8|-5||||14|1|||||||||||||||||||||}; -{hat_hard_leather|items_armours:24|Шапка из грубой кожи|hd_lthr||0|648|1|||||-3|-1||||8||||||||||||||||||||||}; -{hat_fine_leather|items_armours:24|Первоклассная кожаная шапка|hd_lthr||0|846|1|||||-3|-2||||9||||||||||||||||||||||}; -{hat_leather_vision|items_armours:24|Шапка из кожи с плохим обзором|hd_lthr||0|971|1|||||-3|-4||||10||||||||||||||||||||||}; -{helm_crude_iron|items_armours:25|Скверный железный шлем|hd_mtl_hv||0|1120|1|||||-3|-5||||11||||||||||||||||||||||}; -{shirt_torn|items_armours:14|Разорванная рубаха|bdy_clth||0|92|1|||||-2|||||3||||||||||||||||||||||}; -{shirt_weathered|items_armours:14|Изношенная рубаха|bdy_clth||0|125|1|||||-1|||||3||||||||||||||||||||||}; -{shirt_patched_cloth|items_armours:14|Залатанная рубаха|bdy_clth||0|208|1||||||||||4||||||||||||||||||||||}; -{armour_crude_leather|items_armours:16|Скверная кожаная броня|bdy_lthr||0|514|1|||||-4|||||8||||||||||||||||||||||}; -{armour_firm_leather|items_armours:16|Крепкая кожаная броня|bdy_lthr||0|417|1|||1|||||||8||||||||||||||||||||||}; -{armour_rigid_leather|items_armours:16|Негнущаяся кожаная броня|bdy_lthr||0|625|1|||1||-1|||||9||||||||||||||||||||||}; -{armour_rigid_chain|items_armours:17|Негнущаяся кольчуга|chmail||0|4667|1||||1|-5|||||23||||||||||||||||||||||}; -{armour_superior_chain|items_armours:17|Превосходная кольчуга|chmail||0|5992|1|||||-9|||||23||||||||||||||||||||||}; -{armour_chain_champ|items_armours:17|Кольчуга чемпиона|chmail||0|6808|1|2||||-9|-5||||24||||||||||||||||||||||}; -{armour_leather_villain|items_armours:16|Кожаная броня злодея|bdy_lthr||0|3700|1|||-1||-4|3||||15||||||||||||||||||||||}; -{armour_misfortune|items_armours:15|Кожаная рубаха неудач|bdy_lthr||0|2459|1|||||-5|||-1|-1|15||||||||||||||||||||||}; -{gloves_barbrawler|items_armours:35|Перчатки дебошира|hnd_lthr||0|95|1|||||5|||||2||||||||||||||||||||||}; -{gloves_fumbling|items_armours:35|Перчатки неуклюжести|hnd_lthr||0|-432|1|||||-5|||||1||||||||||||||||||||||}; -{gloves_crude_cloth|items_armours:35|Скверные хлопковые перчатки|hnd_cloth||0|31|1||||||||||1||||||||||||||||||||||}; -{gloves_crude_leather|items_armours:35|Скверные кожаные перчатки|hnd_lthr||0|180|1|||||-4|||||6||||||||||||||||||||||}; -{gloves_troublemaker|items_armours:36|Перчатки бузотера|hnd_lthr||0|501|1|1||||7|4||||4||||||||||||||||||||||}; -{gloves_guards|items_armours:37|Перчатки охранника|hnd_mtl_li||0|636|1|3||||3|||||5||||||||||||||||||||||}; -{gloves_leather_attack|items_armours:35|Кожаные перчатки атаки|hnd_lthr||0|510|1|3||||13|||||-2||||||||||||||||||||||}; -{gloves_woodcutter|items_armours:35|Перчатки дровосека|hnd_lthr||0|426|1|3||||8|||||1||||||||||||||||||||||}; -{boots_crude_leather|items_armours:28|Скверные кожаные сапоги|feet_lthr||0|31|1||||||||||1||||||||||||||||||||||}; -{boots_sewn|items_armours:28|Войлочная обувь|feet_clth||0|73|1||||||||||2||||||||||||||||||||||}; -{boots_coward|items_armours:28|Сапоги труса|feet_lthr||0|933|1|||-1|||||||2||||||||||||||||||||||}; -{boots_hard_leather|items_armours:30|Сапоги из грубой кожи|feet_lthr||0|626|1|||1||-4|||||10||||||||||||||||||||||}; -{boots_defender|items_armours:30|Сапоги защитника|feet_mtl_li||0|1190|1|2|||||||||9||||||||||||||||||||||}; -{necklace_shield_0|items_jewelry:7|Малое ожерелье защиты|neck||0|131|1||||||||||3||||||||||||||||||||||}; -{necklace_strike|items_jewelry:6|Ожерелье удара|neck||0|832|1|5|||||5||||||||||||||||||||||||||}; -{necklace_defender_stone|items_jewelry:7|Камень защитника|neck|4|0|1325|1|||||||||||1|||||||||||||||||||||}; -{necklace_protector|items_jewelry:7|Ожерелье покровителя|neck|4|0|3207|1|5||||||||||2|||||||||||||||||||||}; -{ring_crude_combat|items_jewelry:0|Скверное боевое кольцо|ring||0|44|1|||||5|||0|1|||||||||||||||||||||||}; -{ring_crude_surehit|items_jewelry:0|Скверное кольцо атаки|ring||0|52|1|||||7|||||||||||||||||||||||||||}; -{ring_crude_block|items_jewelry:0|Скверное кольцо защиты|ring||0|73|1||||||||||2||||||||||||||||||||||}; -{ring_rough_life|items_jewelry:0|Скверное кольцо жизненной силы|ring||0|100|1|1|||||||||||||||||||||||||||||||}; -{ring_fumbling|items_jewelry:0|Кольцо неуклюжести|ring||0|-463|1|||||-5|||||||||||||||||||||||||||}; -{ring_rough_damage|items_jewelry:0|Скверное кольцо урона|ring||0|56|1||||||||0|2|||||||||||||||||||||||}; -{ring_barbrawler|items_jewelry:0|Кольцо дебошира|ring||0|222|1|||||12|||0|1|||||||||||||||||||||||}; -{ring_dmg_3|items_jewelry:0|Кольцо урона +3|ring||0|624|1||||||||3|3|||||||||||||||||||||||}; -{ring_life|items_jewelry:0|Кольцо жизненной силы|ring||0|557|1|5|||||||||||||||||||||||||||||||}; -{ring_taverbrawler|items_jewelry:0|Кольцо драчуна|ring||0|314|1|||||12|||0|3|||||||||||||||||||||||}; -{ring_defender|items_jewelry:0|Кольцо защитника|ring||0|755|1|||||-6|||||11||||||||||||||||||||||}; -{ring_challenger|items_jewelry:0|Кольцо поединков|ring||0|408|1|||||12|||||4||||||||||||||||||||||}; -{ring_dmg_4|items_jewelry:2|Кольцо урона +4|ring||0|1168|1||||||||4|4|||||||||||||||||||||||}; -{ring_troublemaker|items_jewelry:2|Кольцо бузотера|ring||0|797|1|||||15|||2|4|||||||||||||||||||||||}; -{ring_guardian|items_jewelry:2|Кольцо стражника|ring|4|0|1489|1|||||19|||3|5|||||||||||||||||||||||}; -{ring_block|items_jewelry:2|Кольцо защиты|ring|4|0|2192|1||||||||||13||||||||||||||||||||||}; -{ring_backstab|items_jewelry:2|Кольцо удара в спину|ring||0|1363|1|||||17|7||||3||||||||||||||||||||||}; -{ring_polished_combat|items_jewelry:2|Блестящее боевое кольцо|ring|4|0|1346|1|5||||15|||1|5|||||||||||||||||||||||}; -{ring_villain|items_jewelry:2|Кольцо злодея|ring|4|0|2750|1|4||||25|||3|6|||||||||||||||||||||||}; -{ring_polished_backstab|items_jewelry:2|Блестящее кольцо удара в спину|ring|4|0|2731|1|||||21|7||4|4|||||||||||||||||||||||}; -{ring_protector|items_jewelry:4|Кольцо покровителя|ring|4|0|3744|1|3||||20|||0|3|14||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{erinith_book|items_books:0|Книга Эринита|other|1|1|0|||||||||||||||||||||||||||||||||}; -{hadracor_waspwing|items_misc:52|Крыло гигантской осы|animal|1|1|0|||||||||||||||||||||||||||||||||}; -{tinlyn_bells|items_necklaces_1:10|Колокольчик овечки Тинлина|other|1|1|0|||||||||||||||||||||||||||||||||}; -{tinlyn_sheep_meat|items_consumables:25|Мясо овечки Тинлина|animal|1|1|0|||||||||||||||||||||||||||||||||}; -{rogorn_qitem|items_books:7|Кусок рисунка|other|1|1|0|||||||||||||||||||||||||||||||||}; -{fg_ironsword|items_weapons:0|Фейгардский железный меч|lsword|1|1|0|1||||5|10|||1|5|||||||||||||||||||||||}; -{fg_ironsword_d|items_weapons:0|Испорченный фейгардский железный меч|lsword|1|1|0|1||||5|-50|||0|0|||||||||||||||||||||||}; -{buceth_vial|items_consumables:47|Склянка Буцета с зеленой жидкостью|other|1|1|0|||||||||||||||||||||||||||||||||}; -{chaosreaper|items_weapons:49|Жнец хаоса|scepter|3|1|339|1||||4|-30|||0|2||||0||||||1||||||{{chaotic_grip|5|3|50|}}|||||||}; -{izthiel_claw|items_misc:47|Коготь Изтиля|animal_e||1|1||||||||||||||1|||||{{food|3|6|100|}{foodp|3|10|20|}}||||||||||||||}; -{iqhan_pendant|items_necklaces_1:2|Кулон Икана|neck||1|10|1|||||6|||||||||||||||||||||||||||}; -{shadowfang|items_weapons_3:41|Клык Тени|ssword|3|1|512|1|-20|||4|40|||2|5||||0||||||1|||||{{fatigue_minor|1|3|20|}}||||||||}; -{gloves_life|items_armours_2:1|Перчатки жизненной силы|hnd_lthr|3|1|390|1|9||||5|||||3||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{pot_focus_dmg|items_consumables:39|Зелье концентрации на уроне|pot||1|272||||||||||||||1|||||{{focus_dmg|1|4|100|}}||||||||||||||}; -{pot_focus_dmg2|items_consumables:39|Сильное зелье концентрации на уроне|pot||1|630||||||||||||||1|||||{{focus_dmg|2|4|100|}}||||||||||||||}; -{pot_focus_ac|items_consumables:37|Зелье концентрации на точности|pot||1|210||||||||||||||1|||||{{focus_ac|1|4|100|}}||||||||||||||}; -{pot_focus_ac2|items_consumables:37|Сильное зелье концентрации на точности|pot||1|618||||||||||||||1|||||{{focus_ac|2|4|100|}}||||||||||||||}; -{pot_scaradon|items_consumables:48|Экстракт Скарадона|pot||0|28||||||||||||||1|5|10|||||||||||||||||}; -{remgard_shield_1|items_armours_3:24|Ремгардский щит|shld_mtl_li||0|2189|1|||||-3|||||9|1|||||||||||||||||||||}; -{remgard_shield_2|items_armours_3:24|Ремгардский боевой щит|shld_mtl_li||0|2720|1|||||-3|||||11|1|||||||||||||||||||||}; -{helm_combat1|items_armours:25|Боевой шлем|hd_mtl_li||0|455|1|||||5|||||6||||||||||||||||||||||}; -{helm_combat2|items_armours:25|Улучшенный боевой шлем|hd_mtl_li||0|485|1|||||7|||||6||||||||||||||||||||||}; -{helm_combat3|items_armours:26|Ремгардский боевой шлем|hd_mtl_hv||0|1540|1|1||||-3|-5||||12||||||||||||||||||||||}; -{helm_redeye1|items_armours:24|Шапка красных глаз|hd_lthr||0|1|1|-5|||||||||8||||||||||||||||||||||}; -{helm_redeye2|items_armours:24|Шапка кровавых глаз|hd_lthr||0|1|1|-5|||||||0|1|8||||||||||||||||||||||}; -{helm_defend1|items_armours_3:31|Шлем защитника|hd_mtl_hv||0|1975|1|||||-3|||||8|1|||||||||||||||||||||}; -{helm_protector0|items_armours_3:31|Странно выглядящий шлем|hd_mtl_li|1|1|0|1|-9|||||||0|1|5||||||||||||||||||||||}; -{helm_protector|items_armours_3:31|Темный покровитель|hd_mtl_li|3|0|3119|1|-6|||||||0|1|13|1|||||||||||||||||||||}; -{armour_chain_remg|items_armours_3:13|Ремгардская кольчуга|chmail||0|8927|1|||||-7|||||25||||||||||||||||||||||}; -{armour_cvest1|items_armours_3:5|Бронежилет|bdy_lt||0|1116|1|||||15|||||8||||||||||||||||||||||}; -{armour_cvest2|items_armours_3:5|Ремгардский бронежилет|bdy_lt||0|1244|1|||||17|||||8||||||||||||||||||||||}; -{gloves_leather1|items_armours:38|Перчатки из грубой кожи|hnd_lthr||0|757|1|3||||2|||||6||||||||||||||||||||||}; -{gloves_arulir|items_armours_2:1|Перчатки из кожи Арулира|hnd_lthr||0|1793|1|||||-3|||||7|1|||||||||||||||||||||}; -{gloves_combat1|items_armours:36|Боевые перчатки|hnd_lthr||0|956|1|4||||-5|||||9||||||||||||||||||||||}; -{gloves_combat2|items_armours:36|Улучшенные боевые перчатки|hnd_lthr||0|1204|1|4||||-5|||||10||||||||||||||||||||||}; -{gloves_remgard1|items_armours:37|Ремгардские боевые перчатки|hnd_mtl_li||0|1205|1|4|||||||||8||||||||||||||||||||||}; -{gloves_remgard2|items_armours:37|Заколдованные ремгардские перчатки|hnd_mtl_li||0|1326|1|5||||2|||||8||||||||||||||||||||||}; -{gloves_guard1|items_armours:38|Перчатки стражника|hnd_lthr||1|601|1|||||-9|-5||||14||||||||||||||||||||||}; -{boots_combat1|items_armours:30|Боевые сапоги|feet_mtl_li||0|0|1|||||7|||||7||||||||||||||||||||||}; -{boots_combat2|items_armours:30|Улучшенные боевые сапоги|feet_mtl_li||0|0|1|||||7|||||11||||||||||||||||||||||}; -{boots_remgard1|items_armours:31|Ремгардские сапоги|feet_mtl_hv||0|0|1|4|||||||||12||||||||||||||||||||||}; -{boots_guard1|items_armours:31|Сапоги стражника|feet_mtl_hv||0|0|1||||||||||7|1|||||||||||||||||||||}; -{boots_brawler|items_armours_3:38|Сапоги дебошира|feet_lthr||0|0|1|2|||||4||||7||||||||||||||||||||||}; -{marrowtaint|items_necklaces_1:9|Желегрязь|neck|3|0|4760|1|5|||-1|9|||||9||||||||||||||||||||||}; -{valugha_gown|items_armours_3:2|Шелковый халат Валуга|bdy_clth|3|0|3109|1|5||-1||30|||||-10|||||||||0|||||||||||||}; -{valugha_hat|items_armours_3:1|Мерцающая шляпа Валуга|hd_cloth|3|1|648|1|3||-1||15|||-2|-2|-5||||||||||||||||||||||}; -{hat_crit|items_armours_3:0|Шапка дровосека с пером|hd_cloth|3|0|1|1||||||4||||-5||||||||||||||||||||||}; - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{thorin_bone|items_misc:44|Обгрызанная кость|animal|1|1|0|||||||||||||||||||||||||||||||||}; -{spider|items_misc:40|Мертвый паук|animal||1|1|||||||||||||||||||||||||||||||||}; -{irdegh|items_misc:49|Ядовитая железа Ирдега|animal||1|5|||||||||||||||||||||||||||||||||}; -{arulir_skin|items_misc:39|Кожа Арулира|animal||1|4|||||||||||||||||||||||||||||||||}; -{algangror_rat|items_misc:38|Странно выглядящий хвост крысы|animal|1|1|0|||||||||||||||||||||||||||||||||}; -{oegyth|items_misc:35|Кристалл Oegyth|gem|1|1|0|||||||||||||||||||||||||||||||||}; -{toszylae_heart|items_misc:6|Сердце лича|other|1|1|0|||||||||||||||||||||||||||||||||}; -{potion_rotworm|items_consumables:63|Kazaul rotworm|other|1|1|0|||||||||||||||||||||||||||||||||}; - - diff --git a/AndorsTrail/res/values-ru/content_monsterlist.xml b/AndorsTrail/res/values-ru/content_monsterlist.xml deleted file mode 100644 index 14c970099..000000000 --- a/AndorsTrail/res/values-ru/content_monsterlist.xml +++ /dev/null @@ -1,501 +0,0 @@ - - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{tiny_rat|monsters_rats:0|Маленькая крыса|trainingrat||4|1||2|||10|50|||1|1|||trainingrat|||||||||}; -{cave_rat|monsters_rats:1|Пещерная крыса|crossglen_caverat||4|||5|||10|90|||2|2|||rat|||||||||}; -{tough_cave_rat|monsters_rats:1|Крутая пещерная крыса|crossglen_caverat2||4|||5|||5|90|||3|3|||rat|||||||||}; -{strong_cave_rat|monsters_rats:3|Сильная пещерная крыса|crossglen_caveboss||4|1||20|||5|100|||2|4|10||caveratboss|||||||||}; -{black_ant|monsters_insects:0|Черный муравей|crossglen_ant||1|||3|||10|70|||1|2|||insect|||||||||}; -{small_wasp|monsters_insects:1|Малая оса|crossglen_wasp||1|||4|||10|70|||1|2|||wasp|||||||||}; -{beetle|monsters_insects:4|Жук|crossglen_beetle||1|||4|||10|70|||3|3|||insect|||||||||}; -{forest_wasp|monsters_insects:1|Лесная оса|forestwasp||1|||6|||10|70|||1|2|||wasp|||||||||}; -{forest_ant|monsters_insects:0|Лесной муравей|forestant||1|||4|||10|90|||1|2|10||insect|||||||||}; -{yellow_forest_ant|monsters_insects:2|Желтый лесной муравей|forestant||1|||5|||10|100|||2|2|15||insect|||||||||}; -{small_rabid_dog|monsters_dogs:1|Малая бешеная собака|forestdog||4|||6|||10|90|||2|2|||canine|||||||||}; -{forest_snake|monsters_snakes:1|Лесная змея|forestsnake||7|||7|||10|110|||1|2|10||snake|||||||||}; -{young_cave_snake|monsters_snakes:3|Молодая пещерная змея|cavesnake1||7|||8|||5|110|10|2|2|2|10||snake|||||||||}; -{cave_snake|monsters_snakes:3|Пещерная змея|cavesnake1||7|||12|||5|110|20|2|2|2|15||snake|||||||||}; -{venomous_cave_snake|monsters_snakes:3|Ядовитая пещерная змея|cavesnake2||7|||15|10||5|110|40|2|2|2|10||snake||1||||||{{poison_weak|1|1|10|}}|}; -{tough_cave_snake|monsters_snakes:3|Крутая пещерная змея|cavesnake2||7|||21|||5|110|20|2|2|2|15||snake|||||||||}; -{basilisk|monsters_rats:4|Василиск|cavesnake2_boss||7|||40|||7|40|||3|9|50|2|cavecritter|||||||||}; -{snake_servant|monsters_liches:0|Смотритель за змеями|cavesnake3||6|||35|||5|80|40|3|2|3|10|1|lich1|||||||||}; -{snake_master|monsters_liches:1|Хозяин змей|cavesnake3_boss||6|1||55|||5|60|200|3|1|4|10|4|snakemaster|snakemaster||||||||}; -{rabid_boar|monsters_dogs:6|Бешеный кабан|forestboar||4|||20|||5|110|||3|3|30||canineboss|||||||||}; -{rabid_fox|monsters_dogs:3|Бешеный лис|fox1||4|||25|||5|100|||3|3|50||canine|||||||||}; -{yellow_cave_ant|monsters_insects:2|Желтый пещерный муравей|pitcave1||1|||20|||3|30|||1|1|80||insect|||||||||}; -{young_teeth_critter|monsters_misc:0|Молодая зубастая тварь|pitcave2||7|||15|||2|50|||1|1|70||cavecritter|||||||||}; -{teeth_critter|monsters_misc:0|Зубастая тварь|pitcave2||7|||25|||2|60|10|3|1|1|70||cavecritter|||||||||}; -{young_minotaur|monsters_misc:5|Молодой минотавр|pitcave2||5|||45|||6|20|40|3|4|4|50|2|cavemonster|||||||||}; -{strong_minotaur|monsters_misc:5|Сильный минотавр|pitcave2_boss||5|||53|||6|40|50|3|5|5|50|2|cavemonster|||||||||}; -{irogotu|monsters_liches:0|Ирогот|pitcave_boss||6|1||61|||3|50|40|3|2|5|70|4|irogotu|irogotu||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{lost_spirit|monsters_rltiles2:45|Потерянный дух|minorhaunt1||8|||15|||10|50|||1|2|10|3|haunt|haunt||||||||}; -{lost_soul|monsters_rltiles2:45|Потерянная душа|minorhaunt2||8|||15|||10|50|||1|2|10|4|haunt|||||||||}; -{haunting|monsters_ghost1:0|Преследующий|haunt3||8|||31|10|10|5|120|20|2|1|5|30|1|haunt|||||||||}; -{skeletal_warrior|monsters_skeleton1:0|Скелет-воин|skeleton1||3|||52|10|10|5|60|||1|3|40|1|skeleton|||||||||}; -{skeletal_master|monsters_skeleton2:0|Скелет-вождь|skeletonmaster||3|||52|10|10|5|70|||1|3|30|2|skeleton|||||||||}; -{skeleton|monsters_skeleton1:0|Скелет|skeleton1||3|||35|10|10|10|60|||1|4|40||skeleton|||||||||}; - -{guardian_of_the_catacombs|monsters_rltiles2:45|Хранитель катакомб|catacombguard1||8|1||6|10|10|10|10|||1|6|10|3|catacombguard|catacombguard||||||||}; -{catacomb_rat|monsters_rats:0|Катакомбная крыса|catacombrat1||4|||15|10|10|3|60|||1|1|40||catacombrat|||||||||}; -{large_catacomb_rat|monsters_rats:3|Большие катакомбная крыса|catacombrat1||4|||21|10|10|3|60|10|2|1|2|40||catacombrat|||||||||}; -{ghostly_visage|monsters_ghost1:0|Призрачный лик|catacombguard2||8|||16|10|10|5|20|||1|4|20|2|catacombguard|||||||||}; -{spectre|monsters_rltiles2:45|Призрак|catacombguard2||8|||15|10|10|3|50|||1|5|60|2|catacombguard|||||||||}; -{apparition|monsters_rltiles2:45|Привидение|catacombguard3||8|||17|10|10|3||||1|5|70|2|catacombguard|||||||||}; -{shade|monsters_ghost1:0|Бесплотный дух|catacombguard3||8|||16|10|10|5|20|||1|4|20|3|catacombguard|||||||||}; -{young_gargoyle|monsters_misc:2|Молодые горгульи|catacombguard3||3|||35|10|10|10|110|10|2|2|5|70|1|catacombguard|||||||||}; -{ghost_of_luthor|monsters_liches:2|Призрак Лютора|luthor||6|1||86|10|10|5|120|15|2|2|5|50|3|luthor|luthor||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{mikhail|monsters_mage2:0|Михаил|mikhail||0|||||||||||||||mikhail_start_select||||||||}; -{leta|monsters_men:2|Лета|leta||0|||||||||||||||leta1||||||||}; -{audir|monsters_men:0|Аудир|audir||0||||||||||||||shop_audir|audir1||||||||}; -{arambold|monsters_men:3|Арамболд|arambold||0||||||||||||||shop_arambold|arambold1||||||||}; -{tharal|monsters_men:4|Тарал|tharal||0||||||||||||||shop_tharal|tharal1||||||||}; -{drunk|monsters_rltiles3:14|Пьяница|drunk||0|||||||||||||||drunk1||||||||}; -{mara|monsters_men:7|Мара|mara||0||||||||||||||shop_mara|mara1||||||||}; -{gruil|monsters_rogue1:0|Груил|gruil||0||||||||||||||shop_gruil|gruil1||||||||}; -{leonid|monsters_men:3|Леонид|leonid||0|||||||||||||||leonid1||||||||}; -{farmer|monsters_man1:0|Фермер|crossglen_farmer1||0|||||||||||||||farm1||||||||}; -{tired_farmer|monsters_man1:0|Усталый фермер|crossglen_farmer2||0|||||||||||||||farm2||||||||}; -{oromir|monsters_man1:0|Оромир|oromir||0|||||||||||||||oromir1||||||||}; -{odair|monsters_men:8|Одаир|odair||0|||||||||||||||odair1||||||||}; -{jan|monsters_rltiles3:14|Ян|jan||0|||||||||||||||jan_start_select||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{warden|monsters_men:3|Надзиратель|fallhaven_warden||0|||||||||||||||fallhaven_warden_select_1||||||||}; -{guard|monsters_rltiles3:14|Охранник|fallhaven_guard||0|||||||||||||||fallhaven_guard||||||||}; -{acolyte|monsters_men:4|Псаломщик|fallhaven_priest||0|||||||||||||||fallhaven_priest||||||||}; -{bearded_citizen|monsters_man1:0|Бородатый горожанин|fallhaven_citizen1||0|||||||||||||||fallhaven_citizen1||||||||}; -{old_citizen|monsters_men:2|Старый горожанин|fallhaven_citizen2||0|||||||||||||||fallhaven_citizen2||||||||}; -{tired_citizen|monsters_men:7|Усталый горожанин|fallhaven_citizen4||0|||||||||||||||fallhaven_citizen4||||||||}; -{citizen|monsters_man1:0|Горожанин|fallhaven_citizen3||0|||||||||||||||fallhaven_citizen3||||||||}; -{grumpy_citizen|monsters_men:2|Сердитый горожанин|fallhaven_citizen5||0|||||||||||||||fallhaven_citizen5||||||||}; -{blond_citizen|monsters_men:7|Светловолосый горожанин|fallhaven_citizen6||0|||||||||||||||fallhaven_citizen6||||||||}; -{bucus|monsters_rogue1:0|Букус|bucus||0|||||||||||||||bucus_welcome||||||||}; -{drunkard|monsters_men:0|Пьяница|fallhaven_drunk||0|||||||||||||||fallhaven_drunk||||||||}; -{old_man|monsters_men:5|Старик|fallhaven_oldman||0|||||||||||||||fallhaven_oldman||||||||}; -{nocmar|monsters_men:8|Нокмар|nocmar||0||||||||||||||nocmar|nocmar||||||||}; -{prisoner|monsters_rogue1:0|Заключенный|fallhaven_prisoner||0|||1|1|1|1|0|||0|0||||||||||||}; -{ganos|monsters_rogue1:0|Ганос|ganos||0||||||||||||||shop_ganos|ganos||||||||}; -{arcir|monsters_mage2:0|Арцир|arcir||0|||||||||||||||arcir_start||||||||}; -{athamyr|monsters_men:4|Атамир|athamyr||0|||||||||||||||athamyr||||||||}; -{thoronir|monsters_men2:8|Форонир|thoronir||0||||||||||||||shop_thoronir|thoronir_default||||||||}; -{chapelgoer|monsters_men:6|Сектант|chapelgoer||0|||||||||||||||chapelgoer||||||||}; -{potion_merchant|monsters_mage2:0|Торговец зельями|fallhaven_potions||0||||||||||||||shop_fallhaven_potions|fallhaven_potions||||||||}; -{tailor|monsters_men2:0|Портной|fallhaven_clothes||0||||||||||||||shop_fallhaven_clothes|fallhaven_clothes||||||||}; -{bela|monsters_men:7|Бела|bela||0||||||||||||||shop_bela|bela||||||||}; -{larcal|monsters_men2:2|Ларкар|larcal||0|1||51|10|10|10|25|||1|2|50||larcal|larcal||||||||}; -{gaela|monsters_men2:9|Гаэла|gaela||0|||||||||||||||gaela||||||||}; -{unnmir|monsters_mage2:0|Уннмир|unnmir||0|||||||||||||||unnmir||||||||}; -{rigmor|monsters_men:1|Ригмор|rigmor||0|||||||||||||||rigmor||||||||}; - -{jakrar|monsters_men2:2|Жакрар|fallhaven_lumberjack||0|||||||||||||||fallhaven_lumberjack||||||||}; -{alaun|monsters_mage2:0|Алаун|alaun||0|||||||||||||||alaun||||||||}; -{busy_farmer|monsters_man1:0|Работающий фермер|fallhaven_farmer1||0|||||||||||||||fallhaven_farmer1||||||||}; -{old_farmer|monsters_mage2:0|Старый фермер|fallhaven_farmer2||0|||||||||||||||fallhaven_farmer2||||||||}; -{khorand|monsters_men:3|Хоранд|khorand||0|||||||||||||||khorand||||||||}; - -{vacor|monsters_mage:0|Вакор|vacor||0|1||72|||5|110|||4|8|40|2|vacor|vacor||||||||}; -{unzel|monsters_men:8|Унзел|unzel||0|1||59|||10|80|30|3|5|9|40|2|unzel|unzel||||||||}; -{shady_bandit|monsters_men2:9|Известный бандит|fallhaven_bandit||0|1||45|||5|70|30|3|3|9|50|2|fallhaven_bandit|fallhaven_bandit||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{wild_fox|monsters_dogs:3|Дикая лиса|fox2||4|||25|||5|100|||4|5|40||canine|||||||||}; -{stinging_wasp|monsters_insects:1|Жалящая оса|forestwasp2||1|||15|||10|150|||1|2|60||wasp|||||||||}; -{wild_boar|monsters_dogs:6|Дикий кабан|forestboar2||4|||20|||5|110|||3|3|30||canineboss|||||||||}; -{forest_beetle|monsters_insects:4|Лесной жук|forestbeetle||1|||14|||10|150|||2|4|60|2|insect|||||||||}; -{wolf|monsters_dogs:4|Волк|forestwolf1||4|||30|10|3|5|110|||3|6|30||canine|||||||||}; -{forest_serpent|monsters_snakes:4|Лесная змея|forestserpent1||7|||20|10|5|3|150|30|2|2|3|60||snake2|||||||||}; -{vicious_forest_serpent|monsters_snakes:4|Ядовитая лесная змея|forestserpent2||7|||27|10|5|3|150|30|2|3|4|50||snake2|||||||||}; -{anklebiter|monsters_dogs:6|Пяткокусатель|forestboar3||4|||31|||5|150|||3|9|60|3|canine2|||||||||}; -{flagstone_sentry|monsters_men:3|Флагстоунский часовой|flagstone_sentry||0|||||||||||||||flagstone_sentry||||||||}; -{escaped_prisoner|monsters_men:0|Сбежавший заключенный|prisoner1||0|1||15|||10|50|||3|7|20||prisoner|prisoner1||||||||}; -{starving_prisoner|monsters_misc:11|Голодающий заключенный|prisoner2||0|1||10|||3|60|||3|5|60||prisoner|prisoner2||||||||}; -{bone_warrior|monsters_skeleton1:0|Костяной воин|skeleton2||3|||32|||5|120|||3|9|60|2|skeleton2|||||||||}; -{bone_champion|monsters_skeleton1:0|Костяной боец|skeleton3||3|||49|||5|130|||4|9|60|2|skeleton3|||||||||}; -{undead_warden|monsters_liches:0|Надзиратель нежити|flagstone_guard0||6|1||57|||5|120|20|2|4|8|60|1|flagstone_guard0|flagstone_guard0||||||||}; -{cave_guardian|monsters_rltiles1:16|Пещерный стражник|flagstone_guard1||2|1||61|||5|150|10|3|4|10|90|2|flagstone_guard1|flagstone_guard1||||||||}; -{winged_demon|monsters_demon1:0|Крылатый демон|flagstone_guard2|2x2|2|1||82|||5|90|10|2|4|12|70|5|flagstone_guard2|flagstone_guard2||||||||}; -{narael|monsters_man1:0|Нараэль|narael||0|||||||||||||||narael||||||||}; -{rotting_corpse|monsters_zombie1:0|Гниющий труп|undead1||6|||71|||10|30|50|2|2|5|30|2|undead1|zombie1||||||||}; -{walking_corpse|monsters_zombie1:0|Ходячий мертвец|undead1||6|||90|||10|30|40|2|2|4|30|2|undead1|||||||||}; -{gargoyle|monsters_misc:2|Горгулья|undead1||3|||47|||10|110|10|2|3|7|70|2|undead1|||||||||}; -{fledgling_gargoyle|monsters_misc:1|Птенец горгульи|undead1||3|||35|||10|110|||3|6|60|2|undead1|||||||||}; -{large_cave_rat|monsters_rats:3|Большая пещерная крыса|undeadrat1||4|||21|10|10|3|60|10|2|3|4|40||catacombrat|||||||||}; -{pack_leader|monsters_dogs:5|Вожак стаи|pack_boss||4|1||65|||5|90|20|2|2|10|40|4|pack_boss|||||||||}; -{pack_hunter|monsters_dogs:4|Стайный охотник|pack3||4|||45|||5|90|10|2|2|7|40|3|pack3|||||||||}; -{rabid_wolf|monsters_dogs:4|Бешеный волк|pack2||4|||42|||5|90|||2|6|50|3|pack2|||||||||}; -{fledgling_wolf|monsters_dogs:3|Волк-щенок|pack2||4|||42|||3|70|||2|5|50|3|pack2|||||||||}; -{young_wolf|monsters_dogs:4|Молодой волк|pack1||4|||35|||3|60|||2|5|30|2|pack1|||||||||}; -{hunting_dog|monsters_dogs:2|Охотничья собака|pack1||4|||25|||5|60|||2|5|50||pack1|||||||||}; -{highwayman|monsters_men:8|Разбойник|bandit1||0|||54|||5|90|50|2|2|4|30|2|bandit1|bandit1||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{smug_looking_thief|monsters_men2:9|Элегантно выглядящий вор|tg_thief||0|||||||||||||||thievesguild_thief_1||||||||}; -{thieves_guild_cook|monsters_men:0|Кашевар воровской гильдии|tg_cook||0||||||||||||||shop_thieves_guild_cook|thievesguild_cook_1||||||||}; -{pickpocket|monsters_men:7|Карманник|pickpocket||0|||||||||||||||thievesguild_pickpocket_1||||||||}; -{troublemaker|monsters_men:8|Бузотер|troublemaker||0||||||||||||||shop_troublemaker|thievesguild_troublemaker_1||||||||}; -{farrik|monsters_rogue1:0|Фаррик|farrik||0|||||||||||||||farrik_select_1||||||||}; -{umar|monsters_man1:0|Умар|umar||0|||||||||||||||umar_select_1||||||||}; -{kaori|monsters_men:7|Каори|kaori||0|||||||||||||||kaori_start||||||||}; -{old_vilegard_villager|monsters_men:0|Старый вильгардский житель|vilegard_villager_1||0|||||||||||||||vilegard_villager_1||||||||}; -{grumpy_vilegard_villager|monsters_men:5|Сердитый вильгардский житель|vilegard_villager_2||0|||||||||||||||vilegard_villager_2||||||||}; -{vilegard_citizen|monsters_men:1|Вильгардский житель|vilegard_villager_3||0|||||||||||||||vilegard_villager_3||||||||}; -{vilegard_resident|monsters_men2:0|Вильгардский старожил|vilegard_villager_4||0|||||||||||||||vilegard_villager_4||||||||}; -{vilegard_woman|monsters_men:6|Вильгардская жительница|vilegard_villager_5||0|||||||||||||||vilegard_villager_5||||||||}; -{erttu|monsters_mage2:0|Эртту|erttu||0|||||||||||||||erttu_1||||||||}; -{dunla|monsters_rogue1:0|Дунла|dunla||0||||||||||||||shop_dunla|dunla_default||||||||}; -{tharwyn|monsters_men:7|Фарвин|tharwyn||0||||||||||||||shop_tharwyn|tharwyn_select||||||||}; -{tavern_guest|monsters_men:0|Посетитель таверны|vg_tavern_drunk||0|||||||||||||||vilegard_tavern_drunk_1||||||||}; -{jolnor|monsters_men2:8|Жолнор|jolnor||0||||||||||||||shop_jolnor|jolnor_select_1||||||||}; -{alynndir|monsters_mage2:0|Алинндир|alynndir||0||||||||||||||shop_alynndir|alynndir_1||||||||}; -{vilegard_armorer|monsters_mage2:0|Вильгардский оружейник|vg_armorer||0||||||||||||||shop_vg_armorer|vilegard_armorer_select||||||||}; -{vilegard_smith|monsters_mage2:0|Вильгардский кузнец|vg_smith||0||||||||||||||shop_vg_smith|vilegard_smith_select||||||||}; -{ogam|monsters_men:0|Огам|ogam||0|||||||||||||||ogam_1||||||||}; -{foaming_flask_cook|monsters_men:0|Повар из Пенящейся Бутылки|ff_cook||0|||||||||||||||ff_cook_1||||||||}; -{torilo|monsters_men2:9|Торило|torilo||0||||||||||||||shop_torilo|torilo_1||||||||}; -{ambelie|monsters_men:6|Амбелия|ambelie||0|||||||||||||||ambelie_1||||||||}; -{feygard_patrol|monsters_rltiles3:14|Фейгардский патрульный|ff_guard||0|||||||||||||||ff_guard_1||||||||}; -{feygard_patrol_captain|monsters_men:3|Капитан фейгардского патруля|ff_captain||0|||||||||||||||ff_captain_1||||||||}; -{feygard_patrol_watch|monsters_rltiles3:14|Фейгардский страж патруля|ff_outsideguard||0|1||80|||5|70|||2|7|80|3|ff_outsideguard|ff_outsideguard_select||||||||}; -{wrye|monsters_men:6|Врия|wrye||0|||||||||||||||wrye_select_1||||||||}; -{oluag|monsters_men:8|Олуаг|oluag||0|||||||||||||||oluag_1||||||||}; - -{cave_dwelling_boar|monsters_dogs:6|Пещерный кабан|caveboar1||4|||35|||5|70|||3|8|60|3|canine2|||||||||}; -{hardshell_beetle|monsters_insects:4|Панцирный жук|beetle2||1|||25|||5|50|||0|5|40|9|beetle2|||||||||}; -{young_shadow_gargoyle|monsters_misc:1|Молодая теневая горгулья|shadowgarg1||3|||35|||5|65|8|3|3|9|75|3|shadowgarg1|||||||||}; -{fledgling_shadow_gargoyle|monsters_misc:1|Птенец теневой горгульи|shadowgarg1||3|||36|||5|65|8|3|3|9|75|3|shadowgarg1|||||||||}; -{shadow_gargoyle|monsters_misc:2|Теневая горгулья|shadowgarg2||3|||37|||5|70|8|3|4|10|85|3|shadowgarg1|||||||||}; -{tough_shadow_gargoyle|monsters_misc:2|Крутая теневая горгулья|shadowgarg2||3|||37|||5|70|8|3|4|10|85|4|shadowgarg2|||||||||}; -{shadow_gargoyle_trainer|monsters_liches:0|Дрессировщик теневых горгулий|shadowgarg3||6|||35|||5|90|12|3|3|6|90|5|shadowgarg3|||||||||}; -{shadow_gargoyle_master|monsters_liches:1|Хозяин теневых горгулий|shadowgarg4||6|||35|||5|125|12|3|3|6|90|5|shadowgarg3|||||||||}; -{maelveon|monsters_liches:2|Мелвеон|maelveon||6|1||55|||3|80|15|3|0|12|90|5|maelveon|maelveon||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{puny_caverat|monsters_rats:0|Пещерная крыса|puny_caverat||4|||5|10|5|5|50|||1|1|30||rat|||||||||}; -{rabid_hound|monsters_rltiles2:108|Бешеная собака|forestwolf2||4|||40|10|5|5|110|||3|9|30||canine|||||||||}; -{vicious_hound|monsters_rltiles2:110|Злая собака|forestboar4||4|||31|10|5|5|150|||3|9|60|3|canineboss|||||||||}; -{mountain_wolf|monsters_rltiles2:109|Горный волк|primwolf1||4|||49|10|5|5|150|||3|9|60|3|canine|||||||||}; - -{hatchling_white_wyrm|monsters_rltiles1:118|Детеныш белого змея|wyrm_1||7|||41|10|5|5|75|||4|10|130|5|wyrm_1||1||||||{{fatigue_minor|1|5|10|}}|}; -{young_white_wyrm|monsters_rltiles1:118|Молодой белый змей|wyrm_2||7|||47|10|5|5|75|||4|10|130|5|wyrm_2||1||||||{{fatigue_minor|1|5|20|}}|}; -{white_wyrm|monsters_rltiles1:119|Белый змей|wyrm_3||7|||55|10|5|3|75|||4|10|130|5|wyrm_3||1||||||{{fatigue_minor|1|5|50|}}|}; -{young_aulaeth|monsters_rltiles2:176|Молодой аулет|wyrm_1||5|||105|10|5|5|40|||0|4|30|5|aulaeth||1|1|1|||||}; -{aulaeth|monsters_rltiles2:58|Аулет|wyrm_2||5|||120|10|5|5|40|||0|5|40|6|aulaeth||1|1|1|||||}; -{strong_aulaeth|monsters_rltiles2:58|Сильный аулет|wyrm_3||5|||135|10|5|5|40|||0|5|35|6|aulaeth||1|1|1|||||}; -{wyrm_trainer|monsters_rltiles2:0|Дрессировщик змеев|wyrm_4||6|||69|10|5|3|90|||2|9|90|4|wyrm_4||1|1|1||||{{fatigue_minor|1|10|70|}}|}; -{wyrm_apprentice|monsters_rltiles2:0|Ученик дрессировщика змеев|wyrm_4||6|||69|10|5|5|140|||2|9|90|4|wyrm_4||1|1|1||||{{fatigue_minor|1|10|70|}}|}; -{young_gornaud|monsters_rltiles2:29|Молодой горнод|gornaud_1||5|||70|10|5|5|70|||0|15|50||gornaud_1||1||||||{{dazed|1|5|20|}}|}; -{gornaud|monsters_rltiles2:29|Горнод|gornaud_2||5|||95|10|5|5|70|||0|15|50|4|gornaud_2||1||||||{{dazed|1|5|50|}}|}; -{strong_gornaud|monsters_rltiles2:30|Сильный горнод|gornaud_3||5|||95|10|5|5|70|||0|15|50|5|gornaud_3||1||||||{{dazed|1|5|70|}}|}; -{slithering_venomfang|monsters_snakes:2|Скользящий ядозуб|gornaud_1||7|||35|10|5|3|120|||1|2|90|2|cave_serpent||1||||||{{poison_weak|1|2|20|}}|}; -{scaled_venomfang|monsters_snakes:3|Чешуйчатый ядозуб|gornaud_2||7|||35|10|5|3|150|||2|4|90|2|cave_serpent||1||||||{{poison_weak|1|2|50|}}|}; -{tough_venomfang|monsters_snakes:3|Курутой ядозуб|gornaud_3||7|||41|10|5|3|150|||2|5|90|2|cave_serpent||1||||||{{poison_weak|1|2|50|}}|}; - -{restless_dead|monsters_rltiles1:47|Беспокойный мертвец|restless_dead_1||8|||25|10|5|5|50|80|2|0|3|140|3|restless_dead_1|||||||||}; -{grave_spawn|monsters_rltiles1:49|Могильное отродье|restless_dead_1||2|||45|10|5|5|110|40|2|2|5|35|3|restless_dead_1|||||||||}; -{restless_apparition|monsters_rltiles1:47|Беспокойный призрак|restless_dead_2||8|||29|10|5|3|90|60|3|2|6|10|1|restless_dead_2|||||||||}; -{skeletal_reaper|monsters_rltiles1:27|Скелет-жнец|restless_dead_2||3|||15|10|5|5|150|20|2|0|9|110||restless_dead_2|||||||||}; -{kazaul_spawn|monsters_rltiles1:41|Казаулское отродье|kazaul_1||2|||45|10|5|3|70|50|2|3|5|90|1|kazaul_1|||||||||}; -{kazaul_imp|monsters_rltiles1:45|Казаулский бес|kazaul_2||2|||45|10|5|3|70|40|2|3|7|105|1|kazaul_2|||||||||}; -{kazaul_guardian|monsters_rltiles1:42|Казаулский стражник|kazaul_guardian||2|1||95|10|5|5|70|40|2|3|8|90|3|kazaul_guardian|kazaul_guardian||||||||}; -{graverobber|monsters_karvis2:3|Грабитель могил|bjorgur_bandit||0|1||62|10|5|5|120|||2|6|72|1|bjorgur_bandit|bjorgur_bandit||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{agent1|monsters_men:4|Агент|bwm_agent_1||0|1||||||||||||||bwm_agent_1_start||||||||}; -{agent2|monsters_men:4|Агент|bwm_agent_2||0|1||||||||||||||bwm_agent_2_start||||||||}; -{agent3|monsters_men:4|Агент|bwm_agent_3||0|1||||||||||||||bwm_agent_3_start||||||||}; -{agent4|monsters_men:4|Агент|bwm_agent_4||0|1||||||||||||||bwm_agent_4_start||||||||}; -{agent5|monsters_men:4|Агент|bwm_agent_5||0|1||||||||||||||bwm_agent_5_start||||||||}; -{agent6|monsters_men:4|Агент|bwm_agent_6||0|1||||||||||||||bwm_agent_6_start||||||||}; -{arghest|monsters_rltiles2:81|Аргест|arghest||0|||||||||||||||arghest_start||||||||}; -{tonis|monsters_rltiles1:67|Тонис|tonis||0|||||||||||||||tonis_start||||||||}; - -{moyra|monsters_rltiles1:74|Мойра|moyra||0|||||||||||||||moyra_1||||||||}; -{prim_citizen|monsters_karvis2:6|Примский горожанина|prim_commoner1||0|||||||||||||||prim_commoner1||||||||}; -{prim_commoner|monsters_rltiles1:68|Примский простолюдин|prim_commoner2||0|||||||||||||||prim_commoner2||||||||}; -{prim_resident|monsters_karvis2:2|Примский старожил|prim_commoner3||0|||||||||||||||prim_commoner3||||||||}; -{prim_evoker|monsters_rltiles1:84|Примский заклинатель|prim_commoner4||0|||||||||||||||prim_commoner4||||||||}; -{laecca|monsters_rltiles1:72|Лаесса|laecca||0|||||||||||||||laecca_1||||||||}; -{prim_cook|monsters_karvis2:0|Примский повар|prim_cook||0|||||||||||||||prim_cook_start||||||||}; -{prim_visitor|monsters_rltiles1:63|Примский приезжий|prim_innguest||0|||||||||||||||prim_innguest||||||||}; -{birgil|monsters_rltiles2:81|Биргил|birgil||0||||||||||||||shop_birgil|birgil_1||||||||}; -{prim_tavern_guest|monsters_rltiles1:106|Примский посетитель таверны|prim_tavern_guest1||0|||||||||||||||prim_tavern_guest1||||||||}; -{prim_tavern_regular|monsters_rltiles1:106|Примский завсегдатай таверны|prim_tavern_guest2||0|||||||||||||||prim_tavern_guest2||||||||}; -{prim_bar_guest|monsters_rltiles1:106|Примский посетитель бара|prim_tavern_guest3||0|||||||||||||||prim_tavern_guest3||||||||}; -{prim_bar_regular|monsters_rltiles1:106|Примский завсегдатай бара|prim_tavern_guest4||0|||||||||||||||prim_tavern_guest4||||||||}; -{prim_armorer|monsters_rltiles1:88|Примский оружейник|prim_armorer||0||||||||||||||shop_prim_armorer|prim_armorer||||||||}; -{jueth|monsters_men2:0|Джуф|prim_tailor||0|||||||||||||||prim_tailor||||||||}; -{bjorgur|monsters_karvis2:7|Бьоргур|bjorgur||0|||||||||||||||bjorgur_start||||||||}; -{prim_prisoner|monsters_rltiles2:81|Примский заключенный|prim_prisoner||0|||||||||||||||prim_guard1||||||||}; -{fulus|monsters_karvis2:3|Фулус|fulus||0|||||||||||||||fulus_start||||||||}; -{guthbered|monsters_rltiles1:92|Гатберед|guthbered||0|1||80|10|5|5|70|||4|9|80|4|guthbered|guthbered_start||||||||}; -{guthbereds_bodyguard|monsters_rltiles1:76|Телохранитель Гатбереда|guthbered_guard||0|||||||||||||||guthbered_guard||||||||}; -{prim_weapon_guard|monsters_rltiles1:65|Примский вооруженный охранник|prim_guard1||0|||||||||||||||prim_guard1||||||||}; -{prim_sentry|monsters_rltiles3:14|Примский часовой|prim_guard2||0|||||||||||||||prim_guard2||||||||}; -{prim_guard|monsters_rltiles1:65|Примский охранник|prim_guard4||0|||||||||||||||prim_guard4||||||||}; -{tired_prim_guard|monsters_rltiles1:76|Усталый примский охранник|prim_guard3||0|||||||||||||||prim_guard3||||||||}; -{prim_treasury_guard|monsters_rltiles1:69|Примский охранник сокровищницы|prim_treasury_guard||0|||||||||||||||prim_treasury_guard||||||||}; -{samar|monsters_rltiles2:93|Самар|prim_priest||0||||||||||||||shop_samar|prim_priest||||||||}; -{prim_priestly_acolyte|monsters_rltiles1:83|Примский псаломщик|prim_acolyte||0|||||||||||||||prim_acolyte||||||||}; -{studying_prim_pupil|monsters_rltiles1:74|Обучающийся примский ученик|prim_pupil1||0|||||||||||||||prim_pupil1||||||||}; -{reading_prim_pupil|monsters_rltiles1:74|Читающий примский ученик|prim_pupil2||0|||||||||||||||prim_pupil2||||||||}; -{prim_pupil|monsters_rltiles1:74|Примский ученик|prim_pupil3||0|||||||||||||||prim_pupil3||||||||}; - -{blackwater_entrance_guard|monsters_rltiles3:14|Блеквотский привратник|blackwater_entranceguard||0|||30|10|||||||||||blackwater_entranceguard||||||||}; -{blackwater_dinner_guest|monsters_karvis2:2|Блеквотский обеденный гость|blackwater_guest1||0|||20|10|||||||||||blackwater_guest1||||||||}; -{blackwater_inhabitant|monsters_man1:0|Блеквотский житель|blackwater_guest2||0|||10|10|||||||||||blackwater_guest2||||||||}; -{blackwater_cook|monsters_karvis2:0|Блеквотский повар|blackwater_cook||0|||||||||||||||blackwater_cook||||||||}; -{keneg|monsters_rltiles1:86|Кенег|keneg||0|||||||||||||||keneg||||||||}; -{mazeg|monsters_rltiles1:85|Мазег|mazeg||0||||||||||||||shop_mazeg|mazeg||||||||}; -{waeges|monsters_rltiles1:88|Ваегес|waeges||0||||||||||||||shop_waeges|waeges||||||||}; -{blackwater_fighter|monsters_rltiles1:66|Блеквотский боевик|blackwater_fighter||0|||||||||||||||blackwater_fighter||||||||}; -{ungorm|monsters_rltiles1:83|Унгорм|ungorm||0|||||||||||||||ungorm||||||||}; -{blackwater_pupil|monsters_rltiles1:74|Блеквотский ученик|blackwater_pupil||0|||||||||||||||blackwater_pupil||||||||}; -{laede|monsters_rltiles1:81|Лаед|blackwater_sleephall||0|||||||||||||||laede||||||||}; -{herec|monsters_men2:9|Херец|herec||0||||||||||||||shop_herec|herec_start||||||||}; -{iducus|monsters_rltiles1:87|Идукус|iducus||0||||||||||||||shop_iducus|iducus||||||||}; -{blackwater_priest|monsters_rltiles1:80|Блеквотский священника|blackwater_priest||0|||||||||||||||blackwater_priest||||||||}; -{studying_blackwater_priest|monsters_rltiles1:84|Обучающийся блеквотский священник|blackwater_pupil||0|||||||||||||||blackwater_pupil||||||||}; -{blackwater_guard|monsters_rltiles1:76|Блеквотский охранник|blackwater_guard1||0|||||||||||||||blackwater_guard1||||||||}; -{blackwater_border_patrol|monsters_rltiles1:76|Блеквотский пограничник|blackwater_guard2||0|||||||||||||||blackwater_guard2||||||||}; -{harlenns_bodyguard|monsters_rltiles1:76|Телохранитель Харленна|blackwater_bossguard||0|||||||||||||||blackwater_bossguard||||||||}; -{blackwater_chamber_guard|monsters_men:3|Блеквотский тюремщик|blackwater_throneguard||0|1||||||||||||||blackwater_throneguard||||||||}; -{harlenn|monsters_men2:6|Харленн|harlenn||0|1||80|10|5|5|70|||4|9|80|4|harlenn|harlenn_start||||||||}; -{throdna|monsters_men2:4|Фродна|throdna||0|||||||||||||||throdna_start||||||||}; -{throdnas_guard|monsters_rltiles1:85|Охранник Фродна|throdna_guard||0|||||||||||||||throdna_guard||||||||}; -{blackwater_mage|monsters_rltiles1:80|Блеквотский маг|blackwater_acolyte||0|||||||||||||||blackwater_acolyte||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{young_larval_burrower|monsters_rltiles2:164|Молодая личинка бурителя|larva_1||1|||30|10|5|5|120|35|3|1|6|25||larva_1|||||||||}; -{larval_burrower|monsters_rltiles2:164|Личинка бурителя|larva_2||1|||35|10|5|5|120|35|3|1|6|25||larva_2|||||||||}; -{larval_boss|monsters_rltiles2:164|Сильная личинка бурителя|larva_boss||1|1||35|10|5|5|120|35|3|1|6|25||larva_boss|||||||||}; - -{rivertroll|monsters_rltiles1:104|Речной тролль|rivertroll||5|1||210|10|5|5|120|30|4|2|9|65|7|rivertroll|||||||||}; -{grass_ant|monsters_insects:0|Луговой муравей|fieldcritter_0||1|||29|10|5|3|120|||0|4|80||fieldcritter_0|||||||||}; -{grass_ant2|monsters_insects:2|Крутой луговой муравей|fieldcritter_0||1|||29|10|5|3|125|||1|5|80||fieldcritter_0|||||||||}; -{grass_beetle|monsters_insects:4|Луговой жук|fieldcritter_1||1|||34|10|5|5|120|||0|5|80|3|fieldcritter_1|||||||||}; -{grass_beetle2|monsters_insects:4|Крутой луговой жук|fieldcritter_1||1|||35|10|5|5|125|||1|6|80|4|fieldcritter_1|||||||||}; -{grass_snake|monsters_rltiles2:25|Луговая змея|fieldcritter_2||7|||36|10|5|3|120|||0|6|80||fieldcritter_2|||||||||}; -{grass_snake2|monsters_rltiles2:25|Крутая луговая змея|fieldcritter_2||7|||38|10|5|3|125|||1|7|80||fieldcritter_2|||||||||}; -{grass_lizard|monsters_rltiles2:114|Луговая ящерица|fieldcritter_3||7|||45|10|5|3|120|||0|8|80|3|fieldcritter_3|||||||||}; -{grass_lizard2|monsters_rltiles2:117|Черная луговая ящерица|fieldcritter_3||7|||45|10|5|3|125|||2|9|80|4|fieldcritter_3|||||||||}; - -{keknazar|monsters_misc:9|Кекназар|keknazar||7|1||90|10|5|5|50|20|3|3|9|70|8|keknazar|keknazar||||||||}; - -{crossroads_rat|monsters_rats:0|Крыса|crossroads_rat||4|||5|10|5|5|50|||1|1|30||rat|||||||||}; -{fieldwasp_0|monsters_insects:1|Злющая лесная оса|fieldwasp_0||1|||29|10|5|3|70|60|3|2|6|95||fieldwasp|||||||||}; -{fieldwasp_1|monsters_insects:1|Злющая лесная оса|fieldwasp_1||1|||32|10|5|3|70|70|3|2|6|125||fieldwasp|||||||||}; -{fieldwasp_2|monsters_insects:1|Злющая лесная оса|fieldwasp_2||1|||35|10|5|3|70|75|3|2|6|130||fieldwasp|||||||||}; - -{izthiel_1|monsters_rltiles2:51|Молодой изтиель|izthiel_1||7|||40|10|5|3|70|||2|7|57|5|izthiel||0|||||||}; -{izthiel_2|monsters_rltiles2:49|Изтиель|izthiel_2||7|||45|10|5|3|90|||2|7|58|6|izthiel||0|||||||}; -{izthiel_3|monsters_rltiles2:48|Сильный изтиель|izthiel_3||7|||52|10|5|3|80|||2|7|60|8|izthiel||1||||||{{bleeding_wound|2|4|40|}}|}; -{izthiel_4|monsters_rltiles2:52|Охранник изтиелей|izthiel_4||7|||54|10|5|3|120|||3|7|60|11|izthiel_4||1||||||{{bleeding_wound|3|5|50|}}|}; -{frog_1|monsters_rltiles1:131|Речная лягушка|frog_1||7|||15|10|5|2|150|||0|5|45||frog||0|||||||}; -{frog_2|monsters_rltiles1:131|Крутая речная лягушка|frog_2||7|||17|10|5|2|160|||0|5|49||frog||0|||||||}; -{frog_3|monsters_rltiles1:130|Ядовитая речная лягушка|frog_3||7|||21|10|5|2|165|||0|5|55||frog_3||1||||||{{poison_weak|2|5|30|}}|}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{lostsheep1|monsters_karvis2:8|Овца|tinlyn_lostsheep1||4|1||5|10|5|5|10|||0|1|5||tinlyn_sheep|tinlyn_lostsheep1||||||||}; -{lostsheep2|monsters_karvis2:8|Овца|tinlyn_lostsheep2||4|1||5|10|5|5|10|||0|1|5||tinlyn_sheep|tinlyn_lostsheep2||||||||}; -{lostsheep3|monsters_karvis2:8|Овца|tinlyn_lostsheep3||4|1||5|10|5|5|10|||0|1|5||tinlyn_sheep|tinlyn_lostsheep3||||||||}; -{lostsheep4|monsters_karvis2:8|Овца|tinlyn_lostsheep4||4|1||5|10|5|5|10|||0|1|5||tinlyn_sheep|tinlyn_lostsheep4||||||||}; -{sheep1|monsters_karvis2:8|Овца|tinlyn_sheep||4|1||5|10|5|5|10|||0|1|5||tinlyn_sheep|tinlyn_sheep||||||||}; - -{ailshara|monsters_men:8|Аилшара|ailshara||0||||||||||||||shop_ailshara|ailshara||||||||}; -{arngyr|monsters_rltiles1:65|Арнгир|arngyr||0|||||||||||||||arngyr||||||||}; -{benbyr|monsters_rltiles1:74|Бенбир|benbyr||0|||||||||||||||benbyr||||||||}; -{celdar|monsters_rltiles1:94|Селдар|celdar||0|||||||||||||||celdar||||||||}; -{conren|monsters_karvis2:5|Конрен|conren||0|||||||||||||||conren||||||||}; -{crossroads_backguard|monsters_rltiles1:76|Охранник|crossroads_backguard||0|1||||||||||||||crossroads_backguard||||||||}; -{crossroads_guard|monsters_rltiles1:76|Охранник|crossroads_guard||0|||||||||||||||crossroads_guard||||||||}; -{crossroads_sleepguard|monsters_rltiles1:76|Охранник|crossroads_sleepguard||0|||||||||||||||crossroads_sleepguard||||||||}; -{crossroads_guest|monsters_rltiles1:83|Приезжий|crossroads_guest||0|||||||||||||||crossroads_guest||||||||}; -{erinith|monsters_rltiles1:82|Эринит|erinith||0|||||||||||||||erinith||||||||}; -{fanamor|monsters_men:7|Фанамор|fanamor||0|||||||||||||||fanamor||||||||}; -{feygard_bridgeguard|monsters_men2:4|Фейгардский охранник моста|feygard_bridgeguard||0|||||||||||||||feygard_bridgeguard||||||||}; -{fieldwasp_unique|monsters_insects:1|Злющая лесная оса|fieldwasp_unique||1|1||70|10|5|3|70|200|3|2|6|150||fieldwasp_unique|||||||||}; -{gallain|monsters_man1:0|Галлейн|gallain||0||||||||||||||shop_gallain|gallain||||||||}; -{gandoren|monsters_rltiles1:69|Гандорен|gandoren||0|||||||||||||||gandoren||||||||}; -{grimion|monsters_men2:2|Гримион|grimion||0||||||||||||||shop_grimion|grimion||||||||}; -{hadracor|monsters_men2:2|Хадракор|hadracor||0||||||||||||||shop_hadracor|hadracor||||||||}; -{kuldan|monsters_rltiles1:85|Кулдан|kuldan||0|||||||||||||||kuldan||||||||}; -{kuldan_guard|monsters_rltiles3:14|Охранник Кулдана|kuldan_guard||0|||||||||||||||kuldan_guard||||||||}; -{landa|monsters_men:0|Ланда|landa||0|||||||||||||||landa||||||||}; -{loneford_chapelguard|monsters_rltiles1:78|Охранник часовни|loneford_chapelguard||0|||||||||||||||loneford_chapelguard||||||||}; -{loneford_farmer0|monsters_karvis2:1|Фермер|loneford_farmer0||0|||||||||||||||loneford_farmer0||||||||}; -{loneford_guard0|monsters_rltiles3:14|Охранник|loneford_guard0||0|||||||||||||||loneford_guard0||||||||}; -{loneford_tavern_patron|monsters_karvis2:2|Завсегдатай таверны|loneford_tavern_patron||0|||||||||||||||loneford_tavern_patron||||||||}; -{loneford_villager0|monsters_karvis2:0|Крестьянин|loneford_villager0||0|||||||||||||||loneford_villager0||||||||}; -{loneford_villager1|monsters_karvis2:1|Крестьянин|loneford_villager1||0|||||||||||||||loneford_villager1||||||||}; -{loneford_villager2|monsters_karvis2:3|Крестьянин|loneford_villager2||0|||||||||||||||loneford_villager2||||||||}; -{loneford_villager3|monsters_karvis2:5|Крестьянин|loneford_villager3||0|||||||||||||||loneford_villager3||||||||}; -{loneford_villager4|monsters_men:2|Крестьянин|loneford_villager4||0|||||||||||||||loneford_villager4||||||||}; -{loneford_wellguard|monsters_rltiles1:72|Охранник|loneford_wellguard||0|||||||||||||||loneford_wellguard||||||||}; -{mienn|monsters_rltiles1:87|Мьенн|mienn||0|||||||||||||||mienn||||||||}; -{minarra|monsters_rltiles1:86|Минарра|minarra||0||||||||||||||shop_minarra|minarra||||||||}; -{puny_warehouserat|monsters_rats:1|Складская крыса|puny_warehouserat||4|||5|10|5|5|50|||1|1|30||rat|||||||||}; -{rolwynn|monsters_rltiles1:77|Ролвинн|rolwynn||0|||||||||||||||rolwynn||||||||}; -{sienn|monsters_rltiles1:66|Сьенн|sienn||0|||||||||||||||sienn||||||||}; -{sienn_pet|monsters_misc:0|Питомец Сьенна|sienn_pet||7|||||||||||||||sienn_pet||||||||}; -{siola|monsters_rltiles1:90|Сиола|siola||0||||||||||||||shop_siola|siola||||||||}; -{taevinn|monsters_karvis2:5|Тайвинн|taevinn||0|||||||||||||||taevinn||||||||}; -{talion|monsters_men2:8|Талион|talion||0||||||||||||||shop_talion|talion||||||||}; -{telund|monsters_rltiles1:74|Телунд|telund||0|||||||||||||||telund||||||||}; -{tinlyn|monsters_karvis2:7|Тинлин|tinlyn||0|||||||||||||||tinlyn||||||||}; -{wallach|monsters_rltiles1:75|Уоллах|wallach||0|||||||||||||||wallach||||||||}; -{woodcutter_0|monsters_men:0|Дровосек|woodcutter_0||0|||||||||||||||woodcutter_0||||||||}; -{woodcutter_2|monsters_men:0|Дровосек|woodcutter_2||0|||||||||||||||woodcutter_2||||||||}; -{woodcutter_3|monsters_men2:2|Дровосек|woodcutter_3||0|||||||||||||||woodcutter_3||||||||}; -{woodcutter_4|monsters_rltiles1:93|Дровосек|woodcutter_4||0|||||||||||||||woodcutter_4||||||||}; -{woodcutter_5|monsters_men2:2|Дровосек|woodcutter_5||0|||||||||||||||woodcutter_5||||||||}; -{rogorn|monsters_rltiles1:63|Рогорн|rogorn||0|1||145|10|5|3|90|||5|9|120|5|rogorn|rogorn||||||||}; -{rogorn_henchman|monsters_rogue1:0|Приспешник Рогорна|rogorn_henchman||0|1||130|10|5|3|80|||5|8|120|4|rogorn_henchman|rogorn_henchman||||||||}; -{buceth|monsters_men2:7|Буцет|buceth||0|1||75|10|5|3|80|200|2|3|9|120|4|buceth|buceth||||||||}; -{gauward|monsters_mage2:0|Гаувард|gauward||0|||||||||||||||gauward||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{iqhan_1a|monsters_rltiles2:96|Иканский раб-рабочий|iqhan_1||0|||55|10|5|3|110|||2|9|70||iqhan_lesser|||||||||}; -{iqhan_1b|monsters_rltiles2:96|Иканский раб-слуга|iqhan_1||0|||57|10|5|3|120|15|2|2|9|70||iqhan_lesser|||||||||}; -{iqhan_2a|monsters_rltiles2:97|Иканский раб-охранник|iqhan_2||0|||59|10|5|3|130|15|2|2|9|70||iqhan_lesser|||||||||}; -{iqhan_2b|monsters_rltiles2:97|Иканский раб|iqhan_2||0|||62|10|5|3|130|15|2|2|10|70||iqhan_lesser|||||||||}; -{iqhan_3a|monsters_rltiles2:128|Иканский раб-воин|iqhan_3||0|||65|10|5|3|140|15|2|2|11|70||iqhan_lesser|||||||||}; -{iqhan_3b|monsters_rltiles2:129|Иканский мастер|iqhan_3||0|||67|10|5|3|140|20|2|2|12|60||iqhan_lesser|||||||||}; -{iqhan_4a|monsters_rltiles2:129|Иканский мастер|iqhan_4||0|||69|10|5|3|140|20|2|2|13|60||iqhan_lesser|||||||||}; -{iqhan_4b|monsters_rltiles2:133|Иканский мастер|iqhan_4||0|||71|10|5|3|140|20|2|2|15|60||iqhan|||||||||}; -{iqhan_ch_1a|monsters_rltiles2:135|Иканский вызыватель хаоса|iqhan_ch_1||0|||73|10|5|3|140|20|2|2|15|60||iqhan||1||||||{{chaotic_grip|2|5|20|}}|}; -{iqhan_ch_1b|monsters_rltiles2:135|Иканский вызыватель хаоса|iqhan_ch_1||0|||75|10|5|3|150|20|2|2|14|60||iqhan||1||||||{{chaotic_grip|2|5|20|}}|}; -{iqhan_ch_2a|monsters_rltiles2:134|Иканский слуга хаоса|iqhan_ch_2||0|||78|10|5|3|150|20|2|2|14|60||iqhan||1||||||{{chaotic_grip|4|5|50|}}|}; -{iqhan_ch_2b|monsters_rltiles2:134|Иканский слуга хаоса|iqhan_ch_2||0|||79|10|5|3|150|25|2|2|13|75||iqhan||1||||||{{chaotic_grip|4|5|50|}}|}; -{iqhan_ch_3a|monsters_rltiles2:136|Иканский мастер хаоса|iqhan_ch_3||0|||83|10|5|3|170|25|2|2|13|75||iqhan_master||1||||||{{chaotic_grip|4|5|50|}}|}; -{iqhan_ch_3b|monsters_rltiles2:137|Иканский мастер хаоса|iqhan_ch_3||0|||85|10|5|3|170|25|2|2|13|75||iqhan_master||1||||||{{chaotic_grip|4|5|50|}}|}; -{iqhan_chb_1a|monsters_rltiles1:19|Иканский зверь хаоса|iqhan_chb_1||3|||122|10|10|10|150|10|3|0|15|45|9|iqhan_beast||1||||||{{chaotic_grip|5|5|50|}}|}; -{iqhan_chb_1b|monsters_rltiles1:19|Иканский зверь хаоса|iqhan_chb_1||3|||140|10|10|10|150|10|3|0|15|45|9|iqhan_beast||1||||||{{chaotic_grip|5|5|50|}}|}; -{iqhan_greeter|monsters_men:8|Ранцент|iqhan_greeter||0|1||||||||||||||iqhan_greeter||||||||}; -{iqhan_boss|monsters_rltiles1:5|Иканский поработитель хаоса|iqhan_boss||6|1||120|10|5|3|170|30|2|2|13|75|2|iqhan_boss|iqhan_boss|1||||||{{chaotic_grip|7|5|50|}{chaotic_curse|3|5|50|}}|}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{cbeetle_1|monsters_rltiles2:63|Молодой жук-падальщик|scaradon_1||1|||45|10|5|5|65|||0|5|30|9|scaradon|||||||||}; -{cbeetle_2|monsters_rltiles2:63|Жук-падальщик|scaradon_1||1|||51|10|5|5|75|||0|5|30|9|scaradon|||||||||}; -{scaradon_1|monsters_rltiles1:98|Молодой скарадон|scaradon_1||1|||32|10|5|3|50|||0|4|30|15|scaradon|||||||||}; -{scaradon_2|monsters_rltiles1:98|Малый скарадон|scaradon_2||1|||35|10|5|3|50|||1|4|30|15|scaradon|||||||||}; -{scaradon_3|monsters_rltiles1:97|Скарадон|scaradon_2||1|||35|10|5|3|50|||0|4|30|17|scaradon|||||||||}; -{scaradon_4|monsters_rltiles1:97|Крутой скарадон|scaradon_2||1|||37|10|5|3|50|||1|4|30|17|scaradon|||||||||}; -{scaradon_5|monsters_rltiles1:97|Панцирный скарадон|scaradon_3||1|||38|10|5|3|50|||1|5|30|18|scaradon_b|||||||||}; - -{mwolf_1|monsters_dogs:3|Щенок горного волка|mwolf_1||4|||45|10|5|5|80|10|2|2|7|40|3|mwolf|||||||||}; -{mwolf_2|monsters_dogs:3|Молодой горный волк|mwolf_1||4|||52|10|5|5|80|10|2|3|7|44|3|mwolf|||||||||}; -{mwolf_3|monsters_dogs:2|Молодая горная лиса|mwolf_1||4|||56|10|5|5|80|10|2|3|7|48|4|mwolf|||||||||}; -{mwolf_4|monsters_dogs:2|Горная лиса|mwolf_2||4|||60|10|5|5|85|10|2|3|8|52|4|mwolf|||||||||}; -{mwolf_5|monsters_dogs:2|Свирепая горная лиса|mwolf_2||4|||64|10|5|3|85|10|2|3|8|54|5|mwolf|||||||||}; -{mwolf_6|monsters_dogs:4|Бешеный горный волк|mwolf_2||4|||67|10|5|3|90|10|2|3|9|56|5|mwolf|||||||||}; -{mwolf_7|monsters_dogs:4|Сильный горный волк|mwolf_3||4|||73|10|5|3|90|10|2|3|9|57|6|mwolf|||||||||}; -{mwolf_8|monsters_dogs:4|Свирепый горный волк|mwolf_3||4|||78|10|5|3|90|10|2|3|10|59|6|mwolf_b|||||||||}; - -{mbrute_1|monsters_rltiles2:35|Молодой горный зверь|mbrute_1||5|||148|10|5|5|70|20|2.5|0|14|60|4|mbrute|||||||||}; -{mbrute_2|monsters_rltiles2:35|Слабый горный зверь|mbrute_1||5|||157|10|5|5|70|20|2.5|0|14|60|4|mbrute|||||||||}; -{mbrute_3|monsters_rltiles2:36|Белошерстный горный зверь|mbrute_1||5|||166|10|5|5|70|20|2.5|0|14|60|4|mbrute|||||||||}; -{mbrute_4|monsters_rltiles2:35|Горный зверь|mbrute_2||5|||175|10|5|5|70|20|2.5|0|14|60|4|mbrute|||||||||}; -{mbrute_5|monsters_rltiles2:36|Большой горный зверь|mbrute_2||5|||184|10|5|5|70|20|2.5|0|14|60|4|mbrute|||||||||}; -{mbrute_6|monsters_rltiles2:34|Быстрый горный зверь|mbrute_2||5|||82|12|5|3|80|20|2.5|0|14|60|4|mbrute|||||||||}; -{mbrute_7|monsters_rltiles2:34|Резвый горный зверь|mbrute_3||5|||93|12|5|3|80|20|2.5|0|15|60|4|mbrute|||||||||}; -{mbrute_8|monsters_rltiles2:34|Агрессивный горный зверь|mbrute_3||5|||104|12|5|3|80|20|2.5|1|15|60|4|mbrute|||||||||}; -{mbrute_9|monsters_rltiles2:33|Сильные горный зверь|mbrute_3||5|||115|10|5|3|80|20|2.5|1|15|60|4|mbrute|||||||||}; -{mbrute_10|monsters_rltiles2:33|Крутой горный зверь|mbrute_4||5|||126|10|5|3|80|30|3|2|15|60|4|mbrute|||||||||}; -{mbrute_11|monsters_rltiles2:33|Бесстрашный горный зверь|mbrute_4||5|||137|10|5|3|80|30|3|2|15|60|4|mbrute_b|||||||||}; -{mbrute_12|monsters_rltiles2:33|Разъяренный горный зверь|mbrute_4||5|||148|10|5|3|80|40|3|2|16|60|4|mbrute_b|||||||||}; - -{erumen_1|monsters_rltiles2:114|Молодая эрумская ящерица|erumen_1||7|||45|10|5|3|125|||2|9|80|4|erumen|||||||||}; -{erumen_2|monsters_rltiles2:114|Пятнистая эрумская ящерица|erumen_1||7|||45|10|5|3|125|||2|9|80|4|erumen|||||||||}; -{erumen_3|monsters_rltiles2:114|Эрумская ящерица|erumen_2||7|||45|10|5|3|125|||2|9|80|4|erumen|||||||||}; -{erumen_4|monsters_rltiles2:115|Сильная эрумская ящерица|erumen_2||7|||79|10|5|3|125|||2|9|80|4|erumen|||||||||}; -{erumen_5|monsters_rltiles2:115|Мерзкая эрумская ящерица|erumen_3||7|||89|10|5|3|150|||2|9|80|4|erumen|||||||||}; -{erumen_6|monsters_rltiles2:117|Крутая эрумская ящерица|erumen_3||7|||91|10|5|3|125|||2|9|90|8|erumen|||||||||}; -{erumen_7|monsters_rltiles2:117|Закаленная эрумская ящерица|erumen_4||7|||93|10|5|3|125|||2|9|90|12|erumen_b||||||||{{bleeding_wound|3|3|50|}}|}; - -{plaguesp_1|monsters_rltiles2:61|Слабый червемор|plaguespider_1||1|||55|10|5|3|80|60|3|1|6|140||plaguespider||1||||||{{contagion|1|5|70|}{blister|1|5|20|}}|}; -{plaguesp_2|monsters_rltiles2:61|Червемор|plaguespider_1||1|||57|10|5|3|80|60|3|1|6|140||plaguespider||1||||||{{contagion|3|5|70|}{blister|2|5|20|}}|}; -{plaguesp_3|monsters_rltiles2:61|Крутой червемор|plaguespider_1||1|||59|10|5|3|80|60|3|1|6|140||plaguespider||1||||||{{contagion|3|5|70|}{blister|2|5|20|}}|}; -{plaguesp_4|monsters_rltiles2:61|Черный червемор|plaguespider_2||1|||61|10|5|3|80|60|3|1|6|150||plaguespider||1||||||{{contagion|4|5|70|}{blister|3|5|20|}}|}; -{plaguesp_5|monsters_rltiles2:151|Чумоход|plaguespider_2||1|||62|10|5|3|80|60|3|2|6|150||plaguespider||1||||||{{contagion|4|5|70|}{blister|3|5|20|}}|}; -{plaguesp_6|monsters_rltiles2:151|Панцирный чумоход|plaguespider_2||1|||63|10|5|3|80|60|3|2|6|150||plaguespider||1||||||{{contagion|5|5|70|}{blister|4|5|20|}}|}; -{plaguesp_7|monsters_rltiles2:151|Крутой чумоход|plaguespider_3||1|||64|10|5|3|80|70|3|2|6|155||plaguespider||1||||||{{contagion|5|5|70|}{blister|4|5|20|}}|}; -{plaguesp_8|monsters_rltiles2:153|Шерстистый чумоход|plaguespider_3||1|||65|10|5|3|80|70|3|2|6|155||plaguespider||1||||||{{contagion|6|5|70|}{blister|5|5|50|}}|}; -{plaguesp_9|monsters_rltiles2:153|Крутой шерстистый чумоход|plaguespider_3||1|||66|10|5|3|80|70|3|2|7|160||plaguespider||1||||||{{contagion|6|5|70|}{blister|5|5|50|}}|}; -{plaguesp_10|monsters_rltiles2:151|Мерзкий чумоход|plaguespider_4||1|||67|10|5|3|85|70|3|2|7|160||plaguespider||1||||||{{contagion|6|5|70|}{blister|5|5|50|}}|}; -{plaguesp_11|monsters_rltiles2:153|Гнездовой чумоход|plaguespider_4||1|||68|10|5|3|85|70|3|2|7|165||plaguespider||1||||||{{contagion|6|5|70|}{blister|5|5|50|}}|}; -{plaguesp_12|monsters_rltiles2:38|Смотритель за чумоходами|plaguespider_5||6|||65|10|5|3|85|120|3|2|7|165||plaguespider||1||||||{{contagion|7|5|70|}{blister|6|5|50|}}|}; -{plaguesp_13|monsters_rltiles2:38|Хозяин чумоходов|plaguespider_6||6|||65|10|5|3|85|120|3|2|8|175|2|plaguespider_b||1||||||{{contagion|7|5|70|}{blister|6|5|50|}}|}; - -{allaceph_1|monsters_rltiles2:101|Молодой аллацеф|allaceph_1||2|||90|10|5|3|80|40|2|3|7|105|1|allaceph||1|4|4||||{{feebleness_minor|2|3|20|}}|}; -{allaceph_2|monsters_rltiles2:101|Аллацеф|allaceph_1||2|||94|10|5|3|80|40|2|3|7|105|1|allaceph||1|4|4||||{{feebleness_minor|2|3|20|}}|}; -{allaceph_3|monsters_rltiles2:102|Сильный аллацеф|allaceph_2||2|||101|10|5|3|80|40|2|3|7|105|2|allaceph||1|4|4||||{{feebleness_minor|2|3|20|}}|}; -{allaceph_4|monsters_rltiles2:102|Крутой аллацеф|allaceph_2||2|||111|10|5|3|80|40|2|3|7|110|2|allaceph||1|4|4||||{{feebleness_minor|3|3|20|}}|}; -{allaceph_5|monsters_rltiles2:103|Сияющий аллацеф|allaceph_3||2|||124|10|5|3|80|40|2|3|7|110|3|allaceph_b||1|6|6||||{{feebleness_minor|3|3|20|}}|}; -{allaceph_6|monsters_rltiles2:103|Древний аллацеф|allaceph_3||2|||133|10|5|3|80|40|2|3|7|115|3|allaceph_b||1|7|7||||{{feebleness_minor|3|3|20|}}|}; -{vaeregh_1|monsters_rltiles1:42|Вайрег|allaceph_4||2|||149|10|5|3|80|40|2|2|7|120|4|allaceph||1|10|10||||{{feebleness_minor|4|3|20|}}|}; - -{irdegh_sp_1|monsters_rltiles2:26|Ирдегское отродье|irdegh_spawn||7|||57|12|5|3|120|||0|6|80||irdegh_spawn||1||||||{{poison_irdegh|2|3|10|}}|}; -{irdegh_sp_2|monsters_rltiles2:26|Ирдегское отродье|irdegh_spawn||7|||68|12|5|3|120|||0|6|80||irdegh_spawn||1||||||{{poison_irdegh|2|3|10|}}|}; -{irdegh_1|monsters_rltiles2:15|Ирдег|irdegh_1||7|||115|10|5|3|120|||3|7|60|10|irdegh||1||||||{{poison_irdegh|3|4|50|}}|}; -{irdegh_2|monsters_rltiles2:15|Ядовитый ирдег|irdegh_2||7|||120|10|5|3|120|||3|7|60|11|irdegh||1||||||{{poison_irdegh|3|4|50|}}|}; -{irdegh_3|monsters_rltiles2:14|Прокалывающий ирдег|irdegh_3||7|||125|10|5|3|120|10|2|3|7|60|11|irdegh||1||||||{{poison_irdegh|3|4|50|}}|}; -{irdegh_4|monsters_rltiles2:14|Древний прокалывающий ирдег|irdegh_4||7|||130|10|5|3|120|30|2|3|7|60|14|irdegh_b||1||||||{{poison_irdegh|3|4|70|}}|}; - -{maonit_1|monsters_rltiles1:104|Маонитский тролль|maonit_1||5|||255|5|5|5|65|10|3|1|20|20|4|maonit|||||||||}; -{maonit_2|monsters_rltiles1:104|Гигантский маонитский тролль|maonit_1||5|||270|5|5|5|65|10|3|1|20|20|4|maonit|||||||||}; -{maonit_3|monsters_rltiles1:104|Сильный маонитский тролль|maonit_2||5|||285|5|5|5|65|20|3|1|20|20|5|maonit|||||||||}; -{maonit_4|monsters_rltiles1:107|Маонитский зверь|maonit_2||5|||290|5|5|5|65|20|3|1|20|20|5|maonit|||||||||}; -{maonit_5|monsters_rltiles1:107|Крутой маонитский зверь|maonit_3||5|||310|5|5|5|65|30|3|1|20|20|6|maonit||1||||||{{stunned|1|3|10|}}|}; -{maonit_6|monsters_rltiles1:107|Сильный маонитский зверь|maonit_3||5|||320|5|5|5|65|30|3|1|20|20|6|maonit||1||||||{{stunned|1|3|10|}}|}; -{arulir_1|monsters_rltiles1:13|Арулир|arulir_1||5|||325|5|5|5|70|30|3|1|20|20|8|arulir||1||||||{{stunned|1|3|20|}}|}; -{arulir_2|monsters_rltiles1:13|Гигантский арулир|arulir_1||5|||330|5|5|5|70|30|3|1|20|20|8|arulir||1||||||{{stunned|1|3|20|}}|}; - -{burrower_1|monsters_rltiles2:164|Личинка пещерного бурителя|burrower_1||1|||30|10|5|5|95|||1|25|80|2|burrower|||||||||}; -{burrower_2|monsters_rltiles2:164|Пещерный буритель|burrower_1||1|||37|10|5|5|95|||1|25|80|2|burrower|||||||||}; -{burrower_3|monsters_rltiles2:165|Сильная личинка бурителя|burrower_2||1|||44|10|5|5|95|||1|25|80|2|burrower|||||||||}; -{burrower_4|monsters_rltiles2:165|Гигантская личинка бурителя|burrower_3||1|||75|10|5|5|95|||1|25|80|2|burrower|||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{ulirfendor|monsters_rltiles1:84|Улирфендор|ulirfendor||0|1||288|10|5|3|70|30|2|1|16|60|6|ulirfendor|ulirfendor||||||||}; -{gylew|monsters_mage2:0|Гилев|gylew||0|||||||||||||||gylew||||||||}; -{gylew_henchman|monsters_men:8|Приспешник Гилева|gylew_henchman||0|||||||||||||||gylew_henchman||||||||}; -{toszylae|monsters_liches:1|Тозилай|toszylae||6|1||207|8|5|2|80|40|2|2|7|120|4|toszylae|toszylae|1|6|6||||{{feebleness_minor|3|3|20|}}|}; -{toszylae_guard|monsters_rltiles1:20|Сиящий охранник|toszylae_guard||2|1||320|10|5|3|80|40|2|2|7|120|4|toszylae_guard|toszylae_guard|1|5|5||||{{feebleness_minor|2|3|20|}}|}; -{thorin|monsters_rltiles1:66|Торин|thorin||0||||||||||||||shop_thorin|thorin||||||||}; - -{lonelyhouse_sp|monsters_rats:1|Подвальная крыса|lonelyhouse_sp||4|1||79|10|5|3|125|||2|9|180|4|lonelyhouse_sp|||||||||}; -{algangror|monsters_rltiles1:68|Алгангрор|algangror||0|1||241|10|5|3|80|200|2|3|9|120|4|algangror|algangror||||||||}; -{remgard_bridge|monsters_men2:4|Смотритель моста|remgard_bridge||0|1||||||||||||||remgard_bridge||||||||}; - - - diff --git a/AndorsTrail/res/values-ru/content_questlist.xml b/AndorsTrail/res/values-ru/content_questlist.xml deleted file mode 100644 index dea62f8df..000000000 --- a/AndorsTrail/res/values-ru/content_questlist.xml +++ /dev/null @@ -1,345 +0,0 @@ - - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{andor|Поиски Эндора|1|{ - {1|Мой отец, Михаил, говорит, что Эндор не был дома со вчерашнего дня. Я должен поискать его в деревне||0|} - {10|Леонид сказал мне, что он видел Эндора говорящего с Груилем. Я должен пойти спросить Груиля, может он знает больше.||0|} - {20|Груиль хочет, чтобы я принес ему ядовитую железу. Тогда он может рассказать больше. Он сказал мне, что некоторые ядовитые змеи имеют такие железы.||0|} - {30|Груиль сказал мне, что Эндор искал кого-то называемого Умар. Я должен пойти спросить его друга Гаела в Приюте Падших, на востоке.||0|} - {40|Я поговорил с Гаелом в Приюте Падших. Он рассказал что видел Бикуса и спрашивал о гильдии воров.||0|} - {50|Бикус позволил мне пройти в подвал заброшенного дома в Приюте Падших. Я должен поговорить с Умаром.||0|} - {51|Умар в Гильдии Воров Приюта Падших узнал меня, но спутал с Эндором. То есть, Эндор виделся с ним.||0|} - {55|Умар сказал мне, что Эндор ушел повидать знахаря по имени Лодар. Мне стоит поискать его убежище.||0|} - {61|Я слышал историю в Одиноком Броде, согласно которой Эндор туда заглядывал и был заподозрен в причастности к болезни, свирепствующей среди населения. Я не уверен, что это действительно был Эндор. Если это был Эндор, почему он заразил жителей?||0|} - }|}; -{mikhail_bread|Хлеб для Михаила|1|{ - {100|Я должен принести хлеб Михаилу.||1|} - {10|Михаил просил купить буханку хлеба у Мары в таверне.||0|} - }|}; -{mikhail_rats|Крысы!|1|{{100|Убить двух крыс в огороде.|20|1|} - {10|Михаил хочет, чтобы я нашел и убил крыс. Потом - могу и вернуться к Михаилу. Будучи раненым, можно отдохнуть в постели для восстановления здоровья||0|} - }|}; -{leta|Пропавший муж|1|{{10|Лета из деревни Долина Креста хочет, чтобы я поискал ее мужа Оромира.||0|} - {20|Я нашел Оромира в Долине Креста, он позорно прятался от своей жены Леты.||0|} - {100|Я выдал Лете Оромира.|50|1|} - }|}; -{odair|Крысиное нашествие|1|{ - {10|Одаир хочет, чтобы я очистил пещеру в деревне Долина Креста от крыс. Убив самую большую крысу, я могу вернуться к Одаиру.||0|}{100|Я помог Одаиру очистить пещеру от крыс в деревне Долина Креста.|300|1|} - }|}; -{bonemeal|Запрещенные вещества|1|{{10|Леонид в мэрии Долины Креста сказал мне, что несколько недель дней назад в деревне были беспорядки. По-видимому, лорд Геомир запретил любое использование костной муки, как исцеляющего вещества. \n\n Фарал, городской священник, должен знать больше.||0|} - {20|Фарал не хочет говорить о костной муке. Но я мог бы упросить его за 5 крыльев насекомых.||0|} - {30|Фарал рассказал, что костная мука - очень мощное целительное средство, и он весьма огорчен его запрещением. Я должен найти Форонира в Приюте Падших, если я хочу узнать больше. Нужно сказать ему пароль \"Сияние тени\".||0|} - {40|Я поговорил с Форониром в Приюте Падших. Он сможет смешать мне зелье из костной муки, если я принесу ему 5 костей скелета. В заброшенном доме к северу от Приюта Падших должно быть несколько скелетов.||0|} - {100|Я принес кости Форониру. Он теперь в состоянии снабдить меня зельем из костной муки.\nЯ должен быть осторожным при использовании, так как Лорд Геомир запретил его приминение.|900|1|} - }|}; -{jan|Погибшие друзья|1|{ - {10|Ян рассказал мне свою историю о нем, Гандиру и Ироготу. Три бывших друга пошли в дыру за сокровищами, но - поссорились и стали драться. Ирогот убил Гандира в своем гневе. \nЯ должен забрать кольцо Гандира у Ирогота, и отдать Яну, когда оно будет у меня.||0|} - {100|Я принес Яну кольцо Гандира, и отомстил за его друга. Ирогот мертв.|1500|1|} - }|}; -{bucus|Ключ для Лютора|1|{ - {10|Бикус из Приюта Падших что-то зает об Эндоре. Он хочет что-бы я принес ему ключ Лютера из катакомб под церковью Приюта Падших.||0|} - {20|Катакомбы под церковью Приюта Падших заперты. Афамир только у него есть право и мужество спускаться в них. Я должен увидеться с ним на юго-западе от церкви.||0|} - {30|Афамир просит принести ему немного мяса, может тогда он сможет поговорить со мной.||0|} - {40|Я принес немного мяса Афамиру.|700|0|}{50|Афамир дал мне разрешение спуститься в катакомбы под церковью Приюта Падших.||0|} - {100|Я принес Бикусу ключ Лютора.|2150|1|} - }|}; -{fallhavendrunk|Рассказ пьяницы|1|{ - {10|Пьяница возле таверны в Приюте Падших начал рассказывать историю, но вдруг попросил принести ему мёд. Непонятно, к чему он все это говорил.||0|}{100|Пьяница рассказал, что путешествовал с Унмиром. Я должен поговорить с Унмиром.||1|} - }|}; -{calomyran|Секрет Каломирана|1|{ - {10|Старик в Приюте Падших потерял книгу \"Секреты Каломирана\". Я должен найти ее. Может, она в доме Арсира на юге?||0|} - {20|Я нашел вырванную страницу из книги \"Секреты Каломирана\" с именем \'Ларкал\' на форзаце.||0|} - {100|Я вернул старику книгу.|600|1|}}|}; -{nocmar|Утраченные сокровища|1|{ - {10|Унмир сказал мне, что когда-то был путешественником и намекнул, что неплохо бы поговорить с Нокмаром. Его дом на юго-западе от таверны в Приюте Падших.||0|} - {20|Нокмар сказал мне, что когда-то был кузнецом. Но лорд Геомир запретил использование сердечной стали, и теперь он не может ковать свое фирменное оружие.\nЕсли я найду для Нокмара сердечную руду, он снова сможет ковать.||0|} - {200|Я принес сердечную руду Нокмару. Теперь у него появились стальные причиндалы.|1200|1|} - }|}; -{flagstone|Древние секреты|1|{ - {10|Я встретил стражника у крепости Флагстоун. Он рассказал мне о прошлом Флагстоуна, бывшего лагерем для беглых рабов из Горы Галмор. В последнее время флагстоунские нежить и чудища сильно активизировались. Я решил исследовать данный факт. Страж сказал, чтобы я возвращался за помощью, если что.||0|} - {20|Я обнаружил туннель под Флагстоуном, который, кажется, ведет к большой пещере. Пещера охраняется демоном, так что я не могу даже приблизиться. Может быть, страж за пределами Флагстоуна знает больше?||0|} - {30|Страж рассказал мне, что бывший надзиратель носил ожерелье, которым он подозрительно дорожил. На ожерелье, вероятно, заклинание от демона. За расшифровкой заклинания необходимо будет вернуться к стражу.||0|} - {31|Я нашел бывшего надзирателя Флагстоуна на верхнем уровне.||0|} - {40|Я узнал заклинание от демона под Флагстоуном. \"Дневная Тень\".|1600|0|} - {50|Глубоко под Флагстоуном, я нашел источник нежити. Существа рождаются из горя бывших узников Флагстоуна.||0|} - {60|Я нашел одного заключенного, Нараеля, оставшегося в живых в глубинах Флагстоуна. Нараель был гражданином города Нор. Он слишком слаб, чтобы ходить, но щедро вознаградит меня за обнаружение его жены в Норе.|2100|1|} - }|}; -{vacor|Пропавшие части|1|{ - {10|Маг, назвавшийся Вакором, на юго-западе Приюта Падших пытался создать Заклинание разрыва.\nОн был одержим своим заклинанием, говорил про увеличение силы посредством оного.||0|} - {20|Вакор хочет, чтобы я принес ему четыре части Заклинания разрыва, он утверждает, что они были украдены у него. Бандиты должны быть где-то к югу от Приюта Падших.||0|} - {30|Я принес четыре части Заклинания разрыва Вакору.|1200|0|} - {40|Вакор поведал о своем бывшем ученике, Унзеле, который мешает ему. Он попросил меня убить Унзела и принести его перстень, как доказательство. Унзел может быть на юго-западе от Приюта Падших||0|} - {50|Унзел дал мне выбор, идти с ним, или с Вакором.||0|} - {51|Я выбрал сторону Унзела. Я должен отправиться на юго-запад Приюта Падших и поговорить с Вакором об Унзеле и Тени.||0|} - {53|Я начал битву с Унзелем. Я должен принести его перстень Вакору.||0|} - {54|Я начал битву с Вакором. Я должен принести его перстень Унзелу.||0|} - {60|Я убил Унзела и сообщил об этом Вакору.|1600|1|} - {61|Я убил Вакора и сообщил об этом Унзелу.|1600|1|} - }|}; - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{farrik|Ночной визит|1|{ - {10|Фаррик из Гильдии Воров Приюта Падших поведал мне план помощи побегу воров из местной каталажки.||0|} - {20|Фаррик из гильдии воров описал мне детали и я согласился помочь ему. У капитана охраны - очевидные проблемы с алкоголем. По плану, я доставляю специальное пойло в тюрьму и даю в виде взятки капитану.||0|} - {25|Я подготовил питье в гильдии воров.||0|} - {30|Я говорил Фаррику, что я не совсем согласен. Мне придется рассказать капитану охраны об их сомнительном плане.||0|} - {32|Я облагодетельствовал спецпитьем капитана охраны.||0|} - {40|Я сдал капитану охраны воров с их воровским планом освобождения воровских друзей.||0|} - {50|Капитан попросил меня сказать ворам, что уровень безопасности будет понижен сегодня ночью. Мы сможем поймать нескольких воров.||0|} - {60|Я всучил капитану спецпитье. Его должно свалить с копыт на всю ночь, давая ворам освободить друзей.||0|} - {70|Фаррик наградил меня за помощь воровской гильдии.|1500|1|} - {80|Я сообщил Фаррику, что в тюрьме сегодня всю ночь будут хлопать ушами.||0|} - {90|Капитан поблагодарил меня за помощь в поимке преступников. Он сказал, что сообщил остальным ведомтсвам охраны, что я - его помощник.|1700|1|} - }|}; -{lodar|Потеряное зелье|1|{ - {10|Мне нужно найти травника по имени Лодар.Умар из гильдии воров Приюта Падших считает, что мне необхидимо знать пароль для получения доступа к убежищу Лодара через стражников.||0|} - {15|По мнению Умара, стоило бы повидать некого Огама в Вильгарде. Огам может помочь с составлением правильных слов для доступа к убежищу Лодара.||0|} - {20|Я заглянул к Огаму на юго-западе Вильгарда. Он говорил загадками. Возможно, я смогу вытянуть из него какие то детали об убежище Лодара. \'Полпути между Тенью и светом. Создания судьбы.\' и слова \'Длань Тени.\' были среди них. Я не знаю, что они значат.||0|} - }|}; -{vilegard|Доверие и посторонние|1|{ - {10|Люди в Вильгарде очень подозрительны к посторонним. Я заподозрил, что мне стоит встретиться с Йолнором в капелле, если я хочу получить их доверие.||0|} - {20|Я поговорил с Йолнором. Он посоветовал помочь троим людям для повышения моей кармы. И доверия окружающих. Я могу оказать помощь Каори, Врай и, конечно же, Йолнору.||0|} - {30|Я помог всем троим по списку, составленному Йолнором. Теперь люди Вильгарда будут доверять мне чуть более.|2100|1|} - }|}; -{kaori|Поручения Каори|1|{ - {5|Йолнор в Вильгардской капелле рекомендует поговорить с Каори на севере Вильгарда, вдруг она сможет чем-то помочь.||0|} - {10|СевероВильгардская Каори хочет 10 доз костной муки.||0|} - {20|Я принес 10 порций костной муки Каори.|520|1|} - }|}; -{wrye|Сомнительная причина|1|{ - {10|Йолнор в Вильгардской капелле посоветовал перемолвиться с Врай из северного Вильгарда. Она неожиданно вдруг потеряла сына.||0|} - {20|СевероВильгардская Врай рассказала, что ее сын Ринцель потерялся. Она думает, что он умер или же смертельно ранен.||0|} - {30|Врай считает, что королевские гвардейцы из Фейгарда замешаны в его исчезновении; возможно, они его завербовали.||0|} - {40|Врай просит меня найти причну случившегося с сыном.||0|} - {41|Мне стоит заглянуть в тавернну Вильгарда и в притон \"Пенная Фляга\" на севере Вильгарда.|200|0|} - {42|Я услышал, что мальчик заглядывал в Пенную Флягу некоторое время назад. Судя по всему, он отправился на запад от притона.||0|} - {80|Северо-западнее Вильгарда я нашел человека, видевшего, как Ринцель бьется с чудовищами. Ринцель, следовательно, покинул Вильгард по своей воле с целью посмотреть на Фейгард. Об этом нужно доложить Врай на севере Вильгарда.||0|} - {90|Я рассказал Врай правду про ее сына.|520|1|} - }|}; -{jolnor|Шпионы в пене|1|{ - {10|Йолнор из Вильгардской капеллы рассказал мне об охраннике возле Пенной Фляги, он думает, что тот - шпион Фейгардской королевской гвардии. Он просит меня убрать охранника подходящим способом. Таверна находится на севере Вильгарда.||0|} - {20|Я убедил охранника возле Пенной Фляги уйти после конца смены.||0|} - {21|Я начал сражаться с охранником возле Пенной Фляги. Мне нужно будет посмертно принести его кольцо Йолнору для доказательства его исчезновения.||0|} - {30|Я сказал Йолнору, что охранник убрался восвояси.|630|1|} - }|}; - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{bwm_agent|Тайный агент и чудовище|1|{ - {1|Я встретил человека, ищущего помощи для своей деревни \"Черноводная Гора\". Предположительно, на его деревню нападают чудовища и бандиты и жители нуждаются в помощи извне.|||} - {5|Я готов помочь человеку и "Черноводной Горе" разобраться с проблемой.|||} - {10|Мы встретимся у заброшеной шахты. Он проползет через ствол шахты, а я спущусь вслед за ним.|||} - {20|Я пробрался через шахту и встретил его с другой стороны.Он был встревожен и назначил новую встречу возле горы на востоке.|||} - {25|Я услышал историю о Приме и деревне \"Черноводная Гора\", бьющихся друг с другом.|||} - {30|Я должен следовать горной тропе на пути к Черноводной деревне.|||} - {40|Я встретил человека снова на моем пути к Черноводной Горе. Мне предстоит прдолжать подниматься на гору.|||} - {50|Я сделал это. Сквозь и через заснеженые склоны Черноводной Горы. Человек говорил, что мне необходимо преодолеть ее. Следовательно, деревня Черноводная Гора почти достигнута. |||} - {60|Я дошел до поселения возле Черноводной Горы. Осталось поговорить с их атаманов Харленн.|||} - {65|Я поговорил с Харленн в поселении. Судя по всему, оно подвергается атаке множеством монстров, Аулэтом и белыми червями. Но даже это - ничто в сравнении с нападениями людей Прима.|||} - {66|Харленн думает, что жители Прима стоят за атаками чудовищ.|||} - {70|Харленн хочет послать меня с сообщением к Гутберду в Прим.Если примовцы не прекратят атаки на Черноводную, к ним будут приняты меры. Я иду говорить с Гутбердом в Прим.|||} - {80|Гутберд запретил своим людям помогать чудовищам. Я возвращаюсь доложить Харленн.|||} - {90|Харленн уверена, что примовцы все еще помогают монстрам.|||} - {95|Харленн посылает меня в Прим проверить, готовятся ли там к нападению на деревню. Необходимо искать подсказки возле Гутберда.|||} - {100|Я нашел несколько планов про наем солдат и нападение на поселение возле Черноводной. Возвращаюсь немедленно доложить Харленн.|||} - {110|Харленн благодарит меня за разведку.|1150||} - {120|Чтоб прекратить нападения на Черноводную, Харленн заказала мне убийство Гутберда.|||} - {130|Я начал сражаться с Гутбердом.|||} - {131|Я рассказал Гутберду, что послан убить его, но оставлю его в живых. Он горячо поглагодарил меня и покинул Прим.|2100||} - {149|Я доложил Харленн об уходе Гутберда.|||} - {150|Харленн поблагодарила меня за помощь. Хочется надеяться, нападения на деревню возле Черноводной теперь прекратятся.|5000||} - {240|Я теперь доверенное лицо в окрестностях Черноводной Горы и могу пользоваться всем, что мне могут предоставить.||1|} - {250|Я не смогу помочь людям поселения у Черноводной Горы.||1|} - {251|С тех пор, как я помогаю Приму, Харленн не разговаривает со мной.||1|} - }|}; -{prim_innquest|Хорошо отдохнувший.|1|{ - {10|Я поговорил с поваром в Приме у основания Черноводной Горы. Задняя комната сдается, но занята неким Архестом. Схожу, спрошу у него, не раздумал ли он снимать ее. Повар, к тому же, посоветовал юго-запад Прима.|||} - {20|Архест не желает съезжать из комнаты. Но сказал, что почти убежден в возможности использования мной комнаты за соответствующую плату.|||} - {30|Архест нуждается в пяти бутылках молока. Пожалуй, я смогу отыскать его в окрестных деревнях.|||} - {40|Принес молоко Архесту. Он разрешил пользоваться его комнатой, я могу в ней отдыхать. Следует еще поговорить с гостиничным поваром.|500||} - {50|Я сообщил повару, что Архест разрешил мне пользоваться его комнатой.||1|} - }|}; -{prim_hunt|Туманная цель|1|{ - {10|Только по выходу из заброшенной шахты по пути к Черноводной Горе я встретил человека из Прима. Он умолял меня о помощи.|||} - {11|Прим нуждается во внешнем союзнике для отражения атак чудовищ. В связи с этим необходимо переговорить с Гутбердом, если все же я желаю оказать поддержку.|||} - {15|Гутберд находится в ратуше. Мне нужно всего лишь найти каменный дом в центре города.|||} - {20|Мы побеседовали с Гутбердом об истории Прима, который, по его словам, подвергался постоянным нападениям со стороны черноводцев.|||} - {25|Гутберд считает необходимым поговорить с мастером над оружием Черноводной Горы Харленн на тему \"почему (или зачем) они призывают горнодских чудовищ против Прима\".|||} - {30|Я поговорил с Харленн о нападениях на Прим. Она запретила своим людям в Черноводной Горе даже думать о Приме. Я возвращаюсь с докладом к Гутберду.|||} - {40|Гутберд все еще пребывает в уверенности, что люди Черноводной причастны к нападениям.|||} - {50|Гутберд посылает меня найти факты подготовки большого нападения на Прим со стороны Черноводной. Мне следует искать возле штаба Харленн, оставаясь незамеченным.|||} - {60|Возле штаба Харленн я нашел план нападения на Прим. Немедленно возвращаюсь доложить Гутберду.|||} - {70|Гутберд поблагодарил меня на помощь в нахождении доказательств агрессивных намерений соседей.|1150||} - {80|В целях прекращения нападений на Прим, Гутберд заказал мне голову Харленн.|||} - {90|Я начал сражаться с Харленн.|||} - {91|Я сказал Харленн, что послан убить его, но позволю ему жить. Он горячо поблагодарил меня и покинул поселение.|2100||} - {99|Я доложил Гутберду, что Харленн больше нет.|||} - {100|Гутберд поблагодарил меня за помощь Приму. Есть надежда, что нападения на Прим теперь прекратятся. В качестве благодарности он подарил мне кое-какие вещи и обещал радушный прием на будущее, так что я смогу пользоваться гостиницей в поселении Черноводная Гора.|5000||} - {140|Я показал знак "Радушный прием" охраннику и получил беспрепятственный вход в гостиничную комнату.|||} - {240|Я теперь - доверенное лицо в Приме и могу пользоваться всеми службами.||1|} - {250|Я решил не помогать населению Прима.||1|} - {251|С тех пор, как я работаю в поселении Черноводной Горы, Гутберд не разговаривает со мной.||1|} - }|}; -{kazaul|Огни в темноте|1|{ - {8|Я проделал путь до гостиничного номера и обнаружил лидера группы магов, человека по имени Тродна.|||} - {9|Тродна очень заинтересовано в ком-то (или в чем-то), именуемом Казаул, и в содержании ритуала, называемого этим именем.|||} - {10|Я готов помочь Тродну найти сведения о ритуале, в частях манускрипта, разбросанного по частям в районе гор. Части ритуала Казаул слудует искать на горной тропе от Черноводной горы к Приму.|||} - {11|Мне необходимо найти две части заклинания и три части, описывающие сам ритуал, и вернуться к Тродну, как только отыщу все.|||} - {21|Я нашел первую половину заклинания Казаульского ритуала.|||} - {22|Я нашел вторую половину заклинания Казаульского ритуала.|||} - {25|Я нашел первую часть описания Казаульского ритуала..|||} - {26|Я нашел вторую часть описания Казаульского ритуала.|||} - {27|Я нашел третью часть описания Казаульского ритуала.|||} - {30|Тродна поблагодарил меня за найденные осколки древнего знания.|3600||} - {40|Тродна просит меня положить конец размножению Казаулов, имеющему место быть неподалеку от Черноводной Горы. Там должна быть гробница у основания, которую необходимо исследовать.|||} - {41|Мне был выдан пузырек Святой Воды, который необходимо применить в гробнице Казаулов. Мне следует вернуться к Тродну, как только я найду и освящу гробницу.|||} - {50|В гробнице у основания Черноводной Горы я встретил стражника Казаула. Напевом заклинания Казаулов, я смог заставить стражника атаковать меня.|||} - {60|Я освятил гробницу Казаулов.|3200||} - {100|Я увидел несколько форм оценки Тродном моей помощи в изучении ритуала и освящении гробницы. Но он все еще выглядит озабоченным проблемой казаулов. И с этим я ничего не могу поделать.||1|} - }|}; -{bwm_wyrms|Нет бессилию!|1|{ - {10|Херек на втором этаже деревни Черноводная Гора изучает белых змей, обитающих вокруг поселения. По-видимому, некоторые из змей имеют когти. Мне придется поубивать некоторых, чтобы найти их.|||} - {20|Я отдал 5 когтей белых змей Хереку.|||} - {30|Херек закончил изготовление восстановительного зелья, которое очень пригодится в сражениях со змеями в будущем.|1500|1|} - }|}; -{bjorgur_grave|Очнувшийся от сна.|1|{ - {10|Бьоргур в Приме думает, что кто-то потревожил могилу предков, которая находится юго-западнее Прима, сразу за шахтой.|||} - {15|Бьоргур просит меня проверить гробницу и убедиться, что фамильный кинжал все еще в безопасности в усыпальнице.|||} - {20|Фулус в Приме тоже интересуется кинжалом Бьоргура, которым обладал еще бьоргуровский дед.|||} - {30|Я встретил человека, который держал в руках странно выглядящий кинжал в нижних частях гробницы. Он, должно быть, украл этот кинжал из усыпальницы.|||} - {40|Я положил кинжал на место в усыпальнице. Неупокоенные души теперь менее беспокойны, что достаточно странно.|200||} - {50|Бьоргур поблагодарил меня за помощь. Он сказал мне, что следует также поискать его родственников в Фейгарде.|1100|1|} - {51|Я сказал Фулусу, что, помогая Бьоргуру, вернул фамильный клинок на его законное место.|||} - {60|Я отдал кинжал Бьоргура Фулусу. Он поблагодарил меня и вознаградил ... в некоторой степени.|1700|1|} - }|}; - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{erinith|Глубокая рана|1|{ - {10|Северо-восточнее Одинокого Креста, я встретил Эринит, разбившего лагерь. Судя по всему, на него напали ночью и он потерял книгу.|||} - {20|Я готов помочь Эринит в поисках книги. По его словам, он потерял ее в радиусе нескольких деревьев от лагеря, возможно, к северу от своей стоянки.|||} - {21|Я готов помочь Эринит в поисках книги за 200 золотых. По его словам, он потерял ее в радиусе нескольких деревьев от лагеря, возможно, к северу от своей стоянки.|||} - {30|Я вернул книгу Эринит.|2000||} - {31|Ему также требуется помощь с ранами, которые никак не заживают. Ему нужна большое зелье здоровья или же четыре стандартных.|||} - {40|Я дал Эринит зелье из костной муки для лечения ран. Его слегка напугало использование запрещенного лордом Геомиром зелья.|||} - {41|Я дал Эринит большое зелье здоровья для излечения ран.|||} - {42|Я дал Эринит четыре обычных зелья здоровья для излечения ран.|||} - {50|Раны затянулись и Эринит поблагодарил меня за помощь.|1500|1|} - }|}; -{hadracor|Пустошь|1|{ - {10|По дороге к Башне Плоти, к западу от поста на перекрестке, я встретил группу дровосеков под предводительством Хадракора. Хадракору нужна помощь в отмщении нескольким осам, которые напали на его людей, когда они валили лес. чтобы помочь им отомстить, Мне придется искать больших ос неподалеку от бивака доровосеков и принести Хадракору пять осиных жал. |||} - {20|Я принес пять гигантских осиных жал Хадракору.|||} - {21|Я принес шесть гигантских осиных жал Хадракору. За помощь он наградил меня парой рукавиц.|||} - {30|Хадракор поблагодарил меня за помощь ему и остальным дровосекам. Также, он пообещал торговать со мной.||1|} - }|}; -{tinlyn|Потерянная овца|1|{ - {10|По дороге в Фейгард, неподалеку от Фейгардского моста, я встретил пастуха по имени Тинлин. Тот пожаловался, что четыре его овцы сбежали и не собираются возвращаться. И он не может отлучиться на их поиски.|||} - {15|Я согласился помочь Тинлину найти четырех овец.|||} - {20|Я нашел одну из потеряных овец.|||} - {21|Я нашел одну из потеряных овец.|||} - {22|Я нашел одну из потеряных овец.|||} - {23|Я нашел одну из потеряных овец.|||} - {25|Я нашел всех потеряных овец.|||} - {30|Тинлин поблагодарил меня за находку.|3500|1|} - {31|Тинлин поблагодарил меня за поиски пропавших овец, но ничем не вознаградил.|2000|1|} - {60|На меня напала одна из бешеных овец Тинлина и теперь я не смогу вернуть всех четырех ему.||1|} - }|}; -{benbyr|Обкорнали|1|{ - {10|Я встретил Бенбира возле Поста на Перекрестке. Он хотел свести счеты со старым \"бизнес-партнером\", Тинлином. Бенбир просит убить всех овец Тинлина.|||} - {20|Я согласился помочь Бенбиру найти тинлиновских овец и убить восемь из них. Найти их можно серверо-западнее Поста на Перекрестке.|||} - {21|Я стал бросаться на овец. Я смогу вернуться к Бенбиру, когда убью их восемь.|||} - {30|Бенбир был взволнован известием, что все овцы Тинлина мертвы.|5200|1|} - {60|Я отказался помогать убивать овец для Бенбира.||1|} - }|}; -{rogorn|В светлый путь|1|{ - {10|Минарра на вершине башни Поста на Перекрестке видела банду разбойников, идущих от поста к Башне Плоти. Минарра уверена, что они похожи по приметам на людей, чьих голов ждет патруль Фейгарда. Если это - те самые люди, то их предводительствует исключительно безжалостный дикарь по имени Рогорн.|||} - {20|Я помогу Минарре найти банду грабителей. Мне просто нужно совершить путешествие по дороге от Поста на Перекрестке до Башни Плоти и искать их. Есть также подозрение, что они украли три части ценной картины и достойны смерти за свои преступления.|||} - {21|Минарра также посоветовала не верить ничему из того, что я от них услышу. А особенно - от Рогорна.|||} - {30|Я нашел банду разбойников на западной дороге, ведущей к Башне Плоти, предводительствуемых Рогорном.|||} - {35|Рогорн рассказал мне, что был облыжно обвинен в убийстве и воровстве в Фейгарде, несмотря на то, что в Фейгарде не бывал.|||} - {40|Я решил напасть на Рогорна и его банду. Я должен вернуться к Минарре с тремя частями ценной живописи, как только они умрут.|||} - {45|Я решил не нападать на Рогорна и его банду разбойников, вместо этого я доложил Минарре что она, должно быть, обозналась.|||} - {50|Минарра поблагодарила меня за разрешение вопроса с ворами и сказала, что моя служба для дела Фейгарда будет оценена по достоинству.|||} - {55|После слов об ошибочности поспешных выводов о людях, Минарра стала подозрительной, но все таки поблагодарила за поддержку.|||} - {60|Я помог Минарре.||1|} - }|}; -{feygard_shipment|Фейгардские поручения|1|{ - {10|Я встретил Гандорена, капитана стражи Поста на Перекрестке. Он рассказал мне о проблеме в Одиноком Броде, заставляющей стражников бдить больше обычного. По этой причине они не в состоянии выполнять часть обязанностей самостоятельно, им необходима помощь в самых обычных делах.|||} - {20|Гандорен попросил меня доставить груз из десяти железных мечей на южный пост.|||} - {21|Я согласился доставить груз ради возможности послужить Фейгарду.|||} - {22|Испытывая некоторое неудовольствие, я все же согласился доставить груз.|||} - {25|Я должен доставить груз капитану фейгардского патруля, остановившемуся в таверне \"Пенная Фляга\".|||} - {26|Гандорен предупредил меня, что в грузе заинтересована некая Айлшара и попросил держаться подальше от нее.|||} - {30|Айлшара действительно была заинтересована в грузе и предложила вместо патруля оказать помощь Норсити.|||} - {35|Если я захочу помочь Айлшаре, мне следует доставить груз кузнецу в Вильгард.|||} - {50|Я доставил груз капитану патруля в Пенную Флягу. Далее мне следует доложить Гандорену с Поста на Перекрестке, что груз доставлен.|||} - {55|Я доставил груз кузнецу в Вильгард.|||} - {56|Кузнец Вильгарда дал мне кучу металлолома, которую я должен отдать капитану патруля вместо вооружения.|||} - {60|Я доставил металлолом капитану патруля. Я должен доложить Гандорену с Поста на Перекрестке, что груз доставлен.|||} - {80|Гандорен поблагодарил меня за помощь в доставке.|4000|1|} - {81|Гандорен поблагодарил меня за доставку груза. он никогда ничего не заподозрит. Мне следует доложиться и Айлшаре.|||} - {82|Я доложил и Айлшаре.|4000|1|} - }|}; -{loneford|Что течет по венам?|1|{ - {10|Я услышал историю Одинокого Брода. Внезапно множество жителей заболели и некоторые даже умерли. Причина осталась неизвестной.|||} - {11|Необходимо определить причину заболевания в Одиноком Броде. Для этого стоит опросить местных и окрестных жителей о возможных причинах.|||} - {21|Стража Поста на Перекрестке уверена, что болезнь вызвана действиями священников и жителей Норсити.|||} - {22|Некоторые сельчане Одинокого Брода уверены, что болезнь принесла стража из Фейгарда, дабы заставить людей страдать больше, нежели обычно.|||} - {23|Талион, священник часовни Одинокого Брода, думает, что болезнь - дело рук Тени, наказание за отсутствие набожности.|||} - {24|Таевинн в Одиноком Броде подозревает Сьенна в юго-восточном сарае в причастности к эпидемии. Тем более, что Сьенн держит домашнюю скотину, несмотря на угрозы и протесты Таевинна.|||} - {25|В первую очередь, мне необходимо увидеть Ланду в таверне Одинокого Брода. Ходят слухи, что он видел чтото, что не может доверить никому.|||} - {30|Ланда поначалу спутал меня с кем-то. Он видел маленького мальчика, болтавшегося вокруг города как раз перед началом эпидемии. Поначалу он боялся со мной говорить, поскольку я был на похож на того парня.Быть может, он видел Эндора?|||} - {31|Ночью, после того, как он увидел мальчика, он также видел Букеза, берущего пробу воды из колодца. Что странно, Букез так и не заболел, в отличии от остальных жителей.|||} - {35|Я должен задать пару вопросов Букезу в часовне о том, что же он делал возле колодца и не знает ли он чего-нибудь об Эндоре.|||} - {41|Я заплатил Букезу за разговор со мной.|||} - {42|Я сказал Букезу, что готов последовать за Тенью.|||} - {45|Букез рассказал, что был послан священниками Норсити убедиться в победном шествии учения Тени в Одиноком Броде. Одновременно, они послали с каким то делом туда же мальчишку, Букезу же дали в нагрузку задание набрать проб воды из колодца.|||} - {50|Я напал на Букеза. Мне нужны доказательства его причастности, чтобы представить их Кулдану, капитану стражи Одинокого Брода.|||} - {54|Я отдал флакон, найденный у Букеза Кулдану.|||} - {55|Кулдан поблагодарил меня за раскрытие тайны эпидемии. Он начал поставку воды из Фейгарда взамен воды из местного колодца. Кулдан также рекомендовал мне посетить замок Фейгарда, если я захочу помогать в дальнейшем.|15000|1|} - {60|Я пообещал хранить историю Букеза в секрете. Если Эндор замешан в ней, он должен был иметь весомую причину. Букез же посоветовал навестить часовню хранителя в Норсити, если я захочу узнать больше о Тени.|15000|1|} - }|}; - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{thorin|Удары и останки|1|{ - {20|В пещере на востоке я нашел человека по имени Торин, который попросил меня найти останки его бывшего попутчика. Следует вернуть шесть частей останков.|||} - {31|Я нашел несколько костей в той же пещере, где встретил Торина.|||} - {32|Я нашел несколько костей в той же пещере, где встретил Торина.|||} - {33|Я нашел несколько костей в той же пещере, где встретил Торина.|||} - {34|Я нашел несколько костей в той же пещере, где встретил Торина.|||} - {35|Я нашел несколько костей в той же пещере, где встретил Торина.|||} - {36|Я нашел несколько костей в той же пещере, где встретил Торина.|||} - {40|Торин поблагодарил меня за помощь. Когда (и если) я вернусь, он выделит мне кровать для отдыха и зелье будет продавать.|4000|1|} - }|}; -{algangror|Только скрип. И - ничего.|1|{ - {10|В одиноком доме на полуострове на северном краю озера Лаэрот в северо-восточном краю тамошних гор, я встретил Алгангрору.|||} - {11|У нее сложные отношения с грызунами и она нуждается в помощи по их травле и ловле в подвале.|||} - {15|Я пообещал помощь Алганроре. Я вернусь к ней, как только убью всех шестерых грызунов в подвале.|||} - {20|Алганрора поблагодарила меня за помощь.|5000||} - {21|Она также предупредила меня, чтоб я никому не рассказывал о ней в Ремгарде. Там ее ищут по некоторым причинам, которые она не может сейчас мне рассказать. Я ни в коем случае не должен рассказывать, где она скрывается.||1|} - {100|Я решил не помогать Алганроре.||1|} - {101|Аланрора не захотела со мной разговаривать, и я не смог ей помочь.||1|} - }|}; - - - - diff --git a/AndorsTrail/res/values/content_actorconditions.xml b/AndorsTrail/res/values/content_actorconditions.xml deleted file mode 100644 index d967e49af..000000000 --- a/AndorsTrail/res/values/content_actorconditions.xml +++ /dev/null @@ -1,58 +0,0 @@ - - - - -[id|name|iconID|category|isStacking|isPositive|hasRoundEffect|round_visualEffectID|round_boostHP_Min|round_boostHP_Max|round_boostAP_Min|round_boostAP_Max|hasFullRoundEffect|fullround_visualEffectID|fullround_boostHP_Min|fullround_boostHP_Max|fullround_boostAP_Min|fullround_boostAP_Max|hasAbilityEffect|boostMaxHP|boostMaxAP|moveCostPenalty|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|]; -{bless|Bless|actorconditions_1:41|0||1|||||||||||||1|||||5|||||||}; -{poison_weak|Weak Poison|actorconditions_1:60|3|||1|2|-1|-1|||||||||||||||||||||}; -{str|Strength|actorconditions_1:70|2||1|||||||||||||1||||||||2|2|||}; -{regen|Shadow Regeneration|actorconditions_1:35|0||1|1|1|1|1|||||||||0||||||||||||}; - - - -[id|name|iconID|category|isStacking|isPositive|hasRoundEffect|round_visualEffectID|round_boostHP_Min|round_boostHP_Max|round_boostAP_Min|round_boostAP_Max|hasFullRoundEffect|fullround_visualEffectID|fullround_boostHP_Min|fullround_boostHP_Max|fullround_boostAP_Min|fullround_boostAP_Max|hasAbilityEffect|boostMaxHP|boostMaxAP|moveCostPenalty|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|]; -{speed_minor|Minor speed|actorconditions_1:87|2||1|||||||||||||1||2||||||||||}; -{fatigue_minor|Minor fatigue|actorconditions_1:14|2|||0||||||0||||||1|||2|2||||-1|-1|||}; -{feebleness_minor|Minor weapon feebleness|actorconditions_1:74|1|||||||||||||||1||||||||-3|-3|||}; -{bleeding_wound|Bleeding wound|actorconditions_2:0|3|1||1|0|-1|-1|||||||||||||||||||||}; -{rage_minor|Minor berserker rage|actorconditions_1:90|1||1|0|-1|||||||||||1|35||||60|||||-90|-1|}; -{blackwater_misery|Blackwater misery|actorconditions_1:58|3|||||||||||||||1||||1|-50|-50||||||}; -{intoxicated|Intoxicated|actorconditions_2:1|1||1|||||||||||||1|15|||1|-30|||4|4|||}; -{dazed|Dazed|actorconditions_1:65|1|||||||||||||||1||||||||||-40||}; - - - -[id|name|iconID|category|isStacking|isPositive|hasRoundEffect|round_visualEffectID|round_boostHP_Min|round_boostHP_Max|round_boostAP_Min|round_boostAP_Max|hasFullRoundEffect|fullround_visualEffectID|fullround_boostHP_Min|fullround_boostHP_Max|fullround_boostAP_Min|fullround_boostAP_Max|hasAbilityEffect|boostMaxHP|boostMaxAP|moveCostPenalty|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|]; -{chaotic_grip|Chaotic grip|actorconditions_1:96|1|||0||||||||||||1||||||||||-10|-1|}; -{chaotic_curse|Chaotic curse|actorconditions_1:89|1|||0||||||||||||1||-1||||||-1|-1|-10|-1|}; - - - -[id|name|iconID|category|isStacking|isPositive|hasRoundEffect|round_visualEffectID|round_boostHP_Min|round_boostHP_Max|round_boostAP_Min|round_boostAP_Max|hasFullRoundEffect|fullround_visualEffectID|fullround_boostHP_Min|fullround_boostHP_Max|fullround_boostAP_Min|fullround_boostAP_Max|hasAbilityEffect|boostMaxHP|boostMaxAP|moveCostPenalty|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|]; -{contagion|Insect contagion|actorconditions_1:58|3|||0|2|||||||||||1|||||-10|||-1|-1|||}; -{blister|Blistering skin|actorconditions_1:15|3|||1|0|-1|-1|||||||||||||||||||||}; -{stunned|Stunned|actorconditions_1:95|2|||||||||||||||1||-2|8|5||||||||}; -{focus_dmg|Focused damage|actorconditions_1:70|1||1|||||||||||||1||||1||||3|3|||}; -{focus_ac|Focused accuracy|actorconditions_1:98|1||1|||||||||||||1||||1|40|||||||}; -{poison_irdegh|Irdegh poison|actorconditions_1:60|3|1||1|2|-1|-1|||||||||||||||||||||}; - - - -[id|name|iconID|category|isStacking|isPositive|hasRoundEffect|round_visualEffectID|round_boostHP_Min|round_boostHP_Max|round_boostAP_Min|round_boostAP_Max|hasFullRoundEffect|fullround_visualEffectID|fullround_boostHP_Min|fullround_boostHP_Max|fullround_boostAP_Min|fullround_boostAP_Max|hasAbilityEffect|boostMaxHP|boostMaxAP|moveCostPenalty|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|]; -{rotworm|Kazaul rotworms|actorconditions_1:82|2|||||||||||||||1|-15|-3|||||||||-1|}; -{shadowbless_str|Blessing of Shadow strength|actorconditions_1:70|0||1|||||||||||||1||||||||1|1|||}; -{shadowbless_heal|Blessing of Shadow regeneration|actorconditions_1:35|0||1|1|1|1|1|||||||||||||||||||||}; -{shadowbless_acc|Blessing of Shadow accuracy|actorconditions_1:98|0||1|||||||||||||1|||||30|||||||}; -{shadowbless_guard|Shadow guardian blessing|actorconditions_1:91|0||1|||||||||||||1|30||||||||||1|}; -{crit1|Internal bleeding|actorconditions_1:89|2|1||||||||||||||1||||1|-50|||-3|-3|||}; -{crit2|Fracture|actorconditions_1:89|2|1||||||||||||||1||||||||||-50|-2|}; -{concussion|Concussion|actorconditions_1:80|2|1||||||||||||||1|||||-30|||||||}; - - - -[id|name|iconID|category|isStacking|isPositive|hasRoundEffect|round_visualEffectID|round_boostHP_Min|round_boostHP_Max|round_boostAP_Min|round_boostAP_Max|hasFullRoundEffect|fullround_visualEffectID|fullround_boostHP_Min|fullround_boostHP_Max|fullround_boostAP_Min|fullround_boostAP_Max|hasAbilityEffect|boostMaxHP|boostMaxAP|moveCostPenalty|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|]; -{food|Sustenance|actorconditions_1:35|2||1|1||1|1|||||||||||||||||||||}; -{foodp|Food-poisoning|actorconditions_2:2|2|||1||-1|-1|||||||||||||||||||||}; - - - diff --git a/AndorsTrail/res/values/content_conversationlist.xml b/AndorsTrail/res/values/content_conversationlist.xml deleted file mode 100644 index c704b0c65..000000000 --- a/AndorsTrail/res/values/content_conversationlist.xml +++ /dev/null @@ -1,5140 +0,0 @@ - - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{mikhail_start_select|||{{|mikhail_start_select2|mikhail_bread:100||||}{|mikhail_bread_continue|mikhail_bread:10||||}{|mikhail_start_select2|||||}}|}; -{mikhail_start_select2|||{{|mikhail_start_select_default|mikhail_rats:100||||}{|mikhail_rats_continue|mikhail_rats:10||||}{|mikhail_start_select_default|||||}}|}; -{mikhail_start_select_default|||{{|mikhail_visited|andor:1||||}{|mikhail_gamestart|||||}}|}; -{mikhail_gamestart|Oh good, you are awake.||{{N|mikhail_visited|||||}}|}; -{mikhail_visited|I can\'t seem to find your brother Andor anywhere. He hasn\'t been back since he left yesterday.|{{0|andor|1|}}|{{N|mikhail3|||||}}|}; -{mikhail3|Never mind, he will probably be back soon.||{{N|mikhail_default|||||}}|}; -{mikhail_default|Anything else I can help you with?||{{Do you have any tasks for me?|mikhail_tasks|||||}{Is there anything else you can tell me about Andor?|mikhail_andor1|||||}}|}; -{mikhail_tasks|Oh yes, there were some things I need help with, bread and rats. Which one would you like to talk about?||{{What about the bread?|mikhail_bread_select|||||}{What about the rats?|mikhail_rats_select|||||}{Never mind, let\'s talk about the other things.|mikhail_default|||||}}|}; -{mikhail_andor1|As I said, Andor went out yesterday and hasn\'t been back since. I\'m starting to worry about him. Please go look for your brother, he said he would only be out a short while.||{{N|mikhail_andor2|||||}}|}; -{mikhail_andor2|Maybe he went into that supply cave again and got stuck. Or maybe he\'s in Leta\'s basement training with that wooden sword again. Please go look for him in town.||{{N|mikhail_default|||||}}|}; -{mikhail_bread_select|||{{|mikhail_bread_complete2|mikhail_bread:100||||}{|mikhail_bread_continue|mikhail_bread:10||||}{|mikhail_bread_start|||||}}|}; -{mikhail_bread_start|Oh, I almost forgot. If you have time, please go see Mara at the town hall and buy me some more bread.|{{0|mikhail_bread|10|}}|{{N|mikhail_default|||||}}|}; -{mikhail_bread_continue|Did you get my bread from Mara at the town hall yet?||{{Yes, here you go.|mikhail_bread_complete||bread|1|0|}{No, not yet.|mikhail_default|||||}}|}; -{mikhail_bread_complete|Thanks a lot, now I can make my breakfast. Here, take these coins for your help.|{{0|mikhail_bread|100|}{1|gold20||}}|{{N|mikhail_default|||||}}|}; -{mikhail_bread_complete2|Thanks for the bread earlier.||{{You\'re welcome.|mikhail_default|||||}}|}; -{mikhail_rats_select|||{{|mikhail_rats_complete2|mikhail_rats:100||||}{|mikhail_rats_continue|mikhail_rats:10||||}{|mikhail_rats_start|||||}}|}; -{mikhail_rats_start|I saw some rats out back in our garden earlier. Could you please go kill any rats that you see out there.|{{0|mikhail_rats|10|}}|{{I have already dealt with the rats.|mikhail_rats_complete||tail_trainingrat|2|0|}{Ok, I\'ll go check out in our garden.|mikhail_rats_start2|||||}}|}; -{mikhail_rats_start2|If you get hurt by the rats, come back here and rest in your bed. That way you can regain your strength.||{{N|mikhail_rats_start3|||||}}|}; -{mikhail_rats_start3|Also, don\'t forget to check your inventory. You probably still have that old ring I gave you. Make sure you wear it.||{{Ok, I understand. I can rest here if I get hurt, and I should check my inventory for useful items.|mikhail_default|||||}}|}; -{mikhail_rats_continue|Did you kill those two rats in our garden?||{{Yes, I have dealt with the rats now.|mikhail_rats_complete||tail_trainingrat|2|0|}{No, not yet.|mikhail_rats_start2|||||}}|}; -{mikhail_rats_complete|Oh you did? Wow, thanks a lot for your help!\n\nIf you are hurt, use your bed over there to rest and regain your strength.|{{0|mikhail_rats|100|}}|{{N|mikhail_default|||||}}|}; -{mikhail_rats_complete2|Thanks for your help with the rats earlier.\n\nIf you are hurt, use your bed over there to rest and regain your strength.||{{N|mikhail_default|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{leta1|Hey, this is my house, get out of here!||{{But I was just...|leta2|||||}{What about your husband Oromir?|leta_oromir_select|||||}}|}; -{leta2|Beat it kid, get out of my house!||{{What about your husband Oromir?|leta_oromir_select|||||}}|}; -{leta_oromir_select|||{{|leta_oromir_complete2|leta:100||||}{|leta_oromir1|||||}}|}; -{leta_oromir1|Do you know anything about my husband? He should be here helping me with the farm today, but he seems to be missing as usual.\nSigh.||{{I have no idea.|leta_oromir2|||||}{Yes, I found him. He is hiding among some trees to the east.|leta_oromir_complete|leta:20||||}}|}; -{leta_oromir2|If you see him, tell him to hurry back here and help me with the housework.\nNow get out of here!|{{0|leta|10|}}||}; -{leta_oromir_complete|Hiding is he? That\'s not surprising. I\'ll go let him know who\'s the boss around here.\nThanks for letting me know though.|{{0|leta|100|}}||}; -{leta_oromir_complete2|Thanks for telling me about Oromir earlier. I will go get him in just a minute.|||}; -{oromir1|Oh you startled me.\nHello.||{{Hello|oromir2|||||}}|}; -{oromir2|I\'m hiding here from my wife Leta. She is always getting angry at me for not helping out on the farm. Please don\'t tell her that I\'m here.|{{0|leta|20|}}|{{Ok.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{audir1|Welcome to my shop!\n\nPlease browse my selection of fine wares.||{{Please show me your wares.|S|||||}}|}; -{arambold1|Oh my, will I ever get any sleep with those drunkards singing like that?\n\nSomeone should do something about them.||{{Can I rest here?|arambold2|||||}{Do you have anything to trade?|S|||||}}|}; -{arambold2|Sure kid, you may rest here.\n\nPick any bed you want.||{{Thanks, bye|X|||||}}|}; -{drunk1|Drink drink drink, drink some more.\nDrink drink drink \'til you\'re on the floor.\n\nHey kid, wanna join us in our drinking game?||{{No thanks.|X|||||}{Maybe some other time.|X|||||}}|}; -{mara_default|Never mind those drunken fellas, they\'re always causing trouble.\n\nWant something to eat?||{{Do you have anything to trade?|S|||||}}|}; -{mara1|||{{|mara_thanks|odair:100||||}{|mara_default|||||}}|}; -{mara_thanks|I heard you helped Odair clean out that old supply cave. Thanks a lot, we\'ll start using it soon.||{{It was my pleasure.|mara_default|||||}}|}; -{farm1|Please do not disturb me, I have work to do.||{{Have you seen my brother Andor?|farm_andor|||||}}|}; -{farm2|What?! Can\'t you see I\'m busy? Go bother someone else.||{{Have you seen my brother Andor?|farm_andor|||||}}|}; -{farm_andor|Andor? No, I haven\'t seen him around lately.|||}; -{snakemaster|Well well, what have we here? A visitor, how nice. I\'m impressed you got this far through all my minions.\n\nNow prepare to die, puny creature.||{{Great, I have been waiting for a fight!|F|||||}{Let\'s see who dies here.|F|||||}{Please don\'t hurt me!|F|||||}}|}; -{haunt|Oh mortal, free me from this cursed world!||{{Oh, I\'ll free you from it alright.|F|||||}{You mean, by killing you?|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{tharal1|Walk in the glow of the Shadow, my child.||{{Do you have anything to trade?|S|||||}{What can you tell me about Bonemeal?|tharal_bonemeal_select|bonemeal:10||||}}|}; -{tharal_bonemeal_select|||{{|tharal_bonemeal4|bonemeal:30||||}{|tharal_bonemeal1|||||}}|}; -{tharal_bonemeal1|Bonemeal? We shouldn\'t talk about that. Lord Geomyr issued a decree. It\'s not allowed anymore.||{{Please?|tharal_bonemeal2_1|||||}}|}; -{tharal_bonemeal2_1|No, we really shouldn\'t talk about that.||{{Oh come on.|tharal_bonemeal2|||||}}|}; -{tharal_bonemeal2|Well if you really are that persistent. Bring me 5 insect wings that I can use for making potions and maybe we can talk more.|{{0|bonemeal|20|}}|{{Here, I have the insect wings.|tharal_bonemeal3||insectwing|5|0|}{Ok, I\'ll bring them.|X|||||}}|}; -{tharal_bonemeal3|Thanks kid. I knew I could count on you.|{{0|bonemeal|30|}}|{{N|tharal_bonemeal4|||||}}|}; -{tharal_bonemeal4|Oh yes, bonemeal. Mixed with the right components it can be one of the most effective healing agents around.||{{N|tharal_bonemeal5|||||}}|}; -{tharal_bonemeal5|We used to use it extensively before. But now that bastard Lord Geomyr has banned all use of it.||{{N|tharal_bonemeal6|||||}}|}; -{tharal_bonemeal6|How am I supposed to heal people now? Using regular healing potions? Bah, they\'re so ineffective.||{{N|tharal_bonemeal7|||||}}|}; -{tharal_bonemeal7|I know someone that still has a supply of Bonemeal if you are interested. Go talk to Thoronir, a fellow priest in Fallhaven. Tell him my password \'Glow of the Shadow\'.||{{Thanks, bye|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{gruil1|Psst, hey.\n\nWanna trade?||{{Sure, let\'s trade.|S|||||}{I heard that you talked to my brother a while ago.|gruil_select|andor:10||||}}|}; -{gruil_select|||{{|gruil_return|andor:30||||}{|gruil2|||||}}|}; -{gruil2|Your brother? Oh you mean Andor? I might know something, but that information will cost you. Bring me a poison gland from one of those poisonous snakes and maybe I\'ll tell you.|{{0|andor|20|}}|{{Here, I have a poison gland for you.|gruil_complete||gland|1|0|}{Ok, I\'ll bring one.|X|||||}}|}; -{gruil_complete|Thanks a lot kid. This will do just fine.|{{0|andor|30|}}|{{N|gruil_andor1|||||}}|}; -{gruil_return|Look kid, I already told you.||{{N|gruil_andor1|||||}}|}; -{gruil_andor1|I talked to him yesterday. He asked if I knew someone called Umar or something like that. I have no idea who he was talking about.||{{N|gruil_andor2|||||}}|}; -{gruil_andor2|He seemed really upset about something and left in a hurry. Something about the Thieves\' Guild in Fallhaven.||{{N|gruil_andor3|||||}}|}; -{gruil_andor3|That\'s all I know. Maybe you should ask around in Fallhaven. Look for my friend Gaela, he probably knows more.||{{Thanks, bye.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{leonid1|Hello kid. You\'re Mikhail\'s son aren\'t you? With that brother of yours.\n\nI\'m Leonid, steward of Crossglen village.||{{Have you seen my brother Andor?|leonid_andor|||||}{What can you tell me about Crossglen?|leonid_crossglen|||||}{Never mind, see you later.|leonid_bye|||||}}|}; -{leonid_andor|Your brother? No, I haven\'t seen him here today. I think I saw him in here yesterday talking to Gruil. Maybe he knows more?|{{0|andor|10|}}|{{Thanks, I\'ll go talk to Gruil. There was something more I wanted to talk about.|leonid_continue|||||}{Thanks, I\'ll go talk to Gruil.|leonid_bye|||||}}|}; -{leonid_continue|Anything else I can help you with?||{{Have you seen my brother Andor?|leonid_andor|||||}{What can you tell me about Crossglen?|leonid_crossglen|||||}{Never mind, see you later.|leonid_bye|||||}}|}; -{leonid_crossglen|As you know, this is Crossglen village. Mostly a farming community.||{{N|leonid_crossglen1|||||}}|}; -{leonid_crossglen1|We have Audir with his smithy to the southwest, Leta and her husband\'s cabin to the west, this town hall here and your father\'s cabin to the northwest.||{{N|leonid_crossglen2|||||}}|}; -{leonid_crossglen2|That\'s pretty much it. We try to live a peaceful life.||{{Has there been any recent activity in the village?|leonid_crossglen3|||||}{Let\'s go back to the other things we talked about.|leonid_continue|||||}}|}; -{leonid_crossglen3|There were some recent disturbances some weeks ago that you may have noticed. Some villagers got into a fight over the new decree from Lord Geomyr.||{{N|leonid_crossglen4|||||}}|}; -{leonid_crossglen4|Lord Geomyr issued a statement regarding the unlawful use of Bonemeal as healing substance. Some villagers argued that we should oppose Lord Geomyr\'s word and still use it.|{{0|bonemeal|10|}}|{{N|leonid_crossglen4_1|||||}}|}; -{leonid_crossglen4_1|Tharal, our priest, was particularly upset and suggested we do something about Lord Geomyr.||{{N|leonid_crossglen5|||||}}|}; -{leonid_crossglen5|Other villagers argued that we should follow Lord Geomyr\'s decree.\n\nPersonally, I haven\'t decided what my thoughts are.||{{N|leonid_crossglen6|||||}}|}; -{leonid_crossglen6|On one hand, Lord Geomyr supports Crossglen with a lot of protection. *points to the soldiers in the hall*||{{N|leonid_crossglen7|||||}}|}; -{leonid_crossglen7|But on the other hand, the tax and the recent changes of what\'s allowed are really taking a toll on Crossglen.||{{N|leonid_crossglen8|||||}}|}; -{leonid_crossglen8|Someone should go to Castle Geomyr and talk to the steward about our situation here in Crossglen.|{{0|crossglen|1|}}|{{N|leonid_crossglen9|||||}}|}; -{leonid_crossglen9|In the meantime, we\'ve banned all use of Bonemeal as a healing substance.||{{Thank you for the information. There was something more I wanted to ask you.|leonid_continue|||||}{Thank you for the information. Bye.|leonid_bye|||||}}|}; -{leonid_bye|Shadow be with you.||{{Shadow be with you.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{odair1|Oh, it\'s you. You with that brother of yours. Always causing trouble.||{{N|odair_select|||||}}|}; -{odair_select|||{{|odair_complete2|odair:100||||}{|odair_continue|odair:10||||}{|odair2|||||}}|}; -{odair2|Hmm, maybe you could be of use to me. Do you think you could help me with a small task?||{{Tell me more about this task.|odair3|||||}{Sure, if there is anything I can gain from it.|odair3|||||}}|}; -{odair3|I recently went in to that cave over there *points west*, to check on our supplies. But apparently, the cave has been infested with rats.||{{N|odair4|||||}}|}; -{odair4|In particular, I saw one rat that was larger than the other rats. Do you think you have what it takes to help eliminate them?||{{Sure, I\'ll help you so that Crossglen can use the supply cave again.|odair5|||||}{Sure, I\'ll help you. But only because there might be some gain for me in this.|odair5|||||}{No thanks|odair_cowards|||||}}|}; -{odair5|I need you to get into that cave and kill the large rat, that way maybe we can stop the rat infestation in the cave and start using it as our old supply cave again.|{{0|odair|10|}}|{{Ok|X|||||}{On second thought, I don\'t think I will help you after all.|odair_cowards|||||}}|}; -{odair_cowards|I didn\'t think so either. You and that brother of yours always were cowards.||{{Bye|X|||||}}|}; -{odair_continue|Did you kill that large rat in the cave west of here?||{{Yes, I have killed the large rat.|odair_complete||tail_caverat|1|0|}{What was I supposed to do again?|odair5|||||}{No, not yet.|odair_cowards|||||}}|}; -{odair_complete|Thanks a lot for your help kid! Maybe you and that brother of yours aren\'t as cowardly as I thought. Here, take these coins for your help.|{{0|odair|100|}{1|gold20||}}|{{Thanks|X|||||}}|}; -{odair_complete2|Thanks a lot for your help earlier. Now we might start using that cave as our old supply cave again.||{{Bye|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{jan_start_select|||{{|jan_complete2|jan:100||||}{|jan_return|jan:10||||}{|jan_default|||||}}|}; -{jan_default|Hello kid. Please leave me to my mourning.||{{What is the problem?|jan_default2|||||}{Do you want to talk about it?|jan_default2|||||}{Ok, bye|X|||||}}|}; -{jan_default2|Oh, it\'s so sad. I really don\'t want to talk about it.||{{Please do.|jan_default3|||||}{Ok, bye|X|||||}}|}; -{jan_default3|Well, I guess it\'s ok to tell you. You seem to be a nice enough kid.||{{N|jan_default4|||||}}|}; -{jan_default4|My friend Gandir, his friend Irogotu, and I were down here digging this hole. We had heard there was a hidden treasure down here.||{{N|jan_default5|||||}}|}; -{jan_default5|We started digging and finally broke through to the cave system below. That\'s when we discovered them. The critters and bugs.||{{N|jan_default6|||||}}|}; -{jan_default6|Oh those critters. Damn bastards. Nearly killed me they did.\n\nGandir and I told Irogotu that we should stop the digging and leave while we still could.||{{N|jan_default7|||||}}|}; -{jan_default7|But Irogotu wanted to continue deeper into the dungeon. He and Gandir got into an argument and started fighting.||{{N|jan_default8|||||}}|}; -{jan_default8|That\'s when it happened.\n\n*sob*\n\nOh what have we done?||{{Please go on|jan_default9|||||}}|}; -{jan_default9|Irogotu killed Gandir with his bare hands. You could see the fire in his eyes. He almost seemed to enjoy it.||{{N|jan_default10|||||}}|}; -{jan_default10|I fled and haven\'t dared go back down there because of the critters and Irogotu himself.||{{N|jan_default11|||||}}|}; -{jan_default11|Oh that damn Irogotu. If only I could get to him. I\'d show him one thing and another.||{{Do you think I could help?|jan_default11_1|||||}}|}; -{jan_default11_1|Do you think you could help me?||{{Sure, there may be some treasure in this for me.|jan_default12|||||}{Sure. Irogotu should pay for what he did.|jan_default12|||||}{No thanks, I would rather not be involved in this. It sounds dangerous.|X|||||}}|}; -{jan_default12|Really? You think you could help? Hm, maybe you could. Beware of those bugs though, they\'re really tough bastards.|{{0|jan|10|}}|{{N|jan_default13|||||}}|}; -{jan_default13|If you really want to help, go find Irogotu down in the cave, and get me back Gandir\'s ring.||{{Sure, I\'ll help.|jan_default14|||||}{Can you tell me the story again?|jan_background|||||}{Never mind, goodbye.|X|||||}}|}; -{jan_default14|Return to me when you are done. Bring me Gandir\'s ring from Irogotu down in the cave.||{{Ok, bye|X|||||}}|}; -{jan_return|Hello again kid. Did you find Irogotu down in the cave?||{{No, not yet.|jan_default14|||||}{Can you tell me your story again?|jan_background|||||}{Yes, I have killed Irogotu.|jan_complete||ring_gandir|1|0|}}|}; -{jan_background|Didn\'t you listen the first time I told you the story? Do I really have to tell you the story one more time?||{{Yes, please tell me the story again.|jan_default3|||||}{I wasn\'t listening that much the first time you told it. What was that about a treasure?|jan_default4|||||}{No, never mind. I remember it now.|jan_default14|||||}}|}; -{jan_complete2|Thanks for dealing with Irogotu earlier! I am forever in debt to you.||{{Bye|X|||||}}|}; -{jan_complete|Wait, what? You actually went down there and returned alive? How did you manage that? Wow, I almost died going into that cave.\n\nOh thank you so much for bringing me back Gandir\'s ring! Now I can have something to remember him by.|{{0|jan|100|}}|{{Glad that I could help. Goodbye.|X|||||}{Shadow be with you. Goodbye.|X|||||}{Whatever. I only did it for the loot.|X|||||}}|}; - -{irogotu|Well hello there. Another adventurer coming to steal my bounty. This is MY CAVE. The treasure will be MINE!||{{Did you kill Gandir?|irogotu1|jan:10||||}}|}; -{irogotu1|That whelp Gandir? He was in my way. I merely used him as a tool to dig deeper into the cave.||{{N|irogotu2|||||}}|}; -{irogotu2|Besides, I never really liked him anyway.||{{I guess he deserved to die. Did he have a ring on him?|irogotu3|||||}{Jan mentioned something about a ring?|irogotu3|||||}}|}; -{irogotu3|NO! You cannot have it. It\'s mine! And who are you anyway kid, coming down here to disturb me?!||{{I\'m not a kid anymore! Now give me that ring!|irogotu4|||||}{Give me that ring and we might both come out of here alive.|irogotu4|||||}}|}; -{irogotu4|No. If you want it you will have to take it from me by force, and I should tell you that my powers are great. Besides, you probably wouldn\'t dare fight me anyway.||{{Very well, let\'s see who dies here.|F|||||}{By the Shadow, Gandir will be avenged.|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fallhaven_citizen1|Hello there. Nice weather ain\'t it?||{{Have you seen my brother Andor?|fallhaven_andor_1|||||}}|}; -{fallhaven_citizen2|Hello. Anything you want from me?||{{Have you seen my brother Andor?|fallhaven_andor_2|||||}}|}; -{fallhaven_citizen3|Hi. Can I help you?||{{Have you seen my brother Andor?|fallhaven_andor_3|||||}}|}; -{fallhaven_citizen4|You\'re that kid from Crossglen village right?||{{Have you seen my brother Andor?|fallhaven_andor_4|||||}}|}; -{fallhaven_citizen5|Out of the way, peasant.|||}; -{fallhaven_citizen6|Good day to you.||{{Have you seen my brother Andor?|fallhaven_andor_6|||||}}|}; -{fallhaven_andor_1|No, sorry. I haven\'t seen anyone by that description.|||}; -{fallhaven_andor_2|Some other kid you say? Hm, let me think.||{{N|fallhaven_andor_1|||||}}|}; -{fallhaven_andor_3|Hm, I might have seen someone matching that description a few days ago. Can\'t remember where though.|||}; -{fallhaven_andor_4|Oh yes, there was another kid from Crossglen village here a few days ago. Not sure he matched your description though.||{{N|fallhaven_andor_4_1|||||}}|}; -{fallhaven_andor_4_1|There were some shady looking people following him around. Didn\'t see any more than that.|||}; -{fallhaven_andor_6|Nope. Haven\'t seen him.|||}; -{fallhaven_guard|Keep out of trouble.|||}; - -{fallhaven_priest|Shadow be with you.||{{Can you tell me more about the Shadow?|priest_shadow_1|||||}}|}; -{priest_shadow_1|The Shadow protects us. It keeps us safe and comforts us when we sleep.||{{N|priest_shadow_2|||||}}|}; -{priest_shadow_2|It follows us wherever we go. Go with the Shadow my child.||{{Shadow be with you.|X|||||}{Whatever, bye.|X|||||}}|}; - -{rigmor|Well hello there! Aren\'t you a cute little fellow.||{{Have you seen my brother Andor?|rigmor_1|||||}{I really need to go.|rigmor_leave_select|||||}}|}; -{rigmor_1|Your brother, you say? His name is Andor? No. I don\'t recall meeting anyone like that.||{{I really need to go.|rigmor_leave_select|||||}}|}; -{rigmor_leave_select|||{{|rigmor_thanks|calomyran:100||||}{|X|||||}}|}; -{rigmor_thanks|I heard you helped my old man find his book, thank you. He had been talking about that book for weeks. Poor thing, he tends to forget things.||{{It was my pleasure. Goodbye.|X|||||}{You should keep an eye on him, or bad things might happen to him.|X|||||}{Whatever, I just did it for the gold.|X|||||}}|}; - -{fallhaven_clothes|Welcome to my shop. Please browse my selection of fine clothing and jewelry.||{{Let me see your wares.|S|||||}}|}; -{fallhaven_potions|Welcome to my shop. Please browse my fine selection of everyday potions.||{{Let me see what potions you have available.|S|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bucus_welcome|Hi again, welcome back to the .. Oh wait, I thought you were someone else.||{{Have you seen my brother Andor?|bucus_andor_select|||||}{What do you know about the Thieves\' Guild?|bucus_thieves_select|||||}}|}; -{bucus_andor_select|||{{|bucus_umar_1|bucus:100||||}{|bucus_andor_no_1|||||}}|}; -{bucus_andor_no_1|How interesting that you should ask. What if I had seen him? Why would I tell you?||{{N|bucus_andor_no_2|||||}}|}; -{bucus_andor_no_2|No, I can\'t tell you. Now please leave.|||}; -{bucus_thieves_select|||{{|bucus_thieves_complete_3|bucus:100||||}{|bucus_thieves_continue|bucus:10||||}{|bucus_thieves_select2|||||}}|}; -{bucus_thieves_select2|||{{|bucus_thieves_1|andor:40||||}{|bucus_thieves_no|||||}}|}; -{bucus_thieves_no|Wh, what? No, I don\'t know anything about that.|||}; -{bucus_umar_1|Ok kid. You\'ve proven yourself to me. Yes, I saw some other kid by that description running around here a few days ago.||{{N|bucus_umar_2|||||}}|}; -{bucus_umar_2|I don\'t know what he was up to though. He kept asking a lot of questions. Kind of like you do. *snicker*||{{N|bucus_umar_3|||||}}|}; -{bucus_umar_3|Anyway, that\'s all I know. You should go talk to Umar, he probably knows more. Down that hatch over there.|{{0|andor|50|}}|{{Ok, bye|X|||||}}|}; -{bucus_thieves_1|Who told you that? Argh.\n\nOk so you found us. Now what?||{{Can I join the Thieves\' Guild?|bucus_thieves_2|||||}}|}; -{bucus_thieves_2|Hah! Join the Thieves\' Guild?! You?!\n\nYou\'re one funny kid.||{{I\'m serious.|bucus_thieves_3|||||}{Yeah, pretty funny eh?|bucus_thieves_3|||||}}|}; -{bucus_thieves_3|Ok, tell you what kid. Do a task for me and maybe I\'ll consider giving you more info.||{{What kind of task are we talking about?|bucus_thieves_4|||||}{As long as this leads to some treasure, I\'m in!|bucus_thieves_4|||||}}|}; -{bucus_thieves_4|Bring me the key of Luthor and we can talk more. I don\'t know anything about the key itself, but rumor has it that it is located somewhere in the catacombs beneath Fallhaven Church.|{{0|bucus|10|}}|{{Ok, sounds easy enough.|X|||||}}|}; -{bucus_thieves_continue|How is the search for the key of Luthor going?||{{What was I supposed to do again?|bucus_thieves_4|||||}{Here, I have it. The key of Luthor.|bucus_thieves_complete_1||key_luthor|1|0|}{I\'m still looking for it. Bye.|X|||||}}|}; -{bucus_thieves_complete_1|Wow, you actually got the key of Luthor? I didn\'t think you would make it out of there.|{{0|bucus|100|}}|{{N|bucus_thieves_complete_2|||||}}|}; -{bucus_thieves_complete_2|Well done kid.||{{N|bucus_thieves_complete_3|||||}}|}; -{bucus_thieves_complete_3|So, let\'s talk. What do you want to know?||{{What do you know about my brother Andor?|bucus_umar_1|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fallhaven_drunk|No problem. No sireee! Not causing any more trouble now. I sits here outside now.||{{N|fallhaven_drunk_2|||||}}|}; -{fallhaven_drunk_2|Wait, who are you again? Are you that guard?||{{Yes|fallhaven_drunk_3_1|||||}{No|fallhaven_drunk_3_2|||||}}|}; -{fallhaven_drunk_3_1|Oh, sir. I\'m not causing any trouble anymore, see? I sits outside now as you says, ok?||{{N|fallhaven_drunk_4|||||}}|}; -{fallhaven_drunk_3_2|Oh good. That guard threw me out of the tavern. If I see him again I\'ll show him one thing or another.||{{N|fallhaven_drunk_4|||||}}|}; -{fallhaven_drunk_4|Drink drink drink, drink some more. Drink, drink .. Uh how did it go again?||{{N|fallhaven_drunk_5|||||}}|}; -{fallhaven_drunk_5|Were you saying something? Where was I? Yes, so we were in this dungeon.||{{N|fallhaven_drunk_6|||||}}|}; -{fallhaven_drunk_6|Or was it a house? I can\'t remember.||{{N|fallhaven_drunk_7|||||}}|}; -{fallhaven_drunk_7|No no, it was outside! Now I remember.||{{N|fallhaven_drunk_7_select|||||}}|}; -{fallhaven_drunk_7_select|||{{|fallhaven_drunk_11|fallhavendrunk:100||||}{|fallhaven_drunk_8|||||}}|}; -{fallhaven_drunk_8|That\'s where we..\n\nHey, where did my mead go? Did you take it from me? ||{{Yes|fallhaven_drunk_9_1|||||}{No|fallhaven_drunk_9_2|||||}}|}; -{fallhaven_drunk_9_1|Well then give it back! Or go buy me another mead.|{{0|fallhavendrunk|10|}}|{{Here, have some mead.|fallhaven_drunk_10||mead|1|0|}{Ok, I\'ll go buy some mead for you.|X|||||}{No. I don\'t think I should help you. Goodbye.|X|||||}}|}; -{fallhaven_drunk_9_2|I must have drunk it then. Could you get me a new mead do you think? |{{0|fallhavendrunk|10|}}|{{Here, have some mead.|fallhaven_drunk_10||mead|1|0|}{Ok, I\'ll go buy some mead for you.|X|||||}{No. I don\'t think I should help you. Goodbye.|X|||||}}|}; -{fallhaven_drunk_10|Oh sweet drinks of joy. May the sssshadow be with you kid. *makes big eyes*||{{N|fallhaven_drunk_11|||||}}|}; -{fallhaven_drunk_11|*takes a gulp of the mead*\n\nThat\'s good stuff!||{{N|fallhaven_drunk_12|||||}}|}; -{fallhaven_drunk_12|Yeah, me and Unnmir had good times. Go ask him yourself, he is usually in the barn to the east of here. I wonder *burps* where that treasure went.|{{0|fallhavendrunk|100|}}|{{Treasure? I\'m in! I\'ll go look for Unnmir right away.|X|||||}{Thank you for the story. Goodbye.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fallhaven_oldman|||{{|fallhaven_oldman_complete_2|calomyran:100||||}{|fallhaven_oldman_continue|calomyran:10||||}{|fallhaven_oldman_1|||||}}|}; -{fallhaven_oldman_1|Would you help an old man please?||{{Sure, what do you need help with?|fallhaven_oldman_2|||||}{I might. Are we talking about some kind of reward?|fallhaven_oldman_2|||||}{No, I won\'t help an old timer like you. Bye.|X|||||}}|}; -{fallhaven_oldman_2|I recently lost a very valuable book of mine.||{{N|fallhaven_oldman_3|||||}}|}; -{fallhaven_oldman_3|I know I had it with me yesterday. Now I can\'t seem to find it.||{{N|fallhaven_oldman_4|||||}}|}; -{fallhaven_oldman_4|I never lose things! Someone must have stolen it, that\'s my guess.||{{N|fallhaven_oldman_5|||||}}|}; -{fallhaven_oldman_5|Would you please go look for my book? It\'s called \'Calomyran Secrets\'.||{{N|fallhaven_oldman_6|||||}}|}; -{fallhaven_oldman_6|I have no idea where it might be. You could go ask Arcir, he seems very fond of his books. *points at the house to the south*|{{0|calomyran|10|}}|{{Ok, I\'ll go ask Arcir. Goodbye.|X|||||}}|}; -{fallhaven_oldman_continue|How is the search for my book going? It\'s called \'Calomyran Secrets\'. Have you found my book?||{{Yes, I found it.|fallhaven_oldman_complete||calomyran_secrets|1|0|}{No, I have not found it yet.|fallhaven_oldman_6|||||}{Could you tell me your story again please?|fallhaven_oldman_2|||||}}|}; -{fallhaven_oldman_complete|My book! Thank you, thank you! Where was it? No, don\'t tell me. Here, take these coins for your trouble.|{{0|calomyran|100|}{1|gold51||}}|{{Thank you. Goodbye.|X|||||}{At last, some gold. Bye.|X|||||}}|}; -{fallhaven_oldman_complete_2|Thank you so much for finding my book!|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{nocmar|Hello. I\'m Nocmar.||{{This place looks like a smithy. Do you have anything to trade?|nocmar_trade_select|||||}{Unnmir sent me.|nocmar_quest_select|nocmar:10||||}{Bye|X|||||}}|}; -{nocmar_quest_select|||{{|nocmar_complete_5|nocmar:200||||}{|nocmar_continue|nocmar:20||||}{|nocmar_quest|||||}}|}; -{nocmar_trade_select|||{{|S|nocmar:200||||}{|nocmar_trade_1|||||}}|}; -{nocmar_trade_1|I don\'t have any items for sale. I used to have a lot of things for sale, but nowadays I\'m not allowed to sell anything.||{{N|nocmar_trade_2|||||}}|}; -{nocmar_trade_2|I was once one of the greatest smiths in Fallhaven. Then that bastard Lord Geomyr banned my use of heartsteel.||{{N|nocmar_trade_3|||||}}|}; -{nocmar_trade_3|By decree of Lord Geomyr, no one in Fallhaven is allowed to even use heartsteel weapons. Much less sell any.||{{N|nocmar_trade_4|||||}}|}; -{nocmar_trade_4|So now I have to hide the few weapons I have left. I won\'t dare sell any of them anymore.||{{N|nocmar_trade_4_1|||||}}|}; -{nocmar_trade_4_1|I haven\'t seen the heartsteel glow in several years now that Lord Geomyr has banned them.||{{N|nocmar_trade_5|||||}}|}; -{nocmar_trade_5|So, unfortunately I can\'t sell you any of my weapons.|||}; -{nocmar_quest|Unnmir sent you huh? I guess it must be important then.|{{0|nocmar|20|}}|{{N|nocmar_quest_1|||||}}|}; -{nocmar_quest_1|Ok, these old weapons have lost their inner glow now that they haven\'t been used in a while.||{{N|nocmar_quest_2|||||}}|}; -{nocmar_quest_2|To make the heartsteel glow again, we will need a heartstone.||{{N|nocmar_quest_3|||||}}|}; -{nocmar_quest_3|Years ago, we used to fight the liches of Undertell. I have no idea if they still haunt the place.||{{Undertell? What\'s that?|nocmar_quest_4|||||}}|}; -{nocmar_quest_4|Undertell; the pits of the lost souls. Travel south and enter the caverns of the Dwarves. Follow the horrid smell from there.||{{N|nocmar_quest_5|||||}}|}; -{nocmar_quest_5|Beware the liches of Undertell, if they are still are around. Those things can kill you by their gaze alone.|||}; -{nocmar_continue|Have you found a heartstone yet?||{{Yes, at last I found it.|nocmar_complete||heartstone|1|0|}{Could you tell me the story again?|nocmar_quest_1|||||}{No, not yet|nocmar_continue_2|||||}}|}; -{nocmar_continue_2|Please keep looking. Unnmir must have something important planned for you.|||}; -{nocmar_complete|By the Shadow. You actually found a heartstone. I thought I wouldn\'t live to see the day.|{{0|nocmar|200|}}|{{N|nocmar_complete_2|||||}}|}; -{nocmar_complete_2|Can you see the glow? It\'s literally pulsating.||{{N|nocmar_complete_3|||||}}|}; -{nocmar_complete_3|Quick. Let\'s get these old heartsteel weapons glowing again.||{{N|nocmar_complete_4|||||}}|}; -{nocmar_complete_4|*Nocmar places the heartstone among the heartsteel weapons*||{{N|nocmar_complete_5|||||}}|}; -{nocmar_complete_5|Can you feel it? The heartsteel is glowing again.||{{Let me see what items you have available.|S|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bela|Welcome to Fallhaven Tavern. Have a seat anywhere.||{{Let me see what food and drinks you have available|S|||||}{Are there any rooms available?|bela_room_select|||||}}|}; -{bela_room_1|A room will cost you only 10 gold.||{{Buy [10 gold]|bela_room_2||gold|10|0|}{No thanks.|bela|||||}}|}; -{bela_room_2|Thanks. Take the last room down at the end of the hall.|{{0|fallhaventavern|10|}}|{{Thank you. There was something else I wanted to talk about.|bela|||||}{Thanks, bye.|X|||||}}|}; -{bela_room_3|I hope the room suits your needs. It\'s the last room down at the end of the hall.||{{Thank you. There was something else I wanted to talk about.|bela|||||}{Thanks, bye.|X|||||}}|}; -{bela_room_select|||{{|bela_room_3|fallhaventavern:10||||}{|bela_room_1|||||}}|}; -{ganos|You seem familiar somehow.||{{Do you have anything to trade?|S|||||}{Do you know anything about the Thieves\' Guild?|ganos_1|andor:30||||}}|}; -{ganos_1|Thieves\' Guild? How would I know? Do I look like a thief to you?! Hrmpf.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{arcir_start|Hello. I\'m Arcir.||{{I noticed your statue of Elythara downstairs.|arcir_elythara_1|arcir:10||||}{You really seem to like your books.|arcir_books_1|||||}}|}; -{arcir_anythingelse|Anything else you wanted to ask?||{{I noticed your statue of Elythara downstairs.|arcir_elythara_1|arcir:10||||}{You really seem to like your books.|arcir_books_1|||||}}|}; -{arcir_elythara_1|Oh, you found my statue in the basement?\n\nYes, Elythara is my protector.||{{Okay.|arcir_anythingelse|||||}}|}; -{arcir_books_1|I find great pleasure in my books. They contain the accumulated knowledge of past generations.||{{Do you have a book called \'Calomyran Secrets\'?|arcir_calomyran_select|calomyran:10||||}{Okay.|arcir_anythingelse|||||}}|}; -{arcir_calomyran_1|\'Calomyran Secrets\'? Hm, yes I think I have one of those in my basement.||{{N|arcir_calomyran_2|||||}}|}; -{arcir_calomyran_2|Old man Benradas came by last week, wanting to sell me that book. Since it\'s not really my kind of book, I declined.||{{N|arcir_calomyran_3|||||}}|}; -{arcir_calomyran_3|He seemed upset that I didn\'t like his book, and threw it at me while storming out of the house.||{{N|arcir_calomyran_4|||||}}|}; -{arcir_calomyran_4|Poor old man Benradas, he probably forgot that he left it here. He tends to forget things.||{{N|arcir_anythingelse|||||}}|}; -{arcir_calomyran_5|You looked downstairs but didn\'t find it? And a note you say? I guess there must have been someone in my house.||{{N|arcir_calomyran_6|||||}}|}; -{arcir_calomyran_select|||{{|arcir_calomyran_complete|calomyran:100||||}{|arcir_calomyran_5|calomyran:20||||}{|arcir_calomyran_1|||||}}|}; -{arcir_calomyran_complete|I heard you found it and gave it back to old man Benradas. Thank you. He tends to forget things.||{{N|arcir_anythingelse|||||}}|}; -{arcir_calomyran_6|What did the note say?\n\nLarcal.. I know of him. Always causing trouble. He is usually in the barn to the east of here.||{{Thanks, bye|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{chapelgoer|Shadow, embrace me.|||}; -{thoronir_default|Bask in the Shadow, my child.||{{What can you tell me about the Shadow?|thoronir_shadow_1|||||}{Can you tell me more about the church?|thoronir_church_1|||||}{Are the Bonemeal potions ready yet?|thoronir_trade_bonemeal|bonemeal:100||||}}|}; -{thoronir_shadow_1|The Shadow protects us from the dangers of the night. It keeps us safe and comforts us when we sleep.||{{Tharal sent me and told me to tell you the password \'Glow of the Shadow\'.|thoronir_tharal_select|bonemeal:30||||}{Shadow be with you.|thoronir_default|||||}{Sounds like nonsense to me.|thoronir_default|||||}}|}; -{thoronir_church_1|This is our chapel of worship in Fallhaven. Our community turns to us for support.||{{N|thoronir_church_2|||||}}|}; -{thoronir_church_2|This church has withstood hundreds of years, and has been kept safe from grave robbers.||{{N|thoronir_church_3|||||}}|}; -{thoronir_tharal_select|||{{|thoronir_trade_bonemeal|bonemeal:100||||}{|thoronir_tharal_1|||||}}|}; -{thoronir_tharal_1|Glow of the Shadow indeed my child. So my old friend Tharal in Crossglen village sent you?||{{What can you tell me about bonemeal?|thoronir_tharal_2|||||}}|}; -{thoronir_church_3|The catacombs beneath the church house the remains of our passed leaders. Our great King Luthor is rumored to be buried there.||{{Has anyone entered the catacombs?|thoronir_church_4|bucus:10||||}{There was something else I wanted to talk about.|thoronir_default|||||}}|}; -{thoronir_church_4|No one is allowed down in the catacombs, except for Athamyr, my apprentice. He is the only one that has been down there for years.|{{0|bucus|20|}}|{{Ok, I might go see him.|thoronir_default|||||}}|}; -{thoronir_tharal_2|Shhh, we shouldn\'t talk so loud about using Bonemeal. As you know, Lord Geomyr issued a ban on all use of Bonemeal.||{{N|thoronir_tharal_3|||||}}|}; -{thoronir_tharal_3|When the ban came, I did not dare keep any, so I threw my whole supply away. It was quite foolish now that I look back on it.||{{N|thoronir_tharal_4|||||}}|}; -{thoronir_tharal_4|Do you think you could find me 5 skeletal bones that I can use for mixing a Bonemeal potion? The bonemeal is very potent in healing old wounds.||{{Sure, I might be able to do that.|thoronir_tharal_5|||||}{I have those bones for you.|thoronir_tharal_complete||bone|5|0|}}|}; -{thoronir_tharal_5|Thank you, please come back soon. I heard there were some undead near an old abandoned house just north of Fallhaven. Maybe you can check for bones there?|{{0|bonemeal|40|}}|{{Ok, I\'ll go check there.|thoronir_default|||||}}|}; -{thoronir_tharal_complete|Thank you, these bones will do fine. Now I can start creating some bonemeal healing potions for you.|{{0|bonemeal|100|}}|{{N|thoronir_complete_2|||||}}|}; -{thoronir_complete_2|Give me some time to mix the Bonemeal potion. It is a very potent healing potion. Come back in a little while.|||}; -{thoronir_trade_bonemeal|Yes, the Bonemeal potions are ready. Please use them with care, and don\'t let the guards see you. We are not actually allowed to use them anymore.||{{Let me see what potions you have made so far.|S|||||}{There was something else I wanted to talk about.|thoronir_default|||||}}|}; -{catacombguard|Turn back while you still can, mortal. This is no place for you. Only death awaits you here.||{{Very well. I will turn back.|X|||||}{Move aside, I need to get deeper into the catacombs.|catacombguard1|||||}{By the Shadow, you will not stop me.|catacombguard1|||||}}|}; -{catacombguard1|Nooo, you shall not pass!||{{Ok. Let\'s fight.|F|||||}}|}; -{luthor|*hissss* What mortal disturbs my sleep?||{{By the Shadow, what are you?|F|||||}{At last, a worthy fight! I have been waiting for this.|F|||||}{Whatever, let\'s get this over with.|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{athamyr|Walk with the Shadow.||{{Have you been down in the catacombs?|athamyr_select|bucus:20||||}}|}; -{athamyr_1|Yes, I have been in the catacombs beneath Fallhaven Church.||{{N|athamyr_2|||||}}|}; -{athamyr_2|But I\'m the only one that both has the permission and the bravery to go down there.||{{How can I get permission to go down there?|athamyr_3|||||}}|}; -{athamyr_3|You want to go down in the catacombs? Hm, maybe we can make a deal.||{{N|athamyr_4|||||}}|}; -{athamyr_4|Bring me some of that delicious cooked meat from the tavern and I will give you my permission to enter the catacombs of Fallhaven Church.|{{0|bucus|30|}}|{{Here, I have cooked meat for you.|athamyr_complete||meat_cooked|1|0|}{Ok, I\'ll go get some.|X|||||}}|}; -{athamyr_complete_2|You have my permission to enter the catacombs of Fallhaven Church.|{{0|bucus|50|}}||}; -{athamyr_select|||{{|athamyr_complete_2|bucus:40||||}{|athamyr_1|||||}}|}; -{athamyr_complete|Thanks, this will do nicely.|{{0|bucus|40|}}|{{N|athamyr_complete_2|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{larcal|I don\'t have time for you, kid. Get lost.||{{I found a note with your name on it while looking for the book \'Calomyran Secrets\'.|larcal_1|calomyran:20||||}}|}; -{larcal_1|Now now, what have we here? Are you implying that I have been down in Arcir\'s basement?||{{N|larcal_2|||||}}|}; -{larcal_2|So, maybe I was. The book is mine anyway.||{{N|larcal_3|||||}}|}; -{larcal_3|Look, let\'s solve this peacefully. You walk away and forget about that book, and you might still live.||{{Very well. Keep your book.|larcal_4|||||}{No, you will give me that book.|larcal_5|||||}}|}; -{larcal_4|Good boy. Now run away.|||}; -{larcal_5|Ok, now you\'re starting to annoy me, kid. Get lost while you still can.||{{Very well. I will leave.|X|||||}{No, that book is not yours!|larcal_6|||||}}|}; -{larcal_6|You are still here? Ok then, if you want the book that bad, you will have to take it from me!||{{At last, a fight. I have been waiting for this!|F|||||}{I had hoped it wouldn\'t come to this.|F|||||}{Very well. I will leave.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{unnmir|||{ - {|unnmir_r|nocmar:10||||} - {|unnmir_0|||||} - }|}; -{unnmir_r|Hello again. You should go talk to Nocmar.||{{N|unnmir_13|||||}}|}; -{unnmir_0|Hi there.||{{There was a drunk outside the tavern that told me a story about you two.|unnmir_1|fallhavendrunk:100||||}}|}; -{unnmir_1|That old drunk over at the tavern told you his story did he?||{{N|unnmir_2|||||}}|}; -{unnmir_2|Same old story. We used to travel together a few years back.||{{N|unnmir_3|||||}}|}; -{unnmir_3|Real adventuring you know, swords and spells.||{{N|unnmir_4|||||}}|}; -{unnmir_4|Then, after a while, we stopped. I can\'t really say why, I guess we got tired of life on the road. We settled down here in Fallhaven.||{{N|unnmir_5|||||}}|}; -{unnmir_5|Nice little town here. A lot of thieves around, but they don\'t bother me.||{{N|unnmir_6|||||}}|}; -{unnmir_6|So what\'s your story, kid? How did you end up here in Fallhaven?||{{I\'m looking for my brother.|unnmir_7|||||}}|}; -{unnmir_7|Yeah yeah, I get it. Your brother has probably run off to some dungeon, trying to go adventuring. *rolls eyes*||{{N|unnmir_8|||||}}|}; -{unnmir_8|Or maybe he has gone to one of the bigger cities to the north.||{{N|unnmir_9|||||}}|}; -{unnmir_9|Can\'t say I blame him for wanting to see the world.||{{N|unnmir_10|||||}}|}; -{unnmir_10|Hey, by the way, are you looking to be an adventurer?||{{Yes|unnmir_11|||||}{No, not really.|unnmir_12|||||}}|}; -{unnmir_11|Nice. I\'ll give you a hint, kid. *snickering*. Go see Nocmar over by the west side of town. Tell him I sent you.|{{0|nocmar|10|}}|{{N|unnmir_13|||||}}|}; -{unnmir_12|Smart move. Adventuring leads to a lot of scars. If you know what I mean.|||}; -{unnmir_13|His house is just southwest of the tavern.||{{Thanks, I\'ll go see him.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{gaela|||{ - {|gaela_r|andor:40||||} - {|gaela_0|||||} - }|}; -{gaela_r|Hello again. I hope you will find what you are looking for.|||}; -{gaela_0|Swift is my blade. Poisoned is my tongue. Or was it the other way around?||{{There seems to be a lot of thieves here in Fallhaven.|gaela_1|||||}}|}; -{gaela_1|Yes, we thieves have a strong presence here.||{{Anything more?|gaela_2|andor:30||||}}|}; -{gaela_2|I heard that you helped Gruil, a fellow thief in Crossglen village.||{{N|gaela_3|||||}}|}; -{gaela_3|Word has also reached me that you are looking for someone. I might be able to help you.||{{N|gaela_4|||||}}|}; -{gaela_4|You should go talk to Bucus in the derelict house a bit southwest of here. Tell him you want to know more about the Thieves\' Guild.|{{0|andor|40|}}|{{Thanks, I\'ll go talk to him.|gaela_5|||||}}|}; -{gaela_5|Consider it a favor done in return for helping Gruil.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{vacor|||{{|vacor_return_complete0|vacor:60||||}{|vacor_return2|vacor:40||||}{|vacor_42|vacor:30||||}{|vacor_select1|||||}}|}; -{vacor_select1|||{{|vacor_return1|vacor:20||||}{|vacor_begin|||||}}|}; -{vacor_begin|Hello.||{{N|vacor_2|||||}}|}; -{vacor_2|What are you, some kind of adventurer? Hm. Maybe you can be of use to me.||{{N|vacor_3|||||}}|}; -{vacor_3|Are you willing to help me?||{{Sure, what do you need help with?|vacor_4|||||}{No, why should I help you?|vacor_bah|||||}}|}; -{vacor_bah|Bah, lowly creature. I knew I shouldn\'t have asked you. Now leave me.|||}; -{vacor_4|A while ago, I was working on a rift spell that I had read about.||{{N|vacor_5|||||}}|}; -{vacor_5|The spell is supposed to, shall we say, open up new possibilities.||{{N|vacor_6|||||}}|}; -{vacor_6|Erm, yes, the rift spell will open things up alright. Ahem.||{{N|vacor_7|||||}}|}; -{vacor_7|So there I was working hard on getting the last pieces together for it.||{{N|vacor_8|||||}}|}; -{vacor_8|Then, all of a sudden, a gang of thugs came around and started bullying me.||{{N|vacor_9|||||}}|}; -{vacor_9|They said they were Messengers of the Shadow, and insisted that I should cease my spell making.||{{N|vacor_10|||||}}|}; -{vacor_10|Preposterous, isn\'t it? I was so close to having the power!||{{N|vacor_11|||||}}|}; -{vacor_11|Oh, the power I could have had. My dear rift spell.|{{0|vacor|10|}}|{{N|vacor_12|||||}}|}; -{vacor_12|Anyway, I was just about to finish the last piece of my rift spell when the bandits came and robbed me.||{{N|vacor_13|||||}}|}; -{vacor_13|The bandits took my notes for the spell and took off before I could call the guards.||{{N|vacor_14|||||}}|}; -{vacor_14|After years of work, I can\'t seem to remember the last parts of the spell.||{{N|vacor_15|||||}}|}; -{vacor_15|Do you think you could help me locate it? Then I could have the power at last!||{{N|vacor_16|||||}}|}; -{vacor_16|You will of course be suitably rewarded for your part in me getting this power.||{{A reward? I\'m in!|vacor_17|||||}{Very well. I will help you.|vacor_17|||||}{No thanks, this seems like something that I would rather not get involved with.|vacor_bah|||||}}|}; -{vacor_17|I knew I couldn\'t trust... Wait, what? You actually said yes? Hah, well then.||{{N|vacor_18|||||}}|}; -{vacor_18|Ok, find the four pieces of my rift spell that the bandits took, and bring the pieces to me.|{{0|vacor|20|}}|{{N|vacor_19|||||}}|}; -{vacor_19|There were four bandits, and they all headed south of Fallhaven after I was attacked.||{{N|vacor_20|||||}}|}; -{vacor_20|You should search the southern parts of Fallhaven for the four bandits.||{{N|vacor_21|||||}}|}; -{vacor_21|Please hurry! I am so eager to open up the rift.. Erm, I mean finish the spell. Nothing odd with that right?|||}; -{vacor_return1|Hello again. How is the search for my missing pieces of the rift spell going?||{{I have found all the pieces.|vacor_40||vacor_spell|4|0|}{What was I supposed to do again?|vacor_18|||||}{Could you tell me the whole story again?|vacor_4|||||}}|}; -{vacor_40|Oh, you found all four pieces? Hurry, give them to me.|{{0|vacor|30|}}|{{N|vacor_41|||||}}|}; -{vacor_41|Yes, these are the pieces that the bandits took.||{{N|vacor_42|||||}}|}; -{vacor_42|Now I should be able to finish the rift spell and open up the Shadow rift .. erm I mean open up new possibilities. Yes, that\'s what I meant.||{{N|vacor_43|||||}}|}; -{vacor_43|The only obstacle between me and continuing my rift spell research is that stupid Unzel fellow.||{{N|vacor_44|||||}}|}; -{vacor_44|Unzel was my apprentice a while ago. But he started to annoy me with his questions and talk about morality.||{{N|vacor_45|||||}}|}; -{vacor_45|He said that my spell making was disrupting the will of the Shadow.||{{N|vacor_46|||||}}|}; -{vacor_46|Bah, the Shadow. What has it ever done for ME?!||{{N|vacor_47|||||}}|}; -{vacor_47|I shall one day cast my rift spell and we will be rid of the Shadow.||{{N|vacor_48|||||}}|}; -{vacor_48|Anyway. I have a feeling that Unzel sent those bandits after me, and if I don\'t stop him he will probably send more.||{{N|vacor_49|||||}}|}; -{vacor_49|I need you to find Unzel and kill him for me. He can probably be found somewhere southwest of Fallhaven.|{{0|vacor|40|}}|{{N|vacor_50|||||}}|}; -{vacor_50|Bring me his signet ring as proof when you have killed him.||{{N|vacor_51|||||}}|}; -{vacor_51|Now hurry, I cannot wait much longer. The power shall be MINE!|||}; -{vacor_return2|Hello again. Any progress yet?||{{About Unzel...|vacor_return2_2|||||}{Could you tell me the story again?|vacor_43|||||}}|}; -{vacor_return2_2|Have you killed Unzel for me yet? Bring me his signet ring when you have killed him.||{{I have dealt with him. Here is his ring.|vacor_60||ring_unzel|1|0|}{I listened to Unzel\'s story and have decided to side with him. The Shadow must be preserved.|vacor_70|vacor:51||||}}|}; -{vacor_60|Ha ha, Unzel is dead! That pathetic creature is gone!|{{0|vacor|60|}}|{{N|vacor_61|||||}}|}; -{vacor_61|I can see the blood on your boots. I even got you to kill his minions beforehand.||{{N|vacor_62|||||}}|}; -{vacor_62|This is a great day indeed. I will soon have the power!||{{N|vacor_63|||||}}|}; -{vacor_63|Here, have these coins for your help.|{{1|gold200||}}|{{N|vacor_64|||||}}|}; -{vacor_64|Now leave me, I have work to do before I can cast the rift spell.|||}; -{vacor_return_complete0|||{ - {|vacor_msg_16|kaverin:90||||} - {|vacor_msg_9|kaverin:75||||} - {|vacor_msg1|kaverin:60|kaverin_message|1|1|} - {|vacor_return_complete|||||} - }|}; -{vacor_return_complete|Hello again, my assassin friend. I will soon have my rift spell ready.|||}; -{vacor_70|What? He told you his story? You actually believed it?||{{N|vacor_71|||||}}|}; -{vacor_71|I will give you one more chance. Either kill Unzel for me, and I will reward you handsomely, or you will have to fight me.||{{No. You must be stopped.|vacor_72|||||}{Ok, I\'ll think about it once more.|X|||||}}|}; -{vacor_72|Bah, lowly creature. I knew I shouldn\'t have trusted you. Now you will die along with your precious Shadow.|{{0|vacor|54|}}|{{For the Shadow!|F|||||}{You must be stopped.|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{unzel_1|Hello. I\'m Unzel.||{{Is this your camp?|unzel_2|||||}{I am sent by Vacor to kill you.|unzel_3|vacor:40||||}}|}; -{unzel_2|Yes, this is my camp. Lovely place, isn\'t it?||{{Bye|X|||||}}|}; -{unzel_3|Vacor sent you huh? I guess I should have figured he would send someone sooner or later.||{{N|unzel_4|||||}}|}; -{unzel_4|Very well then. Kill me if you must, or allow me to tell you my side of the story.||{{Hah, I will enjoy killing you!|unzel_fight|||||}{I will listen to your story.|unzel_5|||||}}|}; -{unzel_fight|Very well, let\'s fight then.|{{0|vacor|53|}}|{{A fight it is!|F|||||}}|}; -{unzel_5|Thank you for listening.||{{N|unzel_10|||||}}|}; -{unzel_10|Vacor and I used to travel together, but he started to get obsessed with his spell making.||{{N|unzel_11|||||}}|}; -{unzel_11|He even started to question the Shadow. I knew I had to do something to stop him!||{{N|unzel_12|||||}}|}; -{unzel_12|I started questioning him about what he was up to, but he just wanted to keep on going.||{{N|unzel_13|||||}}|}; -{unzel_13|After a while, he became obsessed with the thought of a rift spell. He said it would grant him unlimited powers against the Shadow.||{{N|unzel_14|||||}}|}; -{unzel_14|So, there was only one thing I could do. I left him and needed to stop him from trying to create the rift spell.||{{N|unzel_15|||||}}|}; -{unzel_15|I sent some friends to take the spell from him.||{{N|unzel_16_select|||||}}|}; -{unzel_16_select|||{{|unzel_16_2|vacor:50||||}{|unzel_16_1|||||}}|}; -{unzel_16_1|So, here we are.||{{I killed the four bandits you sent after Vacor.|unzel_17|||||}}|}; -{unzel_16_2|So, here we are.||{{N|unzel_19|||||}}|}; -{unzel_17|What? You killed my four friends? Argh, I feel the rage coming.||{{N|unzel_18|||||}}|}; -{unzel_18|However, I also realize that all this is the making of Vacor. I\'ll give you a choice now. Choose wisely.||{{N|unzel_19|||||}}|}; -{unzel_19|Either you side with Vacor and his rift spell, or side with the Shadow, and help me get rid of him. Who will you help?|{{0|vacor|50|}}|{{I will side with you. The Shadow must not be disturbed.|unzel_20|||||}{I will side with Vacor.|unzel_fight|||||}}|}; -{unzel_20|Thank you my friend. We will keep the Shadow safe from Vacor.|{{0|vacor|51|}}|{{N|unzel_21|||||}}|}; -{unzel_21|You should go talk to him about the Shadow.|||}; -{unzel_return_1|Welcome back. Did you talk to Vacor?||{{Yes, I have dealt with him.|unzel_30||ring_vacor|1|0|}{No, not yet.|X|||||}}|}; -{unzel_30|You killed him? You have my thanks friend. Now we are safe from Vacor\'s rift spell. Here, take these coins for your help.|{{0|vacor|61|}{1|gold200||}}|{{Shadow be with you.|X|||||}{Thank you.|X|||||}}|}; -{unzel_40|Thank you for your help. Now we are safe from Vacor\'s rift spell.||{{I have a message for you from Kaverin in Remgard.|unzel_msg1|kaverin:25|kaverin_message|1|1|}}|}; -{unzel|||{{|unzel_msg_r0|kaverin:30||||}{|unzel_40|vacor:61||||}{|unzel_return_1|vacor:51||||}{|unzel_1|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fallhaven_bandit|Get lost kid. I don\'t have time for you.||{{I\'m looking for a piece of the Rift spell.|fallhaven_bandit_2|vacor:20||||}}|}; -{fallhaven_bandit_2|No! Vacor will not gain the power of the rift spell! ||{{Let\'s fight!|F|||||}}|}; -{bandit1|What have we here? A lost wanderer? ||{{N|bandit1_2|||||}}|}; -{bandit1_2|How much is your life worth to you? Give me 100 gold and I\'ll let you go.||{{Ok ok. Here is the gold. Please don\'t hurt me!|bandit1_3||gold|100|0|}{How about we fight over it?|bandit1_4|||||}{How much is your life worth?|bandit1_4|||||}}|}; -{bandit1_3|About damn time. You are free to go.|||}; -{bandit1_4|Ok then, your life it is. Let\'s fight. I have been looking forward to a good fight!||{{Let\'s fight!|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{zombie1|Fresh flesh!||{{By the Shadow, I will slay you.|F|||||}{Yuck, what are you? And what is that smell?|F|||||}}|}; -{prisoner1|Nooo, I will not be imprisoned again!||{{But I am not...|F|||||}}|}; -{prisoner2|Aaaa! Who\'s there? I will not be enslaved again!||{{Calm down, I was just...|F|||||}}|}; - -{flagstone_guard0|Ah, another mortal. Prepare to become part of my undead army!|{{0|flagstone|31|}}|{{Shadow take you.|F|||||}{Prepare to die once more.|F|||||}}|}; -{flagstone_guard1|Die mortal!||{{Shadow take you.|F|||||}{Prepare to meet my blade.|F|||||}}|}; -{flagstone_guard2|What, a mortal in here that is not marked by my touch?|{{0|flagstone|50|}}|{{N|flagstone_guard2_2|||||}}|}; -{flagstone_guard2_2|You seem delicious and soft, will you be part of the feast?||{{N|flagstone_guard2_3|||||}}|}; -{flagstone_guard2_3|Yes, I think you will. My undead army will spread far outside of Flagstone once I am done with you.||{{By the Shadow, you must be stopped!|F|||||}{No! This land must be protected from the undead!|F|||||}}|}; -{flagstone_sentry|||{{|flagstone_sentry_return4|flagstone:60||||}{|flagstone_sentry_return3|flagstone:40||||}{|flagstone_sentry_select0|||||}}|}; -{flagstone_sentry_select0|||{{|flagstone_sentry_return2|flagstone:30||||}{|flagstone_sentry_return1|flagstone:10||||}{|flagstone_sentry_1|||||}}|}; -{flagstone_sentry_1|Halt! Who\'s there? No one is allowed to approach Flagstone.||{{N|flagstone_sentry_2|||||}}|}; -{flagstone_sentry_2|You should turn back while you still can.||{{N|flagstone_sentry_3|||||}}|}; -{flagstone_sentry_3|Flagstone has been overrun by undead, and I\'m standing guard here to make sure no undead escape.||{{Can you tell me the story about Flagstone?|flagstone_sentry_4|||||}}|}; -{flagstone_sentry_4|Flagstone used to be a prison camp for runaway workers from when Mount Galmore was dug out.||{{N|flagstone_sentry_5|||||}}|}; -{flagstone_sentry_5|But once the digging in Mount Galmore stopped, the prison camp lost its purpose.||{{N|flagstone_sentry_6|||||}}|}; -{flagstone_sentry_6|The lord at the time did not care much for the prisoners that were already in Flagstone, so he left them there.||{{N|flagstone_sentry_7|||||}}|}; -{flagstone_sentry_7|The warden that ran Flagstone on the other hand took his duty very seriously, and kept on running the prison just like it was when Mount Galmore was being dug out.||{{N|flagstone_sentry_8|||||}}|}; -{flagstone_sentry_8|For years, no one took notice of Flagstone. Except for the occasional reports from travelers of terrible screams coming from the camp.||{{N|flagstone_sentry_9|||||}}|}; -{flagstone_sentry_9|There was a change recently, now the undead pour out in great numbers.||{{N|flagstone_sentry_10|||||}}|}; -{flagstone_sentry_10|So, here we are. I have to guard the road from undead, so that they do not spread farther than Flagstone.||{{N|flagstone_sentry_11|||||}}|}; -{flagstone_sentry_11|So, I would advise you to leave unless you want to be overrun by undead.||{{Can I investigate the Flagstone ruins?|flagstone_sentry_12|||||}{Yes, I should leave.|X|||||}}|}; -{flagstone_sentry_12|Are you really sure you want to head in there? Well, ok, fine by me.||{{N|flagstone_sentry_13|||||}}|}; -{flagstone_sentry_13|I won\'t stop you, and I won\'t mourn you if you never return.||{{N|flagstone_sentry_14|||||}}|}; -{flagstone_sentry_14|Go ahead. Let me know if there\'s anything I can tell you that would help.||{{N|flagstone_sentry_15|||||}}|}; -{flagstone_sentry_15|Return here if you need my advice.|{{0|flagstone|10|}}|{{Ok. I will return to you if there is anything I need help with.|X|||||}}|}; -{flagstone_sentry_return1|Hello again. Did you enter Flagstone? I am surprised you actually returned.||{{Can you tell me the story again?|flagstone_sentry_4|||||}{There is a guardian in the lower levels of Flagstone that cannot be approached.|flagstone_sentry_20|flagstone:20||||}}|}; -{flagstone_sentry_20|A guardian you say? This is troubling news, since it means there is some larger force behind all this.||{{N|flagstone_sentry_21|||||}}|}; -{flagstone_sentry_21|Have you found the former warden of Flagstone? The warden used to have a necklace with him at all times.||{{N|flagstone_sentry_22|||||}}|}; -{flagstone_sentry_22|He was very protective of it. Maybe the necklace was some sort of key.||{{N|flagstone_sentry_23|||||}}|}; -{flagstone_sentry_23|If you find the warden and retrieve the necklace, then please return here and I will help you decipher any message that we might find on it.|{{0|flagstone|30|}}|{{I have found it, here.|flagstone_sentry_40||necklace_flagstone|1|0|}{What was that about the guardian again?|flagstone_sentry_20|||||}{Ok, I will go look for the former warden.|X|||||}}|}; -{flagstone_sentry_return2|Hello again. Have you found the former warden in Flagstone yet?||{{About the former warden...|flagstone_sentry_23|||||}{Can you tell me the story again?|flagstone_sentry_3|||||}}|}; -{flagstone_sentry_40|You found the necklace? Good. Here, give it to me.|{{0|flagstone|40|}}|{{N|flagstone_sentry_41|||||}}|}; -{flagstone_sentry_41|Now, let\'s see here. Ah yes, it is as I thought. The necklace contains a password.||{{N|flagstone_sentry_42|||||}}|}; -{flagstone_sentry_42|\'Daylight Shadow\'. That must be it. You should try to approach the guardian with this password.||{{Thanks, bye.|X|||||}}|}; -{flagstone_sentry_return3|Hello again. How is the investigation of the undead in Flagstone going?||{{No progress yet.|flagstone_sentry_43|||||}}|}; -{flagstone_sentry_43|Well, keep looking. Return to me if you need my advice.|||}; -{flagstone_sentry_return4|Hello again. It seems something happened inside Flagstone that made the undead weaker. I\'m sure we have you to thank for it.|||}; - -{narael|Thank you, thank you for freeing me from that monster.||{{N|narael_select|||||}}|}; -{narael_select|||{{|narael_9|flagstone:60||||}{|narael_1|||||}}|}; -{narael_1|I have been a captive here for what seems to be an eternity.||{{N|narael_2|||||}}|}; -{narael_2|Oh, the things they did to me. Thank you so much for freeing me.||{{N|narael_3|||||}}|}; -{narael_3|I was once a citizen in Nor City, and worked on the excavation of Mount Galmore.||{{N|narael_4|||||}}|}; -{narael_4|After a while, the day came when I wanted to quit the assignment and return to my wife.||{{N|narael_5|||||}}|}; -{narael_5|The officer in charge would not let me, and I was sent to Flagstone as a prisoner for disobeying orders.||{{N|narael_6|||||}}|}; -{narael_6|If only I could see my wife once more. I have hardly any life left in me, and I don\'t even have enough strength to leave this place.||{{N|narael_7|||||}}|}; -{narael_7|I guess my fate is to perish here, but now as a free man at least.||{{N|narael_8|||||}}|}; -{narael_8|Now leave me to my fate. I do not have the strength to leave this place.|{{0|flagstone|60|}}|{{N|narael_9|||||}}|}; -{narael_9|If you find my wife Taurum in Nor City, please tell her I\'m alive and that I haven\'t forgotten about her.||{{I will. Goodbye.|X|||||}{I will. Shadow be with you.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fallhaven_lumberjack|Hi, I\'m Jakrar.||{{Are you a woodcutter?|fallhaven_lumberjack_2|||||}}|}; -{fallhaven_lumberjack_2|Yes, I\'m Fallhaven\'s woodcutter. Need anything done in the finest of woods? I have probably got it.|||}; -{alaun|Hello. I\'m Alaun. How can I help you?||{{Have you seen my brother Andor? He looks similar to me.|alaun_2|||||}}|}; -{alaun_2|You are looking for your brother you say? Looks like you? Hm.||{{N|alaun_3|||||}}|}; -{alaun_3|No, I cannot recall seeing anyone by that description. Maybe you should try in Crossglen village west of here.|||}; -{fallhaven_farmer1|Hello there. Please do not bother me, I have a lot of work to do.|||}; -{fallhaven_farmer2|Hello. Could you please move out of the way? I am trying to work here.|||}; -{khorand|Hey you, don\'t even think of touching any of the crates. I am watching you!|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{keyarea_andor1|You should talk to Mikhail first.|||}; -{note_lodars|On the ground, you find a piece of paper with a lot of strange symbols. You can barely make out the words \'meet me at Lodar\'s hideaway\', but you are not sure what it means.|||}; -{keyarea_crossglen_smith|Audir shouts: Hey you, get away! You are not allowed back there.|||}; -{sign_crossglen_cave|The sign on the wall is cracked in several places. You cannot make out anything comprehensible from the writing.|||}; -{sign_wild1|West: Crossglen\nSouth: Fallhaven\nNorth: Feygard|||}; -{sign_notdone|This map is not yet done. Please come back in a later version of the game.|||}; -{sign_wild3|West: Crossglen\nEast: Fallhaven\nNorth: Feygard|||}; -{sign_pitcave2|Gandir lies here, slain by the hand of his former friend Irogotu.|||}; -{sign_fallhaven1|Welcome to Fallhaven. Watch out for pickpockets!|||}; -{key_fallhavenchurch|You are not allowed to enter the catacombs of Fallhaven Church without permission.|||}; -{arcir_basement_tornpage|You see a torn page from a book titled \'Calomyran Secrets\'. Blood stains its edges, and someone has scribbled the words \'Larcal\' with the blood.|{{0|calomyran|20|}}||}; -{arcir_basement_statue|Elythara, mother of the light. Protect us from the curse of the Shadow.|{{0|arcir|10|}}||}; -{fallhaven_tavern_room|You are not allowed into the room unless you have rented it.|||}; -{fallhaven_derelict1|Bucus shouts: Hey you, get away from there!|||}; -{sign_wild6|North: Crossglen\nEast: Fallhaven\nSouth: Stoutford|||}; -{sign_wild7|West: Stoutford\nNorth: Fallhaven|||}; -{sign_wild10|North: Fallhaven\nWest: Stoutford|||}; -{flagstone_key_demon|The demon radiates a force that pushes you back, making it impossible to approach the demon.|||}; -{flagstone_brokensteps|You notice that this tunnel seems to be dug out from below Flagstone. Probably the work of one of the former prisoners from Flagstone.|{{0|flagstone|20|}}||}; -{sign_wild12|North: Fallhaven\nEast: Vilegard\nEast: Nor City|||}; - - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{thievesguild_thief_1|Hello kid.||{{Hello. Do you know where I can find Umar?|thievesguild_thief_4|||||}{What is this place?|thievesguild_thief_2|||||}}|}; -{thievesguild_thief_2|This is our guild hall. We are safe from the guards of Fallhaven in here.||{{N|thievesguild_thief_3|||||}}|}; -{thievesguild_thief_3|We can do pretty much as we like here. As long as Umar allows it, that is.||{{Do you know where I can find Umar?|thievesguild_thief_4|||||}{Who is Umar?|thievesguild_thief_5|||||}}|}; -{thievesguild_thief_4|He is probably in his room over there. *points*||{{Thanks.|X|||||}}|}; -{thievesguild_thief_5|Umar is our guild leader. He decides our rules and guides us in moral decisions.||{{Where can I find him?|thievesguild_thief_4|||||}}|}; - -{thievesguild_cook_1|Hello, did you want something?||{{You look like the cook around here.|thievesguild_cook_2|||||}{Can I see what food you have for sale?|S|||||}{Farrik said you can prepare me a round of special mead.|thievesguild_select_1|farrik:20||||}}|}; -{thievesguild_cook_2|That\'s right. Someone has to keep these ruffians fed.||{{That sure smells good|thievesguild_cook_3|||||}{That stew looks disgusting|thievesguild_cook_4|||||}{Never mind, bye|X|||||}}|}; -{thievesguild_cook_3|Thanks. This stew is coming along nicely.||{{I\'m interested in buying some of that.|S|||||}}|}; -{thievesguild_cook_4|Yeah, I know. With ingredients this bad, what can you do? Anyway, it keeps us fed.||{{Can I see what food you have for sale?|S|||||}}|}; -{thievesguild_cook_5|Oh sure. Planning to get someone a bit sleepy eh?||{{N|thievesguild_cook_6|||||}}|}; -{thievesguild_cook_6|Don\'t worry, I won\'t tell anyone. Making sleepy food is one of my specialties.||{{N|thievesguild_cook_7|||||}}|}; -{thievesguild_cook_7|Give me a minute to mix it up for you.||{{N|thievesguild_cook_8|||||}}|}; -{thievesguild_select_1|||{{|thievesguild_cook_10|farrik:25||||}{|thievesguild_cook_5|||||}}|}; -{thievesguild_cook_8|There. This should do it. Here you go.|{{0|farrik|25|}{1|sleepingmead||}}|{{N|thievesguild_cook_9|||||}}|}; -{thievesguild_cook_10|Yes, I gave you the special brew earlier.||{{N|thievesguild_cook_9|||||}}|}; -{thievesguild_cook_9|Be careful not to get any of that stuff on your fingers, it is really potent.||{{Thank you.|X|||||}}|}; - -{thievesguild_pickpocket_1|Hello there.||{{Who are you?|thievesguild_pickpocket_2|||||}{What is this place?|thievesguild_thief_2|||||}}|}; -{thievesguild_pickpocket_2|My real name is unimportant. People mostly call me Quickfingers.||{{Why is that?|thievesguild_pickpocket_3|||||}}|}; -{thievesguild_pickpocket_3|Well, I have a tendency to .. how shall I put this .. acquire certain things easily.||{{N|thievesguild_pickpocket_4|||||}}|}; -{thievesguild_pickpocket_4|Things previously in the possession of other people.||{{Do you mean like stealing?|thievesguild_pickpocket_5|||||}}|}; -{thievesguild_pickpocket_5|No no. I wouldn\'t call it stealing. It\'s more of a transfer of ownership. To me, that is.||{{That sounds a lot like stealing to me.|thievesguild_pickpocket_6|||||}{That sounds like a good justification.|thievesguild_pickpocket_6|||||}}|}; -{thievesguild_pickpocket_6|After all, we are the Thieves\' Guild. What did you expect?|||}; - -{thievesguild_troublemaker_1|Hello. Don\'t I recognize you from somewhere?||{{No, I\'m sure we have never met.|thievesguild_troublemaker_3|||||}{What do you do around here?|thievesguild_troublemaker_2|||||}{Can I take a look at what supplies you have available?|S|||||}}|}; -{thievesguild_troublemaker_2|I keep an eye on our supplies for the guild.||{{Can I take a look at what you have available?|S|||||}}|}; -{thievesguild_troublemaker_3|No, I really recognize you.||{{You must have me mixed up with someone else.|thievesguild_troublemaker_4|||||}{Maybe you have me mixed up with my brother Andor.|thievesguild_troublemaker_5|||||}}|}; -{thievesguild_troublemaker_4|Yes, might be.||{{Have you seen my brother around here? He looks somewhat like me.|thievesguild_troublemaker_5|||||}}|}; -{thievesguild_troublemaker_5|Oh yes, now that you mention it. There was that kid running around here, asking a lot of questions.||{{Do you know what he was looking for, or what he was doing?|thievesguild_troublemaker_6|||||}}|}; -{thievesguild_troublemaker_6|No. I don\'t know. I just manage the supplies.||{{Ok, thanks anyway. Goodbye.|X|||||}{Bah, you\'re useless. Goodbye.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{farrik_1|Hello. I heard that you helped us find the key of Luthor. Good work, it will really come in handy.||{{Who are you?|farrik_2|||||}{What can you tell me about the Thieves\' Guild?|farrik_4|||||}}|}; -{farrik_2|I\'m Farrik, Umar\'s brother.||{{What do you do around here?|farrik_3|||||}{What can you tell me about the Thieves\' Guild?|farrik_4|||||}}|}; -{farrik_3|I mostly manage our trading with other guilds and keep an eye on what the thieves need to be as effective as they can be.||{{What can you tell me about the Thieves\' Guild?|farrik_4|||||}}|}; -{farrik_4|We try to keep to ourselves as much as possible, and help our fellow thieves as much as possible.||{{Any recent events happening?|farrik_5|||||}}|}; -{farrik_5|Well, there was one thing a few weeks ago. One of our guild members got arrested for trespassing.||{{N|farrik_6|||||}}|}; -{farrik_6|The Fallhaven guard has started to get really annoyed at us lately. Probably because we have been very successful in our recent missions.||{{N|farrik_7|||||}}|}; -{farrik_7|The guards have increased their security lately, leading to them arresting one of our members.||{{N|farrik_8|||||}}|}; -{farrik_8|He is currently held in the jail here in Fallhaven, pending transfer to Feygard.||{{What did he do?|farrik_9|||||}}|}; -{farrik_9|Oh, nothing serious. He was trying to get into the catacombs of Fallhaven church.||{{N|farrik_10|||||}}|}; -{farrik_10|But now that you have helped us with that mission, I guess we don\'t need to go there anymore.||{{N|farrik_11|||||}}|}; -{farrik_11|I guess I can trust you with this secret. We are planning a mission tonight to help him out of jail.|{{0|farrik|10|}}|{{Those guards really seem annoying.|farrik_13|||||}{After all, if he wasn\'t allowed down there, then the guards are right to arrest him.|farrik_12|||||}}|}; -{farrik_12|Yeah, I guess so. But for the guild\'s sake, we would rather have our friend freed than imprisoned.||{{Maybe I should tell the guards that you are planning to get him out?|farrik_15|||||}{Don\'t worry, your secret plan to free him is safe with me.|farrik_14|||||}{[Lie] Don\'t worry, your secret plan to free him is safe with me.|farrik_14|||||}}|}; -{farrik_13|Oh yes, they are. The people also dislike them in general, it\'s not just us in the Thieves\' Guild.||{{Is there anything I can do to help you with those annoying guards?|farrik_16|||||}}|}; -{farrik_14|Thank you. Now please leave me.|||}; -{farrik_15|Whatever, they wouldn\'t believe you anyway.|{{0|farrik|30|}}||}; -{farrik_16|Are you sure you want to annoy the guards? If they catch word of you being involved, you could get into a lot of trouble.||{{No problem, I can handle myself!|farrik_18|||||}{There might be a reward for this later on. I\'m in.|farrik_18|||||}{On second thought, maybe I should keep out of this.|farrik_17|||||}}|}; -{farrik_17|Sure, it\'s up to you.||{{Good luck on your mission.|farrik_14|||||}{Maybe I should tell the guards that you are planning to get him out?|farrik_15|||||}}|}; -{farrik_18|Good.||{{N|farrik_19|||||}}|}; -{farrik_19|Ok, here is the plan. The guard captain has a bit of a drinking problem.||{{N|farrik_20|||||}}|}; -{farrik_20|If we were able to supply him with some mead that we have prepared, we might just be able to sneak our friend out during the night, when the captain is sleeping off the drunkenness.||{{N|farrik_20a|||||}}|}; -{farrik_20a|Our cook can prepare a special brew of mead for you that will knock him out.||{{N|farrik_21|||||}}|}; -{farrik_21|He would probably need to be persuaded to drink on duty too. If that should fail, he could probably be bribed instead.||{{N|farrik_22|||||}}|}; -{farrik_22|How does that sound to you? Do you think you are up to it?||{{Sure, sounds easy!|farrik_23|||||}{Sounds a bit dangerous, but I guess I\'ll try.|farrik_23|||||}{No, this is really starting to sound like a bad idea.|farrik_17|||||}}|}; -{farrik_23|Good. Report back to me when you have gotten the guard captain to drink that special mead.|{{0|farrik|20|}}|{{Will do|farrik_14|||||}}|}; -{farrik_return_1|Hello again my friend. How goes your mission to get the guard captain drunk?||{{I am not done yet, but I am working on it.|farrik_23|||||}{[Lie] It is done. He should be no problem during the night.|farrik_26|farrik:50||||}{It is done. He should be no problem during the night.|farrik_24|farrik:60||||}}|}; -{farrik_select_1|||{{|farrik_return_2|farrik:70||||}{|farrik_return_2|farrik:80||||}{|farrik_select_2|||||}}|}; -{farrik_select_2|||{{|farrik_return_1|farrik:20||||}{|farrik_1|||||}}|}; -{farrik_24|That is good news! Now we should be able to get our friend out from jail tonight.|{{0|farrik|70|}}|{{N|farrik_25|||||}}|}; -{farrik_25|Thank you for your help my friend. Take these coins as a token of our appreciation.|{{1|gold200||}}|{{Thank you. Goodbye.|X|||||}{Finally, some gold.|X|||||}}|}; -{farrik_return_2|Thank you for your help with the guard captain earlier.|||}; -{farrik_26|Oh you did? Well done. You have my thanks, friend.|{{0|farrik|80|}}||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fallhaven_warden|State your business.||{{Who is that prisoner?|warden_prisoner_1|||||}{I heard that you are fond of mead.|fallhaven_warden_1|farrik:20||||}{The thieves are planning an escape for their friend.|fallhaven_warden_20|farrik:30||||}}|}; -{warden_prisoner_1|That thief? He was caught in the act. Trespassing he was. Trying to get down into the catacombs of Fallhaven church.||{{N|warden_prisoner_2|||||}}|}; -{warden_prisoner_2|Luckily, we caught him before he could get down there. Now he\'ll serve as an example to all other thieves.||{{N|warden_prisoner_3|||||}}|}; -{warden_prisoner_3|Damn thieves. There must be a nest of them around here somewhere. If only I could find where they hide.|||}; -{fallhaven_warden_1|Mead? Oh.. no, I don\'t do that anymore. Who told you that?||{{N|fallhaven_warden_2|||||}}|}; -{fallhaven_warden_2|I\'ve stopped doing that years ago.||{{Sounds like a good approach. Good luck with keeping away from it.|X|||||}{Not just even a little bit?|fallhaven_warden_3|||||}}|}; -{fallhaven_warden_3|Um. *clears throat* I really shouldn\'t.||{{I brought some with me if you would like to have a sip.|fallhaven_warden_4|farrik:25|sleepingmead|1|0|}{Ok, goodbye|X|||||}}|}; -{fallhaven_warden_4|Oh sweet drinks of joy. I really shouldn\'t have this while on duty though.|{{0|farrik|32|}}|{{N|fallhaven_warden_5|||||}}|}; -{fallhaven_warden_5|I could get fined for drinking on duty. I don\'t think I would dare try it right now.||{{N|fallhaven_warden_6|||||}}|}; -{fallhaven_warden_6|Thank you for the drink though, I will enjoy it when I get home later tomorrow.||{{You are welcome. Goodbye.|X|||||}{What if someone would pay you the amount of the fine?|fallhaven_warden_7|||||}}|}; -{fallhaven_warden_7|Oh, that sounds a bit shady. I doubt anyone could afford the 450 gold around here. Anyway, I would need a bit more than that just to risk it.||{{I have 500 gold right here that you could have.|fallhaven_warden_9||gold|500|0|}{You know you want the mead right?|fallhaven_warden_8|||||}{Yes, I agree. This is starting to sound too shady. Goodbye.|X|||||}}|}; -{fallhaven_warden_8|Oh sure. Now that you mention it. It sure would be good.||{{So what if I pay you, say, 400 gold. Would that cover enough of your anxiety to enjoy the drink now?|fallhaven_warden_9||gold|400|0|}{This is starting to sound too shady for me. I\'ll leave you to your duty, goodbye.|X|||||}{I\'ll go get that gold for you. Goodbye.|X|||||}}|}; -{fallhaven_warden_9|Wow, that much gold? I\'m sure I could even get away with this without being fined. Then I could have the gold AND a nice drink of mead at the same time.|{{0|farrik|60|}}|{{N|fallhaven_warden_10|||||}}|}; -{fallhaven_warden_10|Thank you kid, you really are nice. Now leave me to enjoy my drink.|||}; -{fallhaven_warden_select_1|||{{|fallhaven_warden_11|farrik:60||||}{|fallhaven_warden_35|farrik:90||||}{|fallhaven_warden_select_2|||||}}|}; -{fallhaven_warden_select_2|||{{|fallhaven_warden_30|farrik:50||||}{|fallhaven_warden_12|farrik:32||||}{|fallhaven_warden|||||}}|}; -{fallhaven_warden_11|Hello again, kid. Thanks for the drink earlier. I had it all in one go. It sure tasted a bit different than before, but I guess that is just because I\'m not used to it anymore.||{{Who is that prisoner?|warden_prisoner_1|||||}}|}; -{fallhaven_warden_12|Hello again, kid. Thanks for the drink earlier. I still haven\'t had it.||{{N|fallhaven_warden_5|||||}}|}; -{fallhaven_warden_20|Really, they would dare go up against the guard in Fallhaven? Do you have any details on their plan?||{{I heard they are planning his escape tonight|fallhaven_warden_21|||||}{No, I was just kidding with you. Never mind.|X|||||}{On second thought, I better not upset the Thieves\' Guild. Never mind I said anything.|X|||||}}|}; -{fallhaven_warden_21|Tonight? Thank you for this information. We will make sure to increase the security tonight then, but in such a way that they won\'t notice.|{{0|farrik|40|}}|{{N|fallhaven_warden_22|||||}}|}; -{fallhaven_warden_22|When they do decide to break him free, we will be prepared. Maybe we can arrest more of those filthy thieves.||{{N|fallhaven_warden_23|||||}}|}; -{fallhaven_warden_23|Thank you again for the information. While I\'m not sure how you may know this, I really appreciate you telling me.||{{N|fallhaven_warden_24|||||}}|}; -{fallhaven_warden_24|I want you to go one step further and tell them that we will have less security for tonight. But instead we will increase the security. That way we can really be ready for them.||{{Sure, I can do that.|fallhaven_warden_25|||||}}|}; -{fallhaven_warden_25|Good. Report back to me when you have told them.|{{0|farrik|50|}}|{{Will do.|X|||||}}|}; -{fallhaven_warden_30|Hello again, my friend. Did you tell those thieves that we will lower our security tonight?||{{Yes, they won\'t expect a thing.|fallhaven_warden_31|||||}{No, not yet. I\'m working on it.|fallhaven_warden_25|||||}}|}; -{fallhaven_warden_31|Great. Thank you for your help. Here, take these coins as a token of our appreciation.|{{0|farrik|90|}{1|gold200||}}|{{N|fallhaven_warden_36|||||}}|}; -{fallhaven_warden_35|Hello again, my friend. Thank you for your help in dealing with the thieves earlier.||{{N|fallhaven_warden_36|||||}}|}; -{fallhaven_warden_36|I will make sure to tell other guards how you helped us here in Fallhaven.||{{Thank you. Goodbye.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{umar_select_1|||{{|umar_return_1|andor:51||||}{|umar_novisit_1|||||}}|}; -{umar_return_1|Hello again, my friend.||{{Hello.|umar_return_2|||||}{Nice to meet you. Goodbye.|X|||||}}|}; -{umar_return_2|Anything else I can help you with?||{{Can you repeat what you said about Andor?|umar_5|||||}{Nice to meet you. Goodbye.|X|||||}}|}; -{umar_novisit_1|Hello. How did your search go?||{{What search?|umar_2|||||}}|}; -{umar_2|Last time we talked, you asked for the way to Lodar\'s Hideaway. Did you find it?||{{We have never met.|umar_3|||||}{You must have me confused with my brother Andor. We look very much alike.|umar_4|||||}}|}; -{umar_3|Oh. I must have you mixed up with someone else.||{{My brother Andor and I look very much alike.|umar_4|||||}}|}; -{umar_4|Really? Never mind I said anything then.|{{0|andor|51|}}|{{I guess that means that Andor was here. What was he doing?|umar_5|||||}}|}; -{umar_5|He came here a while ago, asking a lot of questions about what relation the Thieves\' Guild has to the Shadow and to the royal guard in Feygard.||{{N|umar_6|||||}}|}; -{umar_6|We in the Thieves\' Guild really don\'t care much for the Shadow. Nor do we care for the royal guard.||{{N|umar_7|||||}}|}; -{umar_7|We try to be above their bickering and differences. They may fight as much as they want, but the Thieves\' Guild will outlive them all.||{{What conflict?|umar_conflict_1|||||}{Tell me more about what Andor asked for|umar_andor_1|||||}}|}; -{umar_conflict_1|Where have you been the last couple of years? Don\'t you know of the brewing conflict?||{{N|umar_conflict_2|||||}}|}; -{umar_conflict_2|The royal guard, led by Lord Geomyr in Feygard, are trying to ward off the recent increase in illegal activities, and are therefore imposing more restrictions on what is allowed and not.||{{N|umar_conflict_3|||||}}|}; -{umar_conflict_3|The priests of the Shadow, mostly seated in Nor City, are opponents to the new restrictions, saying that they limit the ways that they can please the Shadow.||{{N|umar_conflict_4|||||}}|}; -{umar_conflict_4|In turn, the rumor is that the priests of the Shadow are planning to overthrow Lord Geomyr and his forces.||{{N|umar_conflict_5|||||}}|}; -{umar_conflict_5|Also, the rumor is that the priests of the Shadow are still doing their rituals, despite the fact that most of the rituals have been banned.||{{N|umar_conflict_6|||||}}|}; -{umar_conflict_6|Lord Geomyr and his royal guard on the other hand, are still trying their best to rule in a way that they feel is fair.||{{N|umar_conflict_7|||||}}|}; -{umar_conflict_7|We in the Thieves\' Guild try not to get involved in the conflict. Our business is so far unaffected by all of this.||{{Thank you for telling me.|umar_return_2|||||}{Whatever, that doesn\'t concern me.|umar_return_2|||||}}|}; -{umar_andor_1|He asked me for my support, and asked of how to find Lodar.||{{Who is Lodar?|umar_andor_2|||||}}|}; -{umar_andor_2|Lodar? He is one of our famous potion makers in the Thieves\' Guild. He can make all sorts of strong sleeping potions, healing potions and cures.||{{N|umar_andor_3|||||}}|}; -{umar_andor_3|But his specialty is, of course, his poisons. His poison can harm even the largest of monsters.||{{What would Andor want with him?|umar_andor_4|||||}}|}; -{umar_andor_4|I don\'t know. Maybe he was looking for a potion.|{{0|andor|55|}}|{{So, where can I find this Lodar?|umar_lodar_1|||||}}|}; -{umar_lodar_1|I really shouldn\'t tell you. How to get to him is one of our closely guarded secrets in the guild. His hideaway is only reachable by our members.||{{N|umar_lodar_2|||||}}|}; -{umar_lodar_2|However, I heard that you helped us find the key of Luthor. This is something we have been trying to get to for a long time.||{{N|umar_lodar_3|||||}}|}; -{umar_lodar_3|Ok, I\'ll tell you how to get to Lodar\'s Hideaway. But you have to promise to keep it a secret. Do not tell anyone. Not even those that appear to be members of the Thieves\' Guild.||{{Ok, I\'ll promise to keep it a secret.|umar_lodar_4|||||}{I can\'t give any guarantees, but I will try.|umar_lodar_4|||||}}|}; -{umar_lodar_4|Good. The thing is, you not only need to find the place itself, but you also need to utter the correct words to be allowed entry by the guardian.||{{N|umar_lodar_5|||||}}|}; -{umar_lodar_5|The only one that understands the language of the guardian is the old man Ogam in Vilegard.|{{0|lodar|10|}}|{{N|umar_lodar_6|||||}}|}; -{umar_lodar_6|You should travel to the town of Vilegard and find Ogam. He can help you get the right words to enter Lodar\'s Hideaway.|{{0|lodar|15|}}|{{How do I get to Vilegard?|umar_vilegard_1|||||}{Thank you. There was something else I wanted to talk about.|umar_return_2|||||}{Thank you, goodbye.|X|||||}}|}; -{umar_vilegard_1|You travel southeast from Fallhaven. When you reach the main road and the Foaming Flask tavern, head south. It\'s not very far to the southeast from here.||{{N|umar_return_2|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{kaori_start|||{{|kaori_default_1|kaori:20||||}{|kaori_return_1|kaori:10||||}{|kaori_1|||||}}|}; -{kaori_1|You are not welcome here. Please leave now.||{{Why is everyone in Vilegard so afraid of outsiders?|kaori_2|||||}{Jolnor asked me to talk to you.|kaori_3|kaori:5||||}}|}; -{kaori_2|I don\'t want to talk to you. Go talk to Jolnor in the chapel if you want to help us.|{{0|vilegard|10|}}|{{Ok, bye.|X|||||}{Fine. Don\'t tell me.|X|||||}}|}; -{kaori_3|He did? I guess you are not all that bad as I first thought.||{{N|kaori_4|||||}}|}; -{kaori_4|I am still not convinced that you are not a spy from Feygard sent to cause mischief.||{{What can you tell me about Vilegard?|kaori_trust_1|||||}{I can assure you that I am not a spy.|kaori_5|||||}{Feygard, where or what is that?|kaori_trust_1|||||}}|}; -{kaori_5|Hm. Maybe not. But then again, maybe you are. I am still not sure.||{{Is there anything I can do to gain your trust?|kaori_10|||||}{[Bribe] How would 100 gold sound? Could that help you to trust me?|kaori_bribe|||||}}|}; -{kaori_trust_1|I still don\'t fully trust you enough to talk about that.||{{Is there anything I can do to gain your trust?|kaori_10|||||}{[Bribe] How would 100 gold sound? Could that help you to trust me?|kaori_bribe|||||}}|}; -{kaori_bribe|Are you trying to bribe me, kid? That won\'t work on me. What use would I have for gold if you actually were a spy?||{{Is there anything I can do to gain your trust?|kaori_10|||||}}|}; -{kaori_10|If you really want to prove to me that you are not a spy from Feygard, there actually is something that you can do for me.||{{N|kaori_11|||||}}|}; -{kaori_11|Up until recently, we have been using special potions made of ground bones as healing. These potions are very potent healing potions, and were used for several purposes.||{{N|kaori_12|||||}}|}; -{kaori_12|But now, they have been banned by Lord Geomyr, and most use of them has stopped.||{{N|kaori_13|||||}}|}; -{kaori_13|I would really like to have a few more of those. If you can bring me 10 Bonemeal potions, I might consider trusting you a bit more.|{{0|kaori|10|}}|{{Ok. I will get some potions for you.|kaori_14|||||}{No. If they are banned, there is most likely a good reason behind it. You shouldn\'t use them.|kaori_15|||||}{I already have some of those potions with me that you can have|kaori_20||bonemeal_potion|10|0|}}|}; -{kaori_return_1|Hello again. Have you found those 10 Bonemeal potions I asked for?||{{No, I am still looking for them.|kaori_14|||||}{Yes, I brought your potions.|kaori_20||bonemeal_potion|10|0|}{No. If they are banned, there is most likely a good reason behind it. You shouldn\'t use them.|kaori_15|||||}}|}; -{kaori_14|Well, hurry up. I really need them soon.|||}; -{kaori_15|Fine. Now please leave me.|||}; -{kaori_20|Good. Give them to me.|{{0|kaori|20|}}|{{N|kaori_21|||||}}|}; -{kaori_21|Yes, these will do fine. Thank you a lot kid. Maybe you are ok after all. May the Shadow watch over you.||{{N|kaori_default_1|||||}}|}; -{kaori_default_1|Was there something you wanted to talk about?||{{What can you tell me about Vilegard?|kaori_vilegard_1|||||}{Why is everyone in Vilegard so afraid of outsiders?|kaori_vilegard_2|||||}}|}; -{kaori_vilegard_1|You should go talk to Erttu if you want the background story about Vilegard. She has been around here far longer than me.||{{Ok, I will do that.|kaori_default_1|||||}}|}; -{kaori_vilegard_2|We have a history of people coming here and causing mischief. Over time, we have learned that keeping to ourselves works best.||{{That sounds like a good idea.|kaori_vilegard_3|||||}{That sounds wrong.|kaori_vilegard_3|||||}}|}; -{kaori_vilegard_3|Anyway, that\'s why we are so suspicious of outsiders.||{{I see.|kaori_default_1|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{vilegard_villager_1|||{{|vilegard_villager_friend|vilegard:30||||}{|vilegard_villager_1_0|||||}}|}; -{vilegard_villager_1_0|Hello. Who are you? You are not welcome here in Vilegard.||{{Have you seen my brother, Andor, around here?|vilegard_villager_1_2|||||}}|}; -{vilegard_villager_1_2|No, I have certainly not. Even if I had, why would I tell you?|||}; -{vilegard_villager_2|||{{|vilegard_villager_friend|vilegard:30||||}{|vilegard_villager_2_0|||||}}|}; -{vilegard_villager_2_0|By the Shadow, you are an outsider. We don\'t like outsiders here.||{{Why is everyone in Vilegard so afraid of outsiders?|vilegard_villager_5_1|||||}}|}; -{vilegard_villager_3|||{{|vilegard_villager_friend|vilegard:30||||}{|vilegard_villager_3_0|||||}}|}; -{vilegard_villager_3_0|This is Vilegard. You will find no comfort here, outsider.|||}; -{vilegard_villager_4|||{{|vilegard_villager_friend|vilegard:30||||}{|vilegard_villager_4_0|||||}}|}; -{vilegard_villager_4_0|You look like that other kid that ran around here. Probably causing trouble, as always with outsiders.||{{Did you see my brother Andor?|vilegard_villager_1_2|||||}{I\'m not going to cause trouble.|vilegard_villager_4_2|||||}{Oh yes, I am going to cause trouble all right.|vilegard_villager_4_3|||||}}|}; -{vilegard_villager_4_2|No, I am sure you are. Outsiders always do.|||}; -{vilegard_villager_4_3|Yes, I know. That\'s why we don\'t want your kind around here. You should leave Vilegard while you still can.|||}; -{vilegard_villager_5|||{{|vilegard_villager_friend|vilegard:30||||}{|vilegard_villager_5_0|||||}}|}; -{vilegard_villager_5_0|Hello there outsider. You look lost, that\'s good. Now leave Vilegard while you can.||{{Why is everyone in Vilegard so afraid of outsiders?|vilegard_villager_5_1|||||}}|}; -{vilegard_villager_5_1|I don\'t trust you. You should go see Jolnor in the chapel if you want some sympathy.|{{0|vilegard|10|}}||}; -{vilegard_villager_friend|Hello there. I heard you helped us common folk here in Vilegard. Please stay for as long as you like friend.||{{Thank you. Have you seen my brother Andor around here?|vilegard_villager_friend_1|||||}{Thank you. See you.|X|||||}}|}; -{vilegard_villager_friend_1|Your brother? No, I haven\'t seen anyone that looks like you. But then again, I never take much notice to outsiders.||{{Thanks, bye.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{erttu_1|Hello there outsider. In general, we dislike outsiders here in Vilegard, but there is something about you that I find familiar.||{{N|erttu_default|||||}}|}; -{erttu_default|What do you want to talk about?||{{Why is everyone in Vilegard so suspicious of outsiders?|erttu_distrust_1|vilegard:10||||}{What can you tell me about Vilegard?|erttu_vilegard_1|||||}}|}; -{erttu_distrust_1|Most of us that live here in Vilegard have a history of trusting people too much. People that have hurt us in the end.||{{N|erttu_distrust_2|||||}}|}; -{erttu_distrust_2|Now we start by being suspicious, and ask that outsiders coming here gain our trust by helping us first.||{{N|erttu_distrust_3|||||}}|}; -{erttu_distrust_3|Also, other people generally look down upon us here in Vilegard for some reason. Especially those snobs from Feygard and the northern cities.||{{What else can you tell me about Vilegard?|erttu_vilegard_1|||||}}|}; -{erttu_vilegard_1|We have almost everything we need here in Vilegard. Our center of the village is the chapel.||{{N|erttu_vilegard_2|||||}}|}; -{erttu_vilegard_2|The chapel serves as our place of worship for the Shadow, and also as our place to gather when discussing larger issues in our village.||{{N|erttu_vilegard_3|||||}}|}; -{erttu_vilegard_3|Apart from the chapel, we have a tavern, a smith and an armorer.||{{Thanks for the information. There was something else I wanted to talk about.|erttu_default|||||}{Thanks for the information. Goodbye.|X|||||}{Wow, nothing more? I wonder what I am doing in a puny village such as this one.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{dunla_default|You look like a smart fellow. Need any supplies?||{{Sure, let me see what you have available.|S|||||}{What can you tell me about yourself?|dunla_1|||||}}|}; -{dunla_1|Me? I am no one. You didn\'t even see me. You certainly did not talk to me.|||}; -{tharwyn_select|||{{|tharwyn_1|vilegard:30||||}{|vilegard_shop_notrust|||||}}|}; -{tharwyn_1|Hello there. I heard you helped Jolnor in the chapel. You have my thanks, friend.||{{N|tharwyn_2|||||}}|}; -{tharwyn_2|Have a seat anywhere. What can I get you?||{{Show me what food you have available.|S|||||}}|}; -{vilegard_tavern_drunk_1|Oh look, a lost kid. Here, have some mead kid.||{{No thanks.|X|||||}{Watch your tongue, drunkard.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{jolnor_select_1|||{{|jolnor_default_3|vilegard:30||||}{|jolnor_default_2|vilegard:20||||}{|jolnor_default|||||}}|}; -{jolnor_default|Walk with the Shadow my child.||{{What is this place?|jolnor_chapel_1|||||}{I was told to talk to you about why everyone in Vilegard is suspicious of outsiders.|jolnor_suspicious_1|vilegard:10||||}}|}; -{jolnor_default_2|Walk with the Shadow my child.||{{Can you tell me again what this place is?|jolnor_chapel_1|||||}{Let\'s talk about those missions for gaining trust that you talked about earlier.|jolnor_quests_1|||||}{I require healing. Can I see what items you have available?|jolnor_shop_1|||||}}|}; -{jolnor_default_3|Walk with the Shadow my friend.||{{Can you tell me again what this place is?|jolnor_chapel_1|||||}{I require healing. Can I see what items you have available?|jolnor_shop_1|||||}}|}; -{jolnor_chapel_1|This is Vilegard\'s place of worship for the Shadow. We praise the Shadow in all its might and glory.||{{Can you tell me more about the Shadow?|jolnor_shadow_1|||||}{I require healing. Can I see what items you have available?|jolnor_shop_1|||||}{Whatever. Just show me your goods.|jolnor_shop_1|||||}}|}; -{jolnor_shadow_1|The Shadow protects us from the dangers of the night. It keeps us safe and comforts us when we sleep.||{{N|jolnor_select_1|||||}}|}; -{jolnor_shop_1|||{{|S|vilegard:30||||}{|jolnor_shop_2|||||}}|}; -{jolnor_shop_2|I don\'t trust you enough yet to feel comfortable trading with you.||{{Why are you that suspicious?|jolnor_suspicious_1|||||}{Very well.|jolnor_select_1|||||}}|}; -{jolnor_suspicious_1|Suspicious? No, I wouldn\'t call it suspicion. I would rather call it that we are careful nowadays.||{{N|jolnor_suspicious_2|||||}}|}; -{jolnor_suspicious_2|In order to gain the trust of the village, an outsider must prove that they are not here to cause trouble.||{{Sounds like a good idea. There are a lot of selfish people out there.|jolnor_suspicious_3|||||}{That sounds really unnecessary. Why not trust people in the first place?|jolnor_suspicious_4|||||}}|}; -{jolnor_suspicious_3|Yes, right. You seem to understand us well, I like that.||{{Is there anything I can do to gain your trust?|jolnor_gaintrust_select|||||}}|}; -{jolnor_suspicious_4|We have learned from history not to trust outsiders, and you are an outsider. Why should we trust you?||{{What can I do to gain your trust?|jolnor_gaintrust_select|||||}{You are right. You probably should not trust me.|X|||||}}|}; -{jolnor_gaintrust_select|||{{|jolnor_gaintrust_return_2|vilegard:30||||}{|jolnor_gaintrust_return|vilegard:20||||}{|jolnor_gaintrust_1|||||}}|}; -{jolnor_gaintrust_return_2|With your help earlier, you have already gained our trust.||{{N|jolnor_default_3|||||}}|}; -{jolnor_gaintrust_return|As I said before, you have to help some people here in Vilegard to gain our trust.||{{N|jolnor_quests_1|||||}}|}; -{jolnor_gaintrust_1|If you do us a favor, we might consider trusting you. There are three people I can think of that are influential here in Vilegard, that you should try to help.||{{N|jolnor_gaintrust_2|||||}}|}; -{jolnor_gaintrust_2|First, there is Kaori. She lives up in the northern part of Vilegard. Ask her if she wants help with anything.|{{0|kaori|5|}}|{{Ok. Talk to Kaori. Got it.|jolnor_gaintrust_3|||||}}|}; -{jolnor_gaintrust_3|Then there is Wrye. Wrye also lives up in the northern part of Vilegard. Many people here in Vilegard seek her advice on various things.||{{N|jolnor_gaintrust_4|||||}}|}; -{jolnor_gaintrust_4|She recently lost her son in a tragic way. If you can gain her trust, you will have a strong ally here.|{{0|wrye|10|}}|{{Talk to Wrye. Got it.|jolnor_gaintrust_5|||||}}|}; -{jolnor_gaintrust_5|And last but not least, I have a favor to ask of you as well.||{{What favor is that?|jolnor_gaintrust_6|||||}}|}; -{jolnor_gaintrust_6|North of Vilegard is a tavern called the Foaming Flask. In my opinion, this tavern is a guard station in guise for Feygard.||{{N|jolnor_gaintrust_7|||||}}|}; -{jolnor_gaintrust_7|The tavern is almost always visited by the Feygard royal guard of Lord Geomyr.||{{N|jolnor_gaintrust_8|||||}}|}; -{jolnor_gaintrust_8|They are probably here to spy on us, since we are followers of the Shadow. Lord Geomyr\'s forces always try to make life difficult for us and the Shadow.||{{Yes, they seem like troublemakers all around.|jolnor_gaintrust_9|||||}{I am sure they have their reasons for doing what they do.|jolnor_gaintrust_10|||||}}|}; -{jolnor_gaintrust_9|Right. Troublemakers indeed.||{{What do you want me to do?|jolnor_gaintrust_11|||||}}|}; -{jolnor_gaintrust_10|Yes, their reason is to make life miserable for us, I am sure.||{{What do you want me to do?|jolnor_gaintrust_11|||||}}|}; -{jolnor_gaintrust_11|My reports say that there is a guard stationed outside the tavern, to keep an eye on potential dangers.||{{N|jolnor_gaintrust_12|||||}}|}; -{jolnor_gaintrust_12|I want you to make sure the guard disappears somehow. How you do that is purely up to you.|{{0|jolnor|10|}}|{{I am not sure I should upset the Feygard patrol guards. This could really get me into trouble.|jolnor_gaintrust_13|||||}{For the Shadow, I will do as you ask.|jolnor_gaintrust_14|||||}{Ok, I hope this leads to some treasure in the end.|jolnor_gaintrust_14|||||}}|}; -{jolnor_gaintrust_13|It\'s your choice. You can at least go check out the tavern and see if you find anything suspicious.||{{Maybe.|jolnor_gaintrust_15|||||}}|}; -{jolnor_gaintrust_14|Good. Report back to me when you are done.||{{N|jolnor_gaintrust_15|||||}}|}; -{jolnor_gaintrust_15|So, in order to gain our trust here in Vilegard, I would suggest you help Kaori, Wrye and me.|{{0|vilegard|20|}}|{{Thank you for the information. I will be back when I have something to report.|X|||||}}|}; -{jolnor_quests_1|I would suggest you help Kaori, Wrye and me to gain our trust.||{{About that guard outside the Foaming Flask tavern...|jolnor_guard_select|||||}{About those tasks...|jolnor_quests_2|||||}{Never mind, let\'s get back to those other topics.|jolnor_select_1|||||}}|}; -{jolnor_quests_2|Yes, what about them?||{{What was I supposed to do again?|jolnor_suspicious_2|||||}{I have done all the tasks you asked me to do.|jolnor_quests_select_1|jolnor:30||||}{Never mind, let\'s get back to those other topics.|jolnor_select_1|||||}}|}; -{jolnor_guard_select|||{{|jolnor_guard_completed|jolnor:30||||}{|jolnor_guard_1|||||}}|}; -{jolnor_guard_1|Yes, what about him. Have you removed him yet?||{{Yes, he will leave his post as soon as this shift is over.|jolnor_guard_2|jolnor:20||||}{Yes, he is removed.|jolnor_guard_2||ffguard_qitem|1|0|}{No, but I am working on it.|jolnor_gaintrust_14|||||}}|}; -{jolnor_guard_completed|Yes, you dealt with him earlier. Thank you for your help.||{{N|jolnor_quests_1|||||}}|}; -{jolnor_guard_2|Very good. Thank you for your help.|{{0|jolnor|30|}}|{{No problem. Let\'s get back to those other tasks we talked about.|jolnor_quests_2|||||}}|}; -{jolnor_quests_select_1|||{{|jolnor_quests_select_2|kaori:20||||}{|jolnor_quests_kaori_1|||||}}|}; -{jolnor_quests_kaori_1|You still need to help Kaori with her task.||{{N|jolnor_select_1|||||}}|}; -{jolnor_quests_select_2|||{{|jolnor_quests_completed|wrye:90||||}{|jolnor_quests_wrye_1|||||}}|}; -{jolnor_quests_wrye_1|You still need to help Wrye with her task.||{{N|jolnor_select_1|||||}}|}; -{jolnor_quests_completed|Good. You helped all three of us.|{{0|vilegard|30|}}|{{N|jolnor_quests_completed_2|||||}}|}; -{jolnor_quests_completed_2|I suppose that shows some dedication, and that we are ready to trust you now.||{{N|jolnor_quests_completed_3|||||}}|}; -{jolnor_quests_completed_3|You have our thanks, friend. You will always find shelter here in Vilegard. We welcome you into our village.||{{N|jolnor_select_1|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{alynndir_1|Hello there. Welcome to my cabin.||{{What do you do around here?|alynndir_2|||||}{What can you tell me about the surroundings here?|alynndir_3|||||}}|}; -{alynndir_2|Mostly, I trade with travelers on the main road on the way to Nor City.||{{Do you have anything to trade?|S|||||}{What can you tell me about the surroundings here?|alynndir_3|||||}}|}; -{alynndir_3|Oh, there is not much around here. Vilegard to the west and Brightport to the east.||{{N|alynndir_4|||||}}|}; -{alynndir_4|Up north is just forest. But there are some strange things happening there.||{{N|alynndir_5|||||}}|}; -{alynndir_5|I have heard terrible screams coming from the forest to the northwest.||{{N|alynndir_6|||||}}|}; -{alynndir_6|I really wonder what is up there.||{{Goodbye.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{vilegard_armorer_select|||{{|vilegard_armorer_1|vilegard:30||||}{|vilegard_shop_notrust|||||}}|}; -{vilegard_armorer_1|Hello there. Please browse my selection of fine armors and protection.||{{Let me see your list of wares|S|||||}}|}; -{vilegard_smith_select|||{{|vilegard_smith_1|feygard_shipment:56||||}{|vilegard_smith_fg_2|feygard_shipment:55||||}{|vilegard_smith_1|vilegard:30||||}{|vilegard_shop_notrust|||||}}|}; -{vilegard_smith_1|Hello there. I heard you helped us here in Vilegard. What can I help you with?||{ - {Can I see what items you have for sale?|S|||||} - {I have a shipment of Feygard items for you.|vilegard_smith_fg_1|feygard_shipment:35|fg_ironsword|10|0|} - }|}; -{vilegard_shop_notrust|You are an outsider. We don\'t like outsiders here in Vilegard. Please leave.||{{Why is everyone in Vilegard so suspicious of outsiders?|vilegard_shop_notrust_2|||||}{Can I see what items you have for sale?|vilegard_shop_notrust_2|||||}}|}; -{vilegard_shop_notrust_2|I don\'t trust you. You should go see Jolnor in the chapel if you want some sympathy.|{{0|vilegard|10|}}||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{ogam_1|Belief. Power. Struggle.||{{What?|ogam_2|||||}{I was told to see you.|ogam_2|lodar:15||||}}|}; -{ogam_2|Backwards is the burden high and low.||{{What?|ogam_3|||||}{Please go on|ogam_3|||||}{Hello? Umar in the Fallhaven Thieves\' Guild sent me to see you.|ogam_3|lodar:15||||}}|}; -{ogam_3|Hiding in the Shadow.||{{N|ogam_4|||||}}|}; -{ogam_4|Two alike in body and mind.||{{Are you going to make any sense?|ogam_5|||||}{What do you mean?|ogam_5|||||}}|}; -{ogam_5|The lawful and the chaotic.||{{Hello? Do you know how I can reach Lodar\'s hideaway?|ogam_lodar_1|lodar:15||||}{I don\'t understand.|ogam_6|||||}}|}; -{ogam_lodar_1|Lodar? Clear, tingling, hurt.||{{N|ogam_6|||||}}|}; -{ogam_6|Yes. The true form. Behold.||{{N|ogam_7|||||}}|}; -{ogam_7|Hiding in the Shadow.||{{The Shadow?|ogam_4|||||}{Are you even listening to what I say?|ogam_4|||||}{Hello? Do you know how I can reach Lodar\'s hideaway?|ogam_lodar_2|lodar:15||||}}|}; -{ogam_lodar_2|Lodar, halfway between the Shadow and the light. Rocky formations.||{{Ok, halfway between two places. Some rocks?|ogam_lodar_3|||||}{Uh. Could you repeat that?|ogam_lodar_3|||||}}|}; -{ogam_lodar_3|Guardian. Glow of the Shadow.|{{0|lodar|20|}}|{{Glow of the Shadow? Are those the words the guardian needs to hear?|ogam_lodar_4|||||}{\'Glow of the Shadow\'? I recognize that from somewhere.|ogam_lodar_4|bonemeal:30||||}}|}; -{ogam_lodar_4|Turning. Twisting. Clear form.||{{What does that mean?|ogam_1|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{ff_cook_1|Hello. Do you want something from the kitchen?||{{Sure, let me see what food you have to sell.|ff_cook_3|||||}{That smells horrible. What are you cooking?|ff_cook_2|||||}{That smells wonderful. What are you cooking?|ff_cook_2|||||}}|}; -{ff_cook_2|Oh this? This is supposed to be a stew of Anklebiter. Needs more seasoning I guess.||{{I look forward to trying it when it is done. Good luck cooking.|X|||||}{Yuck, that sounds awful. Can you really eat those things? I\'m grossed out, goodbye.|X|||||}}|}; -{ff_cook_3|No sorry, I don\'t have any food to sell. Go talk to Torilo over there if you want some drink or ready-made food.|||}; -{torilo_1|Welcome to the Foaming Flask tavern. We welcome all travelers in here.||{{Thank you. Are you the innkeeper here?|torilo_2|||||}{Have you seen a boy called Rincel around here recently?|torilo_rincel_1|wrye:41||||}}|}; -{torilo_2|I am Torilo, the proprietor of this establishment. Please have a seat anywhere you like.||{{Can I see what you have available in food and drink?|torilo_shop_1|||||}{Do you have somewhere I can rest?|torilo_rest_select|||||}{ Are those guards always shouting and yelling that much?|torilo_guards_1|||||}}|}; -{torilo_default|Was there anything else you wanted?||{{Can I see what you have available for food and drink?|torilo_shop_1|||||}{Are those guards always shouting and yelling that much?|torilo_guards_1|||||}{Have you seen a boy called Rincel around here recently?|torilo_rincel_1|wrye:41||||}}|}; -{torilo_shop_1|Absolutely. We have a wide selection of food and beverages.||{{N|S|||||}}|}; -{torilo_rest_select|||{{|torilo_rest_1|nondisplay:10||||}{|torilo_rest_3|||||}}|}; -{torilo_rest_1|Yes, you already rented the back room.||{{N|torilo_rest_2|||||}}|}; -{torilo_rest_2|Please feel free to use it in any way you like. I hope you can get some sleep even with these guards yelling their songs.||{{Thanks.|torilo_default|||||}}|}; -{torilo_rest_3|Oh yes. We have a very comfortable back room here in the Foaming Flask tavern.||{{N|torilo_rest_4|||||}}|}; -{torilo_rest_4|Available for only 250 gold. Then you can use it as much as you like.||{{250 gold? Sure, that\'s nothing to me. Here you go.|torilo_rest_6||gold|250|0|}{250 gold is a lot, but I guess it is worth it. Here you go.|torilo_rest_6||gold|250|0|}{That sounds a bit too much for me.|torilo_rest_5|||||}}|}; -{torilo_rest_5|Oh well, it\'s your loss.||{{N|torilo_default|||||}}|}; -{torilo_rest_6|Thank you. The room is now rented to you.|{{0|nondisplay|10|}}|{{N|torilo_rest_2|||||}}|}; -{torilo_rincel_1|Rincel? No, not that I can recall. Actually, we don\'t get many children in here. *chuckle*||{{N|torilo_default|||||}}|}; -{torilo_guards_1|*Sigh* Yes. Those guards have been here for quite some time now.||{{N|torilo_guards_2|||||}}|}; -{torilo_guards_2|They seem to be looking for something or someone, but I am not sure who or what.||{{N|torilo_guards_3|||||}}|}; -{torilo_guards_3|I hope the Shadow watches over us so that nothing bad happens to the Foaming Flask tavern because of them.||{{N|torilo_default|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{ambelie_1|Oh my, a commoner. Get away from me. I might catch something.||{{Who are you?|ambelie_2|||||}{What is a noble woman such as yourself doing in a place like this?|ambelie_5|||||}{I would be glad to get away from a snob like you.|X|||||}}|}; -{ambelie_2|I am Ambelie of the house of Laumwill in Feygard. I am sure you must have heard of me and my house.||{{Oh yes.. um.. House of Laumwill in Feygard. Of course.|ambelie_3|||||}{I have never heard of you or your house.|ambelie_4|||||}{Where is Feygard?|ambelie_3|||||}}|}; -{ambelie_3|Feygard, the great city of peace. Surely you must know of it. Northwest in our great land.||{{What is a noble woman such as yourself doing in a place like this?|ambelie_5|||||}{No, I have never heard of it.|ambelie_4|||||}}|}; -{ambelie_4|Pfft. That just proves everything I have heard of you savages here in the southern land. So uneducated.|||}; -{ambelie_5|I, Ambelie, of the house of Laumwill in Feygard, am on an excursion to the southern Nor City.||{{N|ambelie_6|||||}}|}; -{ambelie_6|An excursion to see if Nor City really is all that I have heard about it. If it really can compare itself to the glamour of the great city of Feygard.||{{Nor City, where is that?|ambelie_7|||||}{If you like it so much in Feygard, why would you even leave?|ambelie_9|||||}}|}; -{ambelie_7|Don\'t you know of Nor City? I will take note that the savages here haven\'t even heard of the city.||{{N|ambelie_8|||||}}|}; -{ambelie_8|I am beginning to be even more certain that Nor City will never, even in my wildest dreams, be comparable to the great city of Feygard.||{{Good luck on your excursion.|ambelie_10|||||}}|}; -{ambelie_9|All the noblewomen in Feygard keep talking about the mysterious Shadow in Nor City. I just have to see it myself.||{{Nor City, where is that?|ambelie_7|||||}{Good luck on your excursion.|ambelie_10|||||}}|}; -{ambelie_10|Thank you. Now please leave before someone sees me talking to a commoner like you.||{{Commoner? Are you trying to insult me? Goodbye.|X|||||}{Whatever, you probably wouldn\'t even survive a forest wasp.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{ff_guard_1|Ha ha, you tell him Garl!\n\n*burp*||{{N|ff_guard_2|||||}}|}; -{ff_guard_2|Sing, drink, fight! All who oppose Feygard will fall!||{{N|ff_guard_3|||||}}|}; -{ff_guard_3|We will stand tall. Feygard, city of peace!||{{I should better leave|X|||||}{Feygard, where is that?|ff_guard_4|||||}{Have you seen a boy called Rincel around here recently?|ff_guard_rincel_1|wrye:41||||}}|}; -{ff_guard_4|What, you haven\'t heard of Feygard, kid? Just follow the road northwest and you will see the great city of Feygard rise above the treetops.||{{Thanks. Bye.|X|||||}}|}; -{ff_guard_rincel_1|A boy?! Apart from you, there have been no children in here that I have seen.||{{N|ff_guard_rincel_2|||||}}|}; -{ff_guard_rincel_2|Check with the captain over there. He has been around here for longer than us.||{{Thank you, Goodbye.|X|||||}{Thank you. Shadow be with you.|ff_guard_shadow_1|||||}}|}; -{ff_guard_shadow_1|Don\'t bring that cursed Shadow in here son. We want none of that. Now leave.|||}; -{ff_captain_1|Are you lost, son? This is no place for a kid like you.||{ - {I have a shipment of iron swords from Gandoren for you.|ff_captain_vg_items_1|feygard_shipment:56|fg_ironsword_d|10|0|} - {I have a shipment of iron swords from Gandoren for you.|ff_captain_fg_items_1|feygard_shipment:25|fg_ironsword|10|0|} - {Who are you?|ff_captain_2|||||} - {Have you seen a boy called Rincel around here recently?|ff_captain_rincel_1|wrye:41||||} - }|}; -{ff_captain_2|I am the guard captain of this patrol. We hail from the great city of Feygard.||{{Feygard, where is that?|ff_captain_4|||||}{What do you do around here?|ff_captain_3|||||}}|}; -{ff_captain_3|We are travelling the main road to make sure the merchants and travelers are safe. We keep the peace around here.||{{You mentioned Feygard. Where is that?|ff_captain_4|||||}}|}; -{ff_captain_4|The great city of Feygard is the greatest sight you will ever see. Follow the road northwest.||{{Thank you. Shadow be with you.|ff_captain_shadow_1|||||}{Thank you, Goodbye.|X|||||}}|}; -{ff_captain_rincel_1|There was a kid running around in here a while ago.||{{N|ff_captain_rincel_2|||||}}|}; -{ff_captain_rincel_2|I never talked to him though, so I don\'t know if he is the one you are looking for.||{{Ok, that might be something worth checking anyway.|ff_captain_rincel_3|||||}}|}; -{ff_captain_rincel_3|I noticed he left to the west heading out of the Foaming Flask tavern.|{{0|wrye|42|}}|{{West. Got it. Thanks for the information.|ff_captain_rincel_4|||||}}|}; -{ff_captain_rincel_4|Always happy to help. Anything for the glory of Feygard.||{{Shadow be with you.|ff_captain_shadow_1|||||}{Goodbye.|X|||||}}|}; -{ff_captain_shadow_1|The Shadow? Don\'t tell me you believe in that stuff. In my experience, only troublemakers talk of the Shadow.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{ff_outsideguard_select|||{{|ff_outsideguard_trouble_24|jolnor:20||||}{|ff_outsideguard_1|||||}}|}; -{ff_outsideguard_1|Hello there. Should you be here? This is a tavern, you know. The Foaming Flask, to be precise.||{{Who are you?|ff_outsideguard_2|||||}}|}; -{ff_outsideguard_2|I am a member of the royal guard patrol from Feygard.||{{Feygard, where is that?|ff_outsideguard_3|||||}{What do you do around here?|ff_outsideguard_3|||||}}|}; -{ff_outsideguard_3|Go talk to the captain inside if you want to talk. I must stay alert on my post.||{{Ok. Goodbye.|X|||||}{Why must you stay alert outside a tavern?|ff_outsideguard_trouble_1|jolnor:10||||}}|}; -{ff_outsideguard_trouble_1|Really, I cannot talk to you. I could get into trouble.||{{Ok. I won\'t bother you anymore. Shadow be with you.|ff_outsideguard_shadow_1|||||}{Ok. I won\'t bother you anymore. Goodbye.|X|||||}{What trouble?|ff_outsideguard_trouble_2|||||}}|}; -{ff_outsideguard_trouble_2|No really, the captain might see me. I must be aware on my post at all times. *sigh*||{{Ok. I won\'t bother you anymore. Shadow be with you.|ff_outsideguard_shadow_1|||||}{Ok. I won\'t bother you anymore. Goodbye.|X|||||}{Do you like your job here?|ff_outsideguard_trouble_3|||||}}|}; -{ff_outsideguard_trouble_3|My job? I guess the royal guard is ok. I mean, Feygard is a really nice place to live in.||{{N|ff_outsideguard_trouble_4|||||}}|}; -{ff_outsideguard_trouble_4|Standing guard on duty out here in the middle of nowhere is not really what I signed up for.||{{I bet. This place is really boring.|ff_outsideguard_trouble_5|||||}{You must get tired of just standing here also.|ff_outsideguard_trouble_5|||||}}|}; -{ff_outsideguard_trouble_5|Yeah I know. I would rather be inside in the tavern drinking like the senior officers and the captain. How come I have to stand out here?||{{At least the Shadow watches over you.|ff_outsideguard_shadow_1|||||}{Why not just leave if it\'s not what you want to do?|ff_outsideguard_trouble_7|||||}{The greater cause of the royal guard, to keep the peace, is worth it in the long run.|ff_outsideguard_trouble_6|||||}}|}; -{ff_outsideguard_trouble_6|Yes, you are right of course. Our duty is to Feygard and to keep the peace from all that want to disrupt it.||{{Yes. The Shadow will not look favorably upon those that disrupt the peace.|ff_outsideguard_shadow_1|||||}{Yes. The troublemakers should be punished.|ff_outsideguard_trouble_8|||||}}|}; -{ff_outsideguard_trouble_7|No, my loyalty is to Feygard. If I would leave, I would also leave my loyalty behind.||{{What does that mean if you are not satisfied with what you do?|ff_outsideguard_trouble_9|||||}{Yes, that sounds right. Feygard sounds like a nice place from what I have heard.|ff_outsideguard_trouble_6|||||}}|}; -{ff_outsideguard_trouble_8|Right. I like you, kid. Tell you what, I could put in a good word for you in the barracks when we get back to Feygard if you want.||{{Sure, that sounds good to me.|ff_outsideguard_trouble_20|||||}{No thanks. I have enough to do already.|ff_outsideguard_trouble_20|||||}}|}; -{ff_outsideguard_trouble_9|Well, I am convinced that we must follow the laws laid down by our rulers. If we don\'t obey the law, what are we left with?||{{N|ff_outsideguard_trouble_10|||||}}|}; -{ff_outsideguard_trouble_10|Chaos. Disorder.\n\nNo, I prefer the lawful way of Feygard. My loyalty is firm.||{{Sounds good to me. Laws are made to be followed.|ff_outsideguard_trouble_8|||||}{I do not agree. We should follow our heart, even if that goes against the rules.|ff_outsideguard_trouble_12|||||}}|}; -{ff_outsideguard_trouble_20|Was there anything else you wanted?||{{I was wondering about why you stand guard here.|ff_outsideguard_trouble_21|||||}}|}; -{ff_outsideguard_trouble_12|That troubles me. We might see each other again in the future. But then we might not be able to have this kind of civil discussion.|||}; -{ff_outsideguard_trouble_21|Right, we went over this before. As I said, I would rather be inside by the fire.||{{I could spot for you if you want to go inside.|ff_outsideguard_trouble_23|||||}{Tough luck. I guess you are left out here, while your captain and buddies are inside.|ff_outsideguard_trouble_22|||||}}|}; -{ff_outsideguard_trouble_22|Yeah, that\'s just my luck.|||}; -{ff_outsideguard_trouble_23|Really? Yes that would be great. Then I can at least get something to eat and a bit of warmth from the fire.||{{N|ff_outsideguard_trouble_24|||||}}|}; -{ff_outsideguard_trouble_24|I will go inside in a minute. Will you stand watch while I go inside?|{{0|jolnor|20|}}|{{Sure, I will do that.|ff_outsideguard_trouble_25|||||}{[Lie] Sure, I will do that.|ff_outsideguard_trouble_25|||||}}|}; -{ff_outsideguard_trouble_25|Thanks a lot my friend.|||}; -{ff_outsideguard_shadow_1|Shadow? How curious that you would mention that. Explain yourself!||{{I did not mean a thing by it. Never mind I said anything.|ff_outsideguard_shadow_2|||||}{The Shadow watches over us when we sleep.|ff_outsideguard_shadow_3|||||}}|}; -{ff_outsideguard_shadow_2|Good. Now be gone before I will have to deal with you.|||}; -{ff_outsideguard_shadow_3|What? Are you one of those troublemakers sent here to sabotage our mission?||{{The Shadow protects us.|ff_outsideguard_shadow_4|||||}{Fine. I better not start a fight with the royal guard.|X|||||}}|}; -{ff_outsideguard_shadow_4|That does it. You better fight or flee right now kid.||{{Good. I have been waiting for a fight!|ff_outsideguard_shadow_5|||||}{For the Shadow!|ff_outsideguard_shadow_5|||||}{Never mind. I was just kidding with you.|ff_outsideguard_shadow_2|||||}}|}; -{ff_outsideguard_shadow_5||{{0|jolnor|21|}}|{{|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{wrye_select_1|||{{|wrye_return_2|wrye:90||||}{|wrye_return_1|wrye:40||||}{|wrye_mourn_1|||||}}|}; -{wrye_return_1|Welcome back. Have you found out anything about my son, Rincel?||{{Can you tell me the story about what happened again?|wrye_mourn_5|||||}{No, I have not found anything yet.|wrye_story_14|||||}{Yes, I have found out the story about what happened to him.|wrye_resolved_1|wrye:80||||}}|}; -{wrye_return_2|Welcome back. Thank you for your help in finding out what happened to my son.||{{Shadow be with you.|wrye_story_15|||||}{You are welcome.|wrye_story_15|||||}}|}; -{wrye_mourn_1|Shadow help me.||{{What is the matter?|wrye_mourn_2|||||}}|}; -{wrye_mourn_2|My son! My son is gone.||{{Jolnor said I should see you about your son.|wrye_mourn_5|wrye:10||||}{What about him?|wrye_mourn_3|||||}}|}; -{wrye_mourn_3|I don\'t want to talk about it. Not with an outsider like you.||{{Outsider?|wrye_mourn_4|||||}{Jolnor said I should see you about your son.|wrye_mourn_5|wrye:10||||}}|}; -{wrye_mourn_4|Please leave me.\n\nOh Shadow, watch over me.|||}; -{wrye_mourn_5|My son is dead, I know it! And it\'s those damn guards fault. Those guards with their snobby Feygard attitude.||{{N|wrye_mourn_6|||||}}|}; -{wrye_mourn_6|At first they come with promises of protection and power. But then you really start to see them for what they are.||{{N|wrye_mourn_7|||||}}|}; -{wrye_mourn_7|I can feel it in me. The Shadow speaks to me. He is dead.|{{0|wrye|20|}}|{{Can you tell me what happened?|wrye_story_1|||||}{What are you talking about?|wrye_story_1|||||}{Shadow be with you.|wrye_mourn_8|||||}}|}; -{wrye_mourn_8|Thank you. Shadow watch over me.||{{N|wrye_story_1|||||}}|}; -{wrye_story_1|It all started with those Feygard royal guards coming here.||{{N|wrye_story_2|||||}}|}; -{wrye_story_2|They tried to pressure everyone in Vilegard into recruiting more soldiers.||{{N|wrye_story_3|||||}}|}; -{wrye_story_3|The guards would say they needed more support to help squelch the supposed uprising and sabotage.||{{How did this relate to your son?|wrye_story_4|||||}{Are you going to get to the point soon?|wrye_story_4|||||}}|}; -{wrye_story_4|My son, Rincel, did not seem to care much for the stories they told.||{{N|wrye_story_5|||||}}|}; -{wrye_story_5|I also told Rincel of how bad an idea I thought it was to recruit more people to the Royal Guard.||{{N|wrye_story_6|||||}}|}; -{wrye_story_6|The guards stayed a couple of days to talk to everyone here in Vilegard. Then they left. They went to the next town I guess.||{{N|wrye_story_7|||||}}|}; -{wrye_story_7|A few days passed, and then suddenly my boy Rincel was gone one day. I am sure those guards managed to somehow persuade him to join them.||{{N|wrye_story_8|||||}}|}; -{wrye_story_8|Oh how I despise those evil and snobby Feygard bastards.||{{What now?|wrye_story_9|||||}}|}; -{wrye_story_9|This was several weeks ago. Now I feel an emptiness inside. I know in me that something has happened to my son Rincel.||{{N|wrye_story_10|||||}}|}; -{wrye_story_10|I fear he has died or got hurt somehow. Those bastards probably drove him into his own death.|{{0|wrye|30|}}|{{N|wrye_story_11|||||}}|}; -{wrye_story_11|*sob* Shadow help me.||{{What can I do to help?|wrye_story_13|||||}{That sounds awful. I am sure you are just imagining things.|wrye_story_13|||||}{Do you have proof that the people from Feygard are involved?|wrye_story_12|||||}}|}; -{wrye_story_12|No, but I know it in me that they are. The Shadow speaks to me.||{{Ok. Is there anything I can do to help?|wrye_story_13|||||}{You sound a bit too occupied with the Shadow. I want no part of this.|wrye_mourn_4|||||}{I probably shouldn\'t get involved in this if it means that I could upset the royal guard.|wrye_mourn_4|||||}}|}; -{wrye_story_13|If you want to help me, please find out what happened to my son, Rincel.|{{0|wrye|40|}}|{{Any idea where I should look?|wrye_story_16|||||}{Ok. I will go look for your son. I sure hope there will be some reward for this.|wrye_story_14|||||}{By the Shadow, your son will be avenged.|wrye_story_14|||||}}|}; -{wrye_story_14|Please return here as soon as you have found out anything.||{{N|wrye_story_15|||||}}|}; -{wrye_story_15|Walk with the Shadow.|||}; -{wrye_story_16|I guess you could ask in the tavern here in Vilegard, or the Foaming Flask tavern just north of here.|{{0|wrye|41|}}|{{By the Shadow, your son will be avenged.|wrye_story_14|||||}{Ok. I will go look for your son. I sure hope there will be some reward for this.|wrye_story_14|||||}{Ok. I will go look for your son so that you may know what happened to him.|wrye_story_14|||||}}|}; -{wrye_resolved_1|Please tell me what happened to him!||{{He left Vilegard by his own will because he wanted to see the great city of Feygard.|wrye_resolved_2|||||}}|}; -{wrye_resolved_2|I don\'t believe it.||{{He had secretly longed to go to Feygard, but didn\'t dare tell you.|wrye_resolved_3|||||}}|}; -{wrye_resolved_3|Really?||{{But he never got far. He was attacked while camping one night.|wrye_resolved_4|||||}}|}; -{wrye_resolved_4|Attacked?||{{Yes, he could not stand up to the monsters, and was critically wounded.|wrye_resolved_5|||||}}|}; -{wrye_resolved_5|My dear boy.||{{I talked to a man that found him bleeding to death.|wrye_resolved_6|||||}}|}; -{wrye_resolved_6|He was still alive?||{{Yes, but not for long. He did not survive the wounds. He is now buried to the northwest of Vilegard.|wrye_resolved_7|||||}}|}; -{wrye_resolved_7|Oh my poor boy. What have I done?|{{0|wrye|90|}}|{{N|wrye_resolved_8|||||}}|}; -{wrye_resolved_8|I always thought he shared my view of those Feygard snobs.||{{N|wrye_resolved_9|||||}}|}; -{wrye_resolved_9|And now he is not with us anymore.||{{N|wrye_resolved_10|||||}}|}; -{wrye_resolved_10|Thank you, friend, for finding out what happened to him and telling me the truth.||{{N|wrye_resolved_11|||||}}|}; -{wrye_resolved_11|Oh my poor boy.||{{N|wrye_mourn_4|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{oluag_1|||{ - {|oluag_grave_16|wrye:80||||} - {|oluag_1_1|||||} - }|}; -{oluag_1_1|Hello. I am Oluag.||{{What are you doing here around these crates?|oluag_2|||||}}|}; -{oluag_2|Oh these. They are nothing. Never mind them. That grave over there is nothing to worry about either.||{{What grave?|oluag_grave_select|||||}{Nothing, really? This sounds suspicious.|oluag_boxes_1|||||}}|}; -{oluag_boxes_1|No no, nothing suspicious at all. It\'s not like they contain any contraband or anything like that, hah!||{{What was that about a grave?|oluag_grave_select|||||}{Ok then. I guess I didn\'t see anything.|oluag_goodbye|||||}}|}; -{oluag_goodbye|Right. Goodbye.|||}; -{oluag_grave_select|||{{|oluag_grave_return|wrye:80||||}{|oluag_grave_1|||||}}|}; -{oluag_grave_return|Look, I already told you the story.||{{N|oluag_grave_5|||||}}|}; -{oluag_grave_1|Yeah, ok. So there is a grave right over there. I promise I had nothing to do with it.||{{Nothing? Really?|oluag_grave_2|||||}{Ok then. I guess you didn\'t have anything to do with it.|oluag_goodbye|||||}}|}; -{oluag_grave_2|Well, when I say \'nothing\', I really mean nothing. Or maybe just a little bit.||{{A little bit?|oluag_grave_3|||||}}|}; -{oluag_grave_3|Ok, so maybe I just had a little bit to do with it.||{{You better start talking.|oluag_grave_5|||||}{What did you do?|oluag_grave_5|||||}{Do I have to beat it out of you?|oluag_grave_4|||||}}|}; -{oluag_grave_4|Relax, relax. I don\'t want any more fights.||{{N|oluag_grave_5|||||}}|}; -{oluag_grave_5|There was this kid I found. He had almost bled to death.||{{N|oluag_grave_6|||||}}|}; -{oluag_grave_6|I managed to get a few sentences out of him before he died.||{{N|oluag_grave_7|||||}}|}; -{oluag_grave_7|So I buried him over there by that grave.||{{What were the last sentences you heard him say?|oluag_grave_8|||||}}|}; -{oluag_grave_8|Something about Vilegard and Ryndel maybe? I didn\'t really pay attention, I was more interested in what loot he had on him.||{{I should go check that grave. Goodbye.|X|||||}{Rincel, was that it? From Vilegard? Wrye\'s missing son.|oluag_grave_9|wrye:40||||}}|}; -{oluag_grave_9|Yeah, that might be it. Anyway, so he said something about fulfilling a dream to see the great city of Feygard.||{{N|oluag_grave_10|||||}}|}; -{oluag_grave_10|And he told me something about that he didn\'t dare tell anyone.||{{Maybe he didn\'t dare tell Wrye?|oluag_grave_11|||||}}|}; -{oluag_grave_11|Yeah sure, probably. He had set down here to camp, but got attacked by some monsters.||{{N|oluag_grave_12|||||}}|}; -{oluag_grave_12|Apparently he was not as strong a fighter as, for example, someone like me. So the monsters wounded him too much for him to last the night.||{{N|oluag_grave_13|||||}}|}; -{oluag_grave_13|Sadly, they also must have taken any loot with them, since I could not find any on him.||{{N|oluag_grave_14|||||}}|}; -{oluag_grave_14|I heard the fighting and only managed to get to him after the monsters had fled.||{{N|oluag_grave_15|||||}}|}; -{oluag_grave_15|So, anyway. Now he is buried over there. Rest in peace.|{{0|wrye|80|}}|{{N|oluag_grave_16|||||}}|}; -{oluag_grave_16|Lousy kid. He could at least have had a few coins on him.||{{Thank you for the story. Goodbye.|oluag_goodbye|||||}{Thank you for the story. Shadow be with you.|oluag_goodbye|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{foaming_flask_tavern_room|You must rent the room before you may enter it.|||}; -{sign_vilegard_n|The sign says:\nWelcome to Vilegard, the friendliest town around.|||}; -{sign_foamingflask|Welcome to the Foaming Flask tavern!|||}; -{sign_road1_nw|North: Loneford\nEast: Nor City\nWest: Fallhaven|||}; -{sign_road1_s|North: Loneford\nEast: Nor City\nSouth: Vilegard|||}; -{sign_oluag|You see a recently dug grave.|||}; -{sign_road2|East: Nor City\nWest: Vilegard|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{maelveon|[you feel a tingling sensation in your body as the frightening figure begins to speak]||{{N|maelveon_1|||||}}|}; -{maelveon_1|Sssshadow take you.||{{N|maelveon_2|||||}}|}; -{maelveon_2|G.. argoyle Shadow.||{{N|maelveon_3|||||}}|}; -{maelveon_3|A.. llow the Sssshadow in you.||{{The Shadow, what do you mean?|maelveon_4|||||}{Die, evil creature!|maelveon_4|||||}{I will not be affected by your nonsense!|maelveon_4|||||}}|}; -{maelveon_4|[the figure lifts his hand and points at you]||{{N|maelveon_5|||||}}|}; -{maelveon_5|Sssshadow be with you.||{{Shadow, what?|F|||||}{Die, evil creature!|F|||||}{Please don\'t hurt me!|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bwm_agent_1_start|Oh, someone from the outside! Please, sir! You have to help us!||{{What is the matter?|bwm_agent_1_2|||||}{\'Us\'? I only see you here.|bwm_agent_1_3|||||}}|}; -{bwm_agent_1_2|We urgently need help from someone outside!||{{N|bwm_agent_1_4|||||}}|}; -{bwm_agent_1_3|Very funny. I was sent by my settlement to get help from the outside.||{{N|bwm_agent_1_4|||||}}|}; -{bwm_agent_1_4|The people of my settlement, the Blackwater mountain, are slowly being reduced in numbers by the monsters and the savage bandits.|{{0|bwm_agent|1|}}|{{N|bwm_agent_1_5|||||}}|}; -{bwm_agent_1_5|The monsters are closing in on us, and we desperately need help by some able fighter.||{{I guess I could help, I have killed a few monsters here and there.|bwm_agent_1_7|||||}{A fight, great. I\'m in!|bwm_agent_1_7|||||}{Will there be a reward for this?|bwm_agent_1_6|||||}{Hm, no. I had better not get involved in this.|X|||||}}|}; -{bwm_agent_1_6|Reward? Hm, I was hoping you would help us for other reasons than a reward. But I guess my master will reward you sufficiently if you survive.||{{Alright, I\'ll do it.|bwm_agent_1_7|||||}}|}; -{bwm_agent_1_7|Excellent. The Blackwater settlement is some distance away. Frankly, I am amazed that I made it this far alive.|{{0|bwm_agent|5|}}|{{N|bwm_agent_1_8|||||}}|}; -{bwm_agent_1_8|I must warn you though, that there are some nasty monsters on the way.||{{N|bwm_agent_1_9|||||}}|}; -{bwm_agent_1_9|But I guess you seem strong enough.||{{Yeah, I can handle myself.|bwm_agent_1_10|||||}{No problem.|bwm_agent_1_10|||||}}|}; -{bwm_agent_1_10|Good. First though, we must cross this mine to the other side.||{{N|bwm_agent_1_11|||||}}|}; -{bwm_agent_1_11|The mine shaft over there *points* has collapsed, so I guess you won\'t make it through there.||{{N|bwm_agent_1_12|||||}}|}; -{bwm_agent_1_12|You will have to go through the abandoned mine below. Beware that the mine is pitch-black, so you will have to navigate in there without any light.||{{What about you?|bwm_agent_1_13|||||}{Ok, I\'ll go through the pitch-black mine.|bwm_agent_1_14|||||}}|}; -{bwm_agent_1_13|I\'ll try to crawl back through the mine shaft here. That\'s how I got here in the first place.||{{N|bwm_agent_1_14|||||}}|}; -{bwm_agent_1_14|Let\'s meet at the other side of this mine shaft.|{{0|bwm_agent|10|}}|{{Ok. You crawl through the shaft, and I\'ll go below. See you on the other side!|R|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bwm_agent_2_start|||{{|bwm_agent_2_7|bwm_agent:20||||}{|bwm_agent_2_1|||||}}|}; -{bwm_agent_2_1|Hello again. You made it through alive, well done!||{{These monsters, what are they?|bwm_agent_2_2|||||}{You never told me it would be pitch-black down there. I almost got killed!|bwm_agent_2_12|||||}{Yeah, piece of cake.|bwm_agent_2_5|||||}}|}; -{bwm_agent_2_2|The Gornauds? I have no idea where they come from, one day they just showed up here around the mountain.||{{N|bwm_agent_2_3|||||}}|}; -{bwm_agent_2_3|Nasty beasts, they are.||{{N|bwm_agent_2_4|||||}}|}; -{bwm_agent_2_4|Anyway, let\'s get going now. We are now one step closer to the Blackwater mountain settlement.||{{N|bwm_agent_2_5|||||}}|}; -{bwm_agent_2_5|We should hurry now.||{{N|bwm_agent_2_6|||||}}|}; -{bwm_agent_2_6|Once we exit this mine, it is very important that you go directly east from there. Do not travel to other places other than going east now!||{{Ok, I\'ll go east once I have exited the mine. Got it.|bwm_agent_2_7|||||}{Why east? What else is there here?|bwm_agent_2_8|||||}}|}; -{bwm_agent_2_7|I\'ll wait for you by the steps up to the mountain pass. See you there!\n\nRemember, go east once you exit the mine.|{{0|bwm_agent|20|}}|{{Ok, see you there!|R|||||}}|}; -{bwm_agent_2_8|Oh, nothing. There are dangerous places here. You should definitely not head any other direction than east.||{{Sure, I\'ll head east.|bwm_agent_2_7|||||}{Dangerous? Sounds like my kind of place!|bwm_agent_2_10|||||}{Is there something you are not telling me?|bwm_agent_2_11|||||}}|}; -{bwm_agent_2_10|It would be your loss. Don\'t say I didn\'t warn you. Safest route would be to head east.||{{Sure, I\'ll head east.|bwm_agent_2_7|||||}{Is there something you are not telling me?|bwm_agent_2_11|||||}}|}; -{bwm_agent_2_11|No no, just head east and I\'ll explain everything to you once we get to the Blackwater mountain settlement. ||{{Ok, I promise to head east once we exit the mine.|bwm_agent_2_7|||||}{(Lie) Ok, I promise to head east once we exit the mine.|bwm_agent_2_7|||||}}|}; -{bwm_agent_2_12|Actually, I did tell you that it would be pitch-black down there. Good work navigating through there!||{{N|bwm_agent_2_4|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bwm_agent_3_start|||{{|bwm_agent_3_4|bwm_agent:30||||}{|bwm_agent_3_1|||||}}|}; -{bwm_agent_3_1|Hello. You made it here, good.||{{I talked to some people in the village Prim. They had some interesting things to say about Blackwater mountain.|bwm_agent_3_5|bwm_agent:25||||}{I went east, as you said.|bwm_agent_3_2|||||}}|}; -{bwm_agent_3_2|Good. Now let\'s get up this mountain. I will meet you halfway up there.||{{N|bwm_agent_3_3|||||}}|}; -{bwm_agent_3_3|This path leads up to the Blackwater mountain settlement. Follow this path and we will talk later.||{{N|bwm_agent_3_4|||||}}|}; -{bwm_agent_3_4|Beware of the nasty monsters, they can really cause some harm!|{{0|bwm_agent|30|}}|{{Ok, I will follow this path up the mountain.|R|||||}{Great, more monsters. Just what I needed.|R|||||}}|}; -{bwm_agent_3_5|Do not listen to their lies. They poison your thoughts and would not hesitate to stab you in the back once they get the chance.||{{What have they done?|bwm_agent_3_6|||||}{Yes, they do seem a bit shady.|bwm_agent_3_7|||||}}|}; -{bwm_agent_3_6|I will not talk of them now. Follow me up to the Blackwater mountain settlement and we will talk more there.||{{Sure.|bwm_agent_3_2|||||}{I\'m keeping my eye on you. But I\'ll agree to your terms for now.|bwm_agent_3_2|||||}}|}; -{bwm_agent_3_7|Indeed they do.||{{N|bwm_agent_3_6|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bwm_agent_4_start|||{{|bwm_agent_4_5|bwm_agent:40||||}{|bwm_agent_4_1|||||}}|}; -{bwm_agent_4_1|Hello again. Well done defeating the Gornaud beasts.||{{Their attacks really hurt. What are these things?|bwm_agent_4_6|||||}{How come they do not attack you?|bwm_agent_4_3|||||}{Yeah, no problem. Just another trail of dead bodies behind me.|bwm_agent_4_2|||||}}|}; -{bwm_agent_4_2|Careful what you wish for, for it may come true.||{{N|bwm_agent_4_4|||||}}|}; -{bwm_agent_4_3|Me? There must be something about me that scares them. I have no idea what it would be, some scent perhaps?||{{N|bwm_agent_4_4|||||}}|}; -{bwm_agent_4_4|Anyway, we should get going. I\'ll run ahead of you up the mountain.||{{N|bwm_agent_4_5|||||}}|}; -{bwm_agent_4_5|Meet me further up the mountain, and we will talk more.|{{0|bwm_agent|40|}}|{{Ok, see you there.|R|||||}}|}; -{bwm_agent_4_6|I do not know where they come from. All I know is that they started to appear one day, blocking the path up the mountain.||{{N|bwm_agent_4_7|||||}}|}; -{bwm_agent_4_7|And, their attacks are tough. Once one of them gets a hold of you, the other ones seem really eager to hit you too.||{{Nothing I can\'t handle.|bwm_agent_4_4|||||}{How come they do not attack you?|bwm_agent_4_3|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bwm_agent_5_start|||{{|bwm_agent_5_6|bwm_agent:50||||}{|bwm_agent_5_1|||||}}|}; -{bwm_agent_5_1|Hello again. Well done getting through those monsters.||{{N|bwm_agent_5_2|||||}}|}; -{bwm_agent_5_2|We are almost there now. Just a little bit more.||{{N|bwm_agent_5_3|||||}}|}; -{bwm_agent_5_3|We should hurry this last bit, my settlement is close now.||{{N|bwm_agent_5_4|||||}}|}; -{bwm_agent_5_4|I hope you can manage the cold out here.||{{N|bwm_agent_5_5|||||}}|}; -{bwm_agent_5_5|Also, stay away from the wyrms. They have a really nasty bite.||{{N|bwm_agent_5_6|||||}}|}; -{bwm_agent_5_6|Now hurry. We are almost there. Follow the snowy path to the north, and you should reach the settlement in no time.|{{0|bwm_agent|50|}}|{{Ok, I will follow the path to the north, further up the mountain.|R|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bwm_agent_6_start|||{ - {|bwm_agent_6_3|bwm_agent:60||||} - {|bwm_agent_6_0|||||} - }|}; -{bwm_agent_6_1|I am glad you followed me up the mountain to help us out.||{ - {How did you get up here so fast?|bwm_agent_6_6|||||} - {Those were some tough fights, but I can manage.|bwm_agent_6_5|||||} - {Are we there yet?|bwm_agent_6_2|||||} - }|}; -{bwm_agent_6_2|Oh yes. In fact, our Blackwater mountain settlement is just down these stairs.||{{N|bwm_agent_6_4|||||}}|}; -{bwm_agent_6_3|Go ahead, I will meet you inside.||{{Ok, see you inside.|R|||||}}|}; -{bwm_agent_6_0|We meet again. Well done fighting your way up here.||{{N|bwm_agent_6_1|||||}}|}; -{bwm_agent_6_4|You should go down these stairs and talk to our battle master, Harlenn. He can usually be found at the third level down.|{{0|bwm_agent|60|}}|{{N|bwm_agent_6_3|||||}}|}; -{bwm_agent_6_5|Yes, you seem like an able fighter.||{{Are we there yet?|bwm_agent_6_2|||||}}|}; -{bwm_agent_6_6|I learned some shortcuts up and down the mountain a while back. Nothing strange about that right?||{{N|bwm_agent_6_7|||||}}|}; -{bwm_agent_6_7|Anyway, we are right at the settlement now. In fact, our Blackwater mountain settlement is just down these stairs.||{{N|bwm_agent_6_4|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{arghest_start|||{{|arghest_return_1|prim_innquest:40||||}{|arghest_return_2|prim_innquest:30||||}{|arghest_1|||||}}|}; -{arghest_1|Hello there.||{{What is this place?|arghest_2|||||}{Who are you?|arghest_5|||||}{Did you rent the back room at the inn in Prim?|arghest_8|prim_innquest:10||||}}|}; -{arghest_2|This is the old Elm mine of Prim.||{{N|arghest_3|||||}}|}; -{arghest_3|We used to mine a lot here. But that was before the attacks started.||{{N|arghest_4|||||}}|}; -{arghest_4|The attacks on Prim by the beasts and the bandits really reduced our numbers. Now we cannot keep up the mining activity any longer.||{{Who are you?|arghest_5|||||}}|}; -{arghest_5|I am Arghest. I guard the entrance here to make sure no one enters the old mine.||{{What is this place?|arghest_2|||||}{Can I enter the mine?|arghest_6|||||}}|}; -{arghest_6|No. The mine is closed.||{{Ok, goodbye.|X|||||}{Please?|arghest_7|||||}}|}; -{arghest_7|I said no. Visitors are not allowed in there.||{{Please?|arghest_6|||||}{Just a quick peek?|arghest_6|||||}}|}; -{arghest_return_1|Welcome back. Thanks for your help earlier. I hope the room at the inn can be of use to you.||{{You are welcome. Goodbye.|X|||||}{Can I enter the mine?|arghest_6|||||}}|}; -{arghest_return_2|Welcome back. Did you bring me the 5 bottles of milk that I requested?||{{No, not yet. I\'m working on it.|arghest_return_3|||||}{Yes, here you go, enjoy!|arghest_return_4||milk|5|0|}{Yes, but this nearly cost me a fortune!|arghest_return_4||milk|5|0|}}|}; -{arghest_return_3|Ok then. Return to me once you have them.||{{Will do. Goodbye.|X|||||}}|}; -{arghest_return_4|Thank you my friend! Now I can restock my supply.|{{0|prim_innquest|40|}}|{{N|arghest_return_5|||||}}|}; -{arghest_return_5|These bottles look excellent. Now I can last a while longer in here.||{{N|arghest_return_6|||||}}|}; -{arghest_return_6|Oh, and about the room in the inn - you are welcome to use it in any way you see fit. Quite a cozy place to rest if you ask me.||{{Thanks Arghest. Goodbye.|X|||||}{Finally, I thought I would never be able to rest here!|X|||||}}|}; -{arghest_8|\'Inn in Prim\' - you sound funny.||{{N|arghest_9|||||}}|}; -{arghest_9|Yes, I rent it. I stay there to rest when my shift ends.||{{N|arghest_10|||||}}|}; -{arghest_10|However, now that we guards aren\'t as plentiful as we used to be, it has been a while since I could rest in there.||{{Mind if I use the room at the inn to rest in?|arghest_11|||||}{Are you still going to use it?|arghest_11|||||}}|}; -{arghest_11|Well, I would like to still keep the option of using it. But I guess someone else could rest there now that I\'m not actively using it.|{{0|prim_innquest|20|}}|{{N|arghest_12|||||}}|}; -{arghest_12|Tell you what, if you bring me some more supplies to keep me occupied here, I guess you could have my permission to use it even though I have rented it.||{{N|arghest_13|||||}}|}; -{arghest_13|I have plenty of meat here, but I ran out of milk some weeks ago. Do you think you could help me restock my milk supply?||{{Sure, no problem. I\'ll get you your bottles of milk. How much do you need?|arghest_14|||||}{Sure, if it leads to me being able to rest here. I\'m in.|arghest_14|||||}}|}; -{arghest_14|Bring me 5 bottles of milk. That should be enough.|{{0|prim_innquest|30|}}|{{I\'ll go buy some.|X|||||}{Ok. I\'ll be right back.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{tonis_start|||{{|tonis_return_1|prim_hunt:10||||}{|tonis_1|||||}}|}; -{tonis_return_1|Hello again. Have you spoken to Guthbered in the Prim main hall yet?||{{No, not yet. Where can I find him?|tonis_return_2|||||}{Yes, he told me the story about Prim.|tonis_8|prim_hunt:20||||}{No, and I do not intend to speak to him either. I am on an urgent mission to help the Blackwater mountain settlement.|tonis_return_3|||||}}|}; -{tonis_1|You there! Please you have to help us!||{{What is the matter?|tonis_6|||||}{Is this the Blackwater mountain settlement?|tonis_2|||||}{Sorry, I cannot be bothered right now. I was told to go east quickly.|tonis_4|||||}}|}; -{tonis_2|Blackwater? No no, certainly not. Just over there is the village of Prim.||{{N|tonis_3|||||}}|}; -{tonis_3|Blackwater mountain, those vicious bastards.||{{N|tonis_6|||||}}|}; -{tonis_4|East? But that leads up to Blackwater mountain.||{{N|tonis_5|||||}}|}; -{tonis_5|You really do not want to go up there.||{{N|tonis_3|||||}}|}; -{tonis_6|We desperately need help from someone from the outside in our village of Prim.|{{0|prim_hunt|10|}}|{{N|tonis_7|||||}}|}; -{tonis_7|You should speak to Guthbered, in the Prim main hall, just north of here.||{{Ok, I will go see him.|tonis_8|||||}{I was told to go directly east.|tonis_4|||||}}|}; -{tonis_8|Good, thanks. We really need your help!|{{0|prim_hunt|11|}}||}; -{tonis_return_2|The village of Prim is just north of here. You can probably see it through the trees over there.||{{Ok, I will go there right away.|tonis_8|||||}}|}; -{tonis_return_3|Do not listen to their lies!|||}; - -{moyra_1|Stay away. This is my hiding spot.||{{What are you hiding from?|moyra_2|||||}{Who are you?|moyra_3|||||}}|}; -{moyra_2|Claws, beasts, Gornauds. They cannot reach me here.||{{\'Gornauds\', is that what those monsters outside the village are called?|moyra_5|||||}{Yeah sure. Stay here and hide you pathetic creature.|moyra_4|||||}}|}; -{moyra_3|Me? I am Moyra.||{{Why are you hiding?|moyra_2|||||}}|}; -{moyra_4|You are mean! I don\'t want to talk to you any more.|||}; -{moyra_5|Please, not so loud! They could hear you.||{{N|moyra_6|||||}}|}; -{moyra_6|I have seen them on the path up the mountain. Sharpening their claws.||{{N|moyra_7|||||}}|}; -{moyra_7|I hide here now, so they cannot get to me.|||}; - -{prim_commoner1|Hello there. Welcome to Prim. Are you here to help us?||{{Yes, I am here to help your village.|prim_commoner1_2|||||}{(Lie) Yes, I am here to help your village.|prim_commoner1_2|||||}}|}; -{prim_commoner1_2|Thank you. We really need your help.|{{0|prim_hunt|11|}}|{{N|prim_commoner1_3|||||}}|}; -{prim_commoner1_3|You should speak to Guthbered if you haven\'t done so already.||{{Will do, goodbye.|X|||||}{Where can I find him?|prim_commoner1_4|||||}}|}; -{prim_commoner1_4|He is in the main hall right over there. The large stone house.|{{0|prim_hunt|15|}}||}; - -{prim_commoner2|Hi, you seem to be new around here. How can I help you?||{{Is there some place I can rest around here?|prim_commoner2_rest1|||||}{Where can I find a trader around here?|prim_commoner2_trade1|||||}}|}; -{prim_commoner2_rest1|You should be able to find some place to rest in the inn right over there to the southeast.||{{Thank you, goodbye.|X|||||}{Where can I find a trader around here?|prim_commoner2_trade1|||||}}|}; -{prim_commoner2_trade1|Our armorer is in the house in the southwest corner. I should warn you that the supply is not what it used to be though.||{{Thank you, goodbye.|X|||||}{Is there some place I can rest around here?|prim_commoner2_rest1|||||}}|}; - -{prim_commoner3|Hello. Welcome to Prim.|||}; - -{prim_commoner4|Hello. Who are you? Are you here to help us?||{{I am looking for my brother. Would you by any chance have happened to see him around here?|prim_commoner4_1|||||}{Yes, I have come to help your village.|prim_commoner4_3|||||}{(Lie) Yes, I have come to help your village.|prim_commoner4_3|||||}}|}; -{prim_commoner4_1|Your brother? Son, you should know that we do not get many visitors around here.||{{N|prim_commoner4_2|||||}}|}; -{prim_commoner4_2|So, no. I cannot help you.|||}; -{prim_commoner4_3|Oh thank you. We could really use some help around here.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bwm_primsleep|You are not allowed to enter here.|||}; -{laecca_1|Hello. I am Laecca, mountain guide.||{{What do you do around here?|laecca_2|||||}{\'Mountain guide\', what does that mean?|laecca_2|||||}}|}; -{laecca_2|I keep an eye on the mountain pass, to make sure no more of those beasts make their way down here.||{{Then what are you doing indoors here? Shouldn\'t you be outside guarding then?|laecca_4|||||}{Sounds like a noble cause.|laecca_3|||||}{What beasts are you talking about?|laecca_9|||||}}|}; -{laecca_3|Yeah, sure. It may sound that way. In reality, it\'s a lot of hard work.||{{N|laecca_5|||||}}|}; -{laecca_4|Very funny. I have to rest too you know. Keeping the monsters away is hard work.||{{N|laecca_5|||||}}|}; -{laecca_5|There used to be more of us mountain guides, but not many have survived the attack of the beasts.||{{Sounds like you aren\'t really cut out to do your job properly.|laecca_6|||||}{I\'m sorry to hear that.|laecca_8|||||}{What beasts are you talking about?|laecca_9|||||}}|}; -{laecca_6|Perhaps.||{{N|laecca_7|||||}}|}; -{laecca_7|Anyway. I have some things to tend to. Nice talking to you.||{{Goodbye.|X|||||}}|}; -{laecca_8|Thank you for your concern.||{{Is there anything I can do to help?|laecca_13|||||}}|}; -{laecca_9|Pfft, \'What beasts?\'. The Gornaud beasts of course.||{{N|laecca_10|||||}}|}; -{laecca_10|Scratching their claws against the bare rock at night. *shrug*||{{N|laecca_11|||||}}|}; -{laecca_11|At first, I thought they were acting on pure instinct. But recently, I have started to believe they are smarter than regular beasts.||{{N|laecca_12|||||}}|}; -{laecca_12|Their attacks are getting more and more clever.|{{0|prim_hunt|11|}}|{{Is there anything I can do to help?|laecca_13|||||}}|}; -{laecca_13|You should talk to Guthbered. He is usually in the main hall. Look for a stone house in the center of the village.|{{0|prim_hunt|15|}}||}; - -{prim_cook_start|||{{|prim_cook_return_1|prim_innquest:50||||}{|prim_cook_return_2|prim_innquest:10||||}{|prim_cook_1|||||}}|}; -{prim_cook_1|Can I help you?||{{What food do you have available for trade?|prim_cook_2|||||}{Is the back room available for rent?|prim_cook_3|||||}}|}; -{prim_cook_2|Food? No, sorry. I don\'t have anything to trade.||{{N|prim_cook_1|||||}}|}; -{prim_cook_3|Rent? Hm. No, not at the moment.||{{N|prim_cook_41|||||}}|}; -{prim_cook_5|Now that you mention it, he hasn\'t been around here for quite some time. Maybe you could go talk to him and see if he still wants to rent it?||{{Ok, I will go talk to him.|prim_cook_7|||||}{Sure. Any idea where he might be?|prim_cook_6|||||}}|}; -{prim_cook_41|It is still rented out to Arghest. He would not be very happy if I rented it out to someone else when he expects to use it.||{{N|prim_cook_5|||||}}|}; -{prim_cook_6|I don\'t know where he is now, but I do know that he used to be part of the mining effort in our mine to the southwest.|{{0|prim_innquest|10|}}|{{Thanks. I will go look for him.|X|||||}{I will go look for him right away.|X|||||}}|}; -{prim_cook_7|Thanks.||{{N|prim_cook_6|||||}}|}; -{prim_cook_return_1|Thank you for your help earlier. I hope the back room is comfortable enough.||{{N|prim_cook_return_7|||||}}|}; -{prim_cook_return_2|Did you talk to Arghest?||{{No, not yet.|prim_cook_return_3|||||}{(Lie) Yes, he told me that I could rest in the back room if I want to.|prim_cook_return_4|||||}{Yes, he gave me permission to use the back room whenever I wish.|prim_cook_return_6|prim_innquest:40||||}}|}; -{prim_cook_return_3|Return to me once you know if he is still interested in renting the back room or not.||{{Any idea where he might be?|prim_cook_6|||||}}|}; -{prim_cook_return_4|Did he really say that? Somehow I doubt that. It doesn\'t sound like him.||{{N|prim_cook_return_5|||||}}|}; -{prim_cook_return_5|You will have to do something more to convince me.|||}; -{prim_cook_return_6|Really, he did? Well then, go ahead. I\'m just glad the back room is being used.|{{0|prim_innquest|50|}}|{{N|prim_cook_return_7|||||}}|}; -{prim_cook_return_7|You are welcome to rest in the back room any time you want. Please let me know if there is anything I can do to help.|||}; - -{prim_innguest|Lovely place this, isn\'t it?|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{birgil_1|Welcome to my tavern. Please have a seat anywhere.||{{What can I get to drink around here?|birgil_2|||||}}|}; -{birgil_2|Well, unfortunately, with the mine tunnel collapsed, we cannot trade much with the outside villages.||{{N|birgil_3|||||}}|}; -{birgil_3|However, I do have a huge supply of mead that I stocked up on before the mine shaft collapsed.||{ - {Mead? Yuck. Too sweet for my taste.|birgil_4|||||} - {Alright! Just my kind of taste. Let\'s see what you have to trade.|S|||||} - {Very well, it will have to do. I guess it has some healing potential. Let\'s trade.|S|||||} - }|}; -{birgil_4|Suit yourself. That\'s what I\'ve got anyway.||{ - {Ok, let\'s trade anyway.|S|||||} - {Never mind, goodbye.|X|||||} - }|}; -{prim_tavern_guest1|Oh, a new one around here.||{{N|prim_tavern_guest1_1|||||}}|}; -{prim_tavern_guest1_1|Welcome kid. Are you here to drench your sorrows like the rest of us?||{ - {Not really. What is there to do around here?|prim_tavern_guest1_3|||||} - {Yeah, give me some of what you\'re having.|prim_tavern_guest1_4|||||} - {Stop bumping into me when I\'m trying to walk.|prim_tavern_guest1_2|||||} - }|}; -{prim_tavern_guest1_2|My my, a feisty one. Very well, I will get out of your way.|||}; -{prim_tavern_guest1_3|Drink, of course!||{{I should have seen that one coming. Goodbye.|X|||||}}|}; -{prim_tavern_guest1_4|Hey, this one is mine. Buy your own mead from Birgil over there.||{ - {Sure, whatever.|X|||||} - {Ok.|X|||||} - }|}; -{prim_tavern_guest2|*hic* Hey theeere kid. Will you buy an old-timer like me a new round of mead?||{ - {Yikes, what happened to you? Get away from me.|X|||||} - {No way, and stop blocking my way.|X|||||} - {Sure. Here you go.|prim_tavern_guest2_1||mead|1|0|} - }|}; -{prim_tavern_guest2_1|Hey hey, thanks a lot kid! *hic*|||}; -{prim_tavern_guest3|*grumbles*|||}; -{prim_tavern_guest4|Claws. Scratching.||{{N|prim_tavern_guest4_1|||||}}|}; -{prim_tavern_guest4_1|Got a hold of poor Kirg they did.||{{N|prim_tavern_guest4_2|||||}}|}; -{prim_tavern_guest4_2|Those damn beasts.||{{N|prim_tavern_guest4_3|||||}}|}; -{prim_tavern_guest4_3|And it\'s all my fault. *sob*|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{guthbered_start|||{ - {|guthbered_sentbybwm_leave|bwm_agent:131||||} - {|guthbered_sentbybwm_fight|bwm_agent:130||||} - {|guthbered_sentbybwm_1|bwm_agent:120||||} - {|guthbered_reject|prim_hunt:251||||} - {|guthbered_reject|prim_hunt:250||||} - {|guthbered_completed|prim_hunt:100||||} - {|guthbered_killharl_2|prim_hunt:99||||} - {|guthbered_workingforbwm_2|bwm_agent:95||||} - {|guthbered_killharl_1|prim_hunt:80||||} - {|guthbered_lookforsigns_1|prim_hunt:50||||} - {|guthbered_return_1_1|prim_hunt:25||||} - {|guthbered_1|||||} - }|}; -{guthbered_reject|You again? Leave this place and go to your friends up in the Blackwater Mountain settlement instead. We want no business with you.||{ - {I am here to give you a message from the Blackwater Mountain settlement.|guthbered_attacks|bwm_agent:70||||} - }|}; -{guthbered_attacks|What message?||{{Harlenn in the Blackwater Mountain settlement wants you to stop your attacks on their settlement.|guthbered_attacks_1|||||}}|}; -{guthbered_attacks_1|That\'s completely insane. We!? Stop OUR attacks?! You tell him that we have nothing to do with what happens up there. They have brought their own misfortune upon themselves.|{{0|bwm_agent|80|}}||}; -{guthbered_return_1_1|Welcome back, traveller. Did you talk to Harlenn up in the Blackwater Mountain settlement?||{ - {Can you tell me the story about the monsters again?|guthbered_13|||||} - {What was I supposed to do again?|guthbered_29|||||} - {Can you tell me the story about Prim again?|guthbered_2|||||} - {Yes, but Harlenn denies that they have anything to do with the attacks.|guthbered_talkedto_harl_1|prim_hunt:30||||} - {Actually, I am here to give you a message from the Blackwater Mountain settlement.|guthbered_attacks|bwm_agent:70||||} - }|}; -{guthbered_1|Welcome to Prim, traveller.||{ - {What can you tell me about Prim?|guthbered_2|||||} - {Who are you?|guthbered_who_1|||||} - {I was told to see you about helping against the monster attacks.|guthbered_20|prim_hunt:11||||} - {Actually, I am here to give you a message from the Blackwater Mountain settlement.|guthbered_attacks|bwm_agent:70||||} - }|}; -{guthbered_2|Prim began as a simple camp for the miners that worked in the mines around here. Later it grew to a settlement, and a few years back we even got a tavern and an inn here.||{{N|guthbered_3|||||}}|}; -{guthbered_3|This place used to be full of life when the miners worked here.||{{N|guthbered_4|||||}}|}; -{guthbered_4|The miners also attracted a lot of traders that used to come through here.||{ - {\'used to\'?|guthbered_5|||||} - {What happened then?|guthbered_5|||||} - }|}; -{guthbered_5|Just until recently, we could at least get some contact with the outside villages. Nowadays, that hope is lost.||{{N|guthbered_6|||||}}|}; -{guthbered_6|You see, the mine tunnel to the south is collapsed, and no one can get in or out of Prim.||{ - {I know, I just came from there.|guthbered_7|||||} - {Tough luck.|guthbered_10|||||} - {What made it collapse?|guthbered_11|||||} - }|}; -{guthbered_7|You did? Oh. Well, yes of course you must have since you are not from Prim. So there\'s a way through it after all huh?||{ - {Yes, but I had to go through the old pitch-black mine.|guthbered_8|||||} - {Yes, the passage in the mine below is safe.|guthbered_8|||||} - {No, just kidding. I scaled over the mountain ridge to get here.|guthbered_8|||||} - }|}; -{guthbered_8|Ok. We will have to investigate that later.||{{N|guthbered_9|||||}}|}; -{guthbered_9|Anyway, as I was saying..||{{N|guthbered_10|||||}}|}; -{guthbered_10|The collapsed mine tunnel makes it hard for any traders to reach Prim. Our resources are really starting to dwindle.||{{N|guthbered_12|||||}}|}; -{guthbered_11|We are not sure. But we have our suspicions.||{{N|guthbered_10|||||}}|}; -{guthbered_12|On top of that, there are the attacks from the monsters that we have to deal with.|{{0|prim_hunt|11|}}|{ - {Yes, I noticed some monsters outside the village.|guthbered_13|||||} - {What monsters?|guthbered_13|||||} - }|}; -{guthbered_who_1|I am Guthbered, protector of this village.||{ - {What can you tell me about Prim?|guthbered_2|||||} - {I was told to see you about helping against the monster attacks.|guthbered_20|prim_hunt:11||||} - }|}; -{guthbered_13|A while ago, we started seeing the first of the monsters. At first, they were no problem for us to handle. Our guards could cut them down easily.||{{N|guthbered_14|||||}}|}; -{guthbered_14|But after a while, some of our guards got hurt, and the monsters started increasing in numbers.||{{N|guthbered_15|||||}}|}; -{guthbered_15|Also, the monsters almost seemed like they were getting smarter. Their attacks were getting more and more coordinated.||{{N|guthbered_16|||||}}|}; -{guthbered_16|Now, we can hardly hold them back. They mostly come at night.||{{N|guthbered_17|||||}}|}; -{guthbered_17|According to lore, the monsters are called the \'Gornauds\'.||{{Any ideas where they might be coming from?|guthbered_18|||||}}|}; -{guthbered_18|Oh yes, we are almost certain.||{{N|guthbered_19|||||}}|}; -{guthbered_19|Those evil bastards up in the Blackwater Mountain settlement probably summoned them to attack us. They would rather see us perish.|{{0|prim_hunt|20|}}|{{N|guthbered_22|||||}}|}; -{guthbered_20|Oh good. Did you talk to Tonis? Yes, I\'m sure you met him on your way into town.||{{N|guthbered_21|||||}}|}; -{guthbered_21|Good. Let me tell you the back-story about Prim first.||{ - {Sure.|guthbered_2|||||} - {I\'d rather skip to the end directly.|guthbered_13|||||} - }|}; -{guthbered_22|We used to trade with them up there, but that all changed once they got greedy.|{{0|bwm_agent|25|}}|{ - {I met a man outside the collapsed mine saying he was from the Blackwater Mountain settlement.|guthbered_26|||||} - {Do you need any help in dealing with those monsters?|guthbered_23|||||} - {I would be glad to help you with the monsters.|guthbered_24|||||} - }|}; -{guthbered_23|Oh boy, do we? Yes please, you are welcome to help.||{{I would be glad to help you with the monsters.|guthbered_24|||||}}|}; -{guthbered_24|Do you really think you have what it takes to help us?||{ - {I have left a bloody trail of monsters behind me.|guthbered_25|||||} - {Sure, I can handle it.|guthbered_25|||||} - {If the monsters are anything like those around where I entered the mine, it will be a tough fight. But I can manage it.|guthbered_25|||||} - }|}; -{guthbered_25|Great. I think we should go straight to the source with the problem.||{{N|guthbered_29|||||}}|}; -{guthbered_26|A man, from the Blackwater settlement, you say?||{{N|guthbered_27|||||}}|}; -{guthbered_27|Did he say anything about us here in Prim?||{{No. But he insisted that I go straight east when exiting the mine, thus not reaching Prim.|guthbered_28|||||}}|}; -{guthbered_28|That figures. They send out their spies even now.||{{Do you need any help in dealing with those monsters?|guthbered_23|||||}}|}; -{guthbered_29|As I said, we believe those bastards up at the Blackwater Mountain settlement are behind the monster attacks somehow.||{{N|guthbered_30|||||}}|}; -{guthbered_30|I want you to go up there to their settlement and ask their battle master, Harlenn, why they are doing this to us.|{{0|prim_hunt|25|}}|{{Ok, I will go ask Harlenn in the Blackwater Mountain settlement why they are attacking your village.|guthbered_31|||||}}|}; -{guthbered_31|Thank you friend.|{{0|prim_hunt|25|}}||}; - - -{guthbered_talkedto_harl_1|What did I expect? Of course he would say that. He probably even denies it to himself. Meanwhile, we here in Prim suffer from their savage raids.||{{N|guthbered_talkedto_harl_2|||||}}|}; -{guthbered_talkedto_harl_2|I am sure they are behind these attacks. However, I do not have sufficient evidence to back up my statements in order to do anything about it.||{{N|guthbered_talkedto_harl_3|||||}}|}; -{guthbered_talkedto_harl_3|But I am sure they are! As false as they are, they must be. Always lying and deceiving. Causing destruction and turmoil.|{{0|prim_hunt|40|}}|{{N|guthbered_talkedto_harl_4|||||}}|}; -{guthbered_talkedto_harl_4|Just listen to the name they have chosen for themselves: \'Blackwater\'. The tone of it sounds like trouble.||{{N|guthbered_talkedto_harl_5|||||}}|}; -{guthbered_talkedto_harl_5|Anyway. I would like to get some further evidence on what they are up to. Maybe something you can help us with.||{{N|guthbered_talkedto_harl_6|||||}}|}; -{guthbered_talkedto_harl_6|But I need to be sure that I can trust you. If you are working for them, you had better tell me now before things get .. messy.||{ - {Sure, you can trust me. I will help the people of Prim.|guthbered_talkedto_harl_8|||||} - {Hm, maybe I should help the people up in Blackwater Mountain instead.|guthbered_workingforbwm_1|||||} - {(Lie) You can trust me.|guthbered_talkedto_harl_7|bwm_agent:70||||} - }|}; -{guthbered_talkedto_harl_7|Yet somehow I do not trust you.||{ - {I was working for them, but I have decided to help you instead.|guthbered_talkedto_harl_8|||||} - {Why would I ever want to work for your filthy village? The people in the Blackwater Mountain settlement deserve my help more than you.|guthbered_workingforbwm_1|||||} - }|}; -{guthbered_talkedto_harl_8|Good. I\'m glad you want to help us.||{{N|guthbered_talkedto_harl_9|||||}}|}; -{guthbered_workingforbwm_1|Fine. You should leave now while you still can, traitor.|{{0|prim_hunt|250|}}||}; -{guthbered_talkedto_harl_9|I want you to go up there into their settlement and find any clues as to what they are planning.||{{N|guthbered_talkedto_harl_10|||||}}|}; -{guthbered_talkedto_harl_10|We believe they are training their fighters to launch a larger raid on us soon.||{{N|guthbered_talkedto_harl_11|||||}}|}; -{guthbered_talkedto_harl_11|Go look for any plans that you might find. But make sure that they do not see you while you\'re looking around.||{{N|guthbered_talkedto_harl_12|||||}}|}; -{guthbered_talkedto_harl_12|You should probably start your search around where their battle master, Harlenn, stays.||{{Ok. I will look for clues in their settlement.|guthbered_talkedto_harl_13|||||}}|}; -{guthbered_talkedto_harl_13|Thank you, friend. Report back to me with your findings.|{{0|prim_hunt|50|}}||}; -{guthbered_lookforsigns_1|Hello again. Did you find anything up in the Blackwater Mountain settlement?||{ - {No, I am still looking.|guthbered_talkedto_harl_13|||||} - {What was I supposed to do again?|guthbered_talkedto_harl_9|||||} - {Yes, I found some papers with a plan to attack Prim.|guthbered_lookforsigns_2|prim_hunt:60||||} - }|}; -{guthbered_lookforsigns_2|Then it is as we suspected. This is terrible news indeed.||{{N|guthbered_lookforsigns_3|||||}}|}; -{guthbered_lookforsigns_3|Now you know what I was talking about. They are always looking to cause trouble.||{{N|guthbered_lookforsigns_4|||||}}|}; -{guthbered_lookforsigns_4|Thank you for finding this information for us.|{{0|prim_hunt|70|}}|{{N|guthbered_lookforsigns_5|||||}}|}; -{guthbered_lookforsigns_5|Very well. We will have to deal with this.||{{N|guthbered_lookforsigns_6|||||}}|}; -{guthbered_lookforsigns_6|I had hoped it would not come to this. But we are left with no choice. We must remove their main driving force behind the raids. We must remove their battle master, Harlenn.||{{N|guthbered_lookforsigns_7|||||}}|}; -{guthbered_lookforsigns_7|This would be an excellent task for you my friend. Since you have access to their facilities, you can sneak in and kill that bastard Harlenn.||{{N|guthbered_lookforsigns_8|||||}}|}; -{guthbered_lookforsigns_8|By killing him, we can be sure that their attacks will .. shall we say .. lose their teeth. He he.||{ - {No problem, he is as good as dead.|guthbered_lookforsigns_9|||||} - {Are you sure more violence will really solve this conflict?|guthbered_lookforsigns_10|||||} - }|}; -{guthbered_lookforsigns_9|Excellent. Return to me once you are done.|{{0|prim_hunt|80|}}||}; -{guthbered_lookforsigns_10|No, not really. But for now, it looks like the only option we have.||{ - {I will remove him, but I will try to find a peaceful solution to this.|guthbered_lookforsigns_9|||||} - {Very well. He is as good as dead.|guthbered_lookforsigns_9|||||} - }|}; -{guthbered_workingforbwm_2|My sources from inside the Blackwater Mountain settlement tell me you are working for them.||{{N|guthbered_workingforbwm_3|||||}}|}; -{guthbered_workingforbwm_3|It is, of course, your choice. But if you are working for them, you are not welcome here in Prim. You should leave quickly, while you still can.|{{0|prim_hunt|251|}}||}; -{guthbered_completed|Hello again my friend. Thank you for your help in dealing with the bandits up in Blackwater Mountain.||{{N|guthbered_completed_1|||||}}|}; -{guthbered_completed_1|I am sure everyone here in Prim will want to talk to you now.|{{0|prim_hunt|240|}}|{{N|guthbered_completed_2|||||}}|}; -{guthbered_completed_2|Thank you again for your help.|{{0|bwm_agent|250|}}||}; -{guthbered_sentbybwm_1|The glow in your eyes frightens me.||{ - {I am sent by the Blackwater Mountain settlement to stop you.|guthbered_sentbybwm_fight|||||} - {I am sent by the Blackwater Mountain settlement to stop you. However, I have decided not to kill you.|guthbered_sentbybwm_3|||||} - }|}; -{guthbered_sentbybwm_fight|I had hoped it would not come to this. You will not survive this encounter I am afraid. Yet another life on my hands.|{{0|bwm_agent|130|}}|{ - {For the Shadow!|F|||||} - {Brave words, let\'s see if you can back them up with anything.|F|||||} - {Great, I have been longing to kill you.|F|||||} - {Let\'s fight!|F|||||} - }|}; -{guthbered_sentbybwm_3|How interesting... Please continue.||{{It\'s obvious that this conflict will only end in more bloodshed. That should stop here.|guthbered_sentbybwm_4|||||}}|}; -{guthbered_sentbybwm_4|What are you proposing?||{{My proposal is that you leave this village and find a new home somewhere else.|guthbered_sentbybwm_5|||||}}|}; -{guthbered_sentbybwm_5|Now why would I want to do that?||{{These two towns will always fight each other. By you leaving, they will think they have won, and stop their attacks.|guthbered_sentbybwm_6|||||}}|}; -{guthbered_sentbybwm_6|Hm, you might have a point there.||{{N|guthbered_sentbybwm_7|||||}}|}; -{guthbered_sentbybwm_7|Ok, you have convinced me. I will leave Prim for another town. The survival of my people here is more important than me.||{{N|guthbered_sentbybwm_leave|||||}}|}; -{guthbered_sentbybwm_leave|Thank you friend, for talking some sense into me.|{{0|bwm_agent|131|}}|{{You are welcome.|R|||||}}|}; - -{guthbered_killharl_1|Hello again. Did you manage to remove that bastard battle master Harlenn from the Blackwater Mountain settlement?||{ - {Can you tell me again what I was supposed to do?|guthbered_lookforsigns_6|||||} - {Not yet. I am still working on it.|guthbered_lookforsigns_9|||||} - {Yes, he is dead.|guthbered_killharl_2||harlenn_id|1|0|} - {Yes, he is gone.|guthbered_killharl_3|prim_hunt:91||||} - }|}; -{guthbered_killharl_2|While I am grateful for this news in knowing that he is dead, I am also saddened that it had to come to this.|{{0|prim_hunt|99|}}|{{N|guthbered_killharl_4|||||}}|}; -{guthbered_killharl_3|Really? This is great news indeed.||{{N|guthbered_killharl_4|||||}}|}; -{guthbered_killharl_4|This will hopefully mean that their attacks on our village will cease.||{{N|guthbered_killharl_5|||||}}|}; -{guthbered_killharl_5|I do not know how to thank you enough my friend.||{{N|guthbered_killharl_6|||||}}|}; -{guthbered_killharl_6|Here, please accept these few items as some form of compensation for your help. Also, take this piece of paper that we have acquired.|{{0|prim_hunt|100|}{1|guthbered_reward||}}|{{N|guthbered_killharl_7|||||}}|}; -{guthbered_killharl_7|This is a permit that we have .. produced .. , that according to our sources, will allow you to enter their inner chamber in the Blackwater Mountain settlement.||{{N|guthbered_killharl_8|||||}}|}; -{guthbered_killharl_8|Now, the permit is not .. shall we say .. completely genuine. But we are certain that the guards won\'t notice any difference.||{{N|guthbered_killharl_9|||||}}|}; -{guthbered_killharl_9|Anyway, you have my greatest thanks for the assistance that you have provided for us.||{{N|guthbered_completed_1|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{sign_blackwater10|North: Prim\nWest: Elm mine\nEast: (text is unreadable due to several scratch marks in the wood)\nSouth: Stoutford|||}; -{keyarea_bwm_agent_1|The man shouts at you: You! Please help! You have to help us!|||}; -{sign_blackwater0|East: Fallhaven\nSouthwest: Stoutford\nNorthwest: Blackwater Mountain|||}; -{sign_prim_n|Notice to all citizens: No one is allowed to enter the mines at night! Furthermore, climbing the mountain side is strictly forbidden after the accident with Lorn.|||}; -{sign_prim_s|Missing persons:\n - Duala\n - Lorn\n - Kamelio|||}; -{sign_blackwater13|No entry allowed.\nSigned by Guthbered of Prim.|||}; -{sign_blackwater30|||{ - {|sign_blackwater30_qstarted|kazaul:10||||} - {|sign_blackwater30_notstarted|||||} - }|}; -{sign_blackwater30_qstarted|You find a piece of paper partially frozen in the snow. You can barely make out the phrase \'Kazaul, defiler of the Elytharan Temple\' from the wet paper.\nThis must be the first half of the chant for the Kazaul ritual.|{{0|kazaul|21|}}||}; -{sign_blackwater30_notstarted|You find a piece of paper partially frozen in the snow. You can barely make out the phrase \'Kazaul, defiler of the Elytharan Temple\' from the wet paper.|||}; -{sign_blackwater32|The sign is severely damaged from what looks as bite marks from something with really sharp teeth. You cannot make out any readable words.|||}; -{sign_blackwater38_1|||{ - {|sign_blackwater38_1_qstarted|kazaul:10||||} - {|sign_blackwater38_notstarted|||||} - }|}; -{sign_blackwater38_notstarted|You find a piece of paper describing some form of ritual.|||}; -{sign_blackwater38_1_qstarted|You find a piece of paper describing the beginnings of some form of ritual.\nThis must be the first part of the Kazaul ritual.|{{0|kazaul|25|}}||}; -{sign_blackwater38_2|||{ - {|sign_blackwater38_2_qstarted|kazaul:10||||} - {|sign_blackwater38_notstarted|||||} - }|}; -{sign_blackwater38_2_qstarted|You find a piece of paper describing the main part of the Kazaul ritual.\nThis must be the second part of the Kazaul ritual.|{{0|kazaul|26|}}||}; -{sign_blackwater38_3|||{ - {|sign_blackwater38_3_qstarted|kazaul:10||||} - {|sign_blackwater38_notstarted|||||} - }|}; -{sign_blackwater38_3_qstarted|You find a piece of paper describing the end of the Kazaul ritual.\nThis must be the third part of the Kazaul ritual.|{{0|kazaul|27|}}||}; -{sign_blackwater16|||{ - {|sign_blackwater16_qstarted|kazaul:10||||} - {|sign_blackwater16_notstarted|||||} - }|}; -{sign_blackwater16_qstarted|You find a piece of torn paper stuck in the thick bush. You can barely make out the phrase \'Kazaul, destroyer of bright dreams\' from the torn paper.\nThis must be the second half of the chant for the Kazaul ritual.|{{0|kazaul|22|}}||}; -{sign_blackwater16_notstarted|You find a piece of torn paper stuck in the thick bush. You can barely make out the phrase \'Kazaul, destroyer of bright dreams\' from the torn paper.|||}; -{bwm_sleephall_1|You are not allowed to rest here. Only Blackwater residents or close allies are allowed to rest here.|||}; -{keyarea_bwm_agent_60|You must talk to the man before proceeding further.|||}; -{sign_blackwater50_left|This leads out into the wilderness outside Prim.|||}; -{sign_blackwater50_right|This leads back into the Blackwater Mountain settlement.|||}; - -{sign_blackwater29|||{ - {|sign_blackwater29_qstarted|bwm_agent:95||||} - {|sign_blackwater29_notstarted|||||} - }|}; -{sign_blackwater29_qstarted|You try to be as sneaky as possible, to not gain any attention from the guards while searching through the stack of papers.||{{N|sign_blackwater29_qstarted_1|||||}}|}; -{sign_blackwater29_notstarted|The guard shouts at you:\n\nHey you! Get away from there!|||}; -{sign_blackwater29_qstarted_1|Among the papers, you find plans for recruiting mercenaries for Prim and training fighters for a larger attack on the Blackwater Mountain settlement.|{{0|bwm_agent|100|}}|{{N|sign_blackwater29_qstarted_2|||||}}|}; -{sign_blackwater29_qstarted_2|This must be the information that Harlenn wants.|||}; - -{sign_blackwater45|||{ - {|sign_blackwater45_qstarted|prim_hunt:50||||} - {|sign_blackwater45_notstarted|||||} - }|}; -{sign_blackwater45_qstarted|You try to sneak as much as possible, to not gain any attention from the guard while searching through the stack of papers.||{{N|sign_blackwater45_qstarted_1|||||}}|}; -{sign_blackwater45_notstarted|As soon as you step near the table, the guard shouts at you:\n\nHey you! Get away from there!|||}; -{sign_blackwater45_qstarted_1|Among the papers, you find what seems to be plans for training fighters, and plans for an attack on what looks like Prim.|{{0|prim_hunt|60|}}|{{N|sign_blackwater45_qstarted_2|||||}}|}; -{sign_blackwater45_qstarted_2|This must be the information that Guthbered wants.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{harlenn_start|||{ - {|harlenn_sentbyprim_8|prim_hunt:91||||} - {|harlenn_sentbyprim_2|prim_hunt:90||||} - {|harlenn_sentbyprim_1|prim_hunt:80||||} - {|harlenn_return_1|bwm_agent:251||||} - {|harlenn_return_1|bwm_agent:250||||} - {|harlenn_completed|bwm_agent:150||||} - {|harlenn_killguth_3|bwm_agent:149||||} - {|harlenn_workingforprim_1|prim_hunt:50||||} - {|harlenn_killguth_1|bwm_agent:120||||} - {|harlenn_lookforsigns_1|bwm_agent:95||||} - {|harlenn_return_3|bwm_agent:70||||} - {|harlenn_return_2|bwm_agent:65||||} - {|harlenn_1|||||} - }|}; -{harlenn_1|Welcome, traveller.||{{N|harlenn_2|||||}}|}; -{harlenn_2|You must be the newcomer that traveled up the mountain side that I heard about.||{{N|harlenn_3|||||}}|}; -{harlenn_3|We need your help in dealing with some .. problems.||{{Who are you?|harlenn_4|||||}}|}; -{harlenn_4|Oh sorry, I did not introduce myself properly. I am Harlenn, battle master of the people living in this mountain settlement.||{{I was told to see you by the guide that led me up the mountain.|harlenn_5|||||}}|}; -{harlenn_5|Oh yes, we are lucky he found you. You see, we seldom travel that far down the mountain.||{{N|harlenn_6|||||}}|}; -{harlenn_6|Most of the time, we spend in the settlement or up here on the mountain.||{{N|harlenn_7|||||}}|}; -{harlenn_7|However, recent events have forced us to send for help. We are lucky you found us.||{ - {What problems are you referring to?|harlenn_8|||||} - {What is happening up here?|harlenn_8|||||} - }|}; -{harlenn_8|I am sure you noticed just by getting here. The monsters of course!||{{N|harlenn_9|||||}}|}; -{harlenn_9|Those damn beasts outside our very settlement. The white wyrms and the Aulaeth, and their trainers are even deadlier.||{ - {Those? They were no match for me.|harlenn_11|||||} - {I can see where this is going. You need me to deal with them for you I guess?|harlenn_10|||||} - {At least they aren\'t anything like those Gornaud beasts at the bottom of the mountain.|harlenn_12|||||} - }|}; -{harlenn_10|Well, yes. But just killing them won\'t have any effect. We have tried that, to no avail. They just keep coming back.||{{N|harlenn_13|||||}}|}; -{harlenn_11|You sound like my kind of type!||{{N|harlenn_13|||||}}|}; -{harlenn_12|Gornaud? I haven\'t heard about those. But I\'m sure they couldn\'t possibly be worse than these beasts up here.||{{N|harlenn_13|||||}}|}; -{harlenn_13|Anyway, the beasts are really starting to cut down our numbers. But they are not our only concern.||{{N|harlenn_14|||||}}|}; -{harlenn_14|On top of that, we are being attacked by raids from those bastards down in that low-life town of Prim at the base of the mountain.|{{0|bwm_agent|65|}}|{{N|harlenn_15|||||}}|}; -{harlenn_15|Oh, those treacherous, fake bastards.||{ - {What have they done?|harlenn_16|||||} - {I talked to Guthbered in Prim. They say you are the ones doing the attacks, and that you are behind the Gornaud attacks on Prim.|harlenn_prim_1|prim_hunt:25||||} - {Is there anything I can do to help?|harlenn_18|||||} - }|}; -{harlenn_16|They come here at night and sabotage our supplies.||{{N|harlenn_17|||||}}|}; -{harlenn_17|We are almost certain they are the ones behind these monsters also.|{{0|bwm_agent|66|}}|{ - {I talked to Guthbered in Prim. They say you are the ones doing the attacks, and that you are behind the Gornaud attacks on Prim.|harlenn_prim_1|prim_hunt:25||||} - {Is there anything I can do to help?|harlenn_18|||||} - }|}; -{harlenn_18|Why, yes. Of course. If you are up to it.||{{N|harlenn_19|||||}}|}; -{harlenn_19|Considering you made it up here alive, I\'m pretty sure you can handle yourself.||{{N|harlenn_20|||||}}|}; -{harlenn_prim_1|We?! Hah! It figures he would say that. They are always lying and cheating to get things their way. We have certainly not attacked them!||{{N|harlenn_prim_2|||||}}|}; -{harlenn_prim_2|It is, of course, *they* who are the ones causing all the trouble.|{{0|prim_hunt|30|}}|{{N|harlenn_prim_3|||||}}|}; -{harlenn_prim_3|They even captured one of our fellow scouts. Who knows what they have done to him.||{{N|harlenn_prim_3_1|||||}}|}; -{harlenn_prim_3_1|||{ - {|X|bwm_agent:90||||} - {|X|bwm_agent:251||||} - {|X|bwm_agent:250||||} - {|harlenn_prim_4|||||} - }|}; -{harlenn_prim_4|I\'m telling you, they are treacherous and lying!||{ - {Sure, I believe you. What do you need from me?|harlenn_prim_6|||||} - {What would I gain by helping you instead of them?|harlenn_prim_5|||||} - {I\'m not buying this. I think I would rather help the people of Prim than you people.|harlenn_prim_7|||||} - }|}; -{harlenn_prim_5|Gain? Our trust of course. You would always be welcome here in our camp. Our traders have some excellent equipment.||{ - {Ok, I\'ll help you deal with them.|harlenn_prim_6|||||} - {I\'m still not convinced, but I\'ll help you for now.|harlenn_prim_6|||||} - }|}; -{harlenn_prim_6|Good. We will need an able fighter to help us deal with the monsters and the Prim bandits.||{{N|harlenn_19|||||}}|}; -{harlenn_prim_7|Bah. Then you are useless to me. Why did you even bother to come up here and waste my time? Begone.|{{0|bwm_agent|250|}}||}; -{harlenn_20|Ok, this is the plan. I want you to go talk to Guthbered down in Prim, and give him our ultimatum:||{{N|harlenn_21|||||}}|}; -{harlenn_21|Either they stop their attacks, or we will have to deal with them.||{ - {Sure. I will go tell him your ultimatum.|harlenn_22|||||} - {No. In fact, I think I should help the people of Prim instead.|harlenn_prim_7|||||} - }|}; -{harlenn_22|Good. Now hurry! We don\'t know how much time we have left before they attack again.|{{0|bwm_agent|70|}}||}; -{harlenn_return_1|You again? I want no business with you. Leave me.||{ - {Why are you people attacking the village of Prim?|harlenn_prim_1|prim_hunt:25||||} - }|}; -{harlenn_return_2|Welcome back, traveller. What\'s on your mind?||{ - {I talked to Guthbered in Prim. They say you are attacking Prim, and that you are behind the Gornaud attacks on Prim.|harlenn_prim_1|prim_hunt:25||||} - {What was that you said earlier about the monsters that are attacking your settlement?|harlenn_9|||||} - }|}; -{harlenn_return_3|Welcome back, traveller. Did you talk to that deceiving Guthbered down in Prim?||{ - {What was I supposed to do again?|harlenn_20|||||} - {No, not yet.|harlenn_22|||||} - {Yes, I talked to him. He denies that they are behind any of the attacks.|harlenn_talkedto_guth_1|bwm_agent:80||||} - {I talked to Guthbered in Prim. They say you are the ones doing the attacks, and that you are behind the Gornaud attacks on Prim.|harlenn_prim_1|prim_hunt:25||||} - }|}; -{harlenn_workingforprim_1|My scouts have given me a most interesting report. They say you are working for Prim.||{{N|harlenn_workingforprim_2|||||}}|}; -{harlenn_workingforprim_2|Of course we can\'t have that here. We can\'t have a spy in our midst. You should leave our settlement while you still can, traitor.|{{0|bwm_agent|251|}}||}; - -{harlenn_completed|Thank you, friend. Your help is greatly appreciated. Everyone in the Blackwater Mountain settlement will want to talk to you now.|{{0|bwm_agent|240|}}|{{N|harlenn_completed_1|||||}}|}; -{harlenn_completed_1|I\'m sure the monster attacks will stop now when we kill the last few monsters that are outside the settlement.|{{0|prim_hunt|250|}}||}; -{harlenn_talkedto_guth_1|He denies it?! Bah, that treacherous fool. I should have known that he wouldn\'t dare tell the truth.||{{N|harlenn_talkedto_guth_2|||||}}|}; -{harlenn_talkedto_guth_2|I am still sure that they somehow are behind all these attacks on us. Who else could there be? There are no other settlements around here for quite a walk.||{{N|harlenn_talkedto_guth_3|||||}}|}; -{harlenn_talkedto_guth_3|Besides, they have always been treacherous. No, of course they are behind the attacks.|{{0|bwm_agent|90|}}|{{N|harlenn_talkedto_guth_4|||||}}|}; -{harlenn_talkedto_guth_4|Ok, this leaves us with no choice. We will have to step this up to another level.||{{N|harlenn_talkedto_guth_5|||||}}|}; -{harlenn_talkedto_guth_5|Are you sure you are up to it? You are not one of their spies are you? If you are working for them, then you should know that they are not to be trusted!||{ - {I am ready for anything. I will help your settlement.|harlenn_talkedto_guth_7|||||} - {Actually, now that you mention it...|harlenn_talkedto_guth_6|prim_hunt:25||||} - {Yes, I am working for Prim also. They seem like sensible people.|harlenn_prim_7|prim_hunt:25||||} - }|}; -{harlenn_talkedto_guth_6|What? Are you working for them or not?||{ - {No, never mind. I am ready to help your settlement.|harlenn_talkedto_guth_7|||||} - {I was. But I have decided to help you instead.|harlenn_talkedto_guth_7|||||} - {Yes. I am helping them get rid of you people.|harlenn_prim_7|||||} - }|}; -{harlenn_talkedto_guth_7|Good.||{{N|harlenn_talkedto_guth_8|||||}}|}; -{harlenn_talkedto_guth_8|We believe they are planning to attack us any day now. But we lack any proof that we would need to do anything about it.||{{N|harlenn_talkedto_guth_9|||||}}|}; -{harlenn_talkedto_guth_9|This is where I think an outsider like you might help.||{{N|harlenn_talkedto_guth_10|||||}}|}; -{harlenn_talkedto_guth_10|I want you to go investigate Prim for any signs that you might find of them preparing an attack on us.||{{Sure, sounds easy.|harlenn_talkedto_guth_11|||||}}|}; -{harlenn_talkedto_guth_11|Good. Try not to be seen. You should go look for any clues around where that deceiving Guthbered stays.|{{0|bwm_agent|95|}}||}; - -{harlenn_lookforsigns_1|Hello again. Did you find any clues in Prim that they are planning to attack us?||{ - {No, not yet.|harlenn_lookforsigns_2|||||} - {Yes. I found plans that they are recruiting mercenaries and will attack your settlement.|harlenn_lookforsigns_3|bwm_agent:100||||} - {What was I supposed to do again?|harlenn_talkedto_guth_8|||||} - }|}; -{harlenn_lookforsigns_2|Keep looking. I am sure they are planning something wicked.|||}; -{harlenn_lookforsigns_3|I knew it! I knew they were up to something.||{{N|harlenn_lookforsigns_4|||||}}|}; -{harlenn_lookforsigns_4|Oh that lying pig Guthbered.||{{N|harlenn_lookforsigns_5|||||}}|}; -{harlenn_lookforsigns_5|Anyway, thank you for your help in finding this evidence.|{{0|bwm_agent|110|}}|{{N|harlenn_lookforsigns_6|||||}}|}; -{harlenn_lookforsigns_6|This calls for drastic measures. We have to act quickly before they can have time to complete their plan.||{{N|harlenn_lookforsigns_7|||||}}|}; -{harlenn_lookforsigns_7|An old saying goes something like \'The only way to truly kill the Gorgon is by removing the head\'. In this case, the head of those bastards down in Prim is that fellow Guthbered.||{{N|harlenn_lookforsigns_8|||||}}|}; -{harlenn_lookforsigns_8|We should do something about him. You have proven your worth so far. This will be your final assignment.||{{N|harlenn_lookforsigns_9|||||}}|}; -{harlenn_lookforsigns_9|I want you to go .. deal .. with him. Guthbered. Preferably in the most painful and gruesome way you can think of.||{ - {No problem.|harlenn_lookforsigns_11|||||} - {Are you sure more violence will really solve this conflict?|harlenn_lookforsigns_10|||||} - {He is as good as dead.|harlenn_lookforsigns_11|||||} - }|}; -{harlenn_lookforsigns_10|You saw the plans yourself. They are going to attack us if we don\'t do something about them. Of course we have to kill him!||{ - {I will remove him, but I will try to find a peaceful solution to this.|harlenn_lookforsigns_12|||||} - {Very well. He is as good as dead.|harlenn_lookforsigns_11|||||} - }|}; -{harlenn_lookforsigns_11|Excellent. Return to me once the deed is done.|{{0|bwm_agent|120|}}||}; -{harlenn_lookforsigns_12|Fine. Do whatever you need to remove him, but I don\'t want to deal with their attacks anymore.|{{0|bwm_agent|120|}}||}; - -{harlenn_sentbyprim_1|Your expression tells me you have blood on your mind.||{ - {I am sent by the people of Prim to stop you.|harlenn_sentbyprim_2|||||} - {I am sent by the people of Prim to stop you. However, I have decided not to kill you.|harlenn_sentbyprim_3|||||} - }|}; -{harlenn_sentbyprim_2|Stop me?! Ha ha. Very well, let\'s see who is the one being stopped here.|{{0|prim_hunt|90|}}|{ - {For the Shadow!|F|||||} - {Let\'s fight!|F|||||} - }|}; -{harlenn_sentbyprim_3|How interesting... Please continue.||{{It\'s obvious that this conflict will only end in more bloodshed. That should stop here.|harlenn_sentbyprim_4|||||}}|}; -{harlenn_sentbyprim_4|What are you proposing?||{{My proposal is that you leave this settlement and find a new home somewhere else.|harlenn_sentbyprim_5|||||}}|}; -{harlenn_sentbyprim_5|Now why would I want to do that?||{{These two towns will always fight each other. By you leaving, they will think they have won, and stop their attacks.|harlenn_sentbyprim_6|||||}}|}; -{harlenn_sentbyprim_6|Hm, you might have a point there.||{{N|harlenn_sentbyprim_7|||||}}|}; -{harlenn_sentbyprim_7|Ok, you have convinced me. I will leave this settlement for another to find my home. The survival of my people here is more important than me.||{{N|harlenn_sentbyprim_8|||||}}|}; -{harlenn_sentbyprim_8|Thank you friend, for talking some sense into me.|{{0|prim_hunt|91|}}|{{You are welcome.|R|||||}}|}; - -{harlenn_killguth_1|Hello again. Have you gotten rid of that lying Guthbered down in Prim?||{ - {Not yet, but I am working on it.|harlenn_lookforsigns_11|||||} - {What was I supposed to do again?|harlenn_lookforsigns_7|||||} - {Yes, he is dead.|harlenn_killguth_2||guthbered_id|1|0|} - {Yes, he is gone.|harlenn_killguth_2|bwm_agent:131||||} - }|}; -{harlenn_killguth_2|Ha ha! He is finally gone! Now we can rest comfortably in our settlement.|{{0|bwm_agent|149|}}|{{N|harlenn_killguth_3|||||}}|}; -{harlenn_killguth_3|They will no longer attack us now that their lying leader is gone!||{{N|harlenn_killguth_4|||||}}|}; -{harlenn_killguth_4|Thank you friend. Here, have these items as a token of our appreciation for your help.|{{0|bwm_agent|150|}{1|harlenn_reward||}}|{{N|harlenn_completed|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{blackwater_entranceguard|Oh, a newcomer. Great. I hope you are here to help us with our problems.||{{N|blackwater_guard1|||||}}|}; -{blackwater_guard1|Stay out of trouble and trouble will stay away from you.|||}; -{blackwater_guest1|Great place this, isn\'t it?|||}; -{blackwater_guest2|Teehee. Mazeg\'s potions make you feel all tingly and funny.|||}; -{blackwater_cook|Get out of my kitchen! Take a seat and I will get to you in time.|||}; -{keneg|Banging. Wheezing.||{{N|keneg_1|||||}}|}; -{keneg_1|Have to get away!||{{N|keneg_2|||||}}|}; -{keneg_2|The monsters, they come at night.||{{N|keneg_3|||||}}|}; -{keneg_3|*Looks nervous*\nHave to hide.|||}; -{blackwater_notrust|Regardless, I cannot help you. My services are only for residents of Blackwater Mountain, and I don\'t trust you enough yet.|||}; -{waeges|||{ - {|waeges_1|bwm_agent:240||||} - {|waeges_2|||||} - }|}; -{waeges_1|Welcome friend. What can I do for you?||{{What weapons do you have for sale?|S|||||}}|}; -{waeges_2|Welcome traveller. I see you are looking at my fine selection of weapons.||{{N|blackwater_notrust|||||}}|}; -{blackwater_fighter|I have no time for you, kid. Have to practice my skills.|||}; -{ungorm|... but while the forces were withdrawing, the larger part of ...||{{N|ungorm_1|||||}}|}; -{ungorm_1|Oh. A young one. Hello. Please do not disturb my students while they are studying.|||}; -{blackwater_pupil|Sorry, I can\'t talk right now.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{laede|||{ - {|laede_1|bwm_agent:240||||} - {|laede_3|||||} - }|}; -{laede_1|You are welcome to rest here if you want. Pick any bed you wish.|{{0|nondisplay|16|}}|{{N|laede_2|||||}}|}; -{laede_2|I should warn you though that the one in the corner over there has a rotten stench to it. Someone must have spilled something onto it.|||}; -{laede_3|Welcome traveller. These beds are only for residents of Blackwater Mountain.|||}; -{iducus|||{ - {|iducus_1|bwm_agent:240||||} - {|iducus_2|||||} - }|}; -{iducus_1|Welcome friend. What can I do for you?||{{What items do you have for sale?|S|||||}}|}; -{iducus_2|Welcome traveller. I see you are looking at my fine selection of wares.||{{N|blackwater_notrust|||||}}|}; -{blackwater_priest|... Kazaul, destroyer of spilled hope ..\nNo that\'s not it.||{{N|blackwater_priest_1|||||}}|}; -{blackwater_priest_1|Spilled .. torment?\nNo that\'s not it either.||{{N|blackwater_priest_2|||||}}|}; -{blackwater_priest_2|Argh, I can\'t seem to remember it.||{{What are you doing?|blackwater_priest_3|||||}}|}; -{blackwater_priest_3|Oh, hello. Never mind. Nothing. Just trying to remember something. Don\'t concern yourself with that.|||}; -{blackwater_guard2|Halt! You should not step any further.||{{N|blackwater_guard2_1|||||}}|}; -{blackwater_guard2_1|There is something over there. Do you see it?||{{N|blackwater_guard2_2|||||}}|}; -{blackwater_guard2_2|A mist? A Shadow? I\'m sure I saw something moving.||{{N|blackwater_guard2_3|||||}}|}; -{blackwater_guard2_3|Screw this guard duty stuff. I am staying back here.||{{N|blackwater_guard2_4|||||}}|}; -{blackwater_guard2_4|Good thing we blocked that entrance from that old cabin.|||}; -{blackwater_bossguard|||{ - {|blackwater_bossguard_2|prim_hunt:90||||} - {|blackwater_bossguard_1|||||} - }|}; -{blackwater_bossguard_1|(The guard gives you a patronizing look, but says nothing)|||}; -{blackwater_bossguard_2|Hey, I\'m staying out of your fight with the boss. Don\'t involve me in your schemes.|||}; -{blackwater_throneguard|||{ - {|blackwater_throneguard_5|bwm_agent:240||||} - {|blackwater_throneguard_5|prim_hunt:140||||} - {|blackwater_throneguard_1|||||} - }|}; -{blackwater_throneguard_1|Only residents of Blackwater Mountain or faction members are allowed in here.||{{Here, I have a written permit to enter.|blackwater_throneguard_3||bwm_permit|1|0|}}|}; -{blackwater_throneguard_2|I will let you through. Please go right ahead.||{ - {Thank you.|R|||||} - {Yes, get out of my way.|R|||||} - }|}; -{blackwater_throneguard_3|A permit you say? Let me see that.|{{0|prim_hunt|140|}}|{{N|blackwater_throneguard_4|||||}}|}; -{blackwater_throneguard_4|Well, it has the signature and all. I guess it checks out all right.||{{N|blackwater_throneguard_2|||||}}|}; -{blackwater_throneguard_5|Oh, it is you.||{{N|blackwater_throneguard_2|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{herec_start|||{ - {|herec_q5|bwm_wyrms:30||||} - {|herec_q3|bwm_wyrms:20||||} - {|herec_q1|bwm_wyrms:10||||} - {|herec_1|||||} - }|}; -{herec_1|Welcome, traveller. You must be the one I heard about, that travelled up the mountain.||{{N|herec_2|||||}}|}; -{herec_2|Would you be willing to help me with a task?||{ - {Depends. What task?|herec_4|||||} - {Why would I want to help you?|herec_3|||||} - }|}; -{herec_3|Ah, a negotiator. I like that. If you help me, I will offer to trade the fruits of my labour with you. It should be most valuable to you.||{ - {Fine. What task are we talking about here?|herec_4|||||} - {No, how can I agree to something when I don\'t know what it is? I\'m out.|herec_11|||||} - }|}; -{herec_4|It is simple really. I am studying these wyrm creatures that lurk outside our settlement. I am trying to find what their strengths are, so that I can use it for myself.||{{N|herec_5|||||}}|}; -{herec_5|But my expertise is in the studies of them, and not in actually going head to head with those things.||{{N|herec_6|||||}}|}; -{herec_6|That\'s where you come in.||{{N|herec_7|||||}}|}; -{herec_7|I need you to gather some samples from them for me. I hear that some of the white wyrm beasts have sharper claws that can be extracted at the time of death.||{{N|herec_8|||||}}|}; -{herec_8|If you were to bring me some samples of those claws from the white wyrms, that would really speed up my research further.||{{N|herec_9|||||}}|}; -{herec_9|Let\'s say, five of those claws should be enough.||{ - {Ok, sounds easy enough. I\'ll get you your 5 white wyrm claws.|herec_10|||||} - {Sure. Those things are no match for me.|herec_10|||||} - {No way I am going near those beasts again.|herec_11|||||} - }|}; -{herec_10|Good. Thank you. Please hurry back so I can continue my research on these beasts.|{{0|bwm_wyrms|10|}}||}; -{herec_11|I assure you that my research is important. But it\'s your decision, and your loss.|||}; -{herec_q1|Welcome back. How is the search going?||{ - {What was I supposed to do again?|herec_4|||||} - {I haven\'t found everything yet. But I am working on it.|herec_10|||||} - {I have found what you asked for.|herec_q2||bwm_claws|5|0|} - }|}; -{herec_q2|Very well done my friend! These will be very valuable in my research.|{{0|bwm_wyrms|20|}}|{{N|herec_q2_2|||||}}|}; -{herec_q2_2|Come back in just a minute and I will have something ready for you.|||}; -{herec_q3|Welcome back my friend! Good news. I have successfully distilled the fragments of the claws you brought earlier.||{{N|herec_q4|||||}}|}; -{herec_q4|Now I am able to create effective potions that contain some essence of the white wyrms. These potions will be very useful in future dealings with these monsters.|{{0|bwm_wyrms|30|}}|{{N|herec_q5|||||}}|}; -{herec_q5|Would you like to trade for some potions?||{{Sure. Let\'s see what you have.|S|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bjorgur_start|||{ - {|bjorgur_return_1|bjorgur_grave:50||||} - {|bjorgur_return_2|bjorgur_grave:15||||} - {|bjorgur_1|||||} - }|}; -{bjorgur_return_1|Hello again, friend. Thank you for your assistance with my family grave earlier.|||}; -{bjorgur_return_2|Hello again. Have you investigated if anything has happened to my family grave?||{ - {No, not yet.|bjorgur_9|||||} - {(Lie) I went to check on the grave. Everything seems to be normal. You must be imagining things.|bjorgur_return_3|bjorgur_grave:60||||} - {What was I supposed to do again?|bjorgur_3|||||} - {Yes. I killed the intruder and restored the dagger to its original place.|bjorgur_complete_1|bjorgur_grave:40||||} - }|}; -{bjorgur_1|Hello there. You wouldn\'t happen to know anything about a grave to the southwest of Prim would you?||{ - {I have been there. I met someone on one of the lower levels.|bjorgur_2|bjorgur_grave:30||||} - {What about it?|bjorgur_3|||||} - {No, sorry.|bjorgur_3|||||} - }|}; -{bjorgur_2|You have been there?||{{N|bjorgur_3|||||}}|}; -{bjorgur_3|My family grave is located in the tomb to the southwest of Prim right outside the Elm mine. I fear that something has disturbed the peace there.||{{N|bjorgur_4|||||}}|}; -{bjorgur_4|You see, my grandfather was very fond of a particular valuable dagger that our family used to possess. He wore it with him always.||{{N|bjorgur_5|||||}}|}; -{bjorgur_5|The dagger would of course attract treasure hunters, but up until now we seem to have been spared of this.||{{N|bjorgur_6|||||}}|}; -{bjorgur_6|Now I fear something has happened to the grave. I have not been sleeping well the last couple of nights, and I am sure this must be the cause.|{{0|bjorgur_grave|10|}}|{{N|bjorgur_7|||||}}|}; -{bjorgur_7|You wouldn\'t happen to want to go check on the grave and see what is happening over there?||{ - {Sure. I will go check on your parents grave.|bjorgur_8|||||} - {A treasure you say? I\'m interested.|bjorgur_8|||||} - {I have actually already been there and restored the dagger to its original place.|bjorgur_complete_2|bjorgur_grave:40||||} - }|}; -{bjorgur_8|Thank you. Please see if anything has happened to the grave, and what could be the cause of my nightly anxiety.|{{0|bjorgur_grave|15|}}|{{N|bjorgur_9|||||}}|}; -{bjorgur_return_3|Nothing you say? But I was sure something must have happened over there. Anyway. Thank you for checking it for me.|||}; -{bjorgur_9|Please hurry, and return here to tell me of your progress once you find out something.|||}; -{bjorgur_complete_1|An intruder? Oh thank you for dealing with this matter.||{{N|bjorgur_complete_2|||||}}|}; -{bjorgur_complete_2|You say you restored the dagger to it\'s original place? Thank you. Now I might be able to rest during the nights ahead.||{{N|bjorgur_complete_3|||||}}|}; -{bjorgur_complete_3|Thank you again. I\'m afraid I can\'t give you anything except my gratitude. You should go see my relatives in Feygard if you get the chance to travel up there.|{{0|bjorgur_grave|50|}}||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{bjorgur_bandit|Hey you! You shouldn\'t be here. This dagger is mine. Get out!|{{0|bjorgur_grave|30|}}|{ - {Fine. I will leave.|X|||||} - {Hey, that\'s a nice looking dagger you have there.|F|||||} - }|}; -{sign_bwm35|||{ - {|sign_bwm35_1|bjorgur_grave:40||||} - {|sign_bwm35_2|||||} - }|}; -{sign_bwm35_1|You see the remains of rusted equipment and rotten leather.|||}; -{sign_bwm35_2|You see the remains of rusted equipment and rotten leather. Something seems to have been recently removed from here since one place completely lacks dust.\n\nThe lack of dust looks distinctly dagger-shaped. There must have been a dagger here earlier that someone removed.||{{Place the dagger back into its original place.|sign_bwm35_3||bjorgur_dagger|1|0|}}|}; -{sign_bwm35_3|You place the dagger back among the equipment, where it looks like it used to be.|{{0|bjorgur_grave|40|}}||}; -{fulus_start|||{ - {|fulus_return_1|bjorgur_grave:60||||} - {|fulus_return_3|bjorgur_grave:51||||} - {|fulus_return_2|bjorgur_grave:20||||} - {|fulus_1|||||} - }|}; -{fulus_return_1|Hello again, friend. Thank you for your assistance in obtaining that dagger earlier.|||}; -{fulus_return_2|Hello again. Have you been able to retrieve that dagger from Bjorgur\'s family grave yet?||{ - {No, not yet.|fulus_9|||||} - {I decided to help Bjorgur instead.|fulus_return_3|bjorgur_grave:40||||} - {What was I supposed to do again?|fulus_3|||||} - {Yes. Here it is.|fulus_complete_1||bjorgur_dagger|1|0|} - }|}; -{fulus_return_3|What?! Sigh. Stupid kid. That dagger is worth a fortune. We could have been rich! Rich I tell you!|{{0|bjorgur_grave|51|}}||}; -{fulus_1|Hello there. You seem like just the type of person I am looking for.||{{N|fulus_2|||||}}|}; -{fulus_complete_1|Oh wow, you actually managed to get the dagger? Thank you kid. This is worth a lot. Here, take these coins as compensation for your efforts!|{{0|bjorgur_grave|60|}{1|fulus_reward||}}|{{N|fulus_complete_2|||||}}|}; -{fulus_complete_2|Thank you again. Now, let\'s see.. how much should we sell this dagger for..|||}; -{fulus_2|Would you be interested in hearing about a business proposal I have?||{ - {Sure. What is the proposal?|fulus_3|||||} - {If it leads to something for me to gain, then sure.|fulus_3|||||} - {I couldn\'t possibly think you would have anything worthwhile to offer me, but let\'s hear it anyways.|fulus_3|||||} - }|}; -{fulus_3|For some time, I have known about a certain valuable dagger that a certain family used to possess here in Prim.||{{N|fulus_4|||||}}|}; -{fulus_9|Now hurry up. I really need that dagger soon.|||}; -{fulus_4|This dagger is extremely valuable to me, for personal reasons.||{ - {I don\'t like where this is going. I better not get involved in your shady business.|fulus_5|||||} - {I like where this is going, please continue.|fulus_6|||||} - {Tell me more.|fulus_6|||||} - {I have already helped Bjorgur return the dagger to its original place.|fulus_return_3|bjorgur_grave:40||||} - }|}; -{fulus_5|Fine. Suit yourself, you goody two-shoes.|||}; -{fulus_6|The family in question is Bjorgur\'s family.||{{N|fulus_7|||||}}|}; -{fulus_7|Now, I happen to know that this particular dagger can be found in their family tomb that has been opened by other .. people .. recently.||{{N|fulus_8|||||}}|}; -{fulus_8|What I want is simple. You go get that dagger and bring it to me, and I will reward you handsomely.||{ - {Sounds easy enough. I\'ll do it.|fulus_10|||||} - {No, I had better not get involved in your shady business.|fulus_5|||||} - {I have already helped Bjorgur return the dagger to its original place.|fulus_return_3|bjorgur_grave:40||||} - }|}; -{fulus_10|Good. Return to me once you have it. Maybe you can talk to Bjorgur about directions to the tomb. His house is just outside here in Prim. Just don\'t mention anything about our plan to him!|{{0|bjorgur_grave|20|}}|{{N|fulus_9|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{prim_armorer|||{ - {|prim_armorer_1|prim_hunt:240||||} - {|prim_armorer_2|||||} - }|}; -{prim_armorer_1|Welcome friend! Would you like to see what equipment I have available?||{{Sure. Show me what you have.|prim_armorer_3|||||}}|}; -{prim_armorer_2|Welcome traveller. Have you come to ask for help from me and the equipment I sell?||{{N|prim_notrust|||||}}|}; -{prim_armorer_3|I must tell you that my supply is not what it used to be, now that the southern mine entrance has collapsed. Far fewer traders come here to Prim now.||{{Ok, let me see your wares.|S|||||}}|}; -{prim_notrust|Regardless, I cannot help you. My services are only for residents of Prim, and I don\'t trust you enough yet. You might be a spy from the Blackwater Mountain settlement.|||}; -{prim_tailor|Welcome traveller, what can I do for you?||{{Let me see what you have available to sell.|prim_tailor_1|||||}}|}; -{prim_tailor_1|Sell? I\'m sorry, my supply is all out. Now that the traders do not come here anymore, I don\'t get my regular shipments. So at the moment, I have nothing to trade with you unfortunately.|||}; - -{guthbered_guard|||{ - {|guthbered_guard_2|bwm_agent:130||||} - {|guthbered_guard_1|||||} - }|}; -{guthbered_guard_1|Talk to the boss instead.|||}; -{guthbered_guard_2|Please don\'t hurt me! I\'m only doing my job here.|||}; - -{prim_guard1|What are you looking at? These weapons in the crates over here are only for us guards.|||}; -{prim_guard2|(The guard looks down on you with a condescending look)|||}; -{prim_guard3|Oh, I am so tired. When will we ever get to rest?|||}; -{prim_guard4|Can\'t talk now. I\'m on guard duty. If you need help, talk to someone else over there instead.|||}; -{prim_treasury_guard|See these bars? They will hold for almost anything.|||}; -{prim_acolyte|When my training is complete, I will be one of the greatest healers around!|||}; -{prim_pupil1|Can\'t you see I\'m trying to read over here? Talk to me in a while and I might be interested.|||}; -{prim_pupil2|Can\'t talk now, I have work to do.|||}; -{prim_pupil3|Are you the one I heard about? No, you can\'t be. I imagined someone taller.|||}; -{prim_priest|||{ - {|prim_priest_1|prim_hunt:240||||} - {|prim_priest_2|||||} - }|}; -{prim_priest_1|Welcome friend! Would you like to browse my selection of fine potions and ointments?||{{Sure. Show me what you have.|S|||||}}|}; -{prim_priest_2|Welcome traveller. Have you come to ask for help from me and my potions?||{{N|prim_notrust|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{throdna_start|||{ - {|throdna_purify_4|kazaul:100||||} - {|throdna_purify_1|kazaul:41||||} - {|throdna_return_3|kazaul:30||||} - {|throdna_return_1|kazaul:10||||} - {|throdna_1|||||} - }|}; -{throdna_1|Kazaul.. Shadow.. what was it again?||{{N|throdna_2|||||}}|}; -{throdna_2|Oh, a visitor. Hello there. I have not seen you around here before. Did they let you in here?||{{N|throdna_3|||||}}|}; -{throdna_3|Of course they did. What am I rambling on about. Harlenn and his gang always keep their worldly duties under control.||{{N|throdna_4|||||}}|}; -{throdna_4|So, who might you be then, eh? Probably here to bother me with some worldly complaint about the settlement needing more resources or someone complaining about the cold drag from the outside again?||{{N|throdna_loop_1|||||}}|}; -{throdna_loop_1|What do you want?||{ - {What is this place?|throdna_6|||||} - {Who are you?|throdna_7|||||} - {What was that you talked about when I arrived, Kazaul?|throdna_8|||||} - {Are you aware that there is a bitter rivalry going on between this settlement and Prim?|throdna_5|||||} - }|}; -{throdna_5|And there you go with your mundane problems. I tell you, your worldly troubles do not interest me the least bit.||{{N|throdna_6|||||}}|}; -{throdna_6|This is the mages\' chamber in Blackwater Mountain. We devote our time to the studies of the Shadow and its descendants.||{ - {Descendants?|throdna_8|||||} - {Let\'s go back to my other questions.|throdna_loop_1|||||} - }|}; -{throdna_7|I am Throdna. One of the most learned persons around, if you ask me.||{{N|throdna_loop_1|||||}}|}; -{throdna_8|Kazaul, the Shadow spawn of red marrow.|{{0|kazaul|8|}}|{{N|throdna_9|||||}}|}; -{throdna_9|We have been trying to read all we can on Kazaul, and the ritual. It seems we might be too late.||{{What do you mean?|throdna_10|||||}}|}; -{throdna_10|The ritual. We believe that Kazaul will manifest in our presence soon.||{{N|throdna_11|||||}}|}; -{throdna_11|We must learn more about the Kazaul ritual, to gain its power and learn to use it for our purposes.||{ - {Can I help in some way?|throdna_12|||||} - {What were you planning to do?|throdna_12|||||} - }|}; -{throdna_12|As I said, we want to learn more about the ritual itself.|{{0|kazaul|9|}}|{{N|throdna_13|||||}}|}; -{throdna_13|A while ago, we were on the verge of getting our hands on the whole ritual itself, but the messenger was killed under most interesting circumstances while traveling up here.||{{N|throdna_14|||||}}|}; -{throdna_14|We knew he had the parts of the complete ritual on him, but since he was killed and we could not get to him because of the monsters - his notes were lost to us.||{{N|throdna_15|||||}}|}; -{throdna_15|According to our sources, there should be five parts of the ritual scattered across the mountain. Three of them describing the ritual itself, and two describing the Kazaul chant used to summon the guardian.||{{N|throdna_15_1|||||}}|}; -{throdna_16|Hm, maybe you could be of use here..||{ - {I would be glad to help.|throdna_18|||||} - {Sounds dangerous, but I\'ll do it.|throdna_18|||||} - {Keep your ritual of the Shadow to yourself. I am not getting involved in this.|throdna_17|||||} - }|}; -{throdna_17|Fine, we will just have to find someone else then.|||}; -{throdna_18|Yes, you might be able to help. Not that you really have any choice though.||{{N|throdna_19|||||}}|}; -{throdna_19|Ok. Find me the pieces of the ritual that the former messenger carried on him. They should be found somewhere on the path up to Blackwater Mountain.|{{0|kazaul|10|}}|{{I will return with your parts of the ritual.|throdna_20|||||}}|}; -{throdna_20|Yes, you will.|{{0|kazaul|11|}}||}; -{throdna_return_1|Hello again. I hope you come here to tell me you have the five parts of the ritual.||{ - {I am still looking for them.|throdna_return_2|||||} - {How many parts was I supposed to find?|throdna_15|||||} - {What was I supposed to do again?|throdna_12|||||} - {Yes, I think I have found them all.|throdna_check_1|kazaul:21||||} - }|}; -{throdna_return_2|Then hurry and go find them! What are you standing around here for then?|||}; -{throdna_return_3|You actually found all five pieces? I suppose I should thank you. Well then. Thank you.|{{0|kazaul|30|}}|{{N|throdna_return_4|||||}}|}; -{throdna_15_1|||{ - {|X|kazaul:10||||} - {|throdna_16|||||} - }|}; -{throdna_check_1|||{ - {|throdna_check_2|kazaul:22||||} - {|throdna_check_fail|||||} - }|}; -{throdna_check_2|||{ - {|throdna_check_3|kazaul:25||||} - {|throdna_check_fail|||||} - }|}; -{throdna_check_3|||{ - {|throdna_check_4|kazaul:26||||} - {|throdna_check_fail|||||} - }|}; -{throdna_check_4|||{ - {|throdna_return_3|kazaul:27||||} - {|throdna_check_fail|||||} - }|}; -{throdna_check_fail|It seems you have not found all five pieces yet.||{{N|throdna_15|||||}}|}; -{throdna_return_4|We have more pressing matters to focus on. As I briefly mentioned before, we believe that Kazaul will manifest in our presence soon.||{{N|throdna_return_5|||||}}|}; -{throdna_return_5|If that were to happen, we could not complete our research about the ritual or Kazaul itself, all our efforts would be lost.||{{N|throdna_return_6|||||}}|}; -{throdna_return_6|Therefore, we intend to delay the process as much as we can, until we have learned of its powers.||{{N|throdna_return_7|||||}}|}; -{throdna_return_7|You might be useful to us here again.||{ - {I\'m ready for anything.|throdna_return_8|||||} - {What do you need of me?|throdna_return_8|||||} - {I sure hope it involves more killing and looting.|throdna_return_8|||||} - }|}; -{throdna_return_8|We need you to do two things. First, you must find the shrine of Kazaul. Our scouts tell us that the shrine should be located somewhere near the base of Blackwater Mountain.||{{N|throdna_return_9|||||}}|}; -{throdna_return_9|However, all passageways to the shrine are \'clouded in Shadow\' according to our scouts. I\'m not sure what that means.||{{N|throdna_return_10|||||}}|}; -{throdna_return_10|Second, we need you to take a vial of purifying spirit and apply it to the shrine.|{{0|kazaul|40|}}|{{N|throdna_return_11_select|||||}}|}; -{throdna_return_11_select|||{ - {|throdna_return_13|kazaul:41||||} - {|throdna_return_11|||||} - }|}; -{throdna_return_11|This vial is a vial of purifying spirit. It should delay the process well enough for us to be able to continue our research.||{ - {Sounds easy. I\'ll do it.|throdna_return_12|||||} - {Sounds dangerous, but I will do it.|throdna_return_12|||||} - {This sounds like a trap. I won\'t agree to do your dirty work.|throdna_17|||||} - }|}; -{throdna_return_12|Good, here is the vial. Now hurry.|{{0|kazaul|41|}{1|throdna_items||}}|{{N|throdna_return_13|||||}}|}; -{throdna_return_13|Return to me as soon as you have completed your task.|||}; -{throdna_purify_1|Hello again. I hope you are here to tell me you have purified the shrine of Kazaul?||{ - {Yes, it is done.|throdna_purify_3|kazaul:60||||} - {No, not yet.|throdna_purify_2|||||} - {What was I supposed to do again?|throdna_return_8|||||} - }|}; -{throdna_purify_2|Then hurry and go take the vial to the shrine! What are you standing around here for?|||}; -{throdna_purify_3|Good. We must hurry to continue our research on Kazaul.|{{0|kazaul|100|}}|{{N|throdna_purify_4|||||}}|}; -{throdna_purify_4|You should get out of here to allow us to concentrate on our work.||{{N|throdna_purify_5|||||}}|}; -{throdna_purify_5|.. Kazaul, destroyer of bright dreams ..||{{N|throdna_purify_6|||||}}|}; -{throdna_purify_6|.. Kazaul .. Shadow ..||{{N|throdna_purify_7|||||}}|}; -{throdna_purify_7|(Throdna continues to mumble on about Kazaul, but you cannot make out any other words)|||}; - -{throdna_guard|Keep your voice down while in the inner chamber.|||}; -{blackwater_acolyte|Are you also looking to become one with the Shadow?|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{kazaul_guardian|Kazaul..||{ - {What?|kazaul_guardian_1|||||} - {Kazaul, destroyer of bright dreams.|kazaul_guardian_2|kazaul:40||||} - }|}; -{kazaul_guardian_1|(The guardian looks completely unaware of your presence)|||}; -{kazaul_guardian_2|(The guardian looks down upon you with its burning eyes)||{{Kazaul, defiler of the Elytharan Temple.|kazaul_guardian_3|||||}}|}; -{kazaul_guardian_3|(You see the burning eyes of the guardian instantly turn into a dark red haze)|{{0|kazaul|50|}}|{ - {A fight, I have been waiting for this!|F|||||} - {Please don\'t kill me!|F|||||} - {For the Shadow!|F|||||} - }|}; -{sign_kazaul|||{ - {|sign_kazaul_1|kazaul:60||||} - {|sign_kazaul_3|||||} - }|}; -{sign_kazaul_1|You see the shrine of Kazaul that you poured the vial of purifying spirit on.||{{N|sign_kazaul_2|||||}}|}; -{sign_kazaul_2|The previously glowing hot rock is now cold as any regular piece of rock.|||}; -{sign_kazaul_3|Before you stands a large cut out piece of rock, in what looks like a shrine.||{{N|sign_kazaul_4|||||}}|}; -{sign_kazaul_4|You can feel an intense heat coming from the rock, almost like a burning fire.||{ - {Leave the formation alone.|X|||||} - {Apply the vial of purifying spirit on the formation.|sign_kazaul_5||q_kazaul_vial|1|0|} - }|}; -{sign_kazaul_5|You gently pour the contents of the vial onto the formation.|{{0|kazaul|60|}}|{{N|sign_kazaul_6|||||}}|}; -{sign_kazaul_6|You hear a loud crackling noise from deep below the shrine. At first, the formation seems unaffected, but after a while you see the glowing of the rock decrease slightly.||{{N|sign_kazaul_7|||||}}|}; -{sign_kazaul_7|The process continues more rapidly, while reducing the heat generated from the formation.||{{N|sign_kazaul_8|||||}}|}; -{sign_kazaul_8|This must be the purification process of the Kazaul shrine.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{erinith|||{ - {|erinith_complete_1|erinith:50||||} - {|erinith_givenpotion_1|erinith:40||||} - {|erinith_givenpotion_1|erinith:41||||} - {|erinith_givenpotion_1|erinith:42||||} - {|erinith_needspotions_1|erinith:30||||} - {|erinith_needsbook_1|erinith:20||||} - {|erinith_needsbook_1|erinith:21||||} - {|erinith_1|||||} - }|}; -{erinith_complete_1|Thank you for all your help earlier.|||}; -{erinith_1|Please, you have to help me!||{{What\'s wrong?|erinith_story_1|||||}}|}; -{erinith_story_1|I was setting up camp here during the night, and was attacked by some bandits while asleep.|{{0|erinith|10|}}|{{N|erinith_story_2|||||}}|}; -{erinith_story_2|Ack, this wound doesn\'t seem to be healing itself.||{{N|erinith_story_3|||||}}|}; -{erinith_story_3|At least I managed to keep them from getting my book. I\'m sure they were after the book.||{ - {Seems like a valuable book then. This sounds interesting, please go on.|erinith_story_4|||||} - {What happened?|erinith_story_4|||||} - }|}; -{erinith_story_4|I managed to throw the book in among the trees over there during the attack. *points to the trees directly to the north*||{{N|erinith_story_5|||||}}|}; -{erinith_story_5|I don\'t think they managed to get the book. It\'s probably still somewhere among those trees.||{{What is in the book?|erinith_story_6|||||}}|}; -{erinith_story_6|Oh, I can\'t say really.||{ - {I could help you find that book if you want.|erinith_story_7|||||} - {What would it be worth for you to get that book back?|erinith_story_gold_1|||||} - }|}; -{erinith_story_7|You would? Oh thank you.|{{0|erinith|20|}}|{{N|erinith_story_8|||||}}|}; -{erinith_story_8|Please go look for it among those trees to the northeast.|||}; -{erinith_story_gold_1|Worth? Well, I was hoping you would help me anyway, but I guess 200 gold could do.||{ - {200 gold it is then. I\'ll go look for your book.|erinith_story_gold_2|||||} - {A lousy 200 gold, is that all you can do? Fine, I\'ll go look for your stupid book.|erinith_story_gold_2|||||} - {Keep your gold, I\'ll return your book for you anyway.|erinith_story_7|||||} - {No, I am not getting involved in this. Goodbye.|X|||||} - }|}; -{erinith_story_gold_2|Make it quick.|{{0|erinith|21|}}|{{N|erinith_story_8|||||}}|}; -{erinith_needsbook_1|Have you found that book yet?||{ - {Not yet, I am still looking.|erinith_story_8|||||} - {Yes, here is your book.|erinith_needsbook_2||erinith_book|1|0|} - }|}; -{erinith_needsbook_2||{{0|erinith|30|}}|{ - {|erinith_needsbook_3_2|erinith:21||||} - {|erinith_needsbook_3_1|||||} - }|}; -{erinith_needsbook_3_1|You found it! Oh thank you so much. I was so worried that I had lost it.||{{N|erinith_needspotions_2|||||}}|}; -{erinith_needsbook_3_2|You found it! Oh thank you so much. In return, here is the gold I promised you.|{{1|gold200||}}|{{N|erinith_needspotions_2|||||}}|}; - -{erinith_needspotions_1|Thank you for helping me find my book earlier.||{{N|erinith_needspotions_2|||||}}|}; -{erinith_needspotions_2|I am still hurt by this wound that I got from the attack during the night.||{{N|erinith_needspotions_3|||||}}|}; -{erinith_needspotions_3|Ack, it hurts so bad and it doesn\'t seem to be healing itself.||{{N|erinith_needspotions_4|||||}}|}; -{erinith_needspotions_4|I am really in need of some stronger healing here. Maybe some potions would do.||{{N|erinith_needspotions_5|||||}}|}; -{erinith_needspotions_5|I have heard that the potion makers these days have potions of major health, and not just the regular potions of health.||{{N|erinith_needspotions_6|||||}}|}; -{erinith_needspotions_6|One of those would surely do. Otherwise, I think four regular potions of health would be enough.|{{0|erinith|31|}}|{ - {I\'ll go get those potions for you.|erinith_needspotions_7|||||} - {Here, take this bonemeal potion instead. It\'s very potent in healing deep wounds.|erinith_gavepotion_bm_1||bonemeal_potion|1|0|} - {Here, take this potion of major health.|erinith_gavepotion_major_1||health_major2|1|0|} - {Here, take this potion of major health.|erinith_gavepotion_major_1||health_major|1|0|} - {Here, take these four regular potions of health.|erinith_gavepotion_reg_1||health|4|0|} - }|}; -{erinith_needspotions_7|Thank you my friend. Please hurry back.|||}; -{erinith_gavepotion_bm_1|Bonemeal potion? But.. but.. We are not allowed to use them since they are prohibited by Lord Geomyr. |{{0|erinith|40|}}|{ - {Who will find out?|erinith_gavepotion_bm_2|||||} - {I have tried them myself, it\'s perfectly safe to use them.|erinith_gavepotion_bm_2|||||} - }|}; -{erinith_gavepotion_bm_2|Hm, yes. I guess you have a point. Oh well, here goes. *drinks potion*||{{N|erinith_gavepotion_1|||||}}|}; -{erinith_gavepotion_major_1|Thank you for bringing me one. *drinks potion*|{{0|erinith|41|}}|{{N|erinith_gavepotion_1|||||}}|}; -{erinith_gavepotion_reg_1|Thank you for bringing them to me. *drinks all four potions*|{{0|erinith|42|}}|{{N|erinith_gavepotion_1|||||}}|}; -{erinith_gavepotion_1|Wow, I feel slightly better already. I guess this healing really works.||{{N|erinith_givenpotion_1|||||}}|}; -{erinith_givenpotion_1|Thank you my friend for your help. My book is safe and my wound is healing. I hope our paths will cross again.|{{0|erinith|50|}}||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{woodcutter_0|Stupid wasps..|||}; -{woodcutter_2|Stay away from the road to the west, for it leads to Carn Tower. You most certainly do not want to go there.||{{N|woodcutter_1|||||}}|}; -{woodcutter_1|When travelling, keep to the roads. Veer off course and you might find yourself in danger.|||}; -{woodcutter_3|Maybe we shouldn\'t have cut down all the trees over there. Those wasps really seem upset.|||}; -{woodcutter_4|I can still feel the sting from those wasps in my legs. Good thing we are done with all the trees now.|||}; -{woodcutter_5|Hello there, welcome to our encampment. You should talk to Hadracor over there.|||}; - -{hadracor|||{ - {|hadracor_complete_1|hadracor:30||||} - {|hadracor_gaveitems_1|hadracor:21||||} - {|hadracor_gaveitems_1|hadracor:20||||} - {|hadracor_wantsitems_1|hadracor:10||||} - {|hadracor_1|||||} - }|}; -{hadracor_1|Hello there, I am Hadracor.||{ - {What is this place?|hadracor_story_1|||||} - {Have you seen my brother Andor around here? Looks somewhat like me.|hadracor_andor_1|||||} - }|}; -{hadracor_andor_1|Looks like you eh? No, I would have remembered.||{ - {Ok, goodbye.|X|||||} - {What is this place?|hadracor_story_1|||||} - }|}; -{hadracor_story_1|This is the encampment that we woodcutters set up while working on the trees here for the past few days.||{ - {What have you been working on?|hadracor_story_2|||||} - {I noticed a lot of tree stumps around here|hadracor_story_2|||||} - }|}; -{hadracor_story_2|Our orders were to cut down all trees south of the Feygard bridge and north of this here road to Carn Tower.||{{N|hadracor_story_3|||||}}|}; -{hadracor_story_3|I guess the nobles of Feygard have some plans for these lands.||{{N|hadracor_story_4|||||}}|}; -{hadracor_story_4|We, we just cut down them trees. No questions asked.||{{N|hadracor_story_5|||||}}|}; -{hadracor_story_5|However, this time we encountered some trouble.||{{N|hadracor_story_6|||||}}|}; -{hadracor_story_6|You see, there were these really nasty wasps in that forest we cut down.||{{N|hadracor_story_7|||||}}|}; -{hadracor_story_7|Nothing like we\'ve seen before, and I\'ll tell you, we have seen a lot of wildlife in our days.||{{N|hadracor_story_8|||||}}|}; -{hadracor_story_8|They almost got the best of us, and we were almost ready to quit it. But a job is a job and we need to get paid by Feygard for this job.||{{N|hadracor_story_9|||||}}|}; -{hadracor_story_9|So we went ahead and finished all of them trees, trying to evade the wasps as much as we could.||{{N|hadracor_story_10|||||}}|}; -{hadracor_story_10|However, I bet that whatever plans the nobles of Feygard have for these lands, they surely don\'t include these nasty wasps still being around.||{{N|hadracor_story_11|||||}}|}; -{hadracor_story_11|See this scratch here? And this abscess? Yep, those wasps.||{{N|hadracor_story_11_1|||||}}|}; -{hadracor_story_11_1|||{ - {|hadracor_accept_1_1|hadracor:10||||} - {|hadracor_story_12|||||} - }|}; -{hadracor_story_12|I would love to get revenge on those wasps. We, we aren\'t good enough fighters to take on those wasps, they are really too quick for us.||{ - {Tough luck, you seem like a bunch of weaklings anyway.|hadracor_decline_1|||||} - {I could try to take on those wasps for you if you want.|hadracor_accept_1|||||} - {Just a couple of wasps? That\'s no problem for me. I\'ll kill them for you.|hadracor_accept_1|||||} - }|}; -{hadracor_decline_1|I will pretend I didn\'t hear that.|||}; -{hadracor_accept_1|You would? Sure, you have a try.||{{N|hadracor_accept_1_1|||||}}|}; -{hadracor_accept_1_1|I noticed that some of the wasps are larger than the other ones, and the other wasps tend to follow the larger ones around.||{{N|hadracor_accept_2|||||}}|}; -{hadracor_accept_2|If you could kill at least five of those giant ones and bring me back their wings as proof, I would be very grateful.||{ - {Sure, I will be back with those giant wasp wings for you.|hadracor_accept_3|||||} - {No problem.|hadracor_accept_3|||||} - {On second thought, I better stay out of this.|hadracor_decline_2|||||} - }|}; -{hadracor_decline_2|Fine, I guess we can find someone else to help us get revenge on them.|||}; -{hadracor_accept_3|Good, hurry back once you are done.|{{0|hadracor|10|}}||}; -{hadracor_wantsitems_1|Hello again. Did you kill those wasps for us?||{ - {Could you tell me your story again?|hadracor_story_2|||||} - {What was I supposed to do again?|hadracor_story_6|||||} - {Not yet, but I am working on it.|hadracor_accept_3|||||} - {Yes, I killed six of them.|hadracor_wantsitems_3||hadracor_waspwing|6|0|} - {Yes, I killed five of them.|hadracor_wantsitems_2||hadracor_waspwing|5|0|} - }|}; -{hadracor_wantsitems_2|Wow, you actually killed those things?|{{0|hadracor|20|}}|{{N|hadracor_gaveitems_1|||||}}|}; -{hadracor_wantsitems_3|Wow, you actually killed six of those things? I thought there were only five, so I guess I should be even more grateful. Here, take these gloves as thanks.|{{0|hadracor|21|}{1|hadracor_reward||}}|{{N|hadracor_gaveitems_1|||||}}|}; -{hadracor_gaveitems_1|Well done my friend. Thank you for getting revenge on those things.||{{N|hadracor_complete_2|||||}}|}; -{hadracor_complete_1|Hello again. Thank you for your help with those wasps earlier.||{{N|hadracor_complete_2|||||}}|}; -{hadracor_complete_2|As a token of our appreciation, we are willing to trade some of our equipment with you if you want.|{{0|hadracor|30|}}|{{N|hadracor_complete_3|||||}}|}; -{hadracor_complete_3|It\'s not much, but we do have some really sharp axes that you might be interested in.||{ - {No thanks. Goodbye.|X|||||} - {Ok, let me see what you have.|S|||||} - }|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{tinlyn|||{ - {|tinlyn_killedsheep_0|benbyr:21||||} - {|tinlyn_killedsheep_0|tinlyn:60||||} - {|tinlyn_complete_1|tinlyn:31||||} - {|tinlyn_complete_1|tinlyn:30||||} - {|tinlyn_look_1|tinlyn:15||||} - {|tinlyn_story_1|||||} - }|}; -{tinlyn_killedsheep_0|||{{|tinlyn_killedsheep_0_1|tinlyn:10||||}{|tinlyn_killedsheep_1|||||}}|}; -{tinlyn_killedsheep_0_1||{{0|tinlyn|60|}}|{{|tinlyn_killedsheep_1|||||}}|}; -{tinlyn_killedsheep_1|You attacked my sheep! Get away from me you filthy murderer!|||}; -{tinlyn_complete_1|Hello again. Thank you for helping me find my lost sheep.||{ - {I talked to Benbyr and heard the story about you two.|tinlyn_benbyr_1|benbyr:10||||} - }|}; -{tinlyn_story_1|Hello there. You wouldn\'t happen to want to help an old shepherd do you?||{{What\'s the problem?|tinlyn_story_2|||||}}|}; -{tinlyn_story_2|You see, I tend my flock of sheep here. These fields are excellent pastures for them.||{{N|tinlyn_story_3|||||}}|}; -{tinlyn_story_3|The thing is, I have lost four of them. Now I won\'t dare leave the ones I still have in my sight to go look for the lost ones.|{{0|tinlyn|10|}}|{{N|tinlyn_story_3_1|||||}}|}; -{tinlyn_story_3_1|||{ - {|tinlyn_story_6|tinlyn:15||||} - {|tinlyn_story_4|||||} - }|}; -{tinlyn_story_4|Would you be willing to help me find them?||{ - {This doesn\'t sound like there will be any fighting involved. I only do things where there\'s fighting involved.|tinlyn_decline_1|||||} - {Absolutely, it would be my honor to assist you in locating your missing sheep.|tinlyn_story_5|||||} - {What would I gain from this?|tinlyn_story_4_1|||||} - }|}; -{tinlyn_decline_1|Oh well, it didn\'t hurt to ask.|||}; -{tinlyn_story_4_1|Gain? Why, my thanks of course.||{ - {This doesn\'t sound like there will be any fighting involved. I only do things where there\'s fighting involved.|tinlyn_decline_1|||||} - {Sure, I will help you find your sheep.|tinlyn_story_5|||||} - {No thanks, I better not get involved in this.|tinlyn_decline_1|||||} - }|}; -{tinlyn_story_5|Good, thank you. Please put these bells around their necks so I can hear them. Return to me once you have placed bells around the neck of each of the four missing sheep.|{{0|tinlyn|15|}{1|tinlyn_bells||}}|{{N|tinlyn_story_6|||||}}|}; -{tinlyn_story_6|Return to me once you have placed bells around the neck of each of the four missing sheep.|||}; -{tinlyn_look_1|Hello again. Did you find all four of my missing sheep?||{ - {Yes, I found all of them.|tinlyn_found_1|tinlyn:25||||} - {Not yet. I am still looking.|tinlyn_story_6|||||} - {What was I supposed to do?|tinlyn_story_2|||||} - {I talked to Benbyr and heard the story about you two.|tinlyn_benbyr_1|benbyr:10||||} - }|}; -{tinlyn_found_1|Yes, I can hear distant sounds of bells from the fields to the south. I am sure they will come back here now that they have the bells on them.||{ - {I am happy to help.|tinlyn_found_3|||||} - {That was some hard work. What about a reward?|tinlyn_found_2|||||} - }|}; -{tinlyn_found_2|I am sorry, but I am a simple shepherd. I have no wealth or magical trinkets to give you.|{{0|tinlyn|31|}}||}; -{tinlyn_found_3|Thank you for helping me.|{{0|tinlyn|30|}}||}; -{tinlyn_benbyr_1|Is he still around? I thought the guards got the best of him.||{{N|tinlyn_benbyr_2|||||}}|}; -{tinlyn_benbyr_2|Anyway, I do not want to talk about that. I have left that kind of life behind me. Herding sheep is what I do now.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{tinlyn_lostsheep1|||{{|tinlyn_lostsheep_y|tinlyn:20||||}{|tinlyn_lostsheep1_n|||||}}|}; -{tinlyn_lostsheep2|||{{|tinlyn_lostsheep_y|tinlyn:21||||}{|tinlyn_lostsheep2_n|||||}}|}; -{tinlyn_lostsheep3|||{{|tinlyn_lostsheep_y|tinlyn:22||||}{|tinlyn_lostsheep3_n|||||}}|}; -{tinlyn_lostsheep4|||{{|tinlyn_lostsheep_y|tinlyn:23||||}{|tinlyn_lostsheep4_n|||||}}|}; -{tinlyn_lostsheep1_n|Baah!||{ - {Place Tinlyn\'s bell around the neck of the sheep.|tinlyn_lostsheep1_place||tinlyn_bells|1|0|} - {Attack|tinlyn_lostsheep_atk|benbyr:20||||} - }|}; -{tinlyn_lostsheep2_n|Baah!||{ - {Place Tinlyn\'s bell around the neck of the sheep.|tinlyn_lostsheep2_place||tinlyn_bells|1|0|} - {Attack|tinlyn_lostsheep_atk|benbyr:20||||} - }|}; -{tinlyn_lostsheep3_n|Baah!||{ - {Place Tinlyn\'s bell around the neck of the sheep.|tinlyn_lostsheep3_place||tinlyn_bells|1|0|} - {Attack|tinlyn_lostsheep_atk|benbyr:20||||} - }|}; -{tinlyn_lostsheep4_n|Baah!||{ - {Place Tinlyn\'s bell around the neck of the sheep.|tinlyn_lostsheep4_place||tinlyn_bells|1|0|} - {Attack|tinlyn_lostsheep_atk|benbyr:20||||} - }|}; -{tinlyn_lostsheep_y|Baah!||{{Attack|tinlyn_lostsheep_atk|benbyr:20||||}}|}; -{tinlyn_lostsheep1_place||{{0|tinlyn|20|}}|{{|tinlyn_lostsheep_check_1|||||}}|}; -{tinlyn_lostsheep2_place||{{0|tinlyn|21|}}|{{|tinlyn_lostsheep_check_1|||||}}|}; -{tinlyn_lostsheep3_place||{{0|tinlyn|22|}}|{{|tinlyn_lostsheep_check_1|||||}}|}; -{tinlyn_lostsheep4_place||{{0|tinlyn|23|}}|{{|tinlyn_lostsheep_check_1|||||}}|}; -{tinlyn_lostsheep_check_1|||{{|tinlyn_lostsheep_check_2|tinlyn:20||||}{|tinlyn_lostsheep_placed_2|||||}}|}; -{tinlyn_lostsheep_check_2|||{{|tinlyn_lostsheep_check_3|tinlyn:21||||}{|tinlyn_lostsheep_placed_2|||||}}|}; -{tinlyn_lostsheep_check_3|||{{|tinlyn_lostsheep_check_4|tinlyn:22||||}{|tinlyn_lostsheep_placed_2|||||}}|}; -{tinlyn_lostsheep_check_4|||{{|tinlyn_lostsheep_placed_1|tinlyn:23||||}{|tinlyn_lostsheep_placed_2|||||}}|}; -{tinlyn_lostsheep_placed_1||{{0|tinlyn|25|}}|{{|tinlyn_lostsheep_placed_2|||||}}|}; -{tinlyn_lostsheep_placed_2|(You place one of the bells around the neck of the sheep.)|||}; -{tinlyn_lostsheep_atk|||{{|tinlyn_lostsheep_atk1|tinlyn:10||||}{|tinlyn_sheep_atk|||||}}|}; -{tinlyn_lostsheep_atk1||{{0|tinlyn|60|}}|{{|tinlyn_sheep_atk|||||}}|}; -{tinlyn_sheep|Baah!||{{Attack|tinlyn_lostsheep_atk|benbyr:20||||}}|}; -{tinlyn_sheep_atk||{{0|benbyr|21|}}|{{|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{benbyr|||{ - {|benbyr_declined|benbyr:60||||} - {|benbyr_complete_1|benbyr:30||||} - {|benbyr_mission_1|benbyr:20||||} - {|benbyr_story_1|||||} - }|}; -{benbyr_complete_1|Hello again. We sure showed that bastard Tinlyn. That should teach him not to mess with me again.|||}; -{benbyr_declined|I have nothing more to say to you. Leave me.|||}; -{benbyr_story_1|Psst, hey. Over here.||{{N|benbyr_story_2|||||}}|}; -{benbyr_story_2|You look like an aspiring adventurer. Are you willing to do some .. (Benbyr pauses) .. adventuring? He he.||{ - {What are we talking about here?|benbyr_story_3_1|||||} - {Depends on what I get in return.|benbyr_story_3_2|||||} - {I try to help people where ever they might need help.|benbyr_story_3_3|||||} - }|}; -{benbyr_story_3_1|Straight to the point eh? I like that.||{{N|benbyr_story_4|||||}}|}; -{benbyr_story_3_2|Ah, the adventurer seeks compensation. Tell me, is the thrill of an adventure not reward enough?||{ - {Yes, you are right.|benbyr_story_4|||||} - {No.|benbyr_story_3_4|||||} - }|}; -{benbyr_story_3_4|Then I will surely disappoint you. Return to me once you are ready for my task.|||}; -{benbyr_story_3_3|The noble adventurer. He he, I like that. Yes, you will do fine.||{{N|benbyr_story_4|||||}}|}; -{benbyr_story_4|A while ago, I did some business with a certain man called Tinlyn, over here at this Crossroads guardhouse.||{{N|benbyr_story_5|||||}}|}; -{benbyr_story_5|As to the nature of our business, I can\'t really tell you. Let\'s just say that our business was of the kind that it was mutually beneficial that the guards did not know about it.||{{N|benbyr_story_6|||||}}|}; -{benbyr_story_6|We were ready to finish the big deal, me and Tinlyn. That\'s when he decided to turn on me.||{{N|benbyr_story_7|||||}}|}; -{benbyr_story_7|He reported me to the guards, and made me take the whole blame for our business.||{{N|benbyr_story_8|||||}}|}; -{benbyr_story_8|I was sent to Feygard prison, while he himself was set free for reporting me.||{{N|benbyr_story_8_1|||||}}|}; -{benbyr_story_8_1|||{ - {|benbyr_story_10|benbyr:20||||} - {|benbyr_story_9|||||} - }|}; -{benbyr_story_9|Argh, that fool Tinlyn. I hope the Shadow never shows him any mercy.||{ - {Get to the point already.|benbyr_story_10|||||} - {What do you need me to do?|benbyr_story_10|||||} - }|}; -{benbyr_story_10|I want to get revenge on that fool Tinlyn of course. Now, my plan is the following:||{{N|benbyr_story_11|||||}}|}; -{benbyr_story_11|I have heard that he is herding sheep these days. This is an excellent opportunity for .. shall we say .. an accident to happen to his sheep. He he.||{{N|benbyr_story_12|||||}}|}; -{benbyr_story_12|You, my friend, would be the perfect walking accident. I want you to find all of Tinlyn\'s sheep and make sure they are forever united with the Shadow.||{{N|benbyr_story_12_1|||||}}|}; -{benbyr_story_12_1|||{ - {|benbyr_accept_2|benbyr:20||||} - {|benbyr_story_13|||||} - }|}; -{benbyr_story_13|Do this, and I will have avenged that fool Tinlyn.|{{0|benbyr|10|}}|{ - {Sounds like just my type of thing. I\'ll do it!|benbyr_accept_1|||||} - {This sounds a bit shady, but I\'ll do it anyway.|benbyr_accept_1|||||} - {No way, killing innocent sheep is beneath me. I will never do your task.|benbyr_decline_1|||||} - }|}; -{benbyr_decline_1|Very well, but remember that I have my eyes on you.. adventurer.|{{0|benbyr|60|}}|{{N|benbyr_declined|||||}}|}; -{benbyr_accept_1|Splendid!|{{0|benbyr|20|}}|{{N|benbyr_accept_2|||||}}|}; -{benbyr_accept_2|I happen to know that there are eight of his sheep in total, and they should all be to the northwest of here.||{{N|benbyr_accept_3|||||}}|}; -{benbyr_accept_3|Return to me with proof that you have slain all eight of them.|||}; -{benbyr_mission_1|Ah, my walking accident returns. He he.||{ - {Can you tell me your story again?|benbyr_story_4|||||} - {I am still looking for those sheep.|benbyr_accept_3|||||} - {I have slain all eight of Tinlyn\'s sheep for you.|benbyr_mission_2||tinlyn_sheep_meat|8|0|} - }|}; -{benbyr_mission_2|Ha ha! That fool Tinlyn must be in tears. The Shadow surely walks with you my friend.|{{0|benbyr|30|}}|{{N|benbyr_complete_2|||||}}|}; -{benbyr_complete_2|This is a glorious day indeed! Tinlyn should have known not to mess with me!||{{N|benbyr_complete_3|||||}}|}; -{benbyr_complete_3|As for you my friend, seek out my friends in Brightport. I am sure they would extend their hospitality to you.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{fanamor|Yikes! You scared me there.||{{N|fanamor_1|||||}}|}; -{fanamor_1|I was just strolling through these woods .. eh .. killing Anklebiters.||{{N|fanamor_2|||||}}|}; -{fanamor_2|Yes. Killing them was what I was doing. Not running away from them. No, killing them.||{{N|fanamor_3|||||}}|}; -{fanamor_3|.. sigh ..||{{N|fanamor_4|||||}}|}; -{fanamor_4|Oh, who am I kidding. Ok, I was trying to get through the forest here and got ambushed by these anklebiters.||{{N|fanamor_5|||||}}|}; -{fanamor_5|I won\'t leave until nightfall, when they can\'t see me anymore and I might be able to sneak back.||{{N|fanamor_6|||||}}|}; -{fanamor_6|This is my hiding spot! Now leave me.|||}; - -{crossroads_guard|||{ - {|crossroads_guard_r_1|farrik:90||||} - {|crossroads_guard_1|||||} - }|}; -{crossroads_guard_r_1|Did you hear? Some thieves down in Fallhaven were planning an escape for one of the imprisoned thieves in the prison there.||{{N|crossroads_guard_r_2|||||}}|}; -{crossroads_guard_r_2|Luckily, someone got wind of it and told the guard captain.||{{N|crossroads_guard_r_3|||||}}|}; -{crossroads_guard_r_3|It\'s good to know that there are at least a few decent people still around.|||}; -{crossroads_guard_1|Aren\'t you a bit young to be travelling around here all by yourself?||{{N|crossroads_guard_2|||||}}|}; -{crossroads_guard_2|I sure hope you are not another one of those types trying to sell me your cheap junk.||{{N|crossroads_guard_3|||||}}|}; -{crossroads_guard_3|Go away, kid.|||}; - -{cr_loneford_st_1|Didn\'t you hear? They have all gotten ill.||{{N|cr_loneford_st_2|||||}}|}; -{cr_loneford_st_2|It all started a few days ago. As the story goes, someone found one of the farmers passed out in one of the fields, completely white faced and shivering.||{{N|cr_loneford_st_3|||||}}|}; -{cr_loneford_st_3|A few days later, the same symptoms started to show on a lot more people.||{{N|cr_loneford_st_4|||||}}|}; -{cr_loneford_st_4|Then, all people showed the symptoms in one way or another.||{{N|cr_loneford_st_5|||||}}|}; -{cr_loneford_st_5|Some old people even died.||{{N|cr_loneford_st_6|||||}}|}; -{cr_loneford_st_6|Everyone started investigating what could be the cause. Currently, the cause is still unknown.|{{0|loneford|10|}}|{{N|cr_loneford_st_7|||||}}|}; -{cr_loneford_st_7|Luckily, now Feygard has sent patrols up there to help guard the village at least. The people are still suffering though.|{{0|loneford|11|}}|{{N|cr_loneford_st_8|||||}}|}; -{cr_loneford_st_8|Me, I am certain that this is the work of those savages from Nor City somehow. They probably sabotaged something up there.||{{N|cr_loneford_st_9|||||}}|}; -{cr_loneford_st_9|What do they call it, the \'Shadow\'? They are willing to do almost anything to upset the law and order around here.||{{N|cr_loneford_st_10|||||}}|}; -{cr_loneford_st_10|I tell you. Savages - that\'s what they are. No respect for the laws or authority.|{{0|loneford|21|}}||}; - - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{minarra|||{ - {|minarra_completed_1|rogorn:60||||} - {|minarra_completing_1|rogorn:55||||} - {|minarra_completing_1|rogorn:50||||} - {|minarra_look_1|rogorn:20||||} - {|minarra_return_1|rogorn:10||||} - {|minarra_first_1|||||} - }|}; -{minarra_first_1|Hello there. Can I help you?||{ - {You seem to have a lot of equipment around here. Do you have anything to trade?|minarra_trade_rej|||||} - {What do you do up here?|minarra_first_5|||||} - {You must have a good view of the surroundings up here. Have you seen anything interesting lately?|minarra_first_2|||||} - }|}; -{minarra_trade_rej|I might, but you would have to clear it with Gandoren downstairs. We don\'t trade with just anyone.|||}; -{minarra_return_1|You return. Was there something else you wanted?||{ - {Can you tell me again about those men you saw?|minarra_story_1|||||} - {Do you have anything to trade?|minarra_trade_rej|||||} - {What do you do up here?|minarra_first_5|||||} - }|}; -{minarra_first_2|Mostly, I see the travellers on the Duleian road from and to Feygard here.||{{N|minarra_first_3|||||}}|}; -{minarra_first_3|Recently however, there have been a lot of movements to and from Loneford. I guess it is because of the problems they have been having up there.||{{N|minarra_first_4_s|||||}}|}; -{minarra_first_4_s|||{ - {|minarra_first_4_1|rogorn:60||||} - {|minarra_first_4|||||} - }|}; -{minarra_first_4|I did see something very interesting yesterday though.||{ - {What was that?|minarra_story_1|||||} - {You mentioned the Duleian road, what\'s that?|minarra_first_6|||||} - {You mentioned some problems in Loneford, what problems were you referring to?|cr_loneford_st_1|||||} - {Never mind that, I wanted to ask you what your duty is up here?|minarra_first_5|||||} - }|}; -{minarra_first_4_1|Some farm animals today as well.||{ - {You mentioned the Duleian road, what\'s that?|minarra_first_6_1|||||} - {You mentioned some problems in Loneford, what problems were you referring to?|cr_loneford_st_1|||||} - }|}; -{minarra_first_5|I handle the equipment storage for us guards here in the Crossroads guardhouse, and I keep a lookout of the surrounding areas.||{ - {Do you have anything to trade?|minarra_trade_rej|||||} - {Have you seen anything interesting lately?|minarra_first_2|||||} - }|}; -{minarra_first_6|See this wide road that goes outside this guardhouse? That\'s the Duleian road. It goes all the way from the glorious city of Feygard up in the northwest down to the wretched Nor City in the southeast.||{ - {You mentioned some problems in Loneford, what problems are that?|cr_loneford_st_1|||||} - {I wanted to ask you what your duty is up here?|minarra_first_5|||||} - }|}; -{minarra_first_6_1|See this wide road that goes outside this guardhouse? That\'s the Duleian road. It goes all the way from the glorious city of Feygard up in the northwest down to the wretched Nor City in the southeast.||{ - {You mentioned some problems in Loneford, what problems are that?|cr_loneford_st_1|||||} - }|}; -{minarra_story_1|I saw a band of rough looking men travelling up the Duleian road. Usually, a band of rough looking men is not something that\'s worth getting all excited about.||{{N|minarra_story_2|||||}}|}; -{minarra_story_2|But these men matched the description of some people that are wanted by the Feygard patrol.||{{N|minarra_story_3|||||}}|}; -{minarra_story_3|If I saw correctly, these men were the band of rogues led by a man called Rogorn, that we are looking to apprehend for several ruthless cases of murder and theft.||{{N|minarra_story_4|||||}}|}; -{minarra_story_4|Their leader, Rogorn, is a particularly savage man according to the reports from Feygard that I have read.||{{N|minarra_story_5|||||}}|}; -{minarra_story_5|Now, usually, we would go out searching for them, to verify that the men I saw were indeed these men. However, now with the trouble up in Loneford, we cannot afford to spare any guards other than to guarding Loneford.||{{N|minarra_story_6|||||}}|}; -{minarra_story_6|I am sure that those were the men. If we were to catch and kill them, the people of Feygard would be much safer.|{{0|rogorn|10|}}|{ - {I could go look for them if you want.|minarra_story_8|||||} - {Well, good luck with that.|minarra_story_7|||||} - }|}; -{minarra_story_7|Thank you. Good luck yourself. Now, if you will excuse me, I need to keep my eyes on the road.|||}; -{minarra_story_8|Hey, that\'s a great idea. Are you sure you are up to it though? The people of Feygard would indeed be grateful if you were to find them.||{{N|minarra_story_9|||||}}|}; -{minarra_story_9|Anyway, I saw them travelling the road west of here. You know that road that leads to Carn Tower? That\'s the last I saw of them. You might want to follow that road and see if you can spot them.||{{N|minarra_story_10|||||}}|}; -{minarra_story_10|They have stolen three pieces of a very valuable painting from Feygard, from the report that I have read. For their crimes and the savageness of their way, they are wanted dead by the Feygard patrol.|{{0|rogorn|20|}}|{{I will be back once they are dead. Anything else?|minarra_story_11|||||}}|}; -{minarra_story_11|Yes, I should also tell you that they most likely will try to persuade you into believing their story.||{{N|minarra_story_12|||||}}|}; -{minarra_story_12|In particular, their leader, Rogorn, is a well known villain by Feygard. Nothing he says should be trusted.||{{N|minarra_story_13|||||}}|}; -{minarra_story_13|I urge you not to listen to their lies. Their crimes must be punished in order to uphold the law.|{{0|rogorn|21|}}|{{I will return once the task is done.|X|||||}}|}; -{minarra_look_1|You return. Did you find those men that we talked about?||{ - {I am still looking for them.|minarra_look_2|||||} - {Yes, I killed them and recovered the three pieces of the painting.|minarra_look_3|rogorn:40|rogorn_qitem|3|0|} - {I travelled west and found a travelling group of men, but they did not match the men you described.|minarra_look_5|rogorn:45||||} - }|}; -{minarra_look_2|Good. Return to me as soon as you have anything to report. We would really like to recover those three pieces of the painting they stole.|||}; -{minarra_look_3|That is excellent news indeed! I knew that we could trust you.|{{0|rogorn|50|}}|{{N|minarra_look_4|||||}}|}; -{minarra_look_4|Your services to Feygard will be greatly appreciated.||{{N|minarra_completing_1|||||}}|}; -{minarra_look_5|Are you sure that they were not the ones? I have a keen eyesight, that\'s why I am up here. I was sure that they matched the description of the men.||{{N|minarra_look_6|||||}}|}; -{minarra_look_6|I guess I will have to take your word for it.|{{0|rogorn|55|}}|{{N|minarra_completing_1|||||}}|}; -{minarra_completing_1|Thank you for helping me investigate this matter.|{{0|rogorn|60|}}|{ - {Do you have anything to trade?|minarra_trade_1|||||} - {You must have a good view of the surroundings up here. Have you seen anything interesting lately?|minarra_first_2|||||} - }|}; -{minarra_completed_1|Thank you for helping me investigate the men earlier.||{ - {Do you have anything to trade?|minarra_trade_1|||||} - {You must have a good view of the surroundings up here. Have you seen anything interesting lately?|minarra_first_2|||||} - }|}; -{minarra_trade_1|||{ - {|minarra_trade_2|nondisplay:18||||} - {|minarra_trade_rej|||||} - }|}; -{minarra_trade_2|Sure, take a look.||{{N|S|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{rogorn_henchman|||{ - {|rogorn_henchman_atk|rogorn:40||||} - {|rogorn_henchman_noatk|rogorn:45||||} - {|rogorn_henchman_1|||||} - }|}; -{rogorn_henchman_atk|For the Shadow!||{{Fight|F|||||}}|}; -{rogorn_henchman_noatk|Good to hear that there are at least a few people left out there willing to take a stand against Feygard.|||}; -{rogorn_henchman_1|Should you really be out here all by yourself?|||}; - -{rogorn|||{ - {|rogorn_completed_1|rogorn:60||||} - {|rogorn_attack_1|rogorn:40||||} - {|rogorn_story_r_9|rogorn:45||||} - {|rogorn_toldstory_1|rogorn:35||||} - {|rogorn_first_1|||||} - }|}; -{rogorn_first_1|Look fellas, a kid! Out strolling here in the wilderness!||{{N|rogorn_first_2|||||}}|}; -{rogorn_first_2|Should you really be out here kid? These areas are dangerous.||{ - {I can handle myself|rogorn_first_3|||||} - {Why? What is out here?|rogorn_first_4|||||} - {You are right, I better leave|X|||||} - }|}; -{rogorn_first_3|I bet you can.||{{N|rogorn_first_6|||||}}|}; -{rogorn_first_4|Well, west of here is not much. No towns for quite a while, only the harsh and dangerous wilderness.||{{N|rogorn_first_5|||||}}|}; -{rogorn_first_5|Of course, there is Carn Tower if you travel really far west, but you really do not want to head there.||{{N|rogorn_first_6|||||}}|}; -{rogorn_first_6|So, what brings you to these parts of the land?||{ - {I am looking for a group of men led by someone by the name of Rogorn. Are you him?|rogorn_story_1|rogorn:20||||} - {Just looking for any treasure that might reveal itself here.|rogorn_first_7|||||} - {I am just exploring.|rogorn_first_7|||||} - }|}; -{rogorn_first_7|Well, keep on looking then.|||}; - -{rogorn_story_1|That depends, why do you want to know?|{{0|rogorn|30|}}|{ - {You are wanted by the Feygard patrol for the crimes you have committed.|rogorn_story_2|||||} - {I am seeking to deal justice wherever I can, and I heard that you are in need of being shown some justice.|rogorn_story_3|||||} - {I am sent by some guards over at the Crossroads guardhouse to look for you.|rogorn_story_6|||||} - {The guards from Feygard are looking for you, and I came to warn you.|rogorn_story_12|||||} - }|}; -{rogorn_story_2|Hah! We? Crimes?||{{N|rogorn_story_4|||||}}|}; -{rogorn_story_3|Justice? What would you know of justice, kid?||{{N|rogorn_story_4|||||}}|}; -{rogorn_story_4|If there is someone that deserves punishment, it surely isn\'t us. By the Shadow, it\'s those snobs from Feygard that should be taught a lesson.||{ - {I will not listen to your lies! For Feygard!|rogorn_attack_1|||||} - {Talk all you want, I happen to know that you have stolen from Feygard, which is not acceptable.|rogorn_story_5|||||} - {What\'s your side of the story then?|rogorn_story_r_1|||||} - }|}; -{rogorn_story_5|I tell you, we did not steal anything from those snobs.||{ - {You are still wanted dead by the Feygard patrol. For Feygard!|rogorn_attack_1|||||} - {Why are they looking for you then?|rogorn_story_r_1|||||} - }|}; -{rogorn_attack_1|I had hoped it would not come to this. For the Shadow!|{{0|rogorn|40|}}|{{Let\'s fight!|F|||||}}|}; -{rogorn_story_6|Talked to those guards from Feygard eh? Tell me, what is your opinion of Feygard?||{ - {They seem to have honorable ideals of law and order, and I respect that.|rogorn_story_10|||||} - {Their ideals seem to be a bit oppressive of the people, which I do not like.|rogorn_story_9|||||} - {I have no opinion, I try not to get involved in their business.|rogorn_story_7|||||} - {I have no idea.|rogorn_story_8|||||} - }|}; -{rogorn_story_7|Interesting. But now that you are part of their business by coming here to look for me on their behalf, how does that fit into your unwillingness to take sides?||{ - {I will not listen to your lies! For Feygard!|rogorn_attack_1|||||} - {I was told that you have stolen from Feygard, which is not acceptable.|rogorn_story_5|||||} - {I want to hear your side of the story.|rogorn_story_r_1|||||} - {I am just looking to see if there is some treasure to be gained from this.|rogorn_story_8|||||} - {I have no idea.|rogorn_story_8|||||} - }|}; -{rogorn_story_8|You should make up your mind about what your priorities are. Tell your Feygard friends that we will not be oppressed by them. Shadow be with you, child.|||}; -{rogorn_story_9|You have got that right. They are always trying to make life hard for us little people. Let me tell you my side of the story.||{{N|rogorn_story_r_1|||||}}|}; -{rogorn_story_10|Law and order? What use do we have of that if we are always persecuted by them and do not even have the freedom to live our lives the way we want?||{{N|rogorn_story_11|||||}}|}; -{rogorn_story_11|They are always looking for us, trying to oppress us in some way. Always trying to make our lives a little bit harder.||{{N|rogorn_story_4|||||}}|}; -{rogorn_story_12|Good to hear that there still are some people willing to make a stand against Feygard. Let me tell you my side of the story.||{{N|rogorn_story_r_1|||||}}|}; -{rogorn_story_r_1|Me and my boys here travelled from our home in Nor City to these northern lands a few days ago.||{{N|rogorn_story_r_2|||||}}|}; -{rogorn_story_r_2|We had never been here ourselves. We had only heard stories about how tough the guards from Feygard were, and how they held their precious law above all.||{{N|rogorn_story_r_3|||||}}|}; -{rogorn_story_r_3|Anyway, we got wind of a certain business opportunity here up north. One where we would be on the receiving end of a very profitable deal.||{{N|rogorn_story_r_4|||||}}|}; -{rogorn_story_r_4|So we went here to conduct our business. Shortly thereafter, I guess the guards from Feygard must have been tipped off about us, since we noticed that we were being followed by the guards after a while.||{{N|rogorn_story_r_5|||||}}|}; -{rogorn_story_r_5|Not willing to risk anything, considering the rumors we had heard about the guards from there, we did the only reasonable thing we could do - we abandoned the plan right away and left, before we could conduct the business we had planned.||{{N|rogorn_story_r_6|||||}}|}; -{rogorn_story_r_6|However, something must have upset the guards there anyway. Now we hear that we are accused of murder and theft in Feygard, without even being there ourselves.|{{0|rogorn|35|}}|{ - {What was your business there?|rogorn_story_r_7|||||} - {I will not listen to your lies! For Feygard!|rogorn_attack_1|||||} - {Your story does not add up.|rogorn_story_r_8|||||} - {I believe your story. How can I help you?|rogorn_story_r_9|||||} - }|}; -{rogorn_story_r_7|I can\'t really say. We do our business on behalf of Nor City, and our business is our own.||{ - {I will not listen to your lies! For Feygard!|rogorn_attack_1|||||} - {Your story does not add up.|rogorn_story_r_8|||||} - {I believe your story. How can I help you?|rogorn_story_r_9|||||} - }|}; -{rogorn_story_r_8|What are you, a spy for Feygard? I told you, the accusations against us are false.||{{N|rogorn_attack_1|||||}}|}; -{rogorn_story_r_9|Thank you for listening to our side of the story.||{{What now? I was sent here to find you by some guards in the Crossroads guardhouse.|rogorn_story_r_10|||||}}|}; -{rogorn_story_r_10|You tell those guards that you searched for us, but did not find anyone.|{{0|rogorn|45|}}|{{Will do. Goodbye.|X|||||}}|}; - -{rogorn_toldstory_1|You are back.||{ - {Can you tell me your side of the story again?|rogorn_story_r_1|||||} - {I will not listen to your lies! You must be held accountable for your crimes against Feygard!|rogorn_story_r_8|||||} - {I believe your story. How can I help you?|rogorn_story_r_9|||||} - }|}; -{rogorn_completed_1|Thank you for listening to our side of the story.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{gandoren|||{ - {|gandoren_completed_1|feygard_shipment:81||||} - {|gandoren_completed_1|feygard_shipment:80||||} - {|gandoren_deliver_1|feygard_shipment:25||||} - {|gandoren_20|feygard_shipment:22||||} - {|gandoren_20|feygard_shipment:21||||} - {|gandoren_wantshelp_1|feygard_shipment:20||||} - {|gandoren_noguards_1|feygard_shipment:10||||} - {|gandoren_1|||||} - }|}; -{gandoren_1|Hello there. Welcome to the Crossroads guardhouse. How may I help you?||{ - {You guards seem to have a lot of equipment here, anything to trade?|gandoren_tr_1|||||} - {What do you do here?|gandoren_2|||||} - }|}; -{gandoren_tr_1|I\'m sorry, we only trade with allies of Feygard.|||}; -{gandoren_2|This guardhouse is a safe haven for merchants travelling the Duleian road. We keep law and order around here, for Feygard.||{ - {Any recent events happening?|gandoren_3|||||} - {The Duleian road?|gandoren_dr_1|||||} - }|}; -{gandoren_dr_1|Noticed the large road outside? That\'s the Duleian road. It goes all the way from the glorious city of Feygard up in the northwest down to the wretched Nor City in the southeast.||{{Any recent events happening?|gandoren_3|||||}}|}; -{gandoren_3|Oh sure. Recently, we have had to focus our attention to the troubles up in Loneford.||{{N|gandoren_4|||||}}|}; -{gandoren_4|That situation has forced us to be more alert than usual, and we have had to send some guards up there to help them.||{{N|gandoren_5|||||}}|}; -{gandoren_5|This also means that we cannot focus as much on our usual tasks as we normally do, but instead need help with doing basic tasks just to hold our grounds.|{{0|feygard_shipment|10|}}|{ - {What troubles in Loneford are you referring to?|cr_loneford_st_1|||||} - {Anything I can do to help?|gandoren_6|||||} - }|}; -{gandoren_noguards_1|Hello again. Welcome to the Crossroads guardhouse. How may I help you?||{{Can you tell me again what you told me before about recent events?|gandoren_3|||||}}|}; -{gandoren_6|Well, we usually do not employ just any civilian. Our tasks are important for Feygard - and by extension, important for the people. Our tasks are usually not suited for commoners like you.||{{N|gandoren_7|||||}}|}; -{gandoren_7|But I guess the recent situation really leaves us no choice. We need to keep the guards in Loneford, and we also need to deliver this shipment. At the moment, we cannot do both.||{{N|gandoren_8|||||}}|}; -{gandoren_8|Tell you what, you might be able to help us after all if you are willing to work.||{ - {What is the task?|gandoren_11|||||} - {Anything for the glory of Feygard.|gandoren_9|||||} - {If the pay is sufficient, I guess I can help.|gandoren_10|||||} - {I had better not get involved in your Feygard business.|gandoren_rej_1|||||} - }|}; -{gandoren_9|I\'m glad to hear that.||{{N|gandoren_11|||||}}|}; -{gandoren_10|Pay? Oh, I guess we could pay you.||{{N|gandoren_11|||||}}|}; -{gandoren_11|I need you to take a shipment of equipment to another one of our outposts further south on the Duleian road.||{{N|gandoren_12|||||}}|}; -{gandoren_12|Those outposts further down south are in greater need of equipment than us, them being closer to that wretched Nor City and all.||{{N|gandoren_13|||||}}|}; -{gandoren_13|Take this shipment of 10 iron swords to the guard captain stationed in a tavern called \'The Foaming Flask\', near a village called Vilegard.|{{0|feygard_shipment|20|}}|{ - {No problem. Anything for the glory of Feygard.|gandoren_17|||||} - {You did not mention any amount that I would be paid.|gandoren_18|||||} - {Why should I help you people? I have only heard bad things about Feygard.|gandoren_14|||||} - {I had better not get involved in your Feygard business.|gandoren_rej_1|||||} - }|}; -{gandoren_wantshelp_1|Hello again. Welcome to the Crossroads guardhouse. How may I help you?||{{What was that you told me before about a shipment?|gandoren_6|||||}}|}; -{gandoren_rej_1|I\'m sorry to hear that. Good day to you.|||}; -{gandoren_14|Bad things? Who have you been talking to then? I would urge you to make up your own opinion of Feygard by travelling there yourself.||{{N|gandoren_15|||||}}|}; -{gandoren_15|Personally, I cannot think of a greater place to be than in Feygard. Order is kept and people are friendly.||{{N|gandoren_16|||||}}|}; -{gandoren_16|As to why you would help us, I can only say that Feygard would be grateful for your services if you help us.||{ - {Fine, whatever. I will carry your stupid swords. I still hope there will be some reward for this.|gandoren_19|||||} - {Sounds good to me. Anything for the glory of Feygard.|gandoren_17|||||} - {I had better not get involved in your Feygard business.|gandoren_rej_1|||||} - }|}; -{gandoren_17|Excellent.|{{0|feygard_shipment|21|}}|{{N|gandoren_20|||||}}|}; -{gandoren_18|I cannot promise you any amount on a reward.||{{N|gandoren_16|||||}}|}; -{gandoren_19|Ok then.|{{0|feygard_shipment|22|}}|{{N|gandoren_20|||||}}|}; -{gandoren_20|Here is the shipment that I want you to transport.|{{0|feygard_shipment|25|}{1|feygard_shipment||}}|{{N|gandoren_21|||||}}|}; -{gandoren_21|As I said, you should deliver those 10 iron swords to the guard captain stationed in a tavern called \'The Foaming Flask\', near a village called Vilegard.||{{N|gandoren_22|||||}}|}; -{gandoren_22|Return to me once you are done.||{{N|gandoren_23|||||}}|}; -{gandoren_23|I feel that I should warn you about something also. See that fellow over there in the corner? Ailshara. She seems very interested in our dealings for some reason.||{{N|gandoren_24|||||}}|}; -{gandoren_24|I would urge you to stay away from her at all costs. Whatever you do, do not speak to her about your mission with the shipment.|{{0|feygard_shipment|26|}}||}; - -{gandoren_deliver_1|You return. Good news about the shipment I hope?||{ - {You guards seem to have a lot of equipment here, anything to trade?|gandoren_tr_2|||||} - {I am still working on transporting that shipment.|gandoren_22|||||} - {What was I supposed to do again?|gandoren_21|||||} - {Yes. I have delivered them as you ordered.|gandoren_deliver_y_1|feygard_shipment:50||||} - {Yes. I have delivered them.|gandoren_deliver_n_1|feygard_shipment:60||||} - }|}; -{gandoren_tr_2|I\'m sorry, we only trade with allies of Feygard. Help me with the task I gave you and we might be able to work something out.|||}; -{gandoren_deliver_y_1|Splendid! Feygard is in debt to you.|{{0|feygard_shipment|80|}}|{{N|gandoren_delivered_1|||||}}|}; -{gandoren_deliver_n_1|Splendid! Feygard is in debt to you.|{{0|feygard_shipment|81|}}|{{N|gandoren_delivered_1|||||}}|}; -{gandoren_delivered_1|I hope you managed to stay away from the savages of Nor City as much as possible while being over there.||{{N|gandoren_delivered_2|||||}}|}; -{gandoren_delivered_2|From what I hear, things are rough down south.||{{N|gandoren_delivered_3|||||}}|}; -{gandoren_delivered_3|As for you, you have both my and the rest of the Feygard patrol\'s gratitude for helping us with this.||{{N|gandoren_completed_2|||||}}|}; -{gandoren_completed_1|You return. Thank you for helping with the shipment earlier.||{{N|gandoren_completed_2|||||}}|}; -{gandoren_completed_2|Is there anything I can do for you?||{ - {Do you have anything to trade?|gandoren_tr_3|||||} - {No thanks. Goodbye.|X|||||} - }|}; -{gandoren_tr_3|||{ - {|gandoren_tr_4|rogorn:60||||} - {|gandoren_tr_6|||||} - }|}; -{gandoren_tr_4|Absolutely, as thanks for the help you provided earlier to both Minarra and me, we could agree to trade with you.||{{N|gandoren_tr_5|||||}}|}; -{gandoren_tr_5|Go up in the lookout tower over there and talk to Minarra about equipment. She has our supply.|{{0|nondisplay|18|}}||}; -{gandoren_tr_6|I hear that Minarra up in the lookout tower over there wants help with something. Why don\'t you go up to her and ask her about it, and we might be able to work something out after that.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{ailshara|||{ - {|ailshara_completed_y_1|feygard_shipment:82||||} - {|ailshara_completed_n_1|feygard_shipment:80||||} - {|ailshara_deliver_1|feygard_shipment:35||||} - {|ailshara_interested_1|feygard_shipment:25||||} - {|ailshara_1|||||} - }|}; -{ailshara_completed_y_1|Hello again my Shadow friend. How may I help you?||{{Let me see what you have to trade.|S|||||}}|}; -{ailshara_completed_n_1|Sigh, it\'s you. What do you want?||{{Let me see what you have to trade.|S|||||}}|}; -{ailshara_1|Psst, hey. Interested in doing some trading? I am always looking for acquiring.. well, items of others..||{ - {Sure, let me see what you have.|S|||||} - {Items of others?|ailshara_2|||||} - }|}; -{ailshara_2|Oh yes. You see, these Feygard patrol guards carry some really interesting things. They don\'t seem to care much if some of their shipments.. well, disappear.||{ - {Ok, let me see what you have.|S|||||} - {I should really not get involved in this. Goodbye.|X|||||} - }|}; -{ailshara_interested_1|Psst, hey you! I saw you talking to Gandoren over there, and I happened to notice that you exchanged some items. Anything interesting?||{ - {Never mind that, let me see what you have to trade.|S|||||} - {I better not talk about it.|ailshara_interested_2|||||} - {Gandoren specifically asked me not to talk to you about it.|ailshara_interested_2|||||} - {Yes, Gandoren wants me to deliver some equipment for Feygard. Do you want a part of the deal?|ailshara_interested_4|||||} - }|}; -{ailshara_interested_2|Hah, of course. Gandoren would not like it if I were to get a glimpse into his business. I assume you are helping him deliver those items somewhere. Tell me this, what did he promise you in return? Gold? Honor? No?||{ - {Now that you mention it, he didn\'t actually say there would be a reward.|ailshara_interested_3|||||} - {I am doing this for the glory of Feygard.|ailshara_fg_1|||||} - {Helping Feygard seems like the right thing to do.|ailshara_fg_1|||||} - {What would you propose instead?|ailshara_interested_4|||||} - }|}; -{ailshara_interested_3|As usual, Feygard keeps all its riches to itself. What if I were to tell you there was a way for you to gain from all this as well?||{ - {Sounds interesting, please go on.|ailshara_interested_4|||||} - {I have no problem helping Feygard without any personal gain.|ailshara_fg_1|||||} - {I better not get involved in this, goodbye.|X|||||} - }|}; -{ailshara_fg_1|By the Shadow, you sound like one of those deceptive snobs from Feygard.||{{N|ailshara_fg_2|||||}}|}; -{ailshara_fg_2|Shadow help you, child. You should question yourself whether you really are making the right choice here.|||}; -{ailshara_interested_4|Let me tell you my plan. As you might know, everyone believes there will be some coming conflict between the deceptive snobs of Feygard and the glorious people of Nor City.||{{N|ailshara_interested_5|||||}}|}; -{ailshara_interested_5|Any help we can bring to Nor City in this matter is welcome. These items that Gandoren gave you would be useful to our people in the southern lands.|{{0|feygard_shipment|30|}}|{{N|ailshara_interested_6|||||}}|}; -{ailshara_interested_6|These items, if you were to deliver them to our allies down in Vilegard, then the Shadow would look favorably upon you.||{{N|ailshara_interested_7|||||}}|}; -{ailshara_interested_7|This way, the people could get back some piece of the riches that Feygard has stolen from all of us.||{{N|ailshara_interested_8|||||}}|}; -{ailshara_interested_8|If you indeed are walking in the Shadow, then deliver these items to the smith in Vilegard. He will be able to make good use of them. He might also have some other task for you.|{{0|feygard_shipment|35|}}|{ - {I will see what I can do.|ailshara_interested_9|||||} - {No. I will help Feygard instead.|ailshara_fg_1|||||} - {Whatever, I choose my own path.|ailshara_interested_9|||||} - }|}; -{ailshara_interested_9|Shadow be with you. May the Shadow guide you on the clouded paths that you walk.|||}; -{ailshara_deliver_1|Hello again. Did you deliver those items to the smith in Vilegard?||{ - {Yes, it is done.|ailshara_deliver_2_s|feygard_shipment:55||||} - {Never mind that, let me see what you have to trade.|S|||||} - {No. I will help Feygard instead.|ailshara_fg_1|||||} - {Can you tell me again what I was supposed to do?|ailshara_interested_4|||||} - {Not yet.|ailshara_interested_9|||||} - }|}; -{ailshara_deliver_2_s|||{ - {|ailshara_deliver_3|feygard_shipment:81||||} - {|ailshara_deliver_2|||||} - }|}; -{ailshara_deliver_2|Good. You should also try to convince Gandoren into thinking that you helped him.|||}; -{ailshara_deliver_3|Excellent! You do indeed walk with the Shadow my friend. I am glad to hear that there are at least a few decent folk still around.|{{0|feygard_shipment|82|}}|{{N|ailshara_delivered_1|||||}}|}; -{ailshara_delivered_1|Your help will be most appreciated by the people of Nor City, and you will be welcome among us.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{vilegard_smith_fg_1|Oh, this is most unexpected but very welcome. I will not question how you acquired these items, but instead express my gratitude for bringing them to me.|{{0|feygard_shipment|55|}}|{{N|vilegard_smith_fg_2|||||}}|}; -{vilegard_smith_fg_2|Thank you for bringing me these items, they will be most useful to us here in the southern lands, and Vilegard in particular. We rarely get our hands on Feygard items, so these are really welcome.||{ - {I was sent to deliver these items to a Feygard patrol stationed in the Foaming Flask tavern.|vilegard_smith_fg_3|||||} - }|}; -{vilegard_smith_fg_3|Instead, you brought them to me. You have my thanks.||{{N|vilegard_smith_fg_4|||||}}|}; -{vilegard_smith_fg_4|Hah, this means that we have another opportunity here. What if you were to deliver some other items to the Feygard patrol instead? Hah, this will really make my day.||{{N|vilegard_smith_fg_5|||||}}|}; -{vilegard_smith_fg_5|I might have something that will do just fine.. Let me just find them.||{{N|vilegard_smith_fg_6|||||}}|}; -{vilegard_smith_fg_6|Here they are. Ha ha, these will do just fine for those deceiving Feygard snobs.||{{N|vilegard_smith_fg_7|||||}}|}; -{vilegard_smith_fg_7|Take these items and deliver them to wherever you were supposed to deliver the items you gave me.|{{0|feygard_shipment|56|}{1|vg_smith_fg_items||}}||}; - -{ff_captain_vg_items_1||{{0|feygard_shipment|60|}}|{{|ff_captain_items_1|||||}}|}; -{ff_captain_fg_items_1||{{0|feygard_shipment|50|}}|{{|ff_captain_items_1|||||}}|}; -{ff_captain_items_1|Excellent, I have been waiting for these. Thank you for bringing them to me.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{gallain|Welcome to the Crossroads guardhouse. I am Gallain, the proprietor of this place.||{{N|gallain_1|||||}}|}; -{gallain_1|How may I help you?||{ - {Do you have anything to eat around here?|gallain_trade_1|||||} - {Is there any place I can rest here?|gallain_rest_1|||||} - {What is this place?|gallain_cr_1|||||} - }|}; -{gallain_cr_1|As I said, this is the Crossroads guardhouse. The guards from Feygard are using this place as a place to rest and gear up.||{{N|gallain_cr_2|||||}}|}; -{gallain_cr_2|Because of this, it is also a safe haven for merchants travelling through here. We get a lot of those.||{{N|gallain_1|||||}}|}; -{gallain_trade_1|Here, have a look.||{{Trade|S|||||}}|}; -{gallain_rest_1|The guards have set up some beds downstairs. Go check with them.||{{N|gallain_1|||||}}|}; - -{celdar|And who might you be? Come to sell me one of those trinkets that you people sell, eh?||{{N|celdar_1|||||}}|}; -{celdar_1|No, let me guess - you want to know if I have any items to trade?||{{N|celdar_2|||||}}|}; -{celdar_2|Let me tell you something son. I do not want to buy anything from you, nor do I want to sell you anything. I just want to be left alone here, now that I have made it all the way to this safe haven.||{{N|celdar_3|||||}}|}; -{celdar_3|I have travelled all the way from my home town of Sullengard, and on my way to Brimhaven, I have stopped at this place to get a break from all the commoners that always bother me with their trinkets and whatnots.||{{N|celdar_4|||||}}|}; -{celdar_4|So, if you will excuse me, I really need my well deserved rest here. Without you bothering me.||{ - {Ok, I will leave.|X|||||} - {Wow, you\'re the friendly type aren\'t you?|celdar_5|||||} - {I should put my sword through you for talking like that.|celdar_5|||||} - }|}; -{celdar_5|Are you still around? Did you not listen to what I said?|||}; - -{crossroads_guest|Did you hear about what happened up in Loneford? The guards seem like a bunch of angry bees about it.|||}; - - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{crossroads_sleepguard|||{ - {|crossroads_sleepguard_2|nondisplay:17||||} - {|crossroads_sleepguard_1|||||} - }|}; -{crossroads_sleepguard_1|Hello there. Can I help you?||{ - {No. Goodbye.|X|||||} - {Mind if I use one of the beds over there?|crossroads_sleepguard_3|||||} - }|}; -{crossroads_sleepguard_2|Hello again. I hope the bed is comfortable enough. Use it as much as you like.|||}; -{crossroads_sleepguard_3|||{ - {|crossroads_sleepguard_5|farrik:90||||} - {|crossroads_sleepguard_4|||||} - }|}; -{crossroads_sleepguard_4|No, sorry. These beds are for guards and allies of Feygard only.|||}; -{crossroads_sleepguard_5|Say, aren\'t you that kid that helped the guards down in Fallhaven? With the thieves that were planning an escape?||{{Yes, I helped the guards in the prison find out about some plans that the thieves had.|crossroads_sleepguard_6|||||}}|}; -{crossroads_sleepguard_6|I knew I had heard about you somewhere. You are always welcome by us guards. You can use that second bed over there to the left if you need to rest.|{{0|nondisplay|17|}}||}; - -{crossroads_backguard|Uh, hello.||{{Hello. What\'s back there?|crossroads_backguard_1|||||}}|}; -{crossroads_backguard_1|Back there? Oh, nothing.||{{Ok, never mind then.|X|||||}{But there\'s a hole in the wall there. Where does it lead?|crossroads_backguard_2|||||}}|}; -{crossroads_backguard_2|Lead? Oh nowhere. Nothing back there at all.||{{Ok, never mind then.|X|||||}{There\'s something you are not telling me.|crossroads_backguard_3|||||}}|}; -{crossroads_backguard_3|Oh no, no. Nothing interesting here. Move along now.||{{Ok, never mind then.|X|||||}{How about I pay you 100 gold to move out of the way?|crossroads_backguard_4|||||}}|}; -{crossroads_backguard_4|You would do that? Hm, let me think.||{{N|crossroads_backguard_5|||||}}|}; -{crossroads_backguard_5|No.||{{Ok, never mind then.|X|||||}{200 gold then?|crossroads_backguard_6|||||}}|}; -{crossroads_backguard_6|No.||{{Ok, never mind then.|X|||||}{400 gold then?|crossroads_backguard_7|||||}}|}; -{crossroads_backguard_7|Look, you are not getting back there, and there is nothing to see back there.||{{Ok, never mind then.|X|||||}{Ok, final offer, 800 gold? That\'s a fortune.|crossroads_backguard_8|||||}}|}; -{crossroads_backguard_8|Hm, 800 gold you say? Well, why didn\'t you say so from the start? Sure, that could work.||{{N|crossroads_backguard_9|||||}}|}; -{crossroads_backguard_9|I should tell you however, that there is something in there that we won\'t dare go near. I just guard here to make sure it doesn\'t get out, and that no one goes in.||{{N|crossroads_backguard_10|||||}}|}; -{crossroads_backguard_10|Some other guards went in there earlier, and came back screaming. Enter at your own risk, but don\'t say I didn\'t warn you.||{{Never mind, I was just kidding.|X|||||}{Here is the gold, now get out of the way.|R||gold|800|0|}}|}; - -{keknazar|*hssss*\n(You hear squishing sounds as the creature starts moving towards you)||{{For the Shadow!|F|||||}{You will not survive this, you pathetic creature.|F|||||}{A fight! I have been looking forward to this!|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{feygard_bridgeguard|Sorry, the road to Feygard is closed until further notice.|||}; -{sign_crossroadshouse|Crossroads guardhouse, housing for allies of Feygard.|||}; -{sign_crossroads_s|Southeast: Nor City\nNorthwest: Feygard\nEast: Loneford\nSouth: Fallhaven|||}; -{sign_crossroads_n|Northwest: Feygard\nEast: Loneford.|||}; -{sign_fields1|Northwest: Feygard\nEast: Loneford.|||}; -{sign_fields6|Northwest: Feygard\nSouth: Nor City.|||}; -{crossroads_sleep|The guard shouts at you: Hey! You cannot sleep here!|||}; -{sign_loneford2|Welcome to peaceful Loneford.\n(The sign also contains a drawing of a bale of hay with what looks like a farmer sitting on top.)|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{loneford_farmer0|What have we done to deserve this?||{{What\'s wrong?|loneford_farmer0_1|||||}}|}; -{loneford_farmer0_1|Didn\'t you hear about the illness?||{{What illness?|loneford_farmer_il_1|||||}}|}; - -{loneford_farmer_il_1|It all started a few days ago. Selgan found Hesor passed out on his old crop field, completely white faced and shivering.||{{N|loneford_farmer_il_2|||||}}|}; -{loneford_farmer_il_2|A few days later, Selgan started showing the same symptoms as Hesor, with stomach aches. I also started feeling the pains and got the shivers.||{{N|loneford_farmer_il_3|||||}}|}; -{loneford_farmer_il_3|Then, all people showed the symptoms in one way or another.||{{N|loneford_farmer_il_4|||||}}|}; -{loneford_farmer_il_4|Poor old Selgan and Hesor apparently got the worst of it, and both died the day before yesterday.||{{N|loneford_farmer_il_5|||||}}|}; -{loneford_farmer_il_5|Cursed illness, why did it have to be Selgan and Hesor? I wonder who is next.||{{N|loneford_farmer_il_6|||||}}|}; -{loneford_farmer_il_6|We all started to investigate what could be the cause. We still aren\'t certain what the cause is, but we have our suspicions.|{{0|loneford|10|}}|{{N|loneford_farmer_il_7|||||}}|}; -{loneford_farmer_il_7|Luckily, now Feygard has sent patrols up here to help guard the village at least. We are still suffering though, and we fear who will be taken by the illness next.|{{0|loneford|11|}}||}; - -{loneford_wellguard|Please report any suspicious behavior you might see to Kuldan.|||}; - -{rolwynn|What have we done to deserve this? Please, will you help us?||{ - {What do you think is the cause of the illness?|rolwynn_1|loneford:11||||} - {What\'s wrong?|loneford_farmer0_1|||||} - }|}; -{rolwynn_1|My guess is that this must be something done by those arrogant people from Feygard.||{{N|rolwynn_2|||||}}|}; -{rolwynn_2|They are always looking for ways to make our lives a little bit harder.||{{N|rolwynn_3|||||}}|}; -{rolwynn_3|We try to farm our lands to feed ourselves, but they demand that they get a share of whatever we bring in.||{{N|rolwynn_4|||||}}|}; -{rolwynn_4|Lately, the crops haven\'t been as good as they used to be, and the guards apparently think we are withholding some part of their share.||{{N|rolwynn_5|||||}}|}; -{rolwynn_5|I am sure that they did something to us as punishment for not following their *rules*. They are always talking about how the laws and rules are so precious to them.|{{0|loneford|22|}}|{{N|loneford_ill_c_1|||||}}|}; - -{loneford_ill_c_1|||{{|loneford_ill_c_2|loneford:21||||}{|loneford_ill_c_n|||||}}|}; -{loneford_ill_c_2|||{{|loneford_ill_c_3|loneford:22||||}{|loneford_ill_c_n|||||}}|}; -{loneford_ill_c_3|||{{|loneford_ill_c_4|loneford:23||||}{|loneford_ill_c_n|||||}}|}; -{loneford_ill_c_4|||{{|loneford_ill_c_5|loneford:24||||}{|loneford_ill_c_n|||||}}|}; -{loneford_ill_c_n|That\'s what I think anyway.|||}; -{loneford_ill_c_5|There\'s something else also. I talked to that drunk, Landa, in the tavern earlier today. He said he saw something but didn\'t dare tell me what it was.|{{0|loneford|25|}}|{ - {Thank you, I will go talk to him.|X|||||} - {Great, another drunk that I have to talk to.|X|||||} - }|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{loneford_guard0|We keep the order around here. I wonder what the people of Loneford would do without us guards from Feygard. Poor things.|||}; -{loneford_villager0|*cough* Please help us, soon there won\'t be many left of us!||{{What\'s wrong?|loneford_farmer0_1|||||}}|}; -{loneford_villager1|I can\'t feel my face anymore, please help us!||{{What\'s wrong?|loneford_farmer0_1|||||}}|}; -{loneford_villager2|Don\'t disturb me, I need to finish chopping this wood. Go bother someone else.|||}; -{loneford_villager3|I fear for our survival. It seems we are getting worse every day that passes. It\'s a good thing Feygard helps us at least.||{{What\'s wrong?|loneford_farmer0_1|||||}}|}; -{loneford_villager4|Don\'t I know you from somewhere? You look familiar somehow.|||}; - -{landa|||{ - {|landa_already_1|loneford:35||||} - {|landa_1|||||} - }|}; -{landa_1|Wha? You!? No, get away from me!||{{I heard that you saw something that you won\'t talk about.|landa_2|loneford:25||||}}|}; -{landa_2|(Landa gives you a terrified look)||{{N|landa_3|||||}}|}; -{landa_3|You were there! I ssssaw you!||{{N|landa_4|||||}}|}; -{landa_4|Or was it you? No, it looked like you, and I have a good memory! *bites lip*||{{Calm down.|landa_5|||||}}|}; -{landa_5|Get away from me, whatever you did over there, it\'s your business and I don\'t want any trouble!||{{You must have me confused with someone else.|landa_6|||||}}|}; -{landa_6|Please don\'t hurt me!||{{Landa, you must have me confused with someone else! What was it you saw?|landa_7|||||}}|}; -{landa_7|No, you are smaller than him.||{{Are you going to tell me what it was you saw?|landa_8|||||}}|}; -{landa_8|The boy. He was doing something. I tried to sneak up closer to see what it was he was doing, I did. But he ran away before I could see.||{{N|landa_9|||||}}|}; -{landa_9|He did something by the well here in Loneford.||{{When was this?|landa_10|||||}}|}; -{landa_10|It was in the middle of the night, on the day before everything started. The day after, I was sleeping it off during the day, so I didn\'t notice all the turmoil about when they brought Hesor back.||{{N|landa_11|||||}}|}; -{landa_11|Almost the whole village wanted to see what had happened to Hesor. I kept to myself and didn\'t dare talk to anyone.|{{0|loneford|30|}}|{{N|landa_12|||||}}|}; -{landa_12|The same day, others started to get pale as well. I could see it in their faces.||{{N|landa_13|||||}}|}; -{landa_13|The following night, I was getting ready to go to the well myself to look for any traces of what the boy had done.||{{N|landa_14|||||}}|}; -{landa_14|I peeked out the window to see if there was anyone that might see me. Instead, I saw someone skulking around the well, filling up several vials with both dirt around the well, and water from the well itself.||{{N|landa_15|||||}}|}; -{landa_15|I am sure it was Buceth, from the chapel. I have a good eye for people, and a good memory. Yes, I am sure it was Buceth.||{{N|landa_16|||||}}|}; -{landa_16|Also, isn\'t it strange how Buceth has not gotten ill, while all the others in the village has gotten ill?|{{0|loneford|31|}}|{{N|landa_17|||||}}|}; -{landa_17|He must be up to something. He and that boy that looked like you. Are you sure it wasn\'t you?|{{0|loneford|35|}}|{{N|landa_18|||||}}|}; -{landa_18|Never mind. Please don\'t tell anyone that I told you all this.||{{N|landa_19|||||}}|}; -{landa_19|Now, get out of here kid, before anyone sees you talking to me. *Looks around anxiously*||{ - {Thank you Landa. Your secret is safe with me.|X|||||} - {Thank you Landa. I\'ll consider it.|X|||||} - {Are you done? Phew, I thought you were never going to stop talking.|X|||||} - }|}; -{landa_already_1|You again? I already told you. Get out of here before anyone sees you talking to me.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{buceth|||{ - {|buceth_complete_1|loneford:60||||} - {|buceth_fight_1|loneford:50||||} - {|buceth_story_3|loneford:45||||} - {|buceth_follow_1|loneford:42||||} - {|buceth_bribed_1|loneford:41||||} - {|buceth_1|||||} - }|}; -{buceth_bribed_1|You again. Thank you for the gold earlier.||{{N|buceth_story_1|||||}}|}; -{buceth_follow_1|Welcome back my friend. Walk with the Shadow.||{{N|buceth_story_1|||||}}|}; -{buceth_1|Shadow be with you.||{ - {I know of your business at the well the night after the illness broke out.|buceth_2|loneford:35||||} - {Can you tell me more about the Shadow?|priest_shadow_1|||||} - }|}; -{buceth_2|Oh, I am sure you do. But what proof do you have, eh? Anything the guards would believe?||{{N|buceth_3|||||}}|}; -{buceth_3|Let me ask you something first, and we might talk after that.||{ - {Ok, what?|buceth_4|||||} - {How about some gold, would that make you talk?|buceth_gold_1|||||} - }|}; -{buceth_4|Let me start by telling you a story.||{ - {Go ahead|buceth_5|||||} - {Let me guess, this story is going to take forever to listen to. How about I give you some gold, and instead we can discuss what you were doing at the well.|buceth_gold_1|||||} - }|}; -{buceth_gold_1|Hm, that might be an interesting proposal. How much gold are you suggesting?||{ - {Here\'s 10 gold, take it.|buceth_gold_no||gold|10|0|} - {Here\'s 100 gold, take it.|buceth_gold_no||gold|100|0|} - {Here\'s 250 gold, take it.|buceth_gold_no||gold|250|0|} - {Here\'s 500 gold, take it.|buceth_gold_no||gold|500|0|} - {Here\'s 1000 gold, take it.|buceth_gold_yes||gold|1000|0|} - {Here\'s 2000 gold, take it.|buceth_gold_yes||gold|2000|0|} - }|}; -{buceth_gold_no|Hrmpf. Thanks for the gold, but I am not interested in talking to you. Now, please leave.|||}; -{buceth_gold_yes|You seem to realize the true value of the Shadow. Yes, this will do fine, thank you.|{{0|loneford|41|}}|{{N|buceth_story_1|||||}}|}; -{buceth_5|Let\'s assume you live in a village that, for the most part, keeps to itself. Your village is self-sustainable and the crops have been good for some years.||{{N|buceth_6|||||}}|}; -{buceth_6|With the few exceptions of some fights here and there between villagers because of misunderstandings, on the whole, your village is a friendly, peaceful village.||{{N|buceth_7|||||}}|}; -{buceth_7|You work in the same profession as your parents, which in turn worked in the same professions as their parents.||{{N|buceth_8|||||}}|}; -{buceth_8|Let\'s also assume that the way you conduct your business is the same way that the people in the village have been conducting their business for generations past.||{{N|buceth_9|||||}}|}; -{buceth_9|Everyone respects one another in the village, and your appointed leader does a good job at keeping everyone\'s interests satisfied, while at the same time being reasonably fair.||{{N|buceth_10|||||}}|}; -{buceth_10|Then, one day, a group of men come walking into the village. Shining armour, white teeth, combed hair, trimmed beards.||{{N|buceth_11|||||}}|}; -{buceth_11|The men claim that their lord owns this land, including your village.||{{N|buceth_12|||||}}|}; -{buceth_12|They claim that they keep the land safe of wrongdoers and evil creatures.||{{N|buceth_13|||||}}|}; -{buceth_13|For their help in protecting your village, they ask that the village compensate them with a share of the harvest.||{{N|buceth_14|||||}}|}; -{buceth_14|Now, tell me. Would you support those men by agreeing to their terms?||{ - {Yes|buceth_15|||||} - {No|buceth_15|||||} - {I don\'t know|buceth_dontknow|||||} - }|}; -{buceth_dontknow|I am sorry to hear that. You should make up your mind and return to me once you have done so. Then we might be able to talk more.||{ - {Ok, goodbye.|X|||||} - {How about I give you some gold instead?|buceth_gold_1|||||} - }|}; -{buceth_15|How interesting.||{{N|buceth_16|||||}}|}; -{buceth_16|Let me continue the story of our hypothetical case.||{{N|buceth_17|||||}}|}; -{buceth_17|A while later, the men return. They explain that some of the methods that are used in the village have now been prohibited across the whole land.||{{N|buceth_18|||||}}|}; -{buceth_18|Without going into specifics, let\'s say that these are methods that have been used for past generations in your village.||{{N|buceth_19|||||}}|}; -{buceth_19|Changing the way things are done without these methods will require quite an effort. A lot of people in the village are upset because of this news from the men.||{{N|buceth_20|||||}}|}; -{buceth_20|Now, tell me. Would you in secret continue using the old methods your past generations have used, or would you instead convert to the way that the men are advocating?||{ - {I would continue using the old ways in secret.|buceth_21_1|||||} - {I would continue using the old ways, and fight the ruling that prohibited them in the first place.|buceth_21_2|||||} - {I would only use the methods that are allowed.|buceth_22|||||} - {I would follow the law.|buceth_22|||||} - {I can\'t decide without knowing the specifics.|buceth_dontknow|||||} - }|}; -{buceth_21_1|How interesting.||{{N|buceth_25|||||}}|}; -{buceth_21_2|I am glad to hear that there are people still around that are willing to stand up for what is right.||{{N|buceth_25|||||}}|}; -{buceth_22|How interesting. You have a different view of the world than what I and the priests of Nor City have.||{{N|buceth_23|||||}}|}; -{buceth_23|You are of course entitled to your opinion, but you should know that your opinion might conflict with the Shadow.||{{N|buceth_24|||||}}|}; -{buceth_24|You wanted to know about some business that you accuse me of. Since you have no proof, I will claim innocence. I know that my conscience is clean.||{ - {Ok, goodbye.|X|||||} - {Fine. How about I give you some gold instead, would that make you talk?|buceth_gold_1|||||} - }|}; -{buceth_25|Your views match those that I and the other priests from Nor City believe in. Tell me, would you be interested in following the glow of the Shadow?||{ - {I am ready to follow the Shadow.|buceth_27|||||} - {How can I agree to something without knowing what it entails?|buceth_26|||||} - {No, I will go my own way.|buceth_decline|||||} - {No, I will go my own way. Your stupid Shadow is nothing but talk and fancy words.|buceth_decline|||||} - }|}; -{buceth_26|If the answers you gave previously were indeed your views, then I can assure you that the path that is guided by the Shadow is the right one.||{ - {I am ready to follow the Shadow.|buceth_27|||||} - {No, I will go my own way.|buceth_decline|||||} - {No, I will go my own way. Your stupid Shadow is nothing but talk and fancy words.|buceth_decline|||||} - }|}; -{buceth_decline|I am sorry to hear that. I guess we do not share views after all.||{{N|buceth_24|||||}}|}; -{buceth_27|I am glad to hear that, but then again, I had a feeling all along that you would say that.|{{0|loneford|42|}}|{{N|buceth_story_1|||||}}|}; - -{buceth_story_1|You wanted to ask me something?||{{What were you doing at the well during the night?|buceth_story_2|||||}}|}; -{buceth_story_2|Let me first tell you my background.||{ - {Great. Another endless story.|buceth_story_3|||||} - {Please go ahead.|buceth_story_3|||||} - }|}; -{buceth_story_3|I am appointed by the priests of Nor City to help guide the people of Loneford towards the Shadow. Our mission is to see that the Shadow casts its glow over Loneford as well as other settlements around here.||{{N|buceth_story_4|||||}}|}; -{buceth_story_4|Most folk in these northern parts seem too occupied with obeying the will of Feygard and Lord Geomyr. We want to help people see the light of the wrongdoings that Feygard advocates, and to point out the errors in their ways.||{{N|buceth_story_5|||||}}|}; -{buceth_story_5|That\'s my mission here. To see that the Shadow casts its glow over Loneford.||{{How does this relate to what you were doing at the well?|buceth_story_6|||||}}|}; -{buceth_story_6|Nor City sent word to me that something was about to happen here in Loneford. Something that would help our cause.||{{N|buceth_story_7|||||}}|}; -{buceth_story_7|They were sending a boy to do some business here, and I was assigned to make sure that the mission was successful.|{{0|andor|61|}}|{{N|buceth_story_8|||||}}|}; -{buceth_story_8|I was tasked with gathering samples from the water in the well and from the ground around the well. Also, I was given some vials whose contents should be poured into the well.||{{N|buceth_story_9|||||}}|}; -{buceth_story_9|Apparently, the boy they sent was successful in his mission. The task that I did was also successful, if I may say so myself.|{{0|loneford|45|}}|{{N|buceth_story_10|||||}}|}; -{buceth_story_10|So, currently, that\'s where we stand now. The deed is done, and the Shadow will look favorably upon us.||{ - {So, the well was poisoned, that\'s horrible. How could you?|buceth_story_11|||||} - {Thank you for telling me.|buceth_story_12|||||} - }|}; -{buceth_story_11|Horrible!? What is horrible? What those people from Feygard are doing - that\'s what\'s horrible!||{{N|buceth_story_12|||||}}|}; -{buceth_story_12|Now, I ask you to keep this story just between us two. You understand that, right?||{ - {Absolutely. Walk with the Shadow.|buceth_story_14|||||} - {I promise not to tell anyone.|buceth_story_14|||||} - {No, I will report you to the guard.|buceth_story_13|||||} - }|}; -{buceth_story_13|I urge you to rethink your reasoning. The way of the Shadow is the righteous way.||{ - {Very well. I promise not to tell anyone.|buceth_story_14|||||} - {No. Your crimes will be punished!|buceth_fight_1|||||} - }|}; -{buceth_fight_1|Infidel, you will not defeat me! For the Shadow!|{{0|loneford|50|}}|{{Fight!|F|||||}}|}; -{buceth_story_14|Thank you, my friend.|{{0|loneford|60|}}|{{N|buceth_story_15|||||}}|}; -{buceth_story_15|If you want to learn more about the Shadow, please visit the chapel custodian in Nor City. Tell them I sent you, and they will surely extend their gratitude towards you.|{{0|loneford|60|}}||}; -{buceth_complete_1|Welcome back my friend. May you bask in the glow of the Shadow.||{{N|buceth_story_15|||||}}|}; - - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{talion|||{ - {|talion_0|maggots:51||||} - {|talion_cured_1|maggots:50||||} - {|talion_cure_5|maggots:45||||} - {|talion_infect_30|maggots:30||||} - {|talion_infect_1|maggots:10||||} - {|talion_0|||||} - }|}; -{talion_0|Shadow be with you.||{ - {Do you know anything about the illness here in Loneford?|talion_1|loneford:11||||} - {Do you have anything to trade?|S|||||} - {What blessings can you provide?|talion_bless_1|maggots:51||||} - }|}; -{talion_1|The people of Loneford are very keen on following the will of Feygard, whatever it may be.||{{N|talion_2|||||}}|}; -{talion_2|Normally, this would not be a problem. But Lord Geomyr seems to have something against the Shadow. He will do almost anything to oppose all actions that in some way extend the reach of the Shadow.||{{N|talion_3|||||}}|}; -{talion_3|Because of this, the people of Loneford are now actively abolishing the thought of the Shadow guiding them through their lives.||{{N|talion_4|||||}}|}; -{talion_4|People around here would rather follow the law of Feygard than follow the old ways.||{{N|talion_5|||||}}|}; -{talion_5|My feeling is that this illness is caused by the Shadow, as punishment to all of us here in Loneford.|{{0|loneford|23|}}|{{N|loneford_ill_c_1|||||}}|}; - - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{taevinn|Please, you must help us!||{ - {Do you know anything about the illness?|taevinn_1|loneford:11||||} - {What\'s wrong?|loneford_farmer0_1|||||} - }|}; -{taevinn_1|I\'ll tell you what I know. We try to follow the law around here. Without rules and laws, how would we be any different from the savages that roam the southern lands?||{{N|taevinn_2|||||}}|}; -{taevinn_2|But even if we here in Loneford keep as peaceful as possible, there\'s always someone that has a desire to cause mischief.||{{N|taevinn_3|||||}}|}; -{taevinn_3|Have you seen him? That fool Sienn. Him and his \'pet\' are always trying to cause some trouble. We can\'t have that around here in our friendly village. Especially not in times like these when we are trying to show our good side to those magnificent guards from Feygard that are here.||{{N|taevinn_4|||||}}|}; -{taevinn_4|Did you know I tried to talk to him on several occasions about his so called \'pet\'? I couldn\'t really make out what he was trying to tell me, but that thing of his nearly tried to kill me, it did!||{{N|taevinn_5|||||}}|}; -{taevinn_5|I tell you, there\'s mischief all around him and that thing he keeps around. I am sure they are up to something. They probably caused this illness somehow. Maybe we caught something contagious from that thing of his that he keeps around?|{{0|loneford|24|}}|{{N|loneford_ill_c_1|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{kuldan|||{ - {|kuldan_c_1|loneford:55||||} - {|kuldan_bc_1|loneford:54||||} - {|kuldan_1|||||} - }|}; -{kuldan_1|Please report any suspicious behavior you might see.||{ - {I know what the cause of the illness is. Have a look at this vial that Buceth had on him.|kuldan_bc_1|loneford:50|buceth_vial|1|0|} - {Who are you?|kuldan_2|||||} - }|}; -{kuldan_2|I am Kuldan, captain of this here detachment of guards in Loneford. Now, if you will excuse me, I have work to do.|||}; -{kuldan_c_1|Feygard is grateful for your assistance in solving the mystery of the illness here in Loneford.||{{N|kuldan_c_2|||||}}|}; -{kuldan_c_2|We are trying to help the last few people that are still ill here now. Loneford might require our assistance from Feygard for quite some time.|||}; -{kuldan_bc_1|What is this? This smells like Narwood poison. You say you retrieved this from Buceth?|{{0|loneford|54|}}|{{Buceth was part of a mission by the Nor City priests to poison the water well here in Loneford.|kuldan_bc_2|||||}}|}; -{kuldan_bc_2|But this means.. It is the water that the people are getting ill from? This explains a lot of things.||{{N|kuldan_bc_3|||||}}|}; -{kuldan_bc_3|You my friend have done Loneford a great service by finding this, and by extension, Feygard as well. We should go catch Buceth for what he has done.||{{He is already dead|kuldan_bc_4|||||}}|}; -{kuldan_bc_4|Dead you say? Hm, not quite the way we do things in Feygard, but I guess this is an exceptional case.||{{N|kuldan_bc_5|||||}}|}; -{kuldan_bc_5|I always suspected that those savages from Nor City were behind this all along.||{{N|kuldan_bc_6|||||}}|}; -{kuldan_bc_6|It\'s good to know that we now at least have some evidence to back up our claims.||{{N|kuldan_bc_7|||||}}|}; -{kuldan_bc_7|As for Loneford, I guess we will have to start bringing in water from Feygard to help the people here. Good thing they have us around, what would they do otherwise?||{{N|kuldan_bc_8|||||}}|}; -{kuldan_bc_8|And you, my friend - you should of course be sufficiently rewarded for your assistance in this matter. You should travel to the glorious city of Feygard to the northwest and report to the castle steward there for further instructions.||{{N|kuldan_bc_9|||||}}|}; -{kuldan_bc_9|I happen to know the castle steward personally, and I will send word to him about your help here.||{{N|kuldan_bc_10|||||}}|}; -{kuldan_bc_10|For the glory of Feygard, the people of Loneford may live on thanks to your help.|{{0|loneford|55|}}||}; - -{kuldan_guard|What? Talk to the boss.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{sienn|Ha! You look funny. You small.||{ - {Who are you?|sienn_who_1|||||} - {What is that thing you are keeping around?|sienn_pet_1|||||} - }|}; -{sienn_who_1|Me, Sienn. I strong!||{ - {What is that thing you are keeping around?|sienn_pet_1|||||} - }|}; -{sienn_pet_1|Pet, cute!\n(Sienn makes cuddly sounds while scratching the pet under its chin.)||{ - {Who are you?|sienn_who_1|||||} - {Did you know that Taevinn thinks you caused the illness here in Loneford?|sienn_pet_2|loneford:24||||} - }|}; -{sienn_pet_2|Sienn not ill! Sienn strong!|||}; -{sienn_pet|*Shriek!*\n(The creature looks up at you, showing all its teeth, while making a high-pitched piercing sound.)||{ - {There, there. Easy now.|X|||||} - {*slowly back away*|X|||||} - }|}; - -{siola|Hello there. Have you come to browse my selection of items?||{ - {Yes, let\'s trade.|S|||||} - {What\'s the deal with Sienn over there with his pet?|siola_sienn_1|||||} - }|}; -{siola_sienn_1|I don\'t know where he got it from. Anyway, they don\'t harm anyone, so I\'m fine with them being in here. I figured someone should help them have some place to stay, and no one else wanted to help them, so I let them stay here.||{{N|siola_sienn_2|||||}}|}; -{siola_sienn_2|Sienn may be a bit thick, but he sure can be funny when you get to know him and he trusts you. He can do a lot of those hilarious facial expressions.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{grimion|Hello and welcome to Loneford. Please have a seat, I\'ll be right there.||{ - {Do you have anything to eat around here?|grimion_trade_1|||||} - {Is there a place where I can get some rest around here?|grimion_rest_1|||||} - }|}; -{grimion_trade_1|Sure, have a look.||{{N|S|||||}}|}; -{grimion_rest_1|Sure, the guards have set up some beds downstairs. Go talk to Arngyr down there, he might be able to help you.|||}; - -{loneford_tavern_room|Arngyr grabs you by the shoulder and pulls you back.\nIf you want to rest over there, you need to check with me first.|||}; -{arngyr|||{ - {|arngyr_back_1|nondisplay:19||||} - {|arngyr_1|||||} - }|}; -{arngyr_1|Yes, can I help you?||{{Mind if I use one of the beds back there?|arngyr_2|||||}}|}; -{arngyr_2|||{ - {|arngyr_3|loneford:55||||} - {|arngyr_4|||||} - }|}; -{arngyr_3|Oh no, not at all. Go ahead. After all you have done for us here in Loneford, it would be a privilege to be able to give something back to you.|{{0|nondisplay|19|}}|{{N|arngyr_6|||||}}|}; -{arngyr_4|These beds are mostly used by us guards. But I guess I could make an exception since you\'re just a kid. Shall we say, 600 gold and you may use it?||{{Sure, here is the gold.|arngyr_5||gold|600|0|}{What?! That\'s a bit much, don\'t you think?|arngyr_7|||||}}|}; -{arngyr_5|Thank you.|{{0|nondisplay|19|}}|{{N|arngyr_6|||||}}|}; -{arngyr_6|Use the bed in the back over there as much as you like.||{{Thanks|X|||||}}|}; -{arngyr_7|Look, kid. I make the rules around here. If that\'s my price then that\'s my price. Take it or leave it.||{{Fine, here is the gold|arngyr_5||gold|600|0|}{Never mind then|X|||||}}|}; -{arngyr_back_1|Hello again. I hope the bed is comfortable enough.|||}; - -{loneford_chapelguard|Walk with the Shadow, child.|||}; - -{wallach|Oh, poor old Selgan. Why did it have to be him? I wonder who is next, and I fear for the worst.|||}; -{mienn|I can\'t see how we could make it without the help of those nice guards from Feygard around here. We are truly lucky to have their assistance.|||}; -{conren|We are lucky to have Feygard here helping us.|||}; -{telund|Who are you? Have you seen my father Selgan? They all tell me he will be back shortly, but they are all lying! I know it, I know it! He wasn\'t home yesterday, and he isn\'t home today.|||}; - -{loneford_tavern_patron|This is no place for a kid like you. I think you better leave now.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{iqhan_greeter|Get away! No! Turn back while you still can!||{{N|iqhan_greeter_1|||||}}|}; -{iqhan_greeter_1|You don\'t know what they\'ll do to you!||{{What is this place?|iqhan_greeter_2|||||}}|}; -{iqhan_greeter_2|What!? No, no, no. Must get out of here!||{{N|R|||||}}|}; -{iqhan_boss|*wheeze*||{{N|iqhan_boss_1|||||}}|}; -{iqhan_boss_1|(The figure points its finger towards you, in what looks to be an order for the nearby thralls to attack you.)||{{Fight!|F|||||}}|}; -{sign_waterway1|South: Loneford\nEast: Brimhaven.\n(You also see something written on an arrow pointing to the west, but you cannot understand the words)|||}; -{sign_waterway3|(The sign contains writing in a language you cannot understand)|||}; - -{gauward|What.. Oh, a visitor!||{ - {What is this place?|gauward_1|||||} - {I have some Izthiel claws to sell you.|gauward_sell_1|nondisplay:20||||} - }|}; -{gauward_1|This place used to be a safe house for travellers between Loneford and Brimhaven, before they had finished the road between the villages.||{{N|gauward_2|||||}}|}; -{gauward_2|However, nowadays, hardly anyone comes here - because of those cursed creatures from the river.||{{N|gauward_3|||||}}|}; -{gauward_3|Izthiel, they call them.||{{N|gauward_4|||||}}|}; -{gauward_4|Ack, if it wasn\'t for those things out there, I am sure a lot of people would come by here more often.||{ - {Would you like me to kill the creatures for you?|gauward_5|||||} - }|}; -{gauward_5|Oh sure. I have tried that. But they just keep coming back.||{{N|gauward_6|||||}}|}; -{gauward_6|Tell you what though. Bring me those claws of theirs, and I\'ll buy them from you for a good price.||{{Ok, I will return with some of their claws.|gauward_7|||||}}|}; -{gauward_7|Good. Please do. I like knowing that their numbers are reduced at least.|{{0|nondisplay|20|}}||}; -{gauward_sell_1|Great. How many would you like to sell?||{ - {Here\'s one.|gauward_sold_1||izthiel_claw|1|0|} - {Here\'s five.|gauward_sold_5||izthiel_claw|5|0|} - {Here\'s ten.|gauward_sold_10||izthiel_claw|10|0|} - {Here\'s twenty.|gauward_sold_20||izthiel_claw|20|0|} - {Never mind. I will be back with more Izthiel claws to sell you.|gauward_7|||||} - }|}; -{gauward_sold_1|Good, thank you. Here\'s some gold for your troubles.|{{1|gold5||}}||}; -{gauward_sold_5|Excellent, thank you! Here\'s some gold for your troubles.|{{1|gold25||}}||}; -{gauward_sold_10|Excellent, thank you! Here\'s some gold for your troubles.|{{1|gold50||}}||}; -{gauward_sold_20|Oh wow, you managed to get twenty of those claws? That\'s excellent, thank you! Here\'s some gold and some extra health potions for your troubles.|{{1|gauward_sold_20||}}||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{thorin|||{ - {|thorin_return_1|thorin:40||||} - {|thorin_search_1|thorin:20||||} - {|thorin_1|||||} - }|}; -{thorin_1|What\'s this, a visitor? How unexpected.||{{N|thorin_2|||||}}|}; -{thorin_2|Tell me, what can Thorin do for you?||{ - {What are you doing here?|thorin_what_1|||||} - {Who are you?|thorin_who_1|||||} - {Mind if I use your bed over there to rest?|thorin_rest_1|||||} - {Do you have anything to trade?|thorin_trade_1|||||} - }|}; -{thorin_what_1|Oh, not much. Well actually, I am waiting for someone - or rather, some people.||{{N|thorin_story_1|||||}}|}; -{thorin_story_1|You see, me and my fellow gatherers were out investigating the poisonous nature of the Irdegh.||{{N|thorin_story_2|||||}}|}; -{thorin_story_2|Apparently, I was the only one that was careful enough when handling our wares.||{{N|thorin_story_3|||||}}|}; -{thorin_story_3|The others got ill quite quick, and we hid in this cave to rest up. However, we had not anticipated these bugs in here.||{{N|thorin_story_4|||||}}|}; -{thorin_story_4|Those \'Scaradon\' things are tough! They did not even seem to take any damage when I hit them.||{{N|thorin_story_5|||||}}|}; -{thorin_story_5|So, that\'s where I am now. The people that sent us to investigate told us to set up camp if we encountered any problems, and they would come help us.||{{N|thorin_story_6|||||}}|}; -{thorin_story_6|So far, you are the first visitor here for quite a while.||{ - {You don\'t seem all that upset that your friends died.|thorin_story_6_1|||||} - {Anything I can do to help you meanwhile?|thorin_story_7|||||} - {Tough luck. I bet help will be here any day now. Goodbye.|X|||||} - }|}; -{thorin_story_6_1|Nah, it\'s just business. Just business.||{ - {Anything I can do to help you?|thorin_story_7|||||} - {Tough luck. I bet your rescue will be here any day now. Goodbye.|X|||||} - }|}; -{thorin_story_7|Hmm. Yes, actually there is something that you could do for me.||{{N|thorin_story_8|||||}}|}; -{thorin_story_8|The others that I was travelling with, they did not make it this far into the cave, but got attacked by those bugs closer to the entrance.||{{N|thorin_story_9|||||}}|}; -{thorin_story_9|Considering how they died, I would be very interested in seeing what effects both the Irdegh and the Scaradons had on them.||{{N|thorin_story_10|||||}}|}; -{thorin_story_10|If you could find me their remains, I would be most grateful. Maybe I could continue my investigation based on their remains. Hmm, yes that would be great.||{ - {Sure, find their remains. Sounds easy enough, I\'ll do it.|thorin_story_11|||||} - {I\'m all for finding dead things. I\'ll do it.|thorin_story_11|||||} - {Hm, this sounds a bit shady to me. I\'m not sure I should do this.|thorin_decline|||||} - }|}; -{thorin_story_11|Excellent. Bring me back the remains of all six of them. I would go search myself if those nasty bugs weren\'t there.|{{0|thorin|20|}}||}; -{thorin_who_1|Oh, I did not introduce me, my apologies. I am Thorin.||{{What are you doing here?|thorin_what_1|||||}}|}; -{thorin_decline|Too bad. Good day to you then.|||}; -{thorin_search_1|Welcome back. Did you find all six of them?||{ - {No, not yet. I am still looking.|thorin_search_2|||||} - {Yes, this is what I found.|thorin_search_c_1||thorin_bone|6|0|} - {Mind if I use your bed over there to rest?|thorin_rest_1|||||} - {Do you have anything to trade?|thorin_trade_1|||||} - }|}; -{thorin_search_2|Ok then. Please return when you have found them all. I would go search myself if those nasty bugs weren\'t there.|||}; -{thorin_rest_1|||{ - {|thorin_rest_y|thorin:40||||} - {|thorin_rest_n|||||} - }|}; -{thorin_rest_y|Please, go ahead. You may rest here as much as you like.|||}; -{thorin_rest_n|My bed? No, that\'s mine. Maybe I will let you use it if you help me with a small task.||{{What\'s that?|thorin_story_1|||||}}|}; -{thorin_trade_1|||{ - {|thorin_trade_y|thorin:40||||} - {|thorin_trade_n|||||} - }|}; -{thorin_trade_y|Oh yes. The upside of this cave is that it literally is crawling with dead bodies of those Scaradon bugs.||{{N|thorin_trade_y2|||||}}|}; -{thorin_trade_y2|By chance, I happened to find out that with the right mixture, they can be made into a healing substance.||{{Let\'s see what you have to trade.|S|||||}}|}; -{thorin_trade_n|No. I might have something to trade if you help me with a small task.||{{What\'s that?|thorin_story_1|||||}}|}; -{thorin_search_c_1|Thank you. I would have gone myself if those nasty bugs weren\'t there. This turned out to be much easier though.|{{0|thorin|40|}}|{{N|thorin_search_c_2|||||}}|}; -{thorin_search_c_2|As a token of my appreciation, you are welcome to use the bed over there to rest. Also, if you are interested in healing, I might be able to provide some help.||{ - {I think I should use the bed to rest right now. Thank you.|X|||||} - {Do you have anything to trade?|thorin_trade_1|||||} - {You are welcome. Goodbye.|X|||||} - }|}; -{thorin_return_1|My friend returns. What can Thorin do for you?||{ - {Mind if I use your bed over there to rest?|thorin_rest_1|||||} - {Do you have anything to trade?|thorin_trade_1|||||} - }|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{mountaincave_sleep|Thorin shouts at you: Hey, get away from there! That\'s my bed.|||}; -{remains_mcave_1|||{{|remains_mcave_a|thorin:31||||}{|remains_mcave_1b|thorin:20||||}{|remains_mcave_c|||||}}|}; -{remains_mcave_2|||{{|remains_mcave_a|thorin:32||||}{|remains_mcave_2b|thorin:20||||}{|remains_mcave_c|||||}}|}; -{remains_mcave_3|||{{|remains_mcave_a|thorin:33||||}{|remains_mcave_3b|thorin:20||||}{|remains_mcave_c|||||}}|}; -{remains_mcave_4|||{{|remains_mcave_a|thorin:34||||}{|remains_mcave_4b|thorin:20||||}{|remains_mcave_c|||||}}|}; -{remains_mcave_5|||{{|remains_mcave_a|thorin:35||||}{|remains_mcave_5b|thorin:20||||}{|remains_mcave_c|||||}}|}; -{remains_mcave_6|||{{|remains_mcave_a|thorin:36||||}{|remains_mcave_6b|thorin:20||||}{|remains_mcave_c|||||}}|}; -{remains_mcave_1b|You see a pile of skeletal remains. This must be one of Thorin\'s former companions.||{{Leave it alone.|X|||||}{Pick up one of the bones.|remains_mcave_1d|||||}}|}; -{remains_mcave_2b|You see a pile of skeletal remains. This must be one of Thorin\'s former companions.||{{Leave it alone.|X|||||}{Pick up one of the bones.|remains_mcave_2d|||||}}|}; -{remains_mcave_3b|You see a pile of skeletal remains. This must be one of Thorin\'s former companions.||{{Leave it alone.|X|||||}{Pick up one of the bones.|remains_mcave_3d|||||}}|}; -{remains_mcave_4b|You see a pile of skeletal remains. This must be one of Thorin\'s former companions.||{{Leave it alone.|X|||||}{Pick up one of the bones.|remains_mcave_4d|||||}}|}; -{remains_mcave_5b|You see a pile of skeletal remains. This must be one of Thorin\'s former companions.||{{Leave it alone.|X|||||}{Pick up one of the bones.|remains_mcave_5d|||||}}|}; -{remains_mcave_6b|You see a pile of skeletal remains. This must be one of Thorin\'s former companions.||{{Leave it alone.|X|||||}{Pick up one of the bones.|remains_mcave_6d|||||}}|}; -{remains_mcave_1d|You pick up one of the bones. It seems to have been severely damaged by something corrosive.|{{0|thorin|31|}{1|thorin_bone||}}||}; -{remains_mcave_2d|You pick up one of the bones. It seems to have been severely damaged by something corrosive.|{{0|thorin|32|}{1|thorin_bone||}}||}; -{remains_mcave_3d|You pick up one of the bones. It seems to have been severely damaged by something corrosive.|{{0|thorin|33|}{1|thorin_bone||}}||}; -{remains_mcave_4d|You pick up one of the bones. It seems to have been severely damaged by something corrosive.|{{0|thorin|34|}{1|thorin_bone||}}||}; -{remains_mcave_5d|You pick up one of the bones. It seems to have been severely damaged by something corrosive.|{{0|thorin|35|}{1|thorin_bone||}}||}; -{remains_mcave_6d|You pick up one of the bones. It seems to have been severely damaged by something corrosive.|{{0|thorin|36|}{1|thorin_bone||}}||}; -{remains_mcave_a|You see a pile of skeletal remains, from where you removed some pieces earlier.|||}; -{remains_mcave_c|You see a pile of skeletal remains.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{algangror|||{ - {|algangror_fight_6|remgard2:35||||} - {|algangror_fight_3|remgard2:30||||} - {|algangror_return_d1|fiveidols:100||||} - {|algangror_cmp5|fiveidols:70||||} - {|algangror_cmp1|fiveidols:61||||} - {|algangror_story1|fiveidols:51||||} - {|algangror_task2_ret1|fiveidols:37||||} - {|algangror_task2_7|fiveidols:20||||} - {|algangror_return_d1|algangror:101||||} - {|algangror_return_d1|algangror:100||||} - {|algangror_return_c1|algangror:21||||} - {|algangror_return_3|algangror:20||||} - {|algangror_return_1|algangror:15||||} - {|algangror_1|||||} - }|}; -{algangror_1|Oh my, a child. He he, how nice. Tell me, what brings you here?|{{0|algangror|10|}}|{ - {I am looking for my brother.|algangror_2a|||||} - {I just entered to see if there\'s any loot to be found here.|algangror_2b|||||} - {I\'m an adventurer, looking to help anyone in need of help.|algangror_2c|||||} - {I\'d rather not tell.|algangror_2d|||||} - {I am sent by Jhaeld to end whatever it is you do to the people of Remgard.|algangror_fight_1|remgard2:21||||} - }|}; -{algangror_2a|Run away, has he? He he.||{{N|algangror_3|||||}}|}; -{algangror_2b|Oh sure, you think you can just pick up anything and claim it as yours?||{{N|algangror_3|||||}}|}; -{algangror_2c|How noble. Maybe you can be of use to me.||{{N|algangror_3|||||}}|}; -{algangror_2d|Clever. I like that.||{{N|algangror_3|||||}}|}; -{algangror_3|Tell me, now that you have entered this house, would you be willing to help me with a small.. problem?||{ - {Sure, what\'s the problem?|algangror_4|||||} - {Maybe, it depends on what the problem is.|algangror_4|||||} - {Maybe, it depends on what type of reward we are talking about.|algangror_3c|||||} - {No way. You are acting way too creepy for me.|algangror_decline_1|||||} - }|}; -{algangror_3c|Reward? No, no, I don\'t have anything to give you, unfortunately.||{ - {I guess you won\'t get any help either then.|X|||||} - {Fine, what\'s the problem you want help with?|algangror_4|||||} - {Something feels wrong here. I better not get involved in this.|algangror_decline_1|||||} - }|}; -{algangror_4|You see, I have this slight problem with .. ahem .. vermin.||{{N|algangror_5|||||}}|}; -{algangror_5|Always sneaking around, always trying to cause mischief.||{{N|algangror_6|||||}}|}; -{algangror_6|Fortunately, I managed to capture some of them, and locked them in my basement.||{{N|algangror_7|||||}}|}; -{algangror_7|Now, I can\'t handle them myself because of certain .. issues.||{{N|algangror_8|||||}}|}; -{algangror_8|That\'s where you come in. Would you be willing to .. ahem .. handle those rodents for me?|{{0|algangror|11|}}|{ - {Sure, some rodents, I can handle that.|algangror_9|||||} - {No problem, I\'ll be right back once I have killed them.|algangror_9|||||} - {Something feels wrong here. I better not get involved in this.|algangror_decline_1|||||} - }|}; -{algangror_decline_1|Ah yes. After all, you are just a child and I can understand such a task would be too much for you. He he.|{{0|algangror|100|}}||}; -{algangror_9|Splendid. Return to me with some proof that they have been dealt with.|{{0|algangror|15|}}||}; -{algangror_return_1|You return. Did you handle all those .. ahem .. rodents in my basement?||{ - {Yes, they are all dead.|algangror_return_2||algangror_rat|6|0|} - {I am still working on it. Goodbye.|X|||||} - {I won\'t do your stupid task, count me out.|algangror_decline_1|||||} - {I have decided not to help you with your rodents.|algangror_decline_1|||||} - {I am sent by Jhaeld to end whatever it is you do to the people of Remgard.|algangror_fight_1|remgard2:21||||} - }|}; -{algangror_return_2|He he. I bet you sure showed them. Excellent. Thank you for .. ahem .. helping me.|{{0|algangror|20|}}|{{N|algangror_return_3|||||}}|}; -{algangror_return_3|Those rodents have really been bothering me. Good thing I managed to catch some of them. He he.||{{N|algangror_return_4|||||}}|}; -{algangror_return_4|Now, there was something else I wanted to talk to you about. Have you been to the city of Remgard in your travels?||{ - {Yes, I have been there.|algangror_remgard_2|||||} - {No, where is that?|algangror_remgard_1|||||} - }|}; -{algangror_return_c1|You return. Thank you for helping me with my .. ahem .. rodent problem earlier.||{{N|algangror_return_c2|||||}}|}; -{algangror_return_c2|||{ - {|algangror_told_1|remgard2:10||||} - {|algangror_return_c4|remgard:75||||} - {|algangror_return_c3|||||} - }|}; -{algangror_return_c3|I hope that will teach those *other* rats.|||}; -{algangror_return_c4|Say, you seem like a resourceful person. Would you be interested in helping me with yet another .. task?||{ - {Depends on the task.|algangror_task2_1|||||} - {Sure.|algangror_task2_1|||||} - {Not right now.|algangror_task2_d|||||} - }|}; -{algangror_remgard_1|Oh, it\'s not far from here. Doesn\'t matter really.||{{N|algangror_remgard_2|||||}}|}; -{algangror_remgard_2|You see, I used to live there. To make a long story short, there were some .. ahem .. misunderstandings.||{{N|algangror_remgard_3|||||}}|}; -{algangror_remgard_3|These days, I think they are looking for me, for some reason. Can\'t think of any reason why really. But I believe they are.||{{N|algangror_remgard_4|||||}}|}; -{algangror_remgard_4|Because of our previous .. misunderstanding, I think it\'s best they don\'t find out that I\'m here.||{{N|algangror_remgard_5|||||}}|}; -{algangror_remgard_5|Therefore, I ask of you not to reveal my whereabouts to them.||{{Ok|algangror_remgard_6|||||}{(Lie) Ok|algangror_remgard_6|||||}}|}; -{algangror_remgard_6|Thank you. Under no circumstances should you tell them where I am. They will most likely try to persuade you into revealing my location.||{{Ok|algangror_remgard_7|||||}}|}; -{algangror_remgard_7|Under no circumstances.|{{0|algangror|21|}}||}; -{algangror_return_d1|Oh, it\'s you again.||{{N|algangror_return_d2|||||}}|}; -{algangror_return_d2|You should probably leave before you tip something over that might .. ahem .. break. He he.||{ - {I am sent by Jhaeld to end whatever it is you do to the people of Remgard.|algangror_fight_1|remgard2:21||||} - {Watch your tongue, witch.|X|||||} - {You are right, I had better leave.|X|||||} - }|}; -{algangror_fight_1|||{ - {|algangror_fight_2|algangror:100||||} - {|algangror_fight_2|algangror:101||||} - {|algangror_fight_1a|algangror:10||||} - {|algangror_fight_2|||||} - }|}; -{algangror_fight_1a||{{0|algangror|101|}}|{{|algangror_fight_2|||||}}|}; -{algangror_fight_2|||{{|algangror_fight_2a|fiveidols:10||||}{|algangror_fight_3|||||}}|}; -{algangror_fight_2a||{{0|fiveidols|100|}}|{{|algangror_fight_3|||||}}|}; -{algangror_fight_3|Jhaeld, the fool. He hides behind his guards and his stone walls. Such a pitiful man he is. Yes, I made those people disappear, but they were all worth it. I will have my revenge!|{{0|remgard2|30|}}|{{N|algangror_fight_4|||||}}|}; -{algangror_fight_4|And you, what are you trying to accomplish by running his errands? How fortunate that you entered my house. He he.||{{N|algangror_fight_5|||||}}|}; -{algangror_fight_5|Do you really think you can defeat *me*? Ha ha, this will be fun!||{{Fight!|algangror_fight_6|||||}}|}; -{algangror_fight_6||{{0|remgard2|35|}}|{{|F|||||}}|}; -{algangror_told_1|||{{|algangror_told_1a|algangror:10||||}{|algangror_told_2|||||}}|}; -{algangror_told_1a||{{0|algangror|101|}}|{{|algangror_told_2|||||}}|}; -{algangror_told_2|Say, despite my previous urging to you to keep my location a secret to the people of Remgard, I have this feeling that this trust has been broken. Please tell me it isn\'t so.||{ - {Yes, I have told Jhaeld where you are.|algangror_told_3|||||} - {(Lie) No, I have not told anyone.|algangror_told_3|||||} - }|}; -{algangror_told_3|I can feel it in me.||{{N|algangror_return_d2|||||}}|}; -{algangror_task2_d|Very well, return to me once you are ready.|||}; -{algangror_task2_1|Now, I can\'t tell you what task I have in mind before I am confident that you will actually help me. Granted, you have already shown some level of respect for my need of discretion.||{{N|algangror_task2_2|||||}}|}; -{algangror_task2_2|Nor can I describe my reasoning behind this task before you are done with it.||{{N|algangror_task2_3|||||}}|}; -{algangror_task2_3|Rest assured, you will be sufficiently rewarded by helping me. In fact, you see this necklace here? It has some peculiar powers that many people seek.||{{N|algangror_task2_4|||||}}|}; -{algangror_task2_4|The world around you seems to move a bit slower when you wear it.|{{0|fiveidols|10|}}|{ - {Ok. I will help you with your task.|algangror_task2_6|||||} - {Ok, I\'ll help. I\'m always interested in new items.|algangror_task2_6|||||} - {It all depends on what you want me to do.|algangror_task2_5|||||} - {Something feels wrong here. I don\'t think I should help you.|algangror_task2_n|||||} - }|}; -{algangror_task2_5|As I said, I cannot tell you what task I have in mind, or my reasoning behind it until you are done. I would need your total .. cooperation with this.||{ - {Ok. I will agree to help you with your task.|algangror_task2_6|||||} - {Ok, I\'ll help. I\'m always interested in new items.|algangror_task2_6|||||} - {No. I will not help you unless you tell me what you want me to do.|algangror_task2_n|||||} - {No, I would never help someone like you.|algangror_task2_n|||||} - }|}; -{algangror_task2_n|Ah yes. After all, you are just a child and I can understand that all of this must be too much for you. He he.|{{0|algangror|100|}}|{{N|algangror_task2_n2|||||}}|}; -{algangror_task2_n2|Can I at least urge you not to disclose my location to the people of Remgard?||{ - {I will keep your location secret. Goodbye.|X|||||} - {We\'ll see. Goodbye.|X|||||} - {Don\'t tell me what to do! Goodbye.|X|||||} - }|}; -{algangror_task2_6|Good, good.|{{0|fiveidols|20|}}|{{N|algangror_task2_7|||||}}|}; -{algangror_task2_7|You will tell no one of this task that I am about to give you, and you must be as discreet as possible.||{{N|algangror_task2_8|||||}}|}; -{algangror_task2_8|I have in my possession five idols. Five idols with very unique .. qualities. What I want you to do is .. deliver these idols to various people in the town of Remgard.||{{N|algangror_task2_9|||||}}|}; -{algangror_task2_9|You will place them by the beds of five particular persons, and you must hide it well so that the person does not find the idol itself.||{{N|algangror_task2_10|||||}}|}; -{algangror_task2_10|Remember, it is of utmost importance that you be as discreet as possible about this. The idols must not be found once you have placed them, and no one must notice that you place the idols.|{{0|fiveidols|30|}}|{{Go on.|algangror_task2_11|||||}}|}; -{algangror_task2_11|So, the first person that I want you to visit is Jhaeld. I hear that he spends most of his time in the Remgard tavern these days.|{{0|fiveidols|31|}}|{{N|algangror_task2_12|||||}}|}; -{algangror_task2_12|Secondly, I want you to visit one of the farmers named Larni. He lives with his wife Caeda here in Remgard in one of the northern cabins.|{{0|fiveidols|32|}}|{{N|algangror_task2_13|||||}}|}; -{algangror_task2_13|The third person is Arnal the weapon-smith, that lives in the northwest of Remgard.|{{0|fiveidols|33|}}|{{N|algangror_task2_14|||||}}|}; -{algangror_task2_14|Fourth is Emerei, that can probably be found in his house to the southeast of Remgard.|{{0|fiveidols|34|}}|{{N|algangror_task2_15|||||}}|}; -{algangror_task2_15|The fifth person is the farmer Carthe. Carthe lives on the eastern shore of Remgard, near the tavern.|{{0|fiveidols|35|}}|{{N|algangror_task2_16|||||}}|}; -{algangror_task2_16|Once you have placed these five idols by the beds of these five people, return to me as soon as possible.||{{N|algangror_task2_17|||||}}|}; -{algangror_task2_17|Again, I cannot stress this enough - you must not tell anyone about these idols, and you must not be seen while placing them.||{{I understand.|algangror_task2_18s|||||}}|}; -{algangror_task2_18s|||{ - {|algangror_task2_19|fiveidols:37||||} - {|algangror_task2_18|||||} - }|}; -{algangror_task2_18|Here are the idols.|{{1|fiveidols||}{0|fiveidols|37|}}|{ - {I will be back shortly.|algangror_task2_19|||||} - {This should be easy.|algangror_task2_19|||||} - }|}; -{algangror_task2_19|Now go, and please hurry, we might not have much time.|||}; -{algangror_task2_ret1|Tell me, how goes the task of placing the idols?||{ - {Can you repeat what you wanted me to do?|algangror_task2_8|||||} - {I am still trying to find everyone.|algangror_task2_ret2|||||} - {It is done.|algangror_task2_done1|fiveidols:50||||} - {I won\'t do your stupid task.|algangror_task2_n|||||} - {I will not help you with your task.|algangror_task2_n|||||} - }|}; -{algangror_task2_ret2|Please hurry, we might not have much time.|||}; -{algangror_task2_done1|Excellent. Maybe, now I can rest easily. Thank you so much for helping me.||{{N|algangror_task2_done2|||||}}|}; -{algangror_task2_done2|Did anyone see you or where you placed the idols?||{{No, I hid the idols as you instructed.|algangror_task2_done3|||||}}|}; -{algangror_task2_done3|Good. Thank you again for helping me.|{{0|fiveidols|51|}}|{{N|algangror_story|||||}}|}; -{algangror_story|Let me tell you my story.||{ - {Please do.|algangror_story1|||||} - {Can we just skip to the end?|algangror_cmp1|||||} - }|}; -{algangror_story1|You see, I used to live in the city of Remgard. The times were good, and the city prospered.||{{N|algangror_story2|||||}}|}; -{algangror_story2|Our crops grew well, and some people had very fortunate trading agreements with other cities, making the life for most of us living in Remgard very easy.||{{N|algangror_story3|||||}}|}; -{algangror_story3|I even sold some of the baskets that I used to make to a wealthy merchant that visited us from Nor City.||{{N|algangror_story4|||||}}|}; -{algangror_story4|However, even the easy life gets boring after a while. I believe it is in our nature to strive for new and better things, to free us from the boredom of day-to-day life.||{{N|algangror_story5|||||}}|}; -{algangror_story5|I wanted to learn more of things that I knew nothing about, and wanted to explore things I had only read of in books before.||{{N|algangror_story6|||||}}|}; -{algangror_story6|So I went to Nor City myself, and visited many .. interesting people and .. dark corners.||{{N|algangror_story7|||||}}|}; -{algangror_story7|Naturally, I was thrilled of the knowledge I gained from the experience, and from what I learned while there.||{{What then?|algangror_story8|||||}}|}; -{algangror_story8|As I got back home, I wanted to continue practicing what I had observed and learned while in Nor City.||{{N|algangror_story9|||||}}|}; -{algangror_story9|You could say I got obsessed with learning more. I guess the others living in Remgard did not .. share my enthusiasm. Some of them even questioned the fact that I wanted to learn more.||{{N|algangror_story10|||||}}|}; -{algangror_story10|So I told myself that others would not hinder me in my curiosity to better myself.||{{N|algangror_story11|||||}}|}; -{algangror_story11|Those books that I bought from the Blackmarrow residence in Nor City - I must have read them all perhaps five times over. This was something completely new to me, and at the same time very exciting.||{{What then?|algangror_story12|||||}}|}; -{algangror_story12|For some reason, the others in Remgard started giving me strange looks, and I could hear the whispers behind my back.||{{N|algangror_story13|||||}}|}; -{algangror_story13|I was even barred from the tavern. \'People come here for a good time, and we don\'t want people like you here ruining that\' they said. What fools they are.||{{N|algangror_story14|||||}}|}; -{algangror_story14|I heard one woman whispering to her boy, \'Don\'t look at her, she\'ll turn you to stone!\'. Others just turned the other way when they met me.||{{N|algangror_story15|||||}}|}; -{algangror_story15|What fools they are.||{{So what happened?|algangror_story16|||||}}|}; -{algangror_story16|One day, Jhaeld showed up at my doorstep with a group of guards.||{{N|algangror_story17|||||}}|}; -{algangror_story17|The people of Remgard had decided that I could not stay there anymore, he said. The things I did were causing other people harm, he said.||{{N|algangror_story18|||||}}|}; -{algangror_story18|What had I done, I asked myself? I had never hurt anyone, much less affected anyone with my .. experiments. Am I not allowed to do what I wish?||{{N|algangror_story19|||||}}|}; -{algangror_story19|I had little chance to argue, however. The guards led me out of the city. They did not even let me gather my things. All my books, all my notes and all my findings - gone. I lost everything.|{{0|fiveidols|60|}}|{{What now?|algangror_story20|||||}}|}; -{algangror_story20|All this happened several seasons ago. I knew I had to get revenge for what they did to me.||{{N|algangror_story21|||||}}|}; -{algangror_story21|Oh, how I despise them all. The people that gave me those looks, the people that whispered behind my back, and most of all that fool Jhaeld.||{{N|algangror_story22|||||}}|}; -{algangror_story22|So, I decided to extend my .. experiments .. to larger things. To people, to living things. This is the perfect opportunity to learn even more than what is in the books.||{{N|algangror_story23|||||}}|}; -{algangror_story23|To think that I could do it while at the same time get revenge on those despicable people - it\'s an excellent plan, if I may say so myself. He he.||{{So, what happened to all those people that have gone missing?|algangror_story24|||||}}|}; -{algangror_story24|I lured them here. Once I managed to trap them, I placed a curse on them that, in theory, should have only made them unable to speak.||{{N|algangror_story25|||||}}|}; -{algangror_story25|Maybe I haven\'t understood everything correctly from the books that I have read, since instead of making them unable to speak, they were all turned into rats instead.||{{N|algangror_story26|||||}}|}; -{algangror_story26|Practice makes perfect, I suppose. Ha ha.||{{Wait, does this mean that those rats I killed for you were..|algangror_story27|||||}}|}; -{algangror_story27|Oh yes. With your help, they are now one less problem to deal with, so to speak. He he.||{{N|algangror_story28|||||}}|}; -{algangror_story28|So, that\'s my story. Thank you for listening to it.|{{0|fiveidols|61|}}|{ - {I understand, and I agree with your actions.|algangror_story29a|||||} - {I do not fully agree with your actions.|algangror_story29b|||||} - {What you did could never be justified!|algangror_story29b|||||} - }|}; -{algangror_story29a|Thank you. It is good to know there are more people interested in learning more.||{{N|algangror_cmp1|||||}}|}; -{algangror_story29b|I never expected you to understand it. No one else seems to understand me either. Oh well, your loss, I guess.||{{N|algangror_cmp1|||||}}|}; -{algangror_cmp1|So, for helping me with the idols, I believe I promised you my enchanted necklace, \'Marrowtaint\'.||{{N|algangror_cmp2|||||}}|}; -{algangror_cmp2|Wear it well, my friend. Do not let others get hold of the power that Marrowtaint provides.||{{N|algangror_cmp3|||||}}|}; -{algangror_cmp3|Here you go.|{{0|fiveidols|70|}{1|marrowtaint||}}|{ - {Thank you.|algangror_cmp5|||||} - {That\'s all? One lousy necklace for all this trouble I went through?|algangror_cmp4|||||} - }|}; -{algangror_cmp4|Do not underestimate it, my friend.||{{N|algangror_cmp5|||||}}|}; -{algangror_cmp5|Again, thank you for helping me. You will always be welcome here, friend.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{remgard_bridge|||{ - {|remgardb_helped_1|remgard:35||||} - {|remgardb_helped_n|remgard:31||||} - {|remgardb_helped_y|remgard:30||||} - {|remgardb_help_return|remgard:20||||} - {|remgardb_1|||||} - }|}; -{remgardb_1|Halt! No one is allowed to enter or exit Remgard.||{{Why? Is there something wrong?|remgardb_2|||||}}|}; -{remgardb_2|Wrong? You bet there is. Several of the townspeople have disappeared, and we are still conducting the investigation.||{{N|remgardb_3|||||}}|}; -{remgardb_3|We are searching for them in the town, and questioning everyone for clues on where they might be.|{{0|remgard|10|}}|{ - {Please continue.|remgardb_5|||||} - {Maybe they just left?|remgardb_4|||||} - }|}; -{remgardb_4|No, I highly doubt that.||{{N|remgardb_5|||||}}|}; -{remgardb_5|Considering our town is surrounded by lake Laeroth, we guards are able to keep a watchful eye on everything going on here. We are able to keep a log of who comes and goes, since this bridge is our only connection to the mainland.||{{N|remgardb_6|||||}}|}; -{remgardb_6|For your sake, it is probably safer for you to remain out of town until our investigation is complete.||{ - {I am willing to help you with the investigation if you want.|remgardb_help_1|||||} - {Ok, I will leave you to your investigation.|X|||||} - {How about you allow me to enter town anyway, so that I can trade. I promise to be quick.|remgardb_7|||||} - }|}; -{remgardb_7|No. As I said, no one except us guards are allowed to enter or exit town until our investigation is completed. I suggest you leave now.|||}; -{remgardb_help_1|Hm, yes, that might be a good idea actually. Considering you made it up here, you must have some knowledge of the surroundings.|{{0|remgard|15|}}|{{N|remgardb_help_2|||||}}|}; -{remgardb_help_2|Tell you what. You might be able to help us.||{{N|remgardb_help_2b|||||}}|}; -{remgardb_help_2b|There is an abandoned house some way to the east of here, on a peninsula on the northern shore of lake Laeroth.||{{N|remgardb_help_3|||||}}|}; -{remgardb_help_3|We have reason to believe that this cabin is inhabited by someone, since we have seen candlelight coming from there during the night across the lake. We are not certain though, it could just be the moonlight on the water.||{{N|remgardb_help_4|||||}}|}; -{remgardb_help_4|That\'s where you come in, and might be able to help us.||{{N|remgardb_help_5|||||}}|}; -{remgardb_help_5|I must stay here and guard the bridge, but you could go over there and peek inside.||{{N|remgardb_help_6|||||}}|}; -{remgardb_help_6|Now, I must warn you - this could be dangerous. If it is as we suspected, then the person in the cabin could be a .. shall we say .. persuasive talker.||{{N|remgardb_help_7|||||}}|}; -{remgardb_help_7|So, if you really want to help us, the task I ask of you is that you only peek inside that cabin and identify if there\'s anyone there, and if so who that might be.||{{N|remgardb_help_8|||||}}|}; -{remgardb_help_8|Report back to me as soon as possible, and do not speak for too long with anyone that might be there.||{{N|remgardb_help_9s|||||}}|}; -{remgardb_help_9s|||{ - {|X|remgard:20||||} - {|remgardb_help_9|||||} - }|}; -{remgardb_help_9|Would you be willing to do this task for us?||{ - {Sure, I would be happy to help.|remgardb_help_10|||||} - {I\'ll do it. I sure hope there will be some reward for this though.|remgardb_help_10|||||} - {No way, this sounds way too dangerous for me.|remgardb_help_9d|||||} - {Actually, I have already been there. There is a woman called Algangror in the cabin.|remgardb_helped_y|algangror:10||||} - {Actually, I have already been there, but the cabin was empty.|remgardb_helped_n|algangror:10||||} - }|}; -{remgardb_help_9d|I don\'t blame you for declining. After all, it could be a dangerous task. Didn\'t hurt to ask though.|||}; -{remgardb_help_10|Excellent. Report back as soon as possible.|{{0|remgard|20|}}||}; -{remgardb_help_return|Did you find anything in that abandoned house?||{ - {Not yet. What was I supposed to do again?|remgardb_help_2b|||||} - {Not yet, I am still working on it.|remgardb_help_10|||||} - {There is a woman called Algangror in the cabin.|remgardb_helped_y|algangror:10||||} - {Yes, I have been there, but the cabin was empty.|remgardb_helped_n|algangror:10||||} - }|}; -{remgardb_helped_y|Algangror, sigh. Then it is as we feared. This is terrible news.|{{0|remgard|30|}}|{{N|remgardb_helped_1|||||}}|}; -{remgardb_helped_1|You should go visit our village elder, Jhaeld, and talk to him about what we should do next. I will let you enter Remgard to speak to him.|{{0|remgard|35|}}|{{N|remgardb_helped_2|||||}}|}; -{remgardb_helped_2|You can probably find him in the tavern to the southeast, since that\'s where he spends most of his time.||{{I will go see him.|R|||||}}|}; -{remgardb_helped_n|Thank you for scouting that cabin. It\'s a relief to hear that it is empty. Our fears might not be true then after all.|{{0|remgard|31|}}|{ - {You are welcome. Anything else I can help you with?|remgardb_helped_n_2|||||} - {You are welcome. Now, about that reward?|remgardb_helped_n_3|||||} - }|}; -{remgardb_helped_n_2|I guess you have proven yourself to be useful. We might have more work for you if you are interested.||{{N|remgardb_helped_1|||||}}|}; -{remgardb_helped_n_3|No no, we did not discuss any reward. But there might be one for you if you are willing to help us further.||{{N|remgardb_helped_1|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{ulirfendor|||{ - {|ulirfendor_dp_bless_6|darkprotector:40||||} - {|ulirfendor_dp_bless_6|darkprotector:41||||} - {|ulirfendor_helmet_keep3|darkprotector:51||||} - {|ulirfendor_helmet_keep2|darkprotector:50||||} - {|ulirfendor_dp_proc_16|darkprotector:35||||} - {|ulirfendor_dp_proc_3|darkprotector:31||||} - {|ulirfendor_dp_proc_1|darkprotector:30||||} - {|ulirfendor_dp_return1|darkprotector:15||||} - {|ulirfendor_cured_1|maggots:50||||} - {|ulirfendor_infected_8|toszylae:60||||} - {|ulirfendor_infected_1|toszylae:50||||} - {|ulirfendor_findparts_10|toszylae:32||||} - {|ulirfendor_findparts_6|toszylae:30||||} - {|ulirfendor_findparts_1|toszylae:15||||} - {|ulirfendor_4|toszylae:10||||} - {|ulirfendor_1|||||} - }|}; -{ulirfendor_1|No! Stay away! You shall not defeat me!||{{N|ulirfendor_2|||||}}|}; -{ulirfendor_2|Oh wait, you are not one of them. You.. you are not one of those spawns.||{ - {Relax, I am not here to hurt you.|ulirfendor_4|||||} - {What\'s going on here?|ulirfendor_4|||||} - {Who are you?|ulirfendor_4|||||} - }|}; -{ulirfendor_4|Oh, how long have I been down here? I can\'t remember.||{{N|ulirfendor_5|||||}}|}; -{ulirfendor_5|No matter. I must finish my work here. You see this shrine here?||{{N|ulirfendor_5_1|||||}}|}; -{ulirfendor_5_1|If my understanding is correct, this shrine is a remnant of Kazaul.||{{N|ulirfendor_6|||||}}|}; -{ulirfendor_6|The writings on it have almost vanished, but I have managed to read parts of it. It speaks in an ancient Kazaul tongue, so all parts are not clear to me.||{{N|ulirfendor_7|||||}}|}; -{ulirfendor_7|I am sure that this shrine is part of the cause for these .. these .. things .. that lurk in this cave. I will do anything in my power to defeat whatever mischief that comes from it.||{ - {What are these creatures?|ulirfendor_8|||||} - {How come these creatures do not attack you?|ulirfendor_10|||||} - {What have you translated so far?|ulirfendor_12|||||} - }|}; -{ulirfendor_8|Ah, the Allaceph. I had not seen one for many years until I entered this cave. They are a remnant of the guardians of Kazaul.||{{N|ulirfendor_9|||||}}|}; -{ulirfendor_9|Have you noticed how they seem to feed upon whoever tries to fight them? Cursed things, almost got a hold of me, they did.||{ - {How come these creatures do not attack you?|ulirfendor_10|||||} - {What have you translated from the shrine so far?|ulirfendor_12|||||} - }|}; -{ulirfendor_10|I have placed a blessing of the Shadow upon this small island here, so that I may work uninterrupted. Strangely enough, it seems to be very effective on them.||{{N|ulirfendor_11|||||}}|}; -{ulirfendor_11|They seem to be very cautious about it. So far, not even one has dared to approach me. Even those pesky lizards are keeping their distance.||{ - {What are these creatures?|ulirfendor_8|||||} - {What have you translated from the shrine so far?|ulirfendor_12|||||} - }|}; -{ulirfendor_12|It speaks of Kazaul and of the misery that comes to anyone that opposes the will of Kazaul.||{{N|ulirfendor_13|||||}}|}; -{ulirfendor_13|Something about \'re-birth from within the followers\'. Not sure I have translated that part correctly, but I think that is what it says. Definitely something about re-birth or birth.||{{N|ulirfendor_14|||||}}|}; -{ulirfendor_14|It also speaks of someone or some .. thing called the \'Dark protector\'. Most parts of the text for that is missing from the shrine however.||{{N|ulirfendor_15|||||}}|}; -{ulirfendor_15|Whatever it means, it seems important. It is also obvious that the \'Dark protector\' brings power to Kazaul, and misery to any opposition.||{{N|ulirfendor_16|||||}}|}; -{ulirfendor_16|Regardless, it must be stopped, whatever it means. Maybe it refers to something deeper down this cave? I have not ventured further into the cave to the east since I could not get past those .. things.|{{0|toszylae|10|}}|{{N|ulirfendor_16_1|||||}}|}; -{ulirfendor_16_1|||{ - {|ulirfendor_19|toszylae:15||||} - {|ulirfendor_17|||||} - }|}; -{ulirfendor_17|Forgive me, I must continue translating the few readable parts left on this shrine.||{ - {Would you like any help with that?|ulirfendor_18|||||} - {Well, good luck with that.|ulirfendor_bye|||||} - }|}; -{ulirfendor_bye|Thank you. Goodbye.|||}; -{ulirfendor_18|Hm, maybe. I need to figure out what this last part should be. Hmm..||{{N|ulirfendor_19|||||}}|}; -{ulirfendor_19|The last part of this piece has been eroded from the rock. It begins with \'Kulauil hamar urum Kazaul\'te\'. But what is the rest of that?|{{0|toszylae|11|}}|{{N|ulirfendor_19_1|||||}}|}; -{ulirfendor_19_1|||{ - {|ulirfendor_21|toszylae:15||||} - {|ulirfendor_19_2|||||} - }|}; -{ulirfendor_19_2|Argh, if this cave wasn\'t so damp, I bet the rest of the text would still be there.|toszylae:15|{ - {I could go look for other clues about the missing parts if you want?|ulirfendor_20|||||} - {Good luck with that, goodbye.|ulirfendor_bye|||||} - }|}; -{ulirfendor_20|Sure, you do that.||{{N|ulirfendor_21|||||}}|}; -{ulirfendor_21|I have looked thoroughly for any clues in the western part of this cave, but have not found any. I have not entered the eastern parts of the cave however.||{{N|ulirfendor_22|||||}}|}; -{ulirfendor_22|Also, I should warn you that I believe the shrine talks of a powerful creature somewhere in this cave. Maybe if you find that creature, it will provide some clue as to what the missing parts are? You need to be careful though.|{{0|toszylae|15|}}|{ - {I will go look in the eastern parts of the cave then.|ulirfendor_bye|||||} - }|}; -{ulirfendor_findparts_1|Hello again. Did you find any clues about what the missing parts are?||{ - {No, I have not found any clues yet.|ulirfendor_findparts_2|||||} - {Can you tell me again what you have translated from the shrine?|ulirfendor_5_1|||||} - {Yes, I encountered a creature to the east that spoke the words you told me.|ulirfendor_findparts_3|toszylae:20||||} - }|}; -{ulirfendor_findparts_2|If you really want to help, then please go look for any other clues you might find.||{{N|ulirfendor_21|||||}}|}; -{ulirfendor_findparts_3|Oh good, tell me, did you find any more clues?||{{Yes, the creature also spoke the words \'Kazaul hamat urul\', maybe that is part of the missing piece?|ulirfendor_findparts_4|||||}}|}; -{ulirfendor_findparts_4|Hmm.. \'hamat urul\'.. Yes of course! That\'s what it says on the eroded parts of the shrine!||{{N|ulirfendor_findparts_5|||||}}|}; -{ulirfendor_findparts_5|Excellent work my friend! Now I just need to translate it.|{{0|toszylae|30|}}|{{N|ulirfendor_findparts_6|||||}}|}; -{ulirfendor_findparts_6|I wonder what this whole piece means. \'Kulauil hamar urum Kazaul\'te. Kazaul hamat urul\' - that\'s the part you heard the creature speak.||{{N|ulirfendor_findparts_7|||||}}|}; -{ulirfendor_findparts_7|The next part is \'Klatam ur turum Kazaul\'te\', and I am not sure what that means. Something about handing over some item?||{{N|ulirfendor_findparts_8|||||}}|}; -{ulirfendor_findparts_8|Maybe the creature you encountered responds to that phrase if you speak to it? If you want to help, you could go and try speaking that phrase to it.||{ - {Sure, I will go speak those words to the creature.|ulirfendor_findparts_9|||||} - {Whatever, I\'ll do it, but I hope this is the last time that I have to run back and forth!|ulirfendor_findparts_9|||||} - {No way, I have helped you enough now.|ulirfendor_decline|||||} - {I had better not get involved in this.|ulirfendor_decline|||||} - }|}; -{ulirfendor_decline|No matter, I will find out myself then. Thank you for your help so far. Goodbye.|||}; -{ulirfendor_findparts_9|Good. Please return as soon as possible.|{{0|toszylae|32|}}||}; -{ulirfendor_findparts_10|Hello again. Did you speak those words to the creature you encountered?||{ - {What was I supposed to do again?|ulirfendor_findparts_6|||||} - {Can you repeat the words I was supposed to speak to the guardian?|ulirfendor_findparts_11|||||} - {No, not yet. But I am working on it.|ulirfendor_findparts_9|||||} - {Yes, it is done.|ulirfendor_findparts_12|toszylae:42||||} - }|}; -{ulirfendor_findparts_11|Sure. It\'s \'Klatam ur turum Kazaul\'te\'.|||}; -{ulirfendor_findparts_12|So, did anything happen?||{ - {The creature started attacking me.|ulirfendor_findparts_13|||||} - {No, nothing happened.|ulirfendor_findparts_13|||||} - }|}; -{ulirfendor_findparts_13|Well, you should probably investigate that area some more. I am sure there are more clues in there about what this shrine speaks of.|||}; -{ulirfendor_infected_1|(Ulirfendor gives you a terrified look)||{{N|ulirfendor_infected_2|||||}}|}; -{ulirfendor_infected_2|You are back! Please tell me you are well! Please tell me nothing happened to you!||{{N|ulirfendor_infected_3|||||}}|}; -{ulirfendor_infected_3|I managed to translate the piece that we spoke about. Oh, what have I done. Please, tell me you are well!||{ - {No, I am not well. My stomach is turning and I feel weaker than usual. I encountered a lich down there that did something to me.|ulirfendor_infected_4|||||} - }|}; -{ulirfendor_infected_4|Nooo! What have I done?||{{N|ulirfendor_infected_5|||||}}|}; -{ulirfendor_infected_5|You see, while you were away, I managed to translate the words that we spoke about before.||{{N|ulirfendor_infected_6|||||}}|}; -{ulirfendor_infected_6|The part that the creature spoke basically means \'No offering is worthy for Kazaul\'.||{{N|ulirfendor_infected_7|||||}}|}; -{ulirfendor_infected_7|Furthermore, the last part, that I made you speak to the creature, \'Klatam ur turum Kazaul\'te\', means \'My body for Kazaul\'.||{{N|ulirfendor_infected_8|||||}}|}; -{ulirfendor_infected_8|Oh, what have I done? I made you say it, and now you are touched by its vile essence.|{{0|toszylae|60|}}|{ - {It\'s not that bad. I have had worse.|ulirfendor_infected_9|||||} - {What can I do to get rid of this affliction?|ulirfendor_infected_9|||||} - {You better have a plan for how you should repay me for this trickery!|ulirfendor_infected_9|||||} - {I at least defeated the lich that infected me with this thing.|ulirfendor_demon_s|darkprotector:10||||} - {I found a strange looking helmet among the remains of the lich that I defeated. Do you know anything about it?|ulirfendor_helmet_s|toszylae:70||||} - }|}; -{ulirfendor_infected_9|Let me have a look at you.||{{N|ulirfendor_infected_10|||||}}|}; -{ulirfendor_infected_10|No.. can it be? Are they actually real?||{{What is?|ulirfendor_infected_11|||||}}|}; -{ulirfendor_infected_11|You show all the signs. If this is true, then you are in great danger.||{{N|ulirfendor_infected_12|||||}}|}; -{ulirfendor_infected_12|Long ago, I read a book on Kazaul rituals. The first part of one particular ritual I read about talks about \'the carrier\', that supposedly is infected with Kazaul rotworms.||{{N|ulirfendor_infected_13|||||}}|}; -{ulirfendor_infected_13|The Kazaul rotworms need a living being to feed upon, before their eggs can hatch. Their eggs can slowly kill a person from the inside, and the worms themselves cause the carrier to become weak during the whole process.||{{N|ulirfendor_infected_14|||||}}|}; -{ulirfendor_infected_14|The ritual proceeds with the carrier being eaten alive by the rotworms and their eggs. Also, the process can have .. shall we say .. unusual effects on the carrier.||{{N|ulirfendor_infected_15|||||}}|}; -{ulirfendor_infected_15|Needless to say, you are in great danger, and you should seek help immediately.|{{0|maggots|20|}}|{{N|ulirfendor_infected_16|||||}}|}; -{ulirfendor_infected_16|The ritual proceeds with the carrier being eaten from the inside by the rotworms and their eggs, in effect, giving birth to the creatures within. Also, the process can have .. shall we say .. unusual effects on the carrier before that.||{{N|ulirfendor_infected_17|||||}}|}; -{ulirfendor_infected_17|You should hurry and seek help from one of the priests of the Shadow as quickly as possible. My dear friend Talion in the temple of Loneford should be able to help you.|{{0|maggots|21|}}|{{N|ulirfendor_infected_18_s|||||}}|}; -{ulirfendor_infected_18_s|||{ - {|ulirfendor_infected_18|toszylae:70||||} - {|ulirfendor_infected_19|||||} - }|}; -{ulirfendor_infected_18|Seek him out immediately. Hurry! You might not have much time.||{{Ok, I will go to Talion in the Loneford temple at once. Goodbye.|X|||||}}|}; -{ulirfendor_infected_19|I should also tell you that it is of great importance that you first destroy whatever creature that infected you with this.||{ - {Ok, I will defeat the lich first. Goodbye.|X|||||} - {I defeated the lich in the depths of the eastern cave.|ulirfendor_demon_s|darkprotector:10||||} - }|}; -{ulirfendor_demon_s|||{ - {|ulirfendor_demon_1|toszylae:70||||} - {|ulirfendor_demon_d1|||||} - }|}; -{ulirfendor_demon_1|Yes, you told me that you killed the lich. Excellent work.||{{N|ulirfendor_demon_2|||||}}|}; -{ulirfendor_demon_2|The people of the surrounding towns will have you to thank.||{ - {No problem. Goodbye.|X|||||} - {I found a strange looking helmet among the remains of that lich. Do you know anything about it?|ulirfendor_helmet_s|toszylae:70||||} - }|}; -{ulirfendor_demon_d1|Oh, that is good news indeed. A lich you say? With your help, the people of the surrounding towns should be safe from whatever mischief the lich could have caused now.|{{0|toszylae|70|}}|{{N|ulirfendor_demon_d2|||||}}|}; -{ulirfendor_demon_d2|Thank you so much for your help!||{{N|ulirfendor_demon_2|||||}}|}; - -{ulirfendor_helmet_s|||{ - {|ulirfendor_helmet_1|maggots:50||||} - {|ulirfendor_helmet_d1|||||} - }|}; -{ulirfendor_helmet_d1|That is most interesting, but you seem to have more pressing matters to attend to.||{{N|ulirfendor_infected_17|||||}}|}; -{ulirfendor_cured_1|I am glad to see that you are looking better than before. I assume you got the help you needed from Talion in Loneford?||{{Yes, Talion cured me of that thing.|ulirfendor_cured_2|||||}}|}; -{ulirfendor_cured_2|That\'s good to hear. I hope that .. thing .. didn\'t have any permanent side-effects on you.||{ - {I defeated the lich in the depths of the eastern cave.|ulirfendor_demon_s|darkprotector:10||||} - {I found a strange looking helmet among the remains of that lich. Do you know anything about it?|ulirfendor_helmet_s|toszylae:70||||} - }|}; - -{ulirfendor_helmet_1|Could it be? Hmm. Let me look at that thing.||{{N|ulirfendor_helmet_2|||||}}|}; -{ulirfendor_helmet_2|Those markings on it are most peculiar. It was found by the lich that you spoke of?||{{N|ulirfendor_helmet_3|||||}}|}; -{ulirfendor_helmet_3|Hmm. You know what, this could actually be connected to what the shrine speaks of - The Dark Protector||{{N|ulirfendor_helmet_4|||||}}|}; -{ulirfendor_helmet_4|I am not certain of what the term \'The Dark Protector\' refers to. At first I thought it might be some creature protecting something, but this helmet seems to fit better in on what the shrine speaks of.||{{N|ulirfendor_helmet_5|||||}}|}; -{ulirfendor_helmet_5|It could either be the helmet itself, or that the helmet has some effect on whoever wears it, meaning that the wearer will become the Dark Protector.||{{N|ulirfendor_helmet_6|||||}}|}; -{ulirfendor_helmet_6|Nevertheless, I am almost certain that this artifact is connected to what this shrine speaks of, and that the artifact is rich with Kazaul influence.||{{N|ulirfendor_helmet_7|||||}}|}; -{ulirfendor_helmet_7|As such, it would most certainly bring misery to the surroundings of whoever carries it. Directly or indirectly, I do not know.||{{N|ulirfendor_helmet_8|||||}}|}; -{ulirfendor_helmet_8|I say, we must destroy that item immediately to make sure that the Kazaul taint is forever cleansed from this place and to make sure it does not fall into the wrong hands.|{{0|darkprotector|15|}}|{ - {He he, a powerful item you say? How much would you think it is worth?|ulirfendor_helmet_worth|||||} - {What should we do in order to destroy it?|ulirfendor_helmet_n2|||||} - {Absolutely. I will do anything to protect the people from this thing.|ulirfendor_helmet_n1|||||} - {Interesting. How powerful could someone become by wearing this thing?|ulirfendor_helmet_power|||||} - }|}; -{ulirfendor_helmet_worth|Worth!? What difference would that make? We need to destroy it immediately!||{ - {How powerful could someone become by wearing this thing?|ulirfendor_helmet_power|||||} - {What should we do in order to destroy it?|ulirfendor_helmet_n2|||||} - {No. I will keep this item for myself instead.|ulirfendor_helmet_keep1|||||} - }|}; -{ulirfendor_helmet_power|I don\'t even want to think about that. It would surely bring misery to the surroundings of whoever wears it. We must destroy it immediately!||{ - {He he, sounds powerful. How much would you think it is worth?|ulirfendor_helmet_worth|||||} - {What should we do in order to destroy it?|ulirfendor_helmet_n2|||||} - {No. I will keep this item for myself instead.|ulirfendor_helmet_keep1|||||} - }|}; -{ulirfendor_helmet_n1|I\'m glad to hear that.||{{N|ulirfendor_helmet_n2|||||}}|}; -{ulirfendor_helmet_n2|To destroy it, I think it will suffice to use what we normally use when removing the taint of Kazaul - a vial of purifying spirit.||{{N|ulirfendor_helmet_n3|||||}}|}; -{ulirfendor_helmet_n3|Fortunately, I always carry some on me, so that won\'t be a problem.||{{N|ulirfendor_helmet_n4|||||}}|}; -{ulirfendor_helmet_n4|What could be a problem however, is the other thing we will need. This artifact is most likely connected to that lich you encountered.||{{N|ulirfendor_helmet_n5|||||}}|}; -{ulirfendor_helmet_n5|We would need to use the vial of purifying spirit on something powerful from that lich as well.||{{I managed to get the heart of the lich, would that do?|ulirfendor_helmet_n6|||||}}|}; -{ulirfendor_helmet_n6|The heart? Oh yes, that would surely do.|{{0|darkprotector|26|}}|{{N|ulirfendor_helmet_n7|||||}}|}; -{ulirfendor_helmet_n7|Quickly now, give me the helmet and the heart of the lich, and I will begin the procedure.||{ - {Here is the helmet.|ulirfendor_dp_proc_1||helm_protector0|1|0|} - {I think I should give this a second thought before we begin.|ulirfendor_helmet_n8|||||} - {No. I will keep this item for myself instead.|ulirfendor_helmet_keep1|||||} - }|}; -{ulirfendor_helmet_n8|Think all you want, but please hurry. We need to destroy this thing as soon as possible!|||}; -{ulirfendor_dp_proc_1|Thank you. Next, I need the heart of that lich.|{{0|darkprotector|30|}}|{{Here it is.|ulirfendor_dp_proc_2||toszylae_heart|1|0|}}|}; -{ulirfendor_dp_proc_2|Excellent. I will begin the procedure immediately.|{{0|darkprotector|31|}}|{{N|ulirfendor_dp_proc_3|||||}}|}; -{ulirfendor_dp_proc_3|(Ulirfendor places the helmet and the lich\'s heart on the ground before him, and opens his backpack of items.)||{{N|ulirfendor_dp_proc_4|||||}}|}; -{ulirfendor_dp_proc_4|(He pulls out a leathery potion case from his backpack, and takes out a vial of clear but almost shining liquid.)||{{N|ulirfendor_dp_proc_5|||||}}|}; -{ulirfendor_dp_proc_5|(Ulirfendor pours the contents of the vial on the helmet and the heart in circling motions, taking good care to not spill any on the ground.)||{{N|ulirfendor_dp_proc_6|||||}}|}; -{ulirfendor_dp_proc_6|It should be as simple as that really. Powerful stuff this.||{{N|ulirfendor_dp_proc_7|||||}}|}; -{ulirfendor_dp_proc_7|(The surface of the helmet seems to freeze, almost like it had a layer of ice on it.)||{{N|ulirfendor_dp_proc_8|||||}}|}; -{ulirfendor_dp_proc_8|(After a while, small cracks appear on the surface, making tiny sounds as they appear.)||{{N|ulirfendor_dp_proc_9|||||}}|}; -{ulirfendor_dp_proc_9|(The cracks start to get larger and more dense along the surface, until the helmet is completely covered by them.)||{{N|ulirfendor_dp_proc_10|||||}}|}; -{ulirfendor_dp_proc_10|Now, watch this. I love this part.||{{N|ulirfendor_dp_proc_11|||||}}|}; -{ulirfendor_dp_proc_11|(Ulirfendor takes aim with his foot and stomps the helmet with the heel of his boot in a powerful motion.||{{N|ulirfendor_dp_proc_12|||||}}|}; -{ulirfendor_dp_proc_12|(The helmet completely shatters, leaving nothing but a fine dust.)|{{0|darkprotector|35|}}|{{N|ulirfendor_dp_proc_13|||||}}|}; -{ulirfendor_dp_proc_13|Ha ha! Look at that!||{{N|ulirfendor_dp_proc_14|||||}}|}; -{ulirfendor_dp_proc_14|(He does the same with the heart that also seems to have completely frozen and gotten covered with cracks.)||{{N|ulirfendor_dp_proc_15|||||}}|}; -{ulirfendor_dp_proc_15|Ah, that sure felt good.||{{N|ulirfendor_dp_proc_16|||||}}|}; -{ulirfendor_dp_proc_16|You, my friend, have done a great deed here today. This thing would have brought great misery if it would have fallen into the wrong hands.||{{N|ulirfendor_dp_proc_17|||||}}|}; -{ulirfendor_dp_proc_17|The people of the surrounding towns are now safe from whatever misery that helmet would have brought. All thanks to you!||{{N|ulirfendor_dp_proc_18|||||}}|}; -{ulirfendor_dp_proc_18|As a token of my appreciation, I am willing to grant upon you a blessing of the Shadow.||{ - {What would the blessing do?|ulirfendor_dp_bless_2|||||} - {Thank you, but that will not be necessary. I am just happy to help.|ulirfendor_dp_bless_1|||||} - {Thank you, please go ahead.|ulirfendor_dp_bless_3|||||} - }|}; -{ulirfendor_dp_bless_1|You truly have a large heart.|{{0|darkprotector|41|}}|{{N|ulirfendor_dp_bless_6|||||}}|}; -{ulirfendor_dp_bless_2|The blessing will grant you the aid of the Shadow while in combat, protecting you from harmful effects that you opponent might inflict upon you.||{ - {Thank you, but that will not be necessary. I am just happy to help.|ulirfendor_dp_bless_1|||||} - {Thank you, please go ahead.|ulirfendor_dp_bless_3|||||} - }|}; -{ulirfendor_dp_bless_3|Very well, I will give you the dark blessing of the Shadow.||{{N|ulirfendor_dp_bless_4|||||}}|}; -{ulirfendor_dp_bless_4|(Ulirfendor starts chanting in a tongue that you do not recognize.)||{{N|ulirfendor_dp_bless_5|||||}}|}; -{ulirfendor_dp_bless_5|There. You now have the dark blessing of the Shadow upon you.|{{0|darkprotector|40|}{2|20|1|}}|{{N|ulirfendor_dp_bless_6|||||}}|}; -{ulirfendor_dp_bless_6|Thank you yet again for all you have done here.|||}; -{ulirfendor_helmet_keep1|What!? Keep it!? Have you gone mad? We need to destroy it to protect the people!||{ - {Who knows what power I could gain from it? I will keep this for myself.|ulirfendor_helmet_keep2|||||} - {It could be worth a lot. I will keep this for myself.|ulirfendor_helmet_keep2|||||} - {I think I should give this a second thought before we begin.|ulirfendor_helmet_n8|||||} - }|}; -{ulirfendor_helmet_keep2|What is this!? I knew there was something wrong about you the first time I saw you.|{{0|darkprotector|50|}}|{{N|ulirfendor_helmet_keep3|||||}}|}; -{ulirfendor_helmet_keep3|By the Shadow, I will stop you. Whatever it takes. You will not live to see the next day!|{{0|darkprotector|51|}}|{{Attack!|F|||||}}|}; - -{ulirfendor_dp_return1|Hello again. Have you made up your mind about what we talked about before?||{ - {What was that about destroying the helmet?|ulirfendor_helmet_8|||||} - {Can you tell me again what you think about this helmet?|ulirfendor_helmet_2|||||} - }|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{toszylae_guard|||{ - {|toszylae_guard_8|toszylae:45||||} - {|toszylae_guard_5|toszylae:42||||} - {|toszylae_guard_1|||||} - }|}; -{toszylae_guard_1|(The horrifying creature looks down on you with its burning eyes, and speaks in a wheezing voice)||{{N|toszylae_guard_s|||||}}|}; -{toszylae_guard_s|||{ - {|toszylae_guard_3_1|toszylae:32||||} - {|toszylae_guard_2_1|toszylae:15||||} - {|toszylae_guard_1_1|||||} - }|}; -{toszylae_guard_1_1|Kulauil hamar urum Kazaul\'te. Kazaul hamat urul.||{ - {What?|toszylae_guard_1_n|||||} - {Kazaul something?|toszylae_guard_1_n|||||} - }|}; -{toszylae_guard_1_n|(The creature turns away)||{{Attack!|toszylae_guard_1_n2|||||}{Leave the creature|X|||||}}|}; -{toszylae_guard_1_n2|(As you try to make your attack against the guardian, your arms are held back by an enormous force.)|||}; -{toszylae_guard_2_1|Kulauil hamar urum Kazaul\'te. Kazaul hamat urul.|{{0|toszylae|20|}}|{ - {This must be the phrase that Ulirfendor was looking for.|toszylae_guard_2_n|||||} - }|}; -{toszylae_guard_2_n|(The creature turns away)||{{Attack!|toszylae_guard_2_n2|||||}{Leave the creature|X|||||}}|}; -{toszylae_guard_2_n2|(As you try to make your attack against the guardian, your arms are held back by an enormous force.)|{{0|toszylae|21|}}||}; -{toszylae_guard_3_1|Kulauil hamar urum Kazaul\'te. Kazaul hamat urul.||{ - {Klaatu varmun ur Kazaul\'te|toszylae_guard_2_n|||||} - {Klaatu ur Kazaul\'te|toszylae_guard_2_n|||||} - {Klatam ur turum Kazaul\'te|toszylae_guard_4|||||} - {Klaatu.. verata.. n.. nick.. (hide the rest in a well-timed cough)|toszylae_guard_2_n|||||} - }|}; -{toszylae_guard_4|Kulum Kazaul.|{{0|toszylae|42|}}|{{N|toszylae_guard_5|||||}}|}; -{toszylae_guard_5|(Its eyes pulsate in an intense glow as the creature starts moving towards you.)||{{N|toszylae_guard_6|||||}}|}; -{toszylae_guard_6|(The guardian gives off a laughter that makes the hair on the back of your neck stand up.)||{{N|toszylae_guard_7|||||}}|}; -{toszylae_guard_7|Kazaul\'te vaarmun iktel urul.||{{N|toszylae_guard_8|||||}}|}; -{toszylae_guard_8|(It raises its claw-like hands above its head, looking to get ready to strike at you.)|{{0|toszylae|45|}}|{{Attack!|F|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{toszylae|||{ - {|toszylae_10|toszylae:50||||} - {|toszylae_1|||||} - }|}; -{toszylae_1|(The lich looks at you with its burning eyes, and glances at the remains of the guardian you defeated.)||{{N|toszylae_2|||||}}|}; -{toszylae_2|Kazaul\'te vaarmun iktel urul. Klatam ku turum Kazaul\'te?||{{N|toszylae_3|||||}}|}; -{toszylae_3|(The lich raises its hands towards the ceiling, chanting something you cannot understand.)||{{N|toszylae_4|||||}}|}; -{toszylae_4|(While chanting, it slowly lowers its hands forward, until pointing directly at you.)||{{N|toszylae_5|||||}}|}; -{toszylae_5|Klatam ku turum Kazaul\'te.||{{N|toszylae_6|||||}}|}; -{toszylae_6|(As if having swallowed a thousand needles, you are suddenly stricken with a cascading series of spikes of pain throughout your stomach.)|{{3|rotworm|999|}{0|maggots|10|}{0|toszylae|50|}}|{{N|toszylae_7|||||}}|}; -{toszylae_7|(You start to feel nauseous, and your stomach turns and twists - as if it has a life of its own.)||{{N|toszylae_8|||||}}|}; -{toszylae_8|(The pain increases slightly, and you start to realize that something is moving inside of you.)||{{N|toszylae_9|||||}}|}; -{toszylae_9|(The lich must have infected you with something.)||{{What is happening to me!?|toszylae_10|||||}}|}; -{toszylae_10|(The lich seems to enjoy seeing you in pain.)||{{You will pay for what you did to me!|F|||||}}|}; -{sign_toszylae|||{ - {|sign_toszylae_2|darkprotector:10||||} - {|sign_toszylae_1|||||} - }|}; -{sign_toszylae_1|(Among the remains of the lich \'Toszylae\' that you defeated, you find a strange looking helmet.)|{{0|darkprotector|10|}{1|sign_toszylae|0|}}||}; -{sign_toszylae_2|(You see the remains of the lich \'Toszylae\' that you defeated.)|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{sign_brimcave4|||{ - {|sign_ulirfendor_r|darkprotector:70||||} - {|sign_ulirfendor_8|darkprotector:66||||} - {|sign_ulirfendor_6|darkprotector:65||||} - {|sign_ulirfendor_1|||||} - }|}; -{sign_ulirfendor_1|In front of the shrine, you find a book laying in the sand. \'Reflections on Kazaul rituals\'.||{{N|sign_ulirfendor_2|||||}}|}; -{sign_ulirfendor_2|You quickly look through the book, and find several chants and rituals of Kazaul.||{{N|sign_ulirfendor_3|||||}}|}; -{sign_ulirfendor_3|There is one in particular that you spot, that talks of imbuing ancient artifacts with the power of Kazaul.||{{N|sign_ulirfendor_4|||||}}|}; -{sign_ulirfendor_4|The ritual itself would require the heart of a lich, and from the text surrounding the ritual in the book, it could surely restore the helmet to its former glory.|{{0|darkprotector|55|}}|{ - {Begin the ritual.|sign_ulirfendor_5|||||} - {Leave the shrine alone.|X|||||} - }|}; -{sign_ulirfendor_5|You place yourself in front of the shrine, kneeling like the drawings in the book show.|{{0|darkprotector|60|}}|{ - {Place the helmet in front of the shrine|sign_ulirfendor_6||helm_protector0|1|0|} - }|}; -{sign_ulirfendor_6|You place the helmet on the ground in front of you, leaning it slightly against the shrine.|{{0|darkprotector|65|}}|{ - {Place the heart of the lich in front of the shrine|sign_ulirfendor_7||toszylae_heart|1|0|} - }|}; -{sign_ulirfendor_7|You place the heart of the lich beside the helmet in front of the shrine.|{{0|darkprotector|66|}}|{{Speak the words of the ritual from the book|sign_ulirfendor_8|||||}}|}; -{sign_ulirfendor_8|You start reciting the words of the Kazaul tongue from the book, taking great care of saying the words exactly as the book states them.||{{N|sign_ulirfendor_9|||||}}|}; -{sign_ulirfendor_9|As you speak the words, you notice a faint glow coming from the shrine, and you get the eerie feeling that the sand on the ground almost moves by itself.||{{N|sign_ulirfendor_10|||||}}|}; -{sign_ulirfendor_10|The movements start to get more visible, almost as if there\'s something crawling under the sand.||{{N|sign_ulirfendor_11|||||}}|}; -{sign_ulirfendor_11|As you get closer to the end of the ritual, the helmet falls forward, face down in the sand.||{{N|sign_ulirfendor_12|||||}}|}; -{sign_ulirfendor_12|Once you speak the final words of the ritual, the ground sinks slightly in front of the shrine, taking part of the helmet down under the sand.||{{N|sign_ulirfendor_13|||||}}|}; -{sign_ulirfendor_13|As you pull it out and dust off the sand, you notice a change in texture on the part that was submerged in the sand.||{{Take the helmet|sign_ulirfendor_14|||||}}|}; -{sign_ulirfendor_14|You take the helmet, and examine it more closely.|{{0|darkprotector|70|}{1|sign_ulirfendor|0|}}|{{N|sign_ulirfendor_15|||||}}|}; -{sign_ulirfendor_15|Along the side, you notice some ornaments that were not there before. The helmet also gives a slight tingling feeling in the hands as you hold it.||{{N|sign_ulirfendor_16|||||}}|}; -{sign_ulirfendor_16|Completing the ritual must have restored the helmet to its former glory.|||}; -{sign_ulirfendor_r|You see the shrine of Kazaul, where you performed the Kazaul ritual.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{talion_infect_1|Oh my, what has happened to you? You don\'t look too well.||{ - {I was infected with something by a lich of Kazaul.|talion_infect_5|||||} - {A man called Ulirfendor told me he thought I might be infected with Kazaul rotworms.|talion_infect_2|||||} - {I was told to find you, and that you might be able to help me.|talion_infect_4|||||} - }|}; -{talion_infect_2|Ah, my old friend Ulirfendor. It\'s good to hear that he is still alive. Wait! What was that? Rotworms you say, eh? ||{{N|talion_infect_3|||||}}|}; -{talion_infect_3|Nasty things, they are. I have seen people going mad from the stomach pains, and I have seen people being eaten alive from the inside.||{ - {Are you able to help me?|talion_infect_4|||||} - {It\'s not that bad. I have had worse.|talion_infect_4|||||} - }|}; -{talion_infect_4|It\'s good that you came to see me. I might be able to help you.||{{N|talion_demon_1|||||}}|}; -{talion_infect_5|A lich of Kazaul eh? Then I am sure that whatever ails you are those cursed rotworms.||{{N|talion_infect_3|||||}}|}; -{talion_demon_1|Just to be sure, you did kill whatever creature that infected you with this, right?||{ - {Yes, I killed that lich.|talion_demon_2|darkprotector:10||||} - {No, I have not killed it yet.|talion_demon_3|||||} - }|}; -{talion_demon_2|Good. Then I am able to help you.||{{N|talion_infect_6|||||}}|}; -{talion_demon_3|Then you better go take care of that first!||{{Ok, I will be back once the lich is defeated.|X|||||}}|}; -{talion_infect_6|However, there is a slight problem. You see, normally my supply of potions and ingredients would be fully stocked. However with this trouble that we have here in Loneford, my supplies are lower than they have ever been before.||{{N|talion_infect_7|||||}}|}; -{talion_infect_7|I am not even able to go out and gather new supplies, what with the illness and all.||{ - {Then what can you do?|talion_infect_8|||||} - {Is there anything I can do to help?|talion_infect_8|||||} - {Bah! Then you are useless to me. Guess you should have prepared better before then.|talion_infect_9|||||} - }|}; -{talion_infect_9|Yes, I guess I should have.|||}; -{talion_infect_8|You know what, maybe you can go out and gather some items for me. With your condition, it is important that we hurry as much as we can.||{ - {What would you like me to do?|talion_infect_11|||||} - {Argh! The pains are getting worse! Isn\'t there anything you can do?|talion_infect_10|||||} - }|}; -{talion_infect_10|No, unfortunately not. Not with this few supplies I\'m sorry.||{ - {Fine. What would you like me to do?|talion_infect_11|||||} - {Bah! Then you are useless to me. Guess you should have prepared better before then.|talion_infect_9|||||} - }|}; -{talion_infect_11|For this particular cure to work, I would need help with gathering four items.||{{N|talion_infect_12|||||}}|}; -{talion_infect_12|Or .. well .. actually, eight items in total, but four different types. Eh .. well, you get the idea.||{{N|talion_infect_13|||||}}|}; -{talion_infect_13|Anyway, what you need to bring me is, first and foremost, some more fresh bones. Five bones will do I think. Make sure they are fresh. Any old skeleton will do, but I\'d rather take some fresh bones of some nasty animal.||{{N|talion_infect_14|||||}}|}; -{talion_infect_14|Secondly, I will need some animal fur to go with that. Two pieces of animal hair will surely do. I\'m sure any old animal fur from the wilderness outside town will do.||{{N|talion_infect_15|||||}}|}; -{talion_infect_15|Third, I will need a gland of poison from a creature called the Irdegh.||{{N|talion_infect_16|||||}}|}; -{talion_infect_16|Now, I have not seen an Irdegh myself, but I hear they are particularly nasty creatures. Venomous like nothing I\'ve heard of.||{ - {Ok, one Irdegh poison gland. Where can I find one?|talion_infect_17|||||} - {Got it. Anything else?|talion_infect_18|||||} - }|}; -{talion_infect_17|Some people have talked about seeing some of them far to the east, across the bridges.||{{Anything else?|talion_infect_18|||||}}|}; -{talion_infect_18|Lastly, I would need a clean empty vial to make the potion in. I hear that the potion-maker in Fallhaven has the best vials available.||{{N|talion_infect_19|||||}}|}; -{talion_infect_19|Bring me these things and I will be able to help you with your .. condition.|{{0|maggots|30|}}|{ - {Very well, I will be back shortly.|X|||||} - }|}; -{talion_infect_30|You return. Have you gathered those things that I asked for?||{ - {What was I supposed to collect again?|talion_infect_11|||||} - {I brought five bones for you.|talion_bone_s|||||} - {I brought two pieces of animal hair for you.|talion_hair_s|||||} - {I brought an Irdegh poison gland for you.|talion_irdegh_s|||||} - {I brought an empty vial for you.|talion_vial_s|||||} - {Do you know anything about the illness here in Loneford?|talion_1|loneford:11||||} - {Do you have anything to trade?|S|||||} - }|}; -{talion_infect_31|There are still some more of those items that I need.||{ - {What was I supposed to collect again?|talion_infect_11|||||} - {I brought five bones for you.|talion_bone_s|||||} - {I brought two pieces of animal hair for you.|talion_hair_s|||||} - {I brought an Irdegh poison gland for you.|talion_irdegh_s|||||} - {I brought an empty vial for you.|talion_vial_s|||||} - }|}; -{talion_gather_r|No need, you already brought me that before. But thank you anyway.||{{N|talion_gather_s|||||}}|}; -{talion_bone_s|||{{|talion_gather_r|maggots:40||||}{|talion_bone_1|||||}}|}; -{talion_bone_1|Oh, good. Please, give them to me.||{{Here you go.|talion_bone_2||bone|5|0|}{On second thought, I\'ll be right back.|X|||||}}|}; -{talion_bone_2|Thank you.|{{0|maggots|40|}}|{{N|talion_gather_s|||||}}|}; -{talion_hair_s|||{{|talion_gather_r|maggots:41||||}{|talion_hair_1|||||}}|}; -{talion_hair_1|Oh, good. Please, give them to me.||{{Here you go.|talion_hair_2||hair|2|0|}{On second thought, I\'ll be right back.|X|||||}}|}; -{talion_hair_2|Thank you.|{{0|maggots|41|}}|{{N|talion_gather_s|||||}}|}; -{talion_irdegh_s|||{{|talion_gather_r|maggots:42||||}{|talion_irdegh_1|||||}}|}; -{talion_irdegh_1|Oh, good. Please, give it to me.||{{Here you go.|talion_irdegh_2||irdegh|1|0|}{On second thought, I\'ll be right back.|X|||||}}|}; -{talion_irdegh_2|Thank you.|{{0|maggots|42|}}|{{N|talion_gather_s|||||}}|}; -{talion_vial_s|||{{|talion_gather_r|maggots:43||||}{|talion_vial_1|||||}}|}; -{talion_vial_1|Oh, good. Please, give it to me.||{ - {Here you go, one small empty vial.|talion_vial_2||vial_empty1|1|0|} - {Here you go, one empty vial.|talion_vial_2||vial_empty2|1|0|} - {On second thought, I\'ll be right back.|X|||||} - }|}; -{talion_vial_2|Thank you.|{{0|maggots|43|}}|{{N|talion_gather_s|||||}}|}; -{talion_gather_s|||{{|talion_gather_s2|maggots:40||||}{|talion_infect_31|||||}}|}; -{talion_gather_s2|||{{|talion_gather_s3|maggots:41||||}{|talion_infect_31|||||}}|}; -{talion_gather_s3|||{{|talion_gather_s4|maggots:42||||}{|talion_infect_31|||||}}|}; -{talion_gather_s4|||{{|talion_cure_1|maggots:43||||}{|talion_infect_31|||||}}|}; -{talion_cure_1|That\'s all I need to cure you. Good work.|{{0|maggots|45|}}|{{N|talion_cure_2|||||}}|}; -{talion_cure_2|Now, let\'s get this cure started. I just need to grind this .. and mix those .. and ..||{{N|talion_cure_3|||||}}|}; -{talion_cure_3|Give me a minute.||{{N|talion_cure_4|||||}}|}; -{talion_cure_4|(Talion mixes the ground up ingredients together in the vial you brought, with some leaves and berries that he kept with him.)||{{N|talion_cure_5|||||}}|}; -{talion_cure_5|(He gives the potion a thorough shake for quite a while.)||{{N|talion_cure_6|||||}}|}; -{talion_cure_6|There. Drink this. This should do it.||{{Drink the potion.|talion_cure_7|||||}}|}; -{talion_cure_7|(The potion smells rancid, but you manage to drink it all down. The pain from the stomach decreases, and you feel one of the rotworms crawling up into your mouth. You quickly spit the worm out into the now empty vial.)|{{0|maggots|50|}{1|potion_rotworm|0|}{3|rotworm|-99|}}|{{N|talion_cured_1|||||}}|}; -{talion_cured_1|Ah, that seems to have worked. Frankly, I was a little worried that it might not have worked, but seeing you spit out that worm really confirms it. Ha ha.||{ - {Yuck! Those things were inside of me?|talion_cured_2|||||} - {What now?|talion_cured_3|||||} - }|}; -{talion_cured_2|Yes. Nasty, aren\'t they? *chuckle*||{{N|talion_cured_3|||||}}|}; -{talion_cured_3|That one worm you spit out, you should make sure you hold on to that. It might be valuable in the future.||{ - {For what?|talion_cured_4|||||} - {Ok, I will hold on to it.|talion_cured_7|||||} - {I think I had better put it under my boot.|talion_cured_5|||||} - }|}; -{talion_cured_4|Well, you never know. Some people really like .. exotic things.||{{N|talion_cured_7|||||}}|}; -{talion_cured_5|It\'s your choice of course.||{{N|talion_cured_7|||||}}|}; -{talion_cured_7|Now, I know you must have gone through a lot to get infected with these things. You seem like the experienced type.||{{N|talion_cured_8|||||}}|}; -{talion_cured_8|Tell you what, I don\'t normally offer this to anyone, but you seem like you could use the help.||{{N|talion_cured_9|||||}}|}; -{talion_cured_9|Seeing as you managed to pull through all of this, I would be willing to offer you the help of giving you blessings of the Shadow if you want.|{{0|maggots|51|}}|{{Blessings of the Shadow?|talion_cured_10|||||}}|}; -{talion_cured_10|Yes. Well .. for a fee of course.||{ - {What blessings can you provide?|talion_bless_1|||||} - }|}; -{talion_bless_1|I am able to bless you with either the Shadow\'s strength, regeneration, accuracy, or even the blessing of the Shadow guardian.||{ - {I\'m interested in the blessing of Shadow strength|talion_bless_str_1|||||} - {I\'m interested in the blessing of Shadow regeneration|talion_bless_heal_1|||||} - {I\'m interested in the blessing of Shadow accuracy|talion_bless_acc_1|||||} - {I\'m interested in the Shadow guardian blessing|talion_bless_guard_1|||||} - {Never mind.|talion_0|||||} - }|}; -{talion_bless_str_1|The blessing of Shadow strength grants you more strength while attacking, thus increasing the amount of damage you do on each hit. I can give you the blessing for 300 gold.||{ - {Ok, I\'ll take it for 300 gold.|talion_bless_str_2||gold|300|0|} - {Never mind, let\'s go back to those other blessings.|talion_bless_1|||||} - }|}; -{talion_bless_heal_1|The blessing of Shadow regeneration will slowly heal you back if you get hurt. I can give you the blessing for 250 gold.||{ - {Ok, I\'ll take it for 250 gold.|talion_bless_heal_2||gold|250|0|} - {Never mind, let\'s go back to those other blessings.|talion_bless_1|||||} - }|}; -{talion_bless_acc_1|The blessing of Shadow accuracy grants you a keen sense of where best to strike your opponent, thus increasing the chance of a successful hit while fighting. I can give you the blessing for 250 gold.||{ - {Ok, I\'ll take it for 250 gold.|talion_bless_acc_2||gold|250|0|} - {Never mind, let\'s go back to those other blessings.|talion_bless_1|||||} - }|}; -{talion_bless_guard_1|Ah yes, the blessing of the Shadow guardian. The Shadow protects you in dark places, and keeps you safe where others might not see. I can give you the blessing for 400 gold.||{ - {Ok, I\'ll take it for 400 gold.|talion_bless_guard_2||gold|400|0|} - {Never mind, let\'s go back to those other blessings.|talion_bless_1|||||} - }|}; -{talion_bless_str_2|Very well. *starts chanting*|{{3|shadowbless_str|30|}}|{{N|talion_bless_2|||||}}|}; -{talion_bless_heal_2|Very well. *starts chanting*|{{3|shadowbless_heal|45|}}|{{N|talion_bless_2|||||}}|}; -{talion_bless_acc_2|Very well. *starts chanting*|{{3|shadowbless_acc|30|}}|{{N|talion_bless_2|||||}}|}; -{talion_bless_guard_2|Very well. *starts chanting*|{{3|shadowbless_guard|20|}}|{{N|talion_bless_2|||||}}|}; -{talion_bless_2|There. I hope you will find it useful on your travels.||{ - {Thank you, goodbye.|X|||||} - {How about some of those other blessings?|talion_bless_1|||||} - }|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{gylew|Beat it, kid. You shouldn\'t be out here.|||}; -{gylew_henchman|Hey, I\'m trying to admire the view here. Get out of my way.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{ingus|||{ - {|ingus_r1|sisterfight:10||||} - {|ingus_1|||||} - }|}; -{ingus_1|Hello there. I don\'t think I have seen you here in Remgard before.||{{N|ingus_speak1|||||}}|}; -{ingus_r1|Hello again. I hope you enjoy your stay in Remgard.||{{N|ingus_speak1|||||}}|}; -{ingus_speak1|How may I help you?||{ - {What is there to do around here?|ingus_2|||||} - {Is there a shop in town?|ingus_s1|||||} - {What is happening around town?|ingus_2|||||} - }|}; -{ingus_2|Oh, there\'s not much happening around here. We try to keep the town as peaceful as possible.||{{N|ingus_3|||||}}|}; -{ingus_3|We don\'t get many visitors up here in the mountains.||{{N|ingus_4s|||||}}|}; -{ingus_4s|||{ - {|ingus_4b|remgard2:45||||} - {|ingus_4a|||||} - }|}; -{ingus_4a|However, lately there has been some trouble here in town.||{ - {What trouble?|ingus_t1|||||} - {Never mind that, is there a shop in town?|ingus_s1|||||} - }|}; -{ingus_4b|Hopefully, we\'ll get a few more visitors now that you\'ve helped us with figuring out what happened to the people that went missing.||{ - {You are welcome. Anything else?|ingus_t3|||||} - {Is there a shop in town?|ingus_s1|||||} - }|}; -{ingus_t1|Oh, I don\'t know much about it. The guards say they have seen strange signs outside town, and some people have gone missing.||{{N|ingus_t2|||||}}|}; -{ingus_t2|I try to keep out of it though. Sounds like trouble to me.||{ - {Anything else?|ingus_t3|||||} - {Thank you, goodbye.|X|||||} - }|}; -{ingus_t3|Well, there\'s always the Elwille sisters, fighting as always.||{{N|ingus_t4s|||||}}|}; -{ingus_t4s|||{ - {|ingus_q1|sisterfight:71||||} - {|ingus_t4|||||} - }|}; -{ingus_t4|Last night, they must have kept the whole town awake, the way they were shouting at each other.||{{What are they fighting about?|ingus_t5|||||}}|}; -{ingus_t5|Oh .. nothing .. everything. I don\'t know. No one really puts much weight in their squabbling.||{{N|ingus_t6|||||}}|}; -{ingus_t6|They live in one of the cabins on the southern shore. *Ingus points to the south*.|{{0|sisterfight|10|}}|{ - {Thank you, I might go visit them. Goodbye.|X|||||} - {Thank you. Goodbye.|X|||||} - {Thank you. I wanted to ask you, is there a shop in town?|ingus_s1|||||} - }|}; -{ingus_s1|Shop? Oh yes, of course. There\'s Rothses\' and Arnal\'s shops right there. *Ingus points to the two nearby houses to the west*||{{N|ingus_s2|||||}}|}; -{ingus_s2|Also, if you have the coin, you can always spend it in the tavern down in town.||{ - {Thank you. What is happening around town?|ingus_2|||||} - {Thank you, goodbye.|X|||||} - }|}; -{ingus_q1|Unfortunately, for whatever reason, people that live in their neighborhood have been reporting the situation between the two of them has recently become more..., shall we say.., \'noticeable\'.||{{N|ingus_q2|||||}}|}; -{ingus_q2|I\'m afraid that if they don\'t resolve their differences soon on their own, that the city council will have to act and resolve the matter for them.||{{N|ingus_q3|||||}}|}; -{ingus_q3|It wouldn\'t be the first time the city council had to intervene in private matters that got out of hand.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{elwel|||{ - {|elwel_4|sisterfight:71||||} - {|elwel_3|sisterfight:20||||} - {|elwel_1|||||} - }|}; -{elwel_1|Go away, I don\'t want to talk to you!||{ - {Wow, you\'re the friendly type, aren\'t you?|elwel_2|||||} - {Goodbye.|X|||||} - }|}; -{elwel_2|(Elwel mutters to herself) Stupid kids ..|||}; -{elwel_3|I saw you talking to that cursed sister of mine. Don\'t listen to her, she always tries her best to portray me in the worst way possible.|{{0|sisterfight|21|}}||}; -{elwel_4|Now look what you did!|{{0|sisterfight|21|}}|{{N|elwyl_2|||||}}|}; -{elwyl|||{ - {|elwyl_cmp_1|sisterfight:71||||} - {|elwyl_res_2|sisterfight:70||||} - {|elwyl_pot_1|sisterfight:31||||} - {|elwyl_12|sisterfight:20||||} - {|elwyl_1|||||} - }|}; -{elwyl_1|Who are you? Did we invite you here? No, I didn\'t think so. Now get out!||{ - {Are you sisters?|elwyl_3|||||} - {I go wherever I wish.|elwyl_2|||||} - {Ok, I\'ll leave.|X|||||} - }|}; -{elwyl_2|Bah. Leave, before I call the guards over here!|||}; -{elwyl_3|Yes. Argh. It\'s not like I am proud of being a sister to .. her.||{{N|elwyl_4|||||}}|}; -{elwyl_4|She is the black sheep of the family. She never agrees to anything, and always complains. Just look at her.||{{N|elwyl_5|||||}}|}; -{elwyl_5|She even has the stomach to call ME the black sheep of the family, when it is clearly SHE that is causing all the trouble around here.||{{N|elwyl_6|||||}}|}; -{elwyl_6|She\'s always nagging me about how I should move out of what she considers to be HER house, when it in fact is MY house and SHE is the one that should move out so that things can settle down.||{{N|elwyl_8|||||}}|}; -{elwyl_8|Argh. I am so upset at her!||{ - {Good luck with that. I\'ll leave you to your fighting.|X|||||} - {Is there anything I can do to help?|elwyl_9|||||} - {Some people have been complaining that your squabbling has kept them awake at night.|elwyl_10|sisterfight:10||||} - }|}; -{elwyl_9|Yes, you can leave! I never invited you here. Leave, before I call the guards!|||}; -{elwyl_10|That\'s what I always tell her, to keep it down. She is insistent on shouting at me when we argue. I guess all of her shouting must have made her more or less deaf, since I also have to shout to her to make her understand.||{{N|elwyl_11|||||}}|}; -{elwyl_11|She doesn\'t stop either. I can\'t remember for how long this has been going on, it almost feels like forever.|{{0|sisterfight|20|}}|{{N|elwyl_12|||||}}|}; -{elwyl_12|Oh, my sister is just so stubborn! You know, last night, I was talking to her about those potions that Hjaldar used to make. The smell from his brewing used to reach into our house here.. Or, I mean .. my house here.||{{N|elwyl_13|||||}}|}; -{elwyl_13|So, I was talking to her about those potions of accuracy focus and how I always thought their blue liquid seemed so odd, since there were no blue things that he used while making them.||{{N|elwyl_14|||||}}|}; -{elwyl_14|Then all of a sudden, she started arguing with me about how I have things completely wrong. She insists that the potions were green.||{{N|elwyl_15|||||}}|}; -{elwyl_15|I can\'t understand why she would make such a big deal out of it, when the potion was clearly blue. I remember it distinctly. Argh, how stubborn she is! She wouldn\'t even admit that she is wrong!|{{0|sisterfight|30|}}|{ - {Are you sure it was blue?|elwyl_16|||||} - {Why make such a big thing out of what color some potion was?|elwyl_17|||||} - {Is there anything I can do to help you two?|elwyl_18|||||} - }|}; -{elwyl_16|Why .. yes .. of course. I am not wrong! They were clearly blue.||{ - {Why make such a big thing out of what color some potion was?|elwyl_17|||||} - {Is there anything I can do to help you two?|elwyl_18|||||} - }|}; -{elwyl_17|Exactly. She is clearly wrong, so why won\'t she just admit it, and we can move along?||{ - {Are you sure it was blue?|elwyl_16|||||} - {Is there anything I can do to help you two?|elwyl_18|||||} - }|}; -{elwyl_18|Maybe you could go visit Hjaldar and get one of those potions of accuracy focus, and we can both show her that she is clearly wrong.||{{N|elwyl_19|||||}}|}; -{elwyl_19|His house is up on the northeast shore of town. *Elwyl points outside*||{{N|elwyl_20|||||}}|}; -{elwyl_20|I\'m not sure why he doesn\'t make those potions anymore though. Maybe he still has some old ones still in supply that you may have?||{ - {I\'ll return with one of those potions.|elwyl_21|||||} - {I am not getting involved in this. You\'ll have to solve your own conflict.|elwyl_22|||||} - }|}; -{elwyl_21|Good. Maybe when you bring that potion, she will agree to being wrong for once!|{{0|sisterfight|31|}}||}; -{elwyl_22|Bah, you kids are never good for anything.|||}; -{elwyl_pot_1|Oh, it\'s you again. What do you want?||{ - {I have one of those potions of accuracy focus for you.|elwyl_res_1||pot_focus_ac|1|0|} - {I have a strong potion of accuracy focus for you.|elwyl_res_1||pot_focus_ac2|1|0|} - {You talked about some potion before. Could you repeat that?|elwyl_12|||||} - {Some people have been complaining that your squabbling has kept them awake at night.|elwyl_10|sisterfight:10||||} - }|}; -{elwyl_res_1|Oh good. Give me that.|{{0|sisterfight|70|}}|{{N|elwyl_res_2|||||}}|}; -{elwyl_res_2|Huh, what\'s this? It\'s yellow.. I was sure that it used to be blue. Let me smell it to make sure that it\'s the right kind of potion.||{{N|elwyl_res_3|||||}}|}; -{elwyl_res_3|Hm, yes, it smells exactly as I remember it. It must be the right potion.||{{N|elwyl_res_4|||||}}|}; -{elwyl_res_4|This means .. that Elwel was wrong anyway!||{{N|elwyl_res_5|||||}}|}; -{elwyl_res_5|Elwel, look at this, you were wrong! The potion wasn\'t green as you said, it\'s yellow! Why didn\'t you just listen to me?!||{{N|elwyl_res_6|||||}}|}; -{elwyl_res_6|Elwel, you are always trying your best to prove me wrong. Well look at this, now you are wrong for once!||{ - {Whatever, you two don\'t seem to get along very well. I\'ll leave you to your squabbling.|elwyl_res_7|||||} - {I hope that you two will get along some day.|elwyl_res_7|||||} - }|}; -{elwyl_res_7|Hey Elwel, you were wrong all along! Why won\'t you ever admit it when you are clearly wrong?|{{0|sisterfight|71|}}||}; -{elwyl_cmp_1|Oh, it\'s you again. Thanks for bringing me that potion earlier.||{{N|elwyl_res_7|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{hjaldar|||{ - {|hjaldar_pots_1|sisterfight:61||||} - {|hjaldar_r3|sisterfight:60||||} - {|hjaldar_r1|sisterfight:45||||} - {|hjaldar_7r|sisterfight:40||||} - {|hjaldar_1|||||} - }|}; -{hjaldar_1|Hello there. I am Hjaldar.||{{What do you do here?|hjaldar_2|||||}}|}; -{hjaldar_2|I used to be a potion-maker. In fact, I used to be the only potion-maker here in Remgard.||{{N|hjaldar_3|||||}}|}; -{hjaldar_3|That was good business. People even travelled here from other cities down the mountain.||{{What made you stop?|hjaldar_4|||||}}|}; -{hjaldar_4|Well, two things. Firstly, I am getting older and don\'t have the desire to be working full days, making potions for gold.||{{N|hjaldar_5|||||}}|}; -{hjaldar_5|Secondly, I ran out of most of the ingredients. Some of them are really hard to get.||{ - {Too bad. Nice talking to you, goodbye.|X|||||} - {I am looking for a potion of accuracy focus for the Elwille sisters, can you help with that?|hjaldar_6|sisterfight:31||||} - }|}; -{hjaldar_6|Oh, potions of accuracy focus. Yes, those were popular. Unfortunately, I can\'t help you with that now.||{{N|hjaldar_7|||||}}|}; -{hjaldar_7|My supply of Lyson marrow extract has gone dry. Without some of that, I can\'t make potions that are useful for anything really.|{{0|sisterfight|40|}}|{ - {Too bad. Thanks anyway. Goodbye.|X|||||} - {Is there somewhere I can get some, and bring it to you?|hjaldar_8|||||} - }|}; -{hjaldar_7r|Hello again. Sorry about not being able to help you with those potions of accuracy focus that you asked for.||{{N|hjaldar_7|||||}}|}; -{hjaldar_8|I doubt that. It is really hard to find. Only the most well-stocked potion-makers have it.||{{N|hjaldar_9|||||}}|}; -{hjaldar_9|I used to get my supply from my old friend Mazeg. I have no idea where he might be these days though.||{{N|hjaldar_10|||||}}|}; -{hjaldar_10|I guess, if you can find him, he might be able to provide you with some Lyson marrow extract.||{ - {Any ideas on where I might find him?|hjaldar_12|||||} - {This sounds like too much trouble. Never mind that potion.|hjaldar_11|||||} - }|}; -{hjaldar_11|Ok then. Sorry I couldn\'t help you. Goodbye.|||}; -{hjaldar_12|No, I don\'t know. Last time I saw him, he was headed west. From the looks of his backpack, it looked like he was getting ready for quite a long trip to the west.||{{N|hjaldar_13|||||}}|}; -{hjaldar_13|He even had gear for travelling through colder climates - snow and ice and that sort of thing.|{{0|sisterfight|41|}}|{ - {Thanks for the info. I will try to find him.|hjaldar_14|||||} - {This sounds like too much trouble. Never mind that potion.|hjaldar_11|||||} - }|}; -{hjaldar_14|Good luck finding him. If you do find him, which I doubt you do, please say hello to him from me, and tell him that I am well.|{{0|sisterfight|45|}}||}; -{hjaldar_r1|Hello again. Did you find my old friend Mazeg?||{ - {Yes, I brought you some Lyson marrow extract.|hjaldar_r2||lyson_marrow|1|0|} - {What was that you were saying about those potions of accuracy focus?|hjaldar_6|||||} - {What made you stop making potions?|hjaldar_4|||||} - {Any ideas on where I might find Mazeg?|hjaldar_12|||||} - }|}; -{hjaldar_r2|Oh wow. Yes, this is indeed some of that marrow extract. Nice work finding it!|{{0|sisterfight|60|}}|{{N|hjaldar_r4|||||}}|}; -{hjaldar_r3|Thanks for bringing me some of that marrow extract. Nice work finding it!||{{N|hjaldar_r4|||||}}|}; -{hjaldar_r4|Tell me, did you find Mazeg or did you get it from somewhere else?||{ - {I visited Mazeg up in the Blackwater Mountain settlement.|hjaldar_r5|||||} - {You made me run all the way to Blackwater Mountain, I sure hope those potions are worth it!|hjaldar_r5|||||} - }|}; -{hjaldar_r5|Blackwater Mountain? I\'m afraid I don\'t know where that is. Never mind, I hope that all is well with my old friend.||{ - {He told me to send you his warmest greetings.|hjaldar_r6|||||} - {He seemed like a pitiful old man that has seen the best of his days.|hjaldar_r7|||||} - }|}; -{hjaldar_r6|Good. Good. I am glad to hear he is well.||{{N|hjaldar_r8|||||}}|}; -{hjaldar_r7|Time has not been on his side, I see.||{{N|hjaldar_r8|||||}}|}; -{hjaldar_r8|Anyway. Let\'s make that potion that you asked for earlier. I even prepared the other ingredients for another potion beforehand.||{{N|hjaldar_r9|||||}}|}; -{hjaldar_r9|Now, let\'s see. Some of these.. *Hjaldar pulls out some dried up berries and puts them in his mortar*||{{N|hjaldar_r10|||||}}|}; -{hjaldar_r10|Add some of this into some clean vials..||{{N|hjaldar_r11|||||}}|}; -{hjaldar_r11|Just a pinch of these into one of these vials..||{{N|hjaldar_r12|||||}}|}; -{hjaldar_r12|Finally, the Lyson marrow extract..||{{N|hjaldar_r13|||||}}|}; -{hjaldar_r13|There. Now we just need to give them a good shake.||{{N|hjaldar_r14|||||}}|}; -{hjaldar_r14|*Hjaldar shakes the vials vigorously, one in each of his hands*||{{N|hjaldar_r15|||||}}|}; -{hjaldar_r15|Ah, that should do it. Here you go. One potion of accuracy focus and one potion of damage focus. I hope they will be useful to you.|{{0|sisterfight|61|}{1|hjaldar_pots|0|}}|{ - {Thank you.|X|||||} - {Whatever. I sure hope all this work is worth it!|X|||||} - }|}; -{hjaldar_pots_1|Thanks for contacting Mazeg for me earlier. With this Lyson marrow extract that you brought me, I can now make other potions for you if you want.||{ - {Let me see what potions you have.|S|||||} - {You are welcome, goodbye.|X|||||} - }|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{mazeg|||{ - {|mazeg_1|bwm_agent:240||||} - {|mazeg_2|||||} - }|}; -{mazeg_1|Welcome friend! Would you like to browse my selection of fine potions and ointments?||{ - {Sure. Show me what you have.|S|||||} - {I am looking for some Lyson marrow extract, for Hjaldar in Remgard.|mazeg_e_1|sisterfight:45||||} - }|}; -{mazeg_2|Welcome traveller. Have you come to ask for help from me and my potions?||{ - {Yes. Please show me what you have.|blackwater_notrust|||||} - {I am looking for some Lyson marrow extract, for Hjaldar in Remgard.|mazeg_e_1|sisterfight:45||||} - }|}; -{mazeg_e_1|||{ - {|mazeg_d|sisterfight:55||||} - {|mazeg_e_5b|sisterfight:51||||} - {|mazeg_e_5b|sisterfight:50||||} - {|mazeg_e_2|||||} - }|}; -{mazeg_d|I already sold you some before. Did you lose it? Please tell my old friend Hjaldar that I said hello.|||}; -{mazeg_e_2|Hjaldar, my old friend! Tell me, how is he these days?||{ - {He asked me to relay his greetings to you, and to tell you that he is well.|mazeg_e_3|||||} - {He is sick, and getting worse every day.|mazeg_e_4|||||} - }|}; -{mazeg_e_3|Oh, I am so glad to hear that! We sure did have some nice times while working together.||{{N|mazeg_e_5|||||}}|}; -{mazeg_e_4|I\'m sorry to hear that. He always seemed like a tough old boy to me.||{{N|mazeg_e_5|||||}}|}; -{mazeg_e_5|You asked for some Lyson marrow extract.||{{N|mazeg_e_5b|||||}}|}; -{mazeg_e_5b|Sure, I have it.||{{N|mazeg_e_6|||||}}|}; -{mazeg_e_6|||{ - {|mazeg_e_7a|bwm_agent:240||||} - {|mazeg_e_7b|||||} - }|}; -{mazeg_e_7a|Since you helped us up here in the Blackwater Mountain settlement earlier, I am willing to give you a discount on the price for some Lyson marrow extract. For 400 gold, I am willing to sell you some of it for my old friend Hjaldar.|{{0|sisterfight|50|}}|{ - {Here is 400 gold.|mazeg_e_9||gold|400|0|} - {Ouch, that much?! Is there anything you can do to lower the price?|mazeg_e_8a|||||} - {I\'ll return when I have the gold for it.|X|||||} - }|}; -{mazeg_e_8a|No, 400 gold it is. That\'s a really good price, considering how hard this stuff is to find. Besides, if it weren\'t for Hjaldar, I wouldn\'t even be selling this to you.||{ - {Here is 400 gold.|mazeg_e_9||gold|400|0|} - {I\'ll return when I have the gold for it.|X|||||} - }|}; -{mazeg_e_7b|For 800 gold, I am willing to sell you some of it for my old friend Hjaldar.|{{0|sisterfight|51|}}|{ - {Here is 800 gold.|mazeg_e_9||gold|800|0|} - {Ouch, that much?! Is there anything you can do to lower the price?|mazeg_e_8b|||||} - {I\'ll return when I have the gold for it.|X|||||} - }|}; -{mazeg_e_8b|No, 800 gold it is. That\'s a really good price, considering how hard this stuff is to find. Besides, if it weren\'t for Hjaldar, I wouldn\'t even be selling this to you.||{ - {Here is 800 gold.|mazeg_e_9||gold|800|0|} - {I\'ll return when I have the gold for it.|X|||||} - }|}; -{mazeg_e_9|Thanks. Here\'s some of the Lyson marrow extract.|{{0|sisterfight|55|}{1|lyson_marrow|0|}}|{{N|mazeg_e_10|||||}}|}; -{mazeg_e_10|Please give my warmest greetings to my good friend Hjaldar. Tell him that I am well.||{ - {Will do. Thanks and goodbye.|X|||||} - {Whatever. Goodbye.|X|||||} - }|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{sign_waterwaycave|You notice a slight draft blowing across your ankles as you stand admiring the quality of this woven coil of rope.||{ - {Take the rope.|sign_waterwaycave2|||||} - {Leave it alone.|X|||||} - }|}; -{sign_waterwaycave2|Despite your efforts to collect the rope, you find that it runs into what appears to be a crack in the stone wall before you. Unfortunately, this seems to be an adventure for another day.|||}; -{sign_bwm31|(You notice some torn papers on the floor. From the looks of it, these pages seem to have been torn from a larger journal.)||{{Read the journal.|sign_bwm31_1|||||}}|}; -{sign_bwm31_1|Brakas, day 4. Why, oh why did I venture up here?||{{N|sign_bwm31_2|||||}}|}; -{sign_bwm31_2|These things are too strong for me. The first few of them went down pretty easily, but these .. things .. up here are just too strong for me.||{{N|sign_bwm31_3|||||}}|}; -{sign_bwm31_3|I am now almost out of potions as well.||{{N|sign_bwm31_4|||||}}|}; -{sign_bwm31_4|As I am writing this journal, I can hear them growling outside the cabin. I need to rest some more before I can have a try at killing some of them again.||{{N|sign_bwm31_5|||||}}|}; -{sign_bwm31_5|(The paper is full of dirt, but you still manage to read most of it)||{{Continue reading.|sign_bwm31_6|||||}}|}; -{sign_bwm31_6|Brakas, day 7. By the Shadow, I cannot even get down the mountain now! These things are in the way, and I am too weak to get past them now.||{{N|sign_bwm31_7|||||}}|}; -{sign_bwm31_7|My potions are now all used up. How will I ever get out of here?!||{{N|sign_bwm31_8|||||}}|}; -{sign_bwm31_8|Getting weaker. Must rest.||{{Continue reading.|sign_bwm31_9|||||}}|}; -{sign_bwm31_9|Brakas, day 9. Success! I managed to kill some of the monsters that were closest to the cabin, and some of them were carrying vials of minor healing that I could pick up!||{{N|sign_bwm31_10|||||}}|}; -{sign_bwm31_10|I don\'t recall ever being so happy about seeing some of these potions!||{{N|sign_bwm31_11|||||}}|}; -{sign_bwm31_11|With these, I might be able to get down the mountain again!||{{N|sign_bwm31_12|||||}}|}; -{sign_bwm31_12|Ha ha, those bastards down in Prim didn\'t get rid of me that easily.||{{N|sign_bwm31_13|||||}}|}; -{sign_bwm31_13|Maybe if I gather enough of these potions from the monsters around the cabin, I might have enough to safely make it down again.||{{Continue reading.|sign_bwm31_14|||||}}|}; -{sign_bwm31_14|Brakas, day 10. I have now managed to gather enough healing potions to feel confident that I will make it down alive.||{{N|sign_bwm31_15|||||}}|}; -{sign_bwm31_15|I just hope that those disgusting snakes will stay away from me this time, with their nasty venom.||{{N|sign_bwm31_16|||||}}|}; -{sign_bwm31_16|If luck is on my side, I might even be home safe by nightfall.||{{N|sign_bwm31_17|||||}}|}; -{sign_bwm31_17|(The journal has no more pages)|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{jhaeld|||{ - {|jhaeld_idol_1|fiveidols:41||||} - {|jhaeld_completed|remgard2:45||||} - {|jhaeld_killalg_3|remgard2:41||||} - {|jhaeld_killalg_2|remgard2:40||||} - {|jhaeld_killalg|remgard2:21||||} - {|jhaeld_alg_3|remgard2:10||||} - {|jhaeld_rejected|remgard:110||||} - {|jhaeld_return8|remgard:80||||} - {|jhaeld_return6|remgard:75||||} - {|jhaeld_return1|remgard:50||||} - {|jhaeld_1|||||} - }|}; -{jhaeld_1|What, who are you? Don\'t bother me, child. We don\'t want kids running around in here.||{ - {Are you Jhaeld? I was sent here to help you investigate the missing people.|jhaeld_3|||||} - {Hey, watch that tone of yours. It would be a pity if more of your people would .. disappear.|jhaeld_2|||||} - }|}; -{jhaeld_2|Hrmpf. I don\'t take threats lightly. Especially not from snot-nosed kids like you.||{ - {I was sent here to help you investigate the missing people.|jhaeld_3|||||} - {You better get used to it with an attitude like that.|jhaeld_leave|||||} - }|}; -{jhaeld_reject||{{0|remgard|110|}}|{{|jhaeld_leave|||||}}|}; -{jhaeld_leave|I think you had better leave, before anything bad might happen to you.|||}; -{jhaeld_3|Yes, yes. The missing people. What could possibly a kid like you help with, hm?||{ - {I was thinking you could provide me with some tasks to help you with the investigation.|jhaeld_4|||||} - {The bridge guard told me to talk to you.|jhaeld_4|||||} - }|}; -{jhaeld_4|Hm, now that you are here you might as well make yourself useful instead of just standing there looking stupid. Even if you are a kid, you might be able to gather some information for me.||{ - {Sure, what do you need help with?|jhaeld_7|||||} - {Sigh. Ok. I guess.|jhaeld_7|||||} - {I\'d rather kill something.|jhaeld_6|||||} - {Hey, watch that tone of yours!|jhaeld_5|||||} - }|}; -{jhaeld_5|No, you watch that attitude of yours! Remember where you are and who you are talking to. I am Jhaeld, and you are in Remgard - which could be called *my* city.||{ - {Fine. What do you need help with?|jhaeld_7|||||} - {You don\'t scare me, old man!|jhaeld_leave|||||} - }|}; -{jhaeld_6|Ha ha. You? Killing something?! Now that\'s about the funniest thing I have heard all day. Just about.||{ - {Hey, watch that tone of yours!|jhaeld_5|||||} - {I can handle myself. What do you need help with?|jhaeld_7|||||} - {You just wait and see.|jhaeld_7|||||} - }|}; -{jhaeld_7|(Sigh) To even think that we need to get help from children to run errands now.||{{N|jhaeld_8|||||}}|}; -{jhaeld_8|I guess you know the background to this situation already. We have had some people disappear on us for some time now. We have no idea what has happened to the people that have disappeared, or even if they are still alive.||{{N|jhaeld_9|||||}}|}; -{jhaeld_9|Considering how many there are that have disappeared without anyone knowing what happened, it doesn\'t seem like they are out travelling.|{{0|remgard|40|}}|{{N|jhaeld_10|||||}}|}; -{jhaeld_10|Ok, so what I would like you to do for me is ask some people what they know of the missing people. The fact that you are not from around here might help you get information that neither me nor my guards would be able to acquire.||{ - {Sounds simple enough.|jhaeld_14|||||} - {Sure, I\'ll do it. Who do you want me to ask?|jhaeld_14|||||} - {I\'m not too sure about this. Will there be a reward?|jhaeld_11|||||} - {I\'m not too sure about this. Why would I want to help you people?|jhaeld_13|||||} - }|}; -{jhaeld_11|What, you have the arrogance to ask for a reward for helping us find the people that are missing? If it\'s gold you seek, I suggest you look somewhere else.||{ - {Fine, I\'ll do it. Who do you want me to ask?|jhaeld_14|||||} - {No reward, no help.|jhaeld_12|||||} - }|}; -{jhaeld_12|I knew you were just trouble. Sigh. Please leave me.||{ - {Fine, I\'ll do it. Who do you want me to ask?|jhaeld_14|||||} - {Suit yourself.|jhaeld_reject|||||} - }|}; -{jhaeld_13|Why!? It would be the right thing to do, of course. If you can\'t understand that, you had better go somewhere else.||{ - {Fine, I\'ll do it. Who do you want me to ask?|jhaeld_14|||||} - {I won\'t do it. I fail to see why I should help you.|jhaeld_reject|||||} - }|}; -{jhaeld_14|There are four people here in Remgard that I believe have more to tell than what we have managed to get out of them. I want you to go ask them what they know of the disappearances.|{{0|remgard|50|}}|{{N|jhaeld_15|||||}}|}; -{jhaeld_15|First, there\'s Norath and his wife Bethir that lives in the farmhouse on the southwestern shore. Bethir is nowhere to be found, and Norath might know more about where she is.|{{0|remgard|51|}}|{{N|jhaeld_16|||||}}|}; -{jhaeld_16|Secondly, as you might have heard, we have been blessed by a visit from a delegation of the Knights of Elythom here in Remgard. Unfortunately, one of the knights has vanished, which is most embarrassing for us. They can be found here in the tavern.|{{0|remgard|52|}}|{{N|jhaeld_17|||||}}|}; -{jhaeld_17|Third, the old woman Duaina usually has great wisdom to share, considering the experience she has with .. things out of the ordinary. You\'ll find her in her house to the south.|{{0|remgard|53|}}|{{N|jhaeld_18|||||}}|}; -{jhaeld_18|Lastly, you should go talk to Rothses, the armorer in town. He meets most people now and then, and might have picked up something that he won\'t dare tell us guards. His house is on the western side of town.|{{0|remgard|54|}}|{{N|jhaeld_19|||||}}|}; -{jhaeld_19|Please be as swift as possible.||{ - {What about that Algangror woman that lives outside town?|jhaeld_21|remgard:30||||} - {I\'ll go ask them.|jhaeld_20|||||} - }|}; -{jhaeld_20|As I said, please be as quick as possible.|||}; -{jhaeld_21|What was that? Are you still here? I told you to be as quick as possible.|{{0|remgard|59|}}|{ - {What about her? The bridge guard sent me to investigate that house, and seemed very upset when I mentioned that she\'s there.|jhaeld_22|||||} - {I\'ll go ask those people you mentioned.|jhaeld_20|||||} - }|}; -{jhaeld_22|Did you not hear me? I told you to be as quick as possible! That means you should go talk to those people instead of standing around here blabbing.||{ - {But the bridge guard seemed ...|jhaeld_23|||||} - {But I thought that ...|jhaeld_23|||||} - {What about the ...|jhaeld_23|||||} - {I\'ll go ask those people you mentioned.|jhaeld_20|||||} - }|}; -{jhaeld_23|Are you still talking? I knew you were nothing but trouble the moment I saw you. Now, can you please hurry up and go talk to those people?||{ - {Fine. I\'ll go ask them.|jhaeld_20|||||} - }|}; -{jhaeld_rejected|What now? Look, we don\'t want kids like you running around here, messing with our things.||{{N|jhaeld_leave|||||}}|}; -{jhaeld_return1|Did you talk to those people that I sent you to ask about the missing people?||{ - {Yes, I have talked to all of them.|jhaeld_return2|remgard:70||||} - {Can you repeat the names of those that you wanted me to ask?|jhaeld_14|||||} - {I\'m not too sure about this. Will there be a reward?|jhaeld_11|||||} - {I\'m not too sure about this. Why would I want to help you people?|jhaeld_13|||||} - {Not yet, but I will.|jhaeld_19|||||} - }|}; -{jhaeld_return2|Well, what did you find out?||{ - {Nothing. None of them told me anything new about the missing people.|jhaeld_return3|||||} - }|}; -{jhaeld_return3|So.. Let me get things straight. You went and asked them about the missing people, and they didn\'t tell you anything new?||{ - {No. None of them had anything new to say.|jhaeld_return4|||||} - {You heard me the first time.|jhaeld_return4|||||} - {Maybe you should have sent me to ask other people than these losers you sent me to.|jhaeld_return4|||||} - }|}; -{jhaeld_return4|Oh, I knew you were nothing but trouble the moment I saw you.||{{N|jhaeld_return5|||||}}|}; -{jhaeld_return5|I sent you to do a simple task, and you return with .. nothing!||{{N|jhaeld_return6|||||}}|}; -{jhaeld_return6|(Jhaeld mumbles) Stupid kids..|{{0|remgard|75|}}|{{N|jhaeld_return7|||||}}|}; -{jhaeld_return7|Fine then.||{{N|jhaeld_return8|||||}}|}; -{jhaeld_return8|I suggest you go look in other places if you really want to help us.|{{0|remgard|80|}}|{{N|jhaeld_return_s|||||}}|}; -{jhaeld_return_s|||{ - {|jhaeld_task2_n|fiveidols:20||||} - {|jhaeld_task2_f|remgard:59||||} - {|jhaeld_task2_y|remgard:30||||} - {|jhaeld_task2|||||} - }|}; -{jhaeld_task2_f|Maybe someone else knows something that we haven\'t taken into account yet. Also, I seem to recall you saying something about Algangror before, is that right?||{{Yes. As I tried to tell you, Algangror is hiding in that abandoned house outside town.|jhaeld_alg_3|||||}}|}; -{jhaeld_task2_y|Maybe someone else knows something that we haven\'t taken into account yet.||{ - {The bridge guard sent me to scout an abandoned house outside town.|jhaeld_alg_1|||||} - {Does the name \'Algangror\' mean anything to you?|jhaeld_alg_2|||||} - }|}; -{jhaeld_task2|Maybe someone else knows something that we haven\'t taken into account yet.||{ - {The bridge guard sent me to scout an abandoned house outside town.|jhaeld_alg_1|||||} - {I might know something, but I have promised not to tell anyone.|jhaeld_task2_1|remgard:31||||} - {I don\'t know anything else.|jhaeld_task2_n|||||} - {I\'ll go ask around.|jhaeld_task2_n|||||} - }|}; -{jhaeld_task2_1|A secret, eh? You would do well to tell me what you know. Lives may be at stake here.||{ - {The bridge guard sent me to scout an abandoned house outside town.|jhaeld_alg_1|||||} - {No, I will keep my word and not tell.|jhaeld_task2_2|||||} - {Never mind, it was nothing.|jhaeld_task2_n|||||} - {Never mind, I\'ll go ask around if anyone else knows anything.|jhaeld_task2_n|||||} - }|}; -{jhaeld_task2_2|Ah, someone with honor. I respect that, and will not ask any more.||{{N|jhaeld_task2_n|||||}}|}; -{jhaeld_task2_n|I have nothing more to say to you.|||}; -{jhaeld_alg_1|Hm, yes, and what of it?||{{I met a woman named Algangror in that house.|jhaeld_alg_2|||||}}|}; -{jhaeld_alg_2|Algangror?! Now that\'s a name I have not heard in a long time.||{{Algangror is hiding in that abandoned house outside town.|jhaeld_alg_3|||||}}|}; -{jhaeld_alg_3|If Algangror is here, this is grim news indeed.|{{0|remgard2|10|}}|{{N|jhaeld_alg_4|||||}}|}; -{jhaeld_alg_4|To be honest, I had heard about this before, but I dismissed all talk of it since I did not believe it. Now you tell me this also, and I am starting to think that it may be true. She may have returned.||{{Who is she?|jhaeld_alg_5|||||}}|}; -{jhaeld_alg_5|She used to live here in Remgard, during the days of prosperity. She even helped with the crops on some days.||{{N|jhaeld_alg_6|||||}}|}; -{jhaeld_alg_6|Then something happened. She started getting ideas, and occasionally locked herself in her house for several days. No one really knew what she was doing in there, but we all knew that she was up to no good.||{{N|jhaeld_alg_7|||||}}|}; -{jhaeld_alg_7|I can still recall the stench that came from her house. Ugh. What could possibly smell that bad?||{{N|jhaeld_alg_8|||||}}|}; -{jhaeld_alg_8|Anyway, we started questioning her, and tried to persuade her to tell what she was up to. Stubborn and crazy as she is, she refused of course.||{{N|jhaeld_alg_9|||||}}|}; -{jhaeld_alg_9|Things started getting worse, and the stench spread like a deep fog over the whole town. All of us living here in Remgard knew we had to act before she did something that could hurt us all.||{{N|jhaeld_alg_10|||||}}|}; -{jhaeld_alg_10|So we forced her to explain herself.||{{Did she tell?|jhaeld_alg_11|||||}}|}; -{jhaeld_alg_11|Would you believe it, she told us that what she believed in, and what she was doing was no concern of ours. She even had the stomach to tell us that she wanted to be left alone.||{{What did you do?|jhaeld_alg_12|||||}}|}; -{jhaeld_alg_12|Of course, we did what any sane man would do. We forced her to abandon her house and find somewhere else to live. Somewhere other than Remgard.||{{N|jhaeld_alg_13|||||}}|}; -{jhaeld_alg_13|You should have seen her. Nails long as your finger, and her face full of unwashed hair. Clearly, she was crazy and could not be reasoned with.||{{N|jhaeld_alg_14|||||}}|}; -{jhaeld_alg_14|When we marched her out of town, the children started crying out of fear of her.||{{N|jhaeld_alg_15|||||}}|}; -{jhaeld_alg_15|The worst thing though, is that she said she would put a curse on all of us.||{{N|jhaeld_alg_16|||||}}|}; -{jhaeld_alg_16|All of this was several seasons ago, and things have gone back to the usual business nowadays.||{{What now then, since she has returned?|jhaeld_alg_17|||||}}|}; -{jhaeld_alg_17|Yes. Her being back would explain the missing people. She must have done something to them. I fear for the worst.||{{N|jhaeld_alg_18|||||}}|}; -{jhaeld_alg_18|Considering the people that have disappeared, I frankly don\'t know what to do. As you know, even one of the Knights of Elythom has disappeared.||{{N|jhaeld_alg_19|||||}}|}; -{jhaeld_alg_19|Someone that can do that is dangerous indeed. I am not sure I would even risk sending the guards out there for her, in fear of what she might do.||{{So, what then?|jhaeld_alg_20|||||}}|}; -{jhaeld_alg_20|If I were to choose, I would rather not deal with it, and just seal the town bridge as safely as possible, to prevent any more people from disappearing.|{{0|remgard2|20|}}|{{N|jhaeld_alg_21s|||||}}|}; -{jhaeld_alg_21s|||{ - {|jhaeld_alg_21n|remgard2:21||||} - {|jhaeld_alg_21|||||} - }|}; -{jhaeld_alg_21n|I.. I don\'t know what to do.|||}; -{jhaeld_alg_21|I.. I don\'t know what to do.||{ - {I could help you if you want.|jhaeld_alg_24|||||} - {You pathetic fool. You would rather sit here and do nothing instead of confronting her?|jhaeld_alg_22|||||} - {Hah, sucks to be you!|jhaeld_alg_23|||||} - }|}; -{jhaeld_alg_22|I will not see more of my people get hurt, or whatever it is she has done to them. I will keep my people safe.||{ - {I could help you if you want.|jhaeld_alg_24|||||} - {Hah, sucks to be you!|jhaeld_alg_23|||||} - }|}; -{jhaeld_alg_23|Insults won\'t get you anywhere. The people that have disappeared are still missing, and may be hurt, while you run around handing out insults. I pity you.||{ - {I could help you if you want.|jhaeld_alg_24|||||} - {You pathetic fool. You would rather sit here and do nothing instead of confronting her?|jhaeld_alg_22|||||} - }|}; -{jhaeld_alg_24|If you really want to help us, then please be careful. She can not be trusted.||{{N|jhaeld_alg_25|||||}}|}; -{jhaeld_alg_25|However, if you were to find a way to make her disappear, we would of course be forever in your debt.||{ - {I\'ll see what I can do.|jhaeld_alg_26|||||} - {I have dealt with stronger foes.|jhaeld_alg_27|||||} - }|}; -{jhaeld_alg_26|Remember, please be careful! I would not want to be responsible for another person disappearing.|{{0|remgard2|21|}}||}; -{jhaeld_alg_27|I doubt it.||{{N|jhaeld_alg_26|||||}}|}; -{jhaeld_killalg|Hello again. What news do you bring?||{ - {Can you tell me the story of Algangror again?|jhaeld_alg_5|||||} - {I am still trying to find a way to make Algangror disappear.|jhaeld_alg_26|||||} - {Algangror is dead.|jhaeld_killalg_1|remgard2:35||||} - }|}; -{jhaeld_killalg_1|I find this very hard to believe. For to have killed Algangror would have been a difficult task, given her power.||{ - {I have brought you her ring as proof that what I say is true.|jhaeld_killalg_1b||algangror_ring|1|0|} - {No, never mind. I haven\'t actually defeated her yet.|jhaeld_alg_26|||||} - }|}; -{jhaeld_killalg_1b|I can hardly believe it! Yes, this is indeed her ring.|{{0|remgard2|40|}}|{{N|jhaeld_killalg_2|||||}}|}; -{jhaeld_killalg_2|You actually defeated her? I am so relieved! Tell me, how crazy was she? No, don\'t tell me, I don\'t want to hear more of her filth.||{{N|jhaeld_killalg_3|||||}}|}; -{jhaeld_killalg_3|This means that the people of Remgard are now safe from her, and it is all thanks to you! Who would have thought.|{{0|remgard2|41|}}|{{N|jhaeld_killalg_4|||||}}|}; -{jhaeld_killalg_4|I.. I don\'t know what to say. Thank you, that\'s the least I can say.||{ - {You are most welcome.|jhaeld_killalg_5|||||} - {That was a tough fight. Now, let\'s talk reward.|jhaeld_killalg_5|||||} - {Just another body behind me.|jhaeld_killalg_5|||||} - }|}; -{jhaeld_killalg_5|I would think that the whole town is in your debt, but they may not know it.||{{N|jhaeld_killalg_6|||||}}|}; -{jhaeld_killalg_6|Go talk to Rothses over at the west side of town. He should be able to help you improve some of your equipment.|{{0|remgard2|45|}}|{{N|jhaeld_completed|||||}}|}; -{jhaeld_completed|Again, thank you for all your help.|||}; -{jhaeld_idol_1|Please leave me be, child. I just had a sudden attack of nausea. I should probably lie down.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{norath|||{{|norath_1|||||}}|}; -{norath_1|Hello there. Can I help you?||{ - {I was sent by Jhaeld to ask about your missing wife.|norath_jhaeld1|remgard:51||||} - {Do you have anything to trade?|norath_2|||||} - {What do you do around here?|norath_3|||||} - }|}; -{norath_2|Me? No, I don\'t have anything to sell you. Does this look like a shop to you?||{ - {I was sent by Jhaeld to ask about your missing wife.|norath_jhaeld1|remgard:51||||} - {What do you do around here?|norath_3|||||} - }|}; -{norath_3|Well, usually I tend to the crops that we grow here. Now, I can\'t find the strength to do that though.||{ - {Why, what\'s wrong?|norath_4|||||} - }|}; -{norath_4|My wife, Bethir. She is gone, and no one seems to know where she is.||{{N|norath_5|||||}}|}; -{norath_5|I even went so far as to ask the guards to look for her, but she is nowhere to be found.||{ - {Are you sure she isn\'t just out of town running some errands?|norath_6|||||} - {Where do you think she has gone?|norath_7|||||} - {I was sent by Jhaeld to ask you about her.|norath_jhaeld1|remgard:51||||} - }|}; -{norath_6|If that were the case, I would have hoped she would have told me first. No, I can feel it - I am sure something bad has happened to her.||{ - {Where do you think she has gone?|norath_7|||||} - {I was sent by Jhaeld to ask you about her.|norath_jhaeld1|remgard:51||||} - }|}; -{norath_7|To be quite honest, I have no idea.||{ - {Are you sure she isn\'t just out of town running some errands?|norath_6|||||} - {I was sent by Jhaeld to ask you about her.|norath_jhaeld1|remgard:51||||} - }|}; -{norath_jhaeld1|What do you want me to say? She is missing.||{{Is there anything else you have found out that you didn\'t tell the guards earlier?|norath_jhaeld2|||||}}|}; -{norath_jhaeld2|No. I told those guards the whole story. If I were to find out more, I would immediately tell them of course.||{{N|norath_jhaeld3|||||}}|}; -{norath_jhaeld3|We did have a minor argument just the night before she went missing. But it was just a minor thing, nothing serious.||{{N|norath_jhaeld_s_1|||||}}|}; -{norath_jhaeld_s_1||{{0|remgard|61|}}|{{|norath_jhaeld_s_2|remgard:62||||}{|norath_jhaeld4|||||}}|}; -{norath_jhaeld_s_2|||{{|norath_jhaeld_s_3|remgard:63||||}{|norath_jhaeld4|||||}}|}; -{norath_jhaeld_s_3|||{{|norath_jhaeld_s_4|remgard:64||||}{|norath_jhaeld4|||||}}|}; -{norath_jhaeld_s_4||{{0|remgard|70|}}|{{|norath_jhaeld4|||||}}|}; -{norath_jhaeld4|Now, if you\'ll excuse me, I have things to tend to.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{krell|||{{|krell_1|||||}}|}; -{krell_1|Hey there. I am master Krell of the Knights of Elythom. How may we be of service?||{ - {Knights of Elythom? What\'s that?|krell_knights_1|||||} - {I was sent by Jhaeld to ask about the missing people.|krell_jhaeld1|remgard:52||||} - {What do you do around here?|krell_2|||||} - }|}; -{krell_2|Me and my band of knights are just visiting Remgard in .. shall we say .. unfinished business.||{{N|krell_3|||||}}|}; -{krell_3|As to the nature of our business here, that is something I would rather not disclose.||{{N|krell_4|||||}}|}; -{krell_4|We serve the order of Elythom.||{ - {What\'s that?|krell_knights_1|||||} - {Jhaeld sent me to ask about the missing people.|krell_jhaeld1|remgard:52||||} - }|}; -{krell_knights_1|We are an order of knights that hail from Brimhaven.||{{N|krell_knights_2|||||}}|}; -{krell_knights_2|You should visit our compound in Brimhaven, if you ever make your way there.||{{N|krell_knights_3|||||}}|}; -{krell_knights_3|We serve all types of clients, from the wealthiest to even the poorest of poor.||{{N|krell_knights_4|||||}}|}; -{krell_knights_4|Regardless, we always get the job done.||{{What types of work do you do?|krell_knights_5|||||}}|}; -{krell_knights_5|Mostly, we help people get back gold that other people owe them.||{{N|krell_knights_6|||||}}|}; -{krell_knights_6|We also help people find .. erm .. people that have gone missing.||{ - {About that, Jhaeld sent me to ask about the missing people.|krell_jhaeld1|remgard:52||||} - {Good luck with that.|X|||||} - }|}; -{krell_jhaeld1|Shh, not so loud!||{{N|krell_jhaeld2|||||}}|}; -{krell_jhaeld2|Yes, we have heard the reports that people have gone missing here in Remgard. Most .. unfortunate.||{{N|krell_jhaeld3|||||}}|}; -{krell_jhaeld3|We even had one of our knights disappear on us. Now, due to the nature of our order, I presume you can see how that puts us in a .. peculiar situation.||{{N|krell_jhaeld4|||||}}|}; -{krell_jhaeld4|You see, usually it is us knights that find .. missing people. Now, we have had one of our own disappear. This has never happened before, and we are really unsure about what to do about it.||{{N|krell_jhaeld5|||||}}|}; -{krell_jhaeld5|Granted, people in our order have succumbed in combat to greater foes, but to just .. disappear without a trace, that\'s unheard of.||{{N|krell_jhaeld6|||||}}|}; -{krell_jhaeld6|We have a strong connection to each other, and to have someone leave the order would be unthinkable.||{{N|krell_jhaeld7|||||}}|}; -{krell_jhaeld7|As you can see, this puts us in a difficult situation.||{ - {What do you know about the knight that is missing?|krell_jhaeld8|||||} - {Is there anything else you have found out that you didn\'t tell the guards earlier?|krell_jhaeld8|||||} - }|}; -{krell_jhaeld8|Well, we told the guards everything we know so far. They also seem to find this situation rather embarrassing, that they can\'t even keep a knight safe here in their town.||{{N|krell_jhaeld9|||||}}|}; -{krell_jhaeld9|We have no clues apart from the fact that she is missing, unfortunately. Where our sister knight is, is still a mystery to us.||{ - {N|krell_jhaeld_s_1|||||} - }|}; -{krell_jhaeld_s_1||{{0|remgard|62|}}|{{|krell_jhaeld_s_2|remgard:61||||}{|krell_jhaeld10|||||}}|}; -{krell_jhaeld_s_2|||{{|krell_jhaeld_s_3|remgard:63||||}{|krell_jhaeld10|||||}}|}; -{krell_jhaeld_s_3|||{{|krell_jhaeld_s_4|remgard:64||||}{|krell_jhaeld10|||||}}|}; -{krell_jhaeld_s_4||{{0|remgard|70|}}|{{|krell_jhaeld10|||||}}|}; -{krell_jhaeld10|For the sake of our order\'s reputation, please keep this to yourself if possible. We wouldn\'t want people to get the perception that the Knights of Elythom can be weakened in any way.|||}; -{elythom_knight1|Hello there. What can the Knights of Elythom do for you?||{ - {Knights of Elythom? What\'s that?|elythom_knight1_2|||||} - {That\'s a very nice suit of armour you have there.|elythom_knight1_3|||||} - }|}; -{elythom_knight1_2|Talk to master Krell over there, he can tell you all about us.|||}; -{elythom_knight1_3|Thank you, it\'s our standard set of armour that we use in the order. It takes a lot of scrubbing and polishing to make it this clean though.|||}; -{elythom_knight2|Hello. *cough*||{ - {Who are you?|elythom_knight1_2|||||} - {That\'s a very nice suit of armour you have there.|elythom_knight1_3|||||} - }|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{duaina|||{{|duaina_0|||||}}|}; -{duaina_0|You! I have seen you.||{ - {Jhaeld sent me to ask you about the people that have gone missing.|duaina_1|remgard:52||||} - {I don\'t think so, I\'ve never been here before.|duaina_stop|||||} - {Yes, I was just here, remember?|duaina_1|remgard:63||||} - }|}; -{duaina_1|The dreams and the visions. It is you! The child that challenges the beast. (Duaina gives you a terrified look)||{{So you have seen me in your visions?|duaina_2|||||}}|}; -{duaina_2|The sleeping beast. No, no. The blinding light. Oh, why have you come here? Have you come for me?||{{What are you talking about?|duaina_3|||||}}|}; -{duaina_3|Nooo, please spare me!||{{I\'m not here to get you, if that\'s what you are afraid of.|duaina_4|||||}}|}; -{duaina_4|I can see it in you. You have the gift. The gift that will destroy the beast. My visions were true.||{{Maybe you are confusing me with my brother Andor?|duaina_5|||||}}|}; -{duaina_5|A brother? Yes, that must be what I saw in my visions. It is all becoming clearer.||{{N|duaina_6|||||}}|}; -{duaina_6|The black hand sweeps over the land. The beast that hunts. Nooo! Leave this place!||{{I\'m not here to hurt you!|duaina_7|||||}}|}; -{duaina_7|The child and the brother. The unsuspecting people. The beast casts its shadow.||{{N|duaina_s_0|||||}}|}; -{duaina_s_0|I have seen you in my visions.||{{N|duaina_s_1|||||}}|}; -{duaina_s_1|||{{|duaina_s_1a|flagstone:60||||}{|duaina_s_2|||||}}|}; -{duaina_s_1a|Slaying the beast beneath the prison of Flagstone.||{{N|duaina_s_2|||||}}|}; -{duaina_s_2|||{{|duaina_s_2a|farrik:70||||}{|duaina_s_2b|farrik:90||||}{|duaina_s_3|||||}}|}; -{duaina_s_2a|Cooperating with the thieves in Fallhaven.||{{N|duaina_s_3|||||}}|}; -{duaina_s_2b|Working against the thieves in Fallhaven.||{{N|duaina_s_3|||||}}|}; -{duaina_s_3|||{{|duaina_s_3a|bjorgur_grave:50||||}{|duaina_s_3b|bjorgur_grave:60||||}{|duaina_s_4|||||}}|}; -{duaina_s_3a|Something about a dagger returned to an ancestor in a tomb.||{{N|duaina_s_4|||||}}|}; -{duaina_s_3b|Something about stealing a dagger in a dark tomb.||{{N|duaina_s_4|||||}}|}; -{duaina_s_4|||{{|duaina_s_4a|benbyr:30||||}{|duaina_jhaeld_s_1|||||}}|}; -{duaina_s_4a|Killing innocent sheep.||{{N|duaina_jhaeld_s_1|||||}}|}; -{duaina_jhaeld_s_1||{{0|remgard|63|}}|{{|duaina_jhaeld_s_2|remgard:61||||}{|duaina_8|||||}}|}; -{duaina_jhaeld_s_2|||{{|duaina_jhaeld_s_3|remgard:62||||}{|duaina_8|||||}}|}; -{duaina_jhaeld_s_3|||{{|duaina_jhaeld_s_4|remgard:64||||}{|duaina_8|||||}}|}; -{duaina_jhaeld_s_4||{{0|remgard|70|}}|{{|duaina_8|||||}}|}; -{duaina_8|(Duaina stares at you in silence while holding her hand over her mouth)||{ - {What else have you seen in your visions?|duaina_stop|||||} - {I don\'t understand.|duaina_stop|||||} - }|}; -{duaina_stop|(Duaina stares at you in silence)|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{rothses|||{ - {|rothses_c1|remgard2:45||||} - {|rothses_1|||||} - }|}; -{rothses_c1|Our hero enters my shop. I am honored. How may I help you? A new set of boots perhaps, or some new gloves?||{ - {Let me see what you have for sale.|S|||||} - {Jhaeld told me you could help me improve my equipment.|rothses_c2|remgard2:45||||} - }|}; -{rothses_c2|Oh yes, I can make modifications to most of our defensive equipment that I sell. Want me to look through your things to see if there\'s anything I can improve for you?||{ - {Sure, go ahead.|rothses_imp_s0|||||} - {No, I would not want you going through my stuff.|rothses_c3|||||} - {Maybe some other time.|rothses_c3|||||} - }|}; -{rothses_c3|Sure. I would be honored to have you back if you change your mind.|||}; -{rothses_1|Hi. How may I help you? A new set of boots perhaps, or some new gloves?||{ - {Let me see what you have for sale.|S|||||} - {Jhaeld sent me to ask you about the people that have gone missing.|rothses_3s|remgard:52||||} - {How is business?|rothses_2|||||} - }|}; -{rothses_2|It\'s ok, I guess. Not as good as I would like it to be, now that the gates to the town are closed. But people here still seem to need new pieces of leather every now and then.||{ - {Let me see what you have for sale.|S|||||} - {Jhaeld sent me to ask you about the people that have gone missing.|rothses_3s|remgard:52||||} - }|}; -{rothses_3s|||{{|rothses_19|remgard:64||||}{|rothses_3|||||}}|}; -{rothses_3|Oh, I don\'t know much about that. Funny you should ask. (Rothses gives you a suspicious look)||{{Are you sure? Anything you know or might have seen may be of interest.|rothses_4|||||}}|}; -{rothses_4|Well, you would think that I see most of what is going on here, considering my shop is this close to Remgard\'s connecting entrance bridge.||{{N|rothses_5|||||}}|}; -{rothses_5|However, I don\'t know anything about it. *cough*||{ - {Is there something you are not telling me?|rothses_7|||||} - {Did the guards ask you about what you know?|rothses_6|||||} - }|}; -{rothses_6|Oh yes, they\'ve been around asking everyone. I told them everything I know, already.||{{N|rothses_7|||||}}|}; -{rothses_7|I did see Bethir the night before she disappeared. She had some equipment to sell. Nothing out of the ordinary though.||{{N|rothses_8|||||}}|}; -{rothses_8|I did not see where she went after that.||{{N|rothses_9|||||}}|}; -{rothses_9|Look, I told all this to the guards before. Are you implying anything?||{ - {I\'ll keep my eye on you.|rothses_jhaeld_s_1|||||} - {Thank you for your cooperation.|rothses_jhaeld_s_1|||||} - }|}; -{rothses_jhaeld_s_1||{{0|remgard|64|}}|{{|rothses_jhaeld_s_2|remgard:61||||}{|rothses_20|||||}}|}; -{rothses_jhaeld_s_2|||{{|rothses_jhaeld_s_3|remgard:62||||}{|rothses_20|||||}}|}; -{rothses_jhaeld_s_3|||{{|rothses_jhaeld_s_4|remgard:63||||}{|rothses_20|||||}}|}; -{rothses_jhaeld_s_4||{{0|remgard|70|}}|{{|rothses_20|||||}}|}; -{rothses_19|Look, I told you before.||{{N|rothses_20|||||}}|}; -{rothses_20|Now, if you\'ll excuse me, I have things to do.|||}; -{rothses_imp_s0|Hm, let me see.||{{N|rothses_imp_s|||||}}|}; -{rothses_imp_s|||{{|rothses_imp_shield||remgard_shield_1|1|1|}{|rothses_imp_shield_w||remgard_shield_1|1|2|}{|rothses_imp_s3|||||}}|}; -{rothses_imp_s3|||{{|rothses_imp_gloves||gloves_combat1|1|1|}{|rothses_imp_gloves_w||gloves_combat1|1|2|}{|rothses_imp_s4|||||}}|}; -{rothses_imp_s4|||{{|rothses_imp_armour||armour_superior_chain|1|1|}{|rothses_imp_armour_w||armour_superior_chain|1|2|}{|rothses_imp_s5|||||}}|}; -{rothses_imp_s5|||{{|rothses_imp_n|||||}}|}; -{rothses_imp_n|No, you don\'t seem to have anything that I can improve. Come back later and I might be able to help you.|||}; -{rothses_imp_shield|That\'s a nice looking Remgard shield you have there. For 700 gold, I am able to improve it so that it blocks blows a bit better.||{ - {Sure, here is the gold.|rothses_imp_shield_1||gold|700|0|} - {Maybe later. Do I have anything else that you can improve?|rothses_imp_s3|||||} - }|}; -{rothses_imp_shield_1|||{{|rothses_imp_shield_2||remgard_shield_1|1|0|}{|rothses_imp_s3|||||}}|}; -{rothses_imp_shield_2|Here you go. One improved Remgard shield.|{{1|remgard_shield_2||}}|{{Do I have anything else that you can improve?|rothses_imp_s3|||||}}|}; -{rothses_imp_shield_w|That\'s a nice looking Remgard shield you are wearing. Remove it from your hands and I might be able to help you improve it, if you want.||{{Anything else?|rothses_imp_s3|||||}}|}; -{rothses_imp_gloves|Those are some nice looking combat gloves you have there. For 300 gold, I am able to improve them so that they block blows a bit better.||{ - {Sure, here is the gold.|rothses_imp_gloves_1||gold|300|0|} - {Maybe later. Do I have anything else that you can improve?|rothses_imp_s4|||||} - }|}; -{rothses_imp_gloves_1|||{{|rothses_imp_gloves_2||gloves_combat1|1|0|}{|rothses_imp_s4|||||}}|}; -{rothses_imp_gloves_2|Here you go. One pair of improved combat gloves.|{{1|gloves_combat2||}}|{{Do I have anything else that you can improve?|rothses_imp_s4|||||}}|}; -{rothses_imp_gloves_w|Those are some nice looking combat gloves you are wearing. Remove them from your hands and I might be able to help you improve them, if you want.||{{Anything else?|rothses_imp_s4|||||}}|}; -{rothses_imp_armour|Now that is one fine looking chain mail you have there! For 3000 gold, I am able to improve it so that it not only blocks blows better, but also hinders your attacks less.||{ - {Sure, here is the gold.|rothses_imp_armour_1||gold|3000|0|} - {Maybe later. Do I have anything else that you can improve?|rothses_imp_s5|||||} - }|}; -{rothses_imp_armour_1|||{{|rothses_imp_armour_2||armour_superior_chain|1|0|}{|rothses_imp_s5|||||}}|}; -{rothses_imp_armour_2|Here you go. One improved chain mail.|{{1|armour_chain_remg||}}|{{Do I have anything else that you can improve?|rothses_imp_s5|||||}}|}; -{rothses_imp_armour_w|Now that is one fine looking chain mail you are wearing. Remove it from your chest and I might be able to help you improve it, if you want.||{{Anything else?|rothses_imp_s5|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{remgard_villager1|I don\'t recognize you. You\'re not from Remgard, are you?||{ - {No, I am from a small settlement called Crossglen, and I am looking for my brother Andor.|remgard_villager1_2|||||} - }|}; -{remgard_villager1_2|Ok then. Good luck with that.|||}; -{remgard_villager2|Don\'t get in my way, I\'m trying to walk here, don\'t you see?||{ - {No problem, please go ahead.|X|||||} - {No, you get out of *my* way!|remgard_villager2_2|||||} - }|}; -{remgard_villager2_2|Hah! *snort*|||}; -{remgard_villager3|Have you seen my ring? I dropped it among these trees, I am sure. That was a pretty ring.|||}; -{remgard_villager4|Good day.|||}; -{remgard_villager5|Excuse me, I have no time to talk.|||}; -{remgard_villager6|You are not from around here, are you? If you ever need a place to stay, visit the tavern. I hear that Kendelow has a room available for rent.|||}; -{remgard_villager7|I have heard strange noises from across the water of lake Laeroth. I wonder what lurks on the shores of the other side.|||}; -{remgard_villager8|Hello.|||}; -{petdog|Woof! *pant* *pant*|||}; -{taylin|No, get away! They can\'t find me here. Don\'t give away my good hiding spot!|||}; -{larni|||{{|larni_2|fiveidols:42||||}{|larni_1|||||}}|}; -{larni_1|Hey, get out of here! This is my house!|||}; -{larni_2|(You see Larni holding his forehead.) Hey, *cough* get out of here! This is .. *cough* .. my house!|||}; -{caeda|So much work to do. I sure hope we will have some rain soon.|||}; -{arnal|||{{|arnal_2|fiveidols:43||||}{|arnal_1|||||}}|}; -{arnal_1|Welcome to my shop. Would you like to see what I have available?||{ - {Yes, please show me what you have.|S|||||} - {No thank you. Goodbye.|X|||||} - }|}; -{arnal_2|(Arnal clears his throat)||{{N|arnal_3|||||}}|}; -{arnal_3|Welcome to .. *cough* .. my shop. Would you like .. *cough* .. to see what I have available?||{ - {Yes, please show me what you have.|S|||||} - {No thank you. Goodbye.|X|||||} - {Are you all right?|arnal_4|||||} - {Get away from me, I don\'t want to catch whatever it is you are infected with!|X|||||} - }|}; -{arnal_4|I don\'t know what .. *cough* .. happened. I started getting dizzy and nauseous. Now this cough is really irritating. It must have been something I ate. *cough*|||}; -{skylenar|May you forever walk with the Shadow, my child.||{ - {Do you have anything to trade?|S|||||} - {What do you do around here?|skylenar_1|||||} - }|}; -{skylenar_1|I provide .. guidance to those that seek it. The Shadow guides us. It keeps us safe and comforts us when we sleep.||{{N|skylenar_2|||||}}|}; -{skylenar_2|Lately, it seems Remgard has been in dire need of the comfort that the Shadow provides.||{ - {I see. Goodbye.|X|||||} - {Do you have anything to trade?|S|||||} - }|}; -{atash|The Shadow follows us wherever we go. Go with the Shadow my child.||{{Shadow be with you.|X|||||}{Whatever, bye.|X|||||}}|}; -{remgard_guard1|I\'ve got my eye on you. Don\'t do anything stupid.|||}; -{remgard_prison_guard|Don\'t even think about it.|||}; -{remgard_drunk1|*burp* Ha ha! I never thought she would! Or was it the other way around? I can\'t remember.|||}; -{remgard_drunk2|*burp* This is the best place in all of the northern lands!||{{N|remgard_drunk2_2|||||}}|}; -{remgard_drunk2_2|Oh, hello there. *burp* Kid, I tell you, don\'t go looking for trouble even if you think you can handle it.||{{N|remgard_drunk2_3|||||}}|}; -{remgard_drunk2_3|I did once, and ended up in those horrid caverns of Mount Galmore.||{{N|remgard_drunk2_4|||||}}|}; -{remgard_drunk2_4|That place twists your mind. I tell you, don\'t go there, even if you think you do!||{ - {Mount Galmore, where is that?|remgard_drunk2_5|||||} - {I\'ll keep that in mind.|X|||||} - {Get out of my way!|X|||||} - }|}; -{remgard_drunk2_5|*burp* What was that? Were you saying something?|||}; -{remgard_farmer1|Oh, hello. I can\'t talk right now, must finish planting these crops.|||}; -{remgard_farmer2|I hope the lands will be good to us this season.|||}; -{chael|(Chael gives you a blank stare)||{{N|chael_2|||||}}|}; -{chael_2|Chael chop wood. Wood make Chael happy.|||}; -{morgisia|Guards! Someone has broken into my room and is trying to rob me!||{ - {That\'s right. Hand over all your belongings and you may still live.|morgisia_1|||||} - {But I was just..|morgisia_1|||||} - {Sorry, I thought..|morgisia_1|||||} - }|}; -{morgisia_1|Help! Guards!|||}; -{easturlie|Hey, this is my house. Get out of here before I call the guards!|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{kendelow|||{{|kendelow_1|remgard2:45||||}{|kendelow_2|||||}}|}; -{kendelow_1|I heard that you helped us get rid of that witch Algangror. Thank you.||{{N|kendelow_d|||||}}|}; -{kendelow_2|Welcome to my tavern. I hope you will find your stay a pleasant one.||{{N|kendelow_d|||||}}|}; -{kendelow_d|How may I be of service?||{ - {What is there to do around here?|kendelow_3|||||} - {Do you have anything to trade?|kendelow_shop|||||} - {Are there any rooms available?|kendelow_room_1|||||} - }|}; -{kendelow_shop|Oh sure. Here, have a look.||{{N|S|||||}}|}; -{kendelow_3|Most people here in Remgard tend to their crops. Other than that, I hear that Arnal the armorer over on the western shore has some good business trading.||{{N|kendelow_4|||||}}|}; -{kendelow_4|Also, we usually get a lot of visitors here in the tavern. Lately, it has been a lot fewer people in here though, with the closing of the bridge because of those missing people and all.||{{N|kendelow_5|||||}}|}; -{kendelow_5|On your way in, maybe you noticed that we even have a visit from the Knights of Elythom here in the tavern? It seems that more and more people are becoming aware of the hospitality of Remgard.||{{Thank you. I had some other questions.|kendelow_d|||||}}|}; -{kendelow_room_1|||{{|kendelow_room_2|nondisplay:21||||}{|kendelow_room_3|||||}}|}; -{kendelow_room_2|You have already rented my last room. We don\'t have any more rooms other than that one.|||}; -{kendelow_room_3|Why, yes, as a matter of fact, there is. I have one very fine room available upstairs.||{{N|kendelow_room_4|||||}}|}; -{kendelow_room_4|The previous tenant left in a hurry some days ago.||{{N|kendelow_room_5|||||}}|}; -{kendelow_room_5|You may rent the room for as long as you like for only 600 gold.||{ - {600 gold, are you mad!? That\'s a fortune.|kendelow_room_6s|||||} - {Is there anything you can do to lower the price?|kendelow_room_6s|||||} - {I\'ll take it. Here is the gold.|kendelow_room_8||gold|600|0|} - {I don\'t have that much gold.|kendelow_room_7|||||} - }|}; -{kendelow_room_6s|||{{|kendelow_room_6b|remgard2:45||||}{|kendelow_room_6a|||||}}|}; -{kendelow_room_6a|The price is fixed. I cannot go around handing out discounts to just anyone. Also, keep in mind that you may rent it for as long as you wish.||{ - {I\'ll take it. Here is the gold.|kendelow_room_8||gold|600|0|} - {I don\'t have that much gold.|kendelow_room_7|||||} - }|}; -{kendelow_room_6b|Since you helped us here in Remgard with that witch Algangror, I am prepared to offer you a discount. How about we say 400 gold for it instead?||{ - {I\'ll take it. Here is the gold.|kendelow_room_8||gold|400|0|} - {I don\'t have that much gold.|kendelow_room_7|||||} - }|}; -{kendelow_room_7|You are welcome to return once you have the gold, if you are still interested.||{{N|kendelow_d|||||}}|}; -{kendelow_room_8|Thank you. The room is upstairs. You may rent it for as long as you wish.|{{0|nondisplay|21|}}||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{arghes|||{{|arghes_2|andor:51||||}{|arghes_1|||||}}|}; -{arghes_1|You will find no business here, child.|||}; -{arghes_2|How interesting. The child from Fallhaven, here in Remgard?||{ - {I\'m not from Fallhaven, I am from Crossglen, west of Fallhaven.|arghes_3a|||||} - {Who are you?|arghes_3b|||||} - {How do you know where I am from?|arghes_3c|||||} - }|}; -{arghes_3a|Is that so? Hm, most interesting. It does not change anything, however.||{{N|arghes_4|||||}}|}; -{arghes_3b|Who I am is of no importance in this situation. You on the other hand, are most important.||{{N|arghes_4|||||}}|}; -{arghes_3c|I know .. a great deal of things.||{{N|arghes_4|||||}}|}; -{arghes_4|$playername - yes, that is what they call you.||{{How do you know my name? Who are you?|arghes_5|||||}}|}; -{arghes_5|Let\'s just say that I am a .. friend. You would do well to keep your .. friends close.||{{N|arghes_6|||||}}|}; -{arghes_6|Now, how may I help you? Equipment? Information?||{ - {Let me see what you have to trade.|arghes_shop|||||} - {What information do you have?|arghes_7|||||} - }|}; -{arghes_shop|Certainly.||{{N|S|||||}}|}; -{arghes_7|Hm, let me see.||{{N|arghes_8|||||}}|}; -{arghes_8|No, I cannot tell you anything at this time. You are welcome to return once your path has become .. clearer.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{perester|If you are looking for Duaina, she is out in the backyard.|||}; -{freen|Sorry, we are closed. If you want to practice your reading skills, please come back another day. If there is a specific book you are looking for, I might be able to help you.||{{No thank you. Goodbye.|X|||||}}|}; -{almars|He he. They will never know what hit them.||{{N|almars_1|||||}}|}; -{almars_1|Oh, hello! Never mind me, I am just strolling along here. Nothing strange about that. See?|||}; -{carthe|||{{|carthe_1|fiveidols:45||||}{|carthe_2|||||}}|}; -{carthe_1|*cough* Please leave me be. I haven\'t *cough* done anything!|||}; -{carthe_2|Hey, what are you doing in here? Don\'t try any funny business.|||}; -{emerei|We don\'t get many visitors here these days. I hope you like what you see here in Remgard.|||}; -{janach|This is no place for children. You had better leave.|||}; -{perlynn|See this? The harvested crops have begun to rot. Argh, I knew we should have fixed that door when we had the chance.|||}; -{maelf|Ah, isn\'t this place nice? What else could anyone wish for? This place has all that a man needs - good food, a warm bed and people to exchange stories with.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{ervelyn|||{ - {|ervelyn_gave1|remgard2:46||||} - {|ervelyn_give1|remgard2:45||||} - {|ervelyn_1|||||} - }|}; -{ervelyn_gave1|Hello again, my friend. You are always welcome here.||{{N|ervelyn_d|||||}}|}; -{ervelyn_1|Hello there. Welcome to my shop.||{{N|ervelyn_d|||||}}|}; -{ervelyn_d|How may I be of service?||{ - {Let me see what you have to trade.|ervelyn_shop|||||} - {Never mind. Goodbye.|X|||||} - }|}; -{ervelyn_shop|Certainly.||{{N|S|||||}}|}; -{ervelyn_give1|It is you! I heard what you did, helping us with that witch Algangror. You have my thanks, friend!||{{N|ervelyn_give2|||||}}|}; -{ervelyn_give2|As a token of my appreciation, please accept this hat that I made. May it guide you through the blinding light.|{{1|ervelyn_hat||}{0|remgard2|46|}}|{{Thank you.|X|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{reinkarr|You look just like an adventurer. Tell me child, what brings you here?||{ - {Who are you?|reinkarr_3|||||} - {I\'m looking for my brother Andor.|reinkarr_1|||||} - {I\'m just looking for trouble.|reinkarr_2|||||} - }|}; -{reinkarr_1|Ok then. Good luck with that.||{{Who are you?|reinkarr_3|||||}}|}; -{reinkarr_2|Ha ha, that sure sounds like an adventurer! Guts, that\'s what you need to be a successful adventurer, child. You don\'t seem to lack courage, if I may say so.||{{Who are you?|reinkarr_3|||||}}|}; -{reinkarr_3|I am Reinkarr. I guess you could call me an adventurer of sorts.||{{Any good tales to tell?|reinkarr_4|||||}}|}; -{reinkarr_4|No, not really. I never got the hang of the whole adventuring business. Me and some other fellows went looking for these .. crystals .. that we had heard about.||{{What crystals?|reinkarr_5|||||}}|}; -{reinkarr_5|Doesn\'t really matter. We never found any of them anyway.||{{What crystals were you looking for?|reinkarr_6|||||}}|}; -{reinkarr_6|They were called \'Oegyth crystals\'. Supposedly very powerful and worth a fortune.||{ - {I have one of those.|reinkarr_oeg_1||oegyth|1|1|} - {So what made you stop looking?|reinkarr_8|||||} - {What are they?|reinkarr_7|||||} - }|}; -{reinkarr_7|Actually, all I know is that they are some sort of crystal. As I said, they are supposedly very powerful. We were only looking for them so that we could sell them and become rich.||{{What made you stop looking?|reinkarr_8|||||}}|}; -{reinkarr_8|Just the boredom of it, I guess. We never were any good at the whole fighting thing, and as such we never found one of those things.||{{N|reinkarr_9|||||}}|}; -{reinkarr_9|Anyway, it\'s been nice talking to you, kid. Take care.|||}; -{reinkarr_oeg_1|What!? You actually have one of those things? Let me see. Yes, that sure matches the description I read.||{{N|reinkarr_oeg_2|||||}}|}; -{reinkarr_oeg_2|You would do well to keep that to yourself, kid. Whatever you do, don\'t lose it, and don\'t go around showing it to everyone you might meet. You could get in serious trouble.||{{What can I do with it?|reinkarr_oeg_3|||||}}|}; -{reinkarr_oeg_3|I hear there are merchants that would do anything to get their hands on some of those crystals. You should seek out the merchants in one of the larger cities, and ask them.||{{N|reinkarr_oeg_4|||||}}|}; -{reinkarr_oeg_4|Please be careful though!||{{N|reinkarr_9|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{jhaeld_bed|||{{|jhaeld_bed_2|fiveidols:41||||}{|jhaeld_bed_3|fiveidols:31||||}{|jhaeld_bed_1|||||}}|}; -{jhaeld_bed_1|You see a bed.|||}; -{jhaeld_bed_2|You see a bed. The idol is still where you left it.|||}; -{jhaeld_bed_3|You see a bed, that you suppose must be Jhaeld\'s bed.||{{Hide one of the idols under the bed.|jhaeld_bed_4s1||algangror_idol|1|0|}{Leave the bed alone.|X|||||}}|}; -{jhaeld_bed_4s1||{{0|fiveidols|41|}}|{{|jhaeld_bed_4s2|fiveidols:42||||}{|jhaeld_bed_4|||||}}|}; -{jhaeld_bed_4s2|||{{|jhaeld_bed_4s3|fiveidols:43||||}{|jhaeld_bed_4|||||}}|}; -{jhaeld_bed_4s3|||{{|jhaeld_bed_4s4|fiveidols:44||||}{|jhaeld_bed_4|||||}}|}; -{jhaeld_bed_4s4|||{{|jhaeld_bed_4s5|fiveidols:45||||}{|jhaeld_bed_4|||||}}|}; -{jhaeld_bed_4s5||{{0|fiveidols|50|}}|{{|jhaeld_bed_4|||||}}|}; -{jhaeld_bed_4|You hide the idol under the bed.|||}; - -{larni_bed|||{{|larni_bed_2|fiveidols:42||||}{|larni_bed_3|fiveidols:32||||}{|larni_bed_1|||||}}|}; -{larni_bed_1|You see a bed and nightstand.|||}; -{larni_bed_2|You see a bed and nightstand. The idol is still where you left it.|||}; -{larni_bed_3|You see a bed and nightstand. This must be Larni\'s bed.||{{Hide one of the idols under the bed.|larni_bed_4s1||algangror_idol|1|0|}{Leave the bed alone.|X|||||}}|}; -{larni_bed_4s1||{{0|fiveidols|42|}}|{{|larni_bed_4s2|fiveidols:41||||}{|larni_bed_4|||||}}|}; -{larni_bed_4s2|||{{|larni_bed_4s3|fiveidols:43||||}{|larni_bed_4|||||}}|}; -{larni_bed_4s3|||{{|larni_bed_4s4|fiveidols:44||||}{|larni_bed_4|||||}}|}; -{larni_bed_4s4|||{{|larni_bed_4s5|fiveidols:45||||}{|larni_bed_4|||||}}|}; -{larni_bed_4s5||{{0|fiveidols|50|}}|{{|larni_bed_4|||||}}|}; -{larni_bed_4|You hide the idol under the bed.|||}; - -{arnal_bed|||{{|arnal_bed_2|fiveidols:43||||}{|arnal_bed_3|fiveidols:33||||}{|arnal_bed_1|||||}}|}; -{arnal_bed_1|You see a bed and nightstand.|||}; -{arnal_bed_2|You see a bed and nightstand. The idol is still where you left it.|||}; -{arnal_bed_3|You see a bed and nightstand. This must be Arnal\'s bed.||{{Hide one of the idols under the bed.|arnal_bed_4s1||algangror_idol|1|0|}{Leave the bed alone.|X|||||}}|}; -{arnal_bed_4s1||{{0|fiveidols|43|}}|{{|arnal_bed_4s2|fiveidols:41||||}{|arnal_bed_4|||||}}|}; -{arnal_bed_4s2|||{{|arnal_bed_4s3|fiveidols:42||||}{|arnal_bed_4|||||}}|}; -{arnal_bed_4s3|||{{|arnal_bed_4s4|fiveidols:44||||}{|arnal_bed_4|||||}}|}; -{arnal_bed_4s4|||{{|arnal_bed_4s5|fiveidols:45||||}{|arnal_bed_4|||||}}|}; -{arnal_bed_4s5||{{0|fiveidols|50|}}|{{|arnal_bed_4|||||}}|}; -{arnal_bed_4|You hide the idol under the bed.|||}; - -{emerei_bed|||{{|emerei_bed_2|fiveidols:44||||}{|emerei_bed_3|fiveidols:34||||}{|emerei_bed_1|||||}}|}; -{emerei_bed_1|You see a bed and nightstand.|||}; -{emerei_bed_2|You see a bed and nightstand. The idol is still where you left it.|||}; -{emerei_bed_3|You see a bed and nightstand. This must be Emerei\'s bed.||{{Hide one of the idols under the bed.|emerei_bed_4s1||algangror_idol|1|0|}{Leave the bed alone.|X|||||}}|}; -{emerei_bed_4s1||{{0|fiveidols|44|}}|{{|emerei_bed_4s2|fiveidols:41||||}{|emerei_bed_4|||||}}|}; -{emerei_bed_4s2|||{{|emerei_bed_4s3|fiveidols:42||||}{|emerei_bed_4|||||}}|}; -{emerei_bed_4s3|||{{|emerei_bed_4s4|fiveidols:43||||}{|emerei_bed_4|||||}}|}; -{emerei_bed_4s4|||{{|emerei_bed_4s5|fiveidols:45||||}{|emerei_bed_4|||||}}|}; -{emerei_bed_4s5||{{0|fiveidols|50|}}|{{|emerei_bed_4|||||}}|}; -{emerei_bed_4|You hide the idol under the bed.|||}; - -{carthe_bed|||{{|carthe_bed_2|fiveidols:45||||}{|carthe_bed_3|fiveidols:35||||}{|carthe_bed_1|||||}}|}; -{carthe_bed_1|You see a bed and nightstand.|||}; -{carthe_bed_2|You see a bed and nightstand. The idol is still where you left it.|||}; -{carthe_bed_3|You see a bed and nightstand. This must be Carthe\'s bed.||{{Hide one of the idols under the bed.|carthe_bed_4s1||algangror_idol|1|0|}{Leave the bed alone.|X|||||}}|}; -{carthe_bed_4s1||{{0|fiveidols|45|}}|{{|carthe_bed_4s2|fiveidols:41||||}{|carthe_bed_4|||||}}|}; -{carthe_bed_4s2|||{{|carthe_bed_4s3|fiveidols:42||||}{|carthe_bed_4|||||}}|}; -{carthe_bed_4s3|||{{|carthe_bed_4s4|fiveidols:43||||}{|carthe_bed_4|||||}}|}; -{carthe_bed_4s4|||{{|carthe_bed_4s5|fiveidols:44||||}{|carthe_bed_4|||||}}|}; -{carthe_bed_4s5||{{0|fiveidols|50|}}|{{|carthe_bed_4|||||}}|}; -{carthe_bed_4|You hide the idol under the bed.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{remgard_tavern_room|You are not allowed to enter this room until you have rented it.|||}; -{sign_waterway6|South: Brimhaven\nWest: Loneford\nEast: Brightport, Lake Laeroth|||}; -{sign_waterway9|West: Loneford\nEast: Brightport, Lake Laeroth|||}; -{sign_waterway11|West: Loneford\nSouth: Brightport|||}; -{sign_remgard0|Welcome to Lake Laeroth and the city of Remgard!|||}; -{wild16_cave|The thicket is too dense for you to get through.|||}; -{sign_wild16|||{ - {|sign_wild16_r|kaverin:100||||} - {|sign_wild16_1|||||} - }|}; -{sign_wild16_r|You squeeze through the narrow opening of the cave.|||}; -{sign_wild16_1|You squeeze through the narrow opening of the cave. The stale air that hangs heavy within the damp cave, with its hints of mold and old parchment, fills your nose.|{{0|kaverin|100|}}|{{N|sign_wild16_2|||||}}|}; -{sign_wild16_2|This must be the cave that the map leads to. This must be Vacor\'s old hideout.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{kaverin|||{ - {|kaverin_decline2|kaverin:21||||} - {|kaverin_fight_1|kaverin:60||||} - {|kaverin_done_ret|kaverin:90||||} - {|kaverin_done3|kaverin:45||||} - {|kaverin_done1|kaverin:40||||} - {|kaverin_return1|kaverin:25||||} - {|kaverin_accept2|kaverin:22||||} - {|kaverin_8r|kaverin:20||||} - {|kaverin_1|||||} - }|}; -{kaverin_1|From the looks of you, you don\'t seem to be from around here. That makes two of us then. He he.||{{I\'m from the village of Crossglen, far to the west of here.|kaverin_2|||||}}|}; -{kaverin_2|Crossglen! I know that place, it\'s not far from Fallhaven, right?||{{N|kaverin_3|||||}}|}; -{kaverin_3|I have an old .. shall we say .. friend .. from Fallhaven. Goes by the name of Unzel.||{{N|kaverin_4|||||}}|}; -{kaverin_4|You wouldn\'t by any chance have met him, would you?|{{0|kaverin|10|}}|{ - {No, I\'ve never met him.|kaverin_5|||||} - {Yes, I\'ve met that fool. He was an easy kill.|kaverin_6|vacor:60||||} - {Yes, I have met him. I still have some of his blood on my boots.|kaverin_6|vacor:60||||} - {Yes, I even helped him defeat a scoundrel named Vacor.|kaverin_7|vacor:61||||} - }|}; -{kaverin_5|I guess he keeps to himself. I sure hope he is okay. If you ever run into him, please say hi to him for me.||{{I\'m trying to find my brother Andor, have you seen him?|kaverin_5b|||||}}|}; -{kaverin_5b|Andor? No, I\'m sorry. I\'ve never heard of him.|||}; -{kaverin_6|You?! But.. But.. This is terrible! I bet you are one of the goons of that Vacor fellow.||{{N|kaverin_fight_1|||||}}|}; -{kaverin_fight_1|Oh yes, I can feel it. You work for Vacor! He must be stopped!|{{0|kaverin|60|}}|{{Fight!|F|||||}}|}; -{kaverin_7|Excellent, that is good news indeed! May you walk with the Shadow, my friend!||{{N|kaverin_8|||||}}|}; -{kaverin_8r|My friend from Fallhaven returns. It\'s comforting to hear that Unzel is still alive.||{{N|kaverin_8|||||}}|}; -{kaverin_8|Would you be willing to deliver a message to him?|{{0|kaverin|20|}}|{{N|kaverin_9|||||}}|}; -{kaverin_9|You\'d be well compensated for your efforts.||{ - {Anything for the sake of the Shadow.|kaverin_accept1|||||} - {Sure.|kaverin_accept1|||||} - {No, I am done helping you people.|kaverin_decline1|||||} - }|}; -{kaverin_decline1|That is unfortunate, you seemed like such a bright boy too.|{{0|kaverin|21|}}||}; -{kaverin_decline2|The friend from Fallhaven returns. Please leave me be, I have things to do.|||}; -{kaverin_accept1|Good, that\'s exactly what I wanted to hear.|{{0|kaverin|22|}}|{{N|kaverin_accept2|||||}}|}; -{kaverin_accept2|Make sure this doesn\'t fall into the hands of Feygard, or her loyalists.||{{N|kaverin_accept3|||||}}|}; -{kaverin_accept3|(He gives you a sealed message.)|{{1|kaverin_message||}{0|kaverin|25|}}|{{You can count on me, Kaverin.|kaverin_accept4|||||}}|}; -{kaverin_accept4|Good. Now go deliver that message to Unzel.|||}; -{kaverin_return1|It\'s good to see you again. Have you delivered my message to Unzel?||{ - {Yes, the message is delivered.|kaverin_done1|kaverin:30||||} - {No, not yet.|kaverin_return2|||||} - }|}; -{kaverin_return2|Please don\'t take too long. Walk with the Shadow, my friend.|||}; -{kaverin_done1|Thank you, my friend. May you walk in the glow of the Shadow.|{{0|kaverin|40|}}|{{N|kaverin_done2|||||}}|}; -{kaverin_done2|Take this map as compensation for a job well done.|{{1|vacor_map||}{0|kaverin|45|}}|{{N|kaverin_done3|||||}}|}; -{kaverin_done3|We\'ve discovered one of Vacor\'s hideouts, far to the south.||{{N|kaverin_done4|||||}}|}; -{kaverin_done4|Since you helped us stop him, it\'s fitting that you have this.||{{N|kaverin_done5|||||}}|}; -{kaverin_done5|According to the map, the hideout should be just to the northwest of the former prison of Flagstone. Feel free to take whatever is left in there.|{{0|kaverin|90|}}|{{N|kaverin_done6|||||}}|}; -{kaverin_done6|Walk with the Shadow, my friend.|||}; -{kaverin_done_ret|Hello again. It\'s comforting to know that Unzel is still alive, and that you delivered my message to him.||{{N|kaverin_done6|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{vacor_msg1|What\'s that in your hands?! ... I recognize that seal!|{{0|kaverin|70|}}|{ - {You should recognize it, I found this on one of Unzel\'s associates in Remgard.|vacor_msg_a1|||||} - {What? ... Oh, this?|vacor_msg_b1|||||} - }|}; -{vacor_msg_a1|Surely, he didn\'t just give it to you!||{{He was asking too many questions. He needed to be silenced.|vacor_msg_a2|||||}}|}; -{vacor_msg_a2|So, you killed him? Right?!||{{Kaverin is dead. His blood is still on my boots.|vacor_msg_3|||||}}|}; -{vacor_msg_b1|How did you get your hands on that document?!||{{A man in Remgard, by the name of Kaverin, was asking about Unzel...|vacor_msg_b2|||||}}|}; -{vacor_msg_b2|What happened boy?!||{{Kaverin is dead. His blood is still on my boots.|vacor_msg_3|||||}}|}; -{vacor_msg_3|Good, maybe now I can work on my Rift Spell in peace...||{{N|vacor_msg_4|||||}}|}; -{vacor_msg_4|I must have that document!||{{N|vacor_msg_5|||||}}|}; -{vacor_msg_5|I must know what they are planning!||{ - {Here, have the message.|vacor_msg_8||kaverin_message|1|0|} - {What\'s in it for me?|vacor_msg_6|||||} - }|}; -{vacor_msg_6|I have a cache of potions hidden, far to the southwest.||{ - {Excellent, I could always use more supplies.|vacor_msg_7|||||} - }|}; -{vacor_msg_7|Good. Now give me the message.||{{Here is the message, Vacor.|vacor_msg_8||kaverin_message|1|0|}}|}; -{vacor_msg_8|Here, take this map as compensation for your troubles.|{{1|vacor_map||}{0|kaverin|75|}}|{{N|vacor_msg_9|||||}}|}; -{vacor_msg_9|It will lead you far to the southwest, to one of my secret retreats... where a cache of potions is hidden.||{{N|vacor_msg_10|||||}}|}; -{vacor_msg_10|(The map shows a location to the northwest of the former prison of Flagstone.)|{{0|kaverin|90|}}|{{N|vacor_msg_11|||||}}|}; -{vacor_msg_11|Now, let\'s see here.||{{N|vacor_msg_12|||||}}|}; -{vacor_msg_12|(Vacor opens the sealed message and starts reading)||{{N|vacor_msg_13|||||}}|}; -{vacor_msg_13|Yes ... hm ... Really?! *mumbles* ... yes, indeed ...||{{N|vacor_msg_14|||||}}|}; -{vacor_msg_14|Thanks kid, you have helped me more than you can possibly understand.||{{N|vacor_msg_15|||||}}|}; -{vacor_msg_15|HA HA HA!!! THE POWER WILL SOON BE MINE!||{ - {Excellent! The Shadow must be stopped!|vacor_msg_16|||||} - {I just wanted a reward... Weirdo.|vacor_msg_16|||||} - }|}; -{vacor_msg_16|Thanks for giving me that message, but now please leave me. I have more important things to do than to talk to you.|||}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{unzel_msg1|Kaverin, my old friend! It\'s good to hear that he is still alive. What is the message?||{{Here it is.|unzel_msg2||kaverin_message|1|0|}}|}; -{unzel_msg2|Hmmm, yes... Let\'s see... (Unzel opens the sealed message and reads it)|{{0|kaverin|30|}}|{{N|unzel_msg3|||||}}|}; -{unzel_msg3|Yes, this makes sense with what I have seen.||{{N|unzel_msg4|||||}}|}; -{unzel_msg4|Thank you for bringing it to me.||{{N|unzel_msg5|||||}}|}; -{unzel_msg5|Your help could prove more valuable than you might realize.||{{N|unzel_msg6|||||}}|}; -{unzel_msg6|Say hello to my old friend Kaverin the next time you see him, will you?|||}; -{unzel_msg_r0|Hello again. Thank you for your help with defeating Vacor and bringing me the message from Kaverin.||{{N|unzel_msg5|||||}}|}; - - - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{sign_wild3_grave|The cross reads: Rest in peace, my friend.|||}; -{sign_wild6_stump|You notice that the tree-stump is partially hollow, and looks like an excellent hiding place. It is empty now.|||}; -{sign_snakecave3_grave|The ground around the grave is full of small holes, probably by something that has slithered its way to its nest down there. The cross has some writing on it, but you cannot understand what it says.|||}; -{sign_fallhaven_ne_grave1|Here lies Kargir the merchant.|||}; -{sign_fallhaven_ne_grave2|(The stone is covered with a thin layer of green moss. The writing on the stone has eroded and is completely unreadable.)|||}; -{sign_fallhaven_ne_grave3|Rest with the Shadow, one-legged Berth. She lived a full life, but in the end she could not stand up to the illness that befell her.|||}; -{sign_fallhaven_ne_grave4|The remains of Kigrim lies here, after he was killed by wolves south of Fallhaven.|||}; -{sign_fallhaven_ne_grave5|Gimlont the corpulent lies here. May we finally be free from his fat hands being part of all of our businesses.|||}; -{sign_fallhaven_ne_grave6|Here lies Terdar the smith. May he forever be embraced by the comfort of the Shadow.|||}; -{sign_fallhaven_ne_grave7|Here lies O\'llath, praised by her fellow citizens of Fallhaven for her delicious cakes.|||}; -{sign_fallhaven_ne_grave8|Sidari the woodcutter lies here. We all told him to be careful with that axe of his, but he never listened.|||}; -{sign_fallhaven_ne_grave9|Tyngose the noble lies here. May her legacy never be forgotten.|||}; -{sign_catacombs1_grave1|Here lies the remains of Sir Eneryth\'s horse, Shadowsteed.|||}; -{sign_catacombs1_grave2|Here lies Sir Eneryth of house Gellir. Son of Sir Anarogas, and the elder brother of Sir Karthanir.|||}; -{sign_catacombs1_grave3|Here lies Sir Karthanir of house Gellir. Son of Sir Anarogas, and the younger brother of Sir Eneryth.|||}; -{sign_catacombs1_grave4|Here lies Lady Gelythus of house Gellir. Wife of Sir Eneryth of house Gellir.|||}; -{sign_catacombs2_grave1|Here lies ta\'Draiden, servant of the Shadow in the chapel of Fallhaven.|||}; -{sign_catacombs2_grave2|Here lies ta\'Tembas, servant of the Shadow in the chapel of Fallhaven.|||}; -{sign_catacombs2_grave3|Here lies Elodam, servant of Sir Eneryth of house Gellir.|||}; -{sign_catacombs2_grave4|Here lies the remains of one-eyed Tragdas, servant of Sir Eneryth of house Gellir.|||}; -{sign_catacombs2_grave5|Here lies Lerythal the kind. May she rest with the Shadow.|||}; -{sign_catacombs2_grave6|Here lies Kragnis the second, steward of the chapel of Fallhaven.|||}; -{sign_catacombs2_grave7|The writing on the grave reads: Rest with the Shadow, my dearest.|||}; -{sign_catacombs2_papers1|(On the floor is what looks like some torn out pages from a book.)|||}; -{sign_catacombs2_papers2|(You find some crumpled papers on the floor, containing scribbled notes about the fine arts of pottery making. You decide to leave them be.)|||}; -{sign_catacombs3_grave1|(The grave reads: Here lies Sir Anarogas of house Gellir, son of Gellir the brave.)|||}; -{sign_catacombs3_grave2|(The stench coming from the grave is unbearable. Something must have disturbed the grave recently)|||}; -{sign_catacombs4_grave1|(The cross reads: ta\'Dreg lies here, advisor of the Shadow to king Luthor.)|||}; -{sign_catacombs4_grave2|(The grave reads: King Luthor, our savior and leader. The grave is also adorned with the golden seal of house Luthor.)|||}; -{sign_hh3_papers|Perched under the statue, you find some papers with drawings of what looks like skeletons. The drawings look like they were made by a child, and you start to wonder how they could have ended up in a place such as this.|||}; -{sign_hh3_grave|(Someone has written the words \'Rest\' and \'Shadow\' on the cross, in what looks like dried blood.)|||}; -{sign_bwm30_grave|(The cross reads: Rest with the Shadow, my dear.)|||}; -{sign_bwm33_grave|(The tombstone contains writing in a language that you do not understand)|||}; -{sign_bwm52_grave1|(The cross reads: Here lies Magnir the trader. Another casualty of those beasts.)|||}; -{sign_bwm52_grave2|(The grave looks like it has been recently dug)|||}; -{sign_bwm52_grave3|(The cross reads: Here lies Torkurt, loyal servant of the Blackwater settlement.)|||}; -{sign_bwm52_grave4|(The cross reads: Here lies o\'Rani, the most fierce warrior on this side of the mountain. May she rest in peace.)|||}; -{sign_bwm52_grave5|(The cross reads: Unnamed traveller. Found on the cliff-side, killed by one of those beasts.)|||}; -{sign_bwm52_grave7|(The cross reads: Here lies Trombul, the famous potion maker.)|||}; -{sign_bwm52_grave6|(The cross reads: Here lies the remains of Antagnart, loved by none but remembered by everyone.)|||}; -{sign_bwm52_papers1|(On the floor is what looks like some torn out pages from a book)|||}; -{sign_bwm52_papers2|(You find a crude drawing of one of the white wyrms, but you decide not to keep it since it must belong to someone.)|||}; -{sign_pwcave1_grave|(The cross shows lots of small indentations, as if someone hit it repeatedly with a sharp object. You can barely make out the words: Rest with the Shadow, my friend. I will avenge those beasts.)|||}; -{sign_pwcave2a_grave|(The cross contains symbols that you cannot understand.)|||}; -{sign_pwcave4_grave1|(The cross contains symbols that you cannot understand. It looks like someone started digging up this grave recently, but stopped halfway.)|||}; -{sign_pwcave4_grave2|(The cross contains symbols that you cannot understand, in addition to a crude drawing of what you think should resemble an Izthiel beast.)|||}; -{sign_pwcave4_grave3|(The cross contains symbols that you cannot understand, in addition to a crude drawing of what you think should resemble a frog.)|||}; -{sign_pwcave4_grave4|(The cross contains symbols that you cannot understand, but you recognize the word \'Iqhan\'.)|||}; -{sign_pwcave4_grave5|(The cross contains symbols that you cannot understand, in addition to a crude drawing of what you think should resemble a sword.)|||}; -{sign_pwcave4_grave6|(The cross contains symbols that you cannot understand, in addition to a crude drawing of something that you cannot make out what it should resemble.)|||}; -{sign_pwcave4_grave7|(The cross contains symbols that you cannot understand, in addition to an elaborate drawing of a skull.)|||}; -{sign_waterway14_hole|(You stop to notice a hole in the wall near the ground, large enough to fit something in. The ground here shows recent shoe-prints, which could indicate that the hole in the wall is a hiding place of some sort. However, it seems to be empty now.)|||}; -{sign_waterway11e_grave|(The cross reads: Here lies Telban. A beloved friend of many, and a dreaded foe for those that did not pay up.)|||}; -{sign_mountaincave0_grave|(The cross reads: Tengil the needy lies here, after having succumbed to the nastiest of poisons. Rest with the Shadow, my friend.)|||}; -{sign_mountainlake1_grave|(The ground around the grave looks like it has been partially dug up by animals. They don\'t seem to have gotten anywhere yet though.)|||}; -{sign_waytobrim3_grave1|Here lies the remains of Ilirathos, mother of two.|||}; -{sign_waytobrim3_grave2|Ke\'roos lies here. No one knew him in life since he always kept to himself, but we all thank him for the generous gifts he left behind for Brimhaven.|||}; -{sign_waytobrim3_grave3|Here lies Lawellyn the weak.|||}; -{sign_waytolake2_grave|(The cross is covered with a thick layer of web. You wonder why anyone would choose this place as a grave for their fallen)|||}; -{sign_lh1_grave|(Even though the wood on the cross looks like it was cut recently, you see no signs of anything being buried here.)|||}; -{sign_lh1_sign|(On the wall, you see a plaque that reads \'Bring unto me, that which I cannot bear, for it makes me stronger.\')|||}; - - diff --git a/AndorsTrail/res/values/content_droplist.xml b/AndorsTrail/res/values/content_droplist.xml deleted file mode 100644 index 23180ce35..000000000 --- a/AndorsTrail/res/values/content_droplist.xml +++ /dev/null @@ -1,787 +0,0 @@ - - - - -[id|items[itemID|quantity_Min|quantity_Max|chance|]|]; -{startitems|{{gold|12|12|100|}{club1|1|1|100|}{shirt1|1|1|100|}{ring_mikhail|1|1|100|}}|}; - -{startitems2|{{gold|12|12|100|}}|}; - -{gold200|{{gold|200|200|100|}}|}; -{rat|{{gold|2|4|100|}{rat_tail|1|1|30|}}|}; -{trainingrat|{{gold|0|2|100|}{tail_trainingrat|1|1|100|}}|}; -{gold20|{{gold|20|20|100|}}|}; -{canine|{{gold|3|6|70|}{gem1|1|1|5|}{meat|1|1|30|}}|}; -{insect|{{gold|2|4|70|}{shell|1|1|30|}}|}; -{wasp|{{gold|2|4|70|}{insectwing|1|1|30|}}|}; -{gold51|{{gold|51|51|100|}}|}; -{caveratboss|{{gold|10|10|100|}{tail_caverat|1|1|100|}{gem1|1|1|5|}}|}; - - - -[id|items[itemID|quantity_Min|quantity_Max|chance|]|]; -{cavemonster|{{gold|4|12|70|}{gem2|1|1|25|}{hammer0|1|1|5|}{health_minor|1|1|25|}}|}; -{snake|{{gold|3|6|70|}{meat|1|1|30|}{gland|1|1|5|}}|}; -{haunt|{{vial_empty1|1|1|25|}{gem1|1|1|25|}}|}; -{cavecritter|{{gold|4|8|70|}{gem1|1|1|25|}{claws|1|1|30|}}|}; -{lich1|{{gold|5|15|70|}{gem2|1|1|25|}{health_minor|1|1|25|}}|}; -{irogotu|{{neck_irogotu|1|1|100|}{ring_gandir|1|1|100|}{health|1|1|100|}}|}; -{canineboss|{{gold|1|1|70|}{hair|1|1|30|}{meat|1|1|30|}{boots1|1|1|5|}}|}; -{snakemaster|{{gold|9|9|70|}{dagger_venom|1|1|100|}{gem3|1|1|100|}{health|1|1|100|}}|}; - - - -[id|items[itemID|quantity_Min|quantity_Max|chance|]|]; -{catacombrat|{{gold|1|5|70|}{gem1|1|1|25|}{vial_empty1|1|1|25|}}|}; -{skeleton|{{gold|16|23|70|}{gem2|1|1|25|}{health|1|1|25|}{bone|1|1|30|}}|}; -{luthor|{{gold|1|5|70|}{gem1|1|1|100|}{key_luthor|1|1|100|}{health_major|1|1|100|}}|}; -{shop_thoronir|{{bonemeal_potion|50|50|100|}}|}; -{larcal|{{gold|4|12|70|}{club1|1|1|100|}{calomyran_secrets|1|1|100|}{milk|1|1|100|}}|}; -{catacombguard|{{gold|4|12|70|}{gem2|1|1|25|}{health|1|1|25|}{vial_empty2|1|1|25|}{gloves1|1|1|5|}}|}; -{nocmar|{{gem1|1|1|25|}}|}; - - - -[id|items[itemID|quantity_Min|quantity_Max|chance|]|]; -{prisoner|{{rock|1|1|100|}}|}; -{skeleton2|{{gold|16|23|70|}{gem2|1|1|25|}{health|1|1|25|}{bone|1|1|30|}{ring_dmg1|1|1|1|}}|}; -{pack_boss|{{gold|3|35|100|}{gem4|1|1|100|}{meat|1|1|30|}{packhide|1|1|100|}{hair|1|1|30|}}|}; -{snake2|{{gold|7|12|70|}{meat|1|1|30|}{gland|1|1|5|}}|}; -{bandit1|{{gold|4|41|70|}}|}; -{pack1|{{gold|3|15|70|}{gem2|1|1|5|}{meat|1|1|30|}{hair|1|1|30|}}|}; -{unzel|{{gold|16|30|100|}{health|1|1|100|}{ring_unzel|1|1|100|}{boots_unzel|1|1|100|}}|}; -{pack2|{{gold|3|25|70|}{gem3|1|1|5|}{meat|1|1|30|}{hair|1|1|30|}}|}; -{canine2|{{gold|3|25|70|}{gem1|1|1|5|}{meat|1|1|30|}{hair|1|1|30|}}|}; -{pack3|{{gold|3|35|70|}{gem4|1|1|5|}{meat|1|1|30|}{hair|1|1|30|}}|}; -{skeleton3|{{gold|20|29|70|}{gem2|1|1|25|}{health|1|1|25|}{bone|1|1|30|}{ring_dmg2|1|1|1|}}|}; -{vacor|{{gold|16|30|100|}{health|1|1|100|}{ring_vacor|1|1|100|}{boots_vacor|1|1|100|}}|}; -{fallhaven_bandit|{{gold|4|41|100|}{vacor_spell|1|1|100|}}|}; -{undead1|{{gold|5|23|70|}{gem2|1|1|25|}{health|1|1|25|}{ironsword1|1|1|10|}}|}; - -{flagstone_guard2|{{gold|62|62|100|}{gem4|1|1|100|}{health|3|3|100|}{sword_flagstone|1|1|100|}{ring_jinxed1|1|1|100|}}|}; -{flagstone_guard1|{{gold|20|52|100|}{gem4|1|1|100|}{health|2|2|100|}{ring_block1|1|1|100|}{ironsword1|1|1|100|}}|}; -{flagstone_guard0|{{gold|20|29|100|}{gem4|1|1|100|}{health|1|1|100|}{necklace_flagstone|1|1|100|}}|}; - - - -[id|items[itemID|quantity_Min|quantity_Max|chance|]|]; -{sleepingmead|{{sleepingmead|1|1|100|}}|}; -{ff_outsideguard|{{ffguard_qitem|1|1|100|}{vial_empty1|1|1|100|}{shield1|1|1|100|}{ironsword1|1|1|100|}}|}; -{beetle2|{{gold|0|12|70|}{shell|1|1|30|}}|}; -{shadowgarg1|{{gold|5|12|70|}{gem2|1|1|25|}}|}; -{shadowgarg2|{{gold|3|19|70|}{gem2|1|1|25|}{health|1|1|25|}{rock|1|1|25|}}|}; -{shadowgarg3|{{gold|16|23|70|}{gem2|1|1|25|}{gem3|1|1|10|}{health|1|1|25|}{rock|1|1|25|}{ring_shadow0|1|1|1/10000|}}|}; -{maelveon|{{gold|52|52|100|}{gem3|1|1|100|}{health|2|2|100|}{armor_stone|1|1|100|}}|}; - - - - -[id|items[itemID|quantity_Min|quantity_Max|chance|]|]; -{harlenn|{ - {harlenn_id|1|1|100|} - {ring_shadow_embrace|1|1|100|} - {gold|20|50|100|} - }|}; -{guthbered|{ - {guthbered_id|1|1|100|} - {dagger_barbed|1|1|100|} - {gold|20|50|100|} - }|}; -{harlenn_reward|{ - {clouded_rage|1|1|100|} - {gold|50|50|100|} - {health|2|2|100|} - }|}; -{guthbered_reward|{ - {bwm_dagger|1|1|100|} - {gold|50|50|100|} - {health|2|2|100|} - {bwm_permit|1|1|100|} - }|}; -{throdna_items|{{q_kazaul_vial|1|1|100|}}|}; -{fulus_reward|{{gold|450|450|100|}}|}; -{container_primsleep|{{gold|1|5|100|}}|}; -{shop_herec|{{pot_fatigue_restore|10|10|100|}}|}; -{kazaul_guardian|{ - {gold|52|52|100|} - {gem3|1|1|100|} - {health|2|2|100|} - {shadow_slayer|1|1|100|} - }|}; -{bjorgur_bandit|{ - {gold|10|50|100|} - {gem2|1|1|100|} - {ring2|1|1|100|} - {gloves1|1|1|100|} - {bjorgur_dagger|1|1|100|} - }|}; -{shop_birgil|{ - {mead|10|10|100|} - {health_minor2|10|10|100|} - {health|10|10|100|} - {radish|5|5|100|} - }|}; -{shop_samar|{ - {health|10|10|100|} - {health_major2|10|10|100|} - {pot_poison_weak_antidote|10|10|100|} - {pot_bleeding_ointment|10|10|100|} - {pot_speed_1|10|10|100|} - }|}; -{shop_mazeg|{ - {health|10|10|100|} - {health_major2|10|10|100|} - {bwm_brew|10|10|100|} - {pot_poison_weak|10|10|100|} - {pot_blind_rage|10|10|100|} - }|}; - - - -[id|items[itemID|quantity_Min|quantity_Max|chance|]|]; -{kazaul_1|{ - {gold|3|19|70|} - {gem4|1|1|10|} - {health_minor|1|1|10|} - {rock|1|1|5|} - }|}; -{kazaul_2|{ - {gold|6|25|70|} - {gem5|1|1|10|} - {health|1|1|10|} - {rock|1|1|5|} - {rapier_lifesteal|1|1|1/10000|} - }|}; -{restless_dead_1|{ - {gold|20|29|70|} - {gem3|1|1|10|} - {health_minor|1|1|10|} - {bone|1|1|10|} -}|}; -{restless_dead_2|{ - {gold|20|29|70|} - {gem4|1|1|10|} - {health|1|1|10|} - {bone|1|1|10|} - {gloves_life|1|1|1/1000|} -}|}; -{cave_serpent|{ - {gold|3|10|70|} - {meat|1|1|5|} - {gland|1|1|5|} -}|}; -{gornaud_1|{ - {gold|1|30|70|} - {meat|1|1|5|} - {hair|1|1|10|} -}|}; -{gornaud_2|{ - {gold|1|40|70|} - {meat|1|2|5|} - {hair|1|1|10|} -}|}; -{gornaud_3|{ - {gold|1|45|70|} - {meat|1|3|5|} - {hair|1|1|10|} - {bwm_brew|10|10|5|} -}|}; -{wyrm_1|{ - {gold|1|30|70|} - {bone|1|1|10|} - {vial_empty1|1|1|25|} - {health_minor|1|1|10|} -}|}; -{wyrm_2|{ - {gold|1|40|70|} - {bone|1|1|10|} - {vial_empty1|1|1|25|} - {health_minor|1|2|10|} -}|}; -{wyrm_3|{ - {gold|1|60|70|} - {bone|1|2|10|} - {vial_empty1|1|1|25|} - {health|1|2|10|} - {bwm_claws|1|1|10|} -}|}; -{wyrm_4|{ - {gold|1|60|70|} - {bone|1|2|10|} - {vial_empty1|1|1|25|} - {pot_poison_weak|1|3|5|} - {health_minor|1|2|10|} - {elytharan_redeemer|1|1|1/10000|} -}|}; -{aulaeth|{ - {gold|1|5|70|} - {bone|1|3|10|} - {vial_empty1|1|1|25|} - {health|1|2|10|} - {bwm_dagger|1|1|1|} - {bwm_ironsword|1|1|1|} - {pot_speed_1|1|1|5|} -}|}; - - - -[id|items[itemID|quantity_Min|quantity_Max|chance|]|]; -{shop_audir|{ - {axe2|1|1|100|} - {club1|1|1|100|} - {ironsword0|1|1|100|} - {hammer0|1|1|100|} - {club3|1|1|100|} - {rusted_iron_sword|1|1|100|} - {ironsword1|1|1|100|} - {broadsword1|1|1|100|} - {ironsword2|1|1|100|} - {shortsword1|1|1|100|} - {longsword_hard_iron|1|1|100|} - {broken_buckler|1|1|100|} - {shield_crude_wooden|1|1|100|} - {shield_cracked_wooden|1|1|100|} - {shield_wooden_buckler|1|1|100|} - {shield3|1|1|100|} - {boots_crude_leather|1|1|100|} - }|}; -{shop_vg_armorer|{ - {shield1|1|1|100|} - {shield4|1|1|100|} - {shield_wooden|1|1|100|} - {hat3|1|1|100|} - {hat4|1|1|100|} - {hat_leather1|1|1|100|} - {hat_hard_leather|1|1|100|} - {armor_chain1|1|1|100|} - {armor_chain2|1|1|100|} - {armour_rigid_chain|1|1|100|} - }|}; -{shop_vg_smith|{ - {hammer1|1|1|100|} - {club_fine_wooden|1|1|100|} - {longsword_hard_iron|1|1|100|} - {axe_fine_iron|1|1|100|} - {sword_hard_iron|1|1|100|} - {broadsword_fine_iron|1|1|100|} - {broadsword2|1|1|100|} - {sword_fencing|1|1|100|} - {boots5|1|1|100|} - }|}; -{shop_hadracor|{ - {axe1|1|1|100|} - {woodcutter_hatchet|1|1|100|} - {axe_gutsplitter|1|1|100|} - {hammer_skullcrusher|1|1|100|} - {armour_crude_leather|1|1|100|} - {armour_rigid_leather|1|1|100|} - {gloves1|1|1|100|} - {gloves_woodcutter|1|1|100|} - {woodcutter_boots|1|1|100|} - }|}; -{shop_siola|{ - {broadsword_fine_iron|1|1|100|} - {broadsword2|1|1|100|} - {broadsword_fine_steel|1|1|100|} - {club_wood1|1|1|100|} - {heavy_club|1|1|100|} - {club_brutal|1|1|100|} - {club_wood2|1|1|100|} - {shield6|1|1|100|} - {shield7|1|1|100|} - {helm_crude_iron|1|1|100|} - }|}; -{shop_minarra|{ - {sword_challengers|1|1|100|} - {steelsword1|1|1|100|} - {sword_defenders|1|1|100|} - {sword_balanced_steel|1|1|100|} - {shield5|1|1|100|} - {shield_wooden_defender|1|1|100|} - {armour_superior_chain|1|1|100|} - {armour_chain_champ|1|1|100|} - {gloves_guards|1|1|100|} - {boots_defender|1|1|100|} - {ring_challenger|1|1|100|} - {ring_block|1|1|100|} - {ring_block2|1|1|100|} - }|}; -{shop_arambold|{ - {hat1|1|1|100|} - {hat2|1|1|100|} - {shirt1|1|1|100|} - {shirt_torn|1|1|100|} - {gloves_fumbling|1|1|100|} - {gloves_fancy|1|1|100|} - {gloves_crude_cloth|1|1|100|} - {ring_dmg1|1|1|100|} - {ring_dmg2|1|1|100|} - {ring_challenger|1|1|100|} - }|}; -{shop_fallhaven_clothes|{ - {hat1|1|1|100|} - {hat2|1|1|100|} - {shirt1|1|1|100|} - {shirt_torn|1|1|100|} - {shirt_weathered|1|1|100|} - {shirt_patched_cloth|1|1|100|} - {shirt2|1|1|100|} - {shirt_dmgresist|1|1|100|} - {gloves_fumbling|1|1|100|} - {gloves_fancy|1|1|100|} - {gloves_crude_cloth|1|1|100|} - {used_gloves|1|1|100|} - {gloves_barbrawler|1|1|100|} - {gloves_attack1|1|1|100|} - {boots_crude_leather|1|1|100|} - {boots_sewn|1|1|100|} - {boots1|1|1|100|} - {boots3|1|1|100|} - {jewel_fallhaven|1|1|100|} - {ring_fumbling|1|1|100|} - {ring1|1|1|100|} - {ring2|1|1|100|} - }|}; -{shop_alynndir|{ - {vial_empty1|10|10|100|} - {health|10|10|100|} - {rat_tail|5|5|100|} - {gem2|3|3|5|} - {meat|20|20|30|} - {hair|5|5|30|} - {hat_fine_leather|1|1|100|} - {hat_leather_vision|1|1|100|} - {armour_crude_leather|1|1|100|} - {armour_rigid_leather|1|1|100|} - {gloves_crude_leather|1|1|100|} - {boots_hard_leather|1|1|100|} - {ring_jinxed1|1|1|100|} - }|}; -{shop_gruil|{ - {dagger0|1|1|100|} - {shirt_weathered|1|1|100|} - {ring_crude_combat|1|1|100|} - {ring_barbrawler|1|1|100|} - {gem1|5|5|100|} - {gem2|5|5|100|} - {gem3|5|5|100|} - }|}; -{shop_ganos|{ - {dagger0|1|1|100|} - {dagger1|1|1|100|} - {dagger_sharp_steel|1|1|100|} - {shirt_weathered|1|1|100|} - {shirt_patched_cloth|1|1|100|} - {gloves_attack1|1|1|100|} - {gloves_grip|1|1|100|} - {boots2|1|1|100|} - {necklace_strike|1|1|100|} - {ring_crit1|1|1|100|} - {ring_dmg2|1|1|100|} - {ring_taverbrawler|1|1|100|} - {ring_dmg_4|1|1|100|} - {gem3|5|5|100|} - }|}; -{shop_troublemaker|{ - {armour_firm_leather|1|1|100|} - {armor1|1|1|100|} - {armor4|1|1|100|} - {used_gloves|1|1|100|} - {gloves_barbrawler|1|1|100|} - {gloves_attack2|1|1|100|} - {gloves_troublemaker|1|1|100|} - {boots_coward|1|1|100|} - {ring_crit2|1|1|100|} - {ring_troublemaker|1|1|100|} - {gem3|5|5|100|} - }|}; -{shop_dunla|{ - {dagger1|1|1|100|} - {sword_villains|1|1|100|} - {shirt2|1|1|100|} - {armour_firm_leather|1|1|100|} - {armor2|1|1|100|} - {shirt_dmgresist|1|1|100|} - {gloves3|1|1|100|} - {gloves4|1|1|100|} - {ring_polished_combat|1|1|100|} - {ring_backstab|1|1|100|} - {gem3|5|5|100|} - }|}; -{shop_ailshara|{ - {dagger_sharp_steel|1|1|100|} - {dagger2|1|1|100|} - {quickdagger1|1|1|100|} - {armor3|1|1|100|} - {armour_misfortune|1|1|100|} - {armour_leather_villain|1|1|100|} - {gloves2|1|1|100|} - {gloves_troublemaker|1|1|100|} - {gloves_leather_attack|1|1|100|} - {ring_polished_backstab|1|1|100|} - {ring_villain|1|1|100|} - }|}; -{shop_tharal|{ - {health_minor2|10|10|100|} - {health|10|10|100|} - {health_major2|10|10|100|} - {necklace_shield_0|1|1|100|} - {ring_crude_surehit|1|1|100|} - {ring_rough_damage|1|1|100|} - {ring_crude_block|1|1|100|} - {ring_rough_life|1|1|100|} - {ring_dmg1|1|1|100|} - {ring_atkch1|1|1|100|} - {ring_life|1|1|100|} - }|}; -{shop_jolnor|{ - {health_minor2|10|10|100|} - {health|10|10|100|} - {health_major2|10|10|100|} - {necklace_defender_stone|1|1|100|} - {necklace_shield2|1|1|100|} - {ring_dmg_3|1|1|100|} - {ring_defender|1|1|100|} - {ring_dmg6|1|1|100|} - {ring_protector|1|1|100|} - }|}; -{shop_talion|{ - {health_minor2|10|10|100|} - {health|10|10|100|} - {health_major2|10|10|100|} - {necklace_shield1|1|1|100|} - {necklace_protector|1|1|100|} - {ring_block1|1|1|100|} - {ring_guardian|1|1|100|} - {ring_dmg5|1|1|100|} - }|}; -{shop_fallhaven_potions|{ - {vial_empty1|10|10|100|} - {vial_empty2|10|10|100|} - {vial_empty3|10|10|100|} - {vial_empty4|10|10|100|} - {health_minor2|10|10|100|} - {health|10|10|100|} - {health_major2|10|10|100|} - {milk|10|10|100|} - {rat_tail|5|5|100|} - {radish|5|5|100|} - {strawberry|5|5|100|} - }|}; -{shop_prim_armorer|{ - {rusted_iron_sword|1|1|100|} - {ironsword1|1|1|100|} - {broken_buckler|1|1|100|} - {used_gloves|1|2|100|} - }|}; -{shop_waeges|{ - {bwm_dagger|2|2|100|} - {bwm_dagger_venom|2|2|100|} - {bwm_ironsword|2|2|100|} - }|}; -{shop_iducus|{ - {bwm_leather_armour|2|2|100|} - {bwm_leather_cap|2|2|100|} - {bwm_combat_ring|2|2|100|} - }|}; -{shop_thieves_guild_cook|{ - {meat|5|5|100|} - {meat_cooked|5|5|100|} - {bread|5|5|100|} - {mushroom|5|5|100|} - {eggs|5|5|100|} - {mead|5|5|100|} - }|}; -{shop_mara|{ - {apple_green|5|5|100|} - {meat|5|5|100|} - {meat_cooked|5|5|100|} - {carrot|5|5|100|} - {bread|5|5|100|} - {mead|5|5|100|} - }|}; -{shop_bela|{ - {apple_green|5|5|100|} - {apple_red|5|5|100|} - {meat|5|5|100|} - {meat_cooked|5|5|100|} - {carrot|5|5|100|} - {mushroom|5|5|100|} - {milk|5|5|100|} - {mead|5|5|100|} - }|}; -{shop_torilo|{ - {meat_cooked|5|5|100|} - {bread|5|5|100|} - {mushroom|5|5|100|} - {eggs|5|5|100|} - {mead|5|5|100|} - {pear|5|5|100|} - }|}; -{shop_tharwyn|{ - {meat|5|5|100|} - {meat_cooked|5|5|100|} - {carrot|5|5|100|} - {mushroom|5|5|100|} - {mead|5|5|100|} - }|}; -{shop_gallain|{ - {meat_cooked|5|5|100|} - {bread|5|5|100|} - {mead|5|5|100|} - }|}; -{shop_grimion|{ - {meat_cooked|5|5|100|} - {carrot|5|5|100|} - {mushroom|5|5|100|} - {mead|5|5|100|} - }|}; - -{undropped_items|{ - {health_major|0|0|0|} - {heartstone|0|0|0|} - }|}; - - - - -[id|items[itemID|quantity_Min|quantity_Max|chance|]|]; -{tinlyn_bells|{{tinlyn_bells|4|4|100|}}|}; -{fieldwasp_unique|{ - {gold|0|10|70|} - {hadracor_waspwing|1|1|100|} - }|}; -{tinlyn_sheep|{ - {meat|0|3|70|} - {tinlyn_sheep_meat|1|1|100|} - }|}; -{feygard_shipment|{{fg_ironsword|10|10|100|}}|}; -{vg_smith_fg_items|{{fg_ironsword_d|10|10|100|}}|}; -{hadracor_reward|{{gloves_woodcutter|1|1|100|}}|}; -{larva_boss|{ - {gold|0|9|100|} - {gem2|1|1|100|} - {health_minor|1|1|100|} - {erinith_book|1|1|100|} - }|}; -{keknazar|{ - {gold|0|45|70|} - {bone|1|3|100|} - {health_minor|1|2|100|} - {necklace_shield_0|1|1|100|} - }|}; -{rogorn|{ - {gold|0|50|70|} - {rogorn_qitem|1|1|100|} - {longsword_hard_iron|1|1|100|} - {health_minor|1|2|100|} - }|}; -{rogorn_henchman|{ - {gold|0|20|70|} - {rogorn_qitem|1|1|100|} - {health_minor|1|2|100|} - }|}; -{buceth|{ - {gold|0|20|70|} - {buceth_vial|1|1|100|} - {health_minor|1|4|100|} - {vial_empty2|1|3|100|} - {ring_life|1|1|100|} - }|}; - - - -[id|items[itemID|quantity_Min|quantity_Max|chance|]|]; -{fieldwasp|{{gold|0|10|70|}{insectwing|1|1|30|}}|}; -{larva_1|{{gold|0|5|70|}{gem1|1|1|30|}}|}; -{larva_2|{{gold|0|9|70|}{gem1|1|1|30|}}|}; -{fieldcritter_0|{{gold|0|4|70|}{shell|1|1|30|}}|}; -{fieldcritter_1|{{gold|0|9|70|}{shell|1|1|30|}}|}; -{fieldcritter_2|{{gold|3|15|70|}{gland|1|1|30|}{ring1|1|1|5|}}|}; -{fieldcritter_3|{{gold|3|17|70|}{gland|1|1|30|}{ring1|1|1|5|}{ring2|1|1|5|}}|}; -{rivertroll|{{gold|0|70|70|}{bone|3|5|50|}{meat|3|5|30|}{club_fine_wooden|1|1|100|}}|}; - -{izthiel|{{gold|3|15|70|}{izthiel_claw|1|1|30|}{ring_jinxed1|1|1|1|}{ring2|1|1|5|}}|}; -{izthiel_4|{{gold|3|40|70|}{izthiel_claw|1|1|30|}{ring_jinxed1|1|1|1|}{ring2|1|1|20|}{shadowfang|1|1|1/1000|}}|}; -{frog|{{gold|0|3|70|}}|}; -{frog_3|{{gold|0|3|70|}{gland|1|1|30|}}|}; -{iqhan_lesser|{{gold|1|5|70|}{iqhan_pendant|1|1|1|}{shirt_torn|1|1|5|}{dagger0|1|1|5|}}|}; -{iqhan|{{gold|1|9|70|}{iqhan_pendant|1|1|5|}{shield1|1|1|5|}{dagger0|1|1|5|}}|}; -{iqhan_master|{{gold|1|9|70|}{iqhan_pendant|1|1|5|}{gloves_crude_cloth|1|1|5|}{dagger0|1|1|5|}{health|1|3|5|}}|}; -{iqhan_beast|{{gold|0|1|70|}{chaosreaper|1|1|1/1000|}{health|1|1|5|}}|}; -{iqhan_boss|{{gold|50|100|100|}{iqhan_pendant|1|1|100|}{dagger_shadow_priests|1|1|100|}{health|5|7|100|}}|}; - -{gold5|{{gold|5|5|100|}}|}; -{gold25|{{gold|25|25|100|}}|}; -{gold50|{{gold|50|50|100|}}|}; -{gauward_sold_20|{{gold|100|100|100|}{health|2|2|100|}}|}; - - - -[id|items[itemID|quantity_Min|quantity_Max|chance|]|]; -{lonelyhouse_sp|{{algangror_rat|1|1|100|}}|}; -{irdegh_spawn|{ - {meat|1|1|1|} - {gland|1|1|1|} -}|}; -{irdegh|{ - {meat|1|1|5|} - {gland|1|1|1|} - {irdegh|1|1|5|} -}|}; -{irdegh_b|{ - {meat|1|1|5|} - {gland|1|1|1|} - {irdegh|1|1|5|} - {ring_crude_combat|1|1|1|} -}|}; -{scaradon|{{gold|0|4|70|}{shell|1|1|30|}{gem1|1|1|5|}}|}; -{scaradon_b|{{gold|0|12|70|}{shell|1|1|30|}{gem1|1|1|5|}{ring_rough_life|1|1|1|}}|}; -{burrower|{{gold|0|3|70|}{shell|1|1|30|}{gem1|1|1|5|}}|}; -{mwolf|{{gold|1|5|50|}{gem2|1|1|1|}{meat|1|1|5|}{hair|1|1|30|}}|}; -{mwolf_b|{{gold|1|12|50|}{gem4|1|1|20|}{meat|1|1|30|}{hair|1|1|30|}}|}; -{arulir|{{gold|1|12|70|}{meat|1|1|5|}{hair|1|1|10|}{arulir_skin|1|1|1|}}|}; -{maonit|{{gold|1|7|70|}{meat|1|1|5|}{hair|1|1|10|}{ring_crude_block|1|1|1|}}|}; -{allaceph|{{gold|1|20|30|}{gem1|1|1|1|}{health|1|1|5|}{vial_empty2|1|1|5|}}|}; -{allaceph_b|{{gold|1|20|30|}{gem4|1|1|30|}{health|1|2|30|}{vial_empty2|1|1|5|}}|}; -{mbrute|{{bone|1|1|10|}{ring1|1|1|1|}}|}; -{mbrute_b|{{bone|1|1|10|}{hair|1|1|10|}{ring1|1|1|10|}}|}; -{erumen|{{gold|0|3|70|}{gem1|1|1|10|}}|}; -{erumen_b|{{gold|0|9|70|}{gem2|1|1|30|}}|}; -{plaguespider|{{gold|0|3|70|}{gland|1|1|1|}{spider|1|1|5|}}|}; -{plaguespider_b|{{health|0|1|10|}{vial_empty1|1|1|5|}{valugha_gown|1|1|1/1000|}{valugha_hat|1|1|1/1000|}}|}; - - - -[id|items[itemID|quantity_Min|quantity_Max|chance|]|]; -{sign_toszylae|{{helm_protector0|1|1|100|}}|}; -{thorin_bone|{{thorin_bone|1|1|100|}}|}; -{toszylae|{ - {gold|0|20|100|} - {toszylae_heart|1|1|100|} - {health|5|7|100|} - {gem5|2|2|100|} - {rock|1|1|100|} - }|}; -{toszylae_guard|{ - {gold|0|20|100|} - {health|1|2|100|} - {gem4|1|1|100|} - {rock|1|1|100|} - }|}; -{sign_ulirfendor|{{helm_protector|1|1|100|}}|}; -{potion_rotworm|{{potion_rotworm|1|1|100|}}|}; -{ulirfendor|{ - {gold|0|50|70|} - {club3|1|1|100|} - {health_minor|1|2|100|} - {vial_empty2|3|5|100|} - }|}; -{lyson_marrow|{{lyson_marrow|1|1|100|}}|}; -{hjaldar_pots|{ - {pot_focus_dmg|1|1|100|} - {pot_focus_ac|1|1|100|} - }|}; -{fiveidols|{{algangror_idol|5|5|100|}}|}; -{algangror|{ - {algangror_ring|1|1|100|} - {gold|0|20|100|} - {health|1|2|100|} - {gem4|1|1|100|} - {vial_empty2|3|5|100|} - }|}; -{gloves_combat2|{{gloves_combat2|1|1|100|}}|}; -{remgard_shield_2|{{remgard_shield_2|1|1|100|}}|}; -{armour_chain_remg|{{armour_chain_remg|1|1|100|}}|}; -{marrowtaint|{{marrowtaint|1|1|100|}}|}; -{ervelyn_hat|{{hat_crit|1|1|100|}}|}; -{oegyth1|{{oegyth|1|1|100|}}|}; -{wild16_cave1|{ - {vial_empty1|1|1|100|} - {vial_empty2|2|2|100|} - {health_minor2|2|2|100|} - }|}; -{wild16_cave2|{ - {health|2|2|100|} - {milk|3|3|100|} - {pot_speed_1|1|1|5|} - {pot_poison_weak|3|3|5|} - {pot_poison_weak_antidote|1|1|100|} - {pot_blind_rage|1|1|100|} - {pot_bleeding_ointment|1|1|100|} - {health_major2|1|1|100|} - }|}; -{wild16_cave3|{{gold|2000|2000|100|}}|}; -{kaverin_message|{{kaverin_message|1|1|100|}}|}; -{vacor_map|{{vacor_map|1|1|100|}}|}; -{kaverin|{ - {gold|100|100|100|} - {health|1|2|100|} - {shirt_weathered|1|1|100|} - {ring_crude_combat|1|1|100|} - {kaverin_message|1|1|100|} - }|}; - - - -[id|items[itemID|quantity_Min|quantity_Max|chance|]|]; -{shop_thorin|{{pot_scaradon|30|30|100|}}|}; -{shop_hjaldar|{ - {pot_focus_dmg|8|8|100|} - {pot_focus_ac|8|8|100|} - {pot_focus_dmg2|5|5|100|} - {pot_focus_ac2|5|5|100|} - }|}; -{shop_rothses|{ - {remgard_shield_1|1|1|100|} - {helm_combat1|1|1|100|} - {helm_combat2|1|1|100|} - {helm_combat3|1|1|100|} - {helm_defend1|1|1|100|} - {gloves_guard1|1|1|100|} - {boots_combat1|1|1|100|} - {boots_combat2|1|1|100|} - {boots_remgard1|1|1|100|} - {boots_guard1|1|1|100|} - }|}; -{shop_arghes|{ - {ring_barbrawler|1|1|100|} - {boots_brawler|1|1|100|} - {helm_redeye1|1|1|100|} - {helm_redeye2|1|1|100|} - {ring_troublemaker|1|1|100|} - }|}; -{shop_arnal|{ - {sword_hard_iron|1|1|100|} - {axe_fine_iron|1|1|100|} - {longsword_hard_iron|1|1|100|} - {dagger_sharp_steel|1|1|100|} - {gloves_combat1|1|1|100|} - {gloves_remgard1|1|1|100|} - {gloves_remgard2|1|1|100|} - }|}; -{shop_ervelyn|{ - {shirt_weathered|1|1|100|} - {shirt_patched_cloth|1|1|100|} - {shirt2|1|1|100|} - {armour_cvest1|1|1|100|} - {armour_cvest2|1|1|100|} - {gloves_leather1|1|1|100|} - {gloves_arulir|1|1|100|} - }|}; -{shop_kendelow|{ - {meat_cooked|5|5|100|} - {carrot|5|5|100|} - {mushroom|5|5|100|} - {mead|5|5|100|} - }|}; -{shop_skylenar|{ - {health_minor2|10|10|100|} - {health|10|10|100|} - {health_major2|10|10|100|} - {ring_dmg6|1|1|100|} - {ring_protector|1|1|100|} - }|}; - - - diff --git a/AndorsTrail/res/values/content_itemcategories.xml b/AndorsTrail/res/values/content_itemcategories.xml deleted file mode 100644 index 606b56e6a..000000000 --- a/AndorsTrail/res/values/content_itemcategories.xml +++ /dev/null @@ -1,66 +0,0 @@ - - - - -[id|name|actionType|inventorySlot|size|]; -{dagger|Dagger|2|0|1|}; -{ssword|Shortsword|2|0|1|}; -{rapier|Rapier|2|0|2|}; -{lsword|Longsword|2|0|2|}; -{2hsword|Two-handed sword|2|0|3|}; -{bsword|Broadsword|2|0|2|}; -{axe|Axe|2|0|2|}; -{axe2h|Greataxe|2|0|3|}; -{club|Club|2|0|2|}; -{staff|Quarterstaff|2|0|3|}; -{mace|Mace|2|0|2|}; -{scepter|Scepter|2|0|2|}; -{hammer|Warhammer|2|0|2|}; -{hammer2h|Giant hammer|2|0|3|}; - -{buckler|Buckler|2|1|1|}; -{shld_wd_li|Shield, wood (light)|2|1|2|}; -{shld_mtl_li|Shield, metal (light)|2|1|2|}; -{shld_wd_hv|Shield, wood (heavy)|2|1|3|}; -{shld_mtl_hv|Shield, metal (heavy)|2|1|3|}; -{shld_twr|Tower shield|2|1|3|}; - -{hd_cloth|Headwear, cloth|2|2||}; -{hd_lthr|Headwear, leather|2|2|1|}; -{hd_mtl_li|Headwear, metal (light)|2|2|2|}; -{hd_mtl_hv|Headwear, metal (heavy)|2|2|3|}; - -{bdy_clth|Armor, cloth|2|3||}; -{bdy_lthr|Armor, leather|2|3|1|}; -{bdy_hide|Hide armor|2|3|1|}; -{bdy_lt|Armor (light)|2|3|2|}; -{bdy_hv|Armor (heavy)|2|3|3|}; -{chmail|Chain mail|2|3|3|}; -{spmail|Splint mail|2|3|3|}; -{plmail|Plate mail|2|3|3|}; - -{hnd_cloth|Gloves, cloth|2|4||}; -{hnd_lthr|Gloves, leather|2|4|1|}; -{hnd_mtl_li|Gloves, metal (light)|2|4|2|}; -{hnd_mtl_hv|Gloves, metal (heavy)|2|4|3|}; - -{feet_clth|Footwear, cloth|2|5||}; -{feet_lthr|Footwear, leather|2|5|1|}; -{feet_mtl_li|Footwear, metal (light)|2|5|2|}; -{feet_mtl_hv|Footwear, metal (heavy)|2|5|3|}; - -{neck|Necklace|2|6||}; -{ring|Ring|2|7||}; - -{pot|Potion|1|||}; -{food|Food|1|||}; -{drink|Drink|1|||}; -{gem|Gem||||}; -{animal|Animal part||||}; -{animal_e|Edible animal part|1|||}; -{flask|Liquid container||||}; -{money|Money||||}; -{other|Other||||}; - - - diff --git a/AndorsTrail/res/values/content_itemlist.xml b/AndorsTrail/res/values/content_itemlist.xml deleted file mode 100644 index f0ef94d33..000000000 --- a/AndorsTrail/res/values/content_itemlist.xml +++ /dev/null @@ -1,392 +0,0 @@ - - - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{gold|items_misc:10|Gold coins|money||1|1|||||||||||||||||||||||||||||||||}; - - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{club1|items_weapons:42|Wooden club|club|||7|1||||5|10|||0|1|||||||||||||||||||||||}; -{club3|items_weapons:44|Iron club|mace|||253|1||||6|5|||2|7|||||||||||||||||||||||}; -{ironsword0|items_weapons:0|Crude iron sword|lsword|||12|1||||5|10|||0|1|||||||||||||||||||||||}; -{hammer0|items_weapons:45|Iron hammer|hammer|||12|1||||5|10|||0|1|||||||||||||||||||||||}; -{hammer1|items_weapons:45|Giant hammer|hammer2h|||121|1||||10|5|||4|7|||||||||||||||||||||||}; -{dagger0|items_weapons:14|Iron dagger|dagger|||12|1||||5|10|||0|1|||||||||||||||||||||||}; -{dagger1|items_weapons:14|Sharp iron dagger|dagger|||53|1||||4|20|||1|2|||||||||||||||||||||||}; -{dagger2|items_weapons:14|Superior iron dagger|dagger|||70|1||||4|25|||1|2|||||||||||||||||||||||}; -{shortsword1|items_weapons:15|Iron shortsword|ssword|||78|1||||4|15|||1|2|||||||||||||||||||||||}; -{ironsword1|items_weapons:0|Iron sword|lsword|||78|1||||5|10|||1|3|||||||||||||||||||||||}; -{ironsword2|items_weapons:1|Iron longsword|lsword|||121|1||||5|10|||1|4|||||||||||||||||||||||}; -{broadsword1|items_weapons:5|Iron broadsword|bsword|||251|1||||7|2|||1|10|||||||||||||||||||||||}; -{broadsword2|items_weapons:6|Steel broadsword|bsword|||582|1||||6|15|||3|10|||||||||||||||||||||||}; -{steelsword1|items_weapons:7|Steel sword|lsword|||874|1||||4|24|||3|7|||||||||||||||||||||||}; -{axe1|items_weapons:56|Woodcutter axe|axe|||24|1||||5|5|||1|3|||||||||||||||||||||||}; -{axe2|items_weapons:56|Iron axe|axe|||312|1||||6|5|||2|5|||||||||||||||||||||||}; -{quickdagger1|items_weapons:14|Quickstrike dagger|dagger|4||512|1||||3|20|||0|0|-20||||||||||||||||||||||}; - - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{ring_dmg1|items_jewelry:0|Ring of damage +1|ring|||215|1||||||||1|1|||||||||||||||||||||||}; -{ring_dmg2|items_jewelry:1|Ring of damage +2|ring|||398|1||||||||2|2|||||||||||||||||||||||}; -{ring_dmg5|items_jewelry:2|Ring of damage +5|ring|4||2014|1||||||||5|5|||||||||||||||||||||||}; -{ring_dmg6|items_jewelry:3|Ring of damage +6|ring|4||3186|1||||||||6|6|||||||||||||||||||||||}; -{ring_block1|items_jewelry:0|Lesser ring of block|ring|4||1239|1||||||||||10||||||||||||||||||||||}; -{ring_block2|items_jewelry:0|Polished ring of block|ring|4||3866|1||||||||||15||||||||||||||||||||||}; -{ring_atkch1|items_jewelry:0|Ring of surehit|ring|||215|1|||||15|||||||||||||||||||||||||||}; -{ring1|items_jewelry:0|Mundane ring|ring||1|13|1||||||||0|1|||||||||||||||||||||||}; -{ring2|items_jewelry:0|Polished ring|ring||1|21|1||||||||||1||||||||||||||||||||||}; -{ring_jinxed1|items_jewelry:2|Jinxed ring of damage resistance|ring|||229|1||||||||||-9|1|||||||||||||||||||||}; - - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{jewel_fallhaven|items_jewelry:6|Jewel of Fallhaven|neck|4||3125|1||||-1||||||||||||||||||||||||||||}; -{necklace_shield1|items_jewelry:7|Necklace of the guardian|neck|4||935|1||||||||||9||||||||||||||||||||||}; -{necklace_shield2|items_jewelry:7|Shielding necklace|neck|4||1255|1||||||||||12||||||||||||||||||||||}; - - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{shirt1|items_armours:14|Cloth shirt|bdy_clth|||16|1||||||||||2||||||||||||||||||||||}; -{shirt2|items_armours:14|Fine shirt|bdy_clth|||72|1||||||||||5||||||||||||||||||||||}; -{shirt_dmgresist|items_armours:15|Hardened leather shirt|bdy_lthr|4||1633|1||||||||||5|1|||||||||||||||||||||}; -{armor1|items_armours:15|Leather armour|bdy_lthr|||464|1||||||||||8||||||||||||||||||||||}; -{armor2|items_armours:15|Superior leather armour|bdy_lthr|||624|1||||||||||9||||||||||||||||||||||}; -{armor3|items_armours:16|Hard leather armour|bdy_lthr|||2407|1||||||||||13||||||||||||||||||||||}; -{armor4|items_armours:16|Superior hard leather armour|bdy_lthr|||3866|1||||||||||15||||||||||||||||||||||}; -{hat1|items_armours:21|Green hat|hd_cloth|||13|1||||||||||1||||||||||||||||||||||}; -{hat2|items_armours:21|Fine green hat|hd_cloth|||25|1||||||||||2||||||||||||||||||||||}; -{hat3|items_armours:24|Crude leather cap|hd_lthr|||72|1||||||||||5||||||||||||||||||||||}; -{hat4|items_armours:24|Leather cap|hd_lthr|||146|1||||||||||6||||||||||||||||||||||}; -{gloves1|items_armours:35|Leather gloves|hnd_lthr|||23|1||||||||||3||||||||||||||||||||||}; -{gloves2|items_armours:35|Fine leather gloves|hnd_lthr|||38|1||||||||||4||||||||||||||||||||||}; -{gloves3|items_armours:36|Snakeskin gloves|hnd_cloth|||72|1||||||||||5||||||||||||||||||||||}; -{gloves4|items_armours:36|Fine snakeskin gloves|hnd_cloth|||146|1||||||||||6||||||||||||||||||||||}; -{shield1|items_armours:0|Wooden buckler|buckler|||72|1|||||-2|||||5||||||||||||||||||||||}; -{shield3|items_armours:1|Reinforced wooden buckler|buckler|||226|1|||||-5|||||7||||||||||||||||||||||}; -{shield4|items_armours:2|Crude wooden shield|shld_wd_li|||464|1|||||-5|||||8||||||||||||||||||||||}; -{shield5|items_armours:2|Superior wooden shield|shld_wd_li|||624|1|||||-4|||||9||||||||||||||||||||||}; -{boots1|items_armours:28|Leather boots|feet_lthr|||23|1||||||||||3||||||||||||||||||||||}; -{boots2|items_armours:28|Superior leather boots|feet_lthr|||38|1||||||||||4||||||||||||||||||||||}; -{boots3|items_armours:29|Snakeskin boots|feet_lthr|||146|1||||||||||6||||||||||||||||||||||}; -{boots5|items_armours:30|Reinforced boots|feet_mtl_hv|||226|1||||||||||7||||||||||||||||||||||}; -{gloves_attack1|items_armours:35|Gloves of swift attack|hnd_lthr|||150|1|||||15|||||-9||||||||||||||||||||||}; -{gloves_attack2|items_armours:35|Fine gloves of swift attack|hnd_lthr|||221|1|||||17|||||-9||||||||||||||||||||||}; - - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{apple_green|items_consumables:2|Green apple|food||1|14||||||||||||||1|||||{{food|1|8|100|}}||||||||||||||}; -{apple_red|items_consumables:3|Red apple|food||1|22||||||||||||||1|||||{{food|1|12|100|}}||||||||||||||}; -{meat|items_consumables:25|Meat|animal_e||1|29||||||||||||||1|||||{{food|2|12|100|}{foodp|3|10|10|}}||||||||||||||}; -{meat_cooked|items_consumables:27|Cooked meat|food||1|78||||||||||||||1|||||{{food|3|11|100|}}||||||||||||||}; -{strawberry|items_consumables:8|Strawberry|food||1|3||||||||||||||1|||||{{food|1|2|100|}}||||||||||||||}; -{carrot|items_consumables:15|Carrot|food||1|14||||||||||||||1|||||{{food|1|8|100|}}||||||||||||||}; -{bread|items_consumables:21|Bread|food||1|6||||||||||||||1|||||{{food|1|10|100|}}||||||||||||||}; -{mushroom|items_consumables:19|Mushroom|food||1|3||||||||||||||1|||||{{food|1|2|100|}}||||||||||||||}; -{pear|items_consumables:9|Pear|food||1|14||||||||||||||1|||||{{food|1|8|100|}}||||||||||||||}; -{eggs|items_consumables:20|Eggs|food||1|10||||||||||||||1|||||{{food|1|6|100|}}||||||||||||||}; -{radish|items_consumables:14|Radish|food||1|6||||||||||||||1|||||{{food|1|4|100|}}||||||||||||||}; - - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{vial_empty1|items_consumables:56|Small empty vial|flask||1|2|||||||||||||||||||||||||||||||||}; -{vial_empty2|items_consumables:57|Empty vial|flask||1|4|||||||||||||||||||||||||||||||||}; -{vial_empty3|items_consumables:59|Empty flask|flask||1|6|||||||||||||||||||||||||||||||||}; -{vial_empty4|items_consumables:58|Empty potion bottle|flask||1|11|||||||||||||||||||||||||||||||||}; -{health_minor|items_consumables:35|Minor vial of health|pot||1|5||||||||||||||1|5|5|||||||||||||||||}; -{health_minor2|items_consumables:35|Minor potion of health|pot|||18||||||||||||||1|5|5|||||||||||||||||}; -{health|items_consumables:49|Regular potion of health|pot|||40||||||||||||||1|10|10|||||||||||||||||}; -{health_major|items_consumables:28|Major flask of health|pot||1|210||||||||||||||1|40|40|||||||||||||||||}; -{health_major2|items_consumables:28|Major potion of health|pot|||280||||||||||||||1|40|40|||||||||||||||||}; -{mead|items_consumables:51|Mead|drink|||15||||||||||||||1|1|1|||||||||||||||||}; -{milk|items_consumables:55|Milk|drink|||21||||||||||||||1|2|2|||||||||||||||||}; -{bonemeal_potion|items_consumables:34|Bonemeal potion|pot||1|45||||||||||||||1|40|40|||||||||||||||||}; - - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{hair|items_misc:48|Animal hair|animal||1|2|||||||||||||||||||||||||||||||||}; -{insectwing|items_misc:52|Insect wing|animal||1|3|||||||||||||||||||||||||||||||||}; -{bone|items_misc:44|Bone|animal||1|2|||||||||||||||||||||||||||||||||}; -{claws|items_misc:47|Claws|animal||1|2|||||||||||||||||||||||||||||||||}; -{shell|items_misc:54|Insect shell|animal||1|2|||||||||||||||||||||||||||||||||}; -{gland|actorconditions_1:60|Poison gland|animal||1|15|||||||||||||||||||||||||||||||||}; -{rat_tail|items_misc:38|Rat tail|animal||1|2|||||||||||||||||||||||||||||||||}; - - - - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{rock|items_misc:28|Small rock|gem||1|1|||||||||||||||||||||||||||||||||}; -{gem1|items_misc:0|Glass gem|gem||1|2|||||||||||||||||||||||||||||||||}; -{gem2|items_misc:1|Ruby gem|gem||1|6|||||||||||||||||||||||||||||||||}; -{gem3|items_misc:2|Polished gem|gem||1|8|||||||||||||||||||||||||||||||||}; -{gem4|items_misc:3|Sharpened gem|gem||1|13|||||||||||||||||||||||||||||||||}; -{gem5|items_misc:5|Polished sparkling gem|gem||1|15|||||||||||||||||||||||||||||||||}; - - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{tail_caverat|items_misc:38|Cave rat tail|animal|1|1|0|||||||||||||||||||||||||||||||||}; -{tail_trainingrat|items_misc:38|Small rat tail|animal|1|1|0|||||||||||||||||||||||||||||||||}; -{ring_mikhail|items_jewelry:0|Mikhail\'s ring|ring|||15|1|||||10|||||||||||||||||||||||||||}; -{neck_irogotu|items_jewelry:7|Irogotu\'s necklace|neck|3|1|30|1||||||||||5|1|||||||||||||||||||||}; -{ring_gandir|items_jewelry:0|Gandir\'s ring|other|1|1|0|||||||||||||||||||||||||||||||||}; -{dagger_venom|items_weapons:17|Venomous Dagger|dagger|3||15|1||||4|10|5|2|1|2|||||||||||||||||||||||}; -{key_luthor|items_misc:21|Key of Luthor|other|1|1|0|||||||||||||||||||||||||||||||||}; -{calomyran_secrets|items_books:0|Calomyran secrets|other|1|1|0|||||||||||||||||||||||||||||||||}; -{heartstone|items_misc:6|Heartstone|gem|1|1|0|||||||||||||||||||||||||||||||||}; -{vacor_spell|items_books:7|Piece of Vacor\'s spell|other|1|1|0|||||||||||||||||||||||||||||||||}; -{ring_unzel|items_jewelry:0|Unzel\'s ring|other|1|1|0|||||||||||||||||||||||||||||||||}; -{ring_vacor|items_jewelry:0|Vacor\'s ring|other|1|1|0|||||||||||||||||||||||||||||||||}; -{boots_unzel|items_armours:29|Unzel\'s defensive boots|feet_lthr|3||185|1||||||||||8||||||||||||||||||||||}; -{boots_vacor|items_armours:29|Vacor\'s boots of attack|feet_lthr|3||185|1|||||9|||||2||||||||||||||||||||||}; -{necklace_flagstone|items_jewelry:6|Flagstone Warden\'s necklace|other|1|1|0|||||||||||||||||||||||||||||||||}; -{packhide|items_armours:15|Wolfpack\'s animal hide|bdy_hide|3|1|121|1|||||-15|||||2|1|||||||||||||||||||||}; -{sword_flagstone|items_weapons:7|Flagstone\'s pride|lsword|3||169|1||||4|21|10|2|1|6|||||||||||||||||||||||}; - - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{armor_chain1|items_armours:17|Rusty chain mail|chmail|||3629|1|||||-9|||||20||||||||||||||||||||||}; -{armor_chain2|items_armours:17|Ordinary chain mail|chmail|||4191|1|||||-10|||||22||||||||||||||||||||||}; -{hat_leather1|items_armours:24|Ordinary leather cap|hd_lthr|||261|1|||||-2|||||7||||||||||||||||||||||}; -{sleepingmead|items_consumables:51|Prepared sleepy mead|other|1|1|0|||||||||||||||||||||||||||||||||}; -{ffguard_qitem|items_jewelry:0|Feygard patrol ring|other|1|1|0|||||||||||||||||||||||||||||||||}; -{shield6|items_armours:3|Wooden tower shield|shld_twr|||952|1|||||-6|||||12||||||||||||||||||||||}; -{shield7|items_armours:3|Strong wooden tower shield|shld_twr|||1538|1|||||-6|||||14||||||||||||||||||||||}; -{club_wood1|items_weapons:44|Heavy iron club|mace|||950|1||||8|15|5|3|2|11|||||||||||||||||||||||}; -{club_wood2|items_weapons:44|Balanced heavy iron club|mace|||2194|1||||7|10|10|3|2|11|||||||||||||||||||||||}; -{gloves_grip|items_armours:35|Gloves of better grip|hnd_lthr|||471|1|||||9|||||1||||||||||||||||||||||}; -{gloves_fancy|items_armours:35|Fancy gloves|hnd_cloth|||78|1|||||5|||||||||||||||||||||||||||}; -{ring_crit1|items_jewelry:0|Ring of strike|ring|4||2921|1||||||5||||||||||||||||||||||||||}; -{ring_crit2|items_jewelry:0|Ring of vicious strike|ring|4||3455|1|||||-3|7||||||||||||||||||||||||||}; -{armor_stone|items_armours:17|Stone Cuirass|bdy_hv|3||52|1||||2||||||22|1|||||||||||||||||||||}; -{ring_shadow0|items_jewelry:2|Ring of lesser Shadow|ring|2|1|0|1|||||25|6||4|7|5||{{regen|1|}}||||||||||||||||||||}; - - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{rapier_lifesteal|items_weapons:71|Rapier of lifesteal|rapier|2|1|0|1|5|||5|21|||1|6||||||||||1|0|3|||||1|3|3||||}; -{dagger_barbed|items_weapons:17|Barbed dagger|dagger|3|1|0|1||||4|15|||0|0|5|||||||||1||||||{{bleeding_wound|1|5|50|}}|||||||}; -{elytharan_redeemer|items_weapons:70|Elytharan redeemer|2hsword|2|1|0|1||2||5|25|||3|8|5||{{bless|1|}}|0|||||||||||||||||||}; -{clouded_rage|items_weapons:71|Sword of Shadow\'s rage|rapier|3|1|0|1||||5|21|||3|6|5|||0|||||||||||||1|||||{{rage_minor|1|1|50|}}|}; -{shadow_slayer|items_weapons:60|Shadow of the slayer|axe2h|3|1|0|1||2||7|25|10|2|5|9|||||||||||||||||1|1|1||||}; - -{ring_shadow_embrace|items_jewelry:0|Ring of Shadow embrace|ring|3|1|0|1|20||||10|||2|2|||||||||||||||||||||||}; - -{bwm_dagger|items_weapons:19|Blackwater dagger|dagger|4|1|539|1||||3|40|||1|1|5||{{blackwater_misery|1|}}||||||||||||||||||||}; -{bwm_dagger_venom|items_weapons:19|Blackwater poisoned dagger|dagger|4|1|1552|1||||3|45|||1|1|||{{blackwater_misery|1|}}|||||||1||||||{{poison_weak|1|5|50|}}|||||||}; -{bwm_ironsword|items_weapons:0|Blackwater iron sword|lsword|4|1|1224|1||||4|50|||3|7|5||{{blackwater_misery|1|}}||||||||||||||||||||}; -{bwm_leather_armour|items_armours:15|Blackwater leather armour|bdy_lthr|4|1|2551|1||||||||||25|1|{{blackwater_misery|1|}}||||||||||||||||||||}; -{bwm_leather_cap|items_armours:24|Blackwater leather cap|hd_lthr|4|1|722|1|5|||||||||21||{{blackwater_misery|1|}}||||||||||||||||||||}; -{bwm_combat_ring|items_jewelry:2|Blackwater ring of combat|ring|4|1|595|1|||||5|||0|7|||{{blackwater_misery|1|}}||||||||||||||||||||}; -{bwm_brew|items_consumables:51|Blackwater brew|pot||1|57||||||||||||||1|15|15|||{{intoxicated|1|10|100|}}||||||||||||||}; -{woodcutter_hatchet|items_weapons:57|Woodcutter\'s hatchet|axe|||0|1||||6|9|||6|12|||||||||||||||||||||||}; -{woodcutter_boots|items_armours:30|Woodcutter\'s boots|feet_lthr|||873|1|1||||3|||||8||||||||||||||||||||||}; -{heavy_club|items_weapons:44|Heavy club|mace|||1229|1||||7|15|5|3|2|15|||||||||||||||||||||||}; - -{pot_speed_1|items_consumables:41|Minor potion of speed|pot||1|261||||||||||||||1|||||{{speed_minor|1|5|100|}}||||||||||||||}; -{pot_poison_weak|items_consumables:40|Weak poison|pot||1|125||||||||||||||1|||||{{poison_weak|1|5|100|}}||||||||||||||}; -{pot_poison_weak_antidote|items_consumables:54|Weak poison antidote|pot||1|337||||||||||||||1|||||{{poison_weak|-99||100|}}||||||||||||||}; -{pot_bleeding_ointment|items_consumables:35|Ointment of bleeding wounds|pot||1|310||||||||||||||1|||||{{bleeding_wound|-99||100|}}||||||||||||||}; -{pot_fatigue_restore|items_consumables:41|Restore fatigue|pot||1|210||||||||||||||1|||||{{fatigue_minor|-99||100|}}||||||||||||||}; - -{pot_blind_rage|items_consumables:63|Potion of blind rage|pot||1|495||||||||||||||1|||||{{rage_minor|1|5|100|}}|0|||||||0||||||}; - - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{rusted_iron_sword|items_weapons:0|Rusted iron sword|lsword|||52|1||||5|10|||1|2|||||||||||||||||||||||}; -{broken_buckler|items_armours:0|Broken wooden buckler|buckler|||120|1|||||-5|||||1||||||||||||||||||||||}; -{used_gloves|items_armours:35|Blood-stained gloves|hnd_lthr|||56|1||||||||||1||||||||||||||||||||||}; - - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{bwm_claws|items_misc:47|White wyrm claw|animal||1|35|||||||||||||||||||||||||||||||||}; -{bwm_permit|items_books:8|Forged papers for Blackwater|other|1|1|0|||||||||||||||||||||||||||||||||}; -{bjorgur_dagger|items_weapons:14|Bjorgur\'s family dagger|dagger|1|1|0|1||||5||||||||||||||||||||||||||||}; -{q_kazaul_vial|items_consumables:57|Vial of purifying spirit|other|1|1|0|||||||||||||||||||||||||||||||||}; -{guthbered_id|items_jewelry:0|Guthbered\'s ring|other|1|1|0|||||||||||||||||||||||||||||||||}; -{harlenn_id|items_jewelry:0|Harlenn\'s ring|other|1|1|0|||||||||||||||||||||||||||||||||}; - - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{dagger_shadow_priests|items_weapons:17|Dagger of the Shadow priests|dagger|3|1|15|1||||4|20|20|3|1|2|||||||||||||||||||||||}; -{sword_hard_iron|items_weapons:0|Hardened iron sword|lsword||0|369|1||||5|15|||2|4|||||||||||||||||||||||}; -{club_fine_wooden|items_weapons:42|Fine wooden club|club||0|245|1||||5|12|||0|7|||||||||||||||||||||||}; -{axe_fine_iron|items_weapons:56|Fine iron axe|axe||0|365|1||||6|9|||4|6|||||||||||||||||||||||}; -{longsword_hard_iron|items_weapons:1|Hardened iron longsword|lsword||0|362|1||||5|14|||2|6|||||||||||||||||||||||}; -{broadsword_fine_iron|items_weapons:5|Fine iron broadsword|bsword||0|422|1||||7|5|||4|10|||||||||||||||||||||||}; -{dagger_sharp_steel|items_weapons:14|Sharp steel dagger|dagger||0|1428|1||||4|24|||2|4|||||||||||||||||||||||}; -{sword_balanced_steel|items_weapons:7|Balanced steel sword|lsword||0|2797|1||||4|32|||3|7|||||||||||||||||||||||}; -{broadsword_fine_steel|items_weapons:6|Fine steel broadsword|bsword||0|1206|1||||6|20|||4|11|||||||||||||||||||||||}; -{sword_defenders|items_weapons:2|Defender\'s blade|lsword||0|1711|1||||5|26|||3|7|3||||||||||||||||||||||}; -{sword_villains|items_weapons:16|Villain\'s blade|ssword||0|1665|1||||4|20|5|3|1|2|||||||||||||||||||||||}; -{sword_challengers|items_weapons:1|Challenger\'s iron sword|lsword||0|785|1||||5|20|||2|6|||||||||||||||||||||||}; -{sword_fencing|items_weapons:13|Fencing blade|rapier||0|922|1||||4|14|||2|5|5||||||||||||||||||||||}; -{club_brutal|items_weapons:44|Brutal club|mace||0|2522|1||||7|20|5|3|2|21|||||||||||||||||||||||}; -{axe_gutsplitter|items_weapons:58|Gutsplitter|axe2h||0|2733|1||||6|21|||7|17|||||||||||||||||||||||}; -{hammer_skullcrusher|items_weapons:45|Skullcrusher|hammer2h||0|3142|1||||7|20|5|3|0|26|||||||||||||||||||||||}; -{shield_crude_wooden|items_armours:0|Crude wooden buckler|buckler||0|31|1||||||||||1||||||||||||||||||||||}; -{shield_cracked_wooden|items_armours:0|Cracked wooden buckler|buckler||0|34|1|||||-2|||||2||||||||||||||||||||||}; -{shield_wooden_buckler|items_armours:0|Second-hand wooden buckler|buckler||0|92|1|||||-2|||||3||||||||||||||||||||||}; -{shield_wooden|items_armours:2|Wooden shield|shld_wd_li||0|514|1|||||-4|||||8||||||||||||||||||||||}; -{shield_wooden_defender|items_armours:2|Wooden defender|shld_wd_li||0|1996|1|||||-8|-5||||14|1|||||||||||||||||||||}; -{hat_hard_leather|items_armours:24|Hardened leather cap|hd_lthr||0|648|1|||||-3|-1||||8||||||||||||||||||||||}; -{hat_fine_leather|items_armours:24|Fine leather cap|hd_lthr||0|846|1|||||-3|-2||||9||||||||||||||||||||||}; -{hat_leather_vision|items_armours:24|Leather cap of reduced vision|hd_lthr||0|971|1|||||-3|-4||||10||||||||||||||||||||||}; -{helm_crude_iron|items_armours:25|Crude iron helmet|hd_mtl_hv||0|1120|1|||||-3|-5||||11||||||||||||||||||||||}; -{shirt_torn|items_armours:14|Torn shirt|bdy_clth||0|92|1|||||-2|||||3||||||||||||||||||||||}; -{shirt_weathered|items_armours:14|Weathered shirt|bdy_clth||0|125|1|||||-1|||||3||||||||||||||||||||||}; -{shirt_patched_cloth|items_armours:14|Patched cloth shirt|bdy_clth||0|208|1||||||||||4||||||||||||||||||||||}; -{armour_crude_leather|items_armours:16|Crude leather armour|bdy_lthr||0|514|1|||||-4|||||8||||||||||||||||||||||}; -{armour_firm_leather|items_armours:16|Firm leather armour|bdy_lthr||0|417|1|||1|||||||8||||||||||||||||||||||}; -{armour_rigid_leather|items_armours:16|Rigid leather armour|bdy_lthr||0|625|1|||1||-1|||||9||||||||||||||||||||||}; -{armour_rigid_chain|items_armours:17|Rigid chain mail|chmail||0|4667|1||||1|-5|||||23||||||||||||||||||||||}; -{armour_superior_chain|items_armours:17|Superior chain mail|chmail||0|5992|1|||||-9|||||23||||||||||||||||||||||}; -{armour_chain_champ|items_armours:17|Champion\'s chain mail|chmail||0|6808|1|2||||-9|-5||||24||||||||||||||||||||||}; -{armour_leather_villain|items_armours:16|Villain\'s leather armour|bdy_lthr||0|3700|1|||-1||-4|3||||15||||||||||||||||||||||}; -{armour_misfortune|items_armours:15|Leather shirt of misfortune|bdy_lthr||0|2459|1|||||-5|||-1|-1|15||||||||||||||||||||||}; -{gloves_barbrawler|items_armours:35|Bar brawler\'s gloves|hnd_lthr||0|95|1|||||5|||||2||||||||||||||||||||||}; -{gloves_fumbling|items_armours:35|Gloves of fumbling|hnd_lthr||0|-432|1|||||-5|||||1||||||||||||||||||||||}; -{gloves_crude_cloth|items_armours:35|Crude cloth gloves|hnd_cloth||0|31|1||||||||||1||||||||||||||||||||||}; -{gloves_crude_leather|items_armours:35|Crude leather gloves|hnd_lthr||0|180|1|||||-4|||||6||||||||||||||||||||||}; -{gloves_troublemaker|items_armours:36|Troublemaker\'s gloves|hnd_lthr||0|501|1|1||||7|4||||4||||||||||||||||||||||}; -{gloves_guards|items_armours:37|Guard\'s gloves|hnd_mtl_li||0|636|1|3||||3|||||5||||||||||||||||||||||}; -{gloves_leather_attack|items_armours:35|Leather gloves of attack|hnd_lthr||0|510|1|3||||13|||||-2||||||||||||||||||||||}; -{gloves_woodcutter|items_armours:35|Woodcutter\'s gloves|hnd_lthr||0|426|1|3||||8|||||1||||||||||||||||||||||}; -{boots_crude_leather|items_armours:28|Crude leather boots|feet_lthr||0|31|1||||||||||1||||||||||||||||||||||}; -{boots_sewn|items_armours:28|Sewn footwear|feet_clth||0|73|1||||||||||2||||||||||||||||||||||}; -{boots_coward|items_armours:28|Coward\'s boots|feet_lthr||0|933|1|||-1|||||||2||||||||||||||||||||||}; -{boots_hard_leather|items_armours:30|Hardened leather boots|feet_lthr||0|626|1|||1||-4|||||10||||||||||||||||||||||}; -{boots_defender|items_armours:30|Defender\'s boots|feet_mtl_li||0|1190|1|2|||||||||9||||||||||||||||||||||}; -{necklace_shield_0|items_jewelry:7|Lesser shielding necklace|neck||0|131|1||||||||||3||||||||||||||||||||||}; -{necklace_strike|items_jewelry:6|Necklace of strike|neck||0|832|1|5|||||5||||||||||||||||||||||||||}; -{necklace_defender_stone|items_jewelry:7|Defender\'s stone|neck|4|0|1325|1|||||||||||1|||||||||||||||||||||}; -{necklace_protector|items_jewelry:7|Necklace of the protector|neck|4|0|3207|1|5||||||||||2|||||||||||||||||||||}; -{ring_crude_combat|items_jewelry:0|Crude combat ring|ring||0|44|1|||||5|||0|1|||||||||||||||||||||||}; -{ring_crude_surehit|items_jewelry:0|Crude ring of surehit|ring||0|52|1|||||7|||||||||||||||||||||||||||}; -{ring_crude_block|items_jewelry:0|Crude ring of block|ring||0|73|1||||||||||2||||||||||||||||||||||}; -{ring_rough_life|items_jewelry:0|Rough ring of life force|ring||0|100|1|1|||||||||||||||||||||||||||||||}; -{ring_fumbling|items_jewelry:0|Ring of fumbling|ring||0|-463|1|||||-5|||||||||||||||||||||||||||}; -{ring_rough_damage|items_jewelry:0|Rough ring of damage|ring||0|56|1||||||||0|2|||||||||||||||||||||||}; -{ring_barbrawler|items_jewelry:0|Bar brawler\'s ring|ring||0|222|1|||||12|||0|1|||||||||||||||||||||||}; -{ring_dmg_3|items_jewelry:0|Ring of damage +3|ring||0|624|1||||||||3|3|||||||||||||||||||||||}; -{ring_life|items_jewelry:0|Ring of life force|ring||0|557|1|5|||||||||||||||||||||||||||||||}; -{ring_taverbrawler|items_jewelry:0|Tavern brawler\'s ring|ring||0|314|1|||||12|||0|3|||||||||||||||||||||||}; -{ring_defender|items_jewelry:0|Defender\'s ring|ring||0|755|1|||||-6|||||11||||||||||||||||||||||}; -{ring_challenger|items_jewelry:0|Challenger\'s ring|ring||0|408|1|||||12|||||4||||||||||||||||||||||}; -{ring_dmg_4|items_jewelry:2|Ring of damage +4|ring||0|1168|1||||||||4|4|||||||||||||||||||||||}; -{ring_troublemaker|items_jewelry:2|Troublemaker\'s ring|ring||0|797|1|||||15|||2|4|||||||||||||||||||||||}; -{ring_guardian|items_jewelry:2|Ring of the guardian|ring|4|0|1489|1|||||19|||3|5|||||||||||||||||||||||}; -{ring_block|items_jewelry:2|Ring of block|ring|4|0|2192|1||||||||||13||||||||||||||||||||||}; -{ring_backstab|items_jewelry:2|Ring of backstabbing|ring||0|1363|1|||||17|7||||3||||||||||||||||||||||}; -{ring_polished_combat|items_jewelry:2|Polished combat ring|ring|4|0|1346|1|5||||15|||1|5|||||||||||||||||||||||}; -{ring_villain|items_jewelry:2|Villain\'s ring|ring|4|0|2750|1|4||||25|||3|6|||||||||||||||||||||||}; -{ring_polished_backstab|items_jewelry:2|Polished ring of backstabbing|ring|4|0|2731|1|||||21|7||4|4|||||||||||||||||||||||}; -{ring_protector|items_jewelry:4|Ring of the protector|ring|4|0|3744|1|3||||20|||0|3|14||||||||||||||||||||||}; - - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{erinith_book|items_books:0|Erinith\'s book|other|1|1|0|||||||||||||||||||||||||||||||||}; -{hadracor_waspwing|items_misc:52|Giant wasp wing|animal|1|1|0|||||||||||||||||||||||||||||||||}; -{tinlyn_bells|items_necklaces_1:10|Tinlyn\'s sheep bell|other|1|1|0|||||||||||||||||||||||||||||||||}; -{tinlyn_sheep_meat|items_consumables:25|Meat from Tinlyn\'s sheep|animal|1|1|0|||||||||||||||||||||||||||||||||}; -{rogorn_qitem|items_books:7|Piece of painting|other|1|1|0|||||||||||||||||||||||||||||||||}; -{fg_ironsword|items_weapons:0|Feygard iron sword|lsword|1|1|0|1||||5|10|||1|5|||||||||||||||||||||||}; -{fg_ironsword_d|items_weapons:0|Degraded Feygard iron sword|lsword|1|1|0|1||||5|-50|||0|0|||||||||||||||||||||||}; -{buceth_vial|items_consumables:47|Buceth\'s vial of green liquid|other|1|1|0|||||||||||||||||||||||||||||||||}; -{chaosreaper|items_weapons:49|Chaosreaper|scepter|3|1|339|1||||4|-30|||0|2||||0||||||1||||||{{chaotic_grip|5|3|50|}}|||||||}; -{izthiel_claw|items_misc:47|Izthiel claw|animal_e||1|1||||||||||||||1|||||{{food|3|6|100|}{foodp|3|10|20|}}||||||||||||||}; -{iqhan_pendant|items_necklaces_1:2|Iqhan pendant|neck||1|10|1|||||6|||||||||||||||||||||||||||}; -{shadowfang|items_weapons_3:41|Shadowfang|ssword|3|1|512|1|-20|||4|40|||2|5||||0||||||1|||||{{fatigue_minor|1|3|20|}}||||||||}; -{gloves_life|items_armours_2:1|Gloves of life force|hnd_lthr|3|1|390|1|9||||5|||||3||||||||||||||||||||||}; - - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{pot_focus_dmg|items_consumables:39|Potion of damage focus|pot||1|272||||||||||||||1|||||{{focus_dmg|1|4|100|}}||||||||||||||}; -{pot_focus_dmg2|items_consumables:39|Strong potion of damage focus|pot||1|630||||||||||||||1|||||{{focus_dmg|2|4|100|}}||||||||||||||}; -{pot_focus_ac|items_consumables:37|Potion of accuracy focus|pot||1|210||||||||||||||1|||||{{focus_ac|1|4|100|}}||||||||||||||}; -{pot_focus_ac2|items_consumables:37|Strong potion of accuracy focus|pot||1|618||||||||||||||1|||||{{focus_ac|2|4|100|}}||||||||||||||}; -{pot_scaradon|items_consumables:48|Scaradon extract|pot||0|28||||||||||||||1|5|10|||||||||||||||||}; - -{remgard_shield_1|items_armours_3:24|Remgard shield|shld_mtl_li||0|2189|1|||||-3|||||9|1|||||||||||||||||||||}; -{remgard_shield_2|items_armours_3:24|Remgard combat shield|shld_mtl_li||0|2720|1|||||-3|||||11|1|||||||||||||||||||||}; - -{helm_combat1|items_armours:25|Combat helm|hd_mtl_li||0|455|1|||||5|||||6||||||||||||||||||||||}; -{helm_combat2|items_armours:25|Enhanced combat helmet|hd_mtl_li||0|485|1|||||7|||||6||||||||||||||||||||||}; -{helm_combat3|items_armours:26|Remgard combat helmet|hd_mtl_hv||0|1540|1|1||||-3|-5||||12||||||||||||||||||||||}; -{helm_redeye1|items_armours:24|Cap of red eyes|hd_lthr||0|1|1|-5|||||||||8||||||||||||||||||||||}; -{helm_redeye2|items_armours:24|Cap of bloody eyes|hd_lthr||0|1|1|-5|||||||0|1|8||||||||||||||||||||||}; -{helm_defend1|items_armours_3:31|Defender\'s helmet|hd_mtl_hv||0|1975|1|||||-3|||||8|1|||||||||||||||||||||}; -{helm_protector0|items_armours_3:31|Strange looking helmet|hd_mtl_li|1|1|0|1|-9|||||||0|1|5||||||||||||||||||||||}; -{helm_protector|items_armours_3:31|Dark protector|hd_mtl_li|3|0|3119|1|-6|||||||0|1|13|1|||||||||||||||||||||}; - -{armour_chain_remg|items_armours_3:13|Remgard chain mail|chmail||0|8927|1|||||-7|||||25||||||||||||||||||||||}; -{armour_cvest1|items_armours_3:5|Combat vest|bdy_lt||0|1116|1|||||15|||||8||||||||||||||||||||||}; -{armour_cvest2|items_armours_3:5|Remgard combat vest|bdy_lt||0|1244|1|||||17|||||8||||||||||||||||||||||}; - -{gloves_leather1|items_armours:38|Hardened leather gloves|hnd_lthr||0|757|1|3||||2|||||6||||||||||||||||||||||}; -{gloves_arulir|items_armours_2:1|Arulir skin gloves|hnd_lthr||0|1793|1|||||-3|||||7|1|||||||||||||||||||||}; -{gloves_combat1|items_armours:36|Combat gloves|hnd_lthr||0|956|1|4||||-5|||||9||||||||||||||||||||||}; -{gloves_combat2|items_armours:36|Enhanced combat gloves|hnd_lthr||0|1204|1|4||||-5|||||10||||||||||||||||||||||}; -{gloves_remgard1|items_armours:37|Remgard fighting gloves|hnd_mtl_li||0|1205|1|4|||||||||8||||||||||||||||||||||}; -{gloves_remgard2|items_armours:37|Enchanted Remgard gloves|hnd_mtl_li||0|1326|1|5||||2|||||8||||||||||||||||||||||}; -{gloves_guard1|items_armours:38|Gloves of the guardian|hnd_lthr||1|601|1|||||-9|-5||||14||||||||||||||||||||||}; - -{boots_combat1|items_armours:30|Combat boots|feet_mtl_li||0|0|1|||||7|||||7||||||||||||||||||||||}; -{boots_combat2|items_armours:30|Enhanced combat boots|feet_mtl_li||0|0|1|||||7|||||11||||||||||||||||||||||}; -{boots_remgard1|items_armours:31|Remgard boots|feet_mtl_hv||0|0|1|4|||||||||12||||||||||||||||||||||}; -{boots_guard1|items_armours:31|Boots of the guardian|feet_mtl_hv||0|0|1||||||||||7|1|||||||||||||||||||||}; -{boots_brawler|items_armours_3:38|Bar brawler\'s boots|feet_lthr||0|0|1|2|||||4||||7||||||||||||||||||||||}; - -{marrowtaint|items_necklaces_1:9|Marrowtaint|neck|3|0|4760|1|5|||-1|9|||||9||||||||||||||||||||||}; -{valugha_gown|items_armours_3:2|Silk robe of Valugha|bdy_clth|3|0|3109|1|5||-1||30|||||-10|||||||||0|||||||||||||}; -{valugha_hat|items_armours_3:1|Valugha\'s shimmering hat|hd_cloth|3|1|648|1|3||-1||15|||-2|-2|-5||||||||||||||||||||||}; -{hat_crit|items_armours_3:0|Woodcutter\'s feathered hat|hd_cloth|3|0|1|1||||||4||||-5||||||||||||||||||||||}; - - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{thorin_bone|items_misc:44|Chewed bone|animal|1|1|0|||||||||||||||||||||||||||||||||}; -{spider|items_misc:40|Dead spider|animal||1|1|||||||||||||||||||||||||||||||||}; -{irdegh|items_misc:49|Irdegh poison gland|animal||1|5|||||||||||||||||||||||||||||||||}; -{arulir_skin|items_misc:39|Arulir skin|animal||1|4|||||||||||||||||||||||||||||||||}; -{algangror_rat|items_misc:38|Strange looking rat tail|animal|1|1|0|||||||||||||||||||||||||||||||||}; -{oegyth|items_misc:35|Oegyth crystal|gem|1|1|0|||||||||||||||||||||||||||||||||}; -{toszylae_heart|items_misc:6|Demon heart|other|1|1|0|||||||||||||||||||||||||||||||||}; -{potion_rotworm|items_consumables:63|Kazaul rotworm|other|1|1|0|||||||||||||||||||||||||||||||||}; - - - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{lyson_marrow|items_consumables:63|Vial of Lyson marrow extract|other|1|1|0|||||||||||||||||||||||||||||||||}; -{algangror_idol|items_misc_2:220|Small idol|other|1|1|0|||||||||||||||||||||||||||||||||}; -{algangror_ring|items_rings_1:11|Algangror\'s ring|other|1|1|0|||||||||||||||||||||||||||||||||}; -{kaverin_message|items_books:7|Kaverin\'s sealed message|other|1|1|0|||||||||||||||||||||||||||||||||}; -{vacor_map|items_books:9|Map to Vacor\'s old hideout|other|1|1|0|||||||||||||||||||||||||||||||||}; - - - diff --git a/AndorsTrail/res/values/content_monsterlist.xml b/AndorsTrail/res/values/content_monsterlist.xml deleted file mode 100644 index 3c32cd1d4..000000000 --- a/AndorsTrail/res/values/content_monsterlist.xml +++ /dev/null @@ -1,562 +0,0 @@ - - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{tiny_rat|monsters_rats:0|Tiny rat|trainingrat||4|1||2|||10|50|||1|1|||trainingrat|||||||||}; -{cave_rat|monsters_rats:1|Cave rat|crossglen_caverat||4|||5|||10|90|||2|2|||rat|||||||||}; -{tough_cave_rat|monsters_rats:1|Tough cave rat|crossglen_caverat2||4|||5|||5|90|||3|3|||rat|||||||||}; -{strong_cave_rat|monsters_rats:3|Strong cave rat|crossglen_caveboss||4|1||20|||5|100|||2|4|10||caveratboss|||||||||}; -{black_ant|monsters_insects:0|Black ant|crossglen_ant||1|||3|||10|70|||1|2|||insect|||||||||}; -{small_wasp|monsters_insects:1|Small wasp|crossglen_wasp||1|||4|||10|70|||1|2|||wasp|||||||||}; -{beetle|monsters_insects:4|Beetle|crossglen_beetle||1|||4|||10|70|||3|3|||insect|||||||||}; -{forest_wasp|monsters_insects:1|Forest wasp|forestwasp||1|||6|||10|70|||1|2|||wasp|||||||||}; -{forest_ant|monsters_insects:0|Forest ant|forestant||1|||4|||10|90|||1|2|10||insect|||||||||}; -{yellow_forest_ant|monsters_insects:2|Yellow forest ant|forestant||1|||5|||10|100|||2|2|15||insect|||||||||}; -{small_rabid_dog|monsters_dogs:1|Small rabid dog|forestdog||4|||6|||10|90|||2|2|||canine|||||||||}; -{forest_snake|monsters_snakes:1|Forest Snake|forestsnake||7|||7|||10|110|||1|2|10||snake|||||||||}; -{young_cave_snake|monsters_snakes:3|Young Cave Snake|cavesnake1||7|||8|||5|110|10|2|2|2|10||snake|||||||||}; -{cave_snake|monsters_snakes:3|Cave Snake|cavesnake1||7|||12|||5|110|20|2|2|2|15||snake|||||||||}; -{venomous_cave_snake|monsters_snakes:3|Venomous Cave Snake|cavesnake2||7|||15|10||5|110|40|2|2|2|10||snake||1||||||{{poison_weak|1|1|10|}}|}; -{tough_cave_snake|monsters_snakes:3|Tough Cave Snake|cavesnake2||7|||21|||5|110|20|2|2|2|15||snake|||||||||}; -{basilisk|monsters_rats:4|Basilisk|cavesnake2_boss||7|||40|||7|40|||3|9|50|2|cavecritter|||||||||}; -{snake_servant|monsters_liches:0|Snake servant|cavesnake3||6|||35|||5|80|40|3|2|3|10|1|lich1|||||||||}; -{snake_master|monsters_liches:1|Snake master|cavesnake3_boss||6|1||55|||5|60|200|3|1|4|10|4|snakemaster|snakemaster||||||||}; -{rabid_boar|monsters_dogs:6|Rabid Boar|forestboar||4|||20|||5|110|||3|3|30||canineboss|||||||||}; -{rabid_fox|monsters_dogs:3|Rabid Fox|fox1||4|||25|||5|100|||3|3|50||canine|||||||||}; -{yellow_cave_ant|monsters_insects:2|Yellow cave ant|pitcave1||1|||20|||3|30|||1|1|80||insect|||||||||}; -{young_teeth_critter|monsters_misc:0|Young teeth critter|pitcave2||7|||15|||2|50|||1|1|70||cavecritter|||||||||}; -{teeth_critter|monsters_misc:0|Teeth critter|pitcave2||7|||25|||2|60|10|3|1|1|70||cavecritter|||||||||}; -{young_minotaur|monsters_misc:5|Young minotaur|pitcave2||5|||45|||6|20|40|3|4|4|50|2|cavemonster|||||||||}; -{strong_minotaur|monsters_misc:5|Strong minotaur|pitcave2_boss||5|||53|||6|40|50|3|5|5|50|2|cavemonster|||||||||}; -{irogotu|monsters_liches:0|Irogotu|pitcave_boss||6|1||61|||3|50|40|3|2|5|70|4|irogotu|irogotu||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{lost_spirit|monsters_rltiles2:45|Lost spirit|minorhaunt1||8|||15|||10|50|||1|2|10|3|haunt|haunt||||||||}; -{lost_soul|monsters_rltiles2:45|Lost soul|minorhaunt2||8|||15|||10|50|||1|2|10|4|haunt|||||||||}; -{haunting|monsters_ghost1:0|Haunting|haunt3||8|||31|10|10|5|120|20|2|1|5|30|1|haunt|||||||||}; -{skeletal_warrior|monsters_skeleton1:0|Skeletal warrior|skeleton1||3|||52|10|10|5|60|||1|3|40|1|skeleton|||||||||}; -{skeletal_master|monsters_skeleton2:0|Skeletal master|skeletonmaster||3|||52|10|10|5|70|||1|3|30|2|skeleton|||||||||}; -{skeleton|monsters_skeleton1:0|Skeleton|skeleton1||3|||35|10|10|10|60|||1|4|40||skeleton|||||||||}; - -{guardian_of_the_catacombs|monsters_rltiles2:45|Guardian of the catacombs|catacombguard1||8|1||6|10|10|10|10|||1|6|10|3|catacombguard|catacombguard||||||||}; -{catacomb_rat|monsters_rats:0|Catacomb rat|catacombrat1||4|||15|10|10|3|60|||1|1|40||catacombrat|||||||||}; -{large_catacomb_rat|monsters_rats:3|Large catacomb rat|catacombrat1||4|||21|10|10|3|60|10|2|1|2|40||catacombrat|||||||||}; -{ghostly_visage|monsters_ghost1:0|Ghostly visage|catacombguard2||8|||16|10|10|5|20|||1|4|20|2|catacombguard|||||||||}; -{spectre|monsters_rltiles2:45|Spectre|catacombguard2||8|||15|10|10|3|50|||1|5|60|2|catacombguard|||||||||}; -{apparition|monsters_rltiles2:45|Apparition|catacombguard3||8|||17|10|10|3||||1|5|70|2|catacombguard|||||||||}; -{shade|monsters_ghost1:0|Shade|catacombguard3||8|||16|10|10|5|20|||1|4|20|3|catacombguard|||||||||}; -{young_gargoyle|monsters_misc:2|Young gargoyle|catacombguard3||3|||35|10|10|10|110|10|2|2|5|70|1|catacombguard|||||||||}; -{ghost_of_luthor|monsters_liches:2|Ghost of Luthor|luthor||6|1||86|10|10|5|120|15|2|2|5|50|3|luthor|luthor||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{mikhail|monsters_mage2:0|Mikhail|mikhail||0|||||||||||||||mikhail_start_select||||||||}; -{leta|monsters_men:2|Leta|leta||0|||||||||||||||leta1||||||||}; -{audir|monsters_men:0|Audir|audir||0||||||||||||||shop_audir|audir1||||||||}; -{arambold|monsters_men:3|Arambold|arambold||0||||||||||||||shop_arambold|arambold1||||||||}; -{tharal|monsters_men:4|Tharal|tharal||0||||||||||||||shop_tharal|tharal1||||||||}; -{drunk|monsters_rltiles3:14|Drunk|drunk||0|||||||||||||||drunk1||||||||}; -{mara|monsters_men:7|Mara|mara||0||||||||||||||shop_mara|mara1||||||||}; -{gruil|monsters_rogue1:0|Gruil|gruil||0||||||||||||||shop_gruil|gruil1||||||||}; -{leonid|monsters_men:3|Leonid|leonid||0|||||||||||||||leonid1||||||||}; -{farmer|monsters_man1:0|Farmer|crossglen_farmer1||0|||||||||||||||farm1||||||||}; -{tired_farmer|monsters_man1:0|Tired farmer|crossglen_farmer2||0|||||||||||||||farm2||||||||}; -{oromir|monsters_man1:0|Oromir|oromir||0|||||||||||||||oromir1||||||||}; -{odair|monsters_men:8|Odair|odair||0|||||||||||||||odair1||||||||}; -{jan|monsters_rltiles3:14|Jan|jan||0|||||||||||||||jan_start_select||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{warden|monsters_men:3|Warden|fallhaven_warden||0|||||||||||||||fallhaven_warden_select_1||||||||}; -{guard|monsters_rltiles3:14|Guard|fallhaven_guard||0|||||||||||||||fallhaven_guard||||||||}; -{acolyte|monsters_men:4|Acolyte|fallhaven_priest||0|||||||||||||||fallhaven_priest||||||||}; -{bearded_citizen|monsters_man1:0|Bearded Citizen|fallhaven_citizen1||0|||||||||||||||fallhaven_citizen1||||||||}; -{old_citizen|monsters_men:2|Old Citizen|fallhaven_citizen2||0|||||||||||||||fallhaven_citizen2||||||||}; -{tired_citizen|monsters_men:7|Tired Citizen|fallhaven_citizen4||0|||||||||||||||fallhaven_citizen4||||||||}; -{citizen|monsters_man1:0|Citizen|fallhaven_citizen3||0|||||||||||||||fallhaven_citizen3||||||||}; -{grumpy_citizen|monsters_men:2|Grumpy Citizen|fallhaven_citizen5||0|||||||||||||||fallhaven_citizen5||||||||}; -{blond_citizen|monsters_men:7|Blond Citizen|fallhaven_citizen6||0|||||||||||||||fallhaven_citizen6||||||||}; -{bucus|monsters_rogue1:0|Bucus|bucus||0|||||||||||||||bucus_welcome||||||||}; -{drunkard|monsters_men:0|Drunkard|fallhaven_drunk||0|||||||||||||||fallhaven_drunk||||||||}; -{old_man|monsters_men:5|Old man|fallhaven_oldman||0|||||||||||||||fallhaven_oldman||||||||}; -{nocmar|monsters_men:8|Nocmar|nocmar||0||||||||||||||nocmar|nocmar||||||||}; -{prisoner|monsters_rogue1:0|Prisoner|fallhaven_prisoner||0|||1|1|1|1|0|||0|0||||||||||||}; -{ganos|monsters_rogue1:0|Ganos|ganos||0||||||||||||||shop_ganos|ganos||||||||}; -{arcir|monsters_mage2:0|Arcir|arcir||0|||||||||||||||arcir_start||||||||}; -{athamyr|monsters_men:4|Athamyr|athamyr||0|||||||||||||||athamyr||||||||}; -{thoronir|monsters_men2:8|Thoronir|thoronir||0||||||||||||||shop_thoronir|thoronir_default||||||||}; -{chapelgoer|monsters_men:6|Mourning woman|chapelgoer||0|||||||||||||||chapelgoer||||||||}; -{potion_merchant|monsters_mage2:0|Potion merchant|fallhaven_potions||0||||||||||||||shop_fallhaven_potions|fallhaven_potions||||||||}; -{tailor|monsters_men2:0|Tailor|fallhaven_clothes||0||||||||||||||shop_fallhaven_clothes|fallhaven_clothes||||||||}; -{bela|monsters_men:7|Bela|bela||0||||||||||||||shop_bela|bela||||||||}; -{larcal|monsters_men2:2|Larcal|larcal||0|1||51|10|10|10|25|||1|2|50||larcal|larcal||||||||}; -{gaela|monsters_men2:9|Gaela|gaela||0|||||||||||||||gaela||||||||}; -{unnmir|monsters_mage2:0|Unnmir|unnmir||0|||||||||||||||unnmir||||||||}; -{rigmor|monsters_men:1|Rigmor|rigmor||0|||||||||||||||rigmor||||||||}; - -{jakrar|monsters_men2:2|Jakrar|fallhaven_lumberjack||0|||||||||||||||fallhaven_lumberjack||||||||}; -{alaun|monsters_mage2:0|Alaun|alaun||0|||||||||||||||alaun||||||||}; -{busy_farmer|monsters_man1:0|Busy Farmer|fallhaven_farmer1||0|||||||||||||||fallhaven_farmer1||||||||}; -{old_farmer|monsters_mage2:0|Old Farmer|fallhaven_farmer2||0|||||||||||||||fallhaven_farmer2||||||||}; -{khorand|monsters_men:3|Khorand|khorand||0|||||||||||||||khorand||||||||}; - -{vacor|monsters_mage:0|Vacor|vacor||0|1||72|||5|110|||4|8|40|2|vacor|vacor||||||||}; -{unzel|monsters_men:8|Unzel|unzel||0|1||59|||10|80|30|3|5|9|40|2|unzel|unzel||||||||}; -{shady_bandit|monsters_men2:9|Shady Bandit|fallhaven_bandit||0|1||45|||5|70|30|3|3|9|50|2|fallhaven_bandit|fallhaven_bandit||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{wild_fox|monsters_dogs:3|Wild Fox|fox2||4|||25|||5|100|||4|5|40||canine|||||||||}; -{stinging_wasp|monsters_insects:1|Stinging wasp|forestwasp2||1|||15|||10|150|||1|2|60||wasp|||||||||}; -{wild_boar|monsters_dogs:6|Wild Boar|forestboar2||4|||20|||5|110|||3|3|30||canineboss|||||||||}; -{forest_beetle|monsters_insects:4|Forest Beetle|forestbeetle||1|||14|||10|150|||2|4|60|2|insect|||||||||}; -{wolf|monsters_dogs:4|Wolf|forestwolf1||4|||30|10|3|5|110|||3|6|30||canine|||||||||}; -{forest_serpent|monsters_snakes:4|Forest serpent|forestserpent1||7|||20|10|5|3|150|30|2|2|3|60||snake2|||||||||}; -{vicious_forest_serpent|monsters_snakes:4|Vicious forest serpent|forestserpent2||7|||27|10|5|3|150|30|2|3|4|50||snake2|||||||||}; -{anklebiter|monsters_dogs:6|Anklebiter|forestboar3||4|||31|||5|150|||3|9|60|3|canine2|||||||||}; -{flagstone_sentry|monsters_men:3|Flagstone Sentry|flagstone_sentry||0|||||||||||||||flagstone_sentry||||||||}; -{escaped_prisoner|monsters_men:0|Escaped prisoner|prisoner1||0|1||15|||10|50|||3|7|20||prisoner|prisoner1||||||||}; -{starving_prisoner|monsters_misc:11|Starving prisoner|prisoner2||0|1||10|||3|60|||3|5|60||prisoner|prisoner2||||||||}; -{bone_warrior|monsters_skeleton1:0|Bone warrior|skeleton2||3|||32|||5|120|||3|9|60|2|skeleton2|||||||||}; -{bone_champion|monsters_skeleton1:0|Bone champion|skeleton3||3|||49|||5|130|||4|9|60|2|skeleton3|||||||||}; -{undead_warden|monsters_liches:0|Undead warden|flagstone_guard0||6|1||57|||5|120|20|2|4|8|60|1|flagstone_guard0|flagstone_guard0||||||||}; -{cave_guardian|monsters_rltiles1:16|Cave guardian|flagstone_guard1||2|1||61|||5|150|10|3|4|10|90|2|flagstone_guard1|flagstone_guard1||||||||}; -{winged_demon|monsters_demon1:0|Winged demon|flagstone_guard2|2x2|2|1||82|||5|90|10|2|4|12|70|5|flagstone_guard2|flagstone_guard2||||||||}; -{narael|monsters_man1:0|Narael|narael||0|||||||||||||||narael||||||||}; -{rotting_corpse|monsters_zombie1:0|Rotting corpse|undead1||6|||71|||10|30|50|2|2|5|30|2|undead1|zombie1||||||||}; -{walking_corpse|monsters_zombie1:0|Walking corpse|undead1||6|||90|||10|30|40|2|2|4|30|2|undead1|||||||||}; -{gargoyle|monsters_misc:2|Gargoyle|undead1||3|||47|||10|110|10|2|3|7|70|2|undead1|||||||||}; -{fledgling_gargoyle|monsters_misc:1|Fledgling Gargoyle|undead1||3|||35|||10|110|||3|6|60|2|undead1|||||||||}; -{large_cave_rat|monsters_rats:3|Large cave rat|undeadrat1||4|||21|10|10|3|60|10|2|3|4|40||catacombrat|||||||||}; -{pack_leader|monsters_dogs:5|Pack Leader|pack_boss||4|1||65|||5|90|20|2|2|10|40|4|pack_boss|||||||||}; -{pack_hunter|monsters_dogs:4|Pack hunter|pack3||4|||45|||5|90|10|2|2|7|40|3|pack3|||||||||}; -{rabid_wolf|monsters_dogs:4|Rabid Wolf|pack2||4|||42|||5|90|||2|6|50|3|pack2|||||||||}; -{fledgling_wolf|monsters_dogs:3|Fledgling wolf|pack2||4|||42|||3|70|||2|5|50|3|pack2|||||||||}; -{young_wolf|monsters_dogs:4|Young wolf|pack1||4|||35|||3|60|||2|5|30|2|pack1|||||||||}; -{hunting_dog|monsters_dogs:2|Hunting dog|pack1||4|||25|||5|60|||2|5|50||pack1|||||||||}; -{highwayman|monsters_men:8|Highwayman|bandit1||0|||54|||5|90|50|2|2|4|30|2|bandit1|bandit1||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{smug_looking_thief|monsters_men2:9|Smug looking thief|tg_thief||0|||||||||||||||thievesguild_thief_1||||||||}; -{thieves_guild_cook|monsters_men:0|Thieves guild cook|tg_cook||0||||||||||||||shop_thieves_guild_cook|thievesguild_cook_1||||||||}; -{pickpocket|monsters_men:7|Pickpocket|pickpocket||0|||||||||||||||thievesguild_pickpocket_1||||||||}; -{troublemaker|monsters_men:8|Troublemaker|troublemaker||0||||||||||||||shop_troublemaker|thievesguild_troublemaker_1||||||||}; -{farrik|monsters_rogue1:0|Farrik|farrik||0|||||||||||||||farrik_select_1||||||||}; -{umar|monsters_man1:0|Umar|umar||0|||||||||||||||umar_select_1||||||||}; -{kaori|monsters_men:7|Kaori|kaori||0|||||||||||||||kaori_start||||||||}; -{old_vilegard_villager|monsters_men:0|Old Vilegard villager|vilegard_villager_1||0|||||||||||||||vilegard_villager_1||||||||}; -{grumpy_vilegard_villager|monsters_men:5|Grumpy Vilegard villager|vilegard_villager_2||0|||||||||||||||vilegard_villager_2||||||||}; -{vilegard_citizen|monsters_men:1|Vilegard citizen|vilegard_villager_3||0|||||||||||||||vilegard_villager_3||||||||}; -{vilegard_resident|monsters_men2:0|Vilegard resident|vilegard_villager_4||0|||||||||||||||vilegard_villager_4||||||||}; -{vilegard_woman|monsters_men:6|Vilegard woman|vilegard_villager_5||0|||||||||||||||vilegard_villager_5||||||||}; -{erttu|monsters_mage2:0|Erttu|erttu||0|||||||||||||||erttu_1||||||||}; -{dunla|monsters_rogue1:0|Dunla|dunla||0||||||||||||||shop_dunla|dunla_default||||||||}; -{tharwyn|monsters_men:7|Tharwyn|tharwyn||0||||||||||||||shop_tharwyn|tharwyn_select||||||||}; -{tavern_guest|monsters_men:0|Tavern guest|vg_tavern_drunk||0|||||||||||||||vilegard_tavern_drunk_1||||||||}; -{jolnor|monsters_men2:8|Jolnor|jolnor||0||||||||||||||shop_jolnor|jolnor_select_1||||||||}; -{alynndir|monsters_mage2:0|Alynndir|alynndir||0||||||||||||||shop_alynndir|alynndir_1||||||||}; -{vilegard_armorer|monsters_mage2:0|Vilegard armorer|vg_armorer||0||||||||||||||shop_vg_armorer|vilegard_armorer_select||||||||}; -{vilegard_smith|monsters_mage2:0|Vilegard smith|vg_smith||0||||||||||||||shop_vg_smith|vilegard_smith_select||||||||}; -{ogam|monsters_men:0|Ogam|ogam||0|||||||||||||||ogam_1||||||||}; -{foaming_flask_cook|monsters_men:0|Foaming Flask cook|ff_cook||0|||||||||||||||ff_cook_1||||||||}; -{torilo|monsters_men2:9|Torilo|torilo||0||||||||||||||shop_torilo|torilo_1||||||||}; -{ambelie|monsters_men:6|Ambelie|ambelie||0|||||||||||||||ambelie_1||||||||}; -{feygard_patrol|monsters_rltiles3:14|Feygard patrol|ff_guard||0|||||||||||||||ff_guard_1||||||||}; -{feygard_patrol_captain|monsters_men:3|Feygard patrol captain|ff_captain||0|||||||||||||||ff_captain_1||||||||}; -{feygard_patrol_watch|monsters_rltiles3:14|Feygard patrol watch|ff_outsideguard||0|1||80|||5|70|||2|7|80|3|ff_outsideguard|ff_outsideguard_select||||||||}; -{wrye|monsters_men:6|Wrye|wrye||0|||||||||||||||wrye_select_1||||||||}; -{oluag|monsters_men:8|Oluag|oluag||0|||||||||||||||oluag_1||||||||}; - -{cave_dwelling_boar|monsters_dogs:6|Cave dwelling boar|caveboar1||4|||35|||5|70|||3|8|60|3|canine2|||||||||}; -{hardshell_beetle|monsters_insects:4|Hardshell beetle|beetle2||1|||25|||5|50|||0|5|40|9|beetle2|||||||||}; -{young_shadow_gargoyle|monsters_misc:1|Young shadow gargoyle|shadowgarg1||3|||35|||5|65|8|3|3|9|75|3|shadowgarg1|||||||||}; -{fledgling_shadow_gargoyle|monsters_misc:1|Fledgling shadow gargoyle|shadowgarg1||3|||36|||5|65|8|3|3|9|75|3|shadowgarg1|||||||||}; -{shadow_gargoyle|monsters_misc:2|Shadow gargoyle|shadowgarg2||3|||37|||5|70|8|3|4|10|85|3|shadowgarg1|||||||||}; -{tough_shadow_gargoyle|monsters_misc:2|Tough shadow gargoyle|shadowgarg2||3|||37|||5|70|8|3|4|10|85|4|shadowgarg2|||||||||}; -{shadow_gargoyle_trainer|monsters_liches:0|Shadow gargoyle trainer|shadowgarg3||6|||35|||5|90|12|3|3|6|90|5|shadowgarg3|||||||||}; -{shadow_gargoyle_master|monsters_liches:1|Shadow gargoyle master|shadowgarg4||6|||35|||5|125|12|3|3|6|90|5|shadowgarg3|||||||||}; -{maelveon|monsters_liches:2|Maelveon|maelveon||6|1||55|||3|80|15|3|0|12|90|5|maelveon|maelveon||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{puny_caverat|monsters_rats:0|Cave rat|puny_caverat||4|||5|10|5|5|50|||1|1|30||rat|||||||||}; -{rabid_hound|monsters_rltiles2:108|Rabid hound|forestwolf2||4|||40|10|5|5|110|||3|9|30||canine|||||||||}; -{vicious_hound|monsters_rltiles2:110|Vicious hound|forestboar4||4|||31|10|5|5|150|||3|9|60|3|canineboss|||||||||}; -{mountain_wolf|monsters_rltiles2:109|Mountain wolf|primwolf1||4|||49|10|5|5|150|||3|9|60|3|canine|||||||||}; - -{hatchling_white_wyrm|monsters_rltiles1:118|Hatchling white wyrm|wyrm_1||7|||41|10|5|5|75|||4|10|130|5|wyrm_1||1||||||{{fatigue_minor|1|5|10|}}|}; -{young_white_wyrm|monsters_rltiles1:118|Young white wyrm|wyrm_2||7|||47|10|5|5|75|||4|10|130|5|wyrm_2||1||||||{{fatigue_minor|1|5|20|}}|}; -{white_wyrm|monsters_rltiles1:119|White wyrm|wyrm_3||7|||55|10|5|3|75|||4|10|130|5|wyrm_3||1||||||{{fatigue_minor|1|5|50|}}|}; -{young_aulaeth|monsters_rltiles2:176|Young aulaeth|wyrm_1||5|||105|10|5|5|40|||0|4|30|5|aulaeth||1|1|1|||||}; -{aulaeth|monsters_rltiles2:58|Aulaeth|wyrm_2||5|||120|10|5|5|40|||0|5|40|6|aulaeth||1|1|1|||||}; -{strong_aulaeth|monsters_rltiles2:58|Strong aulaeth|wyrm_3||5|||135|10|5|5|40|||0|5|35|6|aulaeth||1|1|1|||||}; -{wyrm_trainer|monsters_rltiles2:0|Wyrm trainer|wyrm_4||6|||69|10|5|3|90|||2|9|90|4|wyrm_4||1|1|1||||{{fatigue_minor|1|10|70|}}|}; -{wyrm_apprentice|monsters_rltiles2:0|Wyrm apprentice|wyrm_4||6|||69|10|5|5|140|||2|9|90|4|wyrm_4||1|1|1||||{{fatigue_minor|1|10|70|}}|}; -{young_gornaud|monsters_rltiles2:29|Young gornaud|gornaud_1||5|||70|10|5|5|70|||0|15|50||gornaud_1||1||||||{{dazed|1|5|20|}}|}; -{gornaud|monsters_rltiles2:29|Gornaud|gornaud_2||5|||95|10|5|5|70|||0|15|50|4|gornaud_2||1||||||{{dazed|1|5|50|}}|}; -{strong_gornaud|monsters_rltiles2:30|Strong Gornaud|gornaud_3||5|||95|10|5|5|70|||0|15|50|5|gornaud_3||1||||||{{dazed|1|5|70|}}|}; -{slithering_venomfang|monsters_snakes:2|Slithering venomfang|gornaud_1||7|||35|10|5|3|120|||1|2|90|2|cave_serpent||1||||||{{poison_weak|1|2|20|}}|}; -{scaled_venomfang|monsters_snakes:3|Scaled venomfang|gornaud_2||7|||35|10|5|3|150|||2|4|90|2|cave_serpent||1||||||{{poison_weak|1|2|50|}}|}; -{tough_venomfang|monsters_snakes:3|Tough venomfang|gornaud_3||7|||41|10|5|3|150|||2|5|90|2|cave_serpent||1||||||{{poison_weak|1|2|50|}}|}; - -{restless_dead|monsters_rltiles1:47|Restless dead|restless_dead_1||8|||25|10|5|5|50|80|2|0|3|140|3|restless_dead_1|||||||||}; -{grave_spawn|monsters_rltiles1:49|Grave spawn|restless_dead_1||2|||45|10|5|5|110|40|2|2|5|35|3|restless_dead_1|||||||||}; -{restless_apparition|monsters_rltiles1:47|Restless apparition|restless_dead_2||8|||29|10|5|3|90|60|3|2|6|10|1|restless_dead_2|||||||||}; -{skeletal_reaper|monsters_rltiles1:27|Skeletal reaper|restless_dead_2||3|||15|10|5|5|150|20|2|0|9|110||restless_dead_2|||||||||}; -{kazaul_spawn|monsters_rltiles1:41|Kazaul spawn|kazaul_1||2|||45|10|5|3|70|50|2|3|5|90|1|kazaul_1|||||||||}; -{kazaul_imp|monsters_rltiles1:45|Kazaul imp|kazaul_2||2|||45|10|5|3|70|40|2|3|7|105|1|kazaul_2|||||||||}; -{kazaul_guardian|monsters_rltiles1:42|Kazaul guardian|kazaul_guardian||2|1||95|10|5|5|70|40|2|3|8|90|3|kazaul_guardian|kazaul_guardian||||||||}; -{graverobber|monsters_karvis2:3|Graverobber|bjorgur_bandit||0|1||62|10|5|5|120|||2|6|72|1|bjorgur_bandit|bjorgur_bandit||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{agent1|monsters_men:4|Agent|bwm_agent_1||0|1||||||||||||||bwm_agent_1_start||||||||}; -{agent2|monsters_men:4|Agent|bwm_agent_2||0|1||||||||||||||bwm_agent_2_start||||||||}; -{agent3|monsters_men:4|Agent|bwm_agent_3||0|1||||||||||||||bwm_agent_3_start||||||||}; -{agent4|monsters_men:4|Agent|bwm_agent_4||0|1||||||||||||||bwm_agent_4_start||||||||}; -{agent5|monsters_men:4|Agent|bwm_agent_5||0|1||||||||||||||bwm_agent_5_start||||||||}; -{agent6|monsters_men:4|Agent|bwm_agent_6||0|1||||||||||||||bwm_agent_6_start||||||||}; -{arghest|monsters_rltiles2:81|Arghest|arghest||0|||||||||||||||arghest_start||||||||}; -{tonis|monsters_rltiles1:67|Tonis|tonis||0|||||||||||||||tonis_start||||||||}; - -{moyra|monsters_rltiles1:74|Moyra|moyra||0|||||||||||||||moyra_1||||||||}; -{prim_citizen|monsters_karvis2:6|Prim citizen|prim_commoner1||0|||||||||||||||prim_commoner1||||||||}; -{prim_commoner|monsters_rltiles1:68|Prim commoner|prim_commoner2||0|||||||||||||||prim_commoner2||||||||}; -{prim_resident|monsters_karvis2:2|Prim resident|prim_commoner3||0|||||||||||||||prim_commoner3||||||||}; -{prim_evoker|monsters_rltiles1:84|Prim evoker|prim_commoner4||0|||||||||||||||prim_commoner4||||||||}; -{laecca|monsters_rltiles1:72|Laecca|laecca||0|||||||||||||||laecca_1||||||||}; -{prim_cook|monsters_karvis2:0|Prim cook|prim_cook||0|||||||||||||||prim_cook_start||||||||}; -{prim_visitor|monsters_rltiles1:63|Prim visitor|prim_innguest||0|||||||||||||||prim_innguest||||||||}; -{birgil|monsters_rltiles2:81|Birgil|birgil||0||||||||||||||shop_birgil|birgil_1||||||||}; -{prim_tavern_guest|monsters_rltiles1:106|Prim tavern guest|prim_tavern_guest1||0|||||||||||||||prim_tavern_guest1||||||||}; -{prim_tavern_regular|monsters_rltiles1:106|Prim tavern regular|prim_tavern_guest2||0|||||||||||||||prim_tavern_guest2||||||||}; -{prim_bar_guest|monsters_rltiles1:106|Prim bar guest|prim_tavern_guest3||0|||||||||||||||prim_tavern_guest3||||||||}; -{prim_bar_regular|monsters_rltiles1:106|Prim bar regular|prim_tavern_guest4||0|||||||||||||||prim_tavern_guest4||||||||}; -{prim_armorer|monsters_rltiles1:88|Prim armorer|prim_armorer||0||||||||||||||shop_prim_armorer|prim_armorer||||||||}; -{jueth|monsters_men2:0|Jueth|prim_tailor||0|||||||||||||||prim_tailor||||||||}; -{bjorgur|monsters_karvis2:7|Bjorgur|bjorgur||0|||||||||||||||bjorgur_start||||||||}; -{prim_prisoner|monsters_rltiles2:81|Prim prisoner|prim_prisoner||0|||||||||||||||prim_guard1||||||||}; -{fulus|monsters_karvis2:3|Fulus|fulus||0|||||||||||||||fulus_start||||||||}; -{guthbered|monsters_rltiles1:92|Guthbered|guthbered||0|1||80|10|5|5|70|||4|9|80|4|guthbered|guthbered_start||||||||}; -{guthbereds_bodyguard|monsters_rltiles1:76|Guthbered\'s bodyguard|guthbered_guard||0|||||||||||||||guthbered_guard||||||||}; -{prim_weapon_guard|monsters_rltiles1:65|Prim weapon guard|prim_guard1||0|||||||||||||||prim_guard1||||||||}; -{prim_sentry|monsters_rltiles3:14|Prim sentry|prim_guard2||0|||||||||||||||prim_guard2||||||||}; -{prim_guard|monsters_rltiles1:65|Prim guard|prim_guard4||0|||||||||||||||prim_guard4||||||||}; -{tired_prim_guard|monsters_rltiles1:76|Tired Prim guard|prim_guard3||0|||||||||||||||prim_guard3||||||||}; -{prim_treasury_guard|monsters_rltiles1:69|Prim treasury guard|prim_treasury_guard||0|||||||||||||||prim_treasury_guard||||||||}; -{samar|monsters_rltiles2:93|Samar|prim_priest||0||||||||||||||shop_samar|prim_priest||||||||}; -{prim_priestly_acolyte|monsters_rltiles1:83|Prim priestly acolyte|prim_acolyte||0|||||||||||||||prim_acolyte||||||||}; -{studying_prim_pupil|monsters_rltiles1:74|Studying Prim pupil|prim_pupil1||0|||||||||||||||prim_pupil1||||||||}; -{reading_prim_pupil|monsters_rltiles1:74|Reading Prim pupil|prim_pupil2||0|||||||||||||||prim_pupil2||||||||}; -{prim_pupil|monsters_rltiles1:74|Prim pupil|prim_pupil3||0|||||||||||||||prim_pupil3||||||||}; - -{blackwater_entrance_guard|monsters_rltiles3:14|Blackwater entrance guard|blackwater_entranceguard||0|||30|10|||||||||||blackwater_entranceguard||||||||}; -{blackwater_dinner_guest|monsters_karvis2:2|Blackwater dinner guest|blackwater_guest1||0|||20|10|||||||||||blackwater_guest1||||||||}; -{blackwater_inhabitant|monsters_man1:0|Blackwater inhabitant|blackwater_guest2||0|||10|10|||||||||||blackwater_guest2||||||||}; -{blackwater_cook|monsters_karvis2:0|Blackwater cook|blackwater_cook||0|||||||||||||||blackwater_cook||||||||}; -{keneg|monsters_rltiles1:86|Keneg|keneg||0|||||||||||||||keneg||||||||}; -{mazeg|monsters_rltiles1:85|Mazeg|mazeg||0||||||||||||||shop_mazeg|mazeg||||||||}; -{waeges|monsters_rltiles1:88|Waeges|waeges||0||||||||||||||shop_waeges|waeges||||||||}; -{blackwater_fighter|monsters_rltiles1:66|Blackwater fighter|blackwater_fighter||0|||||||||||||||blackwater_fighter||||||||}; -{ungorm|monsters_rltiles1:83|Ungorm|ungorm||0|||||||||||||||ungorm||||||||}; -{blackwater_pupil|monsters_rltiles1:74|Blackwater pupil|blackwater_pupil||0|||||||||||||||blackwater_pupil||||||||}; -{laede|monsters_rltiles1:81|Laede|blackwater_sleephall||0|||||||||||||||laede||||||||}; -{herec|monsters_men2:9|Herec|herec||0||||||||||||||shop_herec|herec_start||||||||}; -{iducus|monsters_rltiles1:87|Iducus|iducus||0||||||||||||||shop_iducus|iducus||||||||}; -{blackwater_priest|monsters_rltiles1:80|Blackwater priest|blackwater_priest||0|||||||||||||||blackwater_priest||||||||}; -{studying_blackwater_priest|monsters_rltiles1:84|Studying Blackwater priest|blackwater_pupil||0|||||||||||||||blackwater_pupil||||||||}; -{blackwater_guard|monsters_rltiles1:76|Blackwater guard|blackwater_guard1||0|||||||||||||||blackwater_guard1||||||||}; -{blackwater_border_patrol|monsters_rltiles1:76|Blackwater border patrol|blackwater_guard2||0|||||||||||||||blackwater_guard2||||||||}; -{harlenns_bodyguard|monsters_rltiles1:76|Harlenn\'s bodyguard|blackwater_bossguard||0|||||||||||||||blackwater_bossguard||||||||}; -{blackwater_chamber_guard|monsters_men:3|Blackwater chamber guard|blackwater_throneguard||0|1||||||||||||||blackwater_throneguard||||||||}; -{harlenn|monsters_men2:6|Harlenn|harlenn||0|1||80|10|5|5|70|||4|9|80|4|harlenn|harlenn_start||||||||}; -{throdna|monsters_men2:4|Throdna|throdna||0|||||||||||||||throdna_start||||||||}; -{throdnas_guard|monsters_rltiles1:85|Throdna\'s guard|throdna_guard||0|||||||||||||||throdna_guard||||||||}; -{blackwater_mage|monsters_rltiles1:80|Blackwater mage|blackwater_acolyte||0|||||||||||||||blackwater_acolyte||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{young_larval_burrower|monsters_rltiles2:164|Young larval burrower|larva_1||1|||30|10|5|5|120|35|3|1|6|25||larva_1|||||||||}; -{larval_burrower|monsters_rltiles2:164|Larval burrower|larva_2||1|||35|10|5|5|120|35|3|1|6|25||larva_2|||||||||}; -{larval_boss|monsters_rltiles2:164|Strong larval burrower|larva_boss||1|1||35|10|5|5|120|35|3|1|6|25||larva_boss|||||||||}; - -{rivertroll|monsters_rltiles1:104|River troll|rivertroll||5|1||210|10|5|5|120|30|4|2|9|65|7|rivertroll|||||||||}; -{grass_ant|monsters_insects:0|Grasslands ant|fieldcritter_0||1|||29|10|5|3|120|||0|4|80||fieldcritter_0|||||||||}; -{grass_ant2|monsters_insects:2|Tough grasslands ant|fieldcritter_0||1|||29|10|5|3|125|||1|5|80||fieldcritter_0|||||||||}; -{grass_beetle|monsters_insects:4|Grasslands beetle|fieldcritter_1||1|||34|10|5|5|120|||0|5|80|3|fieldcritter_1|||||||||}; -{grass_beetle2|monsters_insects:4|Tough grasslands beetle|fieldcritter_1||1|||35|10|5|5|125|||1|6|80|4|fieldcritter_1|||||||||}; -{grass_snake|monsters_rltiles2:25|Grasslands snake|fieldcritter_2||7|||36|10|5|3|120|||0|6|80||fieldcritter_2|||||||||}; -{grass_snake2|monsters_rltiles2:25|Tough grasslands snake|fieldcritter_2||7|||38|10|5|3|125|||1|7|80||fieldcritter_2|||||||||}; -{grass_lizard|monsters_rltiles2:114|Grasslands lizard|fieldcritter_3||7|||45|10|5|3|120|||0|8|80|3|fieldcritter_3|||||||||}; -{grass_lizard2|monsters_rltiles2:117|Black grasslands lizard|fieldcritter_3||7|||45|10|5|3|125|||2|9|80|4|fieldcritter_3|||||||||}; - -{keknazar|monsters_misc:9|Keknazar|keknazar||7|1||90|10|5|5|50|20|3|3|9|70|8|keknazar|keknazar||||||||}; - -{crossroads_rat|monsters_rats:0|Rat|crossroads_rat||4|||5|10|5|5|50|||1|1|30||rat|||||||||}; -{fieldwasp_0|monsters_insects:1|Frantic forest wasp|fieldwasp_0||1|||29|10|5|3|70|60|3|2|6|95||fieldwasp|||||||||}; -{fieldwasp_1|monsters_insects:1|Frantic forest wasp|fieldwasp_1||1|||32|10|5|3|70|70|3|2|6|125||fieldwasp|||||||||}; -{fieldwasp_2|monsters_insects:1|Frantic forest wasp|fieldwasp_2||1|||35|10|5|3|70|75|3|2|6|130||fieldwasp|||||||||}; - -{izthiel_1|monsters_rltiles2:51|Young Izthiel|izthiel_1||7|||40|10|5|3|70|||2|7|57|5|izthiel||0|||||||}; -{izthiel_2|monsters_rltiles2:49|Izthiel|izthiel_2||7|||45|10|5|3|90|||2|7|58|6|izthiel||0|||||||}; -{izthiel_3|monsters_rltiles2:48|Strong Izthiel|izthiel_3||7|||52|10|5|3|80|||2|7|60|8|izthiel||1||||||{{bleeding_wound|2|4|40|}}|}; -{izthiel_4|monsters_rltiles2:52|Izthiel Guardian|izthiel_4||7|||54|10|5|3|120|||3|7|60|11|izthiel_4||1||||||{{bleeding_wound|3|5|50|}}|}; -{frog_1|monsters_rltiles1:131|River frog|frog_1||7|||15|10|5|2|150|||0|5|45||frog||0|||||||}; -{frog_2|monsters_rltiles1:131|Tough river frog|frog_2||7|||17|10|5|2|160|||0|5|49||frog||0|||||||}; -{frog_3|monsters_rltiles1:130|Poisonous river frog|frog_3||7|||21|10|5|2|165|||0|5|55||frog_3||1||||||{{poison_weak|2|5|30|}}|}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{lostsheep1|monsters_karvis2:8|Sheep|tinlyn_lostsheep1||4|1||5|10|5|5|10|||0|1|5||tinlyn_sheep|tinlyn_lostsheep1||||||||}; -{lostsheep2|monsters_karvis2:8|Sheep|tinlyn_lostsheep2||4|1||5|10|5|5|10|||0|1|5||tinlyn_sheep|tinlyn_lostsheep2||||||||}; -{lostsheep3|monsters_karvis2:8|Sheep|tinlyn_lostsheep3||4|1||5|10|5|5|10|||0|1|5||tinlyn_sheep|tinlyn_lostsheep3||||||||}; -{lostsheep4|monsters_karvis2:8|Sheep|tinlyn_lostsheep4||4|1||5|10|5|5|10|||0|1|5||tinlyn_sheep|tinlyn_lostsheep4||||||||}; -{sheep1|monsters_karvis2:8|Sheep|tinlyn_sheep||4|1||5|10|5|5|10|||0|1|5||tinlyn_sheep|tinlyn_sheep||||||||}; - -{ailshara|monsters_men:8|Ailshara|ailshara||0||||||||||||||shop_ailshara|ailshara||||||||}; -{arngyr|monsters_rltiles1:65|Arngyr|arngyr||0|||||||||||||||arngyr||||||||}; -{benbyr|monsters_rltiles1:74|Benbyr|benbyr||0|||||||||||||||benbyr||||||||}; -{celdar|monsters_rltiles1:94|Celdar|celdar||0|||||||||||||||celdar||||||||}; -{conren|monsters_karvis2:5|Conren|conren||0|||||||||||||||conren||||||||}; -{crossroads_backguard|monsters_rltiles1:76|Guard|crossroads_backguard||0|1||||||||||||||crossroads_backguard||||||||}; -{crossroads_guard|monsters_rltiles1:76|Guard|crossroads_guard||0|||||||||||||||crossroads_guard||||||||}; -{crossroads_sleepguard|monsters_rltiles1:76|Guard|crossroads_sleepguard||0|||||||||||||||crossroads_sleepguard||||||||}; -{crossroads_guest|monsters_rltiles1:83|Visitor|crossroads_guest||0|||||||||||||||crossroads_guest||||||||}; -{erinith|monsters_rltiles1:82|Erinith|erinith||0|||||||||||||||erinith||||||||}; -{fanamor|monsters_men:7|Fanamor|fanamor||0|||||||||||||||fanamor||||||||}; -{feygard_bridgeguard|monsters_men2:4|Feygard bridge guard|feygard_bridgeguard||0|||||||||||||||feygard_bridgeguard||||||||}; -{fieldwasp_unique|monsters_insects:1|Frantic forest wasp|fieldwasp_unique||1|1||70|10|5|3|70|200|3|2|6|150||fieldwasp_unique|||||||||}; -{gallain|monsters_man1:0|Gallain|gallain||0||||||||||||||shop_gallain|gallain||||||||}; -{gandoren|monsters_rltiles1:69|Gandoren|gandoren||0|||||||||||||||gandoren||||||||}; -{grimion|monsters_men2:2|Grimion|grimion||0||||||||||||||shop_grimion|grimion||||||||}; -{hadracor|monsters_men2:2|Hadracor|hadracor||0||||||||||||||shop_hadracor|hadracor||||||||}; -{kuldan|monsters_rltiles1:85|Kuldan|kuldan||0|||||||||||||||kuldan||||||||}; -{kuldan_guard|monsters_rltiles3:14|Kuldan\'s Guard|kuldan_guard||0|||||||||||||||kuldan_guard||||||||}; -{landa|monsters_men:0|Landa|landa||0|||||||||||||||landa||||||||}; -{loneford_chapelguard|monsters_rltiles1:78|Chapel guard|loneford_chapelguard||0|||||||||||||||loneford_chapelguard||||||||}; -{loneford_farmer0|monsters_karvis2:1|Farmer|loneford_farmer0||0|||||||||||||||loneford_farmer0||||||||}; -{loneford_guard0|monsters_rltiles3:14|Guard|loneford_guard0||0|||||||||||||||loneford_guard0||||||||}; -{loneford_tavern_patron|monsters_karvis2:2|Tavern owner|loneford_tavern_patron||0|||||||||||||||loneford_tavern_patron||||||||}; -{loneford_villager0|monsters_karvis2:0|Villager|loneford_villager0||0|||||||||||||||loneford_villager0||||||||}; -{loneford_villager1|monsters_karvis2:1|Villager|loneford_villager1||0|||||||||||||||loneford_villager1||||||||}; -{loneford_villager2|monsters_karvis2:3|Villager|loneford_villager2||0|||||||||||||||loneford_villager2||||||||}; -{loneford_villager3|monsters_karvis2:5|Villager|loneford_villager3||0|||||||||||||||loneford_villager3||||||||}; -{loneford_villager4|monsters_men:2|Villager|loneford_villager4||0|||||||||||||||loneford_villager4||||||||}; -{loneford_wellguard|monsters_rltiles1:72|Guard|loneford_wellguard||0|||||||||||||||loneford_wellguard||||||||}; -{mienn|monsters_rltiles1:87|Mienn|mienn||0|||||||||||||||mienn||||||||}; -{minarra|monsters_rltiles1:86|Minarra|minarra||0||||||||||||||shop_minarra|minarra||||||||}; -{puny_warehouserat|monsters_rats:1|Warehouse rat|puny_warehouserat||4|||5|10|5|5|50|||1|1|30||rat|||||||||}; -{rolwynn|monsters_rltiles1:77|Rolwynn|rolwynn||0|||||||||||||||rolwynn||||||||}; -{sienn|monsters_rltiles1:66|Sienn|sienn||0|||||||||||||||sienn||||||||}; -{sienn_pet|monsters_misc:0|Sienn\'s pet|sienn_pet||7|||||||||||||||sienn_pet||||||||}; -{siola|monsters_rltiles1:90|Siola|siola||0||||||||||||||shop_siola|siola||||||||}; -{taevinn|monsters_karvis2:5|Taevinn|taevinn||0|||||||||||||||taevinn||||||||}; -{talion|monsters_men2:8|Talion|talion||0||||||||||||||shop_talion|talion||||||||}; -{telund|monsters_rltiles1:74|Telund|telund||0|||||||||||||||telund||||||||}; -{tinlyn|monsters_karvis2:7|Tinlyn|tinlyn||0|||||||||||||||tinlyn||||||||}; -{wallach|monsters_rltiles1:75|Wallach|wallach||0|||||||||||||||wallach||||||||}; -{woodcutter_0|monsters_men:0|Woodcutter|woodcutter_0||0|||||||||||||||woodcutter_0||||||||}; -{woodcutter_2|monsters_men:0|Woodcutter|woodcutter_2||0|||||||||||||||woodcutter_2||||||||}; -{woodcutter_3|monsters_men2:2|Woodcutter|woodcutter_3||0|||||||||||||||woodcutter_3||||||||}; -{woodcutter_4|monsters_rltiles1:93|Woodcutter|woodcutter_4||0|||||||||||||||woodcutter_4||||||||}; -{woodcutter_5|monsters_men2:2|Woodcutter|woodcutter_5||0|||||||||||||||woodcutter_5||||||||}; -{rogorn|monsters_rltiles1:63|Rogorn|rogorn||0|1||145|10|5|3|90|||5|9|120|5|rogorn|rogorn||||||||}; -{rogorn_henchman|monsters_rogue1:0|Rogorn\'s henchman|rogorn_henchman||0|1||130|10|5|3|80|||5|8|120|4|rogorn_henchman|rogorn_henchman||||||||}; -{buceth|monsters_men2:7|Buceth|buceth||0|1||75|10|5|3|80|200|2|3|9|120|4|buceth|buceth||||||||}; -{gauward|monsters_mage2:0|Gauward|gauward||0|||||||||||||||gauward||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{iqhan_1a|monsters_rltiles2:96|Iqhan worker thrall|iqhan_1||0|||55|10|5|3|110|||2|9|70||iqhan_lesser|||||||||}; -{iqhan_1b|monsters_rltiles2:96|Iqhan thrall servant|iqhan_1||0|||57|10|5|3|120|15|2|2|9|70||iqhan_lesser|||||||||}; -{iqhan_2a|monsters_rltiles2:97|Iqhan guard thrall|iqhan_2||0|||59|10|5|3|130|15|2|2|9|70||iqhan_lesser|||||||||}; -{iqhan_2b|monsters_rltiles2:97|Iqhan thrall|iqhan_2||0|||62|10|5|3|130|15|2|2|10|70||iqhan_lesser|||||||||}; -{iqhan_3a|monsters_rltiles2:128|Iqhan warrior thrall|iqhan_3||0|||65|10|5|3|140|15|2|2|11|70||iqhan_lesser|||||||||}; -{iqhan_3b|monsters_rltiles2:129|Iqhan master|iqhan_3||0|||67|10|5|3|140|20|2|2|12|60||iqhan_lesser|||||||||}; -{iqhan_4a|monsters_rltiles2:129|Iqhan master|iqhan_4||0|||69|10|5|3|140|20|2|2|13|60||iqhan_lesser|||||||||}; -{iqhan_4b|monsters_rltiles2:133|Iqhan master|iqhan_4||0|||71|10|5|3|140|20|2|2|15|60||iqhan|||||||||}; -{iqhan_ch_1a|monsters_rltiles2:135|Iqhan chaos evoker|iqhan_ch_1||0|||73|10|5|3|140|20|2|2|15|60||iqhan||1||||||{{chaotic_grip|2|5|20|}}|}; -{iqhan_ch_1b|monsters_rltiles2:135|Iqhan chaos evoker|iqhan_ch_1||0|||75|10|5|3|150|20|2|2|14|60||iqhan||1||||||{{chaotic_grip|2|5|20|}}|}; -{iqhan_ch_2a|monsters_rltiles2:134|Iqhan chaos servant|iqhan_ch_2||0|||78|10|5|3|150|20|2|2|14|60||iqhan||1||||||{{chaotic_grip|4|5|50|}}|}; -{iqhan_ch_2b|monsters_rltiles2:134|Iqhan chaos servant|iqhan_ch_2||0|||79|10|5|3|150|25|2|2|13|75||iqhan||1||||||{{chaotic_grip|4|5|50|}}|}; -{iqhan_ch_3a|monsters_rltiles2:136|Iqhan chaos master|iqhan_ch_3||0|||83|10|5|3|170|25|2|2|13|75||iqhan_master||1||||||{{chaotic_grip|4|5|50|}}|}; -{iqhan_ch_3b|monsters_rltiles2:137|Iqhan chaos master|iqhan_ch_3||0|||85|10|5|3|170|25|2|2|13|75||iqhan_master||1||||||{{chaotic_grip|4|5|50|}}|}; -{iqhan_chb_1a|monsters_rltiles1:19|Iqhan chaos beast|iqhan_chb_1||3|||122|10|10|10|150|10|3|0|15|45|9|iqhan_beast||1||||||{{chaotic_grip|5|5|50|}}|}; -{iqhan_chb_1b|monsters_rltiles1:19|Iqhan chaos beast|iqhan_chb_1||3|||140|10|10|10|150|10|3|0|15|45|9|iqhan_beast||1||||||{{chaotic_grip|5|5|50|}}|}; -{iqhan_greeter|monsters_men:8|Rancent|iqhan_greeter||0|1||||||||||||||iqhan_greeter||||||||}; -{iqhan_boss|monsters_rltiles1:5|Iqhan chaos enslaver|iqhan_boss||6|1||120|10|5|3|170|30|2|2|13|75|2|iqhan_boss|iqhan_boss|1||||||{{chaotic_grip|7|5|50|}{chaotic_curse|3|5|50|}}|}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{cbeetle_1|monsters_rltiles2:63|Young carrion beetle|scaradon_1||1|||45|10|5|5|65|||0|5|30|9|scaradon|||||||||}; -{cbeetle_2|monsters_rltiles2:63|Carrion beetle|scaradon_1||1|||51|10|5|5|75|||0|5|30|9|scaradon|||||||||}; -{scaradon_1|monsters_rltiles1:98|Young Scaradon|scaradon_1||1|||32|10|5|3|50|||0|4|30|15|scaradon|||||||||}; -{scaradon_2|monsters_rltiles1:98|Small Scaradon|scaradon_2||1|||35|10|5|3|50|||1|4|30|15|scaradon|||||||||}; -{scaradon_3|monsters_rltiles1:97|Scaradon|scaradon_2||1|||35|10|5|3|50|||0|4|30|17|scaradon|||||||||}; -{scaradon_4|monsters_rltiles1:97|Tough Scaradon|scaradon_2||1|||37|10|5|3|50|||1|4|30|17|scaradon|||||||||}; -{scaradon_5|monsters_rltiles1:97|Hardshell Scaradon|scaradon_3||1|||38|10|5|3|50|||1|5|30|18|scaradon_b|||||||||}; - -{mwolf_1|monsters_dogs:3|Mountain wolf pup|mwolf_1||4|||45|10|5|5|80|10|2|2|7|40|3|mwolf|||||||||}; -{mwolf_2|monsters_dogs:3|Young mountain wolf|mwolf_1||4|||52|10|5|5|80|10|2|3|7|44|3|mwolf|||||||||}; -{mwolf_3|monsters_dogs:2|Young mountain fox|mwolf_1||4|||56|10|5|5|80|10|2|3|7|48|4|mwolf|||||||||}; -{mwolf_4|monsters_dogs:2|Mountain fox|mwolf_2||4|||60|10|5|5|85|10|2|3|8|52|4|mwolf|||||||||}; -{mwolf_5|monsters_dogs:2|Ferocious mountain fox|mwolf_2||4|||64|10|5|3|85|10|2|3|8|54|5|mwolf|||||||||}; -{mwolf_6|monsters_dogs:4|Rabid mountain wolf|mwolf_2||4|||67|10|5|3|90|10|2|3|9|56|5|mwolf|||||||||}; -{mwolf_7|monsters_dogs:4|Strong mountain wolf|mwolf_3||4|||73|10|5|3|90|10|2|3|9|57|6|mwolf|||||||||}; -{mwolf_8|monsters_dogs:4|Ferocious mountain wolf|mwolf_3||4|||78|10|5|3|90|10|2|3|10|59|6|mwolf_b|||||||||}; - -{mbrute_1|monsters_rltiles2:35|Young mountain brute|mbrute_1||5|||148|10|5|5|70|20|2.5|0|14|60|4|mbrute|||||||||}; -{mbrute_2|monsters_rltiles2:35|Weak mountain brute|mbrute_1||5|||157|10|5|5|70|20|2.5|0|14|60|4|mbrute|||||||||}; -{mbrute_3|monsters_rltiles2:36|Whitefur mountain brute|mbrute_1||5|||166|10|5|5|70|20|2.5|0|14|60|4|mbrute|||||||||}; -{mbrute_4|monsters_rltiles2:35|Mountain brute|mbrute_2||5|||175|10|5|5|70|20|2.5|0|14|60|4|mbrute|||||||||}; -{mbrute_5|monsters_rltiles2:36|Large mountain brute|mbrute_2||5|||184|10|5|5|70|20|2.5|0|14|60|4|mbrute|||||||||}; -{mbrute_6|monsters_rltiles2:34|Fast mountain brute|mbrute_2||5|||82|12|5|3|80|20|2.5|0|14|60|4|mbrute|||||||||}; -{mbrute_7|monsters_rltiles2:34|Quick mountain brute|mbrute_3||5|||93|12|5|3|80|20|2.5|0|15|60|4|mbrute|||||||||}; -{mbrute_8|monsters_rltiles2:34|Aggressive mountain brute|mbrute_3||5|||104|12|5|3|80|20|2.5|1|15|60|4|mbrute|||||||||}; -{mbrute_9|monsters_rltiles2:33|Strong mountain brute|mbrute_3||5|||115|10|5|3|80|20|2.5|1|15|60|4|mbrute|||||||||}; -{mbrute_10|monsters_rltiles2:33|Tough mountain brute|mbrute_4||5|||126|10|5|3|80|30|3|2|15|60|4|mbrute|||||||||}; -{mbrute_11|monsters_rltiles2:33|Fearless mountain brute|mbrute_4||5|||137|10|5|3|80|30|3|2|15|60|4|mbrute_b|||||||||}; -{mbrute_12|monsters_rltiles2:33|Enraged mountain brute|mbrute_4||5|||148|10|5|3|80|40|3|2|16|60|4|mbrute_b|||||||||}; - -{erumen_1|monsters_rltiles2:114|Young Erumem Lizard|erumen_1||7|||45|10|5|3|125|||2|9|80|4|erumen|||||||||}; -{erumen_2|monsters_rltiles2:114|Spotted Erumem Lizard|erumen_1||7|||45|10|5|3|125|||2|9|80|4|erumen|||||||||}; -{erumen_3|monsters_rltiles2:114|Erumem Lizard|erumen_2||7|||45|10|5|3|125|||2|9|80|4|erumen|||||||||}; -{erumen_4|monsters_rltiles2:115|Strong Erumen Lizard|erumen_2||7|||79|10|5|3|125|||2|9|80|4|erumen|||||||||}; -{erumen_5|monsters_rltiles2:115|Vile Erumen Lizard|erumen_3||7|||89|10|5|3|150|||2|9|80|4|erumen|||||||||}; -{erumen_6|monsters_rltiles2:117|Tough Erumen Lizard|erumen_3||7|||91|10|5|3|125|||2|9|90|8|erumen|||||||||}; -{erumen_7|monsters_rltiles2:117|Hardened Erumen Lizard|erumen_4||7|||93|10|5|3|125|||2|9|90|12|erumen_b||||||||{{bleeding_wound|3|3|50|}}|}; - -{plaguesp_1|monsters_rltiles2:61|Puny Plaguecrawler|plaguespider_1||1|||55|10|5|3|80|60|3|1|6|140||plaguespider||1||||||{{contagion|1|5|70|}{blister|1|5|20|}}|}; -{plaguesp_2|monsters_rltiles2:61|Plaguecrawler|plaguespider_1||1|||57|10|5|3|80|60|3|1|6|140||plaguespider||1||||||{{contagion|3|5|70|}{blister|2|5|20|}}|}; -{plaguesp_3|monsters_rltiles2:61|Tough Plaguecrawler|plaguespider_1||1|||59|10|5|3|80|60|3|1|6|140||plaguespider||1||||||{{contagion|3|5|70|}{blister|2|5|20|}}|}; -{plaguesp_4|monsters_rltiles2:61|Black Plaguecrawler|plaguespider_2||1|||61|10|5|3|80|60|3|1|6|150||plaguespider||1||||||{{contagion|4|5|70|}{blister|3|5|20|}}|}; -{plaguesp_5|monsters_rltiles2:151|Plaguestrider|plaguespider_2||1|||62|10|5|3|80|60|3|2|6|150||plaguespider||1||||||{{contagion|4|5|70|}{blister|3|5|20|}}|}; -{plaguesp_6|monsters_rltiles2:151|Hardshell Plaguestrider|plaguespider_2||1|||63|10|5|3|80|60|3|2|6|150||plaguespider||1||||||{{contagion|5|5|70|}{blister|4|5|20|}}|}; -{plaguesp_7|monsters_rltiles2:151|Tough Plaguestrider|plaguespider_3||1|||64|10|5|3|80|70|3|2|6|155||plaguespider||1||||||{{contagion|5|5|70|}{blister|4|5|20|}}|}; -{plaguesp_8|monsters_rltiles2:153|Wooly Plaguestrider|plaguespider_3||1|||65|10|5|3|80|70|3|2|6|155||plaguespider||1||||||{{contagion|6|5|70|}{blister|5|5|50|}}|}; -{plaguesp_9|monsters_rltiles2:153|Tough wooly Plaguestrider|plaguespider_3||1|||66|10|5|3|80|70|3|2|7|160||plaguespider||1||||||{{contagion|6|5|70|}{blister|5|5|50|}}|}; -{plaguesp_10|monsters_rltiles2:151|Vile Plaguestrider|plaguespider_4||1|||67|10|5|3|85|70|3|2|7|160||plaguespider||1||||||{{contagion|6|5|70|}{blister|5|5|50|}}|}; -{plaguesp_11|monsters_rltiles2:153|Nesting Plaguestrider|plaguespider_4||1|||68|10|5|3|85|70|3|2|7|165||plaguespider||1||||||{{contagion|6|5|70|}{blister|5|5|50|}}|}; -{plaguesp_12|monsters_rltiles2:38|Plaguestrider servant|plaguespider_5||6|||65|10|5|3|85|120|3|2|7|165||plaguespider||1||||||{{contagion|7|5|70|}{blister|6|5|50|}}|}; -{plaguesp_13|monsters_rltiles2:38|Plaguestrider master|plaguespider_6||6|||65|10|5|3|85|120|3|2|8|175|2|plaguespider_b||1||||||{{contagion|7|5|70|}{blister|6|5|50|}}|}; - -{allaceph_1|monsters_rltiles2:101|Young Allaceph|allaceph_1||2|||90|10|5|3|80|40|2|3|7|105|1|allaceph||1|4|4||||{{feebleness_minor|2|3|20|}}|}; -{allaceph_2|monsters_rltiles2:101|Allaceph|allaceph_1||2|||94|10|5|3|80|40|2|3|7|105|1|allaceph||1|4|4||||{{feebleness_minor|2|3|20|}}|}; -{allaceph_3|monsters_rltiles2:102|Strong Allaceph|allaceph_2||2|||101|10|5|3|80|40|2|3|7|105|2|allaceph||1|4|4||||{{feebleness_minor|2|3|20|}}|}; -{allaceph_4|monsters_rltiles2:102|Tough Allaceph|allaceph_2||2|||111|10|5|3|80|40|2|3|7|110|2|allaceph||1|4|4||||{{feebleness_minor|3|3|20|}}|}; -{allaceph_5|monsters_rltiles2:103|Radiant Allaceph|allaceph_3||2|||124|10|5|3|80|40|2|3|7|110|3|allaceph_b||1|6|6||||{{feebleness_minor|3|3|20|}}|}; -{allaceph_6|monsters_rltiles2:103|Ancient Allaceph|allaceph_3||2|||133|10|5|3|80|40|2|3|7|115|3|allaceph_b||1|7|7||||{{feebleness_minor|3|3|20|}}|}; -{vaeregh_1|monsters_rltiles1:42|Vaeregh|allaceph_4||2|||149|10|5|3|80|40|2|2|7|120|4|allaceph||1|10|10||||{{feebleness_minor|4|3|20|}}|}; - -{irdegh_sp_1|monsters_rltiles2:26|Irdegh spawn|irdegh_spawn||7|||57|12|5|3|120|||0|6|80||irdegh_spawn||1||||||{{poison_irdegh|2|3|10|}}|}; -{irdegh_sp_2|monsters_rltiles2:26|Irdegh spawn|irdegh_spawn||7|||68|12|5|3|120|||0|6|80||irdegh_spawn||1||||||{{poison_irdegh|2|3|10|}}|}; -{irdegh_1|monsters_rltiles2:15|Irdegh|irdegh_1||7|||115|10|5|3|120|||3|7|60|10|irdegh||1||||||{{poison_irdegh|3|4|50|}}|}; -{irdegh_2|monsters_rltiles2:15|Venomous Irdegh|irdegh_2||7|||120|10|5|3|120|||3|7|60|11|irdegh||1||||||{{poison_irdegh|3|4|50|}}|}; -{irdegh_3|monsters_rltiles2:14|Piercing Irdegh|irdegh_3||7|||125|10|5|3|120|10|2|3|7|60|11|irdegh||1||||||{{poison_irdegh|3|4|50|}}|}; -{irdegh_4|monsters_rltiles2:14|Ancient piercing Irdegh|irdegh_4||7|||130|10|5|3|120|30|2|3|7|60|14|irdegh_b||1||||||{{poison_irdegh|3|4|70|}}|}; - -{maonit_1|monsters_rltiles1:104|Maonit troll|maonit_1||5|||255|5|5|5|65|10|3|1|20|20|4|maonit|||||||||}; -{maonit_2|monsters_rltiles1:104|Giant Maonit troll|maonit_1||5|||270|5|5|5|65|10|3|1|20|20|4|maonit|||||||||}; -{maonit_3|monsters_rltiles1:104|Strong Maonit troll|maonit_2||5|||285|5|5|5|65|20|3|1|20|20|5|maonit|||||||||}; -{maonit_4|monsters_rltiles1:107|Maonit brute|maonit_2||5|||290|5|5|5|65|20|3|1|20|20|5|maonit|||||||||}; -{maonit_5|monsters_rltiles1:107|Tough Maonit brute|maonit_3||5|||310|5|5|5|65|30|3|1|20|20|6|maonit||1||||||{{stunned|1|3|10|}}|}; -{maonit_6|monsters_rltiles1:107|Strong Maonit brute|maonit_3||5|||320|5|5|5|65|30|3|1|20|20|6|maonit||1||||||{{stunned|1|3|10|}}|}; -{arulir_1|monsters_rltiles1:13|Arulir|arulir_1||5|||325|5|5|5|70|30|3|1|20|20|8|arulir||1||||||{{stunned|1|3|20|}}|}; -{arulir_2|monsters_rltiles1:13|Giant Arulir|arulir_1||5|||330|5|5|5|70|30|3|1|20|20|8|arulir||1||||||{{stunned|1|3|20|}}|}; - -{burrower_1|monsters_rltiles2:164|Larval cave burrower|burrower_1||1|||30|10|5|5|95|||1|25|80|2|burrower|||||||||}; -{burrower_2|monsters_rltiles2:164|Cave burrower|burrower_1||1|||37|10|5|5|95|||1|25|80|2|burrower|||||||||}; -{burrower_3|monsters_rltiles2:165|Strong larval burrower|burrower_2||1|||44|10|5|5|95|||1|25|80|2|burrower|||||||||}; -{burrower_4|monsters_rltiles2:165|Giant larval burrower|burrower_3||1|||75|10|5|5|95|||1|25|80|2|burrower|||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{ulirfendor|monsters_rltiles1:84|Ulirfendor|ulirfendor||0|1||288|10|5|3|70|30|2|1|16|60|6|ulirfendor|ulirfendor||||||||}; -{gylew|monsters_mage2:0|Gylew|gylew||0|||||||||||||||gylew||||||||}; -{gylew_henchman|monsters_men:8|Gylew\'s henchman|gylew_henchman||0|||||||||||||||gylew_henchman||||||||}; -{toszylae|monsters_liches:1|Toszylae|toszylae||6|1||207|8|5|2|80|40|2|2|7|120|4|toszylae|toszylae|1|6|6||||{{feebleness_minor|3|3|20|}}|}; -{toszylae_guard|monsters_rltiles1:20|Radiant guardian|toszylae_guard||2|1||320|10|5|3|80|40|2|2|7|120|4|toszylae_guard|toszylae_guard|1|5|5||||{{feebleness_minor|2|3|20|}}|}; -{thorin|monsters_rltiles1:66|Thorin|thorin||0||||||||||||||shop_thorin|thorin||||||||}; - -{lonelyhouse_sp|monsters_rats:1|Basement rat|lonelyhouse_sp||4|1||79|10|5|3|125|||2|9|180|4|lonelyhouse_sp|||||||||}; -{algangror|monsters_rltiles1:68|Algangror|algangror||0|1||241|10|5|3|80|200|2|3|9|120|4|algangror|algangror||||||||}; -{remgard_bridge|monsters_men2:4|Bridge lookout|remgard_bridge||0|1||||||||||||||remgard_bridge||||||||}; - - - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{ingus|monsters_rltiles1:94|Ingus|ingus||0|||||||||||||||ingus||||||||}; -{elwyl|monsters_rltiles3:17|Elwyl|elwyl||0|||||||||||||||elwyl||||||||}; -{elwel|monsters_rltiles3:17|Elwel|elwel||0|||||||||||||||elwel||||||||}; -{hjaldar|monsters_rltiles1:70|Hjaldar|hjaldar||0||||||||||||||shop_hjaldar|hjaldar||||||||}; -{norath|monsters_ld1:8|Norath|norath||0|||||||||||||||norath||||||||}; -{rothses|monsters_ld1:14|Rothses|rothses||0||||||||||||||shop_rothses|rothses||||||||}; -{duaina|monsters_ld1:154|Duaina|duaina||0|||||||||||||||duaina||||||||}; -{rg_villager1|monsters_ld1:132|Commoner|remgard_villager1||0|||||||||||||||remgard_villager1||||||||}; -{rg_villager2|monsters_ld1:20|Commoner|remgard_villager2||0|||||||||||||||remgard_villager2||||||||}; -{rg_villager3|monsters_ld1:134|Commoner|remgard_villager3||0|||||||||||||||remgard_villager3||||||||}; -{jhaeld|monsters_mage:0|Jhaeld|jhaeld||0|||||||||||||||jhaeld||||||||}; -{krell|monsters_men2:6|Krell|krell||0|||||||||||||||krell||||||||}; -{elythom_kn1|monsters_men:3|Knight of Elythom|elythom_knight1||0|||||||||||||||elythom_knight1||||||||}; -{elythom_kn2|monsters_men:3|Knight of Elythom|elythom_knight2||0|||||||||||||||elythom_knight2||||||||}; - -{almars|monsters_rogue1:0|Almars|almars||0|||||||||||||||almars||||||||}; -{arghes|monsters_rogue1:0|Arghes|arghes||0||||||||||||||shop_arghes|arghes||||||||}; -{arnal|monsters_ld1:28|Arnal|arnal||0||||||||||||||shop_arnal|arnal||||||||}; -{atash|monsters_ld1:38|Aatash|atash||0|||||||||||||||atash||||||||}; -{caeda|monsters_ld1:145|Caeda|caeda||0|||||||||||||||caeda||||||||}; -{carthe|monsters_man1:0|Carthe|carthe||0|||||||||||||||carthe||||||||}; -{chael|monsters_men:0|Chael|chael||0|||||||||||||||chael||||||||}; -{easturlie|monsters_men:6|Easturlie|easturlie||0|||||||||||||||easturlie||||||||}; -{emerei|monsters_ld1:27|Emerei|emerei||0|||||||||||||||emerei||||||||}; -{ervelyn|monsters_ld1:228|Ervelyn|ervelyn||0||||||||||||||shop_ervelyn|ervelyn||||||||}; -{freen|monsters_rltiles1:77|Freen|freen||0|||||||||||||||freen||||||||}; -{janach|monsters_rltiles3:8|Janach|janach||0|||||||||||||||janach||||||||}; -{kendelow|monsters_man1:0|Kendelow|kendelow||0||||||||||||||shop_kendelow|kendelow||||||||}; -{larni|monsters_ld1:26|Larni|larni||0|||||||||||||||larni||||||||}; -{maelf|monsters_ld1:53|Maelf|maelf||0|||||||||||||||maelf||||||||}; -{morgisia|monsters_rltiles3:5|Morgisia|morgisia||0|||||||||||||||morgisia||||||||}; -{perester|monsters_rltiles3:18|Perester|perester||0|||||||||||||||perester||||||||}; -{perlynn|monsters_mage2:0|Perlynn|perlynn||0|||||||||||||||perlynn||||||||}; -{reinkarr|monsters_rltiles1:66|Reinkarr|reinkarr||0|||||||||||||||reinkarr||||||||}; -{remgard_d1|monsters_ld1:18|Tavern guest|remgard_drunk||0|||||||||||||||remgard_drunk1||||||||}; -{remgard_d2|monsters_rltiles2:81|Tavern guest|remgard_drunk||0|||||||||||||||remgard_drunk2||||||||}; -{remgard_farmer1|monsters_ld1:26|Farmer|remgard_farmer1||0|||||||||||||||remgard_farmer1||||||||}; -{remgard_farmer2|monsters_ld1:220|Farmer|remgard_farmer2||0|||||||||||||||remgard_farmer2||||||||}; -{remgard_g1|monsters_ld1:4|Guard|remgard_guard||0|||||||||||||||fallhaven_guard||||||||}; -{remgard_g2|monsters_ld1:5|Guard|remgard_guard||0|||||||||||||||blackwater_guard1||||||||}; -{remgard_g3|monsters_ld1:67|Guard|remgard_guard2||0|||||||||||||||remgard_guard1||||||||}; -{remgard_pg|monsters_ld1:11|Prison Guard|remgard_prison_guard||0|||||||||||||||remgard_prison_guard||||||||}; -{rg_villager4|monsters_ld1:164|Commoner|remgard_villager4||0|||||||||||||||remgard_villager4||||||||}; -{rg_villager5|monsters_ld1:148|Commoner|remgard_villager5||0|||||||||||||||remgard_villager5||||||||}; -{rg_villager6|monsters_ld1:188|Commoner|remgard_villager6||0|||||||||||||||remgard_villager6||||||||}; -{rg_villager7|monsters_ld1:10|Commoner|remgard_villager7||0|||||||||||||||remgard_villager7||||||||}; -{rg_villager8|monsters_rltiles3:18|Commoner|remgard_villager8||0|||||||||||||||remgard_villager8||||||||}; -{skylenar|monsters_ld1:3|Skylenar|skylenar||0||||||||||||||shop_skylenar|skylenar||||||||}; -{taylin|monsters_rltiles1:74|Taylin|taylin||0|||||||||||||||taylin||||||||}; -{petdog|monsters_dogs:0|Dog|petdog||4|||||||||||||||petdog||||||||}; -{kaverin|monsters_ld1:100|Kaverin|kaverin||5|1||320|5|5|3|65|30|3|1|20|90|6|kaverin|kaverin|0|||||||}; - -{izthiel_cr|monsters_rltiles2:52|Izthiel Guardian|izthiel_cr||7|1||354|10|5|3|120|||3|7|60|11|oegyth1||1||||||{{bleeding_wound|3|5|50|}}|}; -{burrower_cr|monsters_rltiles2:165|Giant larval burrower|burrower_cr||1|1||175|10|5|5|95|||1|25|80|2|oegyth1|||||||||}; -{allaceph_cr|monsters_rltiles2:103|Ancient Allaceph|allaceph_cr||2|1||333|10|5|3|80|40|2|3|7|115|3|oegyth1||1|7|7||||{{feebleness_minor|3|3|20|}}|}; -{plaguesp_cr|monsters_rltiles2:38|Plaguestrider master|plaguespider_cr||6|1||365|10|5|3|85|160|3|2|8|175|2|oegyth1||1||||||{{contagion|4|5|70|}{blister|3|5|50|}}|}; -{maonit_cr|monsters_rltiles1:107|Strong Maonit brute|maonit_cr||5|1||620|5|5|5|65|30|3|1|20|20|6|oegyth1||1||||||{{stunned|1|3|10|}}|}; - - - diff --git a/AndorsTrail/res/values/content_questlist.xml b/AndorsTrail/res/values/content_questlist.xml deleted file mode 100644 index b32b3d1ed..000000000 --- a/AndorsTrail/res/values/content_questlist.xml +++ /dev/null @@ -1,497 +0,0 @@ - - - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{nondisplay|Placeholder for hidden quest stages (not displayed)|0|{ - {10|Tavern room in Foaming Flask|||} - {16|Sleeping quarters in Blackwater mountain|||} - {17|Sleeping quarters in Crossroads1|||} - {18|Shopping from Minarra in Crossroads tower|||} - {19|Sleeping quarters in Loneford10|||} - {20|Selling Izthiel claws to Gauward|||} - {21|Tavern room in Remgard|||} - }|}; -{crossglen|TODO|0|{{1|||0|}}|}; -{fallhaventavern|Room to rent|0|{{10|||1|}}|}; -{arcir|Elythara|0|{{10|||0|}}|}; - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{andor|Search for Andor|1|{ - {1|My father Mikhail says that Andor has not been home since yesterday. I should go look for him in the village.||0|} - {10|Leonid tells me that he saw Andor talking to Gruil. I should go ask Gruil if he knows more.||0|} - {20|Gruil wants me to bring him a poison gland. Then he might talk more. He tells me that some poisonous snakes have such a gland.||0|} - {30|Gruil tells me that Andor was looking for someone called Umar. I should go ask his friend Gaela in Fallhaven to the east.||0|} - {40|I talked to Gaela in Fallhaven. He tells me to go see Bucus and ask about the Thieves\' Guild.||0|} - {50|Bucus has allowed me to enter the hatch in the derelict house in Fallhaven. I should go talk to Umar.||0|} - {51|Umar in the Fallhaven Thieves\' Guild recognized me, but must have me mixed up with Andor. Apparently, Andor has been to see him.||0|} - {55|Umar told me that Andor went to see a potion maker called Lodar. I should search for his hideaway.||0|} - {61|I heard a story in Loneford, where it seemed like Andor had been in Loneford, and that he might have had something to do with the illness that the people are suffering from there. I am not sure if it actually was Andor. If it was Andor, why would he have made the people of Loneford ill?||0|} - }|}; -{mikhail_bread|Breakfast bread|1|{ - {100|I have brought the bread to Mikhail.||1|} - {10|Mikhail wants me to go buy a loaf of bread from Mara at the town hall.||0|} - }|}; -{mikhail_rats|Rats!|1|{ - {100|I have killed the two rats in our garden.|20|1|} - {10|Mikhail wants me to go check our garden for some rats. I should kill the rats in our garden and return to Mikhail. If I get hurt, I can come back to the bed and rest to regain my health.||0|} - }|}; -{leta|Missing husband|1|{ - {10|Leta in Crossglen village wants me to look for her husband Oromir.||0|} - {20|I have found Oromir in Crossglen village, hiding from his wife Leta.||0|} - {100|I have told Leta that Oromir is hiding in Crossglen village.|50|1|} - }|}; -{odair|Rat infestation|1|{ - {10|Odair wants me to clear the supply cave in Crossglen village of rats. In particular, I should kill the large rat and return to Odair.||0|} - {100|I have helped Odair clear out the rats in the supply cave in Crossglen village.|300|1|} - }|}; -{bonemeal|Disallowed substance|1|{ - {10|Leonid in Crossglen town hall tells me that there was a disturbance in the village some weeks ago. Apparently, Lord Geomyr has banned all use of bonemeal as a healing substance.\n\nTharal, the town priest should know more.||0|} - {20|Tharal does not want to talk about bonemeal. I might be able to persuade him by bringing him 5 insect wings.||0|} - {30|Tharal tells me that bonemeal is a very potent healing substance, and is quite upset that it is not allowed anymore. I should go see Thoronir in Fallhaven if I want to learn more. I should tell him the password \'Glow of the Shadow\'.||0|} - {40|I have talked to Thoronir in Fallhaven. He might be able to mix me a bonemeal potion if I bring him 5 skeletal bones. There should be some skeletons in an abandoned house north of Fallhaven.||0|} - {100|I have brought the bones to Thoronir. He is now able to supply me with bonemeal potions.\nI should be careful when using them though, since Lord Geomyr has banned their use.|900|1|} - }|}; -{jan|Fallen friends|1|{ - {10|Jan tells me his story, where he and his two friends Gandir and Irogotu, went down the hole to dig for a hidden treasure, but they started fighting and Irogotu killed Gandir in his rage.\nI should bring back Gandir\'s ring from Irogotu, and see Jan when I have it.||0|} - {100|Irogotu is dead. I have brought Jan the ring of Gandir, and avenged his friend.|1500|1|} - }|}; -{bucus|Key of Luthor|1|{ - {10|Bucus in Fallhaven might know something about Andor. He wants me to bring him the key of Luthor from the catacombs beneath Fallhaven church.||0|} - {20|The catacombs beneath Fallhaven church are closed off. Athamyr is the only one with both permission and the bravery to enter them. I should go see him in his house southwest of the church.||0|} - {30|Athamyr wants me to bring him some cooked meat, then maybe he will want to talk more.||0|} - {40|I brought some cooked meat to Athamyr.|700|0|} - {50|Athamyr has given me permission to enter the catacombs beneath Fallhaven church.||0|} - {100|I brought Bucus the key of Luthor.|2150|1|} - }|}; -{fallhavendrunk|Drunken tale|1|{ - {10|A drunk outside Fallhaven tavern began telling me his story, but wants me to bring him some mead. I don\'t know if his story will lead anywhere though.||0|} - {100|The drunk told me he used to travel with Unnmir. I should go talk to Unnmir.||1|} - }|}; -{calomyran|Calomyran secrets|1|{ - {10|An old man standing outside in Fallhaven has lost his book \'Calomyran Secrets\'. I should go look for it. Maybe in Arcir\'s house to the south?||0|} - {20|I found a torn page of a book called \'Calomyran Secrets\' with the name \'Larcal\' written on it.||0|} - {100|I gave the book back to the old man.|600|1|} - }|}; -{nocmar|Lost treasures|1|{ - {10|Unnmir told me he used to be an adventurer, and gave me a hint to go see Nocmar. His house is just southwest of the tavern in Fallhaven.||0|} - {20|Nocmar tells me he used to be a smith. But Lord Geomyr has banned the use of heartsteel, so he cannot forge his weapons anymore.\nIf I can find a heartstone and bring it to Nocmar, he should be able to forge the heartsteel again.||0|} - {200|I have brought a heartstone to Nocmar. He should have heartsteel items available now.|1200|1|} - }|}; -{flagstone|Ancient secrets|1|{ - {10|I met a guard on sentry outside a fortress called Flagstone. The guard told me that Flagstone used to be a prison camp for runaway workers from Mount Galmore. Recently, there has been an increase in undead monsters pouring out from Flagstone. I should investigate the source of the undead monsters. The guard tells me to return to him if I need help.||0|} - {20|I found a dug out tunnel beneath Flagstone, that seems to lead to a larger cave. The cave is guarded by a demon that I am not even able to approach. Maybe the guard outside Flagstone knows more?||0|} - {30|The guard tells me that the former warden used to have a necklace that he always wore. The necklace probably has the words required to approach the demon. I should return to the guard to decipher any message on the necklace once I have found it.||0|} - {31|I found the former warden of Flagstone on the upper level. I should return to the guard now.||0|} - {40|I have learned the words required to approach the demon beneath Flagstone. \'Daylight Shadow\'.|1600|0|} - {50|Deep beneath Flagstone, I found the source of the undead infestation. A creature born from the grief of the former prisoners of Flagstone.||0|} - {60|I found one prisoner, Narael, alive deep beneath Flagstone. Narael was once a citizen of Nor City. He is too weak to walk by himself, but if I can find his wife in Nor City, I would be handsomely rewarded.|2100|1|} - }|}; -{vacor|Missing pieces|1|{ - {10|A mage called Vacor in southwest Fallhaven has been trying to cast a rift spell.\nThere was something not right about him, he seemed very obsessed with his spell. Something about him gaining a power from it.||0|} - {20|Vacor wants me to bring him the four pieces of the rift spell that he claims was stolen from him. The four bandits should be somewhere south of Fallhaven.||0|} - {30|I have brought the four pieces of the rift spell to Vacor.|1200|0|} - {40|Vacor tells me about his former apprentice Unzel, who had started to question Vacor. Vacor now wants me to kill Unzel. I should be able to find him to the southwest outside of Fallhaven. I should bring his signet ring to Vacor once I have killed him.||0|} - {50|Unzel gives me a choice to side with either Vacor or him.||0|} - {51|I have chosen to side with Unzel. I should go to southwest Fallhaven to talk to Vacor about Unzel and the Shadow.||0|} - {53|I started a fight with Unzel. I should bring his ring to Vacor once he is dead.||0|} - {54|I started a fight with Vacor. I should bring his ring to Unzel once he is dead.||0|} - {60|I have killed Unzel and told Vacor about the deed.|1600|1|} - {61|I have killed Vacor and told Unzel about the deed.|1600|1|} - }|}; - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{farrik|Night visit|1|{ - {10|Farrik in the Fallhaven Thieves\' Guild told me of a plan to help a fellow thief escape from the Fallhaven jail.||0|} - {20|Farrik in the Fallhaven Thieves\' Guild told me the details of the plan, and I accepted the task of helping him. The guard captain apparently has a drinking problem. The plan is that I get a prepared mead from the cook in the Thieves\' Guild that will knock out the guard captain in the jail. I might be required to bribe the guard captain.||0|} - {25|I got the prepared mead from the cook in the Thieves\' Guild.||0|} - {30|I told Farrik that I don\'t fully agree with their plan. I might tell the guard captain about their shady plan.||0|} - {32|I have given the prepared mead to the guard captain.||0|} - {40|I have told the guard captain of the plan that the thieves have to release their friend.||0|} - {50|The guard captain wants me to tell the thieves that the security will be lowered for tonight. We might be able to catch some of the thieves.||0|} - {60|I managed to bribe the guard captain into drinking the prepared mead. He should be out during the night allowing the thieves to break their friend free.||0|} - {70|Farrik rewarded me for helping the Thieves\' Guild.|1500|1|} - {80|I have told Farrik that the security will be lowered tonight.||0|} - {90|The guard captain thanked me for helping him plan to catch the thieves. He said he will also tell other guards that I helped him.|1700|1|} - }|}; -{lodar|A lost potion|1|{ - {10|I should find a potion maker called Lodar. Umar in the Fallhaven Thieves\' Guild told me that I will need to know the right words to pass a guardian in order to reach Lodar\'s hideaway.||0|} - {15|Umar told me I should go see someone called Ogam in Vilegard. Ogam can supply me with the right words to reach Lodar\'s hideaway.||0|} - {20|I have visited Ogam in southwest Vilegard. He was talking in what seemed like riddles. I could barely make out some details when I asked about Lodar\'s hideaway. \'Halfway between the Shadow and the light. Rocky formations.\' and the words \'Glow of the Shadow.\' were among the things he said. I am not sure what they mean.||0|} - }|}; -{vilegard|Trusting an outsider|1|{ - {10|The people of Vilegard are very suspicious of outsiders. I was told to go see Jolnor in the Vilegard chapel if I want to gain their trust.||0|} - {20|I have talked to Jolnor in the Vilegard chapel. He suggests I help three influential people in order to gain the trust of the people in Vilegard. I should help Kaori, Wrye and Jolnor in Vilegard.||0|} - {30|I have helped all three people in Vilegard that Jolnor suggested. Now the people of Vilegard should trust me more.|2100|1|} - }|}; -{kaori|Kaori\'s errands|1|{ - {5|Jolnor in Vilegard chapel wants me to talk to Kaori in northern Vilegard, to see if she wants any help.||0|} - {10|Kaori in northern Vilegard wants me to bring her 10 bonemeal potions.||0|} - {20|I have brought 10 bonemeal potions to Kaori.|520|1|} - }|}; -{wrye|Uncertain cause|1|{ - {10|Jolnor in Vilegard chapel wants me to talk to Wrye in northern Vilegard. She has apparently lost her son recently.||0|} - {20|Wrye in northern Vilegard tells me that her son Rincel has gone missing. She thinks that he has died or gotten critically hurt.||0|} - {30|Wrye tells me that she thinks the royal guard from Feygard are involved in his disappearance, and that they have recruited him.||0|} - {40|Wrye wants me to go search for clues as to what has happened to her son.||0|} - {41|I should go look in the Vilegard tavern and the Foaming Flask tavern north of Vilegard.|200|0|} - {42|I heard of a boy being in the Foaming Flask tavern a while ago. Apparently he left to the west of the tavern somewhere.||0|} - {80|To the northwest of Vilegard I found a man that had found Rincel fighting some monsters. Rincel had apparently left Vilegard by his own will to go see the city of Feygard. I should go tell Wrye in northern Vilegard what happened to her son.||0|} - {90|I have told Wrye the truth about her son\'s disappearance.|520|1|} - }|}; -{jolnor|Spies in the foam|1|{ - {10|Jolnor in Vilegard chapel tells me of a guard outside of the Foaming Flask tavern, that he thinks is a spy for the Feygard royal guard. He wants me to make the guard disappear, in any way that I see fit. The tavern should be just north of Vilegard.||0|} - {20|I have convinced the guard outside the Foaming Flask tavern to leave after his shift ends.||0|} - {21|I have started a fight with the guard outside the Foaming Flask tavern. I should bring his Feygard royal guard ring to Jolnor once he is dead to show Jolnor that he has disappeared.||0|} - {30|I have told Jolnor that the guard is now gone.|630|1|} - }|}; - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{bwm_agent|The agent and the beast|1|{ - {1|I met a man seeking help for his settlement, the \'Blackwater Mountain\'. Supposedly, his settlement is being attacked by monsters and bandits, and they need help from the outside.|||} - {5|I have agreed to help the man and Blackwater Mountain in dealing with the problem.|||} - {10|The man told me to meet him on the other side of the collapsed mine. He will crawl through the mine shaft and I will descend into the pitch-black abandoned mine.|||} - {20|I have navigated through the pitch-black abandoned mine, and met the man on the other side. He seemed very anxious about telling me to head straight to the east once I exit the mine. I should meet the man at the bottom of the mountain to the east.|||} - {25|I heard a story about Prim and the Blackwater Mountain settlement fighting against each other.|||} - {30|I should follow the mountain path up the mountain to the Blackwater settlement.|||} - {40|I met the man again on my way up to Blackwater Mountain. I should proceed further up the mountain.|||} - {50|I have made it up to the snow-filled parts of the Blackwater Mountain. The man told me to proceed further up the mountain. Apparently, the Blackwater Mountain settlement is close by.|||} - {60|I have reached the Blackwater mountain settlement. I should find and talk to their battle master, Harlenn.|||} - {65|I have spoken to Harlenn in the Blackwater Mountain settlement. Apparently, the settlement is under attack by a number of monsters, the Aulaeth and white wyrms. On top of that, they are being attacked by the people of Prim.|||} - {66|Harlenn thinks the people of Prim are behind the monster attacks somehow.|||} - {70|Harlenn wants me to give a message to Guthbered of Prim. Either the people of Prim stop their attacks on the Blackwater Mountain settlement, or they will have to be dealt with themselves. I should go talk to Guthbered in Prim.|||} - {80|Guthbered denies that the people of Prim have anything to do with the monster attacks on the Blackwater mountain settlement. I should go talk to Harlenn|||} - {90|Harlenn is sure that the people of Prim are behind the attacks somehow.|||} - {95|Harlenn wants me to go to Prim and look for signs that they are preparing for an attack on the settlement. I should go look for clues around where Guthbered stays.|||} - {100|I have found some plans in Prim about recruiting mercenaries and attacking the Blackwater Mountain settlement. I should go talk to Harlenn immediately.|||} - {110|Harlenn thanked me for investigating the attack plans.|1150||} - {120|To make the attacks on the Blackwater Mountain settlement stop, Harlenn wants me to assassinate Guthbered in Prim.|||} - {130|I have started a fight with Guthbered.|||} - {131|I told Guthbered that I was sent to kill him, but I let him live. He thanked me deeply, and left Prim.|2100||} - {149|I have told Harlenn that Guthbered is gone.|||} - {150|Harlenn thanked me for the help I have provided. Hopefully, the attacks on the Blackwater Mountain settlement should stop now.|5000||} - {240|I am now trusted in the Blackwater Mountain settlement, and all services should be available for me to use.||1|} - {250|I have decided to not help the people of the Blackwater Mountain settlement.||1|} - {251|Since I am helping Prim, Harlenn no longer wants to talk to me.||1|} - }|}; -{prim_innquest|Well rested|1|{ - {10|I talked to the cook in Prim, at the base of Blackwater Mountain. There is a back room available for rent, but it is currently rented out to Arghest. I should go talk to Arghest to see whether he still wants to rent the room. The cook pointed me towards the southwest of Prim.|||} - {20|I talked to Arghest about the back room at the inn. He is still interested in having it as an option to rest at. But he told me he could probably be persuaded to let me use it if I compensate him sufficiently.|||} - {30|Arghest wants me to bring him 5 bottles of milk. I can probably find some milk in any of the larger villages.|||} - {40|I have brought the milk to Arghest. He agreed to let me use the back room at the Prim inn. I should be able to rest there now. I should go talk to the cook at the inn.|500||} - {50|I have explained to the cook that I have permission by Arghest to use the back room.||1|} - }|}; -{prim_hunt|Clouded intent|1|{ - {10|Just outside the collapsed mine on the way to Blackwater Mountain, I met a man from the village of Prim. He begged me to help them.|||} - {11|The village of Prim needs help from someone from the outside to deal with attacks from some monsters. I should speak to Guthbered in Prim if I want to help them.|||} - {15|Guthbered can be found in the main hall of Prim. I should look for a stone house in the center of town.|||} - {20|I talked to Guthbered about the story about Prim. Prim has recently been under constant attack from the Blackwater Mountain settlement.|||} - {25|Guthbered wants me to go up to the settlement atop the Blackwater Mountain and ask their battle master Harlenn why (or if) they have summoned the Gornaud monsters against Prim.|||} - {30|I have talked to Harlenn about the attacks on Prim. He denies that the people of the Blackwater Mountain settlement have anything to do with them. I should go talk to Guthbered in Prim again.|||} - {40|Guthbered still believes that the people in the Blackwater settlement have something to do with the attacks.|||} - {50|Guthbered wants me to go look for any clues that the people of the Blackwater Mountain settlement is preparing for a larger attack on Prim. I should go look for hints near Harlenn\'s private quarters, but make sure not to be seen.|||} - {60|I have found some papers around Harlenn\'s private quarters outlining a plan to attack Prim. I should go talk to Guthbered immediately.|||} - {70|Guthbered thanked me for helping him find evidence of the plans for an attack.|1150||} - {80|In order to make the attacks on Prim stop, Guthbered wants me to kill Harlenn up in the Blackwater Mountain settlement.|||} - {90|I have started a fight with Harlenn.|||} - {91|I told Harlenn that I was sent to kill him, but I let him live. He thanked me deeply, and left the settlement.|2100||} - {99|I have told Guthbered that Harlenn is gone.|||} - {100|Guthbered thanked me for the help I have provided to Prim. Hopefully, the attacks on Prim should stop now. As thanks, Guthbered gave me some items and a forged permit so that I can enter the inner chamber up in the Blackwater Mountain settlement.|5000||} - {140|I have shown the forged permit to the guard and was let through to the inner chamber.|||} - {240|I am now trusted in Prim, and all services should be available for me to use.||1|} - {250|I have decided to not help the people of Prim.||1|} - {251|Since I am helping the Blackwater Mountain settlement, Guthbered no longer wants to talk to me.||1|} - }|}; -{kazaul|Lights in the dark|1|{ - {8|I have made my way into the inner chamber in the Blackwater Mountain settlement and found a group of mages led by a man named Throdna.|||} - {9|Throdna seems very interested in someone (or something) called Kazaul, and in particular a ritual performed in its name.|||} - {10|I have agreed to help Throdna find out more about the ritual itself, by looking for pieces of the ritual that apparently are scattered across the mountain. I should go look for the parts of the Kazaul ritual on the mountain path down from Blackwater Mountain to Prim.|||} - {11|I need to find the two parts of the chant and the three pieces describing the ritual itself, and return to Throdna once I have found them all.|||} - {21|I have found the first half of the chant for the Kazaul ritual.|||} - {22|I have found the second half of the chant for the Kazaul ritual.|||} - {25|I have found the first piece of the Kazaul ritual.|||} - {26|I have found the second piece of the Kazaul ritual.|||} - {27|I have found the third piece of the Kazaul ritual.|||} - {30|Throdna thanked me for finding all the pieces of the ritual.|3600||} - {40|Throdna wants me to put an end to the Kazaul spawn uprising that has taken place near the Blackwater Mountain. There is a shrine at the base of the mountain that i should investigate closer.|||} - {41|I have been given a vial of purifying spirit that Throdna wants me to apply to the shrine of Kazaul. I should return to Throdna when I have found and purified the shrine.|||} - {50|In the shrine at the base of Blackwater Mountain, I met a guardian of Kazaul. By reciting the verses of the ritual chant, I was able to make the guardian attack me.|||} - {60|I have purified the shrine of Kazaul.|3200||} - {100|I had expected some form of appreciation from Throdna for helping him learn more about the ritual and for purifying the shrine. But he seemed more occupied with rambling on about Kazaul. I could not make out anything sane from his ramblings.||1|} - }|}; -{bwm_wyrms|No weakness|1|{ - {10|Herec on the second level of the Blackwater Mountain settlement is researching the white wyrms outside the settlement. He wants me to bring him 5 white wyrm claws so that he can continue his research. Apparently, only some of the wyrms have these claws. I will have to kill some to find them.|||} - {20|I have given the 5 white wyrm claws to Herec.|||} - {30|Herec has finished making a potion of fatigue restoration that will be very useful when fighting against the wyrms in the future.|1500|1|} - }|}; -{bjorgur_grave|Awoken from slumber|1|{ - {10|Bjorgur in Prim at the base of the Blackwater Mountain thinks that something has disturbed the grave of his parents, to the southwest of Prim, just outside the Elm mine.|||} - {15|Bjorgur wants me to go check the grave, and make sure his family\'s dagger is still secure in the tomb.|||} - {20|Fulus in Prim is interested in obtaining Bjorgur\'s family dagger that Bjorgur\'s grandfather used to possess.|||} - {30|I met a man that wielded a strange looking dagger in the lower parts of a tomb to the southwest of Prim. He must have robbed this dagger from the grave.|||} - {40|I placed the dagger back into its place in the tomb. The restless undead seem much less restless now, strangely enough.|200||} - {50|Bjorgur thanked me for my assistance. He told me I should also seek his relatives in Feygard.|1100|1|} - {51|I have told Fulus that I helped Bjorgur return his family dagger to its original place.|||} - {60|I have given Bjorgur\'s family dagger to Fulus. He thanked me for bringing it to him, and rewarded me handsomely.|1700|1|} - }|}; - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{erinith|Deep wound|1|{ - {10|Just northeast of Crossglen village, I met Erinith that has set up camp. Apparently, he was attacked during the night and lost a book.|||} - {20|I have agreed to help Erinith find his book. He told me he threw it among some trees to the north of his camp.|||} - {21|I have agreed to help Erinith find his book in return for 200 gold. He told me he threw it among some trees to the north of his camp.|||} - {30|I have returned the book to Erinith.|2000||} - {31|He also needs help with his wound that doesn\'t seem to be healing. Either I should bring him one potion of major health, or four regular potions of health.|||} - {40|I gave Erinith a bonemeal potion to heal his wound. He was a bit scared to use it since they are prohibited by Lord Geomyr.|||} - {41|I gave Erinith a potion of a major health to heal his wound.|||} - {42|I gave Erinith four regular potions of health to heal his wound.|||} - {50|The wound healed completely and Erinith thanked me for all the help.|1500|1|} - }|}; -{hadracor|Devastated land|1|{ - {10|On the road to Carn Tower, west of the crossroads guardhouse, I met a group of woodcutters led by Hadracor. Hadracor wants me to help him get revenge on some wasps that were attacking them while they were cutting down the forest. To help them get revenge, I should look for giant wasps near their encampment and bring him at least five giant wasp wings.|||} - {20|I have brought five giant wasp wings to Hadracor.|||} - {21|I have brought six giant wasp wings to Hadracor. For helping him, he gave me a pair of gloves.|||} - {30|Hadracor thanked me for helping him and the other woodcutters get revenge on the wasps. In return, he offered me to trade for some of his items.||1|} - }|}; -{tinlyn|Lost sheep|1|{ - {10|On the road to Feygard, near the Feygard bridge, I met a shepherd named Tinlyn. Tinlyn told me that four of his sheep have wandered away and that he won\'t dare leave the remaining sheep to go look for them.|||} - {15|I have agreed to help Tinlyn find his four lost sheep.|||} - {20|I have found one of Tinlyn\'s lost sheep.|||} - {21|I have found one of Tinlyn\'s lost sheep.|||} - {22|I have found one of Tinlyn\'s lost sheep.|||} - {23|I have found one of Tinlyn\'s lost sheep.|||} - {25|I have found all four of Tinlyn\'s lost sheep.|||} - {30|Tinlyn thanked me for finding his lost sheep.|3500|1|} - {31|Tinlyn thanked me for finding his lost sheep, but he had no reward to give me.|2000|1|} - {60|I have attacked at least one of Tinlyn\'s lost sheep and is therefore unable to return them all to Tinlyn.||1|} - }|}; -{benbyr|Cheap cuts|1|{ - {10|I have met Benbyr outside the Crossroads guardhouse. He wants to get revenge on an old \'business partner\' of his - Tinlyn. Benbyr wants me to kill all Tinlyn\'s sheep.|||} - {20|I have agreed to help Benbyr find Tinlyn\'s sheep and kill all eight of them. I should go look for them in the fields northwest of the crossroads guardhouse.|||} - {21|I have started attacking the sheep. I should return to Benbyr once I have killed all eight of them.|||} - {30|Benbyr was thrilled to hear that all of Tinlyn\'s sheep are dead.|5200|1|} - {60|I declined to help Benbyr kill the sheep.||1|} - }|}; -{rogorn|The path is clear to me|1|{ - {10|Minarra up in the tower at the Crossroads guardhouse has seen a band of rogues heading west from the guardhouse, towards Carn Tower. Minarra was sure they matched the description of some men whose heads have a bounty on them from the Feygard patrol. If these are the men that Minarra thinks, they are supposedly led by particularly ruthless savage named Rogorn.|||} - {20|I am helping Minarra find the band of rogues. I should travel the road west from the Crossroads guardhouse towards Carn Tower and look for them. They have supposedly stolen three pieces of a valuable painting and are wanted dead for their crimes.|||} - {21|Minarra also tells me that I should not trust anything I hear from them. In particular, anything from Rogorn should be viewed with great suspicion.|||} - {30|I have found the band of rogues on the road west towards Carn Tower, led by Rogorn.|||} - {35|Rogorn tells me that they are wrongly accused of murder and theft in Feygard, while they themselves have never even been to Feygard.|||} - {40|I have decided to attack Rogorn and his band of rogues. I should return to Minarra with the three pieces of the painting once they are dead.|||} - {45|I have decided not to attack Rogorn and his band of rogues, but instead report back to Minarra that she must have mistaken the men she saw for someone else.|||} - {50|Minarra thanked me for dealing with the thieves, and told me that my services to Feygard will be appreciated.|||} - {55|After telling Minarra that she must have mistaken the men for someone else, she seemed a bit suspicious, but thanked me for helping her look into the matter.|||} - {60|I have helped Minarra with her task.||1|} - }|}; -{feygard_shipment|Feygard errands|1|{ - {10|I met Gandoren, the guard captain at the Crossroads guardhouse. He told me about some trouble up in Loneford, that have forced the guards to be even more alert than usual. Because of this, they can\'t do their regular errands themselves but need help with some basic things.|||} - {20|Gandoren wants me to help him transport a shipment of 10 iron swords to another guard post to the south.|||} - {21|I have agreed to help Gandoren transport the shipment, as a service for Feygard.|||} - {22|I have grudgingly agreed to help Gandoren transport the shipment.|||} - {25|I should deliver the shipment to the Feygard patrol captain stationed in the Foaming Flask tavern.|||} - {26|Gandoren tells me that Ailshara has expressed some interest in the Feygard shipments, and urges me to stay away from her.|||} - {30|Ailshara is indeed interested in the shipment, and wants me to help Nor City with the supplies instead.|||} - {35|If I want to help Ailshara and Nor City, I should deliver the shipment to the smith in Vilegard instead.|||} - {50|I have delivered the shipment to the Feygard patrol captain in the Foaming Flask tavern. I should go tell Gandoren in the Crossroads guardhouse that the shipment is delivered.|||} - {55|I have delivered the shipment to the smith in Vilegard.|||} - {56|The Vilegard smith gave me a shipment of degraded items that I should deliver to the Feygard patrol captain in the Foaming Flask tavern instead of the normal ones.|||} - {60|I have delivered the shipment of degraded items to the Feygard patrol captain in the Foaming Flask tavern. I should go tell Gandoren in the Crossroads guardhouse that the shipment is delivered.|||} - {80|Gandoren thanked me for helping him deliver the shipment.|4000|1|} - {81|Gandoren thanked me for helping him deliver the shipment. He never suspected anything. I should also report back to Ailshara.|||} - {82|I have reported back to Ailshara.|4000|1|} - }|}; -{loneford|Flows through the veins|1|{ - {10|I heard a story about Loneford. Apparently, a lot of people have become ill there recently, and some have even died. The cause is still unknown.|||} - {11|I should investigate what could have caused the people of Loneford to become ill. To gather clues, I should ask the citizens of Loneford and the surrounding areas about what they think is the cause.|||} - {21|The guards in the Crossroads guardhouse are certain that the illness in Loneford is caused by some sabotage done by the priests or people from Nor City.|||} - {22|Some villagers in Loneford believe that the illness is caused by the guards from Feygard, in some scheme to make the people suffer even more than they already have.|||} - {23|Talion, the chapel priest in Loneford, thinks that the illness is the work of the Shadow, as punishment for Loneford\'s lack of devotion to the Shadow.|||} - {24|Taevinn in Loneford is certain that Sienn in the southeast barn has something to do with the illness. Apparently, Sienn keeps a pet around that has approached Taevinn in a threatening manner several times.|||} - {25|I should go see Landa in the Loneford tavern. Rumor has it that he saw something that he doesn\'t dare tell anyone.|||} - {30|Landa confused me with someone else at first. He apparently saw a boy doing something around the town well during the night before the illness started. He was scared to talk to me at first since he thought I looked like the boy he had seen. Could it have been Andor that he saw?|||} - {31|Also, the night after he saw the boy at the well, he saw Buceth taking samples of the water in the well. Strangely enough, Buceth has not gotten ill like the others in the village.|||} - {35|I should go question Buceth at the Loneford chapel about what he was doing at the well, and about whether he knows anything about Andor.|||} - {41|I have bribed Buceth into talking to me.|||} - {42|I have told Buceth that I am ready to follow the Shadow.|||} - {45|Buceth tells me that he is assigned by the priests in Nor City to make sure the Shadow casts its glow over Loneford. Apparently, the priests had sent a boy to do some business in Loneford, and Buceth was tasked with gathering some samples from the water well.|||} - {50|I have attacked Buceth. I should bring any evidence that Buceth has on him to Kuldan, the guard captain in the longhouse in Loneford.|||} - {54|I have given the vial that Buceth had on him to Kuldan, the guard captain in Loneford.|||} - {55|Kuldan thanked me for solving the mystery of the illness in Loneford. They will start bringing in water with help from Feygard instead of drinking from the well from now on. Kuldan also told me to visit the castle steward in Feygard if I want to help further.|15000|1|} - {60|I have promised to keep Buceth\'s story a secret. If Andor was indeed here, he must have had a good reason for doing what he did. Buceth also told me to visit the chapel custodian in Nor City if I want to learn more about the Shadow.|15000|1|} - }|}; - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{thorin|Bits and pieces|1|{ - {20|In a cave to the east, I found a man called Thorin, that wants me to help him find the remains of his former travelling companions. I should find the remains of all six of them and return them to him.|||} - {31|I have found some skeletal remains in the same cave that I met Thorin in.|||} - {32|I have found some skeletal remains in the same cave that I met Thorin in.|||} - {33|I have found some skeletal remains in the same cave that I met Thorin in.|||} - {34|I have found some skeletal remains in the same cave that I met Thorin in.|||} - {35|I have found some skeletal remains in the same cave that I met Thorin in.|||} - {36|I have found some skeletal remains in the same cave that I met Thorin in.|||} - {40|Thorin thanked me for helping him. In return, he has allowed me to use his bed to rest, and is willing to sell me some of his potions.|4000|1|} - }|}; -{algangror|Of mice and men|1|{ - {10|In a lonely house on a peninsula at the northern shore of lake Laeroth up in the mountains to the north-east, I met a woman called Algangror.|||} - {11|She has a rodent problem and needs help dealing with some of them that she has trapped in her basement.|||} - {15|I have agreed to help Algangror deal with her rodent problem. I should return to her when I have killed all six rodents in her basement.|||} - {20|Algangror thanked me for helping her with her problem.|5000||} - {21|She also told me not to talk to anyone in Remgard about her whereabouts. Apparently, they are looking for her for some reason that she would not say. Under no circumstances should I tell anyone where she is.||1|} - {100|I will not help Algangror with her task.||1|} - {101|Algangror won\'t talk to me, and I will be unable to help her with her task.||1|} - }|}; - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{toszylae|An involuntary carrier|1|{ - {10|On the road between Loneford and Brimhaven, I found a dried up lake-bed with a major cavern below. Deep inside the cavern, I met Ulirfendor - a priest of the Shadow from Brimhaven. Ulirfendor is trying to translate the inscriptions on a shrine of Kazaul, and has determined that it speaks of the \'Dark protector\', but he is unsure what that refers to. Whatever it means, he is determined that it must be stopped.|||} - {11|Ulirfendor needs help with figuring out what some of the missing parts on the shrine says. The inscription reads \'Kulauil hamar urum Kazaul\'te\', but the next parts have been completely eroded from the rock.|||} - {15|I have agreed to help Ulirfendor find out what the missing parts of the inscription might be. Ulirfendor believes the shrine speaks of a powerful creature that lives deeper inside the dungeon. Maybe that could provide some clue as to what the missing parts are.|||} - {20|Deep inside the dungeon, I encountered a radiant guardian, guarding some other being. The guardian uttered the phrases \'Kulauil hamar urum Kazaul\'te. Kazaul hamat urul\'. This must be what Ulirfendor was looking for. I should return to him at once.|||} - {21|I tried to attack the guardian, but was unable to even reach it. Some powerful force held me back. Maybe Ulirfendor knows more.|||} - {30|Ulirfendor was very pleased to hear that I uncovered the missing parts of the inscription.|2000||} - {32|He also told me the continuation of the inscription, but did not know what it means. I should go back to the guardian and speak the words that Ulirfendor told me.|||} - {42|I have spoken the words to the guardian.|5000||} - {45|The guardian gave off a chilling laughter, and started attacking me.|||} - {50|I defeated the guardian and reached the lich \'Toszylae\'. The lich managed to infect me with something. I must kill the lich and return to Ulirfendor.|||} - {60|Ulirfendor told me that he had managed to translate the parts of the inscription that I told the guardian. Apparently, what I told the guardian roughly means \'My body for Kazaul\'. Ulirfendor was very concerned about what this means for me, and was very regretful that he had made me speak the words.|||} - {70|Ulirfendor was very happy to hear that I managed to defeat the lich. With the lich defeated, the people in the surrounding areas should be safe now.|20000|1|} - }|}; -{darkprotector|The dark protector|1|{ - {10|I have found a strange looking helmet from the lich \'Toszylae\' that I defeated. I should go ask Ulirfendor if he knows anything about it.|||} - {15|Ulirfendor in the same dungeon thinks this artifact is what the shrine speaks of, and that it will bring misery to the surroundings of whoever carries it. He wants me to help him destroy it immediately.|||} - {26|To destroy the artifact, I would need give the helmet and the heart of the lich to Ulirfendor.|||} - {30|I have given the helmet to Ulirfendor.|||} - {31|I have given the heart of the lich to Ulirfendor.|||} - {35|Ulirfendor has destroyed the artifact. The people of the surrounding towns are safe from whatever misery the helmet would have brought.|||} - {40|For helping with both the lich and the helmet, Ulirfendor has given me the dark blessing of the Shadow.|15000|1|} - {41|For helping with both the lich and the helmet, Ulirfendor wanted to give me the dark blessing of the Shadow, but I declined.|35000|1|} - {50|I have decided to keep the helmet for myself. Who knows what power I could gain from it.|||} - {51|Ulirfendor attacked me for keeping the helmet.|||} - {55|I found a book by the shrine where Ulirfendor was. The book talks of a ritual that would restore the helmet to its true power. I should complete the ritual by the shrine if I want to use the helmet.|||} - {60|I have started the Kazaul ritual.|||} - {65|I have placed the helmet in front of the Kazaul shrine.|||} - {66|I have placed the lich\'s heart in front of the Kazaul shrine.|||} - {70|The ritual is complete, and I have restored the power of the helmet to its former glory.|5000|1|} - }|}; -{maggots|I have it in me|1|{ - {10|Deep inside a cavern, I encountered a lich of Kazaul. Somehow the lich managed to infect me with things that crawl around in my stomach! I must find some way to get rid of these things inside of me. I should go talk to Ulirfendor, or seek help in one of the chapels.|||} - {20|Ulirfendor tells me that he read something long ago about rotworms that feed upon living tissue. They can have what he called \'unusual\' effects on whoever carries them, and their eggs can slowly kill a person from the inside. I should seek help immediately, before it is too late.|||} - {21|Ulirfendor says that one of the priests of the Shadow should be able help me. I should go visit Talion at the chapel in Loneford at once.|||} - {30|Talion in Loneford told me that in order to be cured of my affliction, I will need to bring four parts to him. The parts that I will need are five bones, two pieces of animal hair, one Irdegh poison gland and one empty vial. Bones and fur can probably be found on some animal in the wilderness, and the poison gland can be found on one of the Irdeghs that have been spotted to the east.|||} - {40|I have brought the five bones to Talion.|||} - {41|I have brought the two pieces of animal hair to Talion.|||} - {42|I have brought one Irdegh poison gland to Talion.|||} - {43|I have brought an empty vial to Talion.|||} - {45|I have now brought all pieces that Talion needs in order to cure me of these things.|||} - {50|Talion has cured me of the Kazaul rotworms. I managed to get one of the rotworms into an empty vial, and Talion told me that it would be very valuable. I cannot imagine for what.|30000||} - {51|Because of my former affliction, Talion has agreed to help me by placing blessings of the Shadow upon me whenever I wish, for a fee.||1|} - }|}; -{sisterfight|A difference in opinion|1|{ - {10|I heard a story about two squabbling sisters in Remgard, Elwel and Elwyl. Apparently they have kept people awake at night with the way they are shouting at each other. I should go visit them in their house on the southern shore of the city of Remgard.|||} - {20|I have talked to Elwyl, one of the Elwille sisters in Remgard. She is furious at her sister for not agreeing on even the most simple of facts. Apparently, they have had their disagreements with each other for several years.|||} - {21|Elwel will not speak to me.|||} - {30|One matter that the sisters disagree on currently is the color of a certain potion that the town potion-maker Hjaldar used to make. Elwyl says that the potion of accuracy focus that Hjaldar used to make was a blue potion, but Elwel insists that the potion had a green substance.|||} - {31|Elwyl wants me to get a potion of accuracy focus from Hjaldar here in Remgard so that she can finally prove to Elwel that she is wrong.|||} - {40|I have talked to Hjaldar in Remgard. Hjaldar no longer makes potions since his supply of Lyson marrow extract has gone dry.|||} - {41|Apparently, Hjaldar\'s old friend Mazeg would surely have some Lyson marrow extract to sell. Unfortunately, he does not know where Mazeg currently lives. He only knows that Mazeg traveled far to the west last time they met.|||} - {45|I should find Mazeg and get some Lyson marrow extract so that Hjaldar can start making potions again.|||} - {50|I have talked to Mazeg in the Blackwater mountain settlement. Since I helped the people of the Blackwater mountain before, he is willing to sell me a vial of Lyson marrow extract for only 400 gold.|||} - {51|I have talked to Mazeg in the Blackwater mountain settlement. He is willing to sell me Lyson marrow extract for 800 gold.|||} - {55|I have bought some Lyson marrow extract from Mazeg. I should return to Remgard and give it to Hjaldar.|||} - {60|Hjaldar thanked me for bringing him the marrow extract.|15000||} - {61|Hjaldar can now create potions again, and is willing to trade with me. He even gave me some of the first potions that he made. I should go visit the Elwille sisters here in Remgard again, and show them a potion of accuracy focus.|||} - {70|I have given a potion of accuracy focus to Elwyl.|||} - {71|Unfortunately, it did not cause their squabbling to diminish. On the contrary, they seem to be even more angry at each other now, since both of them had the color wrong.|9000|1|} - }|}; - - - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{remgard|Everything in order|1|{ - {10|I have reached the bridge to enter the town of Remgard. According to the bridge guard, the town is closed for outsiders to enter, and no-one is currently allowed to leave. They are investigating some disappearances of some of the townspeople.|||} - {15|I have offered my assistance in helping the people of Remgard investigate what has happened to the townspeople that have disappeared.|||} - {20|The bridge guard has asked me to investigate an abandoned house to the east along the northern shore of the lake. I should be wary of any inhabitants that may be there.|||} - {30|I have reported back to the bridge guard that I met Algangror in the abandoned house.|3000||} - {31|I have reported back to the bridge guard that the abandoned house was empty.|3000||} - {35|I have been granted entrance into Remgard. I should go visit Jhaeld, the town elder, to talk about what the next step should be. Jhaeld can probably be found in the tavern to the southeast.|||} - {40|Jhaeld was rather arrogant, but told me that they have had a problem with people disappearing for a while now. They have no clue what could be causing it.|||} - {50|I should visit four people in Remgard, and ask them about any clues on what might have happened to the missing people.|||} - {51|First is Norath, whose wife Bethir has disappeared. Norath can be found in the south-westernmost farmhouse.|||} - {52|Second, I should go talk to the Knights of Elythom, here in the tavern.|||} - {53|Third, I should go talk to the old woman Duaina in her house to the south.|||} - {54|Lastly, I should talk to Rothses, the armorer. He lives on the west side of town.|||} - {59|I tried to tell Jhaeld about Algangror, but he dismissed me as he had not heard me.|||} - {61|I have talked to Norath. He and his wife had been fighting recently, but he has no idea on what may have happened to her.|||} - {62|The Knights of Elythom in the Remgard tavern have had one of their knights disappearing recently. No one noticed anything when she disappeared, however.|||} - {63|Duaina has seen me in her visions. I did not understand all that she spoke of, but the parts that were clear were that me and Andor were parts of a larger plot. I wonder what this means? She did not speak of any disappearing people however, not that I could understand anyway.|||} - {64|Rothses told me that Bethir visited him the night before she disappeared, to sell some equipment. He did not see where she went after that.|||} - {70|I have talked to all of the people that Jhaeld wanted me to talk to, but did not get any information from any of them about what may have happened to the missing people. I should go back to Jhaeld and ask what his plans are next.|||} - {75|Jhaeld was really upset that I did not find out anything from the people that I was sent to talk to.|15000||} - {80|If I still want to help Jhaeld and the people of Remgard, I should look for clues in other places.||1|} - {110|Jhaeld does not want to talk to me. I will not help them find out what happened to the missing people of Remgard.||1|} - }|}; -{remgard2|What is that stench?|1|{ - {10|I have told Jhaeld, the village elder in Remgard, about the woman named Algangror that lives in the abandoned house to the east along the northern shore of the lake outside Remgard.|||} - {20|Jhaeld told me that he would rather not deal with her, since he believes she is very dangerous. For the sake of his guards, he will not risk going against her since he is afraid of what might happen to all of them.|||} - {21|If I want to help Jhaeld and the people of Remgard, I should find a way to make Algangror disappear. He also warns me to be extremely careful.|||} - {30|Algangror admitted to me that she had made some people disappear from Remgard. She would not tell me what happened to them though.|||} - {35|I have started attacking Algangror. I should return to Jhaeld with proof of defeating her when she is dead.|||} - {40|I have told Jhaeld that I defeated Algangror.|||} - {41|Jhaeld was very pleased to hear the good news. The people of Remgard should now be safe, and the town can be opened to outsiders again.|||} - {45|For helping the people of Remgard find the cause of the disappearing people, Jhaeld told me to talk to Rothses. He might be able to improve some of my equipment.|21000|1|} - {46|Ervelyn, the Remgard tailor, gave me a feathered hat as thanks for helping the people of Remgard find out what happened to the missing people.|||} - }|}; -{fiveidols|The five idols|1|{ - {10|Algangror wants me to help her with a task. She cannot describe the nature of the task, or the reasoning behind it. If I help her, she has promised to give me her enchanted necklace, that apparently is worth a lot.|||} - {20|I have agreed to help Algangror with her task.|||} - {30|Algangror wants me to place five idols near five different people in Remgard. The idols should be placed near the beds of these five people, and must be hidden so that they are not found easily.|||} - {31|The first person is Jhaeld, the village elder that can be found in the Remgard tavern.|||} - {32|Second, I should place an idol by the bed of Larni the farmer, that lives in one of the northern cabins in Remgard.|||} - {33|The third person is Arnal the weapon-smith, that lives in the northwest of Remgard.|||} - {34|Fourth is Emerei, that can be found to the southeast of Remgard.|||} - {35|The fifth person is Carthe. Carthe lives on the eastern shore of Remgard, near the tavern.|||} - {37|I must not tell anyone of my task, or of the placement of the idols.|||} - {41|I have placed an idol by Jhaeld\'s bed.|||} - {42|I have placed an idol by Larni the farmer\'s bed.|||} - {43|I have placed an idol by Arnal\'s bed.|||} - {44|I have placed an idol by Emerei\'s bed.|||} - {45|I have placed an idol by Carthe\'s bed.|||} - {50|All the idols have been placed by the beds of the people that Algangror told me to visit. I should return to Algangror.|||} - {51|Algangror thanked me for helping her.|||} - {60|She told me her story, with how she used to live in the city, but was persecuted for her beliefs. According to her, the persecution was totally unjustified since she does no harm to people.|||} - {61|To take revenge on the city of Remgard, she managed to lure some people into her cabin and turn them into rats.|||} - {70|For helping her with the tasks that she could not perform herself, Algangror gave me her enchanted necklace, \'Marrowtaint\'.|21000|1|} - {100|I have decided not to help Algangror with her task.||1|} - }|}; -{kaverin|Old friends?|1|{ - {10|I met Kaverin in Remgard, that apparently is an old acquaintance of Unzel, who lives outside of Fallhaven.|||} - {20|Kaverin wants me to deliver a message to Unzel.|||} - {21|I have declined to help Kaverin.||1|} - {22|I have agreed to deliver the message.|||} - {25|Kaverin has given me the message that he wants me to deliver to Unzel.|||} - {30|I have delivered the message to Unzel. I should return to Kaverin in Remgard.|||} - {40|Kaverin thanked me for delivering the message to Unzel.|10000||} - {45|In return, Kaverin gave me an old map that he had acquired. Apparently, it leads to Vacor\'s old hideout.|||} - {60|Kaverin was furious over the fact that I killed Unzel, and that I helped Vacor. He started attacking me. I should return to Vacor once Kaverin is dead.|||} - {70|Kaverin was carrying a sealed message. Vacor immediately recognized the seal, and seemed very interested in it.|||} - {75|I have given Vacor the message that Kaverin was carrying. In return, Vacor gave me an old map, leading to his old hideout.|10000||} - {90|I should try to find Vacor\'s old hideout, on the road to the west of the former prison of Flagstone, southwest of Fallhaven.|||} - {100|I have found Vacor\'s old hideout.||1|} - }|}; - - - diff --git a/AndorsTrail/res/values/loadresources.xml b/AndorsTrail/res/values/loadresources.xml index 527817258..856d535ec 100644 --- a/AndorsTrail/res/values/loadresources.xml +++ b/AndorsTrail/res/values/loadresources.xml @@ -1,207 +1,207 @@ - @string/itemcategories_1 + @raw/itemcategories_1 - @string/actorconditions_v069 - @string/actorconditions_v069_bwm - @string/actorconditions_v0610 - @string/actorconditions_v0611 - @string/actorconditions_v0611_2 - @string/actorconditions_v0612_2 + @raw/actorconditions_v069 + @raw/actorconditions_v069_bwm + @raw/actorconditions_v0610 + @raw/actorconditions_v0611 + @raw/actorconditions_v0611_2 + @raw/actorconditions_v0612_2 - @string/itemlist_money - @string/itemlist_weapons - @string/itemlist_armour - @string/itemlist_rings - @string/itemlist_necklaces - @string/itemlist_junk - @string/itemlist_food - @string/itemlist_potions - @string/itemlist_animal - @string/itemlist_quest - @string/itemlist_v068 - @string/itemlist_v069 - @string/itemlist_v069_questitems - @string/itemlist_v069_2 - @string/itemlist_v0610_1 - @string/itemlist_v0610_2 - @string/itemlist_v0611_1 - @string/itemlist_v0611_2 - @string/itemlist_v0611_3 + @raw/itemlist_money + @raw/itemlist_weapons + @raw/itemlist_armour + @raw/itemlist_rings + @raw/itemlist_necklaces + @raw/itemlist_junk + @raw/itemlist_food + @raw/itemlist_potions + @raw/itemlist_animal + @raw/itemlist_quest + @raw/itemlist_v068 + @raw/itemlist_v069 + @raw/itemlist_v069_questitems + @raw/itemlist_v069_2 + @raw/itemlist_v0610_1 + @raw/itemlist_v0610_2 + @raw/itemlist_v0611_1 + @raw/itemlist_v0611_2 + @raw/itemlist_v0611_3 - @string/droplists_crossglen - @string/droplists_crossglen_outside - @string/droplists_fallhaven - @string/droplists_wilderness - @string/droplists_v068 - @string/droplists_v069_npcs - @string/droplists_v069_monsters - @string/droplists_v0610_shops - @string/droplists_v0610_npcs - @string/droplists_v0610_monsters - @string/droplists_v0611_monsters - @string/droplists_v0611_npcs - @string/droplists_v0611_shops + @raw/droplists_crossglen + @raw/droplists_crossglen_outside + @raw/droplists_fallhaven + @raw/droplists_wilderness + @raw/droplists_v068 + @raw/droplists_v069_npcs + @raw/droplists_v069_monsters + @raw/droplists_v0610_shops + @raw/droplists_v0610_npcs + @raw/droplists_v0610_monsters + @raw/droplists_v0611_monsters + @raw/droplists_v0611_npcs + @raw/droplists_v0611_shops - @string/questlist - @string/questlist_nondisplayed - @string/questlist_v068 - @string/questlist_v069 - @string/questlist_v0610 - @string/questlist_v0611 - @string/questlist_v0611_2 - @string/questlist_v0611_3 + @raw/questlist + @raw/questlist_nondisplayed + @raw/questlist_v068 + @raw/questlist_v069 + @raw/questlist_v0610 + @raw/questlist_v0611 + @raw/questlist_v0611_2 + @raw/questlist_v0611_3 - @string/conversationlist_mikhail - @string/conversationlist_crossglen - @string/conversationlist_crossglen_gruil - @string/conversationlist_crossglen_leonid - @string/conversationlist_crossglen_tharal - @string/conversationlist_crossglen_leta - @string/conversationlist_crossglen_odair - @string/conversationlist_jan - @string/conversationlist_fallhaven - @string/conversationlist_fallhaven_arcir - @string/conversationlist_fallhaven_bucus - @string/conversationlist_fallhaven_church - @string/conversationlist_fallhaven_athamyr - @string/conversationlist_fallhaven_drunk - @string/conversationlist_fallhaven_nocmar - @string/conversationlist_fallhaven_oldman - @string/conversationlist_fallhaven_tavern - @string/conversationlist_fallhaven_larcal - @string/conversationlist_fallhaven_unnmir - @string/conversationlist_fallhaven_gaela - @string/conversationlist_fallhaven_vacor - @string/conversationlist_fallhaven_unzel - @string/conversationlist_wilderness - @string/conversationlist_flagstone - @string/conversationlist_fallhaven_south - @string/conversationlist_signs_pre067 - @string/conversationlist_thievesguild_1 - @string/conversationlist_farrik - @string/conversationlist_fallhaven_warden - @string/conversationlist_umar - @string/conversationlist_kaori - @string/conversationlist_vilegard_villagers - @string/conversationlist_vilegard_erttu - @string/conversationlist_vilegard_tavern - @string/conversationlist_jolnor - @string/conversationlist_alynndir - @string/conversationlist_vilegard_shops - @string/conversationlist_ogam - @string/conversationlist_foamingflask - @string/conversationlist_ambelie - @string/conversationlist_foamingflask_guards - @string/conversationlist_foamingflask_outsideguard - @string/conversationlist_wrye - @string/conversationlist_oluag - @string/conversationlist_signs_v068 - @string/conversationlist_maelveon - @string/conversationlist_bwm_agent_1 - @string/conversationlist_bwm_agent_2 - @string/conversationlist_bwm_agent_3 - @string/conversationlist_bwm_agent_4 - @string/conversationlist_bwm_agent_5 - @string/conversationlist_bwm_agent_6 - @string/conversationlist_prim_arghest - @string/conversationlist_prim_outside - @string/conversationlist_prim_inn - @string/conversationlist_prim_tavern - @string/conversationlist_prim_guthbered - @string/conversationlist_blackwater_signs - @string/conversationlist_blackwater_harlenn - @string/conversationlist_blackwater_upper - @string/conversationlist_blackwater_lower - @string/conversationlist_blackwater_herec - @string/conversationlist_prim_bjorgur - @string/conversationlist_prim_fulus - @string/conversationlist_prim_merchants - @string/conversationlist_blackwater_throdna - @string/conversationlist_blackwater_kazaul - @string/conversationlist_erinith - @string/conversationlist_hadracor - @string/conversationlist_tinlyn - @string/conversationlist_tinlyn_sheep - @string/conversationlist_benbyr - @string/conversationlist_crossroads_1 - @string/conversationlist_minarra - @string/conversationlist_rogorn - @string/conversationlist_gandoren - @string/conversationlist_ailshara - @string/conversationlist_vilegard_v0610 - @string/conversationlist_crossroads_2 - @string/conversationlist_crossroads_3 - @string/conversationlist_fields_1 - @string/conversationlist_loneford_1 - @string/conversationlist_loneford_2 - @string/conversationlist_buceth - @string/conversationlist_talion - @string/conversationlist_taevinn - @string/conversationlist_loneford_kuldan - @string/conversationlist_loneford_3 - @string/conversationlist_loneford_4 - @string/conversationlist_pwcave - @string/conversationlist_thorin - @string/conversationlist_thorinbone - @string/conversationlist_algangror - @string/conversationlist_remgard_bridgeguard - @string/conversationlist_ulirfendor - @string/conversationlist_toszylae_guard - @string/conversationlist_toszylae - @string/conversationlist_sign_ulirfendor - @string/conversationlist_talion_2 - @string/conversationlist_gylew - @string/conversationlist_ingus - @string/conversationlist_elwyl - @string/conversationlist_hjaldar - @string/conversationlist_mazeg - @string/conversationlist_sign_waterwaycave - @string/conversationlist_jhaeld - @string/conversationlist_norath - @string/conversationlist_elythom_1 - @string/conversationlist_duaina - @string/conversationlist_rothses - @string/conversationlist_remgard_villagers1 - @string/conversationlist_kendelow - @string/conversationlist_arghes - @string/conversationlist_remgard_villagers2 - @string/conversationlist_ervelyn - @string/conversationlist_reinkarr - @string/conversationlist_remgard_idolsigns - @string/conversationlist_signs_v0611 - @string/conversationlist_kaverin - @string/conversationlist_vacor2 - @string/conversationlist_unzel2 - @string/conversationlist_v0612graves + @raw/conversationlist_mikhail + @raw/conversationlist_crossglen + @raw/conversationlist_crossglen_gruil + @raw/conversationlist_crossglen_leonid + @raw/conversationlist_crossglen_tharal + @raw/conversationlist_crossglen_leta + @raw/conversationlist_crossglen_odair + @raw/conversationlist_jan + @raw/conversationlist_fallhaven + @raw/conversationlist_fallhaven_arcir + @raw/conversationlist_fallhaven_bucus + @raw/conversationlist_fallhaven_church + @raw/conversationlist_fallhaven_athamyr + @raw/conversationlist_fallhaven_drunk + @raw/conversationlist_fallhaven_nocmar + @raw/conversationlist_fallhaven_oldman + @raw/conversationlist_fallhaven_tavern + @raw/conversationlist_fallhaven_larcal + @raw/conversationlist_fallhaven_unnmir + @raw/conversationlist_fallhaven_gaela + @raw/conversationlist_fallhaven_vacor + @raw/conversationlist_fallhaven_unzel + @raw/conversationlist_wilderness + @raw/conversationlist_flagstone + @raw/conversationlist_fallhaven_south + @raw/conversationlist_signs_pre067 + @raw/conversationlist_thievesguild_1 + @raw/conversationlist_farrik + @raw/conversationlist_fallhaven_warden + @raw/conversationlist_umar + @raw/conversationlist_kaori + @raw/conversationlist_vilegard_villagers + @raw/conversationlist_vilegard_erttu + @raw/conversationlist_vilegard_tavern + @raw/conversationlist_jolnor + @raw/conversationlist_alynndir + @raw/conversationlist_vilegard_shops + @raw/conversationlist_ogam + @raw/conversationlist_foamingflask + @raw/conversationlist_ambelie + @raw/conversationlist_foamingflask_guards + @raw/conversationlist_foamingflask_outsideguard + @raw/conversationlist_wrye + @raw/conversationlist_oluag + @raw/conversationlist_signs_v068 + @raw/conversationlist_maelveon + @raw/conversationlist_bwm_agent_1 + @raw/conversationlist_bwm_agent_2 + @raw/conversationlist_bwm_agent_3 + @raw/conversationlist_bwm_agent_4 + @raw/conversationlist_bwm_agent_5 + @raw/conversationlist_bwm_agent_6 + @raw/conversationlist_prim_arghest + @raw/conversationlist_prim_outside + @raw/conversationlist_prim_inn + @raw/conversationlist_prim_tavern + @raw/conversationlist_prim_guthbered + @raw/conversationlist_blackwater_signs + @raw/conversationlist_blackwater_harlenn + @raw/conversationlist_blackwater_upper + @raw/conversationlist_blackwater_lower + @raw/conversationlist_blackwater_herec + @raw/conversationlist_prim_bjorgur + @raw/conversationlist_prim_fulus + @raw/conversationlist_prim_merchants + @raw/conversationlist_blackwater_throdna + @raw/conversationlist_blackwater_kazaul + @raw/conversationlist_erinith + @raw/conversationlist_hadracor + @raw/conversationlist_tinlyn + @raw/conversationlist_tinlyn_sheep + @raw/conversationlist_benbyr + @raw/conversationlist_crossroads_1 + @raw/conversationlist_minarra + @raw/conversationlist_rogorn + @raw/conversationlist_gandoren + @raw/conversationlist_ailshara + @raw/conversationlist_vilegard_v0610 + @raw/conversationlist_crossroads_2 + @raw/conversationlist_crossroads_3 + @raw/conversationlist_fields_1 + @raw/conversationlist_loneford_1 + @raw/conversationlist_loneford_2 + @raw/conversationlist_buceth + @raw/conversationlist_talion + @raw/conversationlist_taevinn + @raw/conversationlist_loneford_kuldan + @raw/conversationlist_loneford_3 + @raw/conversationlist_loneford_4 + @raw/conversationlist_pwcave + @raw/conversationlist_thorin + @raw/conversationlist_thorinbone + @raw/conversationlist_algangror + @raw/conversationlist_remgard_bridgeguard + @raw/conversationlist_ulirfendor + @raw/conversationlist_toszylae_guard + @raw/conversationlist_toszylae + @raw/conversationlist_sign_ulirfendor + @raw/conversationlist_talion_2 + @raw/conversationlist_gylew + @raw/conversationlist_ingus + @raw/conversationlist_elwyl + @raw/conversationlist_hjaldar + @raw/conversationlist_mazeg + @raw/conversationlist_sign_waterwaycave + @raw/conversationlist_jhaeld + @raw/conversationlist_norath + @raw/conversationlist_elythom_1 + @raw/conversationlist_duaina + @raw/conversationlist_rothses + @raw/conversationlist_remgard_villagers1 + @raw/conversationlist_kendelow + @raw/conversationlist_arghes + @raw/conversationlist_remgard_villagers2 + @raw/conversationlist_ervelyn + @raw/conversationlist_reinkarr + @raw/conversationlist_remgard_idolsigns + @raw/conversationlist_signs_v0611 + @raw/conversationlist_kaverin + @raw/conversationlist_vacor2 + @raw/conversationlist_unzel2 + @raw/conversationlist_v0612graves - @string/monsterlist_crossglen_animals - @string/monsterlist_crossglen_npcs - @string/monsterlist_fallhaven_animals - @string/monsterlist_fallhaven_npcs - @string/monsterlist_wilderness - @string/monsterlist_v068_npcs - @string/monsterlist_v069_monsters - @string/monsterlist_v069_npcs - @string/monsterlist_v0610_monsters1 - @string/monsterlist_v0610_npcs1 - @string/monsterlist_v0610_monsters2 - @string/monsterlist_v0611_monsters1 - @string/monsterlist_v0611_npcs1 - @string/monsterlist_v0611_npcs2 + @raw/monsterlist_crossglen_animals + @raw/monsterlist_crossglen_npcs + @raw/monsterlist_fallhaven_animals + @raw/monsterlist_fallhaven_npcs + @raw/monsterlist_wilderness + @raw/monsterlist_v068_npcs + @raw/monsterlist_v069_monsters + @raw/monsterlist_v069_npcs + @raw/monsterlist_v0610_monsters1 + @raw/monsterlist_v0610_npcs1 + @raw/monsterlist_v0610_monsters2 + @raw/monsterlist_v0611_monsters1 + @raw/monsterlist_v0611_npcs1 + @raw/monsterlist_v0611_npcs2 diff --git a/AndorsTrail/res/values/loadresources_debug.xml b/AndorsTrail/res/values/loadresources_debug.xml index 99ad5b251..6a77f9780 100644 --- a/AndorsTrail/res/values/loadresources_debug.xml +++ b/AndorsTrail/res/values/loadresources_debug.xml @@ -1,91 +1,29 @@ - @string/itemlist_money - @string/itemlist_weapons - @string/itemlist_armour - @string/itemlist_debug + @raw/itemlist_money + @raw/itemlist_weapons + @raw/itemlist_armour + @raw/itemlist_debug - -[id|iconID|name|category|displaytype|hasManualPrice|baseMarketCost|hasEquipEffect|equip_boostMaxHP|equip_boostMaxAP|equip_moveCostPenalty|equip_attackCost|equip_attackChance|equip_criticalChance|equip_criticalMultiplier|equip_attackDamage_Min|equip_attackDamage_Max|equip_blockChance|equip_damageResistance|equip_conditions[condition|magnitude|]|hasUseEffect|use_boostHP_Min|use_boostHP_Max|use_boostAP_Min|use_boostAP_Max|use_conditionsSource[condition|magnitude|duration|chance|]|hasHitEffect|hit_boostHP_Min|hit_boostHP_Max|hit_boostAP_Min|hit_boostAP_Max|hit_conditionsSource[condition|magnitude|duration|chance|]|hit_conditionsTarget[condition|magnitude|duration|chance|]|hasKillEffect|kill_boostHP_Min|kill_boostHP_Max|kill_boostAP_Min|kill_boostAP_Max|kill_conditionsSource[condition|magnitude|duration|chance|]|]; -{debug_dagger1|items_weapons:20|Black heart dagger|0|3|1|6|1||||2|100|30|3|5|10|||||||||||||||||||||||}; -{debug_ring1|items_jewelry:4|Black heart ring|7|1|1|3|1|||||50|||10|10|||||||||||||||||||||||}; -{shadow_slayer|items_weapons:60|Shadow of the slayer|0|3|1|0|1||2||7|25|10|2|5|9|||||||||||||||||1|1|1||||}; - - - - - @string/droplists_debug + @raw/droplists_debug - -[id|items[itemID|quantity_Min|quantity_Max|chance|]|]; -{debugshop1|{{club1|10|10|100|}{club3|5|5|100|}{hammer0|5|5|100|}{hammer1|5|5|100|}{shirt1|5|5|100|}{shirt2|5|5|100|}{dagger0|5|5|100|}}|}; -{debuglist1|{{gold|3|3|100|}{dagger0|1|1|100|}{shirt1|1|1|100|}{club3|1|1|100|}}|}; -{debuglist2||}; - -{startitems|{ - {gold|12|12|100|} - {club1|1|1|100|} - {shirt1|5|5|100|} - {dagger0|1|1|100|} - {debug_dagger1|1|1|100|} - {debug_ring1|1|1|100|} - {shadow_slayer|1|1|100|} - }|}; - - - - - @string/questlist_debug + @raw/questlist_debug - -[id|name|showInLog|stages[progress|logText|rewardExperience|finishesQuest|]|]; -{debugquest|Debug Quest|1|{{10|I have talked to the NPC||0|}{20|I have asked the NPC for more info.|20|0|}{100|I have given the items to the NPC|40|1|}}|}; - - - - - @string/conversationlist_debug + @raw/conversationlist_debug - -[id|message|rewards[rewardType|rewardID|value|]|replies[text|nextPhraseID|requires_Progress|requires_itemID|requires_Quantity|requires_Type|]|]; -{debugshop|Welcome adventurer!||{{Trade items very very long text|S|||||}{Bye|X|||||}{Fight|F|||||}}|}; -{debugquest|Debug quest start\nTest.|{{0|debugquest|10|}}|{{Iron sword*2|debugquest2||dagger0|1|0|}{Progress+=10|debugquest4|||||}{Progress=100|debugquest1|debugquest:100||||}}|}; -{debugquest1|Yes, you have already completed this quest.|{{1|debuglist1||}}|{{Next|debugquest3|||||}}|}; -{debugquest2|Thank you for the items.|{{0|debugquest|100|}}|{{Next|debugquest3|||||}}|}; -{debugquest3|Quest is now completed.||{{Bye|X|||||}}|}; -{debugquest4|More info. Quest progress should now be updated to 20.|{{0|debugquest|20|}}|{{Back|debugquest|||||}}|}; -{debugsign|This should be a signpost.|||}; -{debugrequireskey|This tile requires a questprogress.|||}; - - - - - @string/monsterlist_debug + @raw/monsterlist_debug - -[id|iconID|name|tags|size|monsterClass|unique|faction|maxHP|maxAP|moveCost|attackCost|attackChance|criticalChance|criticalMultiplier|attackDamage_Min|attackDamage_Max|blockChance|damageResistance|droplistID|phraseID|hasHitEffect|onHit_boostHP_Min|onHit_boostHP_Max|onHit_boostAP_Min|onHit_boostAP_Max|onHit_conditionsSource[condition|magnitude|duration|chance|]|onHit_conditionsTarget[condition|magnitude|duration|chance|]|]; -{traveller1|monsters_man1:0|Traveller1|debugNPC1||0|1||10|10|10|10|50|||1|2|||debugshop1|debugshop||||||||}; -{traveller2|monsters_man1:0|Traveller2|debugNPC2||0|1||10|10|10|10|50|||1|2|||debugshop1|debugquest||||||||}; -{black_ant|monsters_insects:0|Ant|insect||1|||10|10|10|10|50|||1|2|||debuglist1|||||||||}; -{small_wasp|monsters_insects:1|Pitiful debug bug with long name|insect||1|||10|10|10|10|50|||1|2|||debuglist1|||||||||}; -{winged_demon|monsters_demon1:0|Winged demon|demon|2x2|2|||10|10|10|10|50|||10|20|||debuglist1|||||||||}; -{troll|monsters_misc:5|Troll|troll||5|||10|10|10|2|50|||1|2|||debuglist2|||||||||}; - - - - @xml/debugmap -